mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
6467aa45af
Approved by: roberto(mentor)
28 lines
672 B
Makefile
28 lines
672 B
Makefile
# 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.4
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://ledge.co.za/software/bitedit/
|
|
|
|
MAINTAINER= mich@FreeBSD.org
|
|
COMMENT= Bitedit is a simple ncurses program for editing a file
|
|
|
|
MAKE_ARGS= CFLAGS="${CFLAGS} -DVERSION=\\\"${PORTVERSION}\\\""
|
|
|
|
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>
|