diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-12 12:28:21 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-12 12:28:21 +0000 |
commit | de6d353c11eb7c093bfe535459429bde53acfec1 (patch) | |
tree | 565b0b1178f5ec893c06d3e9fd0a60d810358d0d /dev-libs/libsigc++/libsigc++-2.0.14.ebuild | |
parent | Stable on alpha. (diff) | |
download | gentoo-2-de6d353c11eb7c093bfe535459429bde53acfec1.tar.gz gentoo-2-de6d353c11eb7c093bfe535459429bde53acfec1.tar.bz2 gentoo-2-de6d353c11eb7c093bfe535459429bde53acfec1.zip |
Version bump; only install API docs if USE=doc. only build tests if USE=test.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-libs/libsigc++/libsigc++-2.0.14.ebuild')
-rw-r--r-- | dev-libs/libsigc++/libsigc++-2.0.14.ebuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/dev-libs/libsigc++/libsigc++-2.0.14.ebuild b/dev-libs/libsigc++/libsigc++-2.0.14.ebuild new file mode 100644 index 000000000000..0f46c92f2d00 --- /dev/null +++ b/dev-libs/libsigc++/libsigc++-2.0.14.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.0.14.ebuild,v 1.1 2005/06/12 12:28:21 ka0ttic Exp $ + +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="~x86 ~ppc ~alpha ~amd64 ~sparc ~ppc64 ~hppa ~ppc-macos ~ia64" +IUSE="debug doc test" + +src_unpack() { + unpack ${A} + cd ${S} + + # don't waste time building examples/docs + sed -i 's|^\(SUBDIRS =.*\)docs examples\(.*\)$|\1\2|' Makefile.in || \ + die "sed docs/examples failed" + + # don't waste time building tests unless USE=test + if ! use test ; then + sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' Makefile.in || \ + die "sed tests failed" + fi + + # fix image paths + if use doc ; then + sed -i 's|../../images/||g' docs/reference/html/*.html || \ + die "sed failed" + fi +} + +src_compile() { + filter-flags -fno-exceptions + + if use ppc-macos && [[ -e /usr/lib/lib/libgcc_s.1.dylib ]] ; then + append-ldflags -lgcc_s + fi + + local myconf + use debug \ + && myconf="--enable-debug=yes" \ + || myconf="--enable-debug=no" + + econf ${myconf} || die "econf failed." + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed." + rm -fr ${D}/usr/share + dodoc AUTHORS ChangeLog README NEWS TODO + + if use doc ; then + dohtml -r docs/reference/html/* docs/images/* + cp -R examples ${D}/usr/share/doc/${PF}/ + fi +} + +pkg_postinst() { + ewarn "To allow parallel installation of sig++-1.0, sig++-1.2, and sig++2.0" + ewarn "the header files are now installed in a version specific" + ewarn "subdirectory. Be sure to unmerge any libsig++ versions" + ewarn "< 1.0.4 that you may have previously installed." +} |