Gentoo Archives: gentoo-commits

From: "Marijn Schouten (hkbst)" <hkbst@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/swig: ChangeLog swig-1.3.34.ebuild
Date: Sun, 02 Mar 2008 12:28:20
Message-Id: E1JVnIe-0001ck-Mn@stork.gentoo.org
1 hkbst 08/03/02 12:28:16
2
3 Modified: ChangeLog
4 Added: swig-1.3.34.ebuild
5 Log:
6 bump
7 (Portage version: 2.1.4.4, RepoMan options: --force)
8
9 Revision Changes Path
10 1.106 dev-lang/swig/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/ChangeLog?rev=1.106&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/ChangeLog?rev=1.106&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/ChangeLog?r1=1.105&r2=1.106
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v
19 retrieving revision 1.105
20 retrieving revision 1.106
21 diff -u -r1.105 -r1.106
22 --- ChangeLog 6 Feb 2008 18:23:08 -0000 1.105
23 +++ ChangeLog 2 Mar 2008 12:28:16 -0000 1.106
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/swig
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.105 2008/02/06 18:23:08 fmccor Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.106 2008/03/02 12:28:16 hkbst Exp $
29 +
30 +*swig-1.3.34 (02 Mar 2008)
31 +
32 + 02 Mar 2008; Marijn Schouten <hkBst@g.o> +swig-1.3.34.ebuild:
33 + bump
34
35 06 Feb 2008; Ferris McCormick <fmccor@g.o> swig-1.3.33.ebuild:
36 Sparc stable, Bug #209052. (chicken is package-masked for swig because sparc
37
38
39
40 1.1 dev-lang/swig/swig-1.3.34.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/swig-1.3.34.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/swig-1.3.34.ebuild?rev=1.1&content-type=text/plain
44
45 Index: swig-1.3.34.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/dev-lang/swig/swig-1.3.34.ebuild,v 1.1 2008/03/02 12:28:16 hkbst Exp $
50
51 inherit flag-o-matic mono eutils #48511
52
53 DESCRIPTION="Simplified Wrapper and Interface Generator"
54 HOMEPAGE="http://www.swig.org/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
56
57 LICENSE="as-is"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE="chicken clisp doc guile java lua mono mzscheme ocaml perl php pike python R ruby tcl tk" #gcj
61 RESTRICT="test"
62
63 DEPEND="
64 chicken? ( dev-scheme/chicken )
65 clisp? ( dev-lisp/clisp )
66 guile? ( dev-scheme/guile )
67 java? ( virtual/jdk )
68 lua? ( dev-lang/lua )
69 mono? ( dev-lang/mono )
70 mzscheme? ( dev-scheme/drscheme )
71 perl? ( dev-lang/perl )
72 php? ( virtual/php )
73 pike? ( dev-lang/pike )
74 python? ( virtual/python )
75 R? ( dev-lang/R )
76 ocaml? ( dev-lang/ocaml )
77 ruby? ( virtual/ruby )
78 tcl? ( dev-lang/tcl )
79 tk? ( dev-lang/tk )
80 "
81 # gcj? ( sys-devel/gcc[+gcj] )
82
83 src_compile() {
84 strip-flags
85
86 local myconf
87 if use ruby ; then
88 local rubyver=$(ruby --version | cut -d '.' -f 1,2)
89 export RUBY="/usr/$(get_libdir)/ruby/${rubyver/ruby /}/"
90 fi
91
92 econf \
93 $(use_with chicken) \
94 $(use_with clisp) \
95 $(use_with guile) \
96 $(use_with java java "${JAVA_HOME}") \
97 $(use_with java javaincl "${JAVA_HOME}/include") \
98 $(use_with lua) \
99 $(use_with mono csharp) \
100 $(use_with mzscheme) \
101 $(use_with ocaml) \
102 $(use_with perl perl5 /usr/bin/perl) \
103 $(use_with php php4) \
104 $(use_with pike) \
105 $(use_with python python python) \
106 $(use_with R r) \
107 $(use_with ruby ruby /usr/bin/ruby) \
108 $(use_with tk x) \
109 $(use_with tcl) \
110 || die
111 emake || die
112 }
113
114 src_install() {
115 emake install DESTDIR="${D}" || die
116 dodoc ANNOUNCE CHANGES CHANGES.current FUTURE NEW README TODO
117 use doc && dohtml -r Doc/{Devel,Manual}
118 }
119
120
121
122 --
123 gentoo-commits@l.g.o mailing list