summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Guertin <gerk@gentoo.org>2002-09-07 20:14:24 +0000
committerMark Guertin <gerk@gentoo.org>2002-09-07 20:14:24 +0000
commit6e8cd1cd5460fabc6a6696da11acabfc0d89d693 (patch)
tree189e5aff2b7620a4c7ede2044d39248f70c276ad /sys-libs
parentadd descriptions for new cdr, scanner flags - see gentoo-core posting (diff)
downloadgentoo-2-6e8cd1cd5460fabc6a6696da11acabfc0d89d693.tar.gz
gentoo-2-6e8cd1cd5460fabc6a6696da11acabfc0d89d693.tar.bz2
gentoo-2-6e8cd1cd5460fabc6a6696da11acabfc0d89d693.zip
set x86 use flags as not valid for ppc and sparc*
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/lib-compat/ChangeLog7
-rw-r--r--sys-libs/lib-compat/lib-compat-1.0-r2.ebuild15
2 files changed, 13 insertions, 9 deletions
diff --git a/sys-libs/lib-compat/ChangeLog b/sys-libs/lib-compat/ChangeLog
index 4c01e5446433..cc3fb7614523 100644
--- a/sys-libs/lib-compat/ChangeLog
+++ b/sys-libs/lib-compat/ChangeLog
@@ -1,9 +1,14 @@
# ChangeLog for sys-libs/lib-compat
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/ChangeLog,v 1.2 2002/07/16 04:09:27 gerk Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/ChangeLog,v 1.3 2002/09/07 20:14:24 gerk Exp $
*lib-compat-1.0-r2 (1 Feb 2002)
+ 07 Sep 2002; Mark Guertin <gerk@gentoo.org> lib-compat-1.0-r2 :
+ set x86 USE on SRC_URI and src_install function, these are not valid
+ on ppc or sparc (x86 libs), but may need to add ppc libs in future so
+ left it as a stub build for future usage
+
15 Jul 2002; Mark Guertin <gerk@gentoo.org>
Added ppc to keywords
diff --git a/sys-libs/lib-compat/lib-compat-1.0-r2.ebuild b/sys-libs/lib-compat/lib-compat-1.0-r2.ebuild
index 91c08caa6559..d15f98d31c36 100644
--- a/sys-libs/lib-compat/lib-compat-1.0-r2.ebuild
+++ b/sys-libs/lib-compat/lib-compat-1.0-r2.ebuild
@@ -1,13 +1,12 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/lib-compat-1.0-r2.ebuild,v 1.7 2002/08/14 04:18:28 murphy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/lib-compat-1.0-r2.ebuild,v 1.8 2002/09/07 20:14:24 gerk Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Compatibility c++ and libc5 libraries for programs new and old"
-SRC_URI="mirror://gentoo/${PN}.tar.gz"
+SRC_URI="x86? ( mirror://gentoo/${PN}.tar.gz )"
HOMEPAGE="http://www.gentoo.org/"
-
SLOT="0"
KEYWORDS="x86 ppc sparc sparc64"
LICENSE="GPL"
@@ -22,9 +21,9 @@ src_unpack () {
src_install() {
-
- into /usr
- dolib.so *.so*
- preplib /usr
-
+ use x86 && {
+ into /usr
+ dolib.so *.so*
+ preplib /usr
+ }
}