- Restore DIST_SUBDIR from r305651 - Adjust license for "or later" clause - Restore GPLv2+/LGPL21+ license files removed upstream as GPLv3+/LGPL3+ only affects Hunspell 2.0 (not currently built) - Unbreak |make makepatch| Changes: https://github.com/hunspell/hunspell/releases/tag/v1.6.0 PR: 215714 Submitted by: sunpoet (based on) Exp-run by: antoine MFH: 2017Q1 Differential Revision: https://reviews.freebsd.org/D8887
34 lines
735 B
Makefile
34 lines
735 B
Makefile
# Created by: admin@mjbrune.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= textroom
|
|
PORTVERSION= 0.8.2
|
|
PORTREVISION= 9
|
|
CATEGORIES= editors
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Full screen text editor
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libhunspell-1.6.so:textproc/hunspell \
|
|
libxml++-2.6.so:textproc/libxml++26
|
|
|
|
USES= desktop-file-utils pkgconfig qmake
|
|
USE_GL= gl
|
|
USE_SDL= mixer
|
|
USE_QT4= moc_build rcc_build uic_build \
|
|
corelib gui opengl qt3support svg xml
|
|
|
|
post-patch:
|
|
.for i in getaword.cpp optionsdialog.cpp textroom.cpp
|
|
@${REINPLACE_CMD} -e \
|
|
's|/usr/share|${PREFIX}/share|' ${WRKSRC}/application/src/${i}
|
|
.endfor
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/textroom
|
|
|
|
.include <bsd.port.mk>
|