diff options
author | johans <johans@FreeBSD.org> | 2011-03-14 06:44:26 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2011-03-14 06:44:26 +0800 |
commit | 8281e1ffd749be5db60f5c475e44ffaa10c63c1e (patch) | |
tree | dfc9a7e5218eaea44cf07bc5c680c8b3ccb2ed4b /emulators | |
parent | 2fbae018c783f52e46d52c0b73ebfb378d7d76d2 (diff) | |
download | freebsd-ports-gnome-8281e1ffd749be5db60f5c475e44ffaa10c63c1e.tar.gz freebsd-ports-gnome-8281e1ffd749be5db60f5c475e44ffaa10c63c1e.tar.zst freebsd-ports-gnome-8281e1ffd749be5db60f5c475e44ffaa10c63c1e.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) |