summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Jones <cretin@gentoo.org>2003-06-24 14:38:11 +0000
committerStefan Jones <cretin@gentoo.org>2003-06-24 14:38:11 +0000
commit540f52f870d7207d11874adcc565a107157d4b64 (patch)
treee079c13b4d0ded3850b368e7ed02ce89be7e91f9 /dev-libs
parentMark stable on alpha (diff)
downloadgentoo-2-540f52f870d7207d11874adcc565a107157d4b64.tar.gz
gentoo-2-540f52f870d7207d11874adcc565a107157d4b64.tar.bz2
gentoo-2-540f52f870d7207d11874adcc565a107157d4b64.zip
ChangeLog elfutils-0.76-r1.ebuild :
Added to stable branch for amd64 elfutils-0.76-r2.ebuild files/digest-elfutils-0.76-r2 files/elfutils-0.76-hidden.diff : Bug fix no longer needed with current binutils
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/elfutils/ChangeLog9
-rw-r--r--dev-libs/elfutils/elfutils-0.76-r1.ebuild4
-rw-r--r--dev-libs/elfutils/elfutils-0.76-r2.ebuild53
-rw-r--r--dev-libs/elfutils/files/digest-elfutils-0.76-r21
-rw-r--r--dev-libs/elfutils/files/elfutils-0.76-hidden.diff24
5 files changed, 10 insertions, 81 deletions
diff --git a/dev-libs/elfutils/ChangeLog b/dev-libs/elfutils/ChangeLog
index f44f887cb84b..9dfd5a62e84f 100644
--- a/dev-libs/elfutils/ChangeLog
+++ b/dev-libs/elfutils/ChangeLog
@@ -1,14 +1,21 @@
# ChangeLog for dev-libs/elfutils
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.9 2003/05/14 10:41:07 cretin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.10 2003/06/24 14:38:10 cretin Exp $
*elfutils-0.76-r2 (14 May 2003)
+ 24 June 2003; Stefan Jones <cretin@gentoo.org> :
+ Remove from portage as bug fix is not needed anymore,
+ it was a gcc / binutils bug.
+
14 May 2003; Stefan Jones <cretin@gentoo.org> elfutils-0.76-hidden.diff :
Added patch to fix bug #20948
*elfutils-0.76-r1 (24 Apr 2003)
+ 24 June 2003; Stefan Jones <cretin@gentoo.org> :
+ Added to stable amd64 tree.
+
24 Apr 2003; Martin Holzer <mholzer@gentoo.org> elfutils-0.76-r1.ebuild:
Removed /usr/usr/share. closes #19758.
diff --git a/dev-libs/elfutils/elfutils-0.76-r1.ebuild b/dev-libs/elfutils/elfutils-0.76-r1.ebuild
index 311bac913133..8153c7394885 100644
--- a/dev-libs/elfutils/elfutils-0.76-r1.ebuild
+++ b/dev-libs/elfutils/elfutils-0.76-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.76-r1.ebuild,v 1.1 2003/04/24 22:06:52 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.76-r1.ebuild,v 1.2 2003/06/24 14:38:11 cretin Exp $
IUSE=""
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.redhat.com/"
LICENSE="OpenSoftware"
SLOT="0"
-KEYWORDS="x86 sparc ppc alpha"
+KEYWORDS="x86 sparc ppc alpha amd64"
DEPEND="virtual/glibc
>=sys-devel/gcc-3.2.1-r6
diff --git a/dev-libs/elfutils/elfutils-0.76-r2.ebuild b/dev-libs/elfutils/elfutils-0.76-r2.ebuild
deleted file mode 100644
index 6a0a9d479a2b..000000000000
--- a/dev-libs/elfutils/elfutils-0.76-r2.ebuild
+++ /dev/null
@@ -1,53 +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/elfutils/elfutils-0.76-r2.ebuild,v 1.1 2003/05/14 10:41:07 cretin Exp $
-
-inherit eutils
-
-IUSE=""
-
-S="${WORKDIR}/${P}"
-DESCRIPTION="Libraries and utilities to handle compiled objects.
-This should be a drop in replacement for libelf."
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-HOMEPAGE="http://www.redhat.com/"
-
-LICENSE="OpenSoftware"
-SLOT="0"
-KEYWORDS="~x86 ~sparc ~ppc ~alpha"
-
-DEPEND="virtual/glibc
- >=sys-devel/gcc-3.2.1-r6
- !dev-libs/libelf"
-
-src_unpack() {
- unpack ${A}
- epatch ${FILESDIR}/${P}-hidden.diff
-
- for x in $(find ${S}/ -name Makefile.in) ; do
- cp ${x} ${x}.orig
- sed -e 's:-Werror::g' \
- ${x}.orig > ${x}
- done
-}
-
-src_compile() {
- econf --program-prefix="eu-" \
- --enable-shared || die "./configure failed"
-
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- # Remove stuff we do not use ...
- rm -f ${D}/usr/bin/eu-ld
- rm -f ${D}/usr/include/elfutils/lib{asm,dw,dwarf}.h
- rm -f ${D}/usr/lib/lib{asm,dw}-${PV}.so
- rm -f ${D}/usr/lib/lib{asm,dw}.so*
- rm -f ${D}/usr/lib/lib{asm,dw,dwarf}.a
- rm -rf ${D}/usr/usr
-
- dodoc AUTHORS COPYING ChangeLog NEWS NOTES README THANKS TODO
-}
diff --git a/dev-libs/elfutils/files/digest-elfutils-0.76-r2 b/dev-libs/elfutils/files/digest-elfutils-0.76-r2
deleted file mode 100644
index 566928d8de69..000000000000
--- a/dev-libs/elfutils/files/digest-elfutils-0.76-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 51adf608642cd5fd6a4e3f25545b3c42 elfutils-0.76.tar.gz 746988
diff --git a/dev-libs/elfutils/files/elfutils-0.76-hidden.diff b/dev-libs/elfutils/files/elfutils-0.76-hidden.diff
deleted file mode 100644
index 4f4f03138ed5..000000000000
--- a/dev-libs/elfutils/files/elfutils-0.76-hidden.diff
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur elfutils-0.76.orig/libelf/elf_fill.c elfutils-0.76/libelf/elf_fill.c
---- elfutils-0.76.orig/libelf/elf_fill.c 2002-11-29 01:13:55.000000000 +0000
-+++ elfutils-0.76/libelf/elf_fill.c 2003-05-14 11:08:46.000000000 +0100
-@@ -21,7 +21,7 @@
- #include "libelfP.h"
-
-
--int __libelf_fill_byte;
-+int __libelf_fill_byte = 0;
-
-
- void
-diff -ur elfutils-0.76.orig/libelf/elf_version.c elfutils-0.76/libelf/elf_version.c
---- elfutils-0.76.orig/libelf/elf_version.c 2002-11-29 01:13:55.000000000 +0000
-+++ elfutils-0.76/libelf/elf_version.c 2003-05-14 11:03:33.000000000 +0100
-@@ -20,7 +20,7 @@
-
-
- /* Is the version initialized? */
--int __libelf_version_initialized;
-+int __libelf_version_initialized = 0;
-
- /* Currently selected version. */
- unsigned int __libelf_version = EV_CURRENT;