hasufell 14/10/10 20:18:47 Modified: ChangeLog Added: osgearth-2.6.ebuild Log: version bump (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path 1.5 sci-geosciences/osgearth/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osgearth/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osgearth/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osgearth/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/osgearth/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 22 Nov 2013 13:36:54 -0000 1.4 +++ ChangeLog 10 Oct 2014 20:18:46 -0000 1.5 @@ -1,6 +1,13 @@ # ChangeLog for sci-geosciences/osgearth -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osgearth/ChangeLog,v 1.4 2013/11/22 13:36:54 hasufell Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osgearth/ChangeLog,v 1.5 2014/10/10 20:18:46 hasufell Exp $ + +*osgearth-2.6 (10 Oct 2014) + + 10 Oct 2014; Julian Ospald <hasuf...@gentoo.org> +osgearth-2.6.ebuild, + +files/osgearth-2.6-cmake-options.patch, + +files/osgearth-2.6-disable-qt5.patch: + version bump *osgearth-2.5 (22 Nov 2013) 1.1 sci-geosciences/osgearth/osgearth-2.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osgearth/osgearth-2.6.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/osgearth/osgearth-2.6.ebuild?rev=1.1&content-type=text/plain Index: osgearth-2.6.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osgearth/osgearth-2.6.ebuild,v 1.1 2014/10/10 20:18:46 hasufell Exp $ EAPI=5 inherit cmake-utils DESCRIPTION="Dynamic map generation toolkit for OpenSceneGraph" HOMEPAGE="http://osgearth.org/" SRC_URI="https://github.com/gwaldron/osgearth/archive/${P}.tar.gz" LICENSE="LGPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc qt4" RDEPEND=" dev-db/sqlite:3 >=dev-games/openscenegraph-3.2.1[curl,qt4?] dev-libs/tinyxml net-misc/curl sci-libs/gdal sci-libs/geos sys-libs/zlib[minizip] virtual/opengl x11-libs/libX11 qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 )" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( dev-python/sphinx )" S=${WORKDIR}/${PN}-${P} PATCHES=( "${FILESDIR}"/${P}-{disable-qt5,cmake-options}.patch ) src_configure() { # V8 disabled due to # https://github.com/gwaldron/osgearth/issues/333 local mycmakeargs=( -DWITH_EXTERNAL_TINYXML=ON $(cmake-utils_use qt4 OSGEARTH_USE_QT) -DOSGEARTH_USE_V8=OFF -DOSGEARTH_USE_JAVASCRIPTCORE=OFF -DOSGEARTH_USE_LIBNOISE=OFF ) cmake-utils_src_configure } src_compile() { cmake-utils_src_compile if use doc ; then emake -C "${S}"/docs man html info fi } src_install() { cmake-utils_src_install if use doc ; then dohtml -r "${S}"/docs/build/html/* doman "${S}"/docs/build/man/* doinfo "${S}"/docs/build/texinfo/*.info* fi }