public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/automake: ChangeLog automake-9999.ebuild
@ 2007-11-02  6:17 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2007-11-02  6:17 UTC (permalink / raw
  To: gentoo-commits

vapier      07/11/02 06:17:52

  Modified:             ChangeLog
  Added:                automake-9999.ebuild
  Log:
  Add support for git.
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.107                sys-devel/automake/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	8 Sep 2007 06:46:28 -0000	1.106
+++ ChangeLog	2 Nov 2007 06:17:52 -0000	1.107
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/automake
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.106 2007/09/08 06:46:28 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.107 2007/11/02 06:17:52 vapier Exp $
+
+*automake-9999 (02 Nov 2007)
+
+  02 Nov 2007; Mike Frysinger <vapier@gentoo.org> +automake-9999.ebuild:
+  Add support for git.
 
   08 Sep 2007; Mike Frysinger <vapier@gentoo.org>
   +files/automake-1.6.3-test-fixes.patch,



1.1                  sys-devel/automake/automake-9999.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/automake-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/automake/automake-9999.ebuild?rev=1.1&content-type=text/plain

Index: automake-9999.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.1 2007/11/02 06:17:52 vapier Exp $

EGIT_REPO_URI="git://git.savannah.gnu.org/automake.git"

inherit eutils git

DESCRIPTION="Used to generate Makefile.in from Makefile.am"
HOMEPAGE="http://sources.redhat.com/automake/"
SRC_URI=""

LICENSE="GPL-3"
SLOT="${PV:0:4}"
KEYWORDS=""
IUSE=""

RDEPEND="dev-lang/perl
	>=sys-devel/automake-wrapper-2
	>=sys-devel/autoconf-2.60
	>=sys-apps/texinfo-4.7
	sys-devel/gnuconfig"
DEPEND="${RDEPEND}
	sys-apps/help2man"

src_unpack() {
	git_src_unpack
	cd "${S}"
	sed -i \
		-e "s|: (automake)| v${SLOT}: (automake${SLOT})|" \
		doc/automake.texi || die "sed failed"
	export WANT_AUTOCONF=2.5
}

src_compile() {
	econf --docdir=/usr/share/doc/${PF} || die
	emake || die
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc NEWS README THANKS TODO AUTHORS ChangeLog

	# SLOT the docs and junk
	local x
	for x in aclocal automake ; do
		help2man ./${x} > ${x}-${SLOT}.1
		doman ${x}-${SLOT}.1
		rm -f "${D}"/usr/bin/${x}
	done
	cd "${D}"/usr/share/info || die
	for x in *.info* ; do
		mv "${x}" "${x/${PN}/${PN}${SLOT}}" || die
	done

	# remove all config.guess and config.sub files replacing them
	# w/a symlink to a specific gnuconfig version
	for x in guess sub ; do
		dosym ../gnuconfig/config.${x} /usr/share/${PN}-${SLOT}/config.${x}
	done
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in sys-devel/automake: ChangeLog automake-9999.ebuild
@ 2011-09-21  8:35 Michal Gorny (mgorny)
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2011-09-21  8:35 UTC (permalink / raw
  To: gentoo-commits

mgorny      11/09/21 08:35:57

  Modified:             ChangeLog automake-9999.ebuild
  Log:
  Migrate to git-2.
  
  (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)

Revision  Changes    Path
1.153                sys-devel/automake/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- ChangeLog	8 Apr 2011 18:02:51 -0000	1.152
+++ ChangeLog	21 Sep 2011 08:35:56 -0000	1.153
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/automake
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.152 2011/04/08 18:02:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.153 2011/09/21 08:35:56 mgorny Exp $
+
+  21 Sep 2011; Michał Górny <mgorny@gentoo.org> automake-9999.ebuild:
+  Migrate to git-2.
 
 *automake-1.11.1-r1 (08 Apr 2011)
 



1.4                  sys-devel/automake/automake-9999.ebuild

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

Index: automake-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- automake-9999.ebuild	8 Feb 2009 19:42:55 -0000	1.3
+++ automake-9999.ebuild	21 Sep 2011 08:35:56 -0000	1.4
@@ -1,10 +1,11 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.3 2009/02/08 19:42:55 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.4 2011/09/21 08:35:56 mgorny Exp $
 
-EGIT_REPO_URI="git://git.savannah.gnu.org/automake.git"
+EGIT_REPO_URI="git://git.savannah.gnu.org/${PN}.git
+	http://git.savannah.gnu.org/r/${PN}.git"
 
-inherit eutils git
+inherit eutils git-2
 
 DESCRIPTION="Used to generate Makefile.in from Makefile.am"
 HOMEPAGE="http://sources.redhat.com/automake/"
@@ -24,7 +25,7 @@
 	sys-apps/help2man"
 
 src_unpack() {
-	git_src_unpack
+	git-2_src_unpack
 	cd "${S}"
 	sed -i \
 		-e "s|: (automake)| v${SLOT}: (automake${SLOT})|" \






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/automake: ChangeLog automake-9999.ebuild
@ 2012-01-19 16:17 Mike Frysinger (vapier)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Frysinger (vapier) @ 2012-01-19 16:17 UTC (permalink / raw
  To: gentoo-commits

vapier      12/01/19 16:17:29

  Modified:             ChangeLog automake-9999.ebuild
  Log:
  Execute bootstrap script as pointed out by Sergei Trofimovich.
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.155                sys-devel/automake/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v
retrieving revision 1.154
retrieving revision 1.155
diff -u -r1.154 -r1.155
--- ChangeLog	31 Dec 2011 07:19:05 -0000	1.154
+++ ChangeLog	19 Jan 2012 16:17:29 -0000	1.155
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/automake
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.154 2011/12/31 07:19:05 vapier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.155 2012/01/19 16:17:29 vapier Exp $
+
+  19 Jan 2012; Mike Frysinger <vapier@gentoo.org> automake-9999.ebuild:
+  Execute bootstrap script as pointed out by Sergei Trofimovich.
 
 *automake-1.11.2 (31 Dec 2011)
 



1.5                  sys-devel/automake/automake-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-9999.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-9999.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-9999.ebuild?r1=1.4&r2=1.5

Index: automake-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- automake-9999.ebuild	21 Sep 2011 08:35:56 -0000	1.4
+++ automake-9999.ebuild	19 Jan 2012 16:17:29 -0000	1.5
@@ -1,7 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.4 2011/09/21 08:35:56 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.5 2012/01/19 16:17:29 vapier Exp $
 
+EAPI="2"
 EGIT_REPO_URI="git://git.savannah.gnu.org/${PN}.git
 	http://git.savannah.gnu.org/r/${PN}.git"
 
@@ -24,18 +25,18 @@
 DEPEND="${RDEPEND}
 	sys-apps/help2man"
 
-src_unpack() {
-	git-2_src_unpack
-	cd "${S}"
+src_prepare() {
 	sed -i \
 		-e "s|: (automake)| v${SLOT}: (automake${SLOT})|" \
-		doc/automake.texi || die "sed failed"
+		doc/automake.texi || die
 	export WANT_AUTOCONF=2.5
+	# Don't try wrapping the autotools this thing runs as it tends
+	# to be a bit esoteric, and the script does `set -e` itself.
+	./bootstrap
 }
 
-src_compile() {
-	econf --docdir=/usr/share/doc/${PF} || die
-	emake || die
+src_configure() {
+	econf --docdir=/usr/share/doc/${PF}
 }
 
 src_install() {






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

end of thread, other threads:[~2012-01-19 16:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-02  6:17 [gentoo-commits] gentoo-x86 commit in sys-devel/automake: ChangeLog automake-9999.ebuild Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-21  8:35 Michal Gorny (mgorny)
2012-01-19 16:17 Mike Frysinger (vapier)

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