diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2009-03-24 13:16:57 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2009-03-24 13:16:57 +0000 |
commit | eb8b868fe3f294576d7a68ce54fdf5f40039c94a (patch) | |
tree | d2c263315cfb325339f83480ceca2f93e92269cb /gnustep-base | |
parent | Version bump (diff) | |
download | gentoo-2-eb8b868fe3f294576d7a68ce54fdf5f40039c94a.tar.gz gentoo-2-eb8b868fe3f294576d7a68ce54fdf5f40039c94a.tar.bz2 gentoo-2-eb8b868fe3f294576d7a68ce54fdf5f40039c94a.zip |
Force >=gnustep-make-2.0.8, for correct native exceptions handling. Thanks Sourav K. Mandal <sourav.mandal@gmail.com> for suggestion. Also remove some versions
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'gnustep-base')
5 files changed, 10 insertions, 236 deletions
diff --git a/gnustep-base/gnustep-base/ChangeLog b/gnustep-base/gnustep-base/ChangeLog index 0f100de7897b..04a3e13d13c4 100644 --- a/gnustep-base/gnustep-base/ChangeLog +++ b/gnustep-base/gnustep-base/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for gnustep-base/gnustep-base # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.83 2009/03/11 14:15:53 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.84 2009/03/24 13:16:57 voyageur Exp $ + + 24 Mar 2009; Bernard Cafarelli <voyageur@gentoo.org> + -gnustep-base-1.16.3-r1.ebuild, -gnustep-base-1.18.0-r1.ebuild, + -gnustep-base-1.18.0-r2.ebuild, gnustep-base-1.18.0-r3.ebuild: + Force >=gnustep-make-2.0.8, for correct native exceptions handling. Thanks + Sourav K. Mandal <sourav.mandal@gmail.com> for suggestion. Also remove + some versions *gnustep-base-1.18.0-r3 (11 Mar 2009) diff --git a/gnustep-base/gnustep-base/gnustep-base-1.16.3-r1.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.16.3-r1.ebuild deleted file mode 100644 index 70714823dd78..000000000000 --- a/gnustep-base/gnustep-base/gnustep-base-1.16.3-r1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.16.3-r1.ebuild,v 1.1 2008/10/03 15:36:25 voyageur Exp $ - -EAPI=2 - -inherit gnustep-base - -DESCRIPTION="A library of general-purpose, non-graphical Objective C objects." - -HOMEPAGE="http://www.gnustep.org" -SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" -SLOT="0" -LICENSE="GPL-2 LGPL-2.1" - -IUSE="gcc-libffi gnutls" - -DEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-2.0 - !gcc-libffi? ( dev-libs/ffcall ) - gcc-libffi? ( >=sys-devel/gcc-3.3.5[libffi] ) - gnutls? ( net-libs/gnutls ) - >=dev-libs/libxml2-2.6 - >=dev-libs/libxslt-1.1 - >=dev-libs/gmp-4.1 - >=dev-libs/openssl-0.9.7 - >=sys-libs/zlib-1.2" -RDEPEND="${DEPEND}" - -src_configure() { - egnustep_env - - local myconf - if use gcc-libffi; - then - myconf="--enable-libffi --disable-ffcall" - else - myconf="--disable-libffi --enable-ffcall" - fi - - myconf="$myconf $(use_enable gnutls tls)" - myconf="$myconf --with-xml-prefix=/usr" - myconf="$myconf --with-gmp-include=/usr/include --with-gmp-library=/usr/lib" - myconf="$myconf --with-default-config=/etc/GNUstep/GNUstep.conf" - - econf $myconf || die "configure failed" -} - -src_install() { - # We need to set LD_LIBRARY_PATH because the doc generation program - # uses the gnustep-base libraries. Since egnustep_env "cleans the - # environment" including our LD_LIBRARY_PATH, we're left no choice - # but doing it like this. - - egnustep_env - egnustep_install - - if use doc ; then - export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}" - egnustep_doc - fi - egnustep_install_config - - dodir /etc/revdep-rebuild - sed -e 's|$GNUSTEP_SEARCH_DIRS|'"$GNUSTEP_SYSTEM_ROOT $GNUSTEP_LOCAL_ROOT"'|' \ - "${FILESDIR}"/50-gnustep-revdep \ - > "${D}/etc/revdep-rebuild/50-gnustep-revdep" -} - -pkg_postinst() { - ewarn "The shared library version has changed in this release." - ewarn "You will need to recompile all Applications/Tools/etc in order" - ewarn "to use this library." - ewarn "Run:" - ewarn "revdep-rebuild --library \"libgnustep-base.so.1.1[0-4]\"" -} diff --git a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r1.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.18.0-r1.ebuild deleted file mode 100644 index e7e9827f3cae..000000000000 --- a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.18.0-r1.ebuild,v 1.1 2009/01/28 13:05:33 voyageur Exp $ - -EAPI=2 - -inherit gnustep-base - -DESCRIPTION="A library of general-purpose, non-graphical Objective C objects." - -HOMEPAGE="http://www.gnustep.org" -SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" -SLOT="0" -LICENSE="GPL-2 LGPL-2.1" - -IUSE="gcc-libffi gnutls" - -DEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-2.0 - !gcc-libffi? ( dev-libs/ffcall - gnustep-base/gnustep-make[-native-exceptions] ) - gcc-libffi? ( >=sys-devel/gcc-3.3.5[libffi] ) - gnutls? ( net-libs/gnutls ) - >=dev-libs/libxml2-2.6 - >=dev-libs/libxslt-1.1 - >=dev-libs/gmp-4.1 - >=dev-libs/openssl-0.9.7 - >=sys-libs/zlib-1.2" -RDEPEND="${DEPEND}" - -src_configure() { - egnustep_env - - local myconf - if use gcc-libffi; - then - myconf="--enable-libffi --disable-ffcall" - else - myconf="--disable-libffi --enable-ffcall" - fi - - myconf="$myconf $(use_enable gnutls tls)" - myconf="$myconf --with-xml-prefix=/usr" - myconf="$myconf --with-gmp-include=/usr/include --with-gmp-library=/usr/lib" - myconf="$myconf --with-default-config=/etc/GNUstep/GNUstep.conf" - - econf $myconf || die "configure failed" -} - -src_install() { - # We need to set LD_LIBRARY_PATH because the doc generation program - # uses the gnustep-base libraries. Since egnustep_env "cleans the - # environment" including our LD_LIBRARY_PATH, we're left no choice - # but doing it like this. - - egnustep_env - egnustep_install - - if use doc ; then - export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}" - egnustep_doc - fi - egnustep_install_config - - dodir /etc/revdep-rebuild - sed -e 's|$GNUSTEP_SEARCH_DIRS|'"$GNUSTEP_SYSTEM_ROOT $GNUSTEP_LOCAL_ROOT"'|' \ - "${FILESDIR}"/50-gnustep-revdep \ - > "${D}/etc/revdep-rebuild/50-gnustep-revdep" -} - -pkg_postinst() { - ewarn "The shared library version has changed in this release." - ewarn "You will need to recompile all Applications/Tools/etc in order" - ewarn "to use this library." - ewarn "Run:" - ewarn "revdep-rebuild --library \"libgnustep-base.so.1.1[0-6]\"" -} diff --git a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r2.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.18.0-r2.ebuild deleted file mode 100644 index 95b0d5e94404..000000000000 --- a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.18.0-r2.ebuild,v 1.1 2009/02/23 10:25:47 voyageur Exp $ - -EAPI=2 - -inherit gnustep-base - -DESCRIPTION="A library of general-purpose, non-graphical Objective C objects." - -HOMEPAGE="http://www.gnustep.org" -SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" -SLOT="0" -LICENSE="GPL-2 LGPL-2.1" - -IUSE="gcc-libffi gnutls" - -DEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-2.0 - !gcc-libffi? ( dev-libs/ffcall - gnustep-base/gnustep-make[-native-exceptions] ) - gcc-libffi? ( >=sys-devel/gcc-3.3.5[libffi] ) - gnutls? ( net-libs/gnutls ) - >=dev-libs/libxml2-2.6 - >=dev-libs/libxslt-1.1 - >=dev-libs/gmp-4.1 - >=dev-libs/openssl-0.9.7 - >=sys-libs/zlib-1.2" -RDEPEND="${DEPEND}" - -src_configure() { - egnustep_env - - local myconf - if use gcc-libffi; - then - myconf="--enable-libffi --disable-ffcall" - else - myconf="--disable-libffi --enable-ffcall" - fi - - myconf="$myconf $(use_enable gnutls tls)" - myconf="$myconf --with-xml-prefix=/usr" - myconf="$myconf --with-gmp-include=/usr/include --with-gmp-library=/usr/lib" - myconf="$myconf --with-default-config=/etc/GNUstep/GNUstep.conf" - - econf $myconf || die "configure failed" -} - -src_install() { - # We need to set LD_LIBRARY_PATH because the doc generation program - # uses the gnustep-base libraries. Since egnustep_env "cleans the - # environment" including our LD_LIBRARY_PATH, we're left no choice - # but doing it like this. - - egnustep_env - egnustep_install - - if use doc ; then - export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}" - egnustep_doc - fi - egnustep_install_config - - dodir /etc/revdep-rebuild - sed -e 's|$GNUSTEP_SEARCH_DIRS|'"$GNUSTEP_SYSTEM_LIBRARIES $GNUSTEP_SYSTEM_TOOLS $GNUSTEP_LOCAL_LIBRARIES $GNUSTEP_LOCAL_TOOLS"'|' \ - "${FILESDIR}"/50-gnustep-revdep \ - > "${D}/etc/revdep-rebuild/50-gnustep-revdep" -} - -pkg_postinst() { - ewarn "The shared library version has changed in this release." - ewarn "You will need to recompile all Applications/Tools/etc in order" - ewarn "to use this library." - ewarn "Run:" - ewarn "revdep-rebuild --library \"libgnustep-base.so.1.1[0-6]\"" -} diff --git a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r3.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.18.0-r3.ebuild index 2f5cb18a301d..e8c6d7d6ad96 100644 --- a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r3.ebuild +++ b/gnustep-base/gnustep-base/gnustep-base-1.18.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.18.0-r3.ebuild,v 1.1 2009/03/11 14:15:53 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.18.0-r3.ebuild,v 1.2 2009/03/24 13:16:57 voyageur Exp $ EAPI=2 @@ -17,7 +17,7 @@ LICENSE="GPL-2 LGPL-2.1" IUSE="gcc-libffi gnutls zeroconf" DEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-2.0 + >=gnustep-base/gnustep-make-2.0.8 !gcc-libffi? ( dev-libs/ffcall gnustep-base/gnustep-make[-native-exceptions] ) gcc-libffi? ( >=sys-devel/gcc-3.3.5[libffi] ) |