blob: 68e36fdf2c757c13ad026bf21d4ea06f5c9d8ea1 (
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
|
# 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-20100420.ebuild,v 1.4 2010/07/12 20:11:10 hwoarang Exp $
EAPI=2
inherit eutils qt4
DESCRIPTION="Library for reading OriginLab OPJ project files"
HOMEPAGE="http://soft.proindependent.com/liborigin2/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="2"
KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND="dev-libs/boost"
DEPEND="${RDEPEND}
x11-libs/qt-gui:4
dev-cpp/tree
doc? ( app-doc/doxygen )"
src_prepare() {
epatch "${FILESDIR}/liborigin-20100420-build-parsers.patch"
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
epatch "${FILESDIR}"/${P}-gcc45.patch
}
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
}
|