public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-tcltk/blt: blt-2.4z-r1.ebuild blt-2.4z-r2.ebuild ChangeLog
@ 2007-12-10 17:34 Thomas Alan Gall (tgall)
  0 siblings, 0 replies; only message in thread
From: Thomas Alan Gall (tgall) @ 2007-12-10 17:34 UTC (permalink / raw
  To: gentoo-commits

tgall       07/12/10 17:34:02

  Modified:             blt-2.4z-r1.ebuild blt-2.4z-r2.ebuild ChangeLog
  Log:
  added ~ppc64, change 64 bit fix to always apply (it's safe), syntax fixes
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.8                  dev-tcltk/blt/blt-2.4z-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/blt-2.4z-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/blt-2.4z-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/blt-2.4z-r1.ebuild?r1=1.7&r2=1.8

Index: blt-2.4z-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- blt-2.4z-r1.ebuild	29 Apr 2007 00:40:37 -0000	1.7
+++ blt-2.4z-r1.ebuild	10 Dec 2007 17:33:57 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z-r1.ebuild,v 1.7 2007/04/29 00:40:37 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z-r1.ebuild,v 1.8 2007/12/10 17:33:57 tgall Exp $
 
 inherit eutils flag-o-matic
 
@@ -11,29 +11,27 @@
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="amd64 ppc sparc x86"
+KEYWORDS="amd64 ppc ~ppc64 sparc x86"
 
 S="${WORKDIR}/${PN}${PV}"
 
 src_unpack() {
 	unpack ${A}
-	epatch ${FILESDIR}/blt2.4z-install.diff
+	epatch "${FILESDIR}"/blt2.4z-install.diff
 
-	if [ "${ARCH}" = "amd64" -o "${ARCH}" = "ia64" ] ; then
-		# From blt-2.4z-6mdk.src.rpm
-		epatch ${FILESDIR}/blt2.4z-64bit.patch
-	fi
+	# From blt-2.4z-6mdk.src.rpm
+	epatch "${FILESDIR}"/blt2.4z-64bit.patch
 
 	# Set the correct libdir
 	sed -i -e "s:\(^libdir=\${exec_prefix}/\)lib:\1$(get_libdir):" \
-		${S}/configure || die "sed failed"
+		"${S}"/configure || die "sed failed"
 }
 
 src_compile() {
 	# bug 167934
 	append-flags -fPIC
 
-	cd ${S}
+	cd "${S}"
 	./configure --host=${CHOST} \
 				--prefix=/usr \
 				--libdir=/usr/$(get_libdir) \
@@ -51,10 +49,10 @@
 		/usr/share/man/mann \
 		/usr/include \
 			|| die "dodir failed"
-	make INSTALL_ROOT=${D} install || die "make install failed"
+	emake -j1 INSTALL_ROOT="${D}" install || die "make install failed"
 
 	dodoc NEWS PROBLEMS README
-	for f in `ls ${D}/usr/share/man/mann` ; do
-		mv ${D}/usr/share/man/mann/${f} ${D}/usr/share/man/mann/${f/.n/.nblt}
+	for f in `ls "${D}"/usr/share/man/mann` ; do
+		mv "${D}"/usr/share/man/mann/${f} "${D}"/usr/share/man/mann/${f/.n/.nblt}
 	done
 }



1.3                  dev-tcltk/blt/blt-2.4z-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/blt-2.4z-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/blt-2.4z-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/blt-2.4z-r2.ebuild?r1=1.2&r2=1.3

Index: blt-2.4z-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- blt-2.4z-r2.ebuild	29 Apr 2007 00:59:53 -0000	1.2
+++ blt-2.4z-r2.ebuild	10 Dec 2007 17:33:57 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z-r2.ebuild,v 1.2 2007/04/29 00:59:53 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/blt-2.4z-r2.ebuild,v 1.3 2007/12/10 17:33:57 tgall Exp $
 
 inherit eutils flag-o-matic toolchain-funcs
 
@@ -11,7 +11,7 @@
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
 
 DEPEND=">=dev-lang/tk-8.0
 	x11-libs/libX11"
@@ -23,10 +23,8 @@
 	cd "${S}"
 
 	epatch "${FILESDIR}"/blt2.4z-install.diff
-	if [ "${ARCH}" = "amd64" -o "${ARCH}" = "ia64" ] ; then
-		# From blt-2.4z-6mdk.src.rpm
-		epatch "${FILESDIR}"/blt2.4z-64bit.patch
-	fi
+	# From blt-2.4z-6mdk.src.rpm
+	epatch "${FILESDIR}"/blt2.4z-64bit.patch
 
 	# Set the correct libdir
 	sed -i -e "s:\(^libdir=\${exec_prefix}/\)lib:\1$(get_libdir):" \
@@ -52,7 +50,7 @@
 		/usr/share/man/mann \
 		/usr/include \
 			|| die "dodir failed"
-	emake INSTALL_ROOT="${D}" install || die "make install failed"
+	emake -j1 INSTALL_ROOT="${D}" install || die "make install failed"
 
 	dodoc NEWS PROBLEMS README
 	dohtml html/*.html



1.22                 dev-tcltk/blt/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/blt/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/blt/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	29 Apr 2007 00:40:37 -0000	1.21
+++ ChangeLog	10 Dec 2007 17:33:57 -0000	1.22
@@ -1,6 +1,10 @@
 # ChangeLog for dev-tcltk/blt
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/ChangeLog,v 1.21 2007/04/29 00:40:37 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/blt/ChangeLog,v 1.22 2007/12/10 17:33:57 tgall Exp $
+
+  10 Dec 2007; Tom Gall <tgall@gentoo.org> blt-2.4z-r1.ebuild,
+  blt-2.4z-r2.ebuild:
+  added ~ppc64, change 64 bit fix to always apply (it's safe)
 
 *blt-2.4z-r2 (29 Apr 2007)
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-12-10 17:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-10 17:34 [gentoo-commits] gentoo-x86 commit in dev-tcltk/blt: blt-2.4z-r1.ebuild blt-2.4z-r2.ebuild ChangeLog Thomas Alan Gall (tgall)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox