* [gentoo-commits] gentoo-x86 commit in sci-mathematics/cgal: cgal-4.1.ebuild metadata.xml ChangeLog
@ 2012-12-12 20:08 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; only message in thread
From: Sebastien Fabbro (bicatali) @ 2012-12-12 20:08 UTC (permalink / raw
To: gentoo-commits
bicatali 12/12/12 20:08:28
Modified: metadata.xml ChangeLog
Added: cgal-4.1.ebuild
Log:
Version bump
(Portage version: 2.2.01.21418-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Revision Changes Path
1.5 sci-mathematics/cgal/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/metadata.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/metadata.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/metadata.xml?r1=1.4&r2=1.5
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/cgal/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml 9 Nov 2012 14:01:53 -0000 1.4
+++ metadata.xml 12 Dec 2012 20:08:28 -0000 1.5
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>sci</herd>
- <longdescription lang="en">
+<herd>sci</herd>
+<longdescription lang="en">
The Computational Geometry Algorithms Library is a collaborative
open source library containing:
* the Kernel with geometric primitives such as points, vectors,
@@ -15,7 +15,7 @@
* the Support Library which offers interfaces to other packages,
e.g., for visualisation, and I/O, and other support facilities.
</longdescription>
- <use>
- <flag name="mpfi">Enable support for multiple recision interval arithmetic via <pkg>sci-mathematics/mpfi</pkg></flag>
- </use>
+<use>
+ <flag name="mpfi">Enable support for multiple recision interval arithmetic via <pkg>sci-mathematics/mpfi</pkg></flag>
+</use>
</pkgmetadata>
1.20 sci-mathematics/cgal/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/cgal/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 9 Nov 2012 14:01:53 -0000 1.19
+++ ChangeLog 12 Dec 2012 20:08:28 -0000 1.20
@@ -1,6 +1,12 @@
# ChangeLog for sci-mathematics/cgal
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/cgal/ChangeLog,v 1.19 2012/11/09 14:01:53 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/cgal/ChangeLog,v 1.20 2012/12/12 20:08:28 bicatali Exp $
+
+*cgal-4.1 (12 Dec 2012)
+
+ 12 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> +cgal-4.1.ebuild,
+ metadata.xml:
+ Version bump
09 Nov 2012; Justin Lecher <jlec@gentoo.org> cgal-4.0.2.ebuild, metadata.xml:
Addmissing dep on virtual/glu, #438504
1.1 sci-mathematics/cgal/cgal-4.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/cgal-4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/cgal/cgal-4.1.ebuild?rev=1.1&content-type=text/plain
Index: cgal-4.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/cgal/cgal-4.1.ebuild,v 1.1 2012/12/12 20:08:28 bicatali Exp $
EAPI=4
CMAKE_BUILD_TYPE=Release
inherit base multilib cmake-utils
MY_P=CGAL-${PV}
PID=31639
DPID=31647
DESCRIPTION="C++ library for geometric algorithms and data structures"
HOMEPAGE="http://www.cgal.org/ https://gforge.inria.fr/projects/cgal/"
SRC_URI="
http://gforge.inria.fr/frs/download.php/${PID}/${MY_P}.tar.xz
doc? ( http://gforge.inria.fr/frs/download.php/${DPID}/${MY_P}-doc_html.tar.xz )"
LICENSE="LGPL-3 GPL-3 Boost-1.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples +gmp mpfi qt4"
RDEPEND="
dev-libs/boost
dev-libs/mpfr
sys-libs/zlib
x11-libs/libX11
virtual/glu
virtual/opengl
gmp? ( dev-libs/gmp[cxx] )
qt4? (
x11-libs/qt-gui:4
x11-libs/qt-opengl:4 )
mpfi? ( sci-libs/mpfi )"
DEPEND="${RDEPEND}
app-arch/xz-utils"
S="${WORKDIR}/${MY_P}"
DOCS="AUTHORS CHANGES* README"
src_prepare() {
base_src_prepare
sed \
-e '/install(FILES AUTHORS/d' \
-i CMakeLists.txt || die
}
src_configure() {
local mycmakeargs+=(
-DCGAL_INSTALL_LIB_DIR=$(get_libdir)
-DWITH_CGAL_Qt3=OFF
-DWITH_LEDA=OFF
$(cmake-utils_use_with gmp)
$(cmake-utils_use_with gmp GMPXX)
$(cmake-utils_use_with qt4 CGAL_Qt4)
$(cmake-utils_use_with mpfi)
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
use doc && dohtml -r "${WORKDIR}"/doc_html/cgal_manual/*
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples demo
fi
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-12-12 20:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-12 20:08 [gentoo-commits] gentoo-x86 commit in sci-mathematics/cgal: cgal-4.1.ebuild metadata.xml ChangeLog Sebastien Fabbro (bicatali)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox