mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b12f43b5a9
Assure master ports and their lang-specific slaves of having consistent categories. Remove redundant space.
74 lines
2.0 KiB
Makefile
74 lines
2.0 KiB
Makefile
# New ports collection makefile for: w3 on Emacs
|
|
# Date created: 31 December 1996
|
|
# Whom: MITA Yoshio <mita@ee.t.u-tokyo.ac.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= w3
|
|
PORTVERSION= 2.2.26
|
|
CATEGORIES+= www elisp
|
|
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
|
|
|
|
BUILD_DEPENDS?= emacs-19.34:${PORTSDIR}/editors/emacs
|
|
RUN_DEPENDS?= emacs-19.34:${PORTSDIR}/editors/emacs
|
|
|
|
WRKSRC= ${WRKDIR}/w3
|
|
MAKE_ENV+= EMACSCMD=${EMACSCMD} ELISPDIR=${ELISPDIR} \
|
|
MKDIR="${MKDIR}" CP=${CP} \
|
|
INFODIR=${INFODIR} \
|
|
INSTALL_DATA="${INSTALL_DATA}"
|
|
|
|
PKGINSTALL= ${WRKDIR}/INSTALL
|
|
PKGDEINSTALL= ${WRKDIR}/DEINSTALL
|
|
VERSION= 2.2.26
|
|
EMACSCMD?= emacs-19.34
|
|
PORTSDOCDIR= ${PREFIX}/share/doc/w3
|
|
SAMPLEDIR= ${PREFIX}/share/examples/w3
|
|
ELISPDIR?= ${PREFIX}/share/emacs/site-lisp
|
|
INFODIR= ${PREFIX}/info
|
|
ADDIR= ${X11BASE}/lib/X11/app-defaults
|
|
DIRSECTION= The Emacs editor and associated tools
|
|
INFOFILE= w3.info
|
|
|
|
post-build:
|
|
.for f in DEINSTALL INSTALL dot.emacs user-install
|
|
@${SED} -e "s,%VERSION%,${VERSION},g" \
|
|
-e "s,%PREFIX%,${PREFIX},g" \
|
|
-e "s,%INFODIR%,${INFODIR},g" \
|
|
-e "s,%ELISPDIR%,${ELISPDIR},g" \
|
|
-e "s,%INFOFILE%,${INFOFILE},g" \
|
|
-e "s,%ADDIR%,${ADDIR},g" \
|
|
-e "s,%TOUCH%,${TOUCH},g" \
|
|
-e "s,%MKDIR%,${MKDIR},g" \
|
|
-e "s,%SAMPLEDIR%,${SAMPLEDIR},g" \
|
|
-e "s,%DIRSECTION%,${DIRSECTION},g" \
|
|
< ${FILESDIR}/${f}.tmpl > ${WRKDIR}/${f}
|
|
.endfor
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PORTSDOCDIR}
|
|
@${MKDIR} ${SAMPLEDIR}
|
|
.for f in dot.mosaic-hotlist-default
|
|
@${INSTALL_DATA} ${FILESDIR}/${f} ${SAMPLEDIR}
|
|
.endfor
|
|
.for f in dot.emacs
|
|
@${INSTALL_DATA} ${WRKDIR}/${f} ${SAMPLEDIR}
|
|
.endfor
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/user-install ${SAMPLEDIR}
|
|
.for f in W3.ad clean-cache Makefile w3.txi
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${PORTSDOCDIR}
|
|
.endfor
|
|
.endif
|
|
@${SETENV} MKDIR="${MKDIR}" TOUCH=${TOUCH} \
|
|
INFODIR=${INFODIR} INFOFILE=${INFOFILE} \
|
|
ELISPDIR=${ELISPDIR} ADDIR=${ADDIR} \
|
|
DIRSECTION="${DIRSECTION}" \
|
|
${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|