diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-01-16 16:37:09 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-01-16 16:37:09 +0000 |
commit | 76438e0041cd983d527abc63fd3bbc711c87e526 (patch) | |
tree | a2dd1983d9fd656e04f65078f95d25b037d1d383 /sys-freebsd/freebsd-rescue | |
parent | Initial commit for media-sound/podracer. Bug 152608 by Thomas Tuttle with upd... (diff) | |
download | gentoo-2-76438e0041cd983d527abc63fd3bbc711c87e526.tar.gz gentoo-2-76438e0041cd983d527abc63fd3bbc711c87e526.tar.bz2 gentoo-2-76438e0041cd983d527abc63fd3bbc711c87e526.zip |
bump to 9.0
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-freebsd/freebsd-rescue')
-rw-r--r-- | sys-freebsd/freebsd-rescue/ChangeLog | 9 | ||||
-rw-r--r-- | sys-freebsd/freebsd-rescue/freebsd-rescue-9.0.ebuild | 59 |
2 files changed, 66 insertions, 2 deletions
diff --git a/sys-freebsd/freebsd-rescue/ChangeLog b/sys-freebsd/freebsd-rescue/ChangeLog index f42e75067853..7b70bb0c2728 100644 --- a/sys-freebsd/freebsd-rescue/ChangeLog +++ b/sys-freebsd/freebsd-rescue/ChangeLog @@ -1,6 +1,11 @@ # 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.26 2011/12/09 13:22:10 aballier Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-rescue/ChangeLog,v 1.27 2012/01/16 16:37:08 aballier Exp $ + +*freebsd-rescue-9.0 (16 Jan 2012) + + 16 Jan 2012; Alexis Ballier <aballier@gentoo.org> +freebsd-rescue-9.0.ebuild: + bump to 9.0 *freebsd-rescue-9.0_rc3 (09 Dec 2011) diff --git a/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0.ebuild b/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0.ebuild new file mode 100644 index 000000000000..5592db97a335 --- /dev/null +++ b/sys-freebsd/freebsd-rescue/freebsd-rescue-9.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2012 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.ebuild,v 1.1 2012/01/16 16:37:08 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" +} |