e03971e4f3
After recent commits, beav was broken on every platform for a couple of reasons. Primarily the Makefile had a bug in it, so it was unexecutable. Secondly, the "man page fix" was done in ${STAGEDIR} using sed -i, causing the resultant .bak file to also be installed, or at least orphaned. Poudriere caught that issue. While here, add DragonFly support.
33 lines
995 B
Makefile
33 lines
995 B
Makefile
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= beav
|
|
PORTVERSION= 1.40.18
|
|
PORTREVISION= 3
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:R}.orig
|
|
|
|
PATCH_SITES= ${MASTER_SITES}
|
|
PATCHFILES= ${PORTNAME}_${PORTVERSION:R}-${PORTVERSION:E}.diff.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Binary Editor And Viewer, a full featured binary file editor
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R:S/.//}
|
|
|
|
ALL_TARGET= beav
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DUNIX -DBSD -DNOPROTO"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|(OFILES):|$$(OFILES):|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/beav.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/beav ${STAGEDIR}${PREFIX}/bin/beav
|
|
${INSTALL_MAN} ${WRKSRC}/beav.1 ${STAGEDIR}${PREFIX}/man/man1/beav.1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/beav140.txt ${STAGEDIR}${DOCSDIR}/beav.txt
|
|
|
|
.include <bsd.port.mk>
|