forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate to EAPI 6 * Port away from qt4-r2 * Correct LICENSE * Remove unused debug USE flag * Add missing dependencies * Fix build with recent v4l (bug #539558) Package-Manager: portage-2.2.26
- Loading branch information
Michael Palimaka
committed
Jan 14, 2016
1 parent
abd7280
commit 99430bf
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit qmake-utils | ||
|
||
MY_P="${P/f/F}" | ||
|
||
DESCRIPTION="Qt4 tool for creating wallpapers" | ||
HOMEPAGE="http://www.enricoros.com/opensource/fotowall/" | ||
SRC_URI="https://fotowall.googlecode.com/files/${MY_P}.tar.bz2" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="opengl webcam" | ||
|
||
RDEPEND=" | ||
dev-qt/qtcore:4 | ||
dev-qt/qtgui:4 | ||
dev-qt/qtsvg:4 | ||
opengl? ( dev-qt/qtopengl:4 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
webcam? ( media-libs/libv4l ) | ||
" | ||
|
||
S="${WORKDIR}/${MY_P}" | ||
|
||
src_prepare() { | ||
default | ||
|
||
sed -i -e "s|linux/videodev.h|libv4l1-videodev.h|" \ | ||
3rdparty/videocapture/VideoDevice.h || die | ||
|
||
if ! use opengl; then | ||
sed -i "/QT += opengl/d" "${PN}.pro" || die "sed failed" | ||
fi | ||
} | ||
|
||
src_configure() { | ||
if ! use webcam; then | ||
eqmake4 ${PN}.pro "CONFIG+=no-webcam" | ||
else | ||
eqmake4 | ||
fi | ||
} | ||
|
||
src_install() { | ||
emake INSTALL_ROOT="${D}" install | ||
|
||
dodoc README.markdown | ||
} |