blob: 82b1af5137f3fa0671a94b73e94b375a9baf7d66 (
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit bsdmk freebsd flag-o-matic eutils
DESCRIPTION="FreeBSD /usr/sbin tools"
SLOT="0"
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
SRC_URI="${SRC_URI}
$(freebsd_upstream_patches)"
fi
EXTRACTONLY="
usr.sbin/
contrib/
usr.bin/
lib/
sbin/
etc/
gnu/
"
RDEPEND="=sys-freebsd/freebsd-lib-${RV}*[usb?,bluetooth?,netware?]
=sys-freebsd/freebsd-libexec-${RV}*
build? ( sys-apps/baselayout )
ssl? ( dev-libs/openssl:0 )
>=app-arch/libarchive-3
sys-apps/tcp-wrappers
dev-util/dialog
>=dev-libs/libedit-20120311.3.0-r1
net-libs/libpcap
kerberos? ( app-crypt/heimdal )"
DEPEND="${RDEPEND}
=sys-freebsd/freebsd-mk-defs-${RV}*
=sys-freebsd/freebsd-ubin-${RV}*
zfs? ( =sys-freebsd/freebsd-cddl-${RV}* )
!build? ( =sys-freebsd/freebsd-sources-${RV}* )
sys-apps/texinfo
sys-devel/flex"
S="${WORKDIR}/usr.sbin"
IUSE="acpi atm audit bluetooth floppy ipv6 kerberos minimal netware nis pam ssl usb build zfs"
pkg_setup() {
# Add the required source files.
use nis && EXTRACTONLY+="libexec/ "
use build && EXTRACTONLY+="sys/ include/ "
use zfs && EXTRACTONLY+="cddl/ "
# Release crunch is something like minimal. It seems to remove everything
# which is not needed to work.
use minimal && mymakeopts="${mymakeopts} RELEASE_CRUNCH= "
use acpi || mymakeopts="${mymakeopts} WITHOUT_ACPI= "
use atm || mymakeopts="${mymakeopts} WITHOUT_ATM= "
use audit || mymakeopts="${mymakeopts} WITHOUT_AUDIT= "
use bluetooth || mymakeopts="${mymakeopts} WITHOUT_BLUETOOTH= "
use ipv6 || mymakeopts="${mymakeopts} WITHOUT_INET6= WITHOUT_INET6_SUPPORT= "
use netware || mymakeopts="${mymakeopts} WITHOUT_IPX= WITHOUT_IPX_SUPPORT= WITHOUT_NCP= "
use nis || mymakeopts="${mymakeopts} WITHOUT_NIS= "
use pam || mymakeopts="${mymakeopts} WITHOUT_PAM_SUPPORT= "
use ssl || mymakeopts="${mymakeopts} WITHOUT_OPENSSL= "
use usb || mymakeopts="${mymakeopts} WITHOUT_USB= "
use floppy || mymakeopts="${mymakeopts} WITHOUT_FLOPPY= "
use kerberos || mymakeopts="${mymakeopts} WITHOUT_GSSAPI= "
use zfs || mymakeopts="${mymakeopts} WITHOUT_CDDL= "
mymakeopts="${mymakeopts} WITHOUT_PF= WITHOUT_LPR= WITHOUT_SENDMAIL= WITHOUT_AUTHPF= WITHOUT_MAILWRAPPER= WITHOUT_UNBOUND= "
append-flags $(test-flags -fno-strict-aliasing)
}
PATCHES=(
"${FILESDIR}/${PN}-adduser.patch"
"${FILESDIR}/${PN}-9.0-newsyslog.patch"
"${FILESDIR}/${PN}-10.0-bsdxml2expat.patch"
"${FILESDIR}/${PN}-10.3-bsdxml2expat.patch"
)
REMOVE_SUBDIRS="
tcpdchk tcpdmatch
sendmail praliases editmap mailstats makemap
pc-sysinstall cron mailwrapper ntp bsnmpd
tcpdump ndp inetd
wpa/wpa_supplicant wpa/hostapd wpa/hostapd_cli wpa/wpa_cli wpa/wpa_passphrase
zic amd
pkg pkg_install freebsd-update service sysrc"
src_prepare() {
if ! use build; then
[[ ! -e "${WORKDIR}/sys" ]] && ln -s "/usr/src/sys" "${WORKDIR}/sys"
[[ ! -e "${WORKDIR}/include" ]] && ln -s "/usr/include" "${WORKDIR}/include"
else
dummy_mk mount_smbfs
fi
# Don't install mtree format manpage
# it's installed by libarchive.
sed -e "s: mtree.5::g" -i "${S}"/mtree/Makefile
}
src_compile() {
# Preparing to build nmtree
cd "${WORKDIR}/lib/libnetbsd"
freebsd_src_compile
cd "${S}"
freebsd_src_compile
}
src_install() {
# By creating these directories we avoid having to do a
# more complex hack
dodir /usr/share/doc
dodir /sbin
dodir /usr/libexec
dodir /usr/bin
# FILESDIR is used by some makefiles which will install files
# in the wrong place, just put it in the doc directory.
mkinstall DOCDIR=/usr/share/doc/${PF} || die "Install failed"
# Most of these now come from openrc.
for util in iscsid nfs nfsuserd rpc.statd rpc.lockd; do
newinitd "${FILESDIR}/"${util}.initd ${util} || die
if [[ -e "${FILESDIR}"/${util}.confd ]]; then \
newconfd "${FILESDIR}"/${util}.confd ${util} || die
fi
done
for class in daily monthly weekly; do
cat - > "${T}/periodic.${class}" <<EOS
#!/bin/sh
/usr/sbin/periodic ${class}
EOS
exeinto /etc/cron.${class}
newexe "${T}/periodic.${class}" periodic
done
# Install the pw.conf file to let pw use Gentoo's skel location
insinto /etc
doins "${FILESDIR}/pw.conf" || die
cd "${WORKDIR}/etc"
doins apmd.conf syslog.conf newsyslog.conf nscd.conf || die
insinto /etc/ppp
doins ppp/ppp.conf || die
if use bluetooth; then
insinto /etc/bluetooth
doins bluetooth/* || die
rm -f "${D}"/etc/bluetooth/Makefile
fi
# Install the periodic stuff (needs probably to be ported in a more
# gentooish way)
cd "${WORKDIR}/etc/periodic"
doperiodic daily daily/*.accounting
doperiodic monthly monthly/*.accounting
}
pkg_postinst() {
# We need to run pwd_mkdb if key files are not present
# If they are, then there is no need to run pwd_mkdb
if [[ ! -e "${ROOT}etc/passwd" || ! -e "${ROOT}etc/pwd.db" || ! -e "${ROOT}etc/spwd.db" ]] ; then
if [[ -e "${ROOT}etc/master.passwd" ]] ; then
einfo "Generating passwd files from ${ROOT}etc/master.passwd"
"${ROOT}"usr/sbin/pwd_mkdb -p -d "${ROOT}etc" "${ROOT}etc/master.passwd"
else
eerror "${ROOT}etc/master.passwd does not exist!"
eerror "You will no be able to log into your system!"
fi
fi
for logfile in messages security auth.log maillog lpd-errs xferlog cron \
debug.log slip.log ppp.log; do
[[ -f "${ROOT}/var/log/${logfile}" ]] || touch "${ROOT}/var/log/${logfile}"
done
}
|