diff options
author | dillo <dillo> | 2004-07-26 17:05:05 +0000 |
---|---|---|
committer | dillo <dillo> | 2004-07-26 17:05:05 +0000 |
commit | 5f2db52a005881dbc4ee63b03f28b589daad9270 (patch) | |
tree | 499e03d112d169b488df7d9422034437fbf087fc /emulators/gnuboy-sdl/Makefile | |
parent | dcc5a63853b52f6dbfd127a0fe1ed062ec1a893f (diff) | |
download | pkgsrc-5f2db52a005881dbc4ee63b03f28b589daad9270.tar.gz |
SDL port of gnuboy, a Nintendo Gameboy / Gameboy Color emulator.
Diffstat (limited to 'emulators/gnuboy-sdl/Makefile')
-rw-r--r-- | emulators/gnuboy-sdl/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/emulators/gnuboy-sdl/Makefile b/emulators/gnuboy-sdl/Makefile new file mode 100644 index 00000000000..2834cd83ac2 --- /dev/null +++ b/emulators/gnuboy-sdl/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/07/26 17:05:05 dillo Exp $ + +DISTNAME= gnuboy-1.0.3 +PKGNAME= ${DISTNAME:S/-/-sdl-/} +CATEGORIES= emulators +MASTER_SITES= http://gnuboy.unix-fu.org/src/ + +MAINTAINER= dillo@NetBSD.org +HOMEPAGE= http://gnuboy.unix-fu.org/ +COMMENT= SDL port of Gameboy emulator + +GNU_CONFIGURE= yes +USE_X11= yes +USE_BUILDLINK3= yes +CONFIGURE_ARGS+=--with-sdl + +.include "../../devel/SDL/buildlink3.mk" + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gnuboy-sdl + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gnuboy-sdl + ${INSTALL_PROGRAM} ${WRKSRC}/sdlgnuboy ${PREFIX}/bin/gnuboy-sdl + ${INSTALL_DATA} ${WRKSRC}/etc/sample.rc \ + ${PREFIX}/share/examples/gnuboy-sdl/ + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/docs/* \ + ${PREFIX}/share/doc/gnuboy-sdl/ + +.include "../../mk/bsd.pkg.mk" |