diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2002-07-29 13:15:27 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2002-07-29 13:15:27 +0000 |
commit | 7cbd13a2a3430a5ae969a3497817258c42c4bb2c (patch) | |
tree | 47c9b3334581e00db94c9c261caed3bce7461e83 /dev-util/ddd/ddd-3.3.1-r2.ebuild | |
parent | version bump, now has GPL-2 license (diff) | |
download | gentoo-2-7cbd13a2a3430a5ae969a3497817258c42c4bb2c.tar.gz gentoo-2-7cbd13a2a3430a5ae969a3497817258c42c4bb2c.tar.bz2 gentoo-2-7cbd13a2a3430a5ae969a3497817258c42c4bb2c.zip |
fix for gcc3.[12]-ness and lintool fix
Diffstat (limited to 'dev-util/ddd/ddd-3.3.1-r2.ebuild')
-rw-r--r-- | dev-util/ddd/ddd-3.3.1-r2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-util/ddd/ddd-3.3.1-r2.ebuild b/dev-util/ddd/ddd-3.3.1-r2.ebuild new file mode 100644 index 000000000000..e9d3d20c1abe --- /dev/null +++ b/dev-util/ddd/ddd-3.3.1-r2.ebuild @@ -0,0 +1,41 @@ +# 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-util/ddd/ddd-3.3.1-r2.ebuild,v 1.1 2002/07/29 13:15:27 mkennedy Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="GNU DDD is a graphical front-end for command-line debuggers" +HOMEPAGE="http://www.gnu.org/software/ddd" +SRC_URI="ftp://ftp.easynet.be/gnu/ddd/${P}.tar.gz + ftp://ftp.easynet.be/gnu/ddd/${P}-html-manual.tar.gz" + +SLOT="0" +LICENSE="GPL-2 LGPL-2.1 FDL-1.1" +KEYWORDS="x86" + +DEPEND="virtual/x11 + >=sys-devel/gdb-4.16 + >=x11-libs/openmotif-2.1.30" + +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd ${S}/ddd + patch -p0 <${FILESDIR}/ddd-3.3.1-gcc3-gentoo.patch || die +} + +src_compile() { + CXXFLAGS="${CXXFLAGS} -Wno-deprecated" + econf || die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + mv ${S}/doc/README ${S}/doc/README-DOC + dodoc ANNOUNCE AUTHORS BUGS COPYING* CREDITS INSTALL NEWS* NICKNAMES \ + OPENBUGS PROBLEMS README* TIPS TODO + + mv ${S}/doc/* ${D}/usr/share/doc/${PF} +} |