blob: f48c7d250c268f551d802e9fb298108c2fd6dd48 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwt/qwt-5.0.0_rc1.ebuild,v 1.2 2007/01/26 14:40:16 beandog Exp $
inherit multilib eutils
MY_PV="${PV/_/}"
SRC_URI="mirror://sourceforge/qwt/${PN}-${MY_PV}.tar.bz2"
HOMEPAGE="http://qwt.sourceforge.net/"
DESCRIPTION="2D plotting library for Qt4"
LICENSE="qwt"
KEYWORDS="~amd64 ~ppc64 ~x86"
SLOT="5"
IUSE="doc"
S="${WORKDIR}/${PN}-${MY_PV}"
QWTVER="5.0.0"
DEPEND="=x11-libs/qt-4*
>=sys-apps/sed-4"
src_unpack () {
unpack ${A}
cd ${S}
find . -type f -name "*.pro" | while read file; do
sed -e 's/.*no-exceptions.*//g' -i ${file}
echo >> ${file} "QMAKE_CFLAGS_RELEASE += ${CFLAGS}"
echo >> ${file} "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}"
done
find examples -type f -name "*.pro" | while read file; do
echo >> ${file} "INCLUDEPATH += /usr/include/qwt"
done
}
src_compile () {
/usr/bin/qmake qwt.pro
emake || die
cd designer
/usr/bin/qmake qwtplugin.pro
emake || die
}
src_install () {
ls -l lib
dolib lib/libqwt.so.${QWTVER}
dosym libqwt.so.${QWTVER} /usr/$(get_libdir)/libqwt.so
dosym libqwt.so.${QWTVER} /usr/$(get_libdir)/libqwt.so.${QWTVER/.*/}
use doc && (dodir /usr/share/doc/${PF}
cp -pPR examples ${D}/usr/share/doc/${PF}/
dohtml doc/html/*)
mkdir -p ${D}/usr/include/qwt5/
install include/* ${D}/usr/include/qwt5/
insinto /usr/$(get_libdir)/qt4/plugins/designer
doins designer/plugins/designer/libqwt_designer_plugin.so
}
|