blob: aecc05cf2149d8efd3e0c267974ff3be8b11c16d (
plain)
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qmake-utils
MY_P=qt-solutions-${PV#*_p}
DESCRIPTION="QFile extension with advisory locking functions"
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"
DEPEND="dev-qt/qtcore:5"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}/${PN}"
src_prepare() {
default
echo 'SOLUTIONS_LIBRARY = yes' > config.pri
echo 'QT -= gui' >> src/qtlockedfile.pri
sed -i -e "s/-head/-${PV%.*}/" common.pri || die
sed -i -e '/SUBDIRS+=example/d' ${PN}.pro || die
}
src_configure() {
eqmake5
}
src_install() {
use doc && local HTML_DOCS=( doc/html/. )
einstalldocs
# libraries
dolib.so lib/*
# headers
insinto "$(qt5_get_headerdir)"/QtSolutions
doins src/QtLockedFile src/${PN}.h
# .prf files
insinto "$(qt5_get_mkspecsdir)"/features
doins "${FILESDIR}"/${PN}.prf
}
|