blob: 87a89b94a4b22b9145cfe31a17a77dc1c538fe18 (
plain) (
blame)
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= http://freebsd.t-hosting.hu/dte/
EXTRACT_SUFX= .tgz
MAINTAINER= gkovesdan@t-hosting.hu
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>
|