mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
47268027ce
* showchar shows a requested character on stdout * showdati is a digital clock. Best viewed on 80x25 consoles. WWW: http://home.tiscali.nl/rladan/biosfont/ PR: ports/99648 Submitted by: Rene Ladan <r.c.ladan@gmail.com>
30 lines
795 B
Makefile
30 lines
795 B
Makefile
# New ports collection makefile for: biosfont-demos
|
|
# Date created: 30 June 2006
|
|
# Whom: Rene Ladan <r.c.ladan@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= biosfont-demos
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://home.tiscali.nl/rladan/biosfont/
|
|
|
|
MAINTAINER= r.c.ladan@gmail.com
|
|
COMMENT= Demos for the biosfont kernel module
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/biosfont.h:${PORTSDIR}/sysutils/biosfont
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PLIST_FILES= bin/showchar bin/showdati
|
|
|
|
do-build:
|
|
${CC} ${WRKSRC}/showchar.c -o ${WRKSRC}/showchar -I${LOCALBASE}/include
|
|
${CC} ${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>
|