aboutsummaryrefslogtreecommitdiffstats
path: root/editors/winefish/Makefile
blob: 2628d80c09cfbad12253ceab9cb80406b7fe76f2 (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
# Created by: Nicola Vitale <nivit@email.it>
# $FreeBSD$

PORTNAME=   winefish
DISTVERSION=    1.3.3
PORTREVISION=   13
CATEGORIES= editors print
MASTER_SITES=   http://download.berlios.de/winefish/ \
        http://nivi.interfree.it/distfiles/winefish/
EXTRACT_SUFX=   .tgz

MAINTAINER= nivit@FreeBSD.org
COMMENT=    LaTeX editor based on BlueFish

LIB_DEPENDS=    aspell.16:${PORTSDIR}/textproc/aspell \
        pcre.3:${PORTSDIR}/devel/pcre
RUN_DEPENDS=    dos2unix:${PORTSDIR}/converters/unix2dos \
        gv:${PORTSDIR}/print/gv \
        tidy:${PORTSDIR}/www/tidy-lib \
        xpdf:${PORTSDIR}/graphics/xpdf

MAN1=       winefish.1
MANCOMPRESSED=  no

CONFIGURE_ARGS+=    --with-freedesktop_org-menu=${GNOME_LOCALSTATEDIR}/applications --with-icon-path=${GNOME_LOCALSTATEDIR}/pixmaps
GNU_CONFIGURE=  yes
USES=       gmake pkgconfig
USE_GNOME=  libgnomeui desktopfileutils gnomehier
USE_TEX=    latex

OPTIONS_DEFINE= CONTEXT VNTEX UNIKEY_GTK NLS DOCS
CONTEXT_DESC=       ConTexT support (Experimental)
VNTEX_DESC=     Vietnamese TeX user
UNIKEY_GTK_DESC=    Vietname Tex user with UnikeyGTK input method

NO_STAGE=   yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MCONTEXT}
CONFIGURE_ARGS+=    --with-context
.endif

.if ${PORT_OPTIONS:MNLS}
USES+=  gettext
PLIST_SUB=  IFNLS=
# vietnamese support
.if ${PORT_OPTIONS:MUNIKEY_GTK} && !${PORT_OPTIONS:MVNTEX}
PORT_OPTIONS+=  VNTEX
.endif

.if ${PORT_OPTIONS:MVNTEX}
CONFIGURE_ARGS+=    --with-vntex
.if ${PORT_OPTIONS:MUNIKEY_GTK}
CONFIGURE_ARGS+=    --with-unikey-gtk
.endif
.endif
.else
CONFIGURE_ARGS+=    --disable-nls
PLIST_SUB=  IFNLS="@comment "
.endif

post-install:
    -@update-desktop-database
.if ! ${PORT_OPTIONS:MDOCS}
    ${RM} ${DOCSDIR}/${PORTNAME}.html
    ${RMDIR} ${DOCSDIR}
.endif

.include <bsd.port.mk>