diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-20 12:37:01 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-20 12:37:01 +0200 |
commit | 729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7 (patch) | |
tree | 5b5edb2e7cc5ba983f57d9bc4793d15d524cbc8d /net-libs/openpgm | |
parent | dev-python/bcrypt: Drop old (diff) | |
download | gentoo-729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7.tar.gz gentoo-729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7.tar.bz2 gentoo-729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7.zip |
net-libs/openpgm: Drop old
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'net-libs/openpgm')
-rw-r--r-- | net-libs/openpgm/openpgm-5.1.118.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/net-libs/openpgm/openpgm-5.1.118.ebuild b/net-libs/openpgm/openpgm-5.1.118.ebuild deleted file mode 100644 index dde8f77f9442..000000000000 --- a/net-libs/openpgm/openpgm-5.1.118.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 -inherit autotools - -DESCRIPTION="OpenPGM is an open source implementation of the Pragmatic General -Multicast (PGM) specification" -HOMEPAGE="https://code.google.com/p/openpgm" -SRC_URI="https://openpgm.googlecode.com/files/libpgm-${PV}~dfsg.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd" -IUSE="static-libs" - -DEPEND="" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/libpgm-${PV}~dfsg/${PN}/pgm" - -src_prepare() { - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --disable-dependency-tracking -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc "${S}"/../doc/* "${S}"/README - - # remove useless .la files - find "${D}" -name '*.la' -delete - - # remove useless .a (only for non static compilation) - use static-libs || find "${D}" -name '*.a' -delete -} |