forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qtsingleapplication-2.6.1_p20130904-r1.ebuild
60 lines (44 loc) · 1.29 KB
/
qtsingleapplication-2.6.1_p20130904-r1.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
56
57
58
59
60
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit qt4-r2
MY_P=qt-solutions-${PV#*_p}
DESCRIPTION="Qt library to start applications only once per user"
HOMEPAGE="https://code.qt.io/cgit/qt-solutions/qt-solutions.git/"
SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz"
LICENSE="|| ( LGPL-2.1 GPL-3 )"
SLOT="0"
KEYWORDS="amd64 arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="X doc"
DEPEND="
dev-qt/qtcore:4
dev-qt/qtlockedfile
X? ( dev-qt/qtgui:4 )
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}/${PN}
PATCHES=(
"${FILESDIR}/${PV}-unbundle-qtlockedfile.patch"
"${FILESDIR}/${PV}-no-gui.patch"
)
src_prepare() {
qt4-r2_src_prepare
echo 'SOLUTIONS_LIBRARY = yes' > config.pri
use X || echo 'QTSA_NO_GUI = yes' >> config.pri
sed -i -e "s/-head/-${PV%.*}/" common.pri || die
sed -i -e '/SUBDIRS+=examples/d' ${PN}.pro || die
# to ensure unbundling
rm -f src/qtlockedfile*
}
src_install() {
dodoc README.TXT
dolib.so lib/*
insinto /usr/include/qt4/QtSolutions
doins src/qtsinglecoreapplication.h
use X && doins src/{QtSingleApplication,${PN}.h}
insinto /usr/share/qt4/mkspecs/features
doins "${FILESDIR}"/qtsinglecoreapplication.prf
use X && doins "${FILESDIR}"/${PN}.prf
use doc && dohtml -r doc/html
}