public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-gfx/openmesh: ChangeLog openmesh-2.0_rc5.ebuild
@ 2010-06-16 21:46 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Bronder (jsbronder) @ 2010-06-16 21:46 UTC (permalink / raw
  To: gentoo-commits

jsbronder    10/06/16 21:46:30

  Modified:             ChangeLog
  Added:                openmesh-2.0_rc5.ebuild
  Log:
  Bump media-gfx/openmesh-2.0_rc5
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.16                 media-gfx/openmesh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	25 Jun 2009 18:04:10 -0000	1.15
+++ ChangeLog	16 Jun 2010 21:46:30 -0000	1.16
@@ -1,6 +1,12 @@
 # ChangeLog for media-gfx/openmesh
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v 1.15 2009/06/25 18:04:10 yngwin Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v 1.16 2010/06/16 21:46:30 jsbronder Exp $
+
+*openmesh-2.0_rc5 (16 Jun 2010)
+
+  16 Jun 2010; Justin Bronder <jsbronder@gentoo.org>
+  +openmesh-2.0_rc5.ebuild:
+  Bump media-gfx/openmesh-2.0_rc5
 
   25 Jun 2009; Ben de Groot <yngwin@gentoo.org> openmesh-1.0.0.ebuild,
   -openmesh-1.9.5.ebuild, -openmesh-1.9.6-r1.ebuild,



1.1                  media-gfx/openmesh/openmesh-2.0_rc5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild?rev=1.1&content-type=text/plain

Index: openmesh-2.0_rc5.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild,v 1.1 2010/06/16 21:46:30 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 debug static"

RDEPEND="qt4? ( x11-libs/qt-gui:4
	x11-libs/qt-opengl:4
	virtual/glut )"
DEPEND="${RDEPEND}"

src_prepare() {
	# Fix libdir and remove rpath.
	cd "${S}"
	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
}

src_configure() {
	if use debug; then
		CMAKE_BUILD_TYPE=Debug
	else
		CMAKE_BUILD_TYPE=Release
		append-cppflags -DNDEBUG
	fi
	mycmakeargs="$(cmake-utils_use_build "qt4" "APPS")"
	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install

	if ! use static; then
		# No way to set this in the build system as of 2.0_rc5
		rm -f "${D}"/usr/$(get_libdir)/*.a \
			|| die "Failed to remove static libraries."
	fi
	cd "${S}"
	dodoc LICENSE/* README CHANGELOG || die
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-gfx/openmesh: ChangeLog openmesh-2.0_rc5.ebuild
@ 2011-04-05 14:18 Justin Bronder (jsbronder)
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Bronder (jsbronder) @ 2011-04-05 14:18 UTC (permalink / raw
  To: gentoo-commits

jsbronder    11/04/05 14:18:20

  Modified:             ChangeLog openmesh-2.0_rc5.ebuild
  Log:
  Use correct flag for installing static libraries (#361661).
  
  (Portage version: 2.1.9.44/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 media-gfx/openmesh/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	16 Sep 2010 17:10:08 -0000	1.17
+++ ChangeLog	5 Apr 2011 14:18:20 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for media-gfx/openmesh
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v 1.17 2010/09/16 17:10:08 scarabeus Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/ChangeLog,v 1.18 2011/04/05 14:18:20 jsbronder Exp $
+
+  05 Apr 2011; Justin Bronder <jsbronder@gentoo.org> openmesh-2.0_rc5.ebuild:
+  Use correct flag for installing static libraries (#361661).
 
   16 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org>
   openmesh-1.9.6-r2.ebuild, openmesh-2.0_rc5.ebuild:



1.3                  media-gfx/openmesh/openmesh-2.0_rc5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild?r1=1.2&r2=1.3

Index: openmesh-2.0_rc5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openmesh-2.0_rc5.ebuild	16 Sep 2010 17:10:08 -0000	1.2
+++ openmesh-2.0_rc5.ebuild	5 Apr 2011 14:18:20 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild,v 1.2 2010/09/16 17:10:08 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/openmesh/openmesh-2.0_rc5.ebuild,v 1.3 2011/04/05 14:18:20 jsbronder Exp $
 
 EAPI="3"
 inherit eutils cmake-utils
@@ -17,7 +17,7 @@
 LICENSE="LGPL-3 as-is"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="qt4 debug static"
+IUSE="qt4 debug static-libs"
 
 RDEPEND="qt4? ( x11-libs/qt-gui:4
 	x11-libs/qt-opengl:4
@@ -50,7 +50,7 @@
 src_install() {
 	cmake-utils_src_install
 
-	if ! use static; then
+	if ! use static-libs; then
 		# No way to set this in the build system as of 2.0_rc5
 		rm -f "${D}"/usr/$(get_libdir)/*.a \
 			|| die "Failed to remove static libraries."






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-04-05 14:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-05 14:18 [gentoo-commits] gentoo-x86 commit in media-gfx/openmesh: ChangeLog openmesh-2.0_rc5.ebuild Justin Bronder (jsbronder)
  -- strict thread matches above, loose matches on Subject: below --
2010-06-16 21:46 Justin Bronder (jsbronder)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox