diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-07 16:05:19 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-07 16:05:19 +0000 |
commit | 8c2f9b5d58d2c8ba17ecd94571dc41b82919228f (patch) | |
tree | e3f2ab2acadd83ad2269d388593e02ee4a4107e3 /sys-devel/ld.so | |
parent | Maintainence and FHS 2.1 fixes for RC4 (diff) | |
download | gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.tar.gz gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.tar.bz2 gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.zip |
Maintainence and FHS 2.1 fixes for RC4
Diffstat (limited to 'sys-devel/ld.so')
-rw-r--r-- | sys-devel/ld.so/ld.so-1.9.11-r2.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys-devel/ld.so/ld.so-1.9.11-r2.ebuild b/sys-devel/ld.so/ld.so-1.9.11-r2.ebuild new file mode 100644 index 000000000000..5b54eff17640 --- /dev/null +++ b/sys-devel/ld.so/ld.so-1.9.11-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-devel/ld.so/ld.so-1.9.11-r2.ebuild,v 1.1 2001/02/07 16:05:19 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Linux dynamic loader & linker" +SRC_URI="ftp://ftp.ods.com/pub/linux/${A}" +RDEPEND="sys-libs/lib-compat" + +src_unpack() { + + unpack ${A} + cd ${S} + cp instldso.sh instldso.orig + sed -e "s:usr/man:usr/share/man:g" \ + instldso.orig > instldso.sh + +} + +src_install() { + + PREFIX=${D} ./instldso.sh --force + + # Remove stuff that comes with glibc + rm -rf ${D}/sbin + rm ${D}/usr/share/man/man8/ldconfig* + + preplib / + + dodoc COPYRIGHT README ld-so/example/README* + +} + + + |