Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/ddd: ddd-3.3.12.ebuild ChangeLog
Date: Thu, 23 Apr 2009 15:02:01
Message-Id: E1Lx0R4-0005VX-9y@stork.gentoo.org
1 patrick 09/04/23 15:01:58
2
3 Modified: ChangeLog
4 Added: ddd-3.3.12.ebuild
5 Log:
6 Bump to 3.3.12. Fixes #252261
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.52 dev-util/ddd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ddd/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ddd/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ddd/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 21 Apr 2008 17:19:55 -0000 1.51
23 +++ ChangeLog 23 Apr 2009 15:01:58 -0000 1.52
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/ddd
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v 1.51 2008/04/21 17:19:55 phreak Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ChangeLog,v 1.52 2009/04/23 15:01:58 patrick Exp $
30 +
31 +*ddd-3.3.12 (23 Apr 2009)
32 +
33 + 23 Apr 2009; Patrick Lauer <patrick@g.o> +ddd-3.3.12.ebuild:
34 + Bump to 3.3.12. Fixes #252261
35
36 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
37 Fix up metadata.xml. If there's no maintainer for the package, the metadata
38
39
40
41 1.1 dev-util/ddd/ddd-3.3.12.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ddd/ddd-3.3.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/ddd/ddd-3.3.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ddd-3.3.12.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/ddd/ddd-3.3.12.ebuild,v 1.1 2009/04/23 15:01:58 patrick Exp $
51
52 inherit eutils
53
54 DESCRIPTION="graphical front-end for command-line debuggers"
55 HOMEPAGE="http://www.gnu.org/software/ddd"
56 #SRC_URI="mirror://sourceforge/ddd/${P}.tar.gz"
57 SRC_URI="http://ftp.gnu.org/gnu/${PN}/${P}.tar.gz"
58
59 SLOT="0"
60 LICENSE="GPL-2 LGPL-2.1 FDL-1.1"
61 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE=""
63
64 DEPEND="x11-libs/libXaw
65 x11-libs/libXp
66 >=sys-devel/gcc-3
67 >=sys-devel/gdb-6.4
68 x11-libs/openmotif"
69 RDEPEND="${DEPEND}
70 sci-visualization/gnuplot"
71
72 RESTRICT="test"
73
74 src_compile() {
75 CXXFLAGS="${CXXFLAGS}"
76 econf || die
77 cd "${S}"/ddd
78 emake version.h build.h host.h root.h configinfo.C Ddd.ad.h || die "Failed to build headers"
79 cd "${S}"
80 emake || die
81 }
82
83 src_install() {
84 dodir /usr/lib
85 # If using internal libiberty.a, need to pass
86 # $tooldir to 'make install', else we get
87 # sandbox errors ... bug #4614.
88 # <azarah@g.o> 05 Dec 2002
89 einstall tooldir="${D}/usr" || die
90
91 # This one is from binutils
92 [ -f "${D}"/usr/lib/libiberty.a ] && rm -f "${D}"/usr/lib/libiberty.a
93 # Remove empty dir ...
94 rmdir "${D}"/usr/lib || :
95
96 mv "${S}"/doc/README "${S}"/doc/README-DOC
97 dodoc AUTHORS COPYING* CREDITS INSTALL NEWS* PROBLEMS README* TIPS TODO
98
99 mv "${S}"/doc/* "${D}"/usr/share/doc/${PF}
100 }