blob: 4b43d414b206a548a089e103c9fd96aed0ca4767 (
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
|
# Copyright 2006-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.ebuild,v 1.1 2008/09/15 15:09:14 iluxa Exp $
inherit eutils flag-o-matic autotools
IUSE="fltk odbc doc sqlite3 excel postgres aspell"
DESCRIPTION="C++ user interface toolkit for X with database and Excel support"
SRC_URI="http://www.sptk.net/sptk-${PV}.tbz2"
HOMEPAGE="http://www.sptk.net"
SLOT="3"
LICENSE="|| ( BSD )"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86"
RDEPEND="fltk? ( >=x11-libs/fltk-1.1.6 )
odbc? ( >=dev-db/unixODBC-2.2.6 )
sqlite3? ( >=dev-db/sqlite-3 )
postgres? ( >=virtual/postgresql-base-8.0 )
aspell? ( >=app-text/aspell-0.50 )"
DEPEND="${RDEPEND}
dev-util/cmake
doc? ( app-doc/doxygen )"
check_use() {
if use ${1}; then
SPTK_OPTIONS="${SPTK_OPTIONS} -DNO_${2}:BOOLEAN=FALSE"
else
SPTK_OPTIONS="${SPTK_OPTIONS} -DNO_${2}:BOOLEAN=TRUE"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
check_use examples EXAMPLES
check_use postgres POSTGRESQL
check_use sqlite3 SQLITE3
check_use odbc ODBC
check_use aspell ASPELL
check_use fltk FLTK
check_use excel EXCEL
sed -r -i -e 's|SET \(LIBRARY_TYPE STATIC\)|SET \(LIBRARY_TYPE SHARED\)|' src/CMakeLists.txt
cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr ${SPTK_OPTIONS} . || die "Configuration Failed"
}
src_compile() {
emake || die "Parallel Make Failed"
if use doc; then
cd "${S}"
einfo "Fixing sptk3.doxygen"
sed -i -e 's,/cvs/sptk3/,,g' sptk3.doxygen
einfo "Building docs"
doxygen sptk3.doxygen
fi
}
src_install () {
make DESTDIR="${D}" install || die "Installation failed"
dodoc README AUTHORS
dodir /usr/share/doc/${PF}
cp -r "${S}"/docs/* "${D}"/usr/share/doc/${PF}
if use doc; then
rm -fr "${D}/usr/share/doc/${PF}/latex"
cp -rf "${S}/pictures" "${D}/usr/share/doc/${PF}"
fi
}
|