* [gentoo-commits] gentoo-x86 commit in gnustep-libs/steptalk: metadata.xml ChangeLog steptalk-0.10.0-r2.ebuild
@ 2009-07-27 20:19 Bernard Cafarelli (voyageur)
0 siblings, 0 replies; only message in thread
From: Bernard Cafarelli (voyageur) @ 2009-07-27 20:19 UTC (permalink / raw
To: gentoo-commits
voyageur 09/07/27 20:19:41
Modified: metadata.xml ChangeLog
Added: steptalk-0.10.0-r2.ebuild
Log:
Fix compilation with gdl2, bug #274360
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.2 gnustep-libs/steptalk/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/metadata.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/metadata.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/metadata.xml?r1=1.1&r2=1.2
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-libs/steptalk/metadata.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- metadata.xml 28 Sep 2004 17:52:18 -0000 1.1
+++ metadata.xml 27 Jul 2009 20:19:41 -0000 1.2
@@ -35,4 +35,7 @@
stexec - execute scripts in GNUstep environment
stalk - tool for talking to the GNUstep servers and applications
</longdescription>
+<use>
+ <flag name='gdl2'>Compile module for <pkg>gnustep-libs/gdl2</pkg></flag>
+</use>
</pkgmetadata>
1.16 gnustep-libs/steptalk/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/ChangeLog?r1=1.15&r2=1.16
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-libs/steptalk/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog 8 Mar 2008 13:18:39 -0000 1.15
+++ ChangeLog 27 Jul 2009 20:19:41 -0000 1.16
@@ -1,6 +1,12 @@
# ChangeLog for gnustep-libs/steptalk
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/steptalk/ChangeLog,v 1.15 2008/03/08 13:18:39 coldwind Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/steptalk/ChangeLog,v 1.16 2009/07/27 20:19:41 voyageur Exp $
+
+*steptalk-0.10.0-r2 (27 Jul 2009)
+
+ 27 Jul 2009; Bernard Cafarelli <voyageur@gentoo.org>
+ +steptalk-0.10.0-r2.ebuild, metadata.xml:
+ Fix compilation with gdl2, bug #274360
08 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
steptalk-0.10.0-r1.ebuild:
1.1 gnustep-libs/steptalk/steptalk-0.10.0-r2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/steptalk-0.10.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-libs/steptalk/steptalk-0.10.0-r2.ebuild?rev=1.1&content-type=text/plain
Index: steptalk-0.10.0-r2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/steptalk/steptalk-0.10.0-r2.ebuild,v 1.1 2009/07/27 20:19:41 voyageur Exp $
EAPI=2
inherit gnustep-2
MY_PN="StepTalk"
DESCRIPTION="StepTalk is the official GNUstep scripting framework."
HOMEPAGE="http://www.gnustep.org/experience/StepTalk.html"
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/libs/${MY_PN}-${PV}.tar.gz"
KEYWORDS="~amd64 ~ppc ~x86"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="gdl2"
DEPEND="gdl2? ( >=gnustep-libs/gdl2-0.11.0 )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PN}"
src_prepare() {
epatch "${FILESDIR}/${P}-gnustep-make-2.patch"
if use gdl2; then
# These libraries do not exist anymore
sed -i -e "s/-lgnustep-db2 -lgnustep-db2control -lgnustep-db2modeler//" \
Modules/GDL2/GNUmakefile || die "gdl2 compilation sed failed"
else
# Do not try to compile the module
sed -i -e "s/GDL2//" Modules/GNUmakefile || die "gdl2 disabling sed failed"
fi
}
src_install() {
gnustep-base_src_install
if use doc ; then
egnustep_env
mkdir -p "${D}"${GNUSTEP_SYSTEM_DOC}/Developer/${MY_PN}
cp -R Documentation/* "${D}"${GNUSTEP_SYSTEM_DOC}/Developer/${MY_PN}
fi
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-07-27 20:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-27 20:19 [gentoo-commits] gentoo-x86 commit in gnustep-libs/steptalk: metadata.xml ChangeLog steptalk-0.10.0-r2.ebuild Bernard Cafarelli (voyageur)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox