Gentoo Archives: gentoo-commits

From: "Denis Dupeyron (calchan)" <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libgeda: ChangeLog libgeda-1.2.0.ebuild
Date: Tue, 18 Sep 2007 10:04:10
Message-Id: E1IXZoh-00083J-IA@stork.gentoo.org
1 calchan 07/09/18 09:56:27
2
3 Modified: ChangeLog
4 Added: libgeda-1.2.0.ebuild
5 Log:
6 Version bump, thanks to Stefan Salewski (bug #192367).
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.38 sci-libs/libgeda/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeda/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeda/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeda/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 19 Jul 2007 09:32:38 -0000 1.37
23 +++ ChangeLog 18 Sep 2007 09:56:27 -0000 1.38
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-libs/libgeda
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.37 2007/07/19 09:32:38 calchan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/ChangeLog,v 1.38 2007/09/18 09:56:27 calchan Exp $
29 +
30 +*libgeda-1.2.0 (18 Sep 2007)
31 +
32 + 18 Sep 2007; Denis Dupeyron <calchan@g.o> +libgeda-1.2.0.ebuild:
33 + Version bump, thanks to Stefan Salewski (bug #192367).
34
35 *libgeda-1.1.1 (19 Jul 2007)
36
37
38
39
40 1.1 sci-libs/libgeda/libgeda-1.2.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeda/libgeda-1.2.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeda/libgeda-1.2.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libgeda-1.2.0.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeda/libgeda-1.2.0.ebuild,v 1.1 2007/09/18 09:56:27 calchan Exp $
50
51 inherit eutils
52
53 SUBDIR="v1.2"
54 HOMEPAGE="http://www.geda.seul.org"
55 DESCRIPTION="libgeda - this library provides functions needed for the gEDA core suite"
56 SRC_URI="http://www.geda.seul.org/release/${SUBDIR}/${PV}/libgeda-${PV}.tar.gz"
57
58 IUSE="gd"
59 LICENSE="GPL-2"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
61 SLOT="0"
62
63 DEPEND=">=x11-libs/gtk+-2.4
64 >=dev-scheme/guile-1.6.3
65 >=dev-libs/libstroke-0.5.1
66 gd? ( >=media-libs/gd-2 )"
67
68 pkg_setup() {
69 if has_version ">=dev-scheme/guile-1.8" ; then
70 built_with_use "dev-scheme/guile" deprecated \
71 || die "You need either <dev-scheme/guile-1.8, or >=dev-scheme/guile-1.8 with USE=deprecated"
72 fi
73 if use gd ; then
74 built_with_use media-libs/gd png || die "media-libs/gd must be compiled with USE=png"
75 fi
76 }
77
78 src_unpack() {
79 unpack ${A}
80
81 # Skip the share sub-directory, we'll install prolog.ps manually
82 sed -i \
83 -e "s:SUBDIRS = src include scripts docs share:SUBDIRS = src include scripts docs:" \
84 ${S}/Makefile.in \
85 || die "Patch failed"
86 }
87
88 src_compile() {
89 econf --disable-dependency-tracking $(use_enable gd) || die "Configuration failed"
90 emake || die "Compilation failed"
91 }
92
93 src_install() {
94 emake DESTDIR=${D} install || die "Installation failed"
95
96 insinto /usr/share/gEDA
97 doins share/prolog.ps
98
99 dodoc AUTHORS BUGS ChangeLog README
100 }
101
102
103
104 --
105 gentoo-commits@g.o mailing list