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-contrib | |
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-contrib')
-rw-r--r-- | sys-freebsd/freebsd-contrib/ChangeLog | 10 | ||||
-rw-r--r-- | sys-freebsd/freebsd-contrib/freebsd-contrib-9.0.ebuild | 56 |
2 files changed, 64 insertions, 2 deletions
diff --git a/sys-freebsd/freebsd-contrib/ChangeLog b/sys-freebsd/freebsd-contrib/ChangeLog index 331775795462..4285f7a40aa0 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.32 2011/12/10 02:39:01 naota Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-contrib/ChangeLog,v 1.33 2012/01/16 16:37:09 aballier Exp $ + +*freebsd-contrib-9.0 (16 Jan 2012) + + 16 Jan 2012; Alexis Ballier <aballier@gentoo.org> + +freebsd-contrib-9.0.ebuild: + bump to 9.0 10 Dec 2011; Naohiro Aota <naota@gentoo.org> freebsd-contrib-8.0.ebuild, freebsd-contrib-8.2.ebuild: diff --git a/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0.ebuild b/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0.ebuild new file mode 100644 index 000000000000..780b00c69f84 --- /dev/null +++ b/sys-freebsd/freebsd-contrib/freebsd-contrib-9.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2012 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.ebuild,v 1.1 2012/01/16 16:37:09 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" +} |