diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2014-05-09 05:58:37 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2014-05-09 05:58:37 +0800 |
commit | 29ef8542d607ff55aea1e2a6b0d14353e524d789 (patch) | |
tree | 05cd74c950bddac8e68aad420ebbd613e2169b4c /sysutils | |
parent | c4be745e31702984b4caf866b22d42d3a41b2c4a (diff) | |
download | freebsd-ports-gnome-29ef8542d607ff55aea1e2a6b0d14353e524d789.tar.gz freebsd-ports-gnome-29ef8542d607ff55aea1e2a6b0d14353e524d789.tar.zst freebsd-ports-gnome-29ef8542d607ff55aea1e2a6b0d14353e524d789.zip |
- Support staging
- User new LIB_DEPENDS syntax
Approved by: portmgr (blanket)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/fusefs-exfat/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sysutils/fusefs-exfat/Makefile b/sysutils/fusefs-exfat/Makefile index 52793944040e..97a2520c3987 100644 --- a/sysutils/fusefs-exfat/Makefile +++ b/sysutils/fusefs-exfat/Makefile @@ -17,19 +17,17 @@ LICENSE_TEXT= Requires license from Microsoft, please see \ http://www.microsoft.com/en-us/legal/intellectualproperty/IPLicensing/Programs/exFATFileSystem.aspx LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell -LIB_DEPENDS= ublio:${PORTSDIR}/devel/libublio +LIB_DEPENDS= libublio.so:${PORTSDIR}/devel/libublio USES= fuse iconv USE_SCONS= yes -MAN8= mount.exfat-fuse.8 -PLIST_FILES= bin/mount.exfat-fuse bin/mount.exfat +PLIST_FILES= bin/mount.exfat-fuse bin/mount.exfat man/man8/mount.exfat-fuse.8.gz -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/fuse/mount.exfat-fuse ${PREFIX}/bin - ${LN} -s ${PREFIX}/bin/mount.exfat-fuse ${PREFIX}/bin/mount.exfat - ${INSTALL_MAN} ${WRKSRC}/fuse/${MAN8} ${MAN8PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/fuse/mount.exfat-fuse ${STAGEDIR}${PREFIX}/bin + ${LN} -s ${PREFIX}/bin/mount.exfat-fuse ${STAGEDIR}${PREFIX}/bin/mount.exfat + ${INSTALL_MAN} ${WRKSRC}/fuse/mount.exfat-fuse.8 ${STAGEDIR}${MAN8PREFIX}/man/man8 post-patch: @${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|' ${WRKSRC}/SConstruct |