diff options
author | roger <roger@FreeBSD.org> | 1999-06-10 11:11:15 +0800 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 1999-06-10 11:11:15 +0800 |
commit | 39a26bef2ab7613c3857503f9abf0eafd1fa1a0a (patch) | |
tree | da2bc7d32f6e2b41df2dad8c860d670c8088ca3b /misc/videotext/Makefile | |
parent | 7644bc246094c7285615105d7c2636eb58c9a4f8 (diff) | |
download | freebsd-ports-gnome-39a26bef2ab7613c3857503f9abf0eafd1fa1a0a.tar.gz freebsd-ports-gnome-39a26bef2ab7613c3857503f9abf0eafd1fa1a0a.tar.zst freebsd-ports-gnome-39a26bef2ab7613c3857503f9abf0eafd1fa1a0a.zip |
Fixed typo in Makefile
Updated to use X11BASE
Updated PLIST to add/remove X11 fonts correctly
Diffstat (limited to 'misc/videotext/Makefile')
-rw-r--r-- | misc/videotext/Makefile | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/misc/videotext/Makefile b/misc/videotext/Makefile index 5e0b55c9ab9e..c6ea118b9836 100644 --- a/misc/videotext/Makefile +++ b/misc/videotext/Makefile @@ -1,9 +1,9 @@ # New ports collection makefile for: vbidecode -# Version required: 1.1.3 -# Date created: Mon June 8 15:11:00 BST 1999 +# Version required: 0.6.971023 +# Date created: Tue June 8 15:11:00 BST 1999 # Whom: Roger Hardiman <roger@freebsd.org> # -# $Id: Makefile,v 1.2 1999/06/07 22:23:36 roger Exp $ +# $Id: Makefile,v 1.1.1.1 1999/06/08 17:48:36 roger Exp $ # DISTNAME= videotext-0.6.971023 @@ -16,7 +16,19 @@ LIB_DEPENDS= gif.3:${PORTSDIR}/graphics/giflib \ png.3:${PORTSDIR}/graphics/png \ xview.3:${PORTSDIR}/x11-toolkits/xview +USE_X_PREFIX= yes USE_GMAKE= yes MAN1= videotext.1 tunerctl.1 +.include <bsd.port.pre.mk> + +pre-install: +.if !exists(${X11BASE}/lib/X11/fonts/local) + @${ECHO} "*********************************************************" + @${ECHO} "Please update your XFree86 to version 3.3.3 or later" + @${ECHO} "or add ${X11BASE}/lib/X11/fonts/local to your font path" + @${ECHO} "in /etc/XF86Config." + @${ECHO} "*********************************************************" +.endif + .include <bsd.port.mk> |