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 | c2555930c25f5092077594e2341a2dcfde676d74 (patch) | |
tree | d3055817e7e164fa0b7f5f30184d0bf7f59dc321 /media-gfx/fotowall/fotowall-0.8.2.ebuild | |
parent | Fix patch, it didn't apply... (diff) | |
download | historical-c2555930c25f5092077594e2341a2dcfde676d74.tar.gz historical-c2555930c25f5092077594e2341a2dcfde676d74.tar.bz2 historical-c2555930c25f5092077594e2341a2dcfde676d74.zip |
Version bump and remove old.
Package-Manager: portage-2.2_rc40/cvs/Linux x86_64
Diffstat (limited to 'media-gfx/fotowall/fotowall-0.8.2.ebuild')
-rw-r--r-- | media-gfx/fotowall/fotowall-0.8.2.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
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 +} |