blob: 0c066bc0a70173bff1c7edf36cf7be19a35e488c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# New ports collection makefile for: redland-bindings
# Date created: 2004-08-10
# Whom: Russell Cloran <russell@rucus.ru.ac.za>
#
# $FreeBSD$
#
PORTNAME= redland-bindings
PORTVERSION= 1.0.2.1
CATEGORIES= textproc
MASTER_SITES= http://download.librdf.org/source/
MAINTAINER= russell@rucus.ru.ac.za
COMMENT= Language bindings for the Redland package
#OPTIONS= JAVA "Add Java bindings" off \
# PERL "Add Perl bindings" off \
# PHP "Add PHP bindings" off \
# PYTHON "Add Python bindings" off \
# RUBY "Add Ruby bindings" off \
# TCL "Add TCL bindings" off
LIB_DEPENDS= rdf.0:${PORTSDIR}/textproc/redland
USE_REINPLACE= yes
.if defined(WITH_JAVA)
USE_JAVA= yes
JAVA_VERSION= 1.3+
CONFIGURE_ARGS+= --with-java --with-jdk=${JAVA_HOME}
PLIST_SUB+= WITH_JAVA=""
.else
PLIST_SUB+= WITH_JAVA="@comment "
.endif
.if defined(WITH_PERL)
USE_PERL5= yes
CONFIGURE_ARGS+= --with-perl
PLIST_SUB+= WITH_PERL=""
MANPREFIX= ${LOCALBASE}/lib/perl5/${PERL_VER}
MAN3= RDF::Redland.3 \
RDF::Redland::Iterator.3 \
RDF::Redland::Model.3 \
RDF::Redland::Node.3 \
RDF::Redland::Parser.3 \
RDF::Redland::Query.3 \
RDF::Redland::QueryResults.3 \
RDF::Redland::RSS.3 \
RDF::Redland::Serializer.3 \
RDF::Redland::Statement.3 \
RDF::Redland::Storage.3 \
RDF::Redland::Stream.3 \
RDF::Redland::URI.3
.else
PLIST_SUB+= WITH_PERL="@comment "
.endif
.if defined(WITH_PHP)
USE_PHP= yes
USE_PHP_BUILD= yes
CONFIGURE_ARGS+= --with-php
PLIST_SUB+= WITH_PHP=""
.else
PLIST_SUB+= WITH_PHP="@comment "
.endif
.if defined(WITH_PYTHON)
USE_PYTHON= yes
CONFIGURE_ARGS+= --with-python
PLIST_SUB+= WITH_PYTHON=""
.else
PLIST_SUB+= WITH_PYTHON="@comment "
.endif
.if defined(WITH_RUBY)
USE_RUBY= yes
CONFIGURE_ARGS+= --with-ruby
PLIST_SUB+= WITH_RUBY=""
.else
PLIST_SUB+= WITH_RUBY="@comment "
.endif
.if defined(WITH_TCL)
.if defined(WITH_TCL83)
TCL_SHORT_V= 83
TCL_LONG_V= 8.3
.else
TCL_SHORT_V= 84
TCL_LONG_V= 8.4
.endif
PLIST_SUB+= WITH_TCL=""
PLIST_SUB+= TCL_DIR="lib/tcl${TCL_LONG_V}"
CONFIGURE_ARGS+= --with-tcl=${LOCALBASE}/bin/tclsh${TCL_LONG_V}
LIB_DEPENDS+= tcl${TCL_SHORT_V}:${PORTSDIR}/lang/tcl${TCL_SHORT_V}
.else
PLIST_SUB+= WITH_TCL="@comment "
.endif
GNU_CONFIGURE= yes
pre-everything::
@${ECHO_MSG} ""
@${ECHO_MSG} "**********************************************"
@${ECHO_MSG} "The following make variables can be set to"
@${ECHO_MSG} "enable bindings for various languages"
@${ECHO_MSG} ""
@${ECHO_MSG} "WITH_JAVA - Java bindings"
@${ECHO_MSG} "WITH_PERL - Perl module"
@${ECHO_MSG} "WITH_PHP - PHP extension"
@${ECHO_MSG} "WITH_PYTHON - Python extension"
@${ECHO_MSG} "WITH_RUBY - Ruby bindings"
@${ECHO_MSG} "WITH_TCL - TCL bindings"
@${ECHO_MSG} "**********************************************"
@${ECHO_MSG} ""
post-patch:
${REINPLACE_CMD} 's/^tcllib =.*/tcllib = -ltcl${TCL_SHORT_V}/' \
${WRKSRC}/tcl/Makefile.in
.include <bsd.port.mk>
|