| 1 |
# Copyright 1999-2005 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header$
|
| 4 |
|
| 5 |
DESCRIPTION="GNU userland symlinks"
|
| 6 |
HOMEPAGE="http://gentoo-alt.gentoo.org/"
|
| 7 |
SLOT="0"
|
| 8 |
KEYWORDS="~x86-fbsd"
|
| 9 |
LICENSE="as-is"
|
| 10 |
|
| 11 |
IUSE=""
|
| 12 |
|
| 13 |
SRC_URI=""
|
| 14 |
|
| 15 |
DEPEND=""
|
| 16 |
RDEPEND=">=sys-apps/coreutils-5.96
|
| 17 |
>=sys-apps/findutils-4.2.20
|
| 18 |
>=app-arch/tar-1.15.1
|
| 19 |
>=sys-devel/make-3.80-r2
|
| 20 |
>=sys-devel/patch-2.5.9-r1
|
| 21 |
>=sys-apps/gawk-3.1.4-r4
|
| 22 |
>=sys-devel/m4-1.4.3
|
| 23 |
>=net-misc/whois-4.7.2"
|
| 24 |
|
| 25 |
S="${WORKDIR}"
|
| 26 |
|
| 27 |
src_compile() {
|
| 28 |
einfo "Nothing to do"
|
| 29 |
}
|
| 30 |
|
| 31 |
src_install() {
|
| 32 |
findutils="find xargs"
|
| 33 |
gtar="tar rmt"
|
| 34 |
others="make patch awk m4"
|
| 35 |
|
| 36 |
dodir /usr/libexec/gnu
|
| 37 |
for bin in ${findutils} ${gtar} ${others}; do
|
| 38 |
dosym /usr/bin/g${bin} /usr/libexec/gnu/${bin}
|
| 39 |
done
|
| 40 |
|
| 41 |
# We had to call this mdwhois instead of gwhois as gwhois is a completely
|
| 42 |
# different package.
|
| 43 |
dosym /usr/bin/mdwhois /usr/libexec/gnu/whois
|
| 44 |
|
| 45 |
# This won't work for scripts but at least it works to launch bash scripts
|
| 46 |
# by commandline.
|
| 47 |
dosym /bin/bash /usr/libexec/gnu/sh
|
| 48 |
}
|
| 49 |
|