diff options
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/openmesh/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/openmesh/openmesh-2.2.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/media-gfx/openmesh/ChangeLog b/media-gfx/openmesh/ChangeLog index f6f44c60513f..47f85f9f6b4b 100644 --- a/media-gfx/openmesh/ChangeLog +++ b/media-gfx/openmesh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/openmesh # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v 1.22 2012/06/08 02:55:55 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v 1.23 2012/06/28 19:35:06 jsbronder Exp $ + +*openmesh-2.2 (28 Jun 2012) + + 28 Jun 2012; Justin Bronder <jsbronder@gentoo.org> +openmesh-2.2.ebuild: + bump to 2.2 08 Jun 2012; Zac Medico <zmedico@gentoo.org> openmesh-2.0_rc5.ebuild: inherit flag-o-matic for append-cppflags diff --git a/media-gfx/openmesh/openmesh-2.2.ebuild b/media-gfx/openmesh/openmesh-2.2.ebuild new file mode 100644 index 000000000000..ed9d696df9b1 --- /dev/null +++ b/media-gfx/openmesh/openmesh-2.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/openmesh-2.2.ebuild,v 1.1 2012/06/28 19:35:06 jsbronder Exp $ + +EAPI="3" +inherit eutils cmake-utils + +MY_PN="OpenMesh" +MY_PV="${PV/_rc/-RC}" +S="${WORKDIR}/${MY_PN}-${MY_PV}" + +DESCRIPTION="A generic and efficient data structure for representing and manipulating polygonal meshes" +HOMEPAGE="http://www.openmesh.org/" +SRC_URI="http://openmesh.org/fileadmin/${PN}-files/${MY_PV/-RC/RC}/${MY_PN}-${MY_PV}.tar.bz2" + +# See COPYING.EXCEPTIONS +LICENSE="LGPL-3 as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="qt4 static-libs" + +RDEPEND="qt4? ( x11-libs/qt-gui:4 + x11-libs/qt-opengl:4 + media-libs/freeglut )" +DEPEND="${RDEPEND}" + +src_prepare() { + # Fix libdir and remove rpath. + sed -i \ + -e "s|\(set (ACG_PROJECT_LIBDIR \"\).*|\1$(get_libdir)/\")|" \ + -e "s|\(set (ACG_PROJECT_PLUGINDIR \"\)lib\(.*\)|\1$(get_libdir)\2|" \ + -e "s|\(BUILD_WITH_INSTALL_RPATH \)1|\1 0|" \ + -e "s|\(SKIP_BUILD_RPATH\) 0|\1 1|" \ + -e '/^ *INSTALL_RPATH/d' \ + cmake/ACGCommon.cmake || die + + if ! use static-libs; then + sed -i "s|\(SHARED\)ANDSTATIC|\1|" \ + src/${MY_PN}/{Core,Tools}/CMakeLists.txt || die + sed -i '/OpenMeshCoreStatic/d' \ + src/${MY_PN}/Tools/CMakeLists.txt || die + fi +} + +src_configure() { + mycmakeargs="$(cmake-utils_use_build "qt4" "APPS")" + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodoc LICENSE/* README CHANGELOG || die +} |