public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/bmake: bmake-20120620.ebuild ChangeLog
@ 2012-07-08 20:46 Naohiro Aota (naota)
  0 siblings, 0 replies; 3+ messages in thread
From: Naohiro Aota (naota) @ 2012-07-08 20:46 UTC (permalink / raw
  To: gentoo-commits

naota       12/07/08 20:46:52

  Modified:             ChangeLog
  Added:                bmake-20120620.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 sys-devel/bmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	24 Apr 2012 12:15:04 -0000	1.10
+++ ChangeLog	8 Jul 2012 20:46:52 -0000	1.11
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/bmake
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.10 2012/04/24 12:15:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.11 2012/07/08 20:46:52 naota Exp $
+
+*bmake-20120620 (08 Jul 2012)
+
+  08 Jul 2012; Naohiro Aota <naota@gentoo.org> +bmake-20120620.ebuild:
+  Version bump.
 
   24 Apr 2012; Alexis Ballier <aballier@gentoo.org>
   -files/bmake-20080515-makefile.patch, -bmake-20090222.ebuild,
@@ -48,4 +53,3 @@
   14 Oct 2006; Timothy Redaelli <drizzt@gentoo.org>
   +files/bmake-makefile.patch, +metadata.xml, +bmake-20060728.ebuild:
   Initial import
-



1.1                  sys-devel/bmake/bmake-20120620.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?rev=1.1&content-type=text/plain

Index: bmake-20120620.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v 1.1 2012/07/08 20:46:52 naota Exp $

EAPI=3

inherit eutils

MK_VER=20120315
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=""

S="${WORKDIR}/${PN}"

src_configure() {
	econf \
		--with-mksrc=../mk \
		--with-default-sys-path=/usr/share/mk/${PN} \
		--with-machine_arch=${ARCH}
}

src_compile() {
	sh make-bootstrap.sh || die "bootstrap failed"
}

src_test() {
	cd unit-tests
	LC_ALL=C env -u A ${S}/bmake -r -m . > test.out 2>&1 \
		|| die "tests compilation failed"
	sed -i \
		-e "s:${S}/::g" \
		-e "s:bmake:make:g" \
		-e "s:unit-tests/::g" \
		test.out || die "Fixing values failed"
	diff -u test.exp test.out
	[[ $(diff -u test.exp test.out |wc -l) -gt 0 ]] && die "tests differ"
}

src_install() {
	dobin ${PN} || die
	newman ${PN}.cat1 ${PN}.1 || die
	FORCE_BSD_MK=1 SYS_MK_DIR=. \
		sh ../mk/install-mk -v -m 644 "${D}"/usr/share/mk/${PN} \
		|| die "failed to install mk files"
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/bmake: bmake-20120620.ebuild ChangeLog
@ 2012-08-03  3:12 Richard Yao (ryao)
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Yao (ryao) @ 2012-08-03  3:12 UTC (permalink / raw
  To: gentoo-commits

ryao        12/08/03 03:12:12

  Modified:             bmake-20120620.ebuild ChangeLog
  Log:
  Make ebuild prefix-safe and keyword on ~x64-fbsd
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-devel/bmake/bmake-20120620.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?r1=1.1&r2=1.2

Index: bmake-20120620.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bmake-20120620.ebuild	8 Jul 2012 20:46:52 -0000	1.1
+++ bmake-20120620.ebuild	3 Aug 2012 03:12:12 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v 1.1 2012/07/08 20:46:52 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v 1.2 2012/08/03 03:12:12 ryao Exp $
 
 EAPI=3
 
@@ -14,7 +14,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~x86 ~x64-freebsd"
 IUSE=""
 
 DEPEND=""
@@ -50,6 +50,6 @@
 	dobin ${PN} || die
 	newman ${PN}.cat1 ${PN}.1 || die
 	FORCE_BSD_MK=1 SYS_MK_DIR=. \
-		sh ../mk/install-mk -v -m 644 "${D}"/usr/share/mk/${PN} \
+		sh ../mk/install-mk -v -m 644 "${ED}"/usr/share/mk/${PN} \
 		|| die "failed to install mk files"
 }



1.12                 sys-devel/bmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	8 Jul 2012 20:46:52 -0000	1.11
+++ ChangeLog	3 Aug 2012 03:12:12 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bmake
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.11 2012/07/08 20:46:52 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.12 2012/08/03 03:12:12 ryao Exp $
+
+  03 Aug 2012; Richard Yao <ryao@gentoo.org> bmake-20120620.ebuild:
+  Make ebuild prefix-safe and keyword on ~x64-fbsd
 
 *bmake-20120620 (08 Jul 2012)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/bmake: bmake-20120620.ebuild ChangeLog
@ 2012-08-03  3:19 Richard Yao (ryao)
  0 siblings, 0 replies; 3+ messages in thread
From: Richard Yao (ryao) @ 2012-08-03  3:19 UTC (permalink / raw
  To: gentoo-commits

ryao        12/08/03 03:19:42

  Modified:             bmake-20120620.ebuild ChangeLog
  Log:
  Use ${EPREFIX}/usr/share/mk/bmake for default make definitions
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-devel/bmake/bmake-20120620.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild?r1=1.2&r2=1.3

Index: bmake-20120620.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bmake-20120620.ebuild	3 Aug 2012 03:12:12 -0000	1.2
+++ bmake-20120620.ebuild	3 Aug 2012 03:19:42 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v 1.2 2012/08/03 03:12:12 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/bmake-20120620.ebuild,v 1.3 2012/08/03 03:19:42 ryao Exp $
 
 EAPI=3
 
@@ -25,7 +25,7 @@
 src_configure() {
 	econf \
 		--with-mksrc=../mk \
-		--with-default-sys-path=/usr/share/mk/${PN} \
+		--with-default-sys-path=${EPREFIX}/usr/share/mk/${PN} \
 		--with-machine_arch=${ARCH}
 }
 



1.14                 sys-devel/bmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/bmake/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	3 Aug 2012 03:13:12 -0000	1.13
+++ ChangeLog	3 Aug 2012 03:19:42 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/bmake
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.13 2012/08/03 03:13:12 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/bmake/ChangeLog,v 1.14 2012/08/03 03:19:42 ryao Exp $
+
+  03 Aug 2012; Richard Yao <ryao@gentoo.org> bmake-20120620.ebuild:
+  Use ${EPREFIX}/usr/share/mk/bmake for default make definitions
 
   03 Aug 2012; Richard Yao <ryao@gentoo.org> bmake-20120620.ebuild:
   Make ebuild prefix-safe and keyword on ~x64-freebsd





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-08-03  3:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-03  3:19 [gentoo-commits] gentoo-x86 commit in sys-devel/bmake: bmake-20120620.ebuild ChangeLog Richard Yao (ryao)
  -- strict thread matches above, loose matches on Subject: below --
2012-08-03  3:12 Richard Yao (ryao)
2012-07-08 20:46 Naohiro Aota (naota)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox