diff options
author | bapt <bapt@FreeBSD.org> | 2014-07-01 22:24:47 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-07-01 22:24:47 +0800 |
commit | e70c754d356a7e958a6b7b91efadda5e98120fe7 (patch) | |
tree | ba693709187c3bfb4a99ca977c1d972cb4928f96 | |
parent | e68d062b853e698020ca98903042ae39bc9b731d (diff) | |
download | freebsd-ports-gnome-e70c754d356a7e958a6b7b91efadda5e98120fe7.tar.gz freebsd-ports-gnome-e70c754d356a7e958a6b7b91efadda5e98120fe7.tar.zst freebsd-ports-gnome-e70c754d356a7e958a6b7b91efadda5e98120fe7.zip |
Use modern LIB_DEPENDS
With hat: portmgr
-rw-r--r-- | editors/emacs23/Makefile | 2 | ||||
-rw-r--r-- | editors/setedit/Makefile | 6 | ||||
-rw-r--r-- | editors/winefish/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/editors/emacs23/Makefile b/editors/emacs23/Makefile index 0944c1362167..8f6b0420b0e7 100644 --- a/editors/emacs23/Makefile +++ b/editors/emacs23/Makefile @@ -75,7 +75,7 @@ OPTIONS_DEFAULT=DBUS GCONF GIF GTK2 JPEG M17N OTF PNG SOUND SOURCES SVG TIFF SYN OPTIONS_SUB= SOURCES -DBUS_LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus +DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus DBUS_CONFIGURE_WITH= dbus SOUND_CONFIGURE_WITH= sound diff --git a/editors/setedit/Makefile b/editors/setedit/Makefile index a41c6ea21c39..cafa3200d2b6 100644 --- a/editors/setedit/Makefile +++ b/editors/setedit/Makefile @@ -11,7 +11,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-4 MAINTAINER= exile@chamber.ee COMMENT= Programmer's editor with a nice Text User Interface (TUI) -LIB_DEPENDS= rhtv.2:${PORTSDIR}/devel/rhtvision +LIB_DEPENDS= librhtv.so:${PORTSDIR}/devel/rhtvision BROKEN= Does not build MAKE_JOBS_UNSAFE= yes @@ -62,14 +62,14 @@ PLIST_FILES= share/locale/es/LC_MESSAGES/setedit.mo \ .endif .if ${PORT_OPTIONS:MAALIB} -LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib +LIB_DEPENDS+= libaa.so:${PORTSDIR}/graphics/aalib CONFIGURE_ARGS+= --with-aa .else CONFIGURE_ARGS+= --without-aa .endif .if ${PORT_OPTIONS:MELECTRIC} -LIB_DEPENDS+= efence.0:${PORTSDIR}/devel/ElectricFence +LIB_DEPENDS+= libefence.so:${PORTSDIR}/devel/ElectricFence CONFIGURE_ARGS+= --with-efence .endif diff --git a/editors/winefish/Makefile b/editors/winefish/Makefile index 2628d80c09cf..3b81934c5d9b 100644 --- a/editors/winefish/Makefile +++ b/editors/winefish/Makefile @@ -12,8 +12,8 @@ EXTRACT_SUFX= .tgz MAINTAINER= nivit@FreeBSD.org COMMENT= LaTeX editor based on BlueFish -LIB_DEPENDS= aspell.16:${PORTSDIR}/textproc/aspell \ - pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libaspell.so:${PORTSDIR}/textproc/aspell \ + libpcre.so:${PORTSDIR}/devel/pcre RUN_DEPENDS= dos2unix:${PORTSDIR}/converters/unix2dos \ gv:${PORTSDIR}/print/gv \ tidy:${PORTSDIR}/www/tidy-lib \ |