36 lines
789 B
Makefile
36 lines
789 B
Makefile
# $OpenBSD: Makefile,v 1.17 2012/11/22 10:45:46 landry Exp $
|
|
|
|
COMMENT = powerful and simple qt4 editor
|
|
|
|
V = 33.3.0
|
|
DISTNAME = tea-${V}
|
|
PKGNAME = teaqt-${V}
|
|
CATEGORIES = editors x11
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=tea-editor/}
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
HOMEPAGE = http://tea-editor.sf.net/
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
LIB_DEPENDS = textproc/aspell/core
|
|
WANTLIB += c m pthread stdc++ z QtGui QtXml aspell
|
|
WANTLIB += ICE SM X11 Xext Xi Xinerama Xrender fontconfig freetype
|
|
|
|
MODULES = x11/qt4
|
|
CONFIGURE_ENV = USE_ASPELL=true USE_HUNSPELL=false
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && qmake4
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/tea ${PREFIX}/bin/tea
|
|
|
|
.include <bsd.port.mk>
|