blob: 6820f561d78ef0ed5dca4b5fc6a64713a95b398d (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-ubin/freebsd-ubin-6.2.ebuild,v 1.3 2007/07/10 22:35:17 uberlord Exp $
inherit bsdmk freebsd flag-o-matic pam
DESCRIPTION="FreeBSD's base system source for /usr/bin"
SLOT="0"
KEYWORDS="~sparc-fbsd ~x86-fbsd"
IUSE="atm bluetooth ssl usb nls ipv6 kerberos nis build"
SRC_URI="mirror://gentoo/${UBIN}.tar.bz2
mirror://gentoo/${CONTRIB}.tar.bz2
mirror://gentoo/${LIB}.tar.bz2
mirror://gentoo/${ETC}.tar.bz2
mirror://gentoo/${BIN}.tar.bz2
mirror://gentoo/${INCLUDE}.tar.bz2
build? ( mirror://gentoo/${SYS}.tar.bz2 )"
RDEPEND=">=sys-freebsd/freebsd-lib-6.2_rc2
ssl? ( dev-libs/openssl )
kerberos? ( virtual/krb5 )
sys-libs/zlib
virtual/pam
!dev-util/csup"
DEPEND="${RDEPEND}
sys-devel/flex
!build? ( =sys-freebsd/freebsd-sources-${RV}* )
=sys-freebsd/freebsd-mk-defs-${RV}*"
RDEPEND="${RDEPEND}
sys-process/cronbase"
S="${WORKDIR}/usr.bin"
pkg_setup() {
use nls || mymakeopts="${mymakeopts} NO_NLS= "
use atm || mymakeopts="${mymakeopts} NO_ATM= "
use bluetooth || mymakeopts="${mymakeopts} NO_BLUETOOTH= "
use ssl || mymakeopts="${mymakeopts} NO_OPENSSL= NO_CRYPT= "
use usb || mymakeopts="${mymakeopts} NO_USB= "
use ipv6 || mymakeopts="${mymakeopts} NO_INET6= "
use kerberos || mymakeopts="${mymakeopts} NO_KERBEROS= "
use nis || mymakeopts="${mymakeopts} NO_NIS= "
mymakeopts="${mymakeopts} NO_SENDMAIL= "
}
# List of patches to apply
PATCHES="${FILESDIR}/${PN}-6.0-bsdcmp.patch
${FILESDIR}/${PN}-6.0-fixmakefiles.patch
${FILESDIR}/${PN}-setXid.patch
${FILESDIR}/${PN}-lint-stdarg.patch
${FILESDIR}/${PN}-6.0-kdump-ioctl.patch
${FILESDIR}/${PN}-6.1-gcc41.patch
${FILESDIR}/${PN}-6.2-rpcgen-gcc4.1.patch
${FILESDIR}/${PN}-6.2-sparc64.patch"
# Here we remove some sources we don't need because they are already
# provided by portage's packages or similar. In order:
# - Archiving tools, provided by their own ebuilds
# - ncurses stuff
# - less stuff
# - bind utils
# - rsh stuff
# and the rest are misc utils we already provide somewhere else.
REMOVE_SUBDIRS="bzip2 bzip2recover tar
tput tset
less lessecho lesskey
dig nslookup nsupdate host
rsh rlogin rusers rwho ruptime
compile_et lex vi smbutil file vacation nc ftp telnet
c99 c89
whois tftp"
src_unpack() {
freebsd_src_unpack
use build || ln -s "/usr/src/sys-${RV}" "${WORKDIR}/sys"
# Rename manpage for renamed cmp
mv ${S}/cmp/cmp.1 ${S}/cmp/bsdcmp.1
# Fix whereis(1) manpath search.
sed -i -e 's:"manpath -q":"manpath":' "${S}/whereis/pathnames.h"
# Build a dynamic make
sed -i -e '/^NO_SHARED/ s/^/#/' "${S}"/make/Makefile
}
src_install() {
freebsd_src_install
# baselayout requires these in /bin
dodir /bin
for bin in sed touch; do
mv "${D}/usr/bin/${bin}" "${D}/bin/" || die "mv ${bin} failed"
dosym /bin/${bin} /usr/bin/${bin} || die "dosym ${bin} failed"
done
for pamdfile in login passwd su; do
newpamd "${FILESDIR}/${pamdfile}.pamd" ${pamdfile}
done
cd "${WORKDIR}/etc"
insinto /etc
doins remote phones opieaccess fbtab
exeinto /etc/cron.daily
newexe "${FILESDIR}/locate-updatedb-cron" locate.updatedb
}
pkg_postinst() {
# We need to ensure that login.conf.db is up-to-date.
if [[ -e ${ROOT}etc/login.conf ]] ; then
einfo "Updating ${ROOT}etc/login.conf.db"
${ROOT}usr/bin/cap_mkdb -f ${ROOT}etc/login.conf ${ROOT}etc/login.conf
elog "Remember to run cap_mkdb /etc/login.conf after making changes to it"
fi
}
|