Magellan Linux

Contents of /branches/magellan-next/extras/virtuoso/virtuoso-6.1.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6824 - (show annotations) (download)
Wed Sep 22 17:40:22 2010 UTC (13 years, 7 months ago) by niro
File size: 1046 byte(s)
auto added: ver bump to 6.1.2-r1
1 # $Id: virtuoso-6.1.0-r1.smage2 4863 2010-02-12 15:11:34Z niro $
2
3 PNAME="virtuoso"
4 PVER="6.1.2"
5 PBUILD="r1"
6
7 PCATEGORIE="dev-db"
8 STATE="unstable"
9
10 DESCRIPTION="A scalable cross-platform server that combines SQL/RDF/XML Data Management with Web Application Server and Web Services Platform functionality."
11 HOMEPAGE="http://virtuoso.openlinksw.com/"
12
13 DEPEND=">= dev-libs/libxml2-2.7
14 >= dev-libs/openssl-1.0.0
15 >= sys-libs/zlib-1.2.5"
16
17 SDEPEND=">= sys-dev/bison-2.4
18 >= sys-dev/flex-2.5.35"
19
20 SRCFILE="${PNAME}-opensource-${PVER}.tar.gz"
21 SRCDIR="${BUILDDIR}/${PNAME}-opensource-${PVER}"
22
23 sminclude mbuild
24
25 SRC_URI=(
26 sourceforge://${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${SRCFILE}
28 )
29
30 UP2DATE="updatecmd_sourceforge ${PNAME}"
31
32 src_compile()
33 {
34 cd ${SRCDIR}
35
36 mconfigure --disable-rendezvous --disable-hslookup --disable-all-vads || die
37 mmake -j1 || die
38 }
39
40 src_install()
41 {
42 # install server
43 cd ${SRCDIR}/binsrc/virtuoso
44 mmake DESTDIR=${BINDIR} install || die
45
46 # install driver
47 cd ${SRCDIR}/binsrc/driver
48 mmake DESTDIR=${BINDIR} install || die
49 }