diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-11 13:50:25 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-11 13:50:25 +0000 |
commit | 53289c7caf1cf46ad992474a239cecee0ecf58ff (patch) | |
tree | 89ba76b89e569c10f19836c11d96ac45f716218c /sys-devel | |
parent | wrong -r in the ChangeLog (diff) | |
download | historical-53289c7caf1cf46ad992474a239cecee0ecf58ff.tar.gz historical-53289c7caf1cf46ad992474a239cecee0ecf58ff.tar.bz2 historical-53289c7caf1cf46ad992474a239cecee0ecf58ff.zip |
These didn't get added when I changed the ChangeLog
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gdb/files/digest-gdb-5.1.1 | 1 | ||||
-rw-r--r-- | sys-devel/gdb/gdb-5.1.1.ebuild | 82 |
2 files changed, 83 insertions, 0 deletions
diff --git a/sys-devel/gdb/files/digest-gdb-5.1.1 b/sys-devel/gdb/files/digest-gdb-5.1.1 new file mode 100644 index 000000000000..ae3b64a8f9cf --- /dev/null +++ b/sys-devel/gdb/files/digest-gdb-5.1.1 @@ -0,0 +1 @@ +MD5 805163efd455663745532c12893a96ca gdb-5.1.1.tar.gz 13874218 diff --git a/sys-devel/gdb/gdb-5.1.1.ebuild b/sys-devel/gdb/gdb-5.1.1.ebuild new file mode 100644 index 000000000000..d24d89d7493a --- /dev/null +++ b/sys-devel/gdb/gdb-5.1.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Tools Team <tools@gentoo.org> +# Author: Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-5.1.1.ebuild,v 1.1 2002/04/11 13:50:25 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="GNU debugger" +HOMEPAGE="http://www.gnu.org/software/gdb/gdb.html" +SRC_URI="ftp://sourceware.cygnus.com/pub/gdb/releases/${P}.tar.gz + ftp://ftp.freesoftware.com/pub/sourceware/gdb/releases/${P}.tar.gz" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2-r2 + nls? ( sys-devel/gettext )" + +RDEPEND="virtual/glibc + >=sys-libs/ncurses-5.2-r2" + + +src_compile() { + + local myconf + + use nls || myconf="--disable-nls" + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --without-included-regex \ + --without-included-gettext \ + --host=${CHOST} \ + ${myconf} || die + + make || die +} + +src_install() { + + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + install || die + + cd gdb/doc + make \ + infodir=${D}/usr/share/info \ + install-info || die + + cd ${S}/bfd/doc + make \ + infodir=${D}/usr/share/info \ + install-info || die + + cd ${S} + + # These includes and libs are in binutils already + rm -f ${D}/usr/lib/libbfd.* + rm -r ${D}/usr/lib/libiberty.* + rm -f ${D}/usr/lib/libopcodes.* + + rm -rf ${D}/usr/include + + dodoc COPYING* README + + docinto gdb + dodoc gdb/CONTRIBUTE gdb/COPYING* gdb/README \ + gdb/MAINTAINERS gdb/NEWS gdb/ChangeLog* \ + gdb/TODO + + docinto sim + dodoc sim/ChangeLog sim/MAINTAINERS sim/README-HACKING + + docinto mmalloc + dodoc mmalloc/COPYING.LIB mmalloc/MAINTAINERS \ + mmalloc/ChangeLog mmalloc/TODO +} + + + + |