diff options
author | Dror Levin <spatz@gentoo.org> | 2009-09-20 17:55:19 +0000 |
---|---|---|
committer | Dror Levin <spatz@gentoo.org> | 2009-09-20 17:55:19 +0000 |
commit | b6b4fb88f919d44e2121b54c886731ae7db37f97 (patch) | |
tree | 2780cf3e222fcc6986ae9dbf28ba8066e0478cfa /media-gfx/fotowall | |
parent | Fix patch, it didn't apply... (diff) | |
download | gentoo-2-b6b4fb88f919d44e2121b54c886731ae7db37f97.tar.gz gentoo-2-b6b4fb88f919d44e2121b54c886731ae7db37f97.tar.bz2 gentoo-2-b6b4fb88f919d44e2121b54c886731ae7db37f97.zip |
Version bump and remove old.
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/fotowall')
-rw-r--r-- | media-gfx/fotowall/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/fotowall/fotowall-0.6.1.ebuild | 29 | ||||
-rw-r--r-- | media-gfx/fotowall/fotowall-0.8.2.ebuild | 42 |
3 files changed, 50 insertions, 30 deletions
diff --git a/media-gfx/fotowall/ChangeLog b/media-gfx/fotowall/ChangeLog index d10b56a68f2d..510430556518 100644 --- a/media-gfx/fotowall/ChangeLog +++ b/media-gfx/fotowall/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-gfx/fotowall # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/fotowall/ChangeLog,v 1.2 2009/07/25 11:16:12 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fotowall/ChangeLog,v 1.3 2009/09/20 17:55:19 spatz Exp $ + +*fotowall-0.8.2 (20 Sep 2009) + + 20 Sep 2009; Dror Levin <spatz@gentoo.org> -fotowall-0.6.1.ebuild, + +fotowall-0.8.2.ebuild: + Version bump and remove old. Added USE flag for opengl acceleration + support. Fixes bug 285677. *fotowall-0.7.1 (25 Jul 2009) diff --git a/media-gfx/fotowall/fotowall-0.6.1.ebuild b/media-gfx/fotowall/fotowall-0.6.1.ebuild deleted file mode 100644 index 28a524f58567..000000000000 --- a/media-gfx/fotowall/fotowall-0.6.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/fotowall/fotowall-0.6.1.ebuild,v 1.1 2009/05/09 18:51:07 hwoarang Exp $ - -EAPI="2" - -inherit qt4 - -DESCRIPTION="Qt4 tool for creating wallpapers" -HOMEPAGE="http://www.qt-apps.org/content/show.php?content=71316" -SRC_URI="http://www.qt-apps.org/CONTENT/content-files/71316-${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug doc" - -DEPEND="x11-libs/qt-svg:4 - x11-libs/qt-webkit:4" -RDEPEND="${DEPEND}" - -src_configure() { - eqmake4 -} - -src_install() { - emake INSTALL_ROOT="${D}" install || die "emake install failed" - use doc && dodoc "README.markdown" -} diff --git a/media-gfx/fotowall/fotowall-0.8.2.ebuild b/media-gfx/fotowall/fotowall-0.8.2.ebuild new file mode 100644 index 000000000000..57dc9884ffca --- /dev/null +++ b/media-gfx/fotowall/fotowall-0.8.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/fotowall/fotowall-0.8.2.ebuild,v 1.1 2009/09/20 17:55:19 spatz Exp $ + +EAPI="2" + +inherit qt4 + +MY_P="${P/f/F}" + +DESCRIPTION="Qt4 tool for creating wallpapers" +HOMEPAGE="http://www.enricoros.com/opensource/fotowall/" +SRC_URI="http://fotowall.googlecode.com/files/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug opengl" + +DEPEND="x11-libs/qt-gui:4 + x11-libs/qt-svg:4 + opengl? ( x11-libs/qt-opengl:4 )" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + qt4_src_prepare + + if ! use opengl; then + sed -i "/QT += opengl/d" "${PN}.pro" || die "sed failed" + fi +} + +src_configure() { + eqmake4 +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die "emake install failed" + dodoc "README.markdown" || die +} |