diff options
Diffstat (limited to 'dev-libs/libsigc++/libsigc++-1.2.0.ebuild')
-rw-r--r-- | dev-libs/libsigc++/libsigc++-1.2.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-libs/libsigc++/libsigc++-1.2.0.ebuild b/dev-libs/libsigc++/libsigc++-1.2.0.ebuild new file mode 100644 index 000000000000..1ebd68832ef4 --- /dev/null +++ b/dev-libs/libsigc++/libsigc++-1.2.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-1.2.0.ebuild,v 1.1 2002/11/01 01:10:45 foser Exp $ + +S=${WORKDIR}/${P} +IUSE="" +DESCRIPTION="The GLib library of C routines" +SRC_URI="http://download.sourceforge.net/libsigc/${P}.tar.gz" +HOMEPAGE="http://libsigc.sourceforge.net/" +SLOT="1.2" +LICENSE="GPL-2 LGPL-2.1" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" + +DEPEND="virtual/glibc" + +src_compile() { + local myconf + + if [ "${DEBUG}" ] + then + myconf="--enable-debug=yes" + else + myconf="--enable-debug=no" + fi + + econf ${myconf} --enable-threads || die + emake || die "emake failure" +} + +src_install() { + einstall || die + dodoc AUTHORS ChangeLog FEATURES IDEAS COPYING* \ + README INSTALL NEWS TODO +} + +pkg_postinst() { + einfo "************************* WARNING ************************" + einfo "" + einfo "To allow parallel installation of sig++-1.0 and sig++-1.2," + einfo "the header files are now installed in a version specific" + einfo "subdirectory. Be sure to unmerge any libsig++ versions" + einfo "< 1.0.4 that you may have previously installed." + einfo "" + einfo "**********************************************************" +} |