diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-09-29 13:47:37 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-09-29 13:47:37 +0000 |
commit | 203f8ed8bbc57aba1fe72e9f2ab0cc7b0eccea66 (patch) | |
tree | 254689187ab1a7a7ecfd5fd22251d7ff30460e96 /dev-libs/libelf | |
parent | redo fix (diff) | |
download | gentoo-2-203f8ed8bbc57aba1fe72e9f2ab0cc7b0eccea66.tar.gz gentoo-2-203f8ed8bbc57aba1fe72e9f2ab0cc7b0eccea66.tar.bz2 gentoo-2-203f8ed8bbc57aba1fe72e9f2ab0cc7b0eccea66.zip |
new bugfix release
Diffstat (limited to 'dev-libs/libelf')
-rw-r--r-- | dev-libs/libelf/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libelf/files/digest-libelf-0.8.2 | 1 | ||||
-rw-r--r-- | dev-libs/libelf/libelf-0.8.2.ebuild | 37 |
3 files changed, 46 insertions, 1 deletions
diff --git a/dev-libs/libelf/ChangeLog b/dev-libs/libelf/ChangeLog index cf2e946e60b6..026b75410495 100644 --- a/dev-libs/libelf/ChangeLog +++ b/dev-libs/libelf/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/libelf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/ChangeLog,v 1.1 2002/02/01 21:53:11 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/ChangeLog,v 1.2 2002/09/29 13:47:37 azarah Exp $ + +*libelf-0.8.2 (29 Sep 2002) + + 29 Sep 2002; Martin Schlemmer <azarah@gentoo.org> : + + Bump version to fully fix bug #4540. Also fix the docs being installed, + and compat headers not installed when package was already merged. *libelf-0.7.0 (1 Feb 2002) diff --git a/dev-libs/libelf/files/digest-libelf-0.8.2 b/dev-libs/libelf/files/digest-libelf-0.8.2 new file mode 100644 index 000000000000..3c932874be28 --- /dev/null +++ b/dev-libs/libelf/files/digest-libelf-0.8.2 @@ -0,0 +1 @@ +MD5 0b153e51884e0da7e71523f223a11d3c libelf-0.8.2.tar.gz 113966 diff --git a/dev-libs/libelf/libelf-0.8.2.ebuild b/dev-libs/libelf/libelf-0.8.2.ebuild new file mode 100644 index 000000000000..66f75ca03069 --- /dev/null +++ b/dev-libs/libelf/libelf-0.8.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libelf/libelf-0.8.2.ebuild,v 1.1 2002/09/29 13:47:37 azarah Exp $ + +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/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="x86 sparc sparc64" + +DEPEND="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 \ + libdir=${D}usr/lib \ + includedir=${D}usr/include \ + install \ + install-compat || die + + dodoc COPYING.LIB ChangeLog VERSION README +} + |