Magellan Linux

Contents of /branches/R11-stable/extras/virtuoso/virtuoso-6.1.4-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15401 - (show annotations) (download)
Wed Jan 2 11:39:49 2013 UTC (11 years, 5 months ago) by niro
File size: 1222 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="virtuoso"
4 PVER="6.1.4"
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.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 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
50 # install some tools (renamed to avoid conflicts with unixodbc)
51 minstalldir /usr/bin || die
52 minstallexec ${SRCDIR}/binsrc/tests/isql /usr/bin/isql-vt || die
53 minstallexec ${SRCDIR}/binsrc/tests/isqlw /usr/bin/isqlw-vt || die
54 }