42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.14 2002/12/23 00:37:52 pvalchev Exp $
|
|
|
|
COMMENT= "clone of the Plan9 editor 'acme'"
|
|
|
|
DISTNAME= wily-0.13.41
|
|
CATEGORIES= plan9 editors
|
|
MASTER_SITES= ftp://ftp.cs.york.ac.uk/pub/mhw/wily/src/ \
|
|
ftp://ftp.cs.su.oz.au/gary/wily/src/old/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
HOMEPAGE= http://www.cs.yorku.ca/~oz/wily/
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SEPARATE_BUILD= simple
|
|
CONFIGURE_STYLE= autoconf
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
WILYDOCDIR= ${PREFIX}/share/doc/wily
|
|
WILYTUTEDIR= ${WILYDOCDIR}/tute
|
|
WILYDOCFILES= index.html intro.html download.html credits.html FAQ.html \
|
|
onepage.html user.html idioms.html C.html python.html \
|
|
hack.html AcmeVsWily.html Tcl.html pythonpaper.html \
|
|
winmanager.html auug.html one.html example.gif thumb.gif \
|
|
cartoon.gif FAQ.txt Tcl.txt changes.txt perl.txt Credits \
|
|
fonts mouse tute/findword tute/script tute/start tute/hello.c \
|
|
tute/send_to_gary
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${WILYDOCDIR}
|
|
${INSTALL_DATA_DIR} ${WILYTUTEDIR}
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/wily/wily ${PREFIX}/bin
|
|
@set -e; for f in ${WILYDOCFILES}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/Doc/$$f ${WILYDOCDIR}/$$f; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|