# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit bsdmk freebsd user DESCRIPTION="FreeBSD's base system libraries" SLOT="0" KEYWORDS="~x86-fbsd" IUSE="" # Crypto is needed to have an internal OpenSSL header SRC_URI="mirror://gentoo/${USBIN}.tar.bz2 mirror://gentoo/${SBIN}.tar.bz2 mirror://gentoo/${CONTRIB}.tar.bz2 mirror://gentoo/${ETC}.tar.bz2" RDEPEND="net-libs/libpcap" DEPEND="${RDEPEND} dev-libs/libevent sys-freebsd/freebsd-mk-defs =sys-freebsd/freebsd-sources-${RV}*" S="${WORKDIR}" SUBDIRS="usr.sbin/authpf sbin/pfctl sbin/pflogd usr.sbin/ftp-proxy/ftp-proxy" pkg_setup() { enewgroup authpf 63 mymakeopts="${mymakeopts} NO_MANCOMPRESS= NO_INFOCOMPRESS= " } src_unpack() { freebsd_src_unpack # pcap-int.h redefines snprintf as pcap_snprintf epatch "${FILESDIR}/${PN}-7.0-pcap_pollution.patch" # Use system's libevent epatch "${FILESDIR}/${PN}-7.0-libevent.patch" # Link in kernel sources ln -s "/usr/src/sys-${RV}" "${WORKDIR}/sys" } src_compile() { for dir in ${SUBDIRS}; do einfo "Starting make in ${dir}" cd "${S}/${dir}" mkmake || die "Make ${dir} failed" done } src_install() { for dir in ${SUBDIRS}; do einfo "Starting install in ${dir}" cd "${S}/${dir}" mkinstall || die "Install ${dir} failed" done cd "${WORKDIR}"/etc insinto /etc doins pf.os newdoc pf.conf pf.conf.example # pf.initd provided by openrc, but no pf.confd newconfd "${FILESDIR}/pf.confd" pf }