blob: 796a90b5077835e5f8fe4d655b0bd56a2c1b496d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection makefile for: dte
# Date created: 4 October 2000
# Whom: Steve Horan <sjhports@tracking.amos.net>
#
# $FreeBSD$
#
PORTNAME= dte
PORTVERSION= 6.12
CATEGORIES= editors
MASTER_SITES= ftp://mugca.cc.monash.edu.au/pub/dougt/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= A simple text editor which uses many of the shortcuts used in MSDOS EDIT
MAN1= dte.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dte ${PREFIX}/bin/dte
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/dte
${INSTALL_DATA} ${WRKSRC}/dte.doc ${PREFIX}/share/doc/dte/
${INSTALL_DATA} ${WRKSRC}/dte.hlp ${PREFIX}/share/doc/dte/
${INSTALL_DATA} ${WRKSRC}/dte.rc ${PREFIX}/share/doc/dte/
${INSTALL_MAN} ${WRKSRC}/dte.1 ${MANPREFIX}/man/man1
.endif
.include <bsd.port.mk>
|