blob: cafc5d025c665308b9cebbdbd01f147338903393 (
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
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwt/qwt-5.2.3.ebuild,v 1.3 2013/12/09 08:32:59 jlec Exp $
EAPI=5
inherit eutils qt4-r2
DESCRIPTION="2D plotting library for Qt4"
HOMEPAGE="http://qwt.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="qwt"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
SLOT="5"
IUSE="doc examples static-libs svg"
DEPEND="
dev-qt/qtgui:4
doc? ( !<media-libs/coin-3.1.3[doc] )
svg? ( dev-qt/qtsvg:4 )"
RDEPEND="${DEPEND}"
DOCS="CHANGES README"
src_prepare() {
sed -e "/QwtVersion/s:5.2.2.:${PV}:g" -i ${PN}.prf || die
cat > qwtconfig.pri <<-EOF
target.path = "${EPREFIX}/usr/$(get_libdir)"
headers.path = "${EPREFIX}/usr/include/qwt5"
doc.path = "${EPREFIX}/usr/share/doc/${PF}"
CONFIG += qt warn_on thread release
CONFIG += QwtDll
CONFIG += QwtPlot QwtWidgets QwtDesigner
VERSION = ${PV}
EOF
sed -i -e 's/headers doc/headers/' src/src.pro || die
use svg && echo >> qwtconfig.pri "CONFIG += QwtSVGItem"
}
src_compile() {
building() {
# split compilation to allow parallel building
emake sub-src
emake
}
building
if use static-libs; then
sed "/QwtDll/d" -i qwtconfig.pri || die
eqmake4
building
echo "CONFIG += QwtDll" >> qwtconfig.pri || die
fi
}
src_test() {
cd examples || die
eqmake4 examples.pro
emake
}
src_install () {
qt4-r2_src_install
use static-libs && dolib.a lib/libqwt.a
insinto /usr/share/doc/${PF}
if use doc; then
rm doc/man/*/*license*
rm -f doc/man/*/{_,deprecated}* || die
doman doc/man/*/*
doins -r doc/html
fi
if use examples; then
# don't build examples - fix the qt files to build once installed
cat > examples/examples.pri <<-EOF
include( qwtconfig.pri )
TEMPLATE = app
MOC_DIR = moc
INCLUDEPATH += "${EPREFIX}/usr/include/qwt5"
DEPENDPATH += "${EPREFIX}/usr/include/qwt5"
LIBS += -lqwt
EOF
sed -i -e 's:../qwtconfig:qwtconfig:' examples/examples.pro || die
cp qwtconfig.pri examples/qwtconfig.pri || die
doins -r examples
fi
}
|