mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-17 00:00:40 +00:00
ceba211283
1.227.2.41 (2.2-stable) of bsd.port.mk for this to be interpreted correctly.
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
Makefile
# New ports collection makefile for: wily
|
|
# Version required: 0.13.36
|
|
# Date created: 23 September 1997
|
|
# Whom: koshy
|
|
#
|
|
# $Id: Makefile,v 1.2 1998/07/07 11:39:46 jkoshy Exp $
|
|
#
|
|
|
|
DISTNAME= wily-0.13.36
|
|
CATEGORIES= plan9 editors
|
|
MASTER_SITES= ftp://ftp.northsea.com/pub/plan9_unix/wily/wily/src/ \
|
|
ftp://ftp.cs.york.ac.uk/pub/mhw/wily/src/ \
|
|
ftp://ftp.cs.su.oz.au/gary/wily/src/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jkoshy@freebsd.org
|
|
|
|
USE_X_PREFIX= YES
|
|
GNU_CONFIGURE= YES
|
|
|
|
WILYDOCDIR= ${PREFIX}/share/doc/wily
|
|
WILYDOCFILES= index.html intro.html download.html credits.html FAQ.txt \
|
|
onepage.html user.html idioms.html C.html python.html \
|
|
perl.txt hack.html changes.txt AcmeVsWily.html Tcl.html \
|
|
pythonpaper.html winmanager.html
|
|
|
|
# The default Wily makefile does not install any documentation. Rectify.
|
|
post-install:
|
|
strip ${PREFIX}/bin/wily
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${WILYDOCDIR}
|
|
set -e; for f in ${WILYDOCFILES}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/Doc/$${f} ${WILYDOCDIR}/$${f}; \
|
|
done
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|