diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-02-05 00:24:25 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-02-05 00:24:25 +0000 |
commit | ed0c26101e0610865a24e91c04c40b5548a3e540 (patch) | |
tree | f5f522904c68b9f97fa98469d1c3b13a918e07aa /dev-libs/elfutils/elfutils-0.73.ebuild | |
parent | Moved default location of pine.conf and pine.conf.fixed to /etc and (diff) | |
download | gentoo-2-ed0c26101e0610865a24e91c04c40b5548a3e540.tar.gz gentoo-2-ed0c26101e0610865a24e91c04c40b5548a3e540.tar.bz2 gentoo-2-ed0c26101e0610865a24e91c04c40b5548a3e540.zip |
new version
Diffstat (limited to 'dev-libs/elfutils/elfutils-0.73.ebuild')
-rw-r--r-- | dev-libs/elfutils/elfutils-0.73.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-libs/elfutils/elfutils-0.73.ebuild b/dev-libs/elfutils/elfutils-0.73.ebuild new file mode 100644 index 000000000000..f62969b3f180 --- /dev/null +++ b/dev-libs/elfutils/elfutils-0.73.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.73.ebuild,v 1.1 2003/02/05 00:24:25 azarah Exp $ + +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} + + 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 + + dodoc AUTHORS COPYING ChangeLog NEWS NOTES README THANKS TODO +} |