From c982d05a55a872a8c5911ff8fae120f9ea94bec0 Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 1 Nov 2000 15:04:46 +0000 Subject: Initial import of "alevt" package: Teletext decoder and browser for Brooktree 848 compatible TV cards This package was contributed by Mario Kemper in PR pkg/11345. --- graphics/alevt/Makefile | 22 +++++++++++++ graphics/alevt/files/md5 | 3 ++ graphics/alevt/files/patch-sum | 3 ++ graphics/alevt/patches/patch-aa | 70 +++++++++++++++++++++++++++++++++++++++++ graphics/alevt/pkg/COMMENT | 1 + graphics/alevt/pkg/DESCR | 5 +++ graphics/alevt/pkg/PLIST | 9 ++++++ 7 files changed, 113 insertions(+) create mode 100644 graphics/alevt/Makefile create mode 100644 graphics/alevt/files/md5 create mode 100644 graphics/alevt/files/patch-sum create mode 100644 graphics/alevt/patches/patch-aa create mode 100644 graphics/alevt/pkg/COMMENT create mode 100644 graphics/alevt/pkg/DESCR create mode 100644 graphics/alevt/pkg/PLIST (limited to 'graphics/alevt') diff --git a/graphics/alevt/Makefile b/graphics/alevt/Makefile new file mode 100644 index 00000000000..35f4f182068 --- /dev/null +++ b/graphics/alevt/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/11/01 15:04:46 tron Exp $ + +DISTNAME= alevt-1.6.0 +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SUNSITE:=apps/video/} + +MAINTAINER= magick@bundy.zhadum.de +HOMEPAGE= http://user.exit.de/froese/ + +DEPENDS+= png>=1.0.6:../../graphics/png +DEPENDS+= fxtv:../../graphics/fxtv + +ONLY_FOR_PLATFORM= NetBSD-1.4[Y-Z]-* NetBSD-1.4Z[A-Z]-* \ + NetBSD-1.5_ALPHA-* NetBSD-1.[5-9]*-* + +USE_X11BASE= YES +USE_GMAKE= YES + +pre-install: + ${MKDIR} ${PREFIX}/share/pixmaps + +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/alevt/files/md5 b/graphics/alevt/files/md5 new file mode 100644 index 00000000000..1dc2e174392 --- /dev/null +++ b/graphics/alevt/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 2000/11/01 15:04:46 tron Exp $ + +MD5 (alevt-1.6.0.tar.gz) = 3826d99d14d0a8f70f8d3625b2d06d03 diff --git a/graphics/alevt/files/patch-sum b/graphics/alevt/files/patch-sum new file mode 100644 index 00000000000..4a912d54306 --- /dev/null +++ b/graphics/alevt/files/patch-sum @@ -0,0 +1,3 @@ +$NetBSD: patch-sum,v 1.1.1.1 2000/11/01 15:04:46 tron Exp $ + +MD5 (patch-aa) = 8293ce56c4b20831a4b5fa686bf49cb8 diff --git a/graphics/alevt/patches/patch-aa b/graphics/alevt/patches/patch-aa new file mode 100644 index 00000000000..d719f6e1cb9 --- /dev/null +++ b/graphics/alevt/patches/patch-aa @@ -0,0 +1,70 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/11/01 15:04:46 tron Exp $ + +--- Makefile.orig Wed Oct 11 20:08:29 2000 ++++ Makefile Wed Nov 1 15:56:37 2000 +@@ -6,7 +6,7 @@ + # a smaller and thinner font + #FONT=neep9 + +-CFLAGS=$(OPT) -DVERSION=\"$(VER)\" $(DEFS) -I/usr/X11R6/include -I/usr/local/include -W ++CFLAGS=$(OPT) -DVERSION=\"$(VER)\" $(DEFS) -I$(LOCALBASE)/include -I$(X11BASE)/include -I/usr/local/include -W + + EXPOBJS=export.o exp-txt.o exp-html.o exp-gfx.o font.o + OBJS=main.o ui.o xio.o fdset.o vbi.o cache.o help.o edline.o search.o edit.o misc.o hamm.o lang.o $(EXPOBJS) +@@ -14,20 +14,20 @@ + COBJS=alevt-cap.o vbi.o fdset.o misc.o hamm.o lang.o $(EXPOBJS) + + ifneq ($(findstring WITH_PNG,$(DEFS)),) +-EXPLIBS=-L/usr/local/lib -lpng -lz -lm ++EXPLIBS=-L$(LOCALBASE)/lib -L/usr/local/lib -lpng -lz -lm + endif + + all: alevt alevt-date alevt-cap alevt.1x alevt-date.1 alevt-cap.1 +- sync ++# sync + + alevt: $(OBJS) +- $(CC) $(OPT) $(OBJS) -o alevt -L/usr/X11R6/lib -lX11 $(EXPLIBS) ++ $(CC) $(OPT) $(LDFLAGS) $(OBJS) -o alevt -L/usr/X11R6/lib -lX11 $(EXPLIBS) + + alevt-date: $(TOBJS) +- $(CC) $(OPT) $(TOBJS) -o alevt-date ++ $(CC) $(OPT) $(LDFLAGS) $(TOBJS) -o alevt-date + + alevt-cap: $(COBJS) +- $(CC) $(OPT) $(COBJS) -o alevt-cap $(EXPLIBS) ++ $(CC) $(OPT) $(LDFLAGS) $(COBJS) -o alevt-cap $(EXPLIBS) + + font.h: fontsize.h + fontsize.h: font1.xbm font2.xbm +@@ -62,21 +62,21 @@ + install -m 0755 alevt ${RPM_BUILD_ROOT}/usr/X11R6/bin + install -m 0755 alevt-date ${RPM_BUILD_ROOT}/usr/X11R6/bin + install -m 0755 alevt-cap ${RPM_BUILD_ROOT}/usr/X11R6/bin +- install -m 0644 alevt.1x ${RPM_BUILD_ROOT}/usr/X11R6/man/man1 ++ install -m 0644 alevt.1x ${RPM_BUILD_ROOT}/usr/X11R6/man/man1/alevt.1 + install -m 0644 alevt-date.1 ${RPM_BUILD_ROOT}/usr/X11R6/man/man1 + install -m 0644 alevt-cap.1 ${RPM_BUILD_ROOT}/usr/X11R6/man/man1 + + # anything below this line is just for me! + + install: all +- install -m 0755 alevt /usr/local/bin +- install -m 0755 alevt-date /usr/local/bin +- install -m 0755 alevt-cap /usr/local/bin +- install -m 0644 alevt.1x /usr/local/man/man1 +- install -m 0644 alevt-date.1 /usr/local/man/man1 +- install -m 0644 alevt-cap.1 /usr/local/man/man1 +- install -m 0644 contrib/mini-alevt.xpm /usr/include/X11/pixmaps +- sync ++ $(BSD_INSTALL_PROGRAM) alevt $(PREFIX)/bin ++ $(BSD_INSTALL_PROGRAM) alevt-date $(PREFIX)/bin ++ $(BSD_INSTALL_PROGRAM) alevt-cap $(PREFIX)/bin ++ $(BSD_INSTALL_DATA) alevt.1x $(PREFIX)/man/man1 ++ $(BSD_INSTALL_DATA) alevt-date.1 $(PREFIX)/man/man1 ++ $(BSD_INSTALL_DATA) alevt-cap.1 $(PREFIX)/man/man1 ++ $(BSD_INSTALL_DATA) contrib/mini-alevt.xpm $(PREFIX)/share/pixmaps ++# sync + + depend: + makedepend -Y -- $(CFLAGS_none) -- *.c 2>/dev/null diff --git a/graphics/alevt/pkg/COMMENT b/graphics/alevt/pkg/COMMENT new file mode 100644 index 00000000000..b4d78b2be09 --- /dev/null +++ b/graphics/alevt/pkg/COMMENT @@ -0,0 +1 @@ +Teletext decoder and browser for Brooktree 848 compatible TV cards diff --git a/graphics/alevt/pkg/DESCR b/graphics/alevt/pkg/DESCR new file mode 100644 index 00000000000..0ae1a255504 --- /dev/null +++ b/graphics/alevt/pkg/DESCR @@ -0,0 +1,5 @@ +AleVT is a teletext/videotext decoder and browser for the bttv driver +(/dev/vbi) and X11. It features multiple windows, a page cache, +regexp searching, built-in manual, and more. There's also a program +to get the time from teletext and one to capture teletext pages from +scripts. diff --git a/graphics/alevt/pkg/PLIST b/graphics/alevt/pkg/PLIST new file mode 100644 index 00000000000..ae7b503d486 --- /dev/null +++ b/graphics/alevt/pkg/PLIST @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2000/11/01 15:04:46 tron Exp $ +bin/alevt +bin/alevt-date +bin/alevt-cap +man/man1/alevt.1x +man/man1/alevt-cap.1 +man/man1/alevt-date.1 +share/pixmaps/mini-alevt.xpm +@unexec rmdir %D/share/pixmaps 2>/dev/null || true -- cgit v1.2.3