diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-05-22 13:40:51 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-05-22 13:40:51 +0000 |
commit | 8b20ff551bf45ccc0fffc0790f731ae82b3ae536 (patch) | |
tree | 9c7d1475e401c7627b9a7b28249101da81d93646 /sys-freebsd/freebsd-pf | |
parent | Add a fix for getline conflicts, glibc 2.10, by Constantin Baranov, bug #270430 (diff) | |
download | historical-8b20ff551bf45ccc0fffc0790f731ae82b3ae536.tar.gz historical-8b20ff551bf45ccc0fffc0790f731ae82b3ae536.tar.bz2 historical-8b20ff551bf45ccc0fffc0790f731ae82b3ae536.zip |
bump to 7.2
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'sys-freebsd/freebsd-pf')
-rw-r--r-- | sys-freebsd/freebsd-pf/ChangeLog | 7 | ||||
-rw-r--r-- | sys-freebsd/freebsd-pf/freebsd-pf-7.2.ebuild | 65 |
2 files changed, 71 insertions, 1 deletions
diff --git a/sys-freebsd/freebsd-pf/ChangeLog b/sys-freebsd/freebsd-pf/ChangeLog index 3d1e0b94b1c0..819d9588496c 100644 --- a/sys-freebsd/freebsd-pf/ChangeLog +++ b/sys-freebsd/freebsd-pf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-freebsd/freebsd-pf # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-pf/ChangeLog,v 1.25 2009/01/22 21:03:51 the_paya Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-pf/ChangeLog,v 1.26 2009/05/22 13:39:43 aballier Exp $ + +*freebsd-pf-7.2 (22 May 2009) + + 22 May 2009; Alexis Ballier <aballier@gentoo.org> +freebsd-pf-7.2.ebuild: + bump to 7.2 *freebsd-pf-7.1 (22 Jan 2009) diff --git a/sys-freebsd/freebsd-pf/freebsd-pf-7.2.ebuild b/sys-freebsd/freebsd-pf/freebsd-pf-7.2.ebuild new file mode 100644 index 000000000000..729788ff2369 --- /dev/null +++ b/sys-freebsd/freebsd-pf/freebsd-pf-7.2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-pf/freebsd-pf-7.2.ebuild,v 1.1 2009/05/22 13:39:43 aballier Exp $ + +inherit bsdmk freebsd + +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 +} |