mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
33 lines
744 B
Makefile
33 lines
744 B
Makefile
|
# New ports collection makefile for: xkbctrl
|
||
|
# Version required: 1.0
|
||
|
# Date created: 9 January 2000
|
||
|
# Whom: Yoshiro MIHIRA <sanpei@sanpei.org>
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
DISTNAME= xkbctrl
|
||
|
PKGNAME= xkbctrl-1.0
|
||
|
CATEGORIES= x11
|
||
|
MASTER_SITES= ftp://core.ring.gr.jp/pub/X/opengroup/unsupported/test/Xkb/programs/ \
|
||
|
ftp://ring.nacsis.ac.jp/pub/X/opengroup/unsupported/test/Xkb/programs/
|
||
|
DISTFILES= Imakefile xkbctrl.c
|
||
|
|
||
|
MAINTAINER= sanpei@sanpei.org
|
||
|
|
||
|
DIST_SUBDIR= xkbctrl
|
||
|
USE_IMAKE= yes
|
||
|
NO_WRKSUBDIR= yes
|
||
|
|
||
|
do-extract:
|
||
|
@${RM} -rf ${WRKDIR}
|
||
|
@${MKDIR} ${WRKDIR}
|
||
|
@for file in ${DISTFILES}; do \
|
||
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/$${file} ${WRKSRC}; \
|
||
|
done
|
||
|
|
||
|
do-install:
|
||
|
@${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin
|
||
|
|
||
|
.include <bsd.port.mk>
|