Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/wml: ChangeLog wml-2.0.11-r2.ebuild
Date: Sun, 23 Dec 2007 13:14:28
Message-Id: E1J6Qen-00054x-GX@stork.gentoo.org
1 graaff 07/12/23 13:14:17
2
3 Modified: ChangeLog
4 Added: wml-2.0.11-r2.ebuild
5 Log:
6 Fix #199532
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.37 dev-lang/wml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/wml/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/wml/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/wml/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/wml/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 21 Jul 2007 19:11:59 -0000 1.36
23 +++ ChangeLog 23 Dec 2007 13:14:16 -0000 1.37
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/wml
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/wml/ChangeLog,v 1.36 2007/07/21 19:11:59 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/wml/ChangeLog,v 1.37 2007/12/23 13:14:16 graaff Exp $
29 +
30 +*wml-2.0.11-r2 (23 Dec 2007)
31 +
32 + 23 Dec 2007; Hans de Graaff <graaff@g.o> +wml-2.0.11-r2.ebuild:
33 + Fix installation with multilib-strict, fixing #199532.
34
35 21 Jul 2007; Hans de Graaff <graaff@g.o> -wml-2.0.9-r1.ebuild,
36 -wml-2.0.11.ebuild:
37
38
39
40 1.1 dev-lang/wml/wml-2.0.11-r2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/wml/wml-2.0.11-r2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/wml/wml-2.0.11-r2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: wml-2.0.11-r2.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-lang/wml/wml-2.0.11-r2.ebuild,v 1.1 2007/12/23 13:14:16 graaff Exp $
50
51 inherit fixheadtails eutils autotools multilib
52
53 DESCRIPTION="Website META Language"
54 HOMEPAGE="http://thewml.org/"
55 SRC_URI="http://thewml.org/distrib/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ia64 ~ppc ~s390 ~sparc ~x86"
60 IUSE=""
61
62 DEPEND="dev-libs/libpcre
63 dev-lang/perl"
64
65 src_unpack() {
66 unpack ${A}
67 ht_fix_all
68 cd "${S}"
69
70 epatch "${FILESDIR}/wml-2.0.9-gcc41.patch"
71 epatch "${FILESDIR}/wml-2.0.9-autotools-update.patch"
72
73 einfo "Patching Makefile.in files to fix various problems"
74 # Patch Makefile to avoid stripping binaries
75 for m in $(find "${S}" -name Makefile.in -print); do
76 sed -i -e "s/-m 755 -s/-m 755/" "${m}" || die "Could not run sed on ${m}"
77 sed -i -e "/^libdir.*/s::libdir = \$(prefix)/$(get_libdir)\$(libsubdir):" "${m}" || die "Could not run sed on ${m}"
78 done
79
80 # Patch Makefile to avoid a dependency on lynx just for documentation
81 sed -i -e "s/lynx -dump -nolist -width=72/cat/" wml_aux/tidy/Makefile.in || die
82
83 for d in $(find "${S}" \( -name configure.ac -o -name configure.in \) -exec dirname {} \;); do
84 pushd ${d} &>/dev/null
85 AT_NOELIBTOOLIZE="yes" eautoreconf
86 popd &>/dev/null
87 done
88
89 elibtoolize
90 }
91
92 src_compile() {
93 econf --libdir=/usr/$(get_libdir) || die "./configure failed"
94 emake || die "emake failed"
95 }
96
97 # The default src_test first checks if 'make test' is possible using the '-n'
98 # option of make, but this messes up the tests completely.
99 src_test() {
100 emake -j1 test
101 }
102
103 src_install() {
104 einstall || die
105 dodoc ANNOUNCE BUGREPORT C* INSTALL MANIFEST README* SUPPORT VERSION*
106 }
107
108
109
110 --
111 gentoo-commits@g.o mailing list