29 lines
610 B
Makefile
29 lines
610 B
Makefile
# $OpenBSD: Makefile,v 1.5 2010/11/20 17:22:41 espie Exp $
|
|
|
|
COMMENT= flashes gpio led whenever pf logs to pflog0
|
|
|
|
DISTNAME= gpioflicker-0.2
|
|
REVISION = 0
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.pro-bono-publico.de/openbsd/gpio/
|
|
|
|
MAINTAINER= Johan Fredin <johan@spelaroll.se>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c util
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
USE_GROFF = Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gpioflicker ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/gpioflicker.8 ${PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|