0d2725682b
structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
45 lines
934 B
Makefile
45 lines
934 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: gnuboy
|
|
# Date created: Mar 11, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnuboy
|
|
PORTVERSION= 1.0.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= emulators games
|
|
MASTER_SITES= http://gnuboy.unix-fu.org/src/ \
|
|
http://brightrain.aerifal.cx/~laguna/src/
|
|
|
|
MAINTAINER= ijliao@FreeBSD.org
|
|
COMMENT= Nintendo GameBoy emulator
|
|
|
|
LIB_DEPENDS= vga.1:${PORTSDIR}/graphics/svgalib
|
|
|
|
USE_SDL= sdl
|
|
USE_XLIB= yes
|
|
USE_AUTOTOOLS= autoconf:259
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
|
|
CONFIGURE_ARGS= --with-sdl
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
PLIST_FILES= bin/sdlgnuboy bin/sgnuboy bin/xgnuboy
|
|
|
|
post-patch:
|
|
|
|
do-install:
|
|
.for file in sdlgnuboy sgnuboy xgnuboy
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|