markusle 08/10/19 14:53:11
Modified: babel-1.6.ebuild ChangeLog
Added: babel-1.6-r1.ebuild
Log:
Added new and significantly cleaned up revision which also fixes pre-stripping and LDFLAGS issues (see bug #241184).
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-SENTINEL-3 i686)
Revision Changes Path
1.5 sci-chemistry/babel/babel-1.6.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/babel-1.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/babel-1.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/babel-1.6.ebuild?r1=1.4&r2=1.5
Index: babel-1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/babel/babel-1.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- babel-1.6.ebuild 13 Jul 2007 05:48:10 -0000 1.4
+++ babel-1.6.ebuild 19 Oct 2008 14:53:11 -0000 1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/babel/babel-1.6.ebuild,v 1.4 2007/07/13 05:48:10 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/babel/babel-1.6.ebuild,v 1.5 2008/10/19 14:53:11 markusle Exp $
inherit eutils
@@ -20,10 +20,10 @@
src_unpack() {
unpack ${P}.tar.Z
- cd ${S}
+ cd "${S}"
#Patch the Makefile for gentoo-isms
- epatch ${FILESDIR}/${P}-gentoo.diff
- epatch ${FILESDIR}/${P}-gcc32.diff
+ epatch "${FILESDIR}"/${P}-gentoo.diff
+ epatch "${FILESDIR}"/${P}-gcc32.diff
}
@@ -35,12 +35,12 @@
src_install () {
- make DESTDIR=${D}/usr/bin install || die
+ make DESTDIR="${D}"/usr/bin install || die
insinto /usr/share/${PN}
- doins ${S}/*.lis
+ doins "${S}"/*.lis
- doenvd ${FILESDIR}/10babel
+ doenvd "${FILESDIR}"/10babel
dodoc README.1ST
1.6 sci-chemistry/babel/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/babel/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 28 Apr 2007 16:43:58 -0000 1.5
+++ ChangeLog 19 Oct 2008 14:53:11 -0000 1.6
@@ -1,6 +1,13 @@
# ChangeLog for sci-chemistry/babel
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/babel/ChangeLog,v 1.5 2007/04/28 16:43:58 swegener Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/babel/ChangeLog,v 1.6 2008/10/19 14:53:11 markusle Exp $
+
+*babel-1.6-r1 (19 Oct 2008)
+
+ 19 Oct 2008; Markus Dittrich <markusle@g.o>
+ +files/babel-1.6-makefile.patch, babel-1.6.ebuild, +babel-1.6-r1.ebuild:
+ Added new and significantly cleaned up revision which also fixes
+ pre-stripping and LDFLAGS issues (see bug #241184).
28 Apr 2007; Sven Wegener <swegener@g.o> babel-1.6.ebuild:
Fix *initd, *confd and *envd calls (#17388, #174266)
1.1 sci-chemistry/babel/babel-1.6-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/babel-1.6-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/babel/babel-1.6-r1.ebuild?rev=1.1&content-type=text/plain
Index: babel-1.6-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/babel/babel-1.6-r1.ebuild,v 1.1 2008/10/19 14:53:11 markusle Exp $
inherit eutils
DESCRIPTION="Babel is a program to interconvert file formats used in molecular modeling."
SRC_URI="http://smog.com/chem/babel/files/${P}.tar.Z"
HOMEPAGE="http://smog.com/chem/babel/"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
SLOT="0"
LICENSE="as-is"
IUSE=""
#Doesn't really seem to depend on anything (?)
DEPEND="!sci-chemistry/openbabel"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc32.diff
epatch "${FILESDIR}"/${P}-makefile.patch
}
src_compile() {
CC=$(tc-getCC) emake || die "emake failed"
}
src_install () {
make DESTDIR="${D}"/usr/bin install || die
insinto /usr/share/${PN}
doins *.lis || die "Failed to install *.lis files"
doenvd "${FILESDIR}"/10babel || die "doenvd failed"
dodoc README.1ST || die "dodoc failed"
}
|