forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fotowall-0.9-r2.ebuild
55 lines (42 loc) · 964 Bytes
/
fotowall-0.9-r2.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
}