public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-misc/xplanet: ChangeLog xplanet-1.3.0.ebuild
@ 2012-05-05 20:11 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 5+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-05-05 20:11 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/05/05 20:11:45

  Modified:             ChangeLog
  Added:                xplanet-1.3.0.ebuild
  Log:
  Version bump. Missing virtual/pkgconfig for USE="truetype" and x11-libs/pango. Missing -I/usr/include/netpbm for finding pnm.h (flag-o-matic.eclass).
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.75                 x11-misc/xplanet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	12 Nov 2011 10:47:23 -0000	1.74
+++ ChangeLog	5 May 2012 20:11:44 -0000	1.75
@@ -1,6 +1,13 @@
 # ChangeLog for x11-misc/xplanet
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.74 2011/11/12 10:47:23 jlec Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.75 2012/05/05 20:11:44 ssuominen Exp $
+
+*xplanet-1.3.0 (05 May 2012)
+
+  05 May 2012; Samuli Suominen <ssuominen@gentoo.org> +xplanet-1.3.0.ebuild:
+  Version bump. Missing virtual/pkgconfig for USE="truetype" and
+  x11-libs/pango. Missing -I/usr/include/netpbm for finding pnm.h
+  (flag-o-matic.eclass).
 
   12 Nov 2011; Justin Lecher <jlec@gentoo.org> xplanet-1.2.2.ebuild:
   Corrected slotting for png and tiff and EPAI=4 usage



1.1                  x11-misc/xplanet/xplanet-1.3.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.1&content-type=text/plain

Index: xplanet-1.3.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.1 2012/05/05 20:11:44 ssuominen Exp $

EAPI=4
inherit flag-o-matic

DESCRIPTION="Render images of the earth into the X root window"
HOMEPAGE="http://xplanet.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="gif jpeg png tiff truetype X"

RDEPEND="gif? ( media-libs/giflib )
	jpeg? ( virtual/jpeg )
	png? (
		media-libs/libpng:0
		media-libs/netpbm
		)
	tiff? ( media-libs/tiff:0 )
	truetype? (
		media-libs/freetype:2
		x11-libs/pango
		)
	X? (
		x11-libs/libX11
		x11-libs/libXext
		x11-libs/libXScrnSaver
		x11-libs/libXt
		)"
DEPEND="${RDEPEND}
	truetype? ( virtual/pkgconfig )
	X? (
		x11-proto/scrnsaverproto
		x11-proto/xproto
		)"

DOCS="AUTHORS ChangeLog NEWS README TODO"

src_configure() {
	# econf says 'checking pnm.h presence... no'
	use png && append-cppflags -I/usr/include/netpbm

	local myconf

	use X \
		&& myconf+=" --with-x --with-xscreensaver" \
		|| myconf+=" --with-x=no --with-xscreensaver=no"

	use gif \
		&& myconf+=" --with-gif" \
		|| myconf+=" --with-gif=no"

	use jpeg \
		&& myconf+=" --with-jpeg" \
		|| myconf+=" --with-jpeg=no"

	use tiff \
		&& myconf+=" --with-tiff" \
		|| myconf+=" --with-tiff=no"

	use png \
		&& myconf+=" --with-png --with-pnm" \
		|| myconf+=" --with-png=no --with-pnm=no"

	use truetype \
		&& myconf+=" --with-freetype --with-pango" \
		|| myconf+=" --with-freetype=no --with-pango=no"

	econf \
		--with-cspice=no \
		${myconf}
}






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/xplanet: ChangeLog xplanet-1.3.0.ebuild
@ 2012-06-19 19:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-19 19:53 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/19 19:53:22

  Modified:             ChangeLog xplanet-1.3.0.ebuild
  Log:
  Stable for amd64, wrt bug #422393
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.76                 x11-misc/xplanet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	5 May 2012 20:11:44 -0000	1.75
+++ ChangeLog	19 Jun 2012 19:53:22 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xplanet
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.75 2012/05/05 20:11:44 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.76 2012/06/19 19:53:22 ago Exp $
+
+  19 Jun 2012; Agostino Sarubbo <ago@gentoo.org> xplanet-1.3.0.ebuild:
+  Stable for amd64, wrt bug #422393
 
 *xplanet-1.3.0 (05 May 2012)
 



1.2                  x11-misc/xplanet/xplanet-1.3.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?r1=1.1&r2=1.2

Index: xplanet-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xplanet-1.3.0.ebuild	5 May 2012 20:11:44 -0000	1.1
+++ xplanet-1.3.0.ebuild	19 Jun 2012 19:53:22 -0000	1.2
@@ -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/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.1 2012/05/05 20:11:44 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.2 2012/06/19 19:53:22 ago Exp $
 
 EAPI=4
 inherit flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="gif jpeg png tiff truetype X"
 
 RDEPEND="gif? ( media-libs/giflib )






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/xplanet: ChangeLog xplanet-1.3.0.ebuild
@ 2012-06-20  8:37 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-20  8:37 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/20 08:37:03

  Modified:             ChangeLog xplanet-1.3.0.ebuild
  Log:
  marked x86 per bug 422393
  
  (Portage version: 2.2.0_alpha110/cvs/Linux i686)

Revision  Changes    Path
1.77                 x11-misc/xplanet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	19 Jun 2012 19:53:22 -0000	1.76
+++ ChangeLog	20 Jun 2012 08:37:03 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xplanet
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.76 2012/06/19 19:53:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.77 2012/06/20 08:37:03 jdhore Exp $
+
+  20 Jun 2012; Jeff Horelick <jdhore@gentoo.org> xplanet-1.3.0.ebuild:
+  marked x86 per bug 422393
 
   19 Jun 2012; Agostino Sarubbo <ago@gentoo.org> xplanet-1.3.0.ebuild:
   Stable for amd64, wrt bug #422393



1.3                  x11-misc/xplanet/xplanet-1.3.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?r1=1.2&r2=1.3

Index: xplanet-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xplanet-1.3.0.ebuild	19 Jun 2012 19:53:22 -0000	1.2
+++ xplanet-1.3.0.ebuild	20 Jun 2012 08:37:03 -0000	1.3
@@ -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/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.2 2012/06/19 19:53:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.3 2012/06/20 08:37:03 jdhore Exp $
 
 EAPI=4
 inherit flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="gif jpeg png tiff truetype X"
 
 RDEPEND="gif? ( media-libs/giflib )






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/xplanet: ChangeLog xplanet-1.3.0.ebuild
@ 2012-06-22 15:23 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-06-22 15:23 UTC (permalink / raw
  To: gentoo-commits

ranger      12/06/22 15:23:45

  Modified:             ChangeLog xplanet-1.3.0.ebuild
  Log:
  Marking xplanet-1.3.0 ppc64 for bug 422393
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.78                 x11-misc/xplanet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	20 Jun 2012 08:37:03 -0000	1.77
+++ ChangeLog	22 Jun 2012 15:23:45 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xplanet
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.77 2012/06/20 08:37:03 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.78 2012/06/22 15:23:45 ranger Exp $
+
+  22 Jun 2012; Brent Baude <ranger@gentoo.org> xplanet-1.3.0.ebuild:
+  Marking xplanet-1.3.0 ppc64 for bug 422393
 
   20 Jun 2012; Jeff Horelick <jdhore@gentoo.org> xplanet-1.3.0.ebuild:
   marked x86 per bug 422393



1.4                  x11-misc/xplanet/xplanet-1.3.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild?r1=1.3&r2=1.4

Index: xplanet-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xplanet-1.3.0.ebuild	20 Jun 2012 08:37:03 -0000	1.3
+++ xplanet-1.3.0.ebuild	22 Jun 2012 15:23:45 -0000	1.4
@@ -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/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.3 2012/06/20 08:37:03 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.4 2012/06/22 15:23:45 ranger Exp $
 
 EAPI=4
 inherit flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ppc64 ~sparc x86"
 IUSE="gif jpeg png tiff truetype X"
 
 RDEPEND="gif? ( media-libs/giflib )






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/xplanet: ChangeLog xplanet-1.3.0.ebuild
@ 2012-07-03 16:42 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-07-03 16:42 UTC (permalink / raw
  To: gentoo-commits

ranger      12/07/03 16:42:53

  Modified:             ChangeLog xplanet-1.3.0.ebuild
  Log:
  Marking xplanet-1.3.0 ppc for bug 422393
  
  (Portage version: 2.1.10.65/cvs/Linux ppc64)

Revision  Changes    Path
1.79                 x11-misc/xplanet/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xplanet/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	22 Jun 2012 15:23:45 -0000	1.78
+++ ChangeLog	3 Jul 2012 16:42:53 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xplanet
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.78 2012/06/22 15:23:45 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/ChangeLog,v 1.79 2012/07/03 16:42:53 ranger Exp $
+
+  03 Jul 2012; Brent Baude <ranger@gentoo.org> xplanet-1.3.0.ebuild:
+  Marking xplanet-1.3.0 ppc for bug 422393
 
   22 Jun 2012; Brent Baude <ranger@gentoo.org> xplanet-1.3.0.ebuild:
   Marking xplanet-1.3.0 ppc64 for bug 422393



1.5                  x11-misc/xplanet/xplanet-1.3.0.ebuild

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

Index: xplanet-1.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xplanet-1.3.0.ebuild	22 Jun 2012 15:23:45 -0000	1.4
+++ xplanet-1.3.0.ebuild	3 Jul 2012 16:42:53 -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/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.4 2012/06/22 15:23:45 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xplanet/xplanet-1.3.0.ebuild,v 1.5 2012/07/03 16:42:53 ranger Exp $
 
 EAPI=4
 inherit flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86"
 IUSE="gif jpeg png tiff truetype X"
 
 RDEPEND="gif? ( media-libs/giflib )






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

end of thread, other threads:[~2012-07-03 16:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-19 19:53 [gentoo-commits] gentoo-x86 commit in x11-misc/xplanet: ChangeLog xplanet-1.3.0.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-03 16:42 Brent Baude (ranger)
2012-06-22 15:23 Brent Baude (ranger)
2012-06-20  8:37 Jeff Horelick (jdhore)
2012-05-05 20:11 Samuli Suominen (ssuominen)

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