diff options
author | Virgil Dupras <vdupras@gentoo.org> | 2018-06-15 21:56:23 -0400 |
---|---|---|
committer | Virgil Dupras <vdupras@gentoo.org> | 2018-06-15 22:20:14 -0400 |
commit | 9d9ac0168727ce29fc6545e6be233dfa5b04efd0 (patch) | |
tree | 6f5cef98450f48a81c5048dc6879d601c833948a /app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild | |
parent | dev-libs/libressl: security bump (diff) | |
download | gentoo-9d9ac0168727ce29fc6545e6be233dfa5b04efd0.tar.gz gentoo-9d9ac0168727ce29fc6545e6be233dfa5b04efd0.tar.bz2 gentoo-9d9ac0168727ce29fc6545e6be233dfa5b04efd0.zip |
app-emulation/lxc-templates: new package
Since v3.0, LXC has been shipping old style templates separately.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild')
-rw-r--r-- | app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild b/app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild new file mode 100644 index 000000000000..528f6b711d1d --- /dev/null +++ b/app-emulation/lxc-templates/lxc-templates-3.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Old style template scripts for LXC" +HOMEPAGE="https://linuxcontainers.org/" +SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz" + +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +LICENSE="LGPL-3" +SLOT="0" + +RDEPEND=" + >=app-emulation/lxc-3.0" + +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}-no-cache-dir.patch" ) +DOCS=() + +src_prepare() { + default + eautoreconf +} |