diff options
author | 2020-09-24 15:13:08 -0400 | |
---|---|---|
committer | 2020-09-24 15:53:25 -0400 | |
commit | 69a45b5b62c65aab19fea6d9402d8c0f767b3538 (patch) | |
tree | 8875b8607847200e5b667dadf0ee53337c0e2add /sys-apps/lmctfy/lmctfy-0.2.0.ebuild | |
parent | sys-apps/hprofile: drop old EAPI=5 (diff) | |
download | gentoo-69a45b5b62c65aab19fea6d9402d8c0f767b3538.tar.gz gentoo-69a45b5b62c65aab19fea6d9402d8c0f767b3538.tar.bz2 gentoo-69a45b5b62c65aab19fea6d9402d8c0f767b3538.zip |
sys-apps/lmctfy: drop old EAPI=5
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'sys-apps/lmctfy/lmctfy-0.2.0.ebuild')
-rw-r--r-- | sys-apps/lmctfy/lmctfy-0.2.0.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sys-apps/lmctfy/lmctfy-0.2.0.ebuild b/sys-apps/lmctfy/lmctfy-0.2.0.ebuild deleted file mode 100644 index a239974b055b..000000000000 --- a/sys-apps/lmctfy/lmctfy-0.2.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -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" -RESTRICT="!test? ( 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" -} |