blob: 8fa6e1c72f35e5d05f1338525da2ef96d527fa88 (
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
|
# Created by: Andreas Klemm <andreas@klemm.gtn.com>
# $FreeBSD$
PORTNAME= lyx
PORTVERSION= ${MAJOR_VERSION}.${MINOR_VERSION}
PORTREVISION= 3
CATEGORIES= print editors
MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/${MAJOR_VERSION}.x/ \
http://www-ftp.lip6.fr/ftp/pub/lyx/stable/${MAJOR_VERSION}.x/ \
ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/${MAJOR_VERSION}.x/ \
ftp://ftp.ntua.gr/pub/X11/LyX/stable/${MAJOR_VERSION}.x/ \
http://sunsite.icm.edu.pl/pub/unix/editors/lyx/stable/${MAJOR_VERSION}.x/ \
ftp://ftp.chg.ru/pub/X11/lyx/stable/${MAJOR_VERSION}.x/
MAINTAINER= rakuco@FreeBSD.org
COMMENT= Document processor interfaced with LaTeX (nearly WYSIWYG) (stable)
LICENSE= GPLv2
LIB_DEPENDS= boost_regex:${PORTSDIR}/devel/boost-libs
LATEST_LINK= lyx16
CONFLICTS= lyx-1.4* lyx-devel-* lyx-2*
MAJOR_VERSION= 1.6
MINOR_VERSION= 10
DEPRECATED= Unmaintained upstream, upgrading to the 2.x series is advised
EXPIRATION_DATE= 2013-07-11
USE_BZIP2= yes
USE_GMAKE= yes
USE_QT4= gui moc_build uic_build rcc_build
USE_PYTHON= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
CPPFLAGS+= ${PTHREAD_CFLAGS}
LDFLAGS+= ${PTHREAD_LIBS}
CONFIGURE_ARGS= --with-frontend=qt4 \
--without-included-boost \
--without-included-gettext \
--with-libiconv-prefix=${LOCALBASE} \
--with-extra-prefix=${LOCALBASE}
MAKE_JOBS_SAFE= yes
MAN1= lyx.1 lyxclient.1 tex2lyx.1
OPTIONS_DEFINE= ASPELL AIKSAUR NLS
OPTIONS_DEFAULT= ASPELL AIKSAUR NLS
AIKSAUR_DESC= Aiksaurus support (English thesaurus)
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MAIKSAUR}
LIB_DEPENDS+= Aiksaurus:${PORTSDIR}/textproc/aiksaurus
.else
CONFIGURE_ARGS+= --without-aiksaurus
.endif
.if ${PORT_OPTIONS:MASPELL}
LIB_DEPENDS+= aspell:${PORTSDIR}/textproc/aspell
CONFIGURE_ARGS+= --with-pspell \
--with-pspell-lib="${LOCALBASE}/lib" \
--with-pspell-include="${LOCALBASE}/include"
.else
CONFIGURE_ARGS+= --without-aspell --without-pspell
.endif
.if ! ${PORT_OPTIONS:MNLS}
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.else
USES+= gettext
PLIST_SUB+= NLS=""
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|