mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
b0da15216e
Now that default manpage installation prefix had been changed, patching the Makefile statically would be more readable than combination of MAKE_ARGS + REINPLACE_CMD. While here, do not unconditionally try to strip the binary (respect WITH_DEBUG).
25 lines
549 B
Makefile
25 lines
549 B
Makefile
PORTNAME= heme
|
|
PORTVERSION= 0.4.2
|
|
CATEGORIES= editors
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Small and fast console hex editor for Unix-like systems
|
|
WWW= http://heme.sourceforge.net/
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= ncurses
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|