aboutsummaryrefslogtreecommitdiffstats
path: root/emulators
diff options
context:
space:
mode:
authorantoine <antoine@FreeBSD.org>2014-12-26 03:04:25 +0800
committerantoine <antoine@FreeBSD.org>2014-12-26 03:04:25 +0800
commit8dc323dc2bd29f0219de5776d0c246c80eba274e (patch)
tree1ab8a61c390fb88b46b924e62465cf67b9cc354f /emulators
parent25c80782c536ce329491182eaac8df1c164c4f79 (diff)
downloadfreebsd-ports-graphics-8dc323dc2bd29f0219de5776d0c246c80eba274e.tar.gz
freebsd-ports-graphics-8dc323dc2bd29f0219de5776d0c246c80eba274e.tar.zst
freebsd-ports-graphics-8dc323dc2bd29f0219de5776d0c246c80eba274e.zip
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
Diffstat (limited to 'emulators')
-rw-r--r--emulators/atari800/Makefile2
-rw-r--r--emulators/dosbox/Makefile2
-rw-r--r--emulators/fuse/Makefile2
-rw-r--r--emulators/hatari/Makefile2
-rw-r--r--emulators/mupen64plus-core/Makefile.common4
-rw-r--r--emulators/nonpareil/Makefile2
-rw-r--r--emulators/openmsx/Makefile2
-rw-r--r--emulators/qemu-devel/Makefile2
-rw-r--r--emulators/raine/Makefile2
-rw-r--r--emulators/snes9x-gtk/Makefile2
-rw-r--r--emulators/stella/Makefile2
-rw-r--r--emulators/vba/Makefile2
-rw-r--r--emulators/vice/Makefile2
-rw-r--r--emulators/visualboyadvance-m/Makefile2
-rw-r--r--emulators/wine-devel/Makefile2
-rw-r--r--emulators/wine/Makefile2
16 files changed, 17 insertions, 17 deletions
diff --git a/emulators/atari800/Makefile b/emulators/atari800/Makefile
index 046147def18..56f73286740 100644
--- a/emulators/atari800/Makefile
+++ b/emulators/atari800/Makefile
@@ -18,7 +18,7 @@ COMMENT= Atari 8-bit computer emulator
LICENSE= GPLv2
BUILD_DEPENDS= ${UNZIP_CMD}:${PORTSDIR}/archivers/unzip
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
RESTRICTED= xf25 contains copyright ROMs and cannot be distributed.
diff --git a/emulators/dosbox/Makefile b/emulators/dosbox/Makefile
index 4b5c66dc030..9cad5699823 100644
--- a/emulators/dosbox/Makefile
+++ b/emulators/dosbox/Makefile
@@ -12,7 +12,7 @@ COMMENT= Emulator of a PC with DOS
LICENSE= GPLv2
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
GNU_CONFIGURE= yes
USE_SDL= sdl net sound
diff --git a/emulators/fuse/Makefile b/emulators/fuse/Makefile
index dafb985fdc0..92ff600f6eb 100644
--- a/emulators/fuse/Makefile
+++ b/emulators/fuse/Makefile
@@ -13,7 +13,7 @@ COMMENT= Free Unix (Sinclair ZX-)Spectrum Emulator
LICENSE= GPLv2
LIB_DEPENDS= libspectrum.so:${PORTSDIR}/emulators/libspectrum \
- libpng15.so:${PORTSDIR}/graphics/png \
+ libpng.so:${PORTSDIR}/graphics/png \
libgcrypt.so:${PORTSDIR}/security/libgcrypt
GNU_CONFIGURE= yes
diff --git a/emulators/hatari/Makefile b/emulators/hatari/Makefile
index b387fafe39e..a7cf7931bcd 100644
--- a/emulators/hatari/Makefile
+++ b/emulators/hatari/Makefile
@@ -14,7 +14,7 @@ COMMENT= Atari ST emulator
LICENSE= GPLv2 # (or later)
BUILD_DEPENDS= portaudio2>0:${PORTSDIR}/audio/portaudio2
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
RUN_DEPENDS= portaudio2>0:${PORTSDIR}/audio/portaudio2
USES= cmake readline tar:bzip2
diff --git a/emulators/mupen64plus-core/Makefile.common b/emulators/mupen64plus-core/Makefile.common
index 9ade5635797..7505cfe3b12 100644
--- a/emulators/mupen64plus-core/Makefile.common
+++ b/emulators/mupen64plus-core/Makefile.common
@@ -11,13 +11,13 @@ EXTRACT_AFTER_ARGS?= "${DISTNAME}/source/${PORTNAME}-core/*" \
.if ${PKGNAMESUFFIX} == "-core"
LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 \
- libpng15.so:${PORTSDIR}/graphics/png
+ libpng.so:${PORTSDIR}/graphics/png
.else
PLIST= ${WRKDIR}/pkg-plist
.endif
.if ${PKGNAMESUFFIX} == "-video-rice"
-LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS+= libpng.so:${PORTSDIR}/graphics/png
.endif
.if ${PKGNAMESUFFIX} == "-video-glide64mk"
diff --git a/emulators/nonpareil/Makefile b/emulators/nonpareil/Makefile
index 0c42bdd5f93..f2ea41dac62 100644
--- a/emulators/nonpareil/Makefile
+++ b/emulators/nonpareil/Makefile
@@ -13,7 +13,7 @@ COMMENT= Simulator for many HP calculators
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
USES= bison pkgconfig scons
USE_GNOME= gtk20 libxml2
diff --git a/emulators/openmsx/Makefile b/emulators/openmsx/Makefile
index 27f11863558..b7ad9f78932 100644
--- a/emulators/openmsx/Makefile
+++ b/emulators/openmsx/Makefile
@@ -9,7 +9,7 @@ MASTER_SITES= SF
MAINTAINER= johans@FreeBSD.org
COMMENT= Open source MSX emulator
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \
libogg.so:${PORTSDIR}/audio/libogg \
libvorbis.so:${PORTSDIR}/audio/libvorbis \
libtheora.so:${PORTSDIR}/multimedia/libtheora \
diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile
index 21169551481..1bdec3247d7 100644
--- a/emulators/qemu-devel/Makefile
+++ b/emulators/qemu-devel/Makefile
@@ -220,7 +220,7 @@ LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg
.if empty(PORT_OPTIONS:MPNG)
CONFIGURE_ARGS+= --disable-vnc-png
.else
-LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS+= libpng.so:${PORTSDIR}/graphics/png
.endif
.if empty(PORT_OPTIONS:MCURL)
diff --git a/emulators/raine/Makefile b/emulators/raine/Makefile
index 7e3586714ce..c083c7e1da1 100644
--- a/emulators/raine/Makefile
+++ b/emulators/raine/Makefile
@@ -14,7 +14,7 @@ COMMENT= Arcade Emulator for M68000, M68020 and Z80 based hardware
LICENSE= ART10
BUILD_DEPENDS= nasm>0:${PORTSDIR}/devel/nasm
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
diff --git a/emulators/snes9x-gtk/Makefile b/emulators/snes9x-gtk/Makefile
index f6aab2de6c5..50dce9f74f4 100644
--- a/emulators/snes9x-gtk/Makefile
+++ b/emulators/snes9x-gtk/Makefile
@@ -12,7 +12,7 @@ DISTNAME= snes9x-1.53-src
MAINTAINER= root@cooltrainer.org
COMMENT= Super Nintendo Entertainment System(SNES) Emulator
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
USE_XORG= x11 sm ice xext
USES= gettext gmake perl5 desktop-file-utils pkgconfig tar:bzip2
diff --git a/emulators/stella/Makefile b/emulators/stella/Makefile
index c2508e51afd..44535abaa83 100644
--- a/emulators/stella/Makefile
+++ b/emulators/stella/Makefile
@@ -11,7 +11,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= acm@FreeBSD.org
COMMENT= Multi-platform Atari 2600 VCS emulator
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
diff --git a/emulators/vba/Makefile b/emulators/vba/Makefile
index 3e4551c7222..8a5b970e22b 100644
--- a/emulators/vba/Makefile
+++ b/emulators/vba/Makefile
@@ -14,7 +14,7 @@ COMMENT= Open source Gameboy Advance emulator
LICENSE= GPLv2
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
USES= gettext gmake
GNU_CONFIGURE= yes
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile
index 0e04a4c9f18..86af76bcbd0 100644
--- a/emulators/vice/Makefile
+++ b/emulators/vice/Makefile
@@ -17,7 +17,7 @@ LICENSE= GPLv2
BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \
mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \
mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \
libgif.so:${PORTSDIR}/graphics/giflib \
libmp3lame.so:${PORTSDIR}/audio/lame \
libavcodec.so:${PORTSDIR}/multimedia/ffmpeg
diff --git a/emulators/visualboyadvance-m/Makefile b/emulators/visualboyadvance-m/Makefile
index 692bc846576..b0d971e8baf 100644
--- a/emulators/visualboyadvance-m/Makefile
+++ b/emulators/visualboyadvance-m/Makefile
@@ -12,7 +12,7 @@ COMMENT= Game Boy Advance emulator with GTK frontend
LICENSE= GPLv2
-LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
+LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
OPTIONS_DEFINE= NLS FFMPEG LINK LIRC DEBUGGER
OPTIONS_MULTI= INTERFACE
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile
index 8ed8bd01553..da8d19a230d 100644
--- a/emulators/wine-devel/Makefile
+++ b/emulators/wine-devel/Makefile
@@ -98,7 +98,7 @@ X11_LIB_DEPENDS= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \
libfreetype.so:${PORTSDIR}/print/freetype2 \
libjpeg.so:${PORTSDIR}/graphics/jpeg \
liblcms2.so:${PORTSDIR}/graphics/lcms2 \
- libpng15.so:${PORTSDIR}/graphics/png
+ libpng.so:${PORTSDIR}/graphics/png
PORTDATA= l_intl.nls wine.inf
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile
index e3e72fdccd2..88d54495941 100644
--- a/emulators/wine/Makefile
+++ b/emulators/wine/Makefile
@@ -21,7 +21,7 @@ LIB_DEPENDS= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \
libfreetype.so:${PORTSDIR}/print/freetype2 \
libjpeg.so:${PORTSDIR}/graphics/jpeg \
liblcms2.so:${PORTSDIR}/graphics/lcms2 \
- libpng15.so:${PORTSDIR}/graphics/png \
+ libpng.so:${PORTSDIR}/graphics/png \
libxml2.so:${PORTSDIR}/textproc/libxml2
CONFLICTS_INSTALL= i386-wine-[0-9]* i386-wine-devel-[0-9]* wine-devel-[0-9]*