diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-11-11 12:50:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-11-11 12:50:04 +0000 |
commit | 1e2077a5d93bd91ef8a182d406a5bdbfa3c8d33c (patch) | |
tree | 63e14230552ef2c7c15df62bae59d3fec3a0dd0f /dev-libs/libelf | |
parent | add kdeaccessibility as a kde base class (diff) | |
download | gentoo-2-1e2077a5d93bd91ef8a182d406a5bdbfa3c8d33c.tar.gz gentoo-2-1e2077a5d93bd91ef8a182d406a5bdbfa3c8d33c.tar.bz2 gentoo-2-1e2077a5d93bd91ef8a182d406a5bdbfa3c8d33c.zip |
touchups
Diffstat (limited to 'dev-libs/libelf')
-rw-r--r-- | dev-libs/libelf/files/digest-libelf-0.7.0 | 1 | ||||
-rw-r--r-- | dev-libs/libelf/libelf-0.7.0.ebuild | 36 | ||||
-rw-r--r-- | dev-libs/libelf/libelf-0.8.2.ebuild | 14 |
3 files changed, 3 insertions, 48 deletions
diff --git a/dev-libs/libelf/files/digest-libelf-0.7.0 b/dev-libs/libelf/files/digest-libelf-0.7.0 deleted file mode 100644 index a8c87da5bd12..000000000000 --- a/dev-libs/libelf/files/digest-libelf-0.7.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 0a831d024d42cf2dcb94f696452219a6 libelf-0.7.0.tar.gz 91965 diff --git a/dev-libs/libelf/libelf-0.7.0.ebuild b/dev-libs/libelf/libelf-0.7.0.ebuild deleted file mode 100644 index 22880baa8320..000000000000 --- a/dev-libs/libelf/libelf-0.7.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.7.0.ebuild,v 1.11 2003/09/06 22:29:24 msterret Exp $ - -IUSE="nls" - -S="${WORKDIR}/${P}" -DESCRIPTION="A ELF object file access library" -SRC_URI="http://www.stud.uni-hannover.de/~michael/software/libelf-0.7.0.tar.gz" -HOMEPAGE="http://www.stud.uni-hannover.de/~michael/software/" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 sparc" - -DEPEND="!dev-libs/elfutils - nls? ( sys-devel/gettext )" - -src_compile() { - local myconf - - use nls || myconf="--disable-nls" - - econf \ - --enable-shared \ - ${myconf} || die - - emake || die -} - -src_install () { - make prefix=${D}/usr \ - install || die - - dodoc COYPING.LIB CHangeLog VERSION README -} diff --git a/dev-libs/libelf/libelf-0.8.2.ebuild b/dev-libs/libelf/libelf-0.8.2.ebuild index 0a4fec6e18f9..ea4ff7d67e5c 100644 --- a/dev-libs/libelf/libelf-0.8.2.ebuild +++ b/dev-libs/libelf/libelf-0.8.2.ebuild @@ -1,10 +1,7 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.8.2.ebuild,v 1.11 2003/09/06 22:29:24 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.8.2.ebuild,v 1.12 2003/11/11 12:50:04 vapier Exp $ -IUSE="nls" - -S="${WORKDIR}/${P}" DESCRIPTION="A ELF object file access library" SRC_URI="http://www.stud.uni-hannover.de/~michael/software/${P}.tar.gz" HOMEPAGE="http://www.stud.uni-hannover.de/~michael/software/" @@ -12,19 +9,16 @@ HOMEPAGE="http://www.stud.uni-hannover.de/~michael/software/" LICENSE="LGPL-2" SLOT="0" KEYWORDS="x86 ppc sparc alpha hppa" +IUSE="nls" DEPEND="!dev-libs/elfutils nls? ( sys-devel/gettext )" src_compile() { - local myconf="" - - use nls || myconf="--disable-nls" - econf \ + `use_enable nls` \ --enable-shared \ ${myconf} || die - emake || die } @@ -34,7 +28,5 @@ src_install() { includedir=${D}usr/include \ install \ install-compat || die - dodoc COPYING.LIB ChangeLog VERSION README } - |