1996-10-15 22:49:27 +02:00
|
|
|
# New ports collection makefile for: lyx
|
|
|
|
# Date created: Sa 12 Okt 1996 19:20:51 MET DST
|
|
|
|
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
|
|
|
#
|
1999-08-31 03:53:22 +02:00
|
|
|
# $FreeBSD$
|
1996-10-15 22:49:27 +02:00
|
|
|
#
|
|
|
|
|
2000-04-09 19:50:59 +02:00
|
|
|
PORTNAME= lyx
|
2005-09-13 07:53:16 +02:00
|
|
|
PORTVERSION= 1.3.6
|
1996-11-17 09:45:20 +01:00
|
|
|
CATEGORIES= print
|
2000-03-12 20:30:22 +01:00
|
|
|
MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \
|
2004-05-30 21:35:54 +02:00
|
|
|
ftp://planetmirror.com/pub/lyx/stable/ \
|
|
|
|
http://www-ftp.lip6.fr/ftp/pub/lyx/stable/ \
|
2000-03-12 20:30:22 +01:00
|
|
|
ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/
|
1996-10-15 22:49:27 +02:00
|
|
|
|
2005-09-13 07:53:16 +02:00
|
|
|
MAINTAINER= mi@aldan.algebra.com
|
2003-02-21 14:28:59 +01:00
|
|
|
COMMENT= Document processor interfaced with LaTeX (nearly WYSIWYG)
|
1996-10-16 01:41:41 +02:00
|
|
|
|
2002-08-01 16:24:58 +02:00
|
|
|
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
|
2004-03-07 17:46:12 +01:00
|
|
|
latex:${PORTSDIR}/print/teTeX \
|
2004-07-23 21:10:32 +02:00
|
|
|
makepsres:${X_CLIENTS_PORT}
|
2002-09-20 05:25:03 +02:00
|
|
|
RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
|
|
|
|
latex:${PORTSDIR}/print/teTeX
|
|
|
|
|
2004-03-05 14:40:55 +01:00
|
|
|
CONFLICTS= cjk-lyx-*
|
|
|
|
|
2005-09-13 07:53:16 +02:00
|
|
|
OPTIONS= QT "Use Qt (instead of XForms)" ${QT_PRESENT} \
|
|
|
|
ASPELL "Utilize ASPELL library" on \
|
|
|
|
ISPELL "Depend on ISPELL as well" off
|
2003-05-07 08:05:08 +02:00
|
|
|
USE_BZIP2= yes
|
2004-03-05 14:40:55 +01:00
|
|
|
USE_GNOME= gnometarget lthack
|
2002-09-20 05:25:03 +02:00
|
|
|
USE_PERL5= yes
|
2003-05-07 08:05:08 +02:00
|
|
|
USE_PYTHON= yes
|
2004-03-05 14:40:55 +01:00
|
|
|
USE_GETTEXT= yes
|
2002-09-20 05:25:03 +02:00
|
|
|
USE_GMAKE= yes
|
2005-09-13 07:53:16 +02:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
EXTRACT_AFTER_ARGS=| ${TAR} -xf - --exclude ${PORTNAME}-${PORTVERSION}/intl/*.[ch]
|
2002-10-07 03:21:23 +02:00
|
|
|
CONFIGURE_ARGS= --with-extra-lib="${LOCALBASE}/lib" \
|
|
|
|
--with-extra-inc="${LOCALBASE}/include"
|
2003-01-25 22:38:10 +01:00
|
|
|
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
|
|
|
|
AUTOHEADER="${TRUE}"
|
2002-09-20 05:25:03 +02:00
|
|
|
MAN1= lyx.1 reLyX.1
|
2005-09-13 07:53:16 +02:00
|
|
|
USE_REINPLACE= yes
|
|
|
|
|
|
|
|
post-configure:
|
|
|
|
# Removing explicit linking with -lc
|
|
|
|
${REINPLACE_CMD} -e 's,-lc ,,' ${WRKSRC}/*/Makefile
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
2002-08-01 16:24:58 +02:00
|
|
|
|
2003-02-18 20:22:06 +01:00
|
|
|
.if defined(WITH_QT)
|
2005-09-13 07:53:16 +02:00
|
|
|
LIB_DEPENDS+= qt-mt:${PORTSDIR}/x11-toolkits/qt33
|
2003-02-18 20:22:06 +01:00
|
|
|
CONFIGURE_ARGS+= --with-frontend=qt
|
2005-09-13 07:53:16 +02:00
|
|
|
CFLAGS+= ${PTHREAD_CFLAGS}
|
|
|
|
CONFIGURE_ENV+= LDFLAGS=${PTHREAD_LIBS}
|
2005-03-09 07:42:53 +01:00
|
|
|
RUN_DEPENDS+= ${X11BASE}/lib/X11/fonts/texcm-ttf/cmex10.ttf:${PORTSDIR}/x11-fonts/texcm-ttf
|
2003-02-18 20:22:06 +01:00
|
|
|
.else
|
2005-09-13 07:53:16 +02:00
|
|
|
LIB_DEPENDS+= forms:${PORTSDIR}/x11-toolkits/xforms
|
2003-02-18 20:22:06 +01:00
|
|
|
USE_XPM= yes
|
|
|
|
.endif
|
|
|
|
|
2002-08-01 16:24:58 +02:00
|
|
|
.if defined(WITH_ASPELL)
|
2005-09-13 07:53:16 +02:00
|
|
|
LIB_DEPENDS+= aspell:${PORTSDIR}/textproc/aspell
|
2002-10-07 03:21:23 +02:00
|
|
|
CONFIGURE_ARGS+= --with-pspell \
|
|
|
|
--with-pspell-lib="${LOCALBASE}/lib" \
|
|
|
|
--with-pspell-include="${LOCALBASE}/include"
|
2002-08-01 16:24:58 +02:00
|
|
|
.endif
|
|
|
|
|
1998-08-01 11:07:02 +02:00
|
|
|
.if defined(WITH_ISPELL)
|
|
|
|
RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell
|
|
|
|
.endif
|
2002-08-01 16:24:58 +02:00
|
|
|
|
2005-10-12 23:02:55 +02:00
|
|
|
.if exists(${X11BASE}/lib/libqt-mt.prl)
|
2005-09-13 07:53:16 +02:00
|
|
|
QT_PRESENT= on
|
|
|
|
.else
|
|
|
|
QT_PRESENT= off
|
|
|
|
.endif
|
2003-02-18 20:22:06 +01:00
|
|
|
|
|
|
|
.if ${OSVERSION} < 500035
|
2003-11-06 22:55:29 +01:00
|
|
|
CFLAGS+= -Wno-non-template-friend -ftemplate-depth-30
|
2003-02-18 20:22:06 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|