blob: b2528d416ed7feac7b86b2c0f609e8e1aa6d016e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# ex:ts=8
# Ports collection makefile for: kbdscan
# Date created: April 23, 2010
# Whom: Eitan Adler
#
# $FreeBSD$
#
PORTNAME= kbdscan
PORTVERSION= 20100427
CATEGORIES= misc
MASTER_SITES= http://hack.org/mc/hacks/${PORTNAME}/
MAINTAINER= ports@eitanadler.com
COMMENT= Kbdscan shows the scancodes of keys pressed
USE_BZIP2= yes
LICENSE= ISC
LICENSE_NAME= ISC License - ISCL
LICENSE_GROUPS= FSF GPL OSI
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
# cut and paste the text from kbdscan.c
LICENSE_FILE= ${FILESDIR}/LICENSE-kbdscan
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
.include <bsd.port.mk>
|