46 lines
1,010 B
Bash
46 lines
1,010 B
Bash
# 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="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 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
|
|
IUSE="doc"
|
|
|
|
DEPEND="dev-qt/qtcore:4"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}/${MY_P}/${PN}
|
|
|
|
src_prepare() {
|
|
qt4-r2_src_prepare
|
|
|
|
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_install() {
|
|
dodoc README.TXT
|
|
|
|
dolib.so lib/*
|
|
insinto /usr/include/qt4/QtSolutions/
|
|
doins src/QtLockedFile src/${PN}.h
|
|
|
|
insinto /usr/share/qt4/mkspecs/features/
|
|
doins "${FILESDIR}"/${PN}.prf
|
|
|
|
use doc && dohtml -r doc/html
|
|
}
|