Gentoo Archives: gentoo-commits

From: "Panagiotis Christopoulos (pchrist)" <pchrist@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/swig: ChangeLog swig-2.0.2.ebuild
Date: Sat, 26 Feb 2011 14:17:08
Message-Id: 20110226141659.94B3D20054@flycatcher.gentoo.org
1 pchrist 11/02/26 14:16:59
2
3 Modified: ChangeLog
4 Added: swig-2.0.2.ebuild
5 Log:
6 Bump to 2.0.2, wrt bug #356131
7
8 (Portage version: 2.1.9.40/cvs/Linux i686)
9
10 Revision Changes Path
11 1.147 dev-lang/swig/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swig/ChangeLog?rev=1.147&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swig/ChangeLog?rev=1.147&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swig/ChangeLog?r1=1.146&r2=1.147
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v
20 retrieving revision 1.146
21 retrieving revision 1.147
22 diff -u -r1.146 -r1.147
23 --- ChangeLog 26 Oct 2010 07:26:56 -0000 1.146
24 +++ ChangeLog 26 Feb 2011 14:16:59 -0000 1.147
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-lang/swig
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.146 2010/10/26 07:26:56 radhermit Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.147 2011/02/26 14:16:59 pchrist Exp $
31 +
32 +*swig-2.0.2 (26 Feb 2011)
33 +
34 + 26 Feb 2011; Panagiotis Christopoulos <pchrist@g.o>
35 + +swig-2.0.2.ebuild:
36 + Bump to 2.0.2, wrt bug #356131
37
38 *swig-2.0.1 (26 Oct 2010)
39
40
41
42
43 1.1 dev-lang/swig/swig-2.0.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swig/swig-2.0.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/swig/swig-2.0.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: swig-2.0.2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-2.0.2.ebuild,v 1.1 2011/02/26 14:16:59 pchrist Exp $
53
54 EAPI="3"
55
56 DESCRIPTION="Simplified Wrapper and Interface Generator"
57 HOMEPAGE="http://www.swig.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-3 as-is"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
63 IUSE="ccache doc pcre"
64 RESTRICT="test"
65
66 DEPEND="pcre? ( dev-libs/libpcre )"
67 RDEPEND="${DEPEND}"
68
69 src_configure() {
70 econf \
71 --disable-dependency-tracking \
72 $(use_enable ccache) \
73 $(use_with pcre)
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die "emake install failed"
78 dodoc ANNOUNCE CHANGES CHANGES.current README TODO || die "dodoc failed"
79 if use doc; then
80 dohtml -r Doc/{Devel,Manual} || die "dohtml failed"
81 fi
82 }