mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
5c53b1bd6f
This is a port of ECCE (the Edinburgh Compatible Context Editor). Now really quite ancient, it is still a favourite among many graduates of Edinburgh University. WWW: http://www.gtoal.com/ecce/ PR: 212597 Submitted by: bob@eager.cx (maintainer) Approved by: amdmi3 (mentor)
26 lines
593 B
Makefile
26 lines
593 B
Makefile
# Created by: Bob Eager <bob@eager.cx>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ecce
|
|
DISTVERSION= 2.9d
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://www.ml1.org.uk/distfiles/ \
|
|
http://www.ancientgeek.org.uk/distfiles/
|
|
|
|
MAINTAINER= bob@eager.cx
|
|
COMMENT= Edinburgh Compatible Context Editor
|
|
|
|
LICENSE= CC0-1.0
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ecce ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/ecce.1.gz ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|