Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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