diff options
author | asami <asami@FreeBSD.org> | 1996-12-18 05:26:57 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-12-18 05:26:57 +0000 |
commit | fb0f454e7fa7bb15476fb90a4a4f5ffd66a68535 (patch) | |
tree | a57c5f8e11f83e405afd031c0da4a924797574a1 /japanese/w3/Makefile | |
parent | 85b0b80e456ed704aa8798e6127f90d2e3b501d3 (diff) | |
download | FreeBSD-ports-fb0f454e7fa7bb15476fb90a4a4f5ffd66a68535.zip FreeBSD-ports-fb0f454e7fa7bb15476fb90a4a4f5ffd66a68535.tar.gz |
Web browser based on emacs/mule.
Submitted by: Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
Diffstat (limited to 'japanese/w3/Makefile')
-rw-r--r-- | japanese/w3/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/japanese/w3/Makefile b/japanese/w3/Makefile new file mode 100644 index 0000000..e12ab5b --- /dev/null +++ b/japanese/w3/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: w3 on Mule +# Version required: 2.2.26 +# Date created: 30 November 1996 +# Whom: MITA Yoshio <mita@ee.t.u-tokyo.ac.jp> +# +# $Id$ +# + +DISTNAME= w3-2.2.26 +PKGNAME= jp-w3-2.2.26 +CATEGORIES= www japanese +MASTER_SITES= ftp://ftp.iij.ad.jp/pub/network/WWW/w3/ \ + ftp://ftp.cs.indiana.edu/pub/elisp/w3/ + +MAINTAINER= kiri@kiri.toba-cmt.ac.jp + +# Don't RUN_DEPENDS on mule because we don't know which version the +# user would want. We can't omit the BUILD_DEPENDS because it needs +# to byte-compile .el files. +BUILD_DEPENDS= mule:${PORTSDIR}/editors/mule + +WRKSRC= ${WRKDIR}/w3 + +DOCDIR= ${PREFIX}/share/doc/w3 + +post-install: +.if !defined(NOPORTDOCS) + @if [ ! -d ${DOCDIR} ]; then mkdir -p ${DOCDIR}; fi +.for f in .emacs .mosaic-hotlist-default + @${CP} ${FILESDIR}/${f} ${DOCDIR} +.endfor + @${INSTALL_SCRIPT} ${FILESDIR}/user-install ${DOCDIR} +.for f in W3.ad clean-cache Makefile w3.txi + @${CP} ${WRKSRC}/${f} ${DOCDIR} +.endfor +.endif + @/bin/sh ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL + +.include <bsd.port.mk> |