Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/boost-m4: boost-m4-0.3.ebuild ChangeLog
Date: Tue, 05 Mar 2013 14:00:30
Message-Id: 20130305140026.933812171D@flycatcher.gentoo.org
1 binki 13/03/05 14:00:26
2
3 Modified: ChangeLog
4 Added: boost-m4-0.3.ebuild
5 Log:
6 Bump to boost-m4-0.3 which includes a Mac OSX -rpath LDFLAGS fix for bug #460362.
7
8 (Portage version: 2.2.0_alpha163-r2/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)
9
10 Revision Changes Path
11 1.7 sys-devel/boost-m4/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/boost-m4/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/boost-m4/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/boost-m4/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-devel/boost-m4/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 1 Dec 2012 19:04:00 -0000 1.6
24 +++ ChangeLog 5 Mar 2013 14:00:26 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-devel/boost-m4
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/boost-m4/ChangeLog,v 1.6 2012/12/01 19:04:00 armin76 Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/boost-m4/ChangeLog,v 1.7 2013/03/05 14:00:26 binki Exp $
31 +
32 +*boost-m4-0.3 (05 Mar 2013)
33 +
34 + 05 Mar 2013; Nathan Phillip Brink <binki@g.o> +boost-m4-0.3.ebuild:
35 + Bump to boost-m4-0.3 which includes a Mac OSX -rpath LDFLAGS fix for bug
36 + #460362.
37
38 01 Dec 2012; Raúl Porcel <armin76@g.o> boost-m4-0.2.ebuild,
39 boost-m4-0.3_pre121130.ebuild:
40
41
42
43 1.1 sys-devel/boost-m4/boost-m4-0.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/boost-m4/boost-m4-0.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/boost-m4/boost-m4-0.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: boost-m4-0.3.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-devel/boost-m4/boost-m4-0.3.ebuild,v 1.1 2013/03/05 14:00:26 binki Exp $
53
54 EAPI=4
55
56 inherit vcs-snapshot
57
58 DESCRIPTION="Another set of autoconf macros for compiling against boost"
59 HOMEPAGE="http://github.com/tsuna/boost.m4"
60 SRC_URI="${HOMEPAGE}/tarball/v${PV} -> ${P}.tar.gz"
61
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
65 IUSE=""
66
67 # boost.m4 has a buildsystem, but the distributer didn't use make dist
68 # so we'd have to eautoreconf to use it. Also, its ./configure script
69 # DEPENDs on boost. For installing one file, bootstrapping the
70 # buildsystem isn't worth it.
71 src_configure() { :; }
72
73 src_compile() { :; }
74
75 src_install() {
76 insinto /usr/share/aclocal
77 doins build-aux/boost.m4
78
79 dodoc AUTHORS NEWS README THANKS
80 }