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: xpa-2.1.15.ebuild ChangeLog
Date: Mon, 28 Oct 2013 17:31:30
Message-Id: 20131028173123.3BA3B20047@flycatcher.gentoo.org
1 bicatali 13/10/28 17:31:23
2
3 Modified: ChangeLog
4 Added: xpa-2.1.15.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.11 x11-libs/xpa/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpa/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpa/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpa/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/xpa/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 4 Jul 2012 20:29:20 -0000 1.10
24 +++ ChangeLog 28 Oct 2013 17:31:23 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/xpa
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xpa/ChangeLog,v 1.10 2012/07/04 20:29:20 bicatali Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xpa/ChangeLog,v 1.11 2013/10/28 17:31:23 bicatali Exp $
31 +
32 +*xpa-2.1.15 (28 Oct 2013)
33 +
34 + 28 Oct 2013; Sébastien Fabbro <bicatali@g.o> +xpa-2.1.15.ebuild:
35 + Version bump
36
37 *xpa-2.1.14 (04 Jul 2012)
38
39
40
41
42 1.1 x11-libs/xpa/xpa-2.1.15.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpa/xpa-2.1.15.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xpa/xpa-2.1.15.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xpa-2.1.15.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xpa/xpa-2.1.15.ebuild,v 1.1 2013/10/28 17:31:23 bicatali Exp $
52
53 EAPI=5
54
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 ~amd64-linux ~x86-linux"
64 IUSE="doc static-libs"
65
66 RDEPEND="dev-lang/tcl
67 x11-libs/libXt
68 !<sci-astronomy/ds9-5.3"
69 DEPEND="${RDEPEND}"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${PN}-2.1.8-makefile.patch
73 sed -i -e "s:\${LINK}:\${LINK} ${LDFLAGS}:" mklib || die
74 eautoconf
75 }
76
77 src_configure() {
78 econf \
79 --enable-shared \
80 --enable-threaded-xpans \
81 --with-x \
82 --with-tcl \
83 --with-threads
84 }
85
86 src_compile() {
87 emake shlib tclxpa
88 }
89
90 src_install () {
91 dodir /usr/$(get_libdir)
92 emake INSTALL_ROOT="${D}" install
93 insinto /usr/$(get_libdir)/tclxpa
94 doins pkgIndex.tcl
95 mv "${ED}"/usr/$(get_libdir)/libtclxpa* \
96 "${ED}"/usr/$(get_libdir)/tclxpa/ || die
97 dodoc README
98 use doc && dodoc doc/*.pdf && dohtml doc/*.html
99 # build system so crappy not worth patching to a non respondant upstream
100 # and builds static with PIC
101 use static-libs || rm -f "${ED}"/usr/$(get_libdir)/*.a
102 }