9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
40 lines
1,013 B
Makefile
40 lines
1,013 B
Makefile
# $NetBSD: Makefile,v 1.11 2006/03/04 21:29:35 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= gcube-0.4-src
|
|
PKGNAME= ${DISTNAME:S/-src//}
|
|
PKGREVISION= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://gcube.exemu.net/downloads/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://gcube.exemu.net/
|
|
COMMENT= Opensource Nintendo GameCube(TM) emulator
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_TOOLS+= gmake
|
|
WRKSRC= ${WRKDIR}/0.4
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(MACHINE_ARCH:Mi386)
|
|
BUILD_DEPENDS+= nasm-[0-9]*:../../devel/nasm
|
|
CFLAGS+= -DASM_X86=1
|
|
.endif
|
|
|
|
INSTALLATION_DIRS= share/doc/${PKGBASE} bin
|
|
|
|
do-install:
|
|
.for prog in isopack gcube bin2dol gcmap tplx
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${prog} ${PREFIX}/bin
|
|
.endfor
|
|
.for f in README ChangeLog COPYING
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PKGBASE}
|
|
.endfor
|
|
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|