blob: 4306b87e24842e6eb3540fc161fbc5b3c9930308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: xmame
# Version required: 0.33b6.1
# Date created: 8 Feb 1998
# Whom: Donald Burr <dburr@FreeBSD.org>
#
# $FreeBSD$
#
DISTNAME= xmame-0.33b6.1
CATEGORIES= emulators
MASTER_SITES= ftp://drake.dit.upm.es/xmame/ftpsite/
EXTRACT_SUFX= .tgz
MAINTAINER= dburr@FreeBSD.org
LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm
USE_GMAKE= YES
MAKEFILE= makefile.unix
MAN6= xmame.6
post-install:
.ifdef NOPORTDOCS
@${ECHO_MSG} "==> Extra documentation WILL NOT be installed."
.else
@${ECHO_MSG} "==> Installing extra documentation..."
${MKDIR} ${PREFIX}/lib/mame
for DOC in CHEAT.DOC Changes MailList.notes README.unix mamelist.txt readme.dos 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.dos whatsnew.txt)
@${CAT} ${PKGDIR}/MESSAGE
.include <bsd.port.mk>
|