1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/editors/tea/Makefile
Alexey Dokuchaev 42e68c2d39 - Update to version 33.3.0
- Convert to new OPTIONS syntax
- Drop indefinite article from COMMENT

Approved by:	davide (implicit due to inactivity)
2012-08-29 10:07:06 +00:00

46 lines
1007 B
Makefile

# New ports collection makefile for: TEA
# Date created: 13 Jul 2004
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
#
# $FreeBSD$
#
PORTNAME= tea
DISTVERSION= 33.3.0
CATEGORIES= editors
MASTER_SITES= SF/${PORTNAME}-editor/${PORTNAME}-editor/${PORTVERSION} \
http://semiletov.ho.ua/${PORTNAME}-releases/
MAINTAINER= davide.italiano@gmail.com
COMMENT= Simple and powerful Qt4-based text editor
LICENSE= GPLv3
USE_BZIP2= yes
USE_QT4= qmake_build moc_build rcc_build gui xml
PLIST_FILES= bin/${PORTNAME}
OPTIONS_DEFINE= ASPELL
OPTIONS_DEFAULT= ASPELL
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MASPELL}
LIB_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
QMAKEFLAGS= USE_ASPELL=true
.else
QMAKEFLAGS= USE_ASPELL=false
.endif
post-patch:
@${REINPLACE_CMD} -e '/aspell/s,/usr,${LOCALBASE},' ${WRKSRC}/src.pro
do-configure:
@cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} ${QMAKEFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.post.mk>