blob: f60a6da4f62a1397a9564f9a94112f0ed85c03ae (
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
|
# ex:ts=8
# Ports collection makefile for: bitedit
# Date created: Tue Jul 18, 2002
# Whom: Michael L. Hostbaek (mich@freebsdcluster.org)
#
# $FreeBSD$
PORTNAME= bitedit
PORTVERSION= 0.9.2
CATEGORIES= editors
MASTER_SITES= http://ledge.co.za/software/bitedit/
MAINTAINER= mich@freebsdcluster.org
MAKE_ARGS= CFLAGS="${CFLAGS} -DDISABLE_SETFONT"
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bitedit ${PREFIX}/bin/
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/bitedit.txt ${DOCSDIR}/bitedit.txt
.endif
.include <bsd.port.mk>
|