mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
422bce3414
my ports in the past 3 weeks while ports were broken on any 10.x machines, which means I'm unable to maintain them. So let people know that there's no available support for them until things are back to normal (which also means that anyone with spare time will be able to fix them without getting approval).
40 lines
925 B
Makefile
40 lines
925 B
Makefile
# New ports collection makefile for: teco
|
|
# Date created: Feb 15 2005
|
|
# Whom: Stanislav Sedov <stas@core.310.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= teco
|
|
PORTVERSION= 0398
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://almy.us/files/
|
|
DISTNAME= tecoclinux${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Powerful and compact editor with nongraphical user interface
|
|
|
|
MAKEFILE= makefile
|
|
WRKSRC= ${WRKDIR}/tecoc${PORTVERSION}
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
ALL_TARGET= #
|
|
|
|
DOCSFILES= src/readme.1st src/readme.lnx src/changes.txt src/aaout.txt \
|
|
src/problems.txt src/video.txt doc/teco.doc doc/wchart.txt
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/tecoc ${PREFIX}/bin
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/lib/* ${DATADIR}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for FILE in ${DOCSFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|