Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/clipper: clipper-20100511-r1.ebuild ChangeLog
Date: Fri, 03 Feb 2012 12:28:00
Message-Id: 20120203122750.63D3D2004B@flycatcher.gentoo.org
1 jlec 12/02/03 12:27:50
2
3 Modified: clipper-20100511-r1.ebuild ChangeLog
4 Log:
5 Moved to autotools-utils.eclass
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sci-libs/clipper/clipper-20100511-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/clipper/clipper-20100511-r1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/clipper/clipper-20100511-r1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/clipper/clipper-20100511-r1.ebuild?r1=1.1&r2=1.2
15
16 Index: clipper-20100511-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/clipper/clipper-20100511-r1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- clipper-20100511-r1.ebuild 26 Jun 2011 10:13:02 -0000 1.1
23 +++ clipper-20100511-r1.ebuild 3 Feb 2012 12:27:50 -0000 1.2
24 @@ -1,12 +1,12 @@
25 -# Copyright 1999-2011 Gentoo Foundation
26 +# Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/clipper/clipper-20100511-r1.ebuild,v 1.1 2011/06/26 10:13:02 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/clipper/clipper-20100511-r1.ebuild,v 1.2 2012/02/03 12:27:50 jlec Exp $
30
31 EAPI=4
32
33 -WANT_AUTOMAKE="1.11"
34 +AUTOTOOLS_AUTORECONF=true
35
36 -inherit autotools eutils flag-o-matic
37 +inherit autotools-utils eutils flag-o-matic
38
39 DESCRIPTION="Object-oriented libraries for crystallographic data and crystallographic computation"
40 HOMEPAGE="http://www.ysbl.york.ac.uk/~cowtan/clipper/clipper.html"
41 @@ -16,7 +16,7 @@
42 LICENSE="LGPL-2.1"
43 SLOT="0"
44 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
45 -IUSE="debug"
46 +IUSE="debug static-libs"
47
48 RDEPEND="
49 sci-libs/ccp4-libs
50 @@ -26,13 +26,13 @@
51
52 S="${WORKDIR}"/${PN}-2.1
53
54 -src_prepare() {
55 - epatch "${FILESDIR}"/20091215-missing-var.patch
56 +PATCHES=( "${FILESDIR}"/20091215-missing-var.patch )
57
58 +src_prepare() {
59 # ccp4 provides these, and more.
60 sed -i -e "s:examples::g" "${S}"/Makefile.am
61
62 - AT_M4DIR="config" eautoreconf
63 + autotools-utils_src_prepare
64 }
65
66 src_configure() {
67 @@ -40,20 +40,22 @@
68 # on 64-bit systems
69 append-flags -fno-strict-aliasing
70
71 - econf \
72 - --enable-ccp4 \
73 - --enable-cif \
74 - --enable-cns \
75 - --enable-contrib \
76 - --enable-minimol \
77 - --enable-mmdb \
78 - --enable-phs \
79 - --with-mmdb="${EPREFIX}"/usr \
80 + local myeconfargs=(
81 + --enable-ccp4
82 + --enable-cif
83 + --enable-cns
84 + --enable-contrib
85 + --enable-minimol
86 + --enable-mmdb
87 + --enable-phs
88 + --with-mmdb="${EPREFIX}"/usr
89 $(use_enable debug)
90 + )
91 + autotools-utils_src_configure
92 }
93
94 src_test() {
95 emake \
96 - -C examples \
97 + -C "${AUTOTOOLS_BUILD_DIR}"/examples \
98 check
99 }
100
101
102
103 1.15 sci-libs/clipper/ChangeLog
104
105 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/clipper/ChangeLog?rev=1.15&view=markup
106 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/clipper/ChangeLog?rev=1.15&content-type=text/plain
107 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/clipper/ChangeLog?r1=1.14&r2=1.15
108
109 Index: ChangeLog
110 ===================================================================
111 RCS file: /var/cvsroot/gentoo-x86/sci-libs/clipper/ChangeLog,v
112 retrieving revision 1.14
113 retrieving revision 1.15
114 diff -u -r1.14 -r1.15
115 --- ChangeLog 26 Jun 2011 10:13:02 -0000 1.14
116 +++ ChangeLog 3 Feb 2012 12:27:50 -0000 1.15
117 @@ -1,6 +1,9 @@
118 # ChangeLog for sci-libs/clipper
119 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
120 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/clipper/ChangeLog,v 1.14 2011/06/26 10:13:02 jlec Exp $
121 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
122 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/clipper/ChangeLog,v 1.15 2012/02/03 12:27:50 jlec Exp $
123 +
124 + 03 Feb 2012; Justin Lecher <jlec@g.o> clipper-20100511-r1.ebuild:
125 + Moved to autotools-utils.eclass
126
127 *clipper-20100511-r1 (26 Jun 2011)