Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/xpa: ChangeLog xpa-2.1.12.ebuild xpa-2.1.8.ebuild
Date: Sun, 31 Jan 2010 21:33:53
Message-Id: E1NbhQQ-0000tF-9W@stork.gentoo.org
1 bicatali 10/01/31 21:33:46
2
3 Modified: ChangeLog
4 Added: xpa-2.1.12.ebuild
5 Removed: xpa-2.1.8.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 x11-libs/xpa/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/xpa/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/xpa/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/xpa/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/xpa/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 9 Sep 2009 05:44:27 -0000 1.5
24 +++ ChangeLog 31 Jan 2010 21:33:45 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/xpa
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xpa/ChangeLog,v 1.5 2009/09/09 05:44:27 bicatali Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xpa/ChangeLog,v 1.6 2010/01/31 21:33:45 bicatali Exp $
31 +
32 +*xpa-2.1.12 (31 Jan 2010)
33 +
34 + 31 Jan 2010; Sébastien Fabbro <bicatali@g.o> -xpa-2.1.8.ebuild,
35 + +xpa-2.1.12.ebuild:
36 + Version bump
37
38 *xpa-2.1.10 (09 Sep 2009)
39
40
41
42
43 1.1 x11-libs/xpa/xpa-2.1.12.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/xpa/xpa-2.1.12.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/xpa/xpa-2.1.12.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xpa-2.1.12.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xpa/xpa-2.1.12.ebuild,v 1.1 2010/01/31 21:33:45 bicatali Exp $
53
54 EAPI=2
55 inherit eutils autotools
56
57 DESCRIPTION="Messaging system providing communication between programs"
58 HOMEPAGE="http://hea-www.harvard.edu/RD/xpa"
59 SRC_URI="http://hea-www.harvard.edu/saord/download/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="doc"
65 RDEPEND="dev-lang/tcl
66 x11-libs/libXt
67 !<sci-astronomy/ds9-5.3"
68 DEPEND="${RDEPEND}"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PN}-2.1.8-makefile.patch
72 sed -i -e "s:\${LINK}:\${LINK} ${LDFLAGS}:" mklib
73 eautoconf
74 }
75
76 src_configure() {
77 econf \
78 --enable-shared \
79 --enable-threaded-xpans \
80 --with-x \
81 --with-tcl \
82 --with-threads
83 }
84
85 src_compile() {
86 emake shlib tclxpa || die "emake failed"
87 }
88
89 src_install () {
90 emake INSTALL_ROOT="${D}" install || die "emake install failed"
91 dosym libtclxpa.so.1.0 /usr/$(get_libdir)/libtclxpa.so
92 insinto /usr/$(get_libdir)/tclxpa
93 doins pkgIndex.tcl
94 mv "${D}"/usr/$(get_libdir)/libtclxpa* "${D}"/usr/$(get_libdir)/tclxpa/
95
96 dodoc README
97 if use doc; then
98 cd doc
99 insinto /usr/share/doc/${PF}
100 doins *.pdf || die
101 insinto /usr/share/doc/${PF}/html
102 doins *.html || die
103 fi
104 }