aboutsummaryrefslogtreecommitdiff
path: root/editors/texmakerx/Makefile
blob: b44e0fd7f55417b514292117a06fb033ffdd5bd6 (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
# Created by: lx
# $FreeBSD$

PORTNAME=	texmakerx
PORTVERSION=	2.1
PORTREVISION=	4
CATEGORIES=	editors
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/TexMakerX%20${PORTVERSION}
DISTNAME=	${PORTNAME}-${PORTVERSION:S:.0::}

MAINTAINER=	lx@FreeBSD.org
COMMENT=	A LaTeX IDE derived from Texmaker

LIB_DEPENDS=	poppler:${PORTSDIR}/graphics/poppler \
		poppler-qt4:${PORTSDIR}/graphics/poppler-qt4
RUN_DEPENDS=	${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme

WRKSRC=	${WRKDIR}/${PORTNAME}${PORTVERSION}

USE_GHOSTSCRIPT=yes
USE_QT4=	gui network xml moc_build qmake_build rcc_build \
		uic_build qtestlib script
USE_TEX=	latex dvipsk
HAS_CONFIGURE=	yes
INSTALLS_ICONS=	yes
MAKE_JOBS_UNSAFE=	yes

OPTIONS_DEFINE=	XDVI GV
GV_DESC=	View ps files with gv
XDVI_DESC=	View dvi files with xdvi

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MXDVI}
RUN_DEPENDS+=	xdvi:${PORTSDIR}/print/xdvik
.endif

.if ${PORT_OPTIONS:MGV}
RUN_DEPENDS+=	gv:${PORTSDIR}/print/gv
.endif

post-patch:
	@${REINPLACE_CMD} -e 's,^\(utilities.path =\).*,\1 ${DATADIR},' \
		-e 's,/usr/include,${LOCALBASE}/include,g' \
		-e 's,/usr/lib,${LOCALBASE}/lib,g' \
		${WRKSRC}/${PORTNAME}.pro

do-configure:
	@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
		${QMAKE} PREFIX=${PREFIX} ${PORTNAME}.pro

.include <bsd.port.mk>