aboutsummaryrefslogtreecommitdiff
path: root/print/cjk-lyx/Makefile
blob: 9bb2cdd996886f5fe40b636a6614230e61f018dd (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# New ports collection makefile for:	cjk-lyx
# Date created:		Sa  12 Okt 1996 19:20:51 MET DST
# Whom:			Andreas Klemm <andreas@klemm.gtn.com>
#
# $FreeBSD$
#

PORTNAME=	lyx
PORTVERSION=	1.4.4
PORTREVISION=	2
CATEGORIES=	print chinese japanese korean
MASTER_SITES=	ftp://cellular.phys.pusan.ac.kr/CJK-LyX/qt/ \
		ftp://ftp.u-aizu.ac.jp/pub/tex/cjk-lyx/qt/ \
		http://www.otaru-uc.ac.jp/~yokota/comp/CJK-LyX/:JPN
PKGNAMEPREFIX=	cjk-
DISTNAME=	CJK-LyX-qt-${PORTVERSION}
DISTFILES=	${DISTNAME}-1.src${EXTRACT_SUFX} \
		lyx-platex-${PORTVERSION}.tar.gz:JPN
DIST_SUBDIR=	CJK-LyX
EXTRACT_ONLY=	${DISTNAME}-1.src${EXTRACT_SUFX} \
		lyx-platex-${PORTVERSION}.tar.gz

PATCH_SITES=	http://www.otaru-uc.ac.jp/~yokota/comp/CJK-LyX/
PATCHFILES=	patch-platex-${PORTVERSION}.diff

MAINTAINER=	yokota@res.otaru-uc.ac.jp
COMMENT=	Document processor interfaced with LaTeX (nearly WYSIWYG)

LIB_DEPENDS=	boost_regex:${PORTSDIR}/devel/boost \
		qt-mt:${PORTSDIR}/x11-toolkits/qt33
RUN_DEPENDS=	${X11BASE}/lib/X11/fonts/texcm-ttf/cmex10.ttf:${PORTSDIR}/x11-fonts/texcm-ttf

OPTIONS=	ASPELL	"Utilize ASPELL library"	on \
		ISPELL	"Depend on ISPELL as well"	off
.if defined(LANG) && ${LANG:C/_.*//} == "ja"
OPTIONS+=	JATETEX "Use pLaTeX (Japanese LaTeX)" ON
.else
OPTIONS+=	JATETEX "Use pLaTeX (Japanese LaTeX)" OFF
.endif

ALL_TARGET=	all check
USE_GNOME=	gnometarget lthack
USE_PERL5=	yes
USE_PYTHON=	yes
USE_GETTEXT=	yes
USE_GMAKE=	yes
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--with-extra-lib="${LOCALBASE}/lib" \
		--with-extra-inc="${LOCALBASE}/include" \
		--with-frontend=qt \
		--program-prefix="${PKGNAMEPREFIX}"
CONFIGURE_ENV+=	LDFLAGS=${PTHREAD_LIBS}
CFLAGS=		${PTHREAD_CFLAGS}
MAN1=		${PKGNAMEPREFIX}lyx.1 ${PKGNAMEPREFIX}tex2lyx.1 ${PKGNAMEPREFIX}lyxclient.1

DATADIR=	${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}

# Make uic stay off the lawn
MAKE_ENV=	TMPDIR=/tmp

post-extract:
	${MV} ${WRKSRC}/po/lyx.pot ${WRKSRC}/po/${PKGNAMEPREFIX}lyx.pot

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

post-install:
	@${ECHO_MSG}
	@${ECHO_MSG} "Type \"${PKGNAMEPREFIX}lyx\" to execute the program."
	@${ECHO_MSG}
	@${ECHO_MSG} "User setting folder will be created under ~/.${PKGNAMEPREFIX}lyx when ${PKGNAMEPREFIX}lyx is run for the first time."
	@${ECHO_MSG}
.include <bsd.port.pre.mk>

PLIST_SUB=	PKGNAMEPREFIX=${PKGNAMEPREFIX}

.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

# Choose appropriate settings for each LaTeX
.if defined(WITH_JATETEX)
BUILD_DEPENDS+=	latex:${PORTSDIR}/japanese/teTeX
RUN_DEPENDS+=	latex:${PORTSDIR}/japanese/teTeX
.else
BUILD_DEPENDS+=	latex:${PORTSDIR}/print/teTeX
RUN_DEPENDS+=	latex:${PORTSDIR}/print/teTeX
.endif

.include <bsd.port.post.mk>