forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qtsingleapplication-2.6.1_p20150629.ebuild
96 lines (76 loc) · 1.99 KB
/
qtsingleapplication-2.6.1_p20150629.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit multibuild qmake-utils
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 ~hppa ppc ppc64 x86"
IUSE="doc +qt4 qt5 X"
REQUIRED_USE="|| ( qt4 qt5 )"
DEPEND="
dev-qt/qtlockedfile[qt4?,qt5?]
qt4? (
dev-qt/qtcore:4
X? ( dev-qt/qtgui:4 )
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtnetwork:5
X? (
dev-qt/qtgui:5
dev-qt/qtwidgets:5
)
)
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}/${PN}
pkg_setup() {
MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
}
src_prepare() {
epatch "${FILESDIR}/2.6.1_p20130904-unbundle-qtlockedfile.patch"
epatch "${FILESDIR}/2.6.1_p20130904-no-gui.patch"
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*
multibuild_copy_sources
}
src_configure() {
myconfigure() {
if [[ ${MULTIBUILD_VARIANT} == qt4 ]]; then
eqmake4
fi
if [[ ${MULTIBUILD_VARIANT} == qt5 ]]; then
eqmake5
fi
}
multibuild_foreach_variant run_in_build_dir myconfigure
}
src_compile() {
multibuild_foreach_variant run_in_build_dir default
}
src_install() {
dodoc README.TXT
use doc && dodoc -r doc/html
myinstall() {
# libraries
dolib.so lib/*
# headers
insinto "$(${MULTIBUILD_VARIANT}_get_headerdir)"/QtSolutions
doins src/qtsinglecoreapplication.h
use X && doins src/{QtSingleApplication,${PN}.h}
# .prf files
insinto "$(${MULTIBUILD_VARIANT}_get_mkspecsdir)"/features
doins "${FILESDIR}"/qtsinglecoreapplication.prf
use X && doins "${FILESDIR}"/${PN}.prf
}
multibuild_foreach_variant run_in_build_dir myinstall
}