mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
c50367a025
Approved by: portmgr (blanket)
36 lines
938 B
Makefile
36 lines
938 B
Makefile
PORTNAME= xkeywrap
|
|
PORTVERSION= 1.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://ftp.vector.co.jp/18/98/1364/
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= Record, repeat, and play key sequence from keyboard
|
|
WWW= https://kozos.jp/myfreesoft/
|
|
|
|
MAKE_ENV= X11BASE="${LOCALBASE}"
|
|
USES= xorg
|
|
USE_XORG= x11 xt
|
|
CFLAGS+= -Wno-int-conversion -Wno-pointer-sign
|
|
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= demo.dat xkeywrap_demo.c
|
|
|
|
PLIST_FILES= bin/xkeywrap share/man/man1/${PORTNAME}.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xkeywrap ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xkeywrap.1.gz ${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S/^/${WRKSRC}\//} ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-on:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${PORTEXAMPLES:S/^/${WRKSRC}\//} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|