diff options
author | ohauer <ohauer@FreeBSD.org> | 2013-10-15 03:42:48 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2013-10-15 03:42:48 +0800 |
commit | 76f4c096c79393169b85fbac554ad25ca491d6cd (patch) | |
tree | 10b5a306426d9726f728692c7751ecbb7ac4eaa0 /Mk | |
parent | 497cebdf8970fd9ec89de61284fc3a8764349ac8 (diff) | |
download | freebsd-ports-graphics-76f4c096c79393169b85fbac554ad25ca491d6cd.tar.gz freebsd-ports-graphics-76f4c096c79393169b85fbac554ad25ca491d6cd.tar.zst freebsd-ports-graphics-76f4c096c79393169b85fbac554ad25ca491d6cd.zip |
- use new LIB_DEPENDS notation in subversion ports
- use new LIB_DEPENDS notation in Mk/Uses to fix static svn building [1]
Approved by: portmgr (babt@) [1]
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/fuse.mk | 2 | ||||
-rw-r--r-- | Mk/Uses/gettext.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Uses/fuse.mk b/Mk/Uses/fuse.mk index 7309839efee..1ec2a29092c 100644 --- a/Mk/Uses/fuse.mk +++ b/Mk/Uses/fuse.mk @@ -16,7 +16,7 @@ _INCLUDE_USES_FUSE_MK= yes IGNORE= USES=fuse does not require args .endif -LIB_DEPENDS+= fuse:${PORTSDIR}/sysutils/fusefs-libs +LIB_DEPENDS+= libfuse.so:${PORTSDIR}/sysutils/fusefs-libs .if !exists(/sbin/mount_fusefs) || ${OSVERSION} < 1000019 RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod .endif diff --git a/Mk/Uses/gettext.mk b/Mk/Uses/gettext.mk index db93bd6de13..b2d25e35ed0 100644 --- a/Mk/Uses/gettext.mk +++ b/Mk/Uses/gettext.mk @@ -23,7 +23,7 @@ BUILD_DEPENDS+= ${_GETTEXT_DEPENDS} .elif ${gettext_ARGS} == "run" RUN_DEPENDS+= ${_GETTEXT_DEPENDS} .elif ${gettext_ARGS} == "lib" -LIB_DEPENDS+= intl:${PORTSDIR}/devel/gettext +LIB_DEPENDS+= libintl.so:${PORTSDIR}/devel/gettext .else IGNORE= USES=gettext - invalid args: [${gettext_ARGS}] specifed .endif |