public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/sg: ChangeLog sg-1.5.ebuild
@ 2011-04-16  6:50 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2011-04-16  6:50 UTC (permalink / raw
  To: gentoo-commits

jlec        11/04/16 06:50:02

  Modified:             ChangeLog
  Added:                sg-1.5.ebuild
  Log:
  Version Bump
  
  (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-libs/sg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	24 Nov 2010 08:23:56 -0000	1.3
+++ ChangeLog	16 Apr 2011 06:50:02 -0000	1.4
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/sg
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.3 2010/11/24 08:23:56 jlec Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.4 2011/04/16 06:50:02 jlec Exp $
+
+*sg-1.5 (16 Apr 2011)
+
+  16 Apr 2011; Justin Lecher <jlec@gentoo.org> +sg-1.5.ebuild:
+  Version Bump
 
   24 Nov 2010; Justin Lecher <jlec@gentoo.org> sg-1.4.ebuild:
   Fixed dep for opengl to force motif support, thanks Jaroslaw Kalinowski



1.1                  media-libs/sg/sg-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.1&content-type=text/plain

Index: sg-1.5.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.1 2011/04/16 06:50:02 jlec Exp $

EAPI="3"

inherit autotools eutils multilib

DESCRIPTION="Socket Graphics tool for displaying polygons"
HOMEPAGE="http://fetk.org/codes/sg/index.html"
SRC_URI="http://www.fetk.org/codes/download/${P}.tar.gz"

SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
LICENSE="GPL-2"
IUSE="doc opengl"

RDEPEND="
	dev-libs/maloc
	x11-libs/openmotif
	opengl? (
		|| ( media-libs/mesa[motif] media-libs/opengl-apple )
	)"
DEPEND="
	${RDEPEND}
	doc? (
		media-gfx/graphviz
		app-doc/doxygen )"

S="${WORKDIR}"/${PN}

src_prepare() {
	rm src/{gl,glu,glw} -rf
	epatch \
		"${FILESDIR}"/1.4-opengl.patch \
		"${FILESDIR}"/1.4-doc.patch
	eautoreconf
}

src_configure() {
	local sg_include
	local sg_lib
	local myconf

	sg_include="${EPREFIX}"/usr/include
	sg_lib="${EPREFIX}"/usr/$(get_libdir)
	export FETK_LIBRARY="${sg_lib}"
	export FETK_MOTIF_LIBRARY="${sg_lib}"
	export FETK_GL_LIBRARY="${sg_lib}"
	export FETK_GLU_LIBRARY="${sg_lib}"
	export FETK_GLW_LIBRARY="${sg_lib}"
	export FETK_INCLUDE="${sg_include}"
	export FETK_GLW_INCLUDE="${sg_include}"
	export FETK_GLU_INCLUDE="${sg_include}"
	export FETK_GL_INCLUDE="${sg_include}"/GL
	export FETK_MOTIF_INCLUDE="${sg_include}"

	use doc || myconf="${myconf} --with-doxygen= --with-dot="

	use opengl && myconf="${myconf} --enable-glforce --enable-gluforce --enable-glwforce"

	econf \
		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
		--disable-triplet \
		--enable-shared \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die
}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/sg: ChangeLog sg-1.5.ebuild
@ 2012-05-02 10:33 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2012-05-02 10:33 UTC (permalink / raw
  To: gentoo-commits

jlec        12/05/02 10:33:43

  Modified:             ChangeLog sg-1.5.ebuild
  Log:
  media-libs/sg: Handle static libs
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  media-libs/sg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	13 Feb 2012 20:33:25 -0000	1.6
+++ ChangeLog	2 May 2012 10:33:43 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.6 2012/02/13 20:33:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.7 2012/05/02 10:33:43 jlec Exp $
+
+  02 May 2012; Justin Lecher <jlec@gentoo.org> sg-1.5.ebuild:
+  Handle static libs
 
   13 Feb 2012; Justin Lecher <jlec@gentoo.org> sg-1.4.ebuild, sg-1.5.ebuild:
   Add alternative to mase[motif] -> libGLw



1.4                  media-libs/sg/sg-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?r1=1.3&r2=1.4

Index: sg-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sg-1.5.ebuild	13 Feb 2012 20:33:25 -0000	1.3
+++ sg-1.5.ebuild	2 May 2012 10:33:43 -0000	1.4
@@ -1,10 +1,12 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.3 2012/02/13 20:33:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.4 2012/05/02 10:33:43 jlec Exp $
 
-EAPI="3"
+EAPI=4
 
-inherit autotools eutils multilib
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools-utils multilib
 
 DESCRIPTION="Socket Graphics tool for displaying polygons"
 HOMEPAGE="http://fetk.org/codes/sg/index.html"
@@ -13,7 +15,7 @@
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 LICENSE="GPL-2"
-IUSE="doc opengl"
+IUSE="doc opengl static-libs"
 
 RDEPEND="
 	dev-libs/maloc
@@ -33,18 +35,20 @@
 
 S="${WORKDIR}"/${PN}
 
+PATCHES=(
+	"${FILESDIR}"/1.4-opengl.patch
+	"${FILESDIR}"/1.4-doc.patch
+	)
+
 src_prepare() {
-	rm src/{gl,glu,glw} -rf
-	epatch \
-		"${FILESDIR}"/1.4-opengl.patch \
-		"${FILESDIR}"/1.4-doc.patch
-	eautoreconf
+	rm src/{gl,glu,glw} -rf || die
+	autotools-utils_src_prepare
 }
 
 src_configure() {
 	local sg_include
 	local sg_lib
-	local myconf
+	local myeconfargs
 
 	sg_include="${EPREFIX}"/usr/include
 	sg_lib="${EPREFIX}"/usr/$(get_libdir)
@@ -59,17 +63,13 @@
 	export FETK_GL_INCLUDE="${sg_include}"/GL
 	export FETK_MOTIF_INCLUDE="${sg_include}"
 
-	use doc || myconf="${myconf} --with-doxygen= --with-dot="
+	use doc || myeconfargs+=( --with-doxygen= --with-dot= )
 
-	use opengl && myconf="${myconf} --enable-glforce --enable-gluforce --enable-glwforce"
-
-	econf \
-		--docdir="${EPREFIX}"/usr/share/doc/${PF} \
-		--disable-triplet \
-		--enable-shared \
-		${myconf}
-}
+	use opengl && myeconfargs+=( --enable-glforce --enable-gluforce --enable-glwforce )
 
-src_install() {
-	emake DESTDIR="${D}" install || die
+	myeconfargs+=(
+		--docdir="${EPREFIX}"/usr/share/doc/${PF}
+		--disable-triplet
+	)
+	autotools-utils_src_configure
 }






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

* [gentoo-commits] gentoo-x86 commit in media-libs/sg: ChangeLog sg-1.5.ebuild
@ 2012-06-19 10:27 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2012-06-19 10:27 UTC (permalink / raw
  To: gentoo-commits

jlec        12/06/19 10:27:13

  Modified:             ChangeLog sg-1.5.ebuild
  Log:
  media-libs/sg: Always build complete X support, #421807
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-libs/sg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	2 May 2012 10:33:43 -0000	1.7
+++ ChangeLog	19 Jun 2012 10:27:13 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.7 2012/05/02 10:33:43 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.8 2012/06/19 10:27:13 jlec Exp $
+
+  19 Jun 2012; Justin Lecher <jlec@gentoo.org> sg-1.5.ebuild:
+  Always build complete X support, #421807
 
   02 May 2012; Justin Lecher <jlec@gentoo.org> sg-1.5.ebuild:
   Handle static libs



1.5                  media-libs/sg/sg-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?r1=1.4&r2=1.5

Index: sg-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sg-1.5.ebuild	2 May 2012 10:33:43 -0000	1.4
+++ sg-1.5.ebuild	19 Jun 2012 10:27:13 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.4 2012/05/02 10:33:43 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.5 2012/06/19 10:27:13 jlec Exp $
 
 EAPI=4
 
@@ -15,18 +15,16 @@
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 LICENSE="GPL-2"
-IUSE="doc opengl static-libs"
+IUSE="doc static-libs"
 
 RDEPEND="
 	dev-libs/maloc
 	x11-libs/libXaw
 	x11-libs/openmotif
-	opengl? (
-		|| (
-			<media-libs/mesa-8[motif]
-			( media-libs/mesa x11-libs/libGLw )
-			media-libs/opengl-apple )
-	)"
+	|| (
+		<media-libs/mesa-8[motif]
+		( media-libs/mesa x11-libs/libGLw )
+		media-libs/opengl-apple )"
 DEPEND="
 	${RDEPEND}
 	doc? (
@@ -65,7 +63,7 @@
 
 	use doc || myeconfargs+=( --with-doxygen= --with-dot= )
 
-	use opengl && myeconfargs+=( --enable-glforce --enable-gluforce --enable-glwforce )
+	myeconfargs+=( --enable-glforce --enable-gluforce --enable-glwforce )
 
 	myeconfargs+=(
 		--docdir="${EPREFIX}"/usr/share/doc/${PF}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/sg: ChangeLog sg-1.5.ebuild
@ 2015-04-19  9:35 Pacho Ramos (pacho)
  0 siblings, 0 replies; 4+ messages in thread
From: Pacho Ramos (pacho) @ 2015-04-19  9:35 UTC (permalink / raw
  To: gentoo-commits

pacho       15/04/19 09:35:39

  Modified:             ChangeLog sg-1.5.ebuild
  Log:
  x86 stable wrt bug #534670
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.14                 media-libs/sg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	31 Jan 2015 13:15:27 -0000	1.13
+++ ChangeLog	19 Apr 2015 09:35:39 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/sg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.13 2015/01/31 13:15:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/ChangeLog,v 1.14 2015/04/19 09:35:39 pacho Exp $
+
+  19 Apr 2015; Pacho Ramos <pacho@gentoo.org> sg-1.5.ebuild:
+  x86 stable wrt bug #534670
 
   31 Jan 2015; Agostino Sarubbo <ago@gentoo.org> sg-1.5.ebuild:
   Stable for amd64, wrt bug #534670



1.11                 media-libs/sg/sg-1.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sg/sg-1.5.ebuild?r1=1.10&r2=1.11

Index: sg-1.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sg-1.5.ebuild	31 Jan 2015 13:15:27 -0000	1.10
+++ sg-1.5.ebuild	19 Apr 2015 09:35:39 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.10 2015/01/31 13:15:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/sg/sg-1.5.ebuild,v 1.11 2015/04/19 09:35:39 pacho Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI="http://www.fetk.org/codes/download/${P}.tar.gz"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 LICENSE="GPL-2"
 IUSE="doc static-libs"
 





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

end of thread, other threads:[~2015-04-19  9:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-19  9:35 [gentoo-commits] gentoo-x86 commit in media-libs/sg: ChangeLog sg-1.5.ebuild Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-19 10:27 Justin Lecher (jlec)
2012-05-02 10:33 Justin Lecher (jlec)
2011-04-16  6:50 Justin Lecher (jlec)

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