Gentoo Archives: gentoo-commits

From: Christoph Junghans <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/votca-tools/
Date: Thu, 14 Jul 2016 17:32:13
Message-Id: 1468516724.8a8468fd5bc39db7d5e0c617161debbb6d795e1f.ottxor@gentoo
1 commit: 8a8468fd5bc39db7d5e0c617161debbb6d795e1f
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 14 17:18:44 2016 +0000
4 Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 14 17:18:44 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a8468fd
7
8 sci-libs/votca-tools: moved to gx86
9
10 sci-libs/votca-tools/metadata.xml | 12 ------
11 sci-libs/votca-tools/votca-tools-9999.ebuild | 60 ----------------------------
12 2 files changed, 72 deletions(-)
13
14 diff --git a/sci-libs/votca-tools/metadata.xml b/sci-libs/votca-tools/metadata.xml
15 deleted file mode 100644
16 index 6f0f3dc..0000000
17 --- a/sci-libs/votca-tools/metadata.xml
18 +++ /dev/null
19 @@ -1,12 +0,0 @@
20 -<?xml version="1.0" encoding="UTF-8"?>
21 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
22 -<pkgmetadata>
23 - <maintainer type="person">
24 - <email>ottxor@g.o</email>
25 - <name>Christoph Junghans</name>
26 - </maintainer>
27 -<maintainer type="project">
28 - <email>sci-chemistry@g.o</email>
29 - <name>Gentoo Chemistry Project</name>
30 - </maintainer>
31 -</pkgmetadata>
32
33 diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
34 deleted file mode 100644
35 index 6a9b5be..0000000
36 --- a/sci-libs/votca-tools/votca-tools-9999.ebuild
37 +++ /dev/null
38 @@ -1,60 +0,0 @@
39 -# Copyright 1999-2015 Gentoo Foundation
40 -# Distributed under the terms of the GNU General Public License v2
41 -# $Id$
42 -
43 -EAPI=5
44 -
45 -CMAKE_MAKEFILE_GENERATOR="ninja"
46 -
47 -inherit cmake-utils eutils multilib
48 -
49 -if [ "${PV}" != "9999" ]; then
50 - SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 - KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-macos"
52 - S="${WORKDIR}/${P#votca-}"
53 -else
54 - inherit git-r3
55 - EGIT_REPO_URI="git://github.com/${PN/-//}.git https://github.com/${PN/-//}.git"
56 - KEYWORDS=""
57 -fi
58 -
59 -DESCRIPTION="Votca tools library"
60 -HOMEPAGE="http://www.votca.org"
61 -
62 -LICENSE="Apache-2.0"
63 -SLOT="0"
64 -IUSE="doc +fftw +gsl sqlite"
65 -
66 -RDEPEND="
67 - dev-libs/boost:=
68 - dev-libs/expat
69 - fftw? ( sci-libs/fftw:3.0 )
70 - gsl? ( sci-libs/gsl )
71 - sqlite? ( dev-db/sqlite:3 )"
72 -
73 -DEPEND="${RDEPEND}
74 - doc? ( >=app-doc/doxygen-1.7.6.1[dot] )
75 - >=app-text/txt2tags-2.5
76 - virtual/pkgconfig"
77 -
78 -DOCS=( NOTICE )
79 -
80 -src_configure() {
81 - mycmakeargs=(
82 - $(cmake-utils_use_with gsl GSL)
83 - $(cmake-utils_use_with fftw FFTW)
84 - $(cmake-utils_use_with sqlite SQLITE3)
85 - -DWITH_RC_FILES=OFF
86 - -DLIB=$(get_libdir)
87 - )
88 - cmake-utils_src_configure
89 -}
90 -
91 -src_install() {
92 - cmake-utils_src_install
93 - if use doc; then
94 - cd "${BUILD_DIR}"
95 - cmake-utils_src_make html
96 - dohtml -r share/doc/html/*
97 - fi
98 -}