Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/gts: ChangeLog gts-20081607.ebuild
Date: Sat, 04 Oct 2008 10:33:14
Message-Id: E1Km4Ri-0001YJ-Fh@stork.gentoo.org
1 markusle 08/10/04 10:33:10
2
3 Modified: ChangeLog
4 Added: gts-20081607.ebuild
5 Log:
6 Version bump to newer development snapshot.
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-SENTINEL-2 i686)
8
9 Revision Changes Path
10 1.9 sci-libs/gts/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/gts/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/gts/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/gts/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/gts/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 22 Apr 2008 08:21:31 -0000 1.8
23 +++ ChangeLog 4 Oct 2008 10:33:09 -0000 1.9
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-libs/gts
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gts/ChangeLog,v 1.8 2008/04/22 08:21:31 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gts/ChangeLog,v 1.9 2008/10/04 10:33:09 markusle Exp $
29 +
30 +*gts-20081607 (03 Oct 2008)
31 +
32 + 03 Oct 2008; Markus Dittrich <markusle@g.o> +gts-20081607.ebuild:
33 + Version bump to newer development snapshot.
34
35 22 Apr 2008; Sébastien Fabbro <bicatali@g.o> gts-0.7.4.ebuild,
36 gts-0.7.6.ebuild:
37
38
39
40 1.1 sci-libs/gts/gts-20081607.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/gts/gts-20081607.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/gts/gts-20081607.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gts-20081607.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-libs/gts/gts-20081607.ebuild,v 1.1 2008/10/04 10:33:09 markusle Exp $
50
51 inherit eutils
52
53 DESCRIPTION="GNU Triangulated Surface Library"
54 LICENSE="LGPL-2"
55 HOMEPAGE="http://gts.sourceforge.net/"
56 SRC_URI="mirror://gentoo/${P}.tar.gz"
57
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE="doc"
61
62 RDEPEND=">=dev-libs/glib-2.4.0
63 sys-apps/gawk
64 media-libs/netpbm"
65 DEPEND="${RDEPEND}
66 sys-devel/libtool
67 dev-util/pkgconfig"
68
69 S="${WORKDIR}"/${PN}-snapshot-080704
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}"/${PN}-0.7.6-include-fix.patch
75 }
76
77
78 src_install() {
79 make DESTDIR="${D}" install || die "Install failed"
80 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
81
82 # install examples
83 insinto /usr/share/${PN}/examples
84 doins examples/*.c || die "Failed to install examples"
85
86 # install additional docs
87 if use doc; then
88 dohtml doc/html/*
89 fi
90 }