blob: 20d205e7bafeb6d160665ee113976713f9d93cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="/usr/bin wrapper scripts for FreeBSD script compatibility"
HOMEPAGE="http://www.gentoo.org"
SRC_URI=""
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="userland_BSD userland_GNU"
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"
dowrap() {
local x
for x do
[[ -e ${x} ]] || die "${x} does not exist"
newbin - "$(basename "${x}")" <<-EOF
#!/bin/sh
exec ${x} \${1:+"\$@"}
EOF
done
}
src_install() {
dowrap \
"${EPREFIX}"/bin/{bunzip2,bzcat,cpio,egrep,fgrep,grep,gunzip,gzip,zcat}
use userland_BSD && dowrap "${EPREFIX}"/bin/sort
use userland_GNU && dowrap "${EPREFIX}"/bin/{fuser,sed,uncompress}
}
|