aboutsummaryrefslogtreecommitdiffstats
path: root/print/lyx14/Makefile
blob: 4c0c8e134f99f2bf1bce659b75437f9d087d536f (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
# New ports collection makefile for:    lyx
# Date created:     Sa  12 Okt 1996 19:20:51 MET DST
# Whom:         Andreas Klemm <andreas@klemm.gtn.com>
#
# $FreeBSD$
#

PORTNAME=   lyx
PORTVERSION=    1.3.6
CATEGORIES= print
MASTER_SITES=   ftp://ftp.lyx.org/pub/lyx/stable/ \
        ftp://planetmirror.com/pub/lyx/stable/ \
        http://www-ftp.lip6.fr/ftp/pub/lyx/stable/ \
        ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/

MAINTAINER= mi@aldan.algebra.com
COMMENT=    Document processor interfaced with LaTeX (nearly WYSIWYG)

BUILD_DEPENDS=  gm4:${PORTSDIR}/devel/m4 \
        latex:${PORTSDIR}/print/teTeX \
        makepsres:${X_CLIENTS_PORT}
RUN_DEPENDS=    gm4:${PORTSDIR}/devel/m4 \
        latex:${PORTSDIR}/print/teTeX

CONFLICTS=  cjk-lyx-*

OPTIONS=    QT  "Use Qt (instead of XForms)"    ${QT_PRESENT}   \
        ASPELL  "Utilize ASPELL library"    on  \
        ISPELL  "Depend on ISPELL as well"  off
USE_BZIP2=  yes
USE_GNOME=  gnometarget lthack
USE_PERL5=  yes
USE_PYTHON= yes
USE_GETTEXT=    yes
USE_GMAKE=  yes
GNU_CONFIGURE=  yes
EXTRACT_AFTER_ARGS=| ${TAR} -xf - --exclude ${PORTNAME}-${PORTVERSION}/intl/*.[ch]
CONFIGURE_ARGS= --with-extra-lib="${LOCALBASE}/lib" \
        --with-extra-inc="${LOCALBASE}/include"
MAKE_ARGS=  ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
        AUTOHEADER="${TRUE}"
MAN1=       lyx.1 reLyX.1
USE_REINPLACE=  yes

post-configure:
    # Removing explicit linking with -lc
    ${REINPLACE_CMD} -e 's,-lc ,,' ${WRKSRC}/*/Makefile

.include <bsd.port.pre.mk>

.if defined(WITH_QT)
LIB_DEPENDS+=   qt-mt:${PORTSDIR}/x11-toolkits/qt33
CONFIGURE_ARGS+=    --with-frontend=qt
CFLAGS+=    ${PTHREAD_CFLAGS}
CONFIGURE_ENV+= LDFLAGS=${PTHREAD_LIBS}
RUN_DEPENDS+=   ${X11BASE}/lib/X11/fonts/texcm-ttf/cmex10.ttf:${PORTSDIR}/x11-fonts/texcm-ttf
.else
LIB_DEPENDS+=   forms:${PORTSDIR}/x11-toolkits/xforms
USE_XPM=    yes
.endif

.if defined(WITH_ASPELL)
LIB_DEPENDS+=   aspell:${PORTSDIR}/textproc/aspell
CONFIGURE_ARGS+=    --with-pspell \
            --with-pspell-lib="${LOCALBASE}/lib" \
            --with-pspell-include="${LOCALBASE}/include"
.endif

.if defined(WITH_ISPELL)
RUN_DEPENDS+=   ispell:${PORTSDIR}/textproc/ispell
.endif

.if exists(${LOCALBASE}/lib/libqt-mt.prl)
QT_PRESENT= on
.else
QT_PRESENT= off
.endif

.if ${OSVERSION} < 500035
CFLAGS+=    -Wno-non-template-friend -ftemplate-depth-30
.endif

.include <bsd.port.post.mk>