summaryrefslogtreecommitdiff
path: root/misc/biosfont-demos
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2006-07-04 18:52:57 +0000
committerRenato Botelho <garga@FreeBSD.org>2006-07-04 18:52:57 +0000
commit47268027ceced42e45e4b648a1e96eace75d4fee (patch)
tree4cc3199c829301f41b070e203f6c5a6f228edaee /misc/biosfont-demos
parentThis port provides a FreeBSD kernel module that can be used to (diff)
Two samples for the biosfont(4) kernel module:
* 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>
Notes
Notes: svn path=/head/; revision=166932
Diffstat (limited to 'misc/biosfont-demos')
-rw-r--r--misc/biosfont-demos/Makefile29
-rw-r--r--misc/biosfont-demos/distinfo3
-rw-r--r--misc/biosfont-demos/pkg-descr5
3 files changed, 37 insertions, 0 deletions
diff --git a/misc/biosfont-demos/Makefile b/misc/biosfont-demos/Makefile
new file mode 100644
index 000000000000..3e39d8bd2729
--- /dev/null
+++ b/misc/biosfont-demos/Makefile
@@ -0,0 +1,29 @@
+# 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>
diff --git a/misc/biosfont-demos/distinfo b/misc/biosfont-demos/distinfo
new file mode 100644
index 000000000000..86cec3e46029
--- /dev/null
+++ b/misc/biosfont-demos/distinfo
@@ -0,0 +1,3 @@
+MD5 (biosfont-demos-1.0.tar.gz) = edde1e62acb0385fb2a63f844b5eead4
+SHA256 (biosfont-demos-1.0.tar.gz) = dc5d22391c7c9c3218df1fed3fec07b9493f6738c2b897c8339acd00131c11dd
+SIZE (biosfont-demos-1.0.tar.gz) = 2221
diff --git a/misc/biosfont-demos/pkg-descr b/misc/biosfont-demos/pkg-descr
new file mode 100644
index 000000000000..a615decb8ac0
--- /dev/null
+++ b/misc/biosfont-demos/pkg-descr
@@ -0,0 +1,5 @@
+Two samples for the biosfont(4) kernel module:
+* showchar shows a requested character on stdout
+* showdati is a digital clock. Best viewed on 80x25 consoles.
+
+WWW: http://home.tiscali.nl/rladan/biosfont/