* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: metadata.xml ChangeLog votca-csg-1.2.ebuild
@ 2011-06-17 8:57 Christoph Junghans (ottxor)
0 siblings, 0 replies; only message in thread
From: Christoph Junghans (ottxor) @ 2011-06-17 8:57 UTC (permalink / raw
To: gentoo-commits
ottxor 11/06/17 08:57:14
Modified: metadata.xml ChangeLog
Added: votca-csg-1.2.ebuild
Log:
[sci-chemistry/votca-csg] version bump
(Portage version: 2.1.9.42/cvs/Linux i686)
Revision Changes Path
1.3 sci-chemistry/votca-csg/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/metadata.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/metadata.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/metadata.xml?r1=1.2&r2=1.3
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml 7 Mar 2011 22:15:13 -0000 1.2
+++ metadata.xml 17 Jun 2011 08:57:14 -0000 1.3
@@ -7,6 +7,7 @@
<name>Christoph Junghans</name>
</maintainer>
<use>
+ <flag name='boost'>Compile against external boost headers (dev-libs/boost)</flag>
<flag name='gromacs'>Add support for file formats from <pkg>sci-chemistry/gromacs</pkg></flag>
</use>
</pkgmetadata>
1.5 sci-chemistry/votca-csg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 4 Apr 2011 20:05:31 -0000 1.4
+++ ChangeLog 17 Jun 2011 08:57:14 -0000 1.5
@@ -1,6 +1,12 @@
# ChangeLog for sci-chemistry/votca-csg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.4 2011/04/04 20:05:31 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.5 2011/06/17 08:57:14 ottxor Exp $
+
+*votca-csg-1.2 (17 Jun 2011)
+
+ 17 Jun 2011; Christoph Junghans <ottxor@gentoo.org> +votca-csg-1.2.ebuild,
+ metadata.xml:
+ Version bump
*votca-csg-1.1.2 (04 Apr 2011)
1.1 sci-chemistry/votca-csg/votca-csg-1.2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.ebuild?rev=1.1&content-type=text/plain
Index: votca-csg-1.2.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.ebuild,v 1.1 2011/06/17 08:57:14 ottxor Exp $
EAPI="3"
inherit cmake-utils bash-completion
MANUAL_PV=1.2
if [ "${PV}" != "9999" ]; then
SRC_URI="http://votca.googlecode.com/files/${PF}.tar.gz
doc? ( http://votca.googlecode.com/files/votca-manual-${MANUAL_PV}.pdf )"
RESTRICT="primaryuri"
else
SRC_URI=""
inherit mercurial
EHG_REPO_URI="https://csg.votca.googlecode.com/hg"
EHG_REVISION="default"
S="${WORKDIR}/${EHG_REPO_URI##*/}"
PDEPEND="doc? ( =app-doc/votca-csg-manual-${PV} )"
fi
DESCRIPTION="Votca coarse-graining engine"
HOMEPAGE="http://www.votca.org"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="-boost doc +gromacs"
RDEPEND="=sci-libs/votca-tools-${PV}[boost=]
gromacs? ( sci-chemistry/gromacs )
dev-lang/perl
app-shells/bash"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen[-nodot] )
>=app-text/txt2tags-2.5
dev-util/pkgconfig"
src_configure() {
local extra="-DWITH_GMX_DEVEL=OFF"
use gromacs && has_version =sci-chemistry/gromacs-9999 && \
extra="-DWITH_GMX_DEVEL=ON"
mycmakeargs=(
$(cmake-utils_use boost EXTERNAL_BOOST)
$(cmake-utils_use_with gromacs GMX)
${extra}
-DWITH_RC_FILES=OFF
)
cmake-utils_src_configure || die
}
src_install() {
DOCS=(README NOTICE ${CMAKE_BUILD_DIR}/CHANGELOG)
dobashcompletion scripts/csg-completion.bash ${PN} || die
cmake-utils_src_install || die
if use doc; then
if [ -n "${PV##*9999}" ]; then
dodoc "${DISTDIR}/votca-manual-${MANUAL_PV}.pdf" || die
fi
cd "${CMAKE_BUILD_DIR}" || die
cd share/doc || die
doxygen || die
dohtml -r html/* || die
fi
}
pkg_postinst() {
elog
elog "Please read and cite:"
elog "VOTCA, J. Chem. Theory Comput. 5, 3211 (2009). "
elog "http://dx.doi.org/10.1021/ct900369w"
elog
bash-completion_pkg_postinst
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-06-17 8:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-17 8:57 [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: metadata.xml ChangeLog votca-csg-1.2.ebuild Christoph Junghans (ottxor)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox