Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/xforms: xforms-1.0.93_p1-r1.ebuild ChangeLog
Date: Thu, 27 Dec 2012 15:13:13
Message-Id: 20121227151259.3FED32171D@flycatcher.gentoo.org
1 kensington 12/12/27 15:12:59
2
3 Modified: ChangeLog
4 Added: xforms-1.0.93_p1-r1.ebuild
5 Log:
6 Migrate to EAPI 5. Make static libs optional and prune .la files.
7
8 (Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
9
10 Revision Changes Path
11 1.51 x11-libs/xforms/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xforms/ChangeLog?rev=1.51&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xforms/ChangeLog?rev=1.51&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xforms/ChangeLog?r1=1.50&r2=1.51
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v
20 retrieving revision 1.50
21 retrieving revision 1.51
22 diff -u -r1.50 -r1.51
23 --- ChangeLog 21 May 2012 18:12:18 -0000 1.50
24 +++ ChangeLog 27 Dec 2012 15:12:59 -0000 1.51
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/xforms
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v 1.50 2012/05/21 18:12:18 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v 1.51 2012/12/27 15:12:59 kensington Exp $
30 +
31 +*xforms-1.0.93_p1-r1 (27 Dec 2012)
32 +
33 + 27 Dec 2012; Michael Palimaka <kensington@g.o>
34 + +xforms-1.0.93_p1-r1.ebuild:
35 + Migrate to EAPI 5. Make static libs optional and prune .la files.
36
37 21 May 2012; Kacper Kowalik <xarthisius@g.o> xforms-1.0.90-r1.ebuild:
38 Add missing inheritance of eutils.eclass
39
40
41
42 1.1 x11-libs/xforms/xforms-1.0.93_p1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xforms/xforms-1.0.93_p1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xforms/xforms-1.0.93_p1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xforms-1.0.93_p1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/xforms-1.0.93_p1-r1.ebuild,v 1.1 2012/12/27 15:12:59 kensington Exp $
52
53 EAPI=5
54
55 inherit autotools eutils
56
57 MY_P="${P/_/s}"
58
59 DESCRIPTION="A graphical user interface toolkit for X"
60 HOMEPAGE="http://www.nongnu.org/xforms/"
61 SRC_URI="http://savannah.nongnu.org/download/xforms/${MY_P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
66 IUSE="doc opengl static-libs"
67
68 RDEPEND="virtual/jpeg
69 x11-libs/libSM
70 x11-libs/libX11
71 x11-libs/libXpm
72 opengl? ( virtual/opengl )"
73 DEPEND="${RDEPEND}
74 x11-proto/xproto"
75
76 S=${WORKDIR}/${MY_P}
77
78 DOCS=( ChangeLog NEWS README )
79
80 src_prepare() {
81 rm "${S}"/config/libtool.m4 "${S}"/acinclude.m4
82 AT_M4DIR=config eautoreconf
83 }
84
85 src_configure() {
86 econf \
87 $(use_enable doc docs) \
88 $(use_enable opengl gl) \
89 $(use_enable static-libs static)
90 }
91
92 src_install() {
93 default
94 prune_libtool_files
95 }