diff options
author | bapt <bapt@FreeBSD.org> | 2014-07-15 02:42:04 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-07-15 02:42:04 +0800 |
commit | 2c6a3135268f227c2f016b08155f35b56c7fbd99 (patch) | |
tree | 3a1e4c5d813ec945366f43d48f94fa325ba0ead9 /www/links-hacked | |
parent | 92158ef1a1b16aa6f359266ab3492fc06838b525 (diff) | |
download | freebsd-ports-gnome-2c6a3135268f227c2f016b08155f35b56c7fbd99.tar.gz freebsd-ports-gnome-2c6a3135268f227c2f016b08155f35b56c7fbd99.tar.zst freebsd-ports-gnome-2c6a3135268f227c2f016b08155f35b56c7fbd99.zip |
Modernize LIB_DEPENDS
With hat: portmgr
Diffstat (limited to 'www/links-hacked')
-rw-r--r-- | www/links-hacked/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/links-hacked/Makefile b/www/links-hacked/Makefile index 5a12d9f37ed2..6f968713073e 100644 --- a/www/links-hacked/Makefile +++ b/www/links-hacked/Makefile @@ -10,8 +10,8 @@ MASTER_SITES= http://xray.sai.msu.ru/~karpov/links-hacked/downloads/ http://link MAINTAINER= peter@vereshagin.org COMMENT= Hacked version of a Links WWW browser -LIB_DEPENDS+= execinfo:${PORTSDIR}/devel/libexecinfo \ - gdbm:${PORTSDIR}/databases/gdbm +LIB_DEPENDS+= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ + libgdbm.so:${PORTSDIR}/databases/gdbm CONFLICTS= links-[0-9]* @@ -36,9 +36,9 @@ NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MSVGALIB} || ${PORT_OPTIONS:MX11} || ${PORT_OPTIONS:MDIRECTFB} -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png \ - jpeg.11:${PORTSDIR}/graphics/jpeg \ - tiff.4:${PORTSDIR}/graphics/tiff +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libtiff.so:${PORTSDIR}/graphics/tiff CONFIGURE_ARGS+= --enable-graphics .else CONFIGURE_ARGS+= --disable-graphics --without-libjpeg --without-libtiff |