mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
9757ea8bdb
in order to fetch obsolete xemacs' packages. Current all xemacs' packages needed to make have already copied to freefall:~kiri/public_distfiles. PR ports/23171 would be solved with this commit.
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# New ports collection makefile for: XEmacs elisp packages for Games
|
|
# Date created: 03 June 2000
|
|
# Whom: KIRIYAMA Kazuhiko<kiri@pis.toba-cmt.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xemacs-games-packages
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= editors elisp
|
|
MASTER_SITES= ${MASTER_SITE_XEMACS} \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= packages kiri
|
|
DISTFILES= \
|
|
cookie-1.12-pkg.tar.gz \
|
|
games-1.12-pkg.tar.gz \
|
|
mine-1.13-pkg.tar.gz \
|
|
misc-games-1.14-pkg.tar.gz
|
|
DIST_SUBDIR= xemacs
|
|
|
|
MAINTAINER= kiri@FreeBSD.org
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/xemacs-packages
|
|
|
|
XEMACSDIR= ${PREFIX}/lib/xemacs
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
.for f in ${DISTFILES}
|
|
@${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DIST_SUBDIR}/${f} \
|
|
${EXTRACT_AFTER_ARGS} -C ${WRKSRC}
|
|
.endfor
|
|
|
|
do-install:
|
|
${MKDIR} ${XEMACSDIR}
|
|
${CP} -Rp ${WRKDIR}/xemacs-packages ${XEMACSDIR}
|
|
|
|
post-install:
|
|
@${ECHO_MSG} " This is the set of the packages for xemacs with the games category. You can"
|
|
@${ECHO_MSG} "install other packages provided by XEmacs.org with editors/xemacs-*-packages"
|
|
@${ECHO_MSG} "ports. These ports are prepared for corresponding XEmacs packages except for"
|
|
@${ECHO_MSG} "xemacs-packages, xemacs-basic-packages and xemacs-additional-packages. Where"
|
|
@${ECHO_MSG} "xemacs-additional-packages is a meta ports for packages out of xemacs, xemacs"
|
|
@${ECHO_MSG} "mule-basic and xemacs mule category packages."
|
|
@${ECHO_MSG} " You can also install with running it as root and using the 'Manage Packages'"
|
|
@${ECHO_MSG} "menu within the 'Options' menu of the menubar. But using this xemacs package"
|
|
@${ECHO_MSG} "managing, you could not control under ports managing ;-)"
|
|
|
|
.include <bsd.port.mk>
|