diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2009-04-05 06:04:39 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2009-04-05 06:04:39 +0000 |
commit | b3d56bad895365de7514f1cd27a3f968230be595 (patch) | |
tree | 19eb844fcb8f531a855502820067a61f273cc9c1 /emulators/mame-devel/Makefile | |
parent | 8e3522ee36ebe31dee300eeb19a843e157c28416 (diff) | |
download | ports-b3d56bad895365de7514f1cd27a3f968230be595.tar.gz ports-b3d56bad895365de7514f1cd27a3f968230be595.zip |
- Finish repocopy of sdlmame-devel and update to version 0.130u1
PR: ports/128558
Submitted by: Emmanuel Vadot <elbarto@arcadebsd.org>
Notes
Notes:
svn path=/head/; revision=231627
Diffstat (limited to 'emulators/mame-devel/Makefile')
-rw-r--r-- | emulators/mame-devel/Makefile | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/emulators/mame-devel/Makefile b/emulators/mame-devel/Makefile index b08dccff1688..e1f9d4e2bdf0 100644 --- a/emulators/mame-devel/Makefile +++ b/emulators/mame-devel/Makefile @@ -5,13 +5,12 @@ # $FreeBSD$ # -PORTNAME= sdlmame -PORTVERSION= 0.130 -PORTREVISION= 1 +PORTNAME= sdlmame-devel +PORTVERSION= 0.130u1 CATEGORIES= emulators MASTER_SITES= ftp://ftp.arcadebsd.org/pub/FreeBSD/ports/distfiles/ \ http://rbelmont.mameworld.info/ -DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} +DISTNAME= sdlmame${PORTVERSION:S/.//} MAINTAINER= elbarto@ArcadeBSD.org COMMENT= SDL port of the popular MAME (Multi Arcade Machine Emulator) @@ -32,14 +31,12 @@ OPTIONS= DEBUG "Build sdlmame debugger" off .include <bsd.port.pre.mk> -.if defined(WITH_DEBUG) -EXTRA_PATCHES+= ${FILESDIR}/sdl.mak.patch-debug -.else +.if !defined(WITH_DEBUG) USE_GNOME= # EXTRA_PATCHES+= ${FILESDIR}/sdl.mak.patch .endif -MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAFE= yes .if ${ARCH} == "amd64" MAKE_ENV+= PTR64=1 @@ -53,11 +50,10 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ - ${MKDIR} ${PREFIX}/libexec/sdlmame - ${INSTALL_PROGRAM} ${WRKSRC}/chdman ${PREFIX}/libexec/sdlmame - ${INSTALL_PROGRAM} ${WRKSRC}/ldresample ${PREFIX}/libexec/sdlmame - ${INSTALL_PROGRAM} ${WRKSRC}/ldverify ${PREFIX}/libexec/sdlmame - ${INSTALL_PROGRAM} ${WRKSRC}/testkeys ${PREFIX}/libexec/sdlmame + ${MKDIR} ${PREFIX}/libexec/${PORTNAME} +.for f in chdman ldresample ldverify testkeys + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/libexec/${PORTNAME} +.endfor .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} |