diff options
author | Johan van Selst <johans@FreeBSD.org> | 2011-03-14 06:44:26 +0800 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2011-03-14 06:44:26 +0800 |
commit | 9fd73fb59ae44c2e2cdab194f354b961505ca67a (patch) | |
tree | 72d8ffe41aad249640bc9cc5fe98226ff477ac5c /emulators | |
parent | daee81b35458026402dce1660b741a650c0f6219 (diff) | |
download | freebsd-ports-gnome-9fd73fb59ae44c2e2cdab194f354b961505ca67a.tar.gz freebsd-ports-gnome-9fd73fb59ae44c2e2cdab194f354b961505ca67a.tar.zst freebsd-ports-gnome-9fd73fb59ae44c2e2cdab194f354b961505ca67a.zip |
- Remove dependencies that are no longer used (jack, sdl_image)
- Add hidden dependencies introduced in 0.8.0 (ogg, vorbis, theora)
- Up tcl version requirement to 8.5 (won't work well with older tcl)
- Bump PORTREVISION
Reported by: Maarten ter Huurne <maarten@treewalker.org>
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/openmsx/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/emulators/openmsx/Makefile b/emulators/openmsx/Makefile index 604e29ab1e16..781cefd99579 100644 --- a/emulators/openmsx/Makefile +++ b/emulators/openmsx/Makefile @@ -6,7 +6,8 @@ # PORTNAME= openmsx -DISTVERSION= 0.8.1 +PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= SF @@ -14,8 +15,10 @@ MAINTAINER= johans@FreeBSD.org COMMENT= Open source MSX emulator LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 \ - jack:${PORTSDIR}/audio/jack \ - png:${PORTSDIR}/graphics/png + png:${PORTSDIR}/graphics/png \ + ogg:${PORTSDIR}/audio/libogg \ + vorbis:${PORTSDIR}/audio/libvorbis \ + theora:${PORTSDIR}/multimedia/libtheora MAKE_ARGS+= INSTALL_BINARY_DIR=${PREFIX}/bin \ INSTALL_SHARE_DIR=${DATADIR} \ @@ -25,8 +28,8 @@ MAKE_ARGS+= INSTALL_BINARY_DIR=${PREFIX}/bin \ MAKEFILE= GNUmakefile USE_GL= glew USE_GMAKE= yes -USE_TCL= 84+ -USE_SDL= sdl image ttf +USE_TCL= 85+ +USE_SDL= sdl ttf USE_PYTHON= 2.5+ .ifdef(NOPORTDOCS) |