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.
35 lines
1 KiB
Makefile
35 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2006/03/04 21:29:35 jlam Exp $
|
|
|
|
DISTNAME= mmix-20030622
|
|
PKGREVISION= 3
|
|
CATEGORIES= emulators devel lang
|
|
MASTER_SITES= http://www-cs-faculty.stanford.edu/~knuth/programs/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www-cs-faculty.stanford.edu/~knuth/mmix.html
|
|
COMMENT= Simulators for Knuth's MMIX RISC architecture
|
|
|
|
TEX_DEPMETHOD= build
|
|
TEX_ACCEPTED= teTeX1 teTeX2 teTeX3
|
|
.include "../../mk/tex.buildlink3.mk"
|
|
.if (${TEX_TYPE} == "teTeX1")
|
|
# mmix depends on cweb, so we need to also provide it when using teTeX1
|
|
BUILD_DEPENDS+= cweb-[0-9]*:../../devel/cweb
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
BUILD_TARGET= all doc
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_PROGRAM} abstime mmix mmixal \
|
|
mmmix mmotype ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mmix
|
|
cd ${WRKSRC} && ${INSTALL_DATA} README *.ps \
|
|
${PREFIX}/share/doc/mmix
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mmix
|
|
cd ${WRKSRC} && ${INSTALL_DATA} *.mms *.mmix *.mmconfig \
|
|
${PREFIX}/share/examples/mmix
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|