diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2012-11-24 17:59:53 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2012-11-24 17:59:53 +0000 |
commit | 6778b48cdba2dbf4e29086cbc2f0bab53f93e594 (patch) | |
tree | 92b5000e44f8bc34c89642ec48ea4ecc50200519 /dev-libs/libsigc++ | |
parent | Pretest for Emacs 24.3. Readd support for aqua USE flag, copied from emacs-24... (diff) | |
download | gentoo-2-6778b48cdba2dbf4e29086cbc2f0bab53f93e594.tar.gz gentoo-2-6778b48cdba2dbf4e29086cbc2f0bab53f93e594.tar.bz2 gentoo-2-6778b48cdba2dbf4e29086cbc2f0bab53f93e594.zip |
Version bump.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'dev-libs/libsigc++')
-rw-r--r-- | dev-libs/libsigc++/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libsigc++/libsigc++-2.3.1.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-libs/libsigc++/ChangeLog b/dev-libs/libsigc++/ChangeLog index 3a79ec309cd4..78eff0ff0259 100644 --- a/dev-libs/libsigc++/ChangeLog +++ b/dev-libs/libsigc++/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libsigc++ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.175 2012/09/29 09:55:43 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.176 2012/11/24 17:59:53 eva Exp $ + +*libsigc++-2.3.1 (24 Nov 2012) + + 24 Nov 2012; Gilles Dartiguelongue <eva@gentoo.org> +libsigc++-2.3.1.ebuild: + Version bump. *libsigc++-2.2.11 (29 Sep 2012) diff --git a/dev-libs/libsigc++/libsigc++-2.3.1.ebuild b/dev-libs/libsigc++/libsigc++-2.3.1.ebuild new file mode 100644 index 000000000000..db1919df0331 --- /dev/null +++ b/dev-libs/libsigc++/libsigc++-2.3.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.3.1.ebuild,v 1.1 2012/11/24 17:59:53 eva Exp $ + +EAPI="4" + +inherit eutils gnome.org flag-o-matic + +DESCRIPTION="Typesafe callback system for standard C++" +HOMEPAGE="http://libsigc.sourceforge.net/" + +LICENSE="LGPL-2.1" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="doc static-libs test" + +RDEPEND="" +DEPEND="sys-devel/m4" + +# Needs mm-common for eautoreconf +src_prepare() { + # don't waste time building examples + sed -i 's|^\(SUBDIRS =.*\)examples\(.*\)$|\1\2|' \ + Makefile.am Makefile.in || die "sed examples failed" + + # don't waste time building tests unless USE=test + if ! use test ; then + sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' \ + Makefile.am Makefile.in || die "sed tests failed" + fi +} + +src_configure() { + filter-flags -fno-exceptions + + econf \ + $(use_enable doc documentation) + $(use_enable static-libs static) +} + +src_install() { + DOCS="AUTHORS ChangeLog README NEWS TODO" + default + + if ! use static-libs ; then + prune_libtool_files + fi + + if use doc ; then + dohtml -r docs/reference/html/* docs/images/* + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |