blob: 5446256e7b7dbc8ee6e3f9e6bda8e8dfdf2a82f9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/liborigin/liborigin-20090406.ebuild,v 1.3 2010/04/26 20:34:20 maekke Exp $
EAPI=2
inherit eutils qt4
# hardcoded for now until it's back in sourceforge
MYP=${PN}2-06042009
S="${WORKDIR}/${MYP}"
DESCRIPTION="Library for reading OriginLab OPJ project files"
SRC_URI="mirror://berlios/qtiplot/${MYP}.zip"
HOMEPAGE="http://sourceforge.net/projects/liborigin/"
LICENSE="GPL-3"
KEYWORDS="amd64 x86"
SLOT="2"
IUSE="doc"
RDEPEND="dev-libs/boost"
DEPEND="${RDEPEND}
x11-libs/qt-gui:4
dev-cpp/tree
doc? ( app-doc/doxygen )"
src_prepare() {
cat >> liborigin.pro <<-EOF
INCLUDEPATH += /usr/include/tree
headers.files = \$\$HEADERS
headers.path = /usr/include/liborigin2
target.path = /usr/$(get_libdir)
INSTALLS = target headers
EOF
# use system one
rm -f tree.hh || die
}
src_configure() {
eqmake4
}
src_compile() {
emake || die "emake failed"
if use doc; then
cd doc
doxygen Doxyfile || die "doc generation failed"
fi
}
src_install() {
emake INSTALL_ROOT="${D}" install || die "emake install failed"
dodoc readme FORMAT
if use doc; then
insinto /usr/share/doc/${PF}
doins -r doc/html || die "doc install failed"
fi
}
|