Update alevt to 1.6.1.
- Fix MASTER_SITES and HOMEPAGE - The side effect of this update is that it builds now with MAKE_JOBS > 1 Tue Aug 20 05:22:16 MEST 2002 (1.6.1) - Removed the bttv-warning from the help pages ;-) Mon Jul 23 18:34:32 MEST 2001 - Fixed bug in ui.c - found by <pawel@sakowski.eu.org>. - When clicking on page numbers accept sub-page numbers too. Sat Dec 23 15:12:11 MET 2000 - Fixed 'double height last line' bug in export.c reported by <Matthias.Kleinmann@urz.uni-heidelberg.de> Thu Oct 12 02:19:31 MEST 2000 - The fix was wrong. Removed it.
This commit is contained in:
parent
7823f52dc6
commit
a06d7953c7
4 changed files with 22 additions and 23 deletions
|
@ -1,12 +1,11 @@
|
|||
# $NetBSD: Makefile,v 1.14 2007/02/15 21:17:34 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2007/09/21 16:53:42 veego Exp $
|
||||
|
||||
DISTNAME= alevt-1.6.0
|
||||
PKGREVISION= 4
|
||||
DISTNAME= alevt-1.6.1
|
||||
CATEGORIES= multimedia
|
||||
MASTER_SITES= ${MASTER_SITE_SUNSITE:=apps/video/}
|
||||
MASTER_SITES= http://www.goron.de/~froese/alevt/
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://user.exit.de/froese/
|
||||
HOMEPAGE= http://www.goron.de/~froese/
|
||||
COMMENT= Teletext decoder and browser for Brooktree 848 compatible TV cards
|
||||
|
||||
DEPENDS+= fxtv>=1.02:../../multimedia/fxtv
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.3 2006/06/30 18:15:27 tron Exp $
|
||||
$NetBSD: distinfo,v 1.4 2007/09/21 16:53:42 veego Exp $
|
||||
|
||||
SHA1 (alevt-1.6.0.tar.gz) = ac7d71e738e77fc485c59221171011673e239bbe
|
||||
RMD160 (alevt-1.6.0.tar.gz) = 33c30480c2e148642d653153662715da370ae76e
|
||||
Size (alevt-1.6.0.tar.gz) = 116646 bytes
|
||||
SHA1 (patch-aa) = 86e57806c89cdcf55be6125c0c3af6c136c76022
|
||||
SHA1 (patch-ab) = a2105193322b671960f426f42eb8590c01051139
|
||||
SHA1 (alevt-1.6.1.tar.gz) = 0dffba71b911e79fce34a2e6aba9bf69c8a71d28
|
||||
RMD160 (alevt-1.6.1.tar.gz) = 9c38525387140610c17fc474c87896aa74cb877d
|
||||
Size (alevt-1.6.1.tar.gz) = 117731 bytes
|
||||
SHA1 (patch-aa) = ddc9015a6139f08b416b07d6934991016e7df608
|
||||
SHA1 (patch-ab) = 6761ff96fe89fd61b63b0c91ee79a07c2c9628cf
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: patch-aa,v 1.1.1.1 2004/01/26 11:38:02 jmmv Exp $
|
||||
$NetBSD: patch-aa,v 1.2 2007/09/21 16:53:42 veego Exp $
|
||||
|
||||
--- Makefile.orig Wed Oct 11 20:08:29 2000
|
||||
+++ Makefile Wed Nov 1 15:56:37 2000
|
||||
--- Makefile.orig 2002-08-20 05:17:53.000000000 +0200
|
||||
+++ Makefile 2007-05-29 07:22:30.000000000 +0200
|
||||
@@ -6,7 +6,7 @@
|
||||
# a smaller and thinner font
|
||||
#FONT=neep9
|
||||
|
@ -35,7 +35,7 @@ $NetBSD: patch-aa,v 1.1.1.1 2004/01/26 11:38:02 jmmv Exp $
|
|||
- $(CC) $(OPT) $(COBJS) -o alevt-cap $(EXPLIBS)
|
||||
+ $(CC) $(OPT) $(LDFLAGS) $(COBJS) -o alevt-cap $(EXPLIBS)
|
||||
|
||||
font.h: fontsize.h
|
||||
font.o: font1.xbm font2.xbm
|
||||
fontsize.h: font1.xbm font2.xbm
|
||||
@@ -62,21 +62,21 @@
|
||||
install -m 0755 alevt ${RPM_BUILD_ROOT}/usr/X11R6/bin
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
$NetBSD: patch-ab,v 1.1 2006/06/30 18:15:27 tron Exp $
|
||||
$NetBSD: patch-ab,v 1.2 2007/09/21 16:53:42 veego Exp $
|
||||
|
||||
--- xio.c.orig 2000-10-11 18:49:10.000000000 +0100
|
||||
+++ xio.c 2006-06-30 19:13:51.000000000 +0100
|
||||
@@ -32,10 +32,11 @@
|
||||
--- xio.c.orig 2002-08-20 05:09:38.000000000 +0200
|
||||
+++ xio.c 2007-05-29 07:17:26.000000000 +0200
|
||||
@@ -31,11 +31,11 @@
|
||||
|
||||
static struct dl_head dpys[1]; /* list of all displays */
|
||||
|
||||
|
||||
+static void xio_timer(void *data, int fd);
|
||||
+
|
||||
|
||||
static int
|
||||
timer_init(int argc, char **argv)
|
||||
{
|
||||
- static xio_timer();
|
||||
- static void xio_timer();
|
||||
int p[2], timer_pid, i;
|
||||
|
||||
if (pipe(p) == -1)
|
||||
@@ -157,11 +158,12 @@
|
||||
@@ -156,11 +156,12 @@
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue