diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-12-17 23:06:47 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-12-17 23:06:47 +0000 |
commit | 403767716f256af297f32f1455b836aee1f22d0c (patch) | |
tree | ea9c3176396e9be64f51f798a96f9975a81af46e /dev-lang | |
parent | fix keyword order (diff) | |
download | gentoo-2-403767716f256af297f32f1455b836aee1f22d0c.tar.gz gentoo-2-403767716f256af297f32f1455b836aee1f22d0c.tar.bz2 gentoo-2-403767716f256af297f32f1455b836aee1f22d0c.zip |
Version bump.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/swig/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/swig/swig-2.0.9.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-lang/swig/ChangeLog b/dev-lang/swig/ChangeLog index 0903da8207c1..ce3abb487bfb 100644 --- a/dev-lang/swig/ChangeLog +++ b/dev-lang/swig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/swig # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.181 2012/12/17 17:12:03 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.182 2012/12/17 23:06:47 radhermit Exp $ + +*swig-2.0.9 (17 Dec 2012) + + 17 Dec 2012; Tim Harder <radhermit@gentoo.org> +swig-2.0.9.ebuild: + Version bump. 17 Dec 2012; Agostino Sarubbo <ago@gentoo.org> swig-2.0.8.ebuild: Stable for ia64, wrt bug #442510 diff --git a/dev-lang/swig/swig-2.0.9.ebuild b/dev-lang/swig/swig-2.0.9.ebuild new file mode 100644 index 000000000000..caa0eec98342 --- /dev/null +++ b/dev-lang/swig/swig-2.0.9.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-2.0.9.ebuild,v 1.1 2012/12/17 23:06:47 radhermit Exp $ + +EAPI=4 + +DESCRIPTION="Simplified Wrapper and Interface Generator" +HOMEPAGE="http://www.swig.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+ BSD BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="ccache doc pcre" +RESTRICT="test" + +DEPEND="pcre? ( dev-libs/libpcre ) + ccache? ( sys-libs/zlib )" +RDEPEND="${DEPEND}" + +DOCS=( ANNOUNCE CHANGES CHANGES.current README TODO ) + +src_configure() { + econf \ + $(use_enable ccache) \ + $(use_with pcre) +} + +src_install() { + default + + if use doc ; then + dohtml -r Doc/{Devel,Manual} + fi +} |