Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/autoconf-wrapper: autoconf-wrapper-12.ebuild ChangeLog
Date: Sun, 02 Oct 2011 19:39:17
Message-Id: 20111002193908.0ADEE2004C@flycatcher.gentoo.org
1 vapier 11/10/02 19:39:08
2
3 Modified: ChangeLog
4 Added: autoconf-wrapper-12.ebuild
5 Log:
6 Optimize version lookup a bit, and handle the case where $0 is not a full path #385201 by Florian Philipp.
7
8 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.88 sys-devel/autoconf-wrapper/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf-wrapper/ChangeLog?rev=1.88&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf-wrapper/ChangeLog?rev=1.88&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf-wrapper/ChangeLog?r1=1.87&r2=1.88
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/autoconf-wrapper/ChangeLog,v
20 retrieving revision 1.87
21 retrieving revision 1.88
22 diff -u -r1.87 -r1.88
23 --- ChangeLog 11 Jun 2011 23:37:38 -0000 1.87
24 +++ ChangeLog 2 Oct 2011 19:39:07 -0000 1.88
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-devel/autoconf-wrapper
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-wrapper/ChangeLog,v 1.87 2011/06/11 23:37:38 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-wrapper/ChangeLog,v 1.88 2011/10/02 19:39:07 vapier Exp $
30 +
31 +*autoconf-wrapper-12 (02 Oct 2011)
32 +
33 + 02 Oct 2011; Mike Frysinger <vapier@g.o> +autoconf-wrapper-12.ebuild,
34 + +files/ac-wrapper-12.sh:
35 + Optimize version lookup a bit, and handle the case where $0 is not a full
36 + path #385201 by Florian Philipp.
37
38 *autoconf-wrapper-11 (11 Jun 2011)
39
40
41
42
43 1.1 sys-devel/autoconf-wrapper/autoconf-wrapper-12.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf-wrapper/autoconf-wrapper-12.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/autoconf-wrapper/autoconf-wrapper-12.ebuild?rev=1.1&content-type=text/plain
47
48 Index: autoconf-wrapper-12.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-wrapper/autoconf-wrapper-12.ebuild,v 1.1 2011/10/02 19:39:07 vapier Exp $
53
54 inherit multilib
55
56 DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
57 HOMEPAGE="http://www.gentoo.org/"
58 SRC_URI=""
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE=""
64
65 S=${WORKDIR}
66
67 src_install() {
68 exeinto /usr/$(get_libdir)/misc
69 newexe "${FILESDIR}"/ac-wrapper-${PV}.sh ac-wrapper.sh || die
70
71 dodir /usr/bin
72 local x=
73 for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
74 dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x} || die
75 done
76 }