blob: 610d630941842ddd5be1e73229fbeb365c75689e (
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
|
# New ports collection makefile for: yzis
# Date created: Tue May 20 19:00:00 UTC 2008
# Whom: Ganael Laplanche <ganael.laplanche@martymac.org>
#
# $FreeBSD$
#
PORTNAME= yzis
PORTVERSION= 1.0.a.1
PORTREVISION= 7
CATEGORIES= editors
MASTER_SITES= http://labs.freehackers.org/attachments/download/45/ \
http://contribs.martymac.org/FreeBSD-ports/distfiles/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.a.1/-alpha1/}
MAINTAINER= martymac@FreeBSD.org
COMMENT= Vi-like editor
LICENSE_COMB= multi
LICENSE= GPLv2 LGPL21
USE_BZIP2= yes
USE_GETTEXT= yes
USE_XORG= x11 xext ice
USE_LUA= 5.1
LUA_COMPS= lua
USE_QT_VER= 4
QT_COMPONENTS= qtestlib qmake_build rcc_build uic_build moc_build gui xml
USE_PERL5= yes
USE_CMAKE= yes
CMAKE_USE_PTHREAD= yes
CMAKE_BUILD_TYPE= Release
CMAKE_ARGS+= -DLOCALBASE:STRING="${LOCALBASE}" \
-DLUA_INCDIR:STRING="${LUA_INCDIR}" \
-DLUA_LIBDIR:STRING="${LUA_LIBDIR}" \
-DENABLE_QYZIS:BOOL=ON \
-DENABLE_LIBYZISRUNNER:BOOL=OFF \
-DENABLE_TESTS:BOOL=OFF
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
OPTIONS= KYZIS "Build Kyzis and Yzis kpart" off \
NYZIS "Build nyzis (ncurses frontend)" off
.include <bsd.port.options.mk>
.if defined(WITH_KYZIS)
USE_KDE4= kdehier kdeprefix kdelibs automoc4
QT_COMPONENTS+= phonon
.endif
.include <bsd.port.pre.mk>
.if defined(WITH_NYZIS)
CPPFLAGS+= -D_XOPEN_SOURCE_EXTENDED # ncurses/widec support
CMAKE_ARGS+= -DENABLE_NYZIS:BOOL=ON
PLIST_SUB+= PL_NYZIS=""
.else
CMAKE_ARGS+= -DENABLE_NYZIS:BOOL=OFF
PLIST_SUB+= PL_NYZIS="@comment "
.endif
.if defined(WITH_KYZIS)
CMAKE_ARGS+= -DENABLE_KYZIS:BOOL=ON \
-DENABLE_KPART_YZIS:BOOL=ON
PLIST_SUB+= PL_KYZIS=""
PLIST_SUB+= PL_QYZIS="@comment "
.else
CMAKE_ARGS+= -DENABLE_KYZIS:BOOL=OFF \
-DENABLE_KPART_YZIS:BOOL=OFF
PLIST_SUB+= PL_KYZIS="@comment "
PLIST_SUB+= PL_QYZIS=""
.endif
.if !defined(NOPORTDOCS)
BUILD_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz \
doxygen:${PORTSDIR}/devel/doxygen
CMAKE_ARGS+= -DENABLE_DOCUMENTATION:BOOL=ON
.else
CMAKE_ARGS+= -DENABLE_DOCUMENTATION:BOOL=OFF
.endif
.include <bsd.port.post.mk>
|