diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-05-12 10:08:37 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-05-12 10:08:37 +0000 |
commit | 6fa976f36b59655d00ac1da74a0bf29b7cf56f86 (patch) | |
tree | 2e55d4308fa337c6ef041c9206574886e7d281ee /sys-devel/bmake | |
parent | List net-wireless/bluez first in ||( a b ) dependency w.r.t. bug 269519. (diff) | |
download | gentoo-2-6fa976f36b59655d00ac1da74a0bf29b7cf56f86.tar.gz gentoo-2-6fa976f36b59655d00ac1da74a0bf29b7cf56f86.tar.bz2 gentoo-2-6fa976f36b59655d00ac1da74a0bf29b7cf56f86.zip |
punt old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/bmake')
-rw-r--r-- | sys-devel/bmake/ChangeLog | 8 | ||||
-rw-r--r-- | sys-devel/bmake/bmake-20060728.ebuild | 38 | ||||
-rw-r--r-- | sys-devel/bmake/files/bmake-makefile.patch | 36 |
3 files changed, 6 insertions, 76 deletions
diff --git a/sys-devel/bmake/ChangeLog b/sys-devel/bmake/ChangeLog index e94c991de773..f13a9d6f3a0b 100644 --- a/sys-devel/bmake/ChangeLog +++ b/sys-devel/bmake/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-devel/bmake -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.4 2008/09/05 10:26:54 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.5 2009/05/12 10:08:37 aballier Exp $ + + 12 May 2009; Alexis Ballier <aballier@gentoo.org> -bmake-20060728.ebuild, + -files/bmake-makefile.patch: + punt old *bmake-20080515 (05 Sep 2008) diff --git a/sys-devel/bmake/bmake-20060728.ebuild b/sys-devel/bmake/bmake-20060728.ebuild deleted file mode 100644 index b13105c0701b..000000000000 --- a/sys-devel/bmake/bmake-20060728.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20060728.ebuild,v 1.3 2006/10/23 13:33:40 exg Exp $ - -inherit eutils - -MK_VER=20060318 -DESCRIPTION="NetBSD's portable make" -HOMEPAGE="http://www.crufty.net/help/sjg/bmake.html" -SRC_URI="http://void.crufty.net/ftp/pub/sjg/${P}.tar.gz - http://void.crufty.net/ftp/pub/sjg/mk-${MK_VER}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="" -RDEPEND="!sys-devel/pmake" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${PN}-makefile.patch -} - -src_compile() { - econf --with-mksrc=../mk || die "Configure failed" - emake -f makefile.boot bootstrap || die "Compile failed" -} - -src_install() { - emake -f makefile.boot -j1 DESTDIR="${D}" install-bin install-man || die "Install failed" - FORCE_BSD_MK=1 SYS_MK_DIR=. ../mk/install-mk -v -m 644 "${D}"/usr/share/mk -} diff --git a/sys-devel/bmake/files/bmake-makefile.patch b/sys-devel/bmake/files/bmake-makefile.patch deleted file mode 100644 index 619fd4f652d4..000000000000 --- a/sys-devel/bmake/files/bmake-makefile.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- makefile.boot.in.old 2006-10-07 12:49:12.000000000 +0200 -+++ makefile.boot.in 2006-10-07 13:42:22.000000000 +0200 -@@ -6,6 +6,7 @@ - # - prefix=@prefix@ - srcdir=@srcdir@ -+mandir=@mandir@ - VPATH=.:$(srcdir) - CC=@CC@ - INSTALL=$(srcdir)/install-sh -@@ -24,7 +25,7 @@ - - bootstrap: bmake.boot .mk.done - ${BMAKE_ENV} ./bmake.boot -f Makefile -- ${BMAKE_ENV} `pwd`/bmake -f Makefile test -+# ${BMAKE_ENV} `pwd`/bmake -f Makefile test - - bmake: bmake.boot - @echo you might want to try: -@@ -48,12 +49,12 @@ - install: install-bin install-man install-mk - - install-bin: -- test -d ${prefix}/bin || ${INSTALL} -m 755 -d ${prefix}/bin -- ${INSTALL} -m 755 bmake ${prefix}/bin -+ test -d ${DESTDIR}${prefix}/bin || ${INSTALL} -m 755 -d ${DESTDIR}${prefix}/bin -+ ${INSTALL} -m 755 ${srcdir}/bmake ${DESTDIR}${prefix}/bin - - install-man: -- test -d ${prefix}/man/cat1 || ${INSTALL} -m 755 -d ${prefix}/man/cat1 -- ${INSTALL} -m 444 ${srcdir}/bmake.cat1 ${prefix}/man/cat1/bmake.1 -+ test -d ${DESTDIR}${mandir}/man1 || ${INSTALL} -m 755 -d ${DESTDIR}${mandir}/man1 -+ ${INSTALL} -m 444 ${srcdir}/bmake.cat1 ${DESTDIR}${mandir}/man1/bmake.1 - - install-mk: - @if test -s ${MKSRC}/install-mk; then \ |