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/cbflib: ChangeLog cbflib-0.9.3.3.ebuild
Date: Fri, 06 Dec 2013 12:25:11
Message-Id: 20131206122505.1C99E2004B@flycatcher.gentoo.org
1 jlec 13/12/06 12:25:05
2
3 Modified: ChangeLog
4 Added: cbflib-0.9.3.3.ebuild
5 Log:
6 sci-libs/cbflib: Version BUmp
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.38 sci-libs/cbflib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/cbflib/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 6 Dec 2013 10:13:27 -0000 1.37
24 +++ ChangeLog 6 Dec 2013 12:25:04 -0000 1.38
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-libs/cbflib
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cbflib/ChangeLog,v 1.37 2013/12/06 10:13:27 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cbflib/ChangeLog,v 1.38 2013/12/06 12:25:04 jlec Exp $
30 +
31 +*cbflib-0.9.3.3 (06 Dec 2013)
32 +
33 + 06 Dec 2013; Justin Lecher <jlec@g.o> +cbflib-0.9.3.3.ebuild,
34 + +files/cbflib-0.9.3.3-unbundle.patch:
35 + Version BUmp
36
37 06 Dec 2013; Justin Lecher <jlec@g.o> cbflib-0.9.2.10.ebuild,
38 cbflib-0.9.2.10-r1.ebuild:
39
40
41
42 1.1 sci-libs/cbflib/cbflib-0.9.3.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/cbflib-0.9.3.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cbflib/cbflib-0.9.3.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cbflib-0.9.3.3.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/sci-libs/cbflib/cbflib-0.9.3.3.ebuild,v 1.1 2013/12/06 12:25:04 jlec Exp $
52
53 EAPI=5
54
55 inherit cmake-utils eutils flag-o-matic fortran-2 toolchain-funcs
56
57 MY_P1="CBFlib-${PV}"
58 #MY_P2="CBFlib_${PV}"
59 MY_P2="CBFlib_0.9.3"
60
61 DESCRIPTION="Library providing a simple mechanism for accessing CBF files and imgCIF files"
62 HOMEPAGE="http://www.bernstein-plus-sons.com/software/CBF/"
63 BASE_TEST_URI="http://arcib.dowling.edu/software/CBFlib/downloads/version_${PV}/"
64 SRC_URI="mirror://sourceforge/${PN}/${MY_P1}.tar.gz"
65 # test? (
66 # mirror://sourceforge/${PN}/${MY_P2}_Data_Files_Input.tar.gz
67 # mirror://sourceforge/${PN}/${MY_P2}_Data_Files_Output.tar.gz
68 # )"
69
70 LICENSE="GPL-2"
71 SLOT="0"
72 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
73 IUSE="doc test"
74
75 S=${WORKDIR}/${MY_P1}
76
77 RDEPEND="sci-libs/hdf5:="
78 DEPEND="${RDEPEND}"
79
80 RESTRICT="test"
81
82 PATCHES=(
83 "${FILESDIR}"/${P}-unbundle.patch
84 )
85
86 src_prepare(){
87 rm -rf Py* drel* dRel* ply* || die
88
89 append-fflags -fno-range-check
90
91 tc-export CC CXX AR RANLIB
92 cmake-utils_src_prepare
93 }
94
95 src_configure() {
96 local mycmakeargs=(
97 -DUNPACKED_DIRECTORY="${S}"
98 )
99 cmake-utils_src_configure
100 }
101
102 src_install() {
103 cmake-utils_src_install
104 dosym ${PN} /usr/include/cbf
105 }