blob: 9ff59076e1017bdab62c194e355a5a982cd1f560 (
plain)
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
|
# New ports collection makefile for: morla
# Date created: 2006-04-09
# Whom: Nicola Vitale <nivit@email.it>
#
# $FreeBSD$
#
PORTNAME= morla
PORTVERSION= 0.16.1
PORTREVISION= 1
CATEGORIES= editors textproc
MASTER_SITES= http://www.morlardf.net/src/ \
http://nivi.interfree.it/distfiles/${PORTNAME}/${PORTVERSION}/
MAINTAINER= nivit@FreeBSD.org
COMMENT= A RDF editor
LIB_DEPENDS= nxml.18:${PORTSDIR}/textproc/libnxml \
rdf.0:${PORTSDIR}/textproc/redland \
raptor2.0:${PORTSDIR}/textproc/raptor2 \
curl.6:${PORTSDIR}/ftp/curl
BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz
RUN_DEPENDS= dot:${PORTSDIR}/graphics/graphviz
OPTIONS= XULRUNNER "Install xulrunner as JavaScript engine" off
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --with-gconf=auto
USE_GETTEXT= yes
USE_GNOME= gconf2 libgtkhtml libxslt
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
MAN1= morla.1
DESKTOP_ENTRIES="morla" \
"Edit RDF documents" \
"${DATADIR}/icons/128_color.png" \
"morla" \
"WebDevelopment;" \
true
post-patch:
@${REINPLACE_CMD} -e 's|-D.*_DISABLE_DEPRECATED||g' \
${WRKSRC}/configure
.include <bsd.port.pre.mk>
.if defined(WITH_XULRUNNER)
USE_GECKO= libxul
CONFIGURE_ARGS+= --with-javascript=xulrunner
.else
CONFIGURE_ARGS+= --with-javascript=none
.endif
.include <bsd.port.post.mk>
|