freebsd-ports/misc/biosfont-demos/Makefile
Rene Ladan c225b17a90 - Replace (undocumented) INSTALL_DEPENDS on sysutils/biosfont by a
RUN_DEPENDS to properly record the dependency on the kernel module.
- Bump PORTREVISION

Noticed by:	'pkg autoremove'
2012-12-21 10:10:58 +00:00

28 lines
762 B
Makefile

# Created by: rene
# $FreeBSD$
PORTNAME= biosfont-demos
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= ftp://rene-ladan.nl/pub/distfiles/
MAINTAINER= rene@FreeBSD.org
COMMENT= Demos for the biosfont kernel module
LICENSE= BSD
BUILD_DEPENDS= ${LOCALBASE}/include/biosfont.h:${PORTSDIR}/sysutils/biosfont
RUN_DEPENDS= /boot/modules/biosfont.ko:${PORTSDIR}/sysutils/biosfont
PLIST_FILES= bin/showchar bin/showdati
do-build:
${CC} ${CFLAGS} ${WRKSRC}/showchar.c -o ${WRKSRC}/showchar -I${LOCALBASE}/include
${CC} ${CFLAGS} ${WRKSRC}/showdati.c -o ${WRKSRC}/showdati -I${LOCALBASE}/include -lcurses
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/showchar ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/showdati ${PREFIX}/bin
.include <bsd.port.mk>