6f3b076396
PR: ports/105314 Submitted by: Alexander Logvinov <ports at logvinov.com>
36 lines
862 B
Makefile
36 lines
862 B
Makefile
# New ports collection makefile for: bbe
|
|
# Date created: 8 November 2006
|
|
# Whom: Alexander Logvinov <ports@logvinov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bbe
|
|
PORTVERSION= 0.2.2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR=${PORTNAME}-
|
|
|
|
MAINTAINER= ports@logvinov.com
|
|
COMMENT= A sed-like editor for binary files
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
DOCS= AUTHORS ChangeLog README
|
|
PORTDOCS= bbe.html ${DOCS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/${MAN1} ${MAN1PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/bbe.html ${DOCSDIR}
|
|
.for i in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|