mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
25697cb6d9
o Add %%DOCSDIR%% macro to make portlint(1) happy Noticed by: kris [1]
28 lines
677 B
Makefile
28 lines
677 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://freebsdcluster.org/~mich/software/
|
|
|
|
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>
|