Magellan Linux

Contents of /branches/R11-stable/extras/virtuoso/virtuoso-6.1.7-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 18932 - (show annotations) (download)
Wed Aug 14 13:15:40 2013 UTC (10 years, 8 months ago) by niro
File size: 1253 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="virtuoso"
4 PVER="6.1.7"
5 PBUILD="r1"
6
7 PCAT="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.1
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 mtools
23 msetfeature "!check"
24
25 SRC_URI=(
26 sourceforge://${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${SRCFILE}
28 )
29
30 UP2SUBSTITUTE="opensource-"
31 UP2DATE="updatecmd_sourceforge ${PNAME} gz"
32
33 src_compile()
34 {
35 cd ${SRCDIR}
36
37 mconfigure --disable-rendezvous --disable-hslookup --disable-all-vads || die
38 mmake -j1 || die
39 }
40
41 src_install()
42 {
43 # install server
44 cd ${SRCDIR}/binsrc/virtuoso
45 mmake DESTDIR=${BINDIR} install || die
46
47 # install driver
48 cd ${SRCDIR}/binsrc/driver
49 mmake DESTDIR=${BINDIR} install || die
50
51 # install some tools (renamed to avoid conflicts with unixodbc)
52 minstalldir /usr/bin || die
53 minstallexec ${SRCDIR}/binsrc/tests/isql /usr/bin/isql-vt || die
54 minstallexec ${SRCDIR}/binsrc/tests/isqlw /usr/bin/isqlw-vt || die
55 }