public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [gentoo-commits] gentoo-x86 commit in media-gfx/wally: ChangeLog wally-2.4.1.ebuild wally-2.3.2.ebuild wally-2.4.ebuild
@ 2011-02-02 11:31 99% Theo Chatzimichos (tampakrap)
  0 siblings, 0 replies; 1+ results
From: Theo Chatzimichos (tampakrap) @ 2011-02-02 11:31 UTC (permalink / raw
  To: gentoo-commits

tampakrap    11/02/02 11:31:18

  Modified:             ChangeLog wally-2.4.1.ebuild wally-2.3.2.ebuild
  Removed:              wally-2.4.ebuild
  Log:
  EAPI3, slotmove to 4, use array for makeargs, remove old
  
  (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 media-gfx/wally/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/wally/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	18 Jan 2011 13:54:50 -0000	1.31
+++ ChangeLog	2 Feb 2011 11:31:18 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for media-gfx/wally
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/ChangeLog,v 1.31 2011/01/18 13:54:50 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/ChangeLog,v 1.32 2011/02/02 11:31:18 tampakrap Exp $
+
+  02 Feb 2011; Theo Chatzimichos <tampakrap@gentoo.org> wally-2.3.2.ebuild,
+  -wally-2.4.ebuild, wally-2.4.1.ebuild:
+  EAPI3, slotmove to 4, use array for makeargs, remove old
 
   18 Jan 2011; Markos Chandras <hwoarang@gentoo.org> wally-2.4.1.ebuild:
   Adjust kdelibs dependency



1.3                  media-gfx/wally/wally-2.4.1.ebuild

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

Index: wally-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/wally/wally-2.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wally-2.4.1.ebuild	18 Jan 2011 13:54:50 -0000	1.2
+++ wally-2.4.1.ebuild	2 Feb 2011 11:31:18 -0000	1.3
@@ -1,23 +1,25 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/wally-2.4.1.ebuild,v 1.2 2011/01/18 13:54:50 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/wally-2.4.1.ebuild,v 1.3 2011/02/02 11:31:18 tampakrap Exp $
 
-EAPI="2"
+EAPI=3
 KDE_REQUIRED="optional"
-inherit cmake-utils kde4-base
+inherit kde4-base
 
-DESCRIPTION="A Qt4 wallpaper changer"
+DESCRIPTION="A Qt4/KDE4 wallpaper changer"
 HOMEPAGE="http://www.becrux.com/index.php?page=projects&name=wally"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
-SLOT="0"
+SLOT="4"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug"
+IUSE="debug kde"
 
-DEPEND="media-libs/libexif
+DEPEND="
+	media-libs/libexif
 	x11-libs/qt-svg:4
-	kde? (	>=kde-base/kdelibs-4.5.5 )"
+	kde? ( $(add_kdebase_dep kdelibs) )
+"
 RDEPEND="${DEPEND}"
 
 PATCHES=(
@@ -30,7 +32,9 @@
 }
 
 src_configure() {
-	mycmakeargs="${mycmakeargs} -DSTATIC=FALSE"
+	mycmakeargs=(
+		-DSTATIC=FALSE
+	)
 	cmake-utils_src_configure
 }
 



1.7                  media-gfx/wally/wally-2.3.2.ebuild

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

Index: wally-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-gfx/wally/wally-2.3.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- wally-2.3.2.ebuild	14 Jul 2010 13:29:33 -0000	1.6
+++ wally-2.3.2.ebuild	2 Feb 2011 11:31:18 -0000	1.7
@@ -1,23 +1,25 @@
-# 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/wally/wally-2.3.2.ebuild,v 1.6 2010/07/14 13:29:33 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/wally/wally-2.3.2.ebuild,v 1.7 2011/02/02 11:31:18 tampakrap Exp $
 
-EAPI="2"
+EAPI=3
 KDE_REQUIRED="optional"
-inherit cmake-utils kde4-base
+inherit kde4-base
 
-DESCRIPTION="A Qt4 wallpaper changer"
+DESCRIPTION="A Qt4/KDE4 wallpaper changer"
 HOMEPAGE="http://www.becrux.com/index.php?page=projects&name=wally"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
-SLOT="0"
+SLOT="4"
 KEYWORDS="amd64 x86"
-IUSE="debug"
+IUSE="debug kde"
 
-DEPEND="media-libs/libexif
+DEPEND="
+	media-libs/libexif
 	x11-libs/qt-svg:4
-	kde? (	>=kde-base/kdelibs-4.2.0 )"
+	kde? ( $(add_kdebase_dep kdelibs) )
+"
 RDEPEND="${DEPEND}"
 
 PATCHES=(
@@ -31,7 +33,9 @@
 }
 
 src_configure() {
-	mycmakeargs="${mycmakeargs} -DSTATIC=FALSE"
+	mycmakeargs=(
+		-DSTATIC=FALSE
+	)
 	cmake-utils_src_configure
 }
 






^ permalink raw reply	[relevance 99%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2011-02-02 11:31 99% [gentoo-commits] gentoo-x86 commit in media-gfx/wally: ChangeLog wally-2.4.1.ebuild wally-2.3.2.ebuild wally-2.4.ebuild Theo Chatzimichos (tampakrap)

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