diff options
author | 2014-05-04 08:50:11 +0000 | |
---|---|---|
committer | 2014-05-04 08:50:11 +0000 | |
commit | ba13afceafaf3bc69ad29f2a422bc54791d62c38 (patch) | |
tree | 9bc25c74eb77e6b6c10ef1949502d7b5d879bb59 /sys-apps/lmctfy | |
parent | drop py2.6 add py3.4 pypy support tidy deps (diff) | |
download | gentoo-2-ba13afceafaf3bc69ad29f2a422bc54791d62c38.tar.gz gentoo-2-ba13afceafaf3bc69ad29f2a422bc54791d62c38.tar.bz2 gentoo-2-ba13afceafaf3bc69ad29f2a422bc54791d62c38.zip |
Bump
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-apps/lmctfy')
-rw-r--r-- | sys-apps/lmctfy/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/lmctfy/lmctfy-0.3.1.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/sys-apps/lmctfy/ChangeLog b/sys-apps/lmctfy/ChangeLog index ec8422b03192..162387bda6ea 100644 --- a/sys-apps/lmctfy/ChangeLog +++ b/sys-apps/lmctfy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/lmctfy # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v 1.3 2014/05/03 04:12:15 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/ChangeLog,v 1.4 2014/05/04 08:50:11 patrick Exp $ + +*lmctfy-0.3.1 (04 May 2014) + + 04 May 2014; Patrick Lauer <patrick@gentoo.org> +lmctfy-0.3.1.ebuild: + Bump *lmctfy-0.3.0 (03 May 2014) diff --git a/sys-apps/lmctfy/lmctfy-0.3.1.ebuild b/sys-apps/lmctfy/lmctfy-0.3.1.ebuild new file mode 100644 index 000000000000..51977c83afba --- /dev/null +++ b/sys-apps/lmctfy/lmctfy-0.3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lmctfy/lmctfy-0.3.1.ebuild,v 1.1 2014/05/04 08:50:11 patrick Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Linux application container management from Google" +HOMEPAGE="https://github.com/google/lmctfy" +SRC_URI="https://github.com/google/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND=" + dev-libs/protobuf + dev-cpp/gflags + dev-libs/re2 + " +RDEPEND="${DEPEND}" + +src_compile() { + # test deps take too long to compile + use test && emake || emake lmctfy liblmctfy.a +} + +src_install() { + # silly upstream! + mkdir -p "${D}/usr/bin" + cp "${S}/bin/lmctfy/cli/lmctfy" "${D}/usr/bin/" || die "Failed to copy cli binary" + dolib.a "${S}/bin/liblmctfy.a" || die "Failed to copy library" +} |