diff options
Diffstat (limited to 'emulators/xmame/Makefile')
-rw-r--r-- | emulators/xmame/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile new file mode 100644 index 0000000..9292381 --- /dev/null +++ b/emulators/xmame/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: xmame +# Version required: 0.30.1 +# Date created: 8 Feb 1998 +# Whom: Donald Burr <dburr@POBoxes.com> +# +# $Id$ +# + +DISTNAME= xmame-0.30.1_src +PKGNAME= xmame-0.30.1 +CATEGORIES= emulators +MASTER_SITES= ftp://drake.dit.upm.es/pub/emulators/mame/ +EXTRACT_SUFX= .tgz + +MAINTAINER= dburr@POBoxes.com + +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm + +WRKSRC= ${WRKDIR}/${PKGNAME} + +USE_GMAKE= YES +MAKEFILE= makefile.unix + +MAN6= xmame.6 + +post-install: +.ifdef NOPORTDOCS + @echo "==> Extra documentation WILL NOT be installed." +.else + @echo "==> Installing extra documentation..." + ${MKDIR} ${PREFIX}/lib/mame + for DOC in CHEAT.DOC Changes MailList.notes README.unix mamelist.txt readme.txt whatsnew.txt; do ${INSTALL} -c -o bin -g bin -m 444 ${WRKSRC}/doc/$${DOC} ${PREFIX}/lib/mame/$${DOC}; done +.endif + (cd ${PREFIX}/lib/mame; sh ${FILESDIR}/dos2unx CHEAT.DOC Changes MailList.notes README.unix cheat.dat mamelist.txt readme.txt whatsnew.txt) + @${CAT} ${PKGDIR}/MESSAGE + +.include <bsd.port.mk> |