mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
94846b36bf
- Provide better understandable COMMENT text - Remove USES=gmake, builds with any make(1) implementation now - Add a patch to fix compilation warnings exposed by Clang - Install couple of documentation files - Transfer maintainership to the submitter PR: 199311
29 lines
669 B
Makefile
29 lines
669 B
Makefile
# Created by: trevor
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= showkey
|
|
PORTVERSION= 1.7
|
|
CATEGORIES= converters
|
|
MASTER_SITES= http://catb.org/~esr/showkey/
|
|
|
|
MAINTAINER= snkoppenaal@gmail.com
|
|
COMMENT= Display cooked key sequences (keycap-to-keystrokes mappings)
|
|
|
|
LICENSE= MIT
|
|
|
|
MAKE_ARGS= CC="${CC} ${CFLAGS}"
|
|
ALL_TARGET= showkey
|
|
|
|
PLIST_FILES= bin/showkey man/man1/showkey.1.gz
|
|
PORTDOCS= NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/showkey ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/showkey.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|