Magellan Linux

Contents of /trunk/todo/virtuoso/virtuoso-6.1.8-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27955 - (show annotations) (download)
Wed Apr 6 11:26:11 2016 UTC (8 years, 1 month ago) by niro
File size: 1253 byte(s)
-moved to 'todo'
1 # $Id$
2
3 PNAME="virtuoso"
4 PVER="6.1.8"
5 PBUILD="r2"
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.2
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 }