diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-12-18 13:52:26 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-12-18 13:52:26 +0000 |
commit | 2d99d897bbdda7784cecdc61b6d96bebfb9e38b7 (patch) | |
tree | aaa2666a0d214b1e445272814f8377941f4d0244 | |
parent | removed MakeMaker, as PDEPEND takes care of it (diff) | |
download | historical-2d99d897bbdda7784cecdc61b6d96bebfb9e38b7.tar.gz historical-2d99d897bbdda7784cecdc61b6d96bebfb9e38b7.tar.bz2 historical-2d99d897bbdda7784cecdc61b6d96bebfb9e38b7.zip |
added libstdc++ from gcc2
-rw-r--r-- | sys-libs/lib-compat/ChangeLog | 13 | ||||
-rw-r--r-- | sys-libs/lib-compat/files/digest-lib-compat-1.1 | 1 | ||||
-rw-r--r-- | sys-libs/lib-compat/lib-compat-1.1.ebuild | 24 |
3 files changed, 35 insertions, 3 deletions
diff --git a/sys-libs/lib-compat/ChangeLog b/sys-libs/lib-compat/ChangeLog index e2bcd6637430..ca376f67551f 100644 --- a/sys-libs/lib-compat/ChangeLog +++ b/sys-libs/lib-compat/ChangeLog @@ -1,11 +1,18 @@ # 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.5 2002/12/13 11:00:44 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/ChangeLog,v 1.6 2002/12/18 13:52:26 seemant Exp $ + +*lib-compat-1.1 (18 Dec 2002) + + 18 Dec 2002; Seemant Kulleen <seemant@gentoo.org> lib-compat-1.1.ebuild + files/digest-lib-compat-1.1 : + + Added the libstdc++ from gcc-2.95.3 - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - *lib-compat-1.0-r2 (1 Feb 2002) + 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords + 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 diff --git a/sys-libs/lib-compat/files/digest-lib-compat-1.1 b/sys-libs/lib-compat/files/digest-lib-compat-1.1 new file mode 100644 index 000000000000..0f5a25f02d0b --- /dev/null +++ b/sys-libs/lib-compat/files/digest-lib-compat-1.1 @@ -0,0 +1 @@ +MD5 ff4ad63162bd927b10a686ab2a604d5e lib-compat-1.1.tar.bz2 653263 diff --git a/sys-libs/lib-compat/lib-compat-1.1.ebuild b/sys-libs/lib-compat/lib-compat-1.1.ebuild new file mode 100644 index 000000000000..f27e5c276bda --- /dev/null +++ b/sys-libs/lib-compat/lib-compat-1.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/lib-compat/lib-compat-1.1.ebuild,v 1.1 2002/12/18 13:52:26 seemant Exp $ + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="Compatibility C++ and libc5 and libc6 libraries for programs new and old" +SRC_URI="x86? ( mirror://gentoo/${P}.tar.bz2 )" +HOMEPAGE="http://www.gentoo.org/" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +LICENSE="GPL" + +DEPEND="virtual/glibc" + +src_install() { + use x86 && { + into /usr + dolib.so *.so* + preplib /usr + } +} |