diff options
author | gahr <gahr@FreeBSD.org> | 2012-12-06 19:20:52 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2012-12-06 19:20:52 +0800 |
commit | 5cb3c6b49d3e138a4a3e71ba67f7daf56f46d104 (patch) | |
tree | dfd335ec8bada3677a150f376d8d50833c9a14e6 /editors | |
parent | ffdf976f2a3e6a7d00099681e623a1ce91eaa1a3 (diff) | |
download | freebsd-ports-gnome-5cb3c6b49d3e138a4a3e71ba67f7daf56f46d104.tar.gz freebsd-ports-gnome-5cb3c6b49d3e138a4a3e71ba67f7daf56f46d104.tar.zst freebsd-ports-gnome-5cb3c6b49d3e138a4a3e71ba67f7daf56f46d104.zip |
- Take maintainership
- Remove duplicate dependency (devel/dbus is implied by QT4 dbus component)
- Simplify do-configure target
- Remove article from COMMENT
Feature safe: yes
Diffstat (limited to 'editors')
-rw-r--r-- | editors/texworks/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/editors/texworks/Makefile b/editors/texworks/Makefile index 253784b482aa..0cdff0da76ac 100644 --- a/editors/texworks/Makefile +++ b/editors/texworks/Makefile @@ -7,12 +7,11 @@ PORTREVISION= 6 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -MAINTAINER= ports@FreeBSD.org -COMMENT= A simple TeX front-end program +MAINTAINER= gahr@FreeBSD.org +COMMENT= Simple TeX front-end program BUILD_DEPENDS= hunspell:${PORTSDIR}/textproc/hunspell -LIB_DEPENDS= poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \ - dbus:${PORTSDIR}/devel/dbus +LIB_DEPENDS= poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 USE_GMAKE= yes MAKE_JOBS_SAFE= yes @@ -31,13 +30,13 @@ PLIST_FILES= bin/texworks \ share/pixmaps/TeXworks.png post-patch: - @${RM} -f ${WRKSRC}/ui_*.h ${WRKSRC}/moc_*.cpp ${WRKSRC}/qrc_*.cpp @${REINPLACE_CMD} -e 's|\/usr\/share|\${LOCALBASE}\/share|g' ${WRKSRC}/src/TWUtils.cpp do-configure: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -spec ${QMAKESPEC} TeXworks.pro + @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${QMAKE} TeXworks.pro do-install: ${INSTALL_PROGRAM} ${WRKSRC}/texworks ${PREFIX}/bin/ ${INSTALL_DATA} ${WRKSRC}/res/images/TeXworks.png ${PREFIX}/share/pixmaps/TeXworks.png + .include <bsd.port.mk> |