Gentoo Archives: gentoo-commits

From: "Jurek Bartuszek (jurek)" <jurek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/monodoc: ChangeLog monodoc-1.9.ebuild
Date: Sat, 31 May 2008 12:47:38
Message-Id: E1K2QUe-0001l2-26@stork.gentoo.org
1 jurek 08/05/31 12:47:32
2
3 Modified: ChangeLog
4 Added: monodoc-1.9.ebuild
5 Log:
6 dev-util/monodoc: version bump (bug #213381)
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.70 dev-util/monodoc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodoc/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodoc/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodoc/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 14 Dec 2007 20:25:14 -0000 1.69
23 +++ ChangeLog 31 May 2008 12:47:31 -0000 1.70
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/monodoc
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.69 2007/12/14 20:25:14 jurek Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/ChangeLog,v 1.70 2008/05/31 12:47:31 jurek Exp $
30 +
31 +*monodoc-1.9 (31 May 2008)
32 +
33 + 31 May 2008; Jurek Bartuszek <jurek@g.o> +monodoc-1.9.ebuild:
34 + Version bump (bug #213381)
35
36 *monodoc-1.2.6 (14 Dec 2007)
37
38
39
40
41 1.1 dev-util/monodoc/monodoc-1.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodoc/monodoc-1.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodoc/monodoc-1.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: monodoc-1.9.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/monodoc/monodoc-1.9.ebuild,v 1.1 2008/05/31 12:47:31 jurek Exp $
51
52 inherit mono multilib
53
54 DESCRIPTION="Documentation for mono's .Net class library"
55 HOMEPAGE="http://www.go-mono.com"
56 SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.zip"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
61 IUSE="X"
62
63 RDEPEND=">=dev-lang/mono-1.1
64 www-client/lynx"
65 DEPEND="${RDEPEND}
66 app-arch/unzip"
67 PDEPEND="X? ( >=dev-util/mono-tools-1.1.17 )"
68
69 RESTRICT="test"
70
71 # Parallel build unfriendly
72 MAKEOPTS="${MAKEOPTS} -j1"
73
74 src_unpack() {
75 unpack ${A}
76 cd ${S}
77
78 # Install all our .dlls under $(libdir), not $(prefix)/lib
79 if [ $(get_libdir) != "lib" ] ; then
80 sed -i -e 's:$(prefix)/lib:$(libdir):' \
81 ${S}/engine/Makefile.am \
82 || die "sed failed"
83
84 sed -i -e 's:libdir=@prefix@/lib:libdir=@libdir@:' \
85 -i -e 's:${prefix}/lib:${libdir}:' \
86 ${S}/monodoc.pc.in \
87 || die "sed failed"
88
89 aclocal || die "aclocal failed"
90 automake || die "automake failed"
91 fi
92 }
93
94 src_install() {
95 make DESTDIR="${D}" install || die
96 }
97
98
99
100 --
101 gentoo-commits@l.g.o mailing list