From 76ab3bb0c4f8b1d85251f179ace2f7fed99be7bc Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 2 Nov 2007 06:30:51 +0000 Subject: Add support for git. (Portage version: 2.1.3.16) --- sys-devel/autoconf/ChangeLog | 7 +++- sys-devel/autoconf/autoconf-9999.ebuild | 49 +++++++++++++++++++++++++++ sys-devel/autoconf/files/digest-autoconf-9999 | 0 3 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 sys-devel/autoconf/autoconf-9999.ebuild create mode 100644 sys-devel/autoconf/files/digest-autoconf-9999 (limited to 'sys-devel') diff --git a/sys-devel/autoconf/ChangeLog b/sys-devel/autoconf/ChangeLog index 788bd03d8c5f..6296b488ce80 100644 --- a/sys-devel/autoconf/ChangeLog +++ b/sys-devel/autoconf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/autoconf # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.109 2007/09/22 20:15:54 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/ChangeLog,v 1.110 2007/11/02 06:30:50 vapier Exp $ + +*autoconf-9999 (02 Nov 2007) + + 02 Nov 2007; Mike Frysinger +autoconf-9999.ebuild: + Add support for git. 22 Sep 2007; Wulf C. Krueger autoconf-2.61-r1.ebuild: diff --git a/sys-devel/autoconf/autoconf-9999.ebuild b/sys-devel/autoconf/autoconf-9999.ebuild new file mode 100644 index 000000000000..e58b860ac97e --- /dev/null +++ b/sys-devel/autoconf/autoconf-9999.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf/autoconf-9999.ebuild,v 1.1 2007/11/02 06:30:50 vapier Exp $ + +EGIT_REPO_URI="git://git.savannah.gnu.org/autoconf.git" + +inherit git + +DESCRIPTION="Used to create autoconfiguration files" +HOMEPAGE="http://www.gnu.org/software/autoconf/autoconf.html" +SRC_URI="" + +LICENSE="GPL-3" +SLOT="2.5" +KEYWORDS="" +IUSE="emacs" + +DEPEND=">=sys-apps/texinfo-4.3 + >=sys-devel/m4-1.4.6 + dev-lang/perl" +RDEPEND="${DEPEND} + >=sys-devel/autoconf-wrapper-4-r2" +PDEPEND="emacs? ( app-emacs/autoconf-mode )" + +src_unpack() { + git_src_unpack + cd "${S}" + if [[ ! -e configure ]] ; then + autoreconf || die + fi +} + +src_compile() { + # Disable Emacs in the build system since it is in a separate package. + export EMACS=no + econf --program-suffix="-${PV}" || die + # econf updates config.{sub,guess} which forces the manpages + # to be regenerated which we dont want to do #146621 + touch man/*.1 + # From configure output: + # Parallel builds via `make -jN' do not work. + emake -j1 || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS BUGS NEWS README TODO THANKS \ + ChangeLog ChangeLog.0 ChangeLog.1 ChangeLog.2 +} diff --git a/sys-devel/autoconf/files/digest-autoconf-9999 b/sys-devel/autoconf/files/digest-autoconf-9999 new file mode 100644 index 000000000000..e69de29bb2d1 -- cgit v1.2.3-65-gdbad