summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2004-06-08 20:21:21 +0000
committerMarius Mauch <genone@gentoo.org>2004-06-08 20:21:21 +0000
commitdfadcce43596ca770ca1e6e434f6be50c9146b21 (patch)
treec2b814ee8b22cbad8ba272779bf3d7c88ad1b36a /sys-devel
parentAdded to ~ppc (diff)
downloadhistorical-dfadcce43596ca770ca1e6e434f6be50c9146b21.tar.gz
historical-dfadcce43596ca770ca1e6e434f6be50c9146b21.tar.bz2
historical-dfadcce43596ca770ca1e6e434f6be50c9146b21.zip
stupid 1.{0,2} profiles, no QA fixes for you
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/ld.so/ChangeLog21
-rw-r--r--sys-devel/ld.so/Manifest13
-rw-r--r--sys-devel/ld.so/files/digest-ld.so-1.9.11-r31
-rw-r--r--sys-devel/ld.so/ld.so-1.9.11-r3.ebuild33
4 files changed, 68 insertions, 0 deletions
diff --git a/sys-devel/ld.so/ChangeLog b/sys-devel/ld.so/ChangeLog
new file mode 100644
index 000000000000..37af7ffc83ab
--- /dev/null
+++ b/sys-devel/ld.so/ChangeLog
@@ -0,0 +1,21 @@
+# ChangeLog for sys-devel/ld.so
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/ld.so/ChangeLog,v 1.7 2004/06/08 20:21:21 genone Exp $
+
+ 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
+
+*ld.so-1.9.11-r3 (7 Nov 2002)
+
+ 7 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :
+
+ Fix ld.so to install only for ARCH=x86, and be a stub for all the rest.
+
+*ld.so-1.9.11-r2 (1 Feb 2002)
+
+ 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
+
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
diff --git a/sys-devel/ld.so/Manifest b/sys-devel/ld.so/Manifest
new file mode 100644
index 000000000000..7481fb3bb73d
--- /dev/null
+++ b/sys-devel/ld.so/Manifest
@@ -0,0 +1,13 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 432abfd69e046fc4ad765eb430a3225f ChangeLog 915
+MD5 cad8162533864453b28551b00deb49c0 ld.so-1.9.11-r3.ebuild 849
+MD5 231a2574ab77aa8d32052313dec1fc66 files/digest-ld.so-1.9.11-r3 64
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.4 (GNU/Linux)
+
+iD8DBQFAxh/c6J2i8a8J4okRAn3qAKCQijm2eRX2ojizKhtZTpwM1k59AgCgnKNb
+blCjuHg5b2BsD8P5qabKUg8=
+=dnMQ
+-----END PGP SIGNATURE-----
diff --git a/sys-devel/ld.so/files/digest-ld.so-1.9.11-r3 b/sys-devel/ld.so/files/digest-ld.so-1.9.11-r3
new file mode 100644
index 000000000000..6cfe0e596f07
--- /dev/null
+++ b/sys-devel/ld.so/files/digest-ld.so-1.9.11-r3
@@ -0,0 +1 @@
+MD5 419b97871a0c5127aceddbd13ccb25c2 ld.so-1.9.11.tar.gz 358278
diff --git a/sys-devel/ld.so/ld.so-1.9.11-r3.ebuild b/sys-devel/ld.so/ld.so-1.9.11-r3.ebuild
new file mode 100644
index 000000000000..a45509e58af6
--- /dev/null
+++ b/sys-devel/ld.so/ld.so-1.9.11-r3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/ld.so/ld.so-1.9.11-r3.ebuild,v 1.7 2004/06/08 20:21:21 genone Exp $
+
+DESCRIPTION="Linux dynamic loader & linker"
+HOMEPAGE="http://freshmeat.net/projects/ld.so/"
+SRC_URI="x86? ( ftp://ftp.ods.com/pub/linux/${P}.tar.gz )"
+
+LICENSE="LD.SO"
+SLOT="0"
+KEYWORDS="x86 ppc sparc alpha"
+
+RDEPEND="sys-libs/lib-compat"
+
+src_unpack() {
+ [ "${ARCH}" != "x86" ] && return 0
+ unpack ${A}
+ cd ${S}
+ sed -i "s:usr/man:usr/share/man:g" instldso.sh
+}
+
+src_install() {
+ [ "${ARCH}" != "x86" ] && return 0
+ PREFIX=${D} ./instldso.sh --force
+
+ # Remove stuff that comes with glibc
+ rm -rf ${D}/sbin ${D}/usr/bin
+ rm ${D}/usr/share/man/man8/ldconfig*
+
+ preplib /
+
+ dodoc COPYRIGHT README ld-so/example/README*
+}