diff options
author | Mark Guertin <gerk@gentoo.org> | 2002-09-07 20:14:24 +0000 |
---|---|---|
committer | Mark Guertin <gerk@gentoo.org> | 2002-09-07 20:14:24 +0000 |
commit | 56792a4145fb842f05f550955be48595f3f0355a (patch) | |
tree | 1f3c489d82f216be5f9acfed498a477bf0f1b3e3 /sys-libs/lib-compat | |
parent | add descriptions for new cdr, scanner flags - see gentoo-core posting (diff) | |
download | historical-56792a4145fb842f05f550955be48595f3f0355a.tar.gz historical-56792a4145fb842f05f550955be48595f3f0355a.tar.bz2 historical-56792a4145fb842f05f550955be48595f3f0355a.zip |
set x86 use flags as not valid for ppc and sparc*
Diffstat (limited to 'sys-libs/lib-compat')
-rw-r--r-- | sys-libs/lib-compat/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/lib-compat/lib-compat-1.0-r2.ebuild | 15 |
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 + } } |