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: gerbv-2.3.0.ebuild ChangeLog gerbv-1.0.2.ebuild gerbv-1.0.3.ebuild gerbv-2.0.1.ebuild
Date: Mon, 05 Oct 2009 21:35:06
Message-Id: E1MuvCx-0007O5-Oa@stork.gentoo.org
1 calchan 09/10/05 21:35:03
2
3 Modified: ChangeLog
4 Added: gerbv-2.3.0.ebuild
5 Removed: gerbv-1.0.2.ebuild gerbv-1.0.3.ebuild
6 gerbv-2.0.1.ebuild
7 Log:
8 Version bump, thanks to Stefan Salewski (bug #279469). Removed old ebuilds.
9 (Portage version: 2.1.6.13/cvs/Linux i686)
10
11 Revision Changes Path
12 1.27 sci-electronics/gerbv/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/ChangeLog?rev=1.27&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/ChangeLog?rev=1.27&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/ChangeLog?r1=1.26&r2=1.27
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/ChangeLog,v
21 retrieving revision 1.26
22 retrieving revision 1.27
23 diff -u -r1.26 -r1.27
24 --- ChangeLog 30 Nov 2008 22:45:08 -0000 1.26
25 +++ ChangeLog 5 Oct 2009 21:35:03 -0000 1.27
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sci-electronics/gerbv
28 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/ChangeLog,v 1.26 2008/11/30 22:45:08 calchan Exp $
30 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/ChangeLog,v 1.27 2009/10/05 21:35:03 calchan Exp $
32 +
33 +*gerbv-2.3.0 (05 Oct 2009)
34 +
35 + 05 Oct 2009; Denis Dupeyron <calchan@g.o> -gerbv-1.0.2.ebuild,
36 + -gerbv-1.0.3.ebuild, -gerbv-2.0.1.ebuild, +gerbv-2.3.0.ebuild:
37 + Version bump, thanks to Stefan Salewski (bug #279469). Removed old
38 + ebuilds.
39
40 *gerbv-2.1.0 (30 Nov 2008)
41
42
43
44
45 1.1 sci-electronics/gerbv/gerbv-2.3.0.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/gerbv-2.3.0.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-electronics/gerbv/gerbv-2.3.0.ebuild?rev=1.1&content-type=text/plain
49
50 Index: gerbv-2.3.0.ebuild
51 ===================================================================
52 /usr/portage/local/overlay/sci-electronics/gerbv/gerbv-2.3.0.ebuild
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sci-electronics/gerbv/gerbv-2.3.0.ebuild,v 1.1 2009/10/05 21:35:03 calchan Exp $
56
57 EAPI="2"
58
59 inherit fdo-mime
60
61 DESCRIPTION="A RS-274X (Gerber) and NC drill (Excellon) file viewer"
62 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
63 HOMEPAGE="http://gerbv.sourceforge.net/"
64
65 IUSE="unit-mm doc examples"
66 SLOT="0"
67 LICENSE="GPL-2"
68 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
69
70 RDEPEND=">=x11-libs/gtk+-2.4
71 >=x11-libs/cairo-1.2"
72
73 DEPEND="${RDEPEND}
74 >=dev-util/pkgconfig-0.9"
75
76 src_configure() {
77 econf \
78 $(use_enable unit-mm) \
79 --disable-dependency-tracking \
80 --disable-update-desktop-database
81 }
82
83 src_install () {
84 make DESTDIR="${D}" install || die "install failed"
85 dodoc AUTHORS ChangeLog CONTRIBUTORS HACKING NEWS README* TODO BUGS
86
87 rm doc/Doxyfile.nopreprocessing
88 if use doc; then
89 find doc -name "Makefile*" -exec rm -f '{}' \;
90 find doc -name "*.txt" -exec ecompress '{}' \;
91 insinto /usr/share/doc/${PF}
92 doins -r doc/*
93 fi
94
95 if use examples; then
96 find example -name "Makefile*" -exec rm -f '{}' \;
97 find example -name "*.txt" -exec ecompress '{}' \;
98 insinto /usr/share/doc/${PF}/examples
99 doins -r example/*
100 fi
101 }
102
103 pkg_postinst() {
104 fdo-mime_desktop_database_update
105 }
106
107 pkg_postrm() {
108 fdo-mime_desktop_database_update
109 }