diff options
author | bapt <bapt@FreeBSD.org> | 2013-09-23 14:17:32 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-09-23 14:17:32 +0800 |
commit | ef6a2dd1fe1f09ad3ab3a3c7feabe8afa9c82ee3 (patch) | |
tree | 0e9b6183ed3175f57aab1aa5ddf64c7e4ca13395 /sysutils/ftwin | |
parent | 91c74becdf548fa10d292243e0a818b2acf5fa26 (diff) | |
download | freebsd-ports-gnome-ef6a2dd1fe1f09ad3ab3a3c7feabe8afa9c82ee3.tar.gz freebsd-ports-gnome-ef6a2dd1fe1f09ad3ab3a3c7feabe8afa9c82ee3.tar.zst freebsd-ports-gnome-ef6a2dd1fe1f09ad3ab3a3c7feabe8afa9c82ee3.zip |
Use stage
Modern LIB_DEPENDS
Diffstat (limited to 'sysutils/ftwin')
-rw-r--r-- | sysutils/ftwin/Makefile | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/sysutils/ftwin/Makefile b/sysutils/ftwin/Makefile index 8e645192b227..8a808fa2b8c9 100644 --- a/sysutils/ftwin/Makefile +++ b/sysutils/ftwin/Makefile @@ -7,32 +7,29 @@ CATEGORIES= sysutils MASTER_SITES= http://download.meroware.org/ftwin/ MAINTAINER= bapt@FreeBSD.org -COMMENT= A useful tool to find duplicate files +COMMENT= Useful tool to find duplicate files -LIB_DEPENDS= puzzle:${PORTSDIR}/graphics/libpuzzle \ - apr-1:${PORTSDIR}/devel/apr1 \ - pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpuzzle.so:${PORTSDIR}/graphics/libpuzzle \ + libapr-1.so:${PORTSDIR}/devel/apr1 \ + libpcre.so:${PORTSDIR}/devel/pcre + +OPTIONS_DEFINE= DOCS USE_BZIP2= yes GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf aclocal automake autoheader AUTOMAKE_ARGS= --add-missing CONFIGURE_ARGS+= --with-puzzle=${LOCALBASE} -PLIST_FILES= bin/ftwin - +PLIST_FILES= bin/ftwin \ + man/man8/ftwin.8.gz PORTDOCS= AUTHORS EXAMPLES TODO CHANGES KNOWN_BUGS VERSION LICENSE README -MAN8= ftwin.8 - -NO_STAGE= yes .include <bsd.port.options.mk> post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif .include <bsd.port.mk> |