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-electronics/gerbv: ChangeLog gerbv-1.0.3.ebuild
Date: Mon, 03 Dec 2007 10:03:35
Message-Id: E1Iz89B-0004mD-BB@stork.gentoo.org
1 calchan 07/12/03 10:03:29
2
3 Modified: ChangeLog
4 Added: gerbv-1.0.3.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.4_rc4)
8
9 Revision Changes Path
10 1.22 sci-electronics/gerbv/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 21 Dec 2006 06:41:27 -0000 1.21
23 +++ ChangeLog 3 Dec 2007 10:03:28 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-electronics/gerbv
26 -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/ChangeLog,v 1.21 2006/12/21 06:41:27 compnerd Exp $
28 +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/ChangeLog,v 1.22 2007/12/03 10:03:28 calchan Exp $
30 +
31 +*gerbv-1.0.3 (03 Dec 2007)
32 +
33 + 03 Dec 2007; Denis Dupeyron <calchan@g.o> +gerbv-1.0.3.ebuild:
34 + Version bump.
35
36 21 Dec 2006; Saleem Abdulrasool <compnerd@g.o> -gerbv-0.15.ebuild:
37 gnome-1.x removal
38
39
40
41 1.1 sci-electronics/gerbv/gerbv-1.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/gerbv-1.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/gerbv-1.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gerbv-1.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/gerbv-1.0.3.ebuild,v 1.1 2007/12/03 10:03:28 calchan Exp $
51
52 DESCRIPTION="A free Gerber viewer"
53 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
54 HOMEPAGE="http://gerbv.sourceforge.net/"
55
56 IUSE="doc examples png unit-mm"
57 SLOT="0"
58 LICENSE="GPL-2"
59 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
60
61 DEPEND="=x11-libs/gtk+-2*
62 png? ( media-libs/libpng )"
63
64 src_compile() {
65 econf \
66 --disable-dependency-tracking \
67 --enable-gtk2 \
68 $(use_enable png exportpng ) \
69 $(use_enable unit-mm ) \
70 --with-maxfiles=50 \
71 || die "Configuration failed"
72 emake || die "Compilation failed"
73 }
74
75 src_install () {
76 emake DESTDIR="${D}" install || die "Installation failed"
77 dodoc AUTHORS ChangeLog CONTRIBUTORS HACKING NEWS README TODO
78
79 if use doc
80 then
81 find doc -name "Makefile*" -exec rm -f '{}' \;
82 find doc -name "*.txt" -exec ecompress '{}' \;
83 insinto /usr/share/doc/${PF}
84 doins -r doc/*
85 fi
86
87 if use examples
88 then
89 find example -name "Makefile*" -exec rm -f '{}' \;
90 find example -name "*.txt" -exec ecompress '{}' \;
91 insinto /usr/share/doc/${PF}/examples
92 doins -r example/*
93 fi
94 }
95
96
97
98 --
99 gentoo-commits@g.o mailing list