diff options
author | bapt <bapt@FreeBSD.org> | 2014-07-14 07:23:25 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-07-14 07:23:25 +0800 |
commit | 7244029e548a8568a25201a0e345fd4bc5e9ec5b (patch) | |
tree | 255b3b2c0cd318aabd72e99ccb876cde204de6b7 /games/mangband | |
parent | 1fed79fe4ffe7f3c5ecea1df8a93b6926106b4b6 (diff) | |
download | freebsd-ports-gnome-7244029e548a8568a25201a0e345fd4bc5e9ec5b.tar.gz freebsd-ports-gnome-7244029e548a8568a25201a0e345fd4bc5e9ec5b.tar.zst freebsd-ports-gnome-7244029e548a8568a25201a0e345fd4bc5e9ec5b.zip |
Modernize LIB_DEPENDS
With hat: portmgr
Diffstat (limited to 'games/mangband')
-rw-r--r-- | games/mangband/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/mangband/Makefile b/games/mangband/Makefile index 388461e9e1b2..0da8a4816fd6 100644 --- a/games/mangband/Makefile +++ b/games/mangband/Makefile @@ -33,14 +33,14 @@ CONFIGURE_ARGS+= --without-gcu .endif .if ${PORT_OPTIONS:MX11} -LIB_DEPENDS+= X11.6:${PORTSDIR}/x11/libX11 +LIB_DEPENDS+= libX11.so:${PORTSDIR}/x11/libX11 CONFIGURE_ARGS+= --with-x11 .else CONFIGURE_ARGS+= --without-x11 .endif .if ${PORT_OPTIONS:MSDL} -LIB_DEPENDS+= SDL-1.2:${PORTSDIR}/devel/sdl12 +LIB_DEPENDS+= libSDL-1.2.so:${PORTSDIR}/devel/sdl12 CONFIGURE_ARGS+= --with-sdl .else CONFIGURE_ARGS+= --without-sdl |