diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-12-07 17:11:06 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-12-07 17:11:06 +0000 |
commit | 76def60935316a1bc59f47c2cec0f9db9f9773b6 (patch) | |
tree | b04300a6d23dee17131a6b02c8468c762f36523e /sys-freebsd/freebsd-rescue | |
parent | app-crypt/truecrypt - Version bump wrt bug 381717. Drop old wrt bug 382663. (diff) | |
download | historical-76def60935316a1bc59f47c2cec0f9db9f9773b6.tar.gz historical-76def60935316a1bc59f47c2cec0f9db9f9773b6.tar.bz2 historical-76def60935316a1bc59f47c2cec0f9db9f9773b6.zip |
bump to rc2
Package-Manager: portage-2.2.0_alpha79/cvs/Linux x86_64
Diffstat (limited to 'sys-freebsd/freebsd-rescue')
-rw-r--r-- | sys-freebsd/freebsd-rescue/ChangeLog | 8 | ||||
-rw-r--r-- | sys-freebsd/freebsd-rescue/freebsd-rescue-9.0_rc2.ebuild | 59 |
2 files changed, 66 insertions, 1 deletions
diff --git a/sys-freebsd/freebsd-rescue/ChangeLog b/sys-freebsd/freebsd-rescue/ChangeLog index 910673e97035..35f1a29da259 100644 --- a/sys-freebsd/freebsd-rescue/ChangeLog +++ b/sys-freebsd/freebsd-rescue/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-freebsd/freebsd-rescue # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-rescue/ChangeLog,v 1.24 2011/11/07 12:31:21 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-rescue/ChangeLog,v 1.25 2011/12/07 17:08:47 aballier Exp $ + +*freebsd-rescue-9.0_rc2 (07 Dec 2011) + + 07 Dec 2011; Alexis Ballier <aballier@gentoo.org> + +freebsd-rescue-9.0_rc2.ebuild: + bump to rc2 *freebsd-rescue-9.0_rc1 (07 Nov 2011) diff --git a/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0_rc2.ebuild b/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0_rc2.ebuild new file mode 100644 index 000000000000..750e61a988b8 --- /dev/null +++ b/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0_rc2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0_rc2.ebuild,v 1.1 2011/12/07 17:08:47 aballier Exp $ + +EAPI=2 + +inherit bsdmk freebsd + +DESCRIPTION="FreeBSD's rescue binaries" +SLOT="0" +KEYWORDS="~x86-fbsd" +LICENSE="BSD zfs? ( CDDL )" + +IUSE="atm netware nis zfs" + +SRC_URI="mirror://gentoo/${UBIN}.tar.bz2 + mirror://gentoo/${CONTRIB}.tar.bz2 + mirror://gentoo/${LIB}.tar.bz2 + mirror://gentoo/${BIN}.tar.bz2 + mirror://gentoo/${SBIN}.tar.bz2 + mirror://gentoo/${USBIN}.tar.bz2 + mirror://gentoo/${GNU}.tar.bz2 + mirror://gentoo/${SYS}.tar.bz2 + mirror://gentoo/${LIBEXEC}.tar.bz2 + mirror://gentoo/${RESCUE}.tar.bz2 + zfs? ( mirror://gentoo/${CDDL}.tar.bz2 )" + +RDEPEND="" +DEPEND="sys-devel/flex + >=app-arch/libarchive-2.7.1[static-libs] + app-arch/xz-utils[static-libs] + sys-libs/ncurses[static-libs] + dev-libs/expat[static-libs] + app-arch/bzip2[static-libs] + dev-libs/libxml2:2[static-libs] + dev-libs/openssl[static-libs] + sys-libs/zlib[static-libs] + dev-util/pkgconfig + =sys-freebsd/freebsd-lib-${RV}*[atm?,netware?] + =sys-freebsd/freebsd-sources-${RV}* + =sys-freebsd/freebsd-mk-defs-${RV}*" + +S="${WORKDIR}/rescue" + +pkg_setup() { + use atm || mymakeopts="${mymakeopts} WITHOUT_ATM= " + use netware || mymakeopts="${mymakeopts} WITHOUT_IPX= " + use nis || mymakeopts="${mymakeopts} WITHOUT_NIS= " + use zfs || mymakeopts="${mymakeopts} WITHOUT_CDDL= " +} + +src_prepare() { + # As they are patches from ${WORKDIR} apply them by hand + cd "${WORKDIR}" + epatch "${FILESDIR}/${PN}"-8.0-pkgconfig_static_libarchive.patch + epatch "${FILESDIR}/${PN}"-7.1-zlib.patch + epatch "${FILESDIR}/${PN}"-8.2-libzcleverlink.patch + epatch "${FILESDIR}/freebsd-sbin-bsdxml2expat.patch" +} |