Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/votca-tools: votca-tools-1.2.4.ebuild ChangeLog votca-tools-1.2.3-r3.ebuild
Date: Sun, 31 Aug 2014 23:37:59
Message-Id: 20140831233754.E2E9C4611@oystercatcher.gentoo.org
1 ottxor 14/08/31 23:37:54
2
3 Modified: ChangeLog
4 Added: votca-tools-1.2.4.ebuild
5 Removed: votca-tools-1.2.3-r3.ebuild
6 Log:
7 version bump
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C2000586)
10
11 Revision Changes Path
12 1.24 sci-libs/votca-tools/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/votca-tools/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/votca-tools/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/votca-tools/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-libs/votca-tools/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 2 Jul 2013 14:15:12 -0000 1.23
25 +++ ChangeLog 31 Aug 2014 23:37:54 -0000 1.24
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-libs/votca-tools
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/votca-tools/ChangeLog,v 1.23 2013/07/02 14:15:12 ottxor Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/votca-tools/ChangeLog,v 1.24 2014/08/31 23:37:54 ottxor Exp $
32 +
33 +*votca-tools-1.2.4 (31 Aug 2014)
34 +
35 + 31 Aug 2014; Christoph Junghans <ottxor@g.o> +votca-tools-1.2.4.ebuild,
36 + -files/votca-tools-1.2.3-boost-1.53.patch, -votca-tools-1.2.3-r3.ebuild:
37 + version bump
38
39 02 Jul 2013; Christoph Junghans <ottxor@g.o>
40 votca-tools-1.2.3-r3.ebuild:
41
42
43
44 1.1 sci-libs/votca-tools/votca-tools-1.2.4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/votca-tools/votca-tools-1.2.4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/votca-tools/votca-tools-1.2.4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: votca-tools-1.2.4.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-libs/votca-tools/votca-tools-1.2.4.ebuild,v 1.1 2014/08/31 23:37:54 ottxor Exp $
54
55 EAPI="5"
56
57 inherit cmake-utils eutils multilib
58
59 if [ "${PV}" != "9999" ]; then
60 SRC_URI="http://downloads.votca.googlecode.com/hg/${P}_pristine.tar.gz"
61 else
62 SRC_URI=""
63 inherit mercurial
64 EHG_REPO_URI="https://tools.votca.googlecode.com/hg"
65 fi
66
67 DESCRIPTION="Votca tools library"
68 HOMEPAGE="http://www.votca.org"
69
70 LICENSE="Apache-2.0"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
73 IUSE="doc +fftw +gsl sqlite"
74
75 RDEPEND="fftw? ( sci-libs/fftw:3.0 )
76 dev-libs/expat
77 gsl? ( sci-libs/gsl )
78 dev-libs/boost:=
79 sqlite? ( dev-db/sqlite:3 )"
80
81 DEPEND="${RDEPEND}
82 doc? ( || ( <app-doc/doxygen-1.7.6.1[-nodot] >=app-doc/doxygen-1.7.6.1[dot] ) )
83 >=app-text/txt2tags-2.5
84 virtual/pkgconfig"
85
86 DOCS=( NOTICE )
87
88 src_configure() {
89 mycmakeargs=(
90 $(cmake-utils_use_with gsl GSL)
91 $(cmake-utils_use_with fftw FFTW)
92 $(cmake-utils_use_with sqlite SQLITE3)
93 -DEXTERNAL_BOOST=ON
94 -DWITH_RC_FILES=OFF
95 -DLIB=$(get_libdir)
96 )
97 cmake-utils_src_configure
98 }
99
100 src_install() {
101 cmake-utils_src_install
102 if use doc; then
103 cd "${CMAKE_BUILD_DIR}" || die
104 cd share/doc || die
105 doxygen || die
106 dohtml -r html/*
107 fi
108 }