summaryrefslogtreecommitdiff
path: root/emulators/xgs/Makefile
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2000-01-22 13:03:16 +0000
committerMichael Haro <mharo@FreeBSD.org>2000-01-22 13:03:16 +0000
commit597e346d96c6902d6df4ae6f6d6a09ef2fc2a118 (patch)
tree04512e4475f370c7b547680ad0db75962d49760a /emulators/xgs/Makefile
parentUpdate to 3.2.5 (diff)
- Fix MASTER_SITES
- Add MAINTAINER line - Add (probably missing) USE_XLIB line - Move install path of utility data files from lib/ to libdata/ - Shorten pkg/DESCR and move original file to files/README.FreeBSD - Sort pkg/PLIST PR: 16039 Submitted by: tkato@prontomail.ne.jp
Notes
Notes: svn path=/head/; revision=24926
Diffstat (limited to 'emulators/xgs/Makefile')
-rw-r--r--emulators/xgs/Makefile35
1 files changed, 17 insertions, 18 deletions
diff --git a/emulators/xgs/Makefile b/emulators/xgs/Makefile
index b37d67a5a050..8bd20c995594 100644
--- a/emulators/xgs/Makefile
+++ b/emulators/xgs/Makefile
@@ -1,8 +1,7 @@
-# New ports collection makefile for: xgs-0.50
+# New ports collection makefile for: xgs
# Version required: 0.50
# Date created: 2nd May, 1997
# Whom: Joel Sutton <sutton@aardvark.apana.org.au>
-# FreeBSD Version: 2.1.5-RELEASE
#
# $FreeBSD$
#
@@ -11,44 +10,44 @@
# currently broken.
# Distfile collection and extraction stuff
-#
-DISTNAME= xgs-0.50-src
-PKGNAME= xgs-0.50
+#
+DISTNAME= xgs-0.50
CATEGORIES= emulators
-MASTER_SITES= ftp://ftp.optera.com/pub/xgs/ \
+MASTER_SITES= http://www.inwards.com/xgs/ \
ftp://ftp.apple.asimov.net/pub/apple_II/emulators/rom_images/
-DISTFILES= ${DISTNAME}${EXTRACT_SUFX} xgs.rom
+DISTFILES= xgs050.tgz xgs.rom
-BROKEN='fetch'
+MAINTAINER= ports@FreeBSD.org
DIST_SUBDIR= xgs
-EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
+EXTRACT_ONLY= xgs050.tgz
RESTRICTED= "xgs.rom copyright is owned by Apple and cannot be distributed"
NO_PACKAGE= ${RESTRICTED}
# Source building
#
WRKSRC= ${WRKDIR}/xgs
+USE_XLIB= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-x --datadir="${PREFIX}/lib"
+CONFIGURE_ARGS= --with-x --datadir='${PREFIX}/libdata'
# Directories etc...
#
XGS_DOC= ${PREFIX}/share/doc/xgs
-XGS_LIB= ${PREFIX}/lib/xgs
+XGS_LIB= ${PREFIX}/libdata/xgs
DOC_FILES= CHANGES.TXT COMPAT.TXT INSTALL.TXT TODO.TXT \
IWM-DOC.TXT XGS-FAQ.TXT
post-install:
+ ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/xgs.rom ${XGS_LIB}
+ ${INSTALL_DATA} -m 666 /dev/null ${XGS_LIB}/xgs.ram
.if !defined(NOPORTDOCS)
- -${MKDIR} ${XGS_DOC}
- for file in ${DOC_FILES} ; do \
- ${INSTALL_DATA} ${WRKSRC}/docs/$$file ${XGS_DOC}/ ;\
- done
- ${INSTALL_DATA} ${PKGDIR}/DESCR ${XGS_DOC}/README.FreeBSD
+ @${MKDIR} ${XGS_DOC}
+.for file in ${DOC_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/docs/${file} ${XGS_DOC}
+.endfor
+ ${INSTALL_DATA} ${FILESDIR}/README.FreeBSD ${XGS_DOC}
.endif
- ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/xgs.rom ${XGS_LIB}/
- ${INSTALL_DATA} -m 666 /dev/null ${XGS_LIB}/xgs.ram
.include <bsd.port.mk>