diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-11-07 12:22:26 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-11-07 12:22:26 +0000 |
commit | 11d3cd708ef2e8e51d3f572a7d4056c780cccf9e (patch) | |
tree | 38a4739c45fb5a01864a670ac8ee333e91babf5d /sys-freebsd | |
parent | bump to 9.0_rc1 (diff) | |
download | gentoo-2-11d3cd708ef2e8e51d3f572a7d4056c780cccf9e.tar.gz gentoo-2-11d3cd708ef2e8e51d3f572a7d4056c780cccf9e.tar.bz2 gentoo-2-11d3cd708ef2e8e51d3f572a7d4056c780cccf9e.zip |
bump to 9.0_rc1
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Diffstat (limited to 'sys-freebsd')
-rw-r--r-- | sys-freebsd/freebsd-contrib/ChangeLog | 8 | ||||
-rw-r--r-- | sys-freebsd/freebsd-contrib/freebsd-contrib-9.0_rc1.ebuild | 56 |
2 files changed, 63 insertions, 1 deletions
diff --git a/sys-freebsd/freebsd-contrib/ChangeLog b/sys-freebsd/freebsd-contrib/ChangeLog index a144eda28785..bf376ef27d60 100644 --- a/sys-freebsd/freebsd-contrib/ChangeLog +++ b/sys-freebsd/freebsd-contrib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-freebsd/freebsd-contrib # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-contrib/ChangeLog,v 1.28 2011/07/06 05:57:27 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-contrib/ChangeLog,v 1.29 2011/11/07 12:22:26 aballier Exp $ + +*freebsd-contrib-9.0_rc1 (07 Nov 2011) + + 07 Nov 2011; Alexis Ballier <aballier@gentoo.org> + +freebsd-contrib-9.0_rc1.ebuild: + bump to 9.0_rc1 *freebsd-contrib-8.2 (06 Jul 2011) diff --git a/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0_rc1.ebuild b/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0_rc1.ebuild new file mode 100644 index 000000000000..fde509db7ee5 --- /dev/null +++ b/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0_rc1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0_rc1.ebuild,v 1.1 2011/11/07 12:22:26 aballier Exp $ + +inherit bsdmk freebsd flag-o-matic + +DESCRIPTION="Contributed sources for FreeBSD." +SLOT="0" +KEYWORDS="~sparc-fbsd ~x86-fbsd" +LICENSE="BSD GPL-2 as-is" + +IUSE="" + +SRC_URI="mirror://gentoo/${GNU}.tar.bz2 + mirror://gentoo/${P}.tar.bz2" + +RDEPEND="" +DEPEND="=sys-freebsd/freebsd-sources-${RV}* + =sys-freebsd/freebsd-mk-defs-${RV}*" + +S="${WORKDIR}/gnu" + +src_unpack() { + echo ">>> Unpacking needed parts of ${GNU}.tar.bz2 to ${WORKDIR}" + tar -jxpf "${DISTDIR}/${GNU}.tar.bz2" gnu/lib/libodialog gnu/usr.bin/sort gnu/usr.bin/patch + echo ">>> Unpacking needed parts of ${CONTRIB}.tar.bz2 to ${WORKDIR}" + tar -jxpf "${DISTDIR}/${CONTRIB}.tar.bz2" contrib/gnu-sort + + freebsd_do_patches + freebsd_rename_libraries +} + +src_compile() { + cd "${S}/lib/libodialog" + freebsd_src_compile + + cd "${S}/usr.bin/sort" + freebsd_src_compile + + cd "${S}/usr.bin/patch" + freebsd_src_compile +} + +src_install() { + use profile || mymakeopts="${mymakeopts} NO_PROFILE= " + mymakeopts="${mymakeopts} NO_MANCOMPRESS= NO_INFOCOMPRESS= " + + cd "${S}/lib/libodialog" + mkinstall || die "libodialog install failed" + + cd "${S}/usr.bin/sort" + mkinstall BINDIR="/bin/" || die "sort install failed" + + cd "${S}/usr.bin/patch" + mkinstall BINDIR="/usr/bin/" || die "patch install failed" +} |