diff options
author | makc <makc@FreeBSD.org> | 2013-11-22 20:55:00 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2013-11-22 20:55:00 +0800 |
commit | 612bc3c9c8698b6a8cdbb965267678a0ac829218 (patch) | |
tree | edc1328e7d68e649db202ae07c396b88869f73de /ftp/scythia/Makefile | |
parent | 83574ff9450fce1ff644a38992000262dfd6586b (diff) | |
download | freebsd-ports-gnome-612bc3c9c8698b6a8cdbb965267678a0ac829218.tar.gz freebsd-ports-gnome-612bc3c9c8698b6a8cdbb965267678a0ac829218.tar.zst freebsd-ports-gnome-612bc3c9c8698b6a8cdbb965267678a0ac829218.zip |
- Convert to USES=qmake (and other USES while I'm here)
- Add state support
- Convert LIB_DEPENDS to new style, adjust USE_QT4 components, etc.
Approved by: portmgr (blanket approval)
Diffstat (limited to 'ftp/scythia/Makefile')
-rw-r--r-- | ftp/scythia/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/ftp/scythia/Makefile b/ftp/scythia/Makefile index 16c2da295911..b0d3242a6829 100644 --- a/ftp/scythia/Makefile +++ b/ftp/scythia/Makefile @@ -12,7 +12,8 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}-2-src MAINTAINER= dhn@FreeBSD.org COMMENT= Small ftp client unpretentious based on Qt4 -USE_QT4= gui network corelib qmake_build uic_build moc_build rcc_build +USES= qmake +USE_QT4= gui network corelib uic_build moc_build rcc_build INSTALLS_ICONS= yes WRKSRC= ${WRKDIR}/${PORTNAME} @@ -25,9 +26,8 @@ DESKTOP_ENTRIES= "Scythia" \ "scythia" \ "scythia" \ "Network;FileTransfer;Qt;" \ - "false" + "true" -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ -e '/unix:desktop/d' \ @@ -35,8 +35,4 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ ${WRKSRC}/src/main.cpp -pre-build: - @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${MAKE_ENV} ${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX} scythia.pro - .include <bsd.port.mk> |