blob: 5286d93e889fab390a76bd8c11775860bea3b519 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtlockedfile/qtlockedfile-2.4.1.ebuild,v 1.2 2013/09/18 11:51:10 pinkbyte Exp $
EAPI=5
inherit eutils multilib qt4-r2 versionator
MY_P="${PN}-$(replace_version_separator 2 _)-opensource"
DESCRIPTION="QFile extension with advisory locking functions"
HOMEPAGE="http://doc.qt.digia.com/solutions/4/qtlockedfile/index.html"
SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.gz"
LICENSE="|| ( LGPL-2.1 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-qt/qtcore:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}/${P}-depend.patch"
"${FILESDIR}/${P}-examples.patch"
)
src_configure() {
eqmake4 CONFIG+=qtlockedfile-uselib
}
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"
if use doc ; then
dodoc -r example
dodoc doc/index.qdoc
dohtml -r doc/html/ doc/images
fi
}
|