diff options
Diffstat (limited to 'sys-devel/gdb/gdb-6.1.1.ebuild')
-rw-r--r-- | sys-devel/gdb/gdb-6.1.1.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/sys-devel/gdb/gdb-6.1.1.ebuild b/sys-devel/gdb/gdb-6.1.1.ebuild new file mode 100644 index 000000000000..afd9217c828b --- /dev/null +++ b/sys-devel/gdb/gdb-6.1.1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gdb/gdb-6.1.1.ebuild,v 1.1 2004/06/21 22:24:37 azarah Exp $ + +inherit flag-o-matic eutils + +DESCRIPTION="GNU debugger" +HOMEPAGE="http://sources.redhat.com/gdb/" +SRC_URI="http://mirrors.rcn.net/pub/sourceware/gdb/releases/${P}.tar.bz2" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc64 ~hppa" +IUSE="nls" + +DEPEND=">=sys-libs/ncurses-5.2-r2 + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/gdb-6.1-ppc64-01.patch + epatch ${FILESDIR}/gdb-6.1-hppa-01.patch +} + +src_compile() { + replace-flags -O? -O2 + econf `use_enable nls` || die + make || die +} + +src_install() { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + 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 -f ${D}/usr/lib/libiberty.* + rm -f ${D}/usr/lib/libopcodes.* + rm -f ${D}/usr/share/info/{bfd,configure,standards}.info* + + 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 +} |