public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.3.0.ebuild
@ 2012-05-14 16:45 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-05-14 16:45 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/05/14 16:45:24

  Modified:             ChangeLog wbar-2.3.0.ebuild
  Log:
  fix deps wrt #415945, append -Wno-error flag
  
  (Portage version: 2.2.0_alpha104/cvs/Linux x86_64)

Revision  Changes    Path
1.17                 x11-misc/wbar/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	14 May 2012 13:27:01 -0000	1.16
+++ ChangeLog	14 May 2012 16:45:24 -0000	1.17
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/wbar
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.16 2012/05/14 13:27:01 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.17 2012/05/14 16:45:24 hasufell Exp $
+
+  14 May 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild,
+  +files/wbar-2.3.0-cfg.patch:
+  fix deps wrt #415945, append -Wno-error flag
 
 *wbar-2.3.0 (14 May 2012)
 



1.2                  x11-misc/wbar/wbar-2.3.0.ebuild

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

Index: wbar-2.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wbar-2.3.0.ebuild	14 May 2012 13:27:01 -0000	1.1
+++ wbar-2.3.0.ebuild	14 May 2012 16:45:24 -0000	1.2
@@ -1,12 +1,14 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v 1.1 2012/05/14 13:27:01 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v 1.2 2012/05/14 16:45:24 hasufell Exp $
 
 EAPI=4
 
+inherit eutils flag-o-matic
+
 DESCRIPTION="A fast, lightweight quick launch bar"
 HOMEPAGE="http://code.google.com/p/wbar/"
-SRC_URI="http://wbar.googlecode.com/files/${PN}_${PV}.orig.tar.gz"
+SRC_URI="http://${PN}.googlecode.com/files/${PN}_${PV}.orig.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -15,30 +17,21 @@
 
 RDEPEND="media-libs/imlib2[X]
 	x11-libs/libX11
-	gtk? ( dev-libs/atk
-		dev-libs/glib:2
-		dev-libs/libxml2
-		gnome-base/libglade
-		media-libs/fontconfig
-		media-libs/freetype
-		media-libs/libpng
-		x11-libs/cairo
-		x11-libs/gdk-pixbuf
+	gtk? ( gnome-base/libglade
+		media-libs/freetype:2
+		x11-libs/gdk-pixbuf:2
 		x11-libs/gtk+:2 )"
 DEPEND="${RDEPEND}
 	dev-util/intltool
+	sys-devel/gettext
 	virtual/pkgconfig"
 
 src_prepare() {
-	if ! use gtk; then
-		# Remove wbar-config from default cfg.
-		sed \
-			-e '5,8d' \
-			-i etc/wbar.cfg.in || die
-	fi
+	use gtk || epatch "${FILESDIR}"/${P}-cfg.patch
 }
 
 src_configure() {
+	append-flags -Wno-error
 	econf \
 		$(use_enable gtk wbar-config)
 }






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.3.0.ebuild
@ 2012-05-14 16:51 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-05-14 16:51 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/05/14 16:51:14

  Modified:             ChangeLog wbar-2.3.0.ebuild
  Log:
  missed sys-process/procps virtual/init
  
  (Portage version: 2.2.0_alpha104/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 x11-misc/wbar/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	14 May 2012 16:45:24 -0000	1.17
+++ ChangeLog	14 May 2012 16:51:14 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/wbar
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.17 2012/05/14 16:45:24 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.18 2012/05/14 16:51:14 hasufell Exp $
+
+  14 May 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild:
+  missed sys-process/procps virtual/init
 
   14 May 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild,
   +files/wbar-2.3.0-cfg.patch:



1.3                  x11-misc/wbar/wbar-2.3.0.ebuild

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

Index: wbar-2.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wbar-2.3.0.ebuild	14 May 2012 16:45:24 -0000	1.2
+++ wbar-2.3.0.ebuild	14 May 2012 16:51:14 -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/wbar/wbar-2.3.0.ebuild,v 1.2 2012/05/14 16:45:24 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v 1.3 2012/05/14 16:51:14 hasufell Exp $
 
 EAPI=4
 
@@ -17,6 +17,7 @@
 
 RDEPEND="media-libs/imlib2[X]
 	x11-libs/libX11
+	|| ( sys-process/procps virtual/init )
 	gtk? ( gnome-base/libglade
 		media-libs/freetype:2
 		x11-libs/gdk-pixbuf:2






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.3.0.ebuild
@ 2012-05-14 17:50 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-05-14 17:50 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/05/14 17:50:56

  Modified:             ChangeLog wbar-2.3.0.ebuild
  Log:
  force virtual/init
  
  (Portage version: 2.2.0_alpha104/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 x11-misc/wbar/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	14 May 2012 16:51:14 -0000	1.18
+++ ChangeLog	14 May 2012 17:50:56 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/wbar
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.18 2012/05/14 16:51:14 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.19 2012/05/14 17:50:56 hasufell Exp $
+
+  14 May 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild:
+  force virtual/init
 
   14 May 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild:
   missed sys-process/procps virtual/init



1.4                  x11-misc/wbar/wbar-2.3.0.ebuild

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

Index: wbar-2.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wbar-2.3.0.ebuild	14 May 2012 16:51:14 -0000	1.3
+++ wbar-2.3.0.ebuild	14 May 2012 17:50:56 -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/wbar/wbar-2.3.0.ebuild,v 1.3 2012/05/14 16:51:14 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v 1.4 2012/05/14 17:50:56 hasufell Exp $
 
 EAPI=4
 
@@ -16,8 +16,8 @@
 IUSE="gtk"
 
 RDEPEND="media-libs/imlib2[X]
+	virtual/init
 	x11-libs/libX11
-	|| ( sys-process/procps virtual/init )
 	gtk? ( gnome-base/libglade
 		media-libs/freetype:2
 		x11-libs/gdk-pixbuf:2






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.3.0.ebuild
@ 2012-07-23  6:16 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-07-23  6:16 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/07/23 06:16:34

  Modified:             ChangeLog wbar-2.3.0.ebuild
  Log:
  marked x86 per bug 427658
  
  (Portage version: 2.2.0_alpha120/cvs/Linux i686)

Revision  Changes    Path
1.20                 x11-misc/wbar/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	14 May 2012 17:50:56 -0000	1.19
+++ ChangeLog	23 Jul 2012 06:16:34 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/wbar
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.19 2012/05/14 17:50:56 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.20 2012/07/23 06:16:34 jdhore Exp $
+
+  23 Jul 2012; Jeff Horelick <jdhore@gentoo.org> wbar-2.3.0.ebuild:
+  marked x86 per bug 427658
 
   14 May 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild:
   force virtual/init



1.5                  x11-misc/wbar/wbar-2.3.0.ebuild

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

Index: wbar-2.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wbar-2.3.0.ebuild	14 May 2012 17:50:56 -0000	1.4
+++ wbar-2.3.0.ebuild	23 Jul 2012 06:16:34 -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/wbar/wbar-2.3.0.ebuild,v 1.4 2012/05/14 17:50:56 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v 1.5 2012/07/23 06:16:34 jdhore Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="gtk"
 
 RDEPEND="media-libs/imlib2[X]





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

* [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.3.0.ebuild
@ 2012-07-29 20:16 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2012-07-29 20:16 UTC (permalink / raw
  To: gentoo-commits

hasufell    12/07/29 20:16:13

  Modified:             ChangeLog wbar-2.3.0.ebuild
  Log:
  stable for amd64 wrt bug #427658
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 x11-misc/wbar/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	23 Jul 2012 06:16:34 -0000	1.20
+++ ChangeLog	29 Jul 2012 20:16:13 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/wbar
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.20 2012/07/23 06:16:34 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.21 2012/07/29 20:16:13 hasufell Exp $
+
+  29 Jul 2012; Julian Ospald <hasufell@gentoo.org> wbar-2.3.0.ebuild:
+  stable for amd64 wrt bug #427658
 
   23 Jul 2012; Jeff Horelick <jdhore@gentoo.org> wbar-2.3.0.ebuild:
   marked x86 per bug 427658



1.6                  x11-misc/wbar/wbar-2.3.0.ebuild

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

Index: wbar-2.3.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wbar-2.3.0.ebuild	23 Jul 2012 06:16:34 -0000	1.5
+++ wbar-2.3.0.ebuild	29 Jul 2012 20:16:13 -0000	1.6
@@ -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/wbar/wbar-2.3.0.ebuild,v 1.5 2012/07/23 06:16:34 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.3.0.ebuild,v 1.6 2012/07/29 20:16:13 hasufell Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="gtk"
 
 RDEPEND="media-libs/imlib2[X]





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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-14 17:50 [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.3.0.ebuild Julian Ospald (hasufell)
  -- strict thread matches above, loose matches on Subject: below --
2012-07-29 20:16 Julian Ospald (hasufell)
2012-07-23  6:16 Jeff Horelick (jdhore)
2012-05-14 16:51 Julian Ospald (hasufell)
2012-05-14 16:45 Julian Ospald (hasufell)

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