mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
2653277ed4
Pointed out: asami Fixed: OKAZAKI Tetsurou <okazaki@be.to>
56 lines
1.8 KiB
Makefile
56 lines
1.8 KiB
Makefile
# New ports collection makefile for: X-Emacs Packages with Mule
|
|
# Date created: 24 Oct 1999
|
|
# Whom: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xemacs-mule-packages
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= editors elisp
|
|
MASTER_SITES= \
|
|
ftp://ftp.xemacs.org/pub/xemacs/packages/ \
|
|
ftp://ftp.mpi-sb.mpg.de/pub/gnu/mirror/ftp.xemacs.org/xemacs/packages/ \
|
|
ftp://ftp.usyd.edu.au/pub/Xemacs/packages/ \
|
|
ftp://ftp.lab.kdd.co.jp/xemacs/packages/ \
|
|
ftp://ftp.th-darmstadt.de/pub/editors/xemacs/packages/
|
|
|
|
DISTFILES= \
|
|
edict-1.09-pkg.tar.gz \
|
|
leim-1.15-pkg.tar.gz \
|
|
lookup-1.04-pkg.tar.gz
|
|
|
|
MAINTAINER= kiri@pis.toba-cmt.ac.jp
|
|
|
|
DIST_SUBDIR= xemacs
|
|
MASTER_SITE_SUBDIR=${DIST_SUBDIR}
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/mule-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}/mule-packages ${XEMACSDIR}
|
|
|
|
post-install:
|
|
@${ECHO_MSG} " This is the set of the packages for xemacs with the mule 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 Packes'"
|
|
@${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>
|