diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-11-15 22:07:22 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-11-15 22:07:22 +0100 |
commit | b07defd142c066bbc7b28772cba9dd46fbadfd74 (patch) | |
tree | b812eacc7545e065b59b7947ba2a40da93874a7d /sys-libs | |
parent | Update gnome 3.18 mask (diff) | |
download | gentoo-b07defd142c066bbc7b28772cba9dd46fbadfd74.tar.gz gentoo-b07defd142c066bbc7b28772cba9dd46fbadfd74.tar.bz2 gentoo-b07defd142c066bbc7b28772cba9dd46fbadfd74.zip |
sys-libs/libieee1284: Remove old
Package-Manager: portage-2.2.24
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild | 41 | ||||
-rw-r--r-- | sys-libs/libieee1284/libieee1284-0.2.11-r2.ebuild | 44 |
2 files changed, 0 insertions, 85 deletions
diff --git a/sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild b/sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild deleted file mode 100644 index b120d255106f..000000000000 --- a/sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" - -PYTHON_DEPEND="python? 2" -inherit python - -DESCRIPTION="Library to query devices using IEEE1284" -HOMEPAGE="http://cyberelk.net/tim/libieee1284/index.html" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~x86-fbsd" -IUSE="doc python" - -RDEPEND="" -DEPEND="${RDEPEND} - doc? ( - app-text/docbook-sgml-utils - >=app-text/docbook-sgml-dtd-4.1 - app-text/docbook-dsssl-stylesheets - dev-perl/XML-RegExp - )" - -pkg_setup() { - python_set_active_version 2 -} - -src_configure() { - econf \ - $(use_with python) \ - --disable-dependency-tracking -} - -src_install () { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS NEWS README* TODO doc/interface* || die -} diff --git a/sys-libs/libieee1284/libieee1284-0.2.11-r2.ebuild b/sys-libs/libieee1284/libieee1284-0.2.11-r2.ebuild deleted file mode 100644 index 0823473f3a54..000000000000 --- a/sys-libs/libieee1284/libieee1284-0.2.11-r2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" - -PYTHON_DEPEND="python? 2" -inherit python - -DESCRIPTION="Library to query devices using IEEE1284" -HOMEPAGE="http://cyberelk.net/tim/libieee1284/index.html" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~x86-fbsd" -IUSE="doc python static-libs" - -RDEPEND="" -DEPEND="${RDEPEND} - doc? ( - app-text/docbook-sgml-utils - >=app-text/docbook-sgml-dtd-4.1 - app-text/docbook-dsssl-stylesheets - dev-perl/XML-RegExp - )" - -pkg_setup() { - use python && python_set_active_version 2 -} - -src_configure() { - econf \ - --enable-shared \ - $(use_enable static-libs static) \ - $(use_with python) \ - --disable-dependency-tracking -} - -src_install () { - emake DESTDIR="${D}" install || die - find "${D}" -name '*.la' -delete - dodoc AUTHORS NEWS README* TODO doc/interface* -} |