diff options
author | bsam <bsam@FreeBSD.org> | 2013-05-26 15:50:47 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2013-05-26 15:50:47 +0800 |
commit | 908c8a65cd819b98759428d94b7fb4c7b1d3b18f (patch) | |
tree | eab57dbd6e5e9f878de5ac143ded37523d366fc5 /textproc | |
parent | c0160ecacc5191b2e253eca118332049ca57f098 (diff) | |
download | freebsd-ports-gnome-908c8a65cd819b98759428d94b7fb4c7b1d3b18f.tar.gz freebsd-ports-gnome-908c8a65cd819b98759428d94b7fb4c7b1d3b18f.tar.zst freebsd-ports-gnome-908c8a65cd819b98759428d94b7fb4c7b1d3b18f.zip |
. be more declarative: WRKSRC=${WRKDIR} -> NO_WRKSUBDIR=yes;
. do not mute install command.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/goldendict/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/textproc/goldendict/Makefile b/textproc/goldendict/Makefile index 65f8b5c4cbd4..217432748365 100644 --- a/textproc/goldendict/Makefile +++ b/textproc/goldendict/Makefile @@ -18,14 +18,13 @@ LIB_DEPENDS= hunspell-1.3:${PORTSDIR}/textproc/hunspell \ vorbis:${PORTSDIR}/audio/libvorbis USE_BZIP2= yes +NO_WRKSUBDIR= yes HAS_CONFIGURE= yes USES= desktop-file-utils pkgconfig USE_XORG= xtst USE_QT4= corelib gui webkit phonon \ qmake_build linguist_build moc_build rcc_build script_build uic_build -WRKSRC= ${WRKDIR} - post-patch: @${SED} -I.bak -e "s:/usr:${PREFIX}:" ${WRKSRC}/redist/goldendict.desktop @@ -36,6 +35,6 @@ do-configure: post-install: @${MKDIR} ${DATADIR}/locale - @${INSTALL_DATA} ${WRKSRC}/locale/*.qm ${DATADIR}/locale/ + ${INSTALL_DATA} ${WRKSRC}/locale/*.qm ${DATADIR}/locale/ .include <bsd.port.mk> |