mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
update to 1.6.1 which fixes build on RELENG_5
Approved By: maintainer-timeout (9 days)
This commit is contained in:
parent
05f50f43f6
commit
2a013fa858
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=117314
6 changed files with 27 additions and 40 deletions
|
@ -6,12 +6,10 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= alevt
|
PORTNAME= alevt
|
||||||
PORTVERSION= 1.6.0
|
PORTVERSION= 1.6.1
|
||||||
PORTREVISION= 1
|
PORTREVISION= 0
|
||||||
CATEGORIES= misc
|
CATEGORIES= misc
|
||||||
MASTER_SITES= ${MASTER_SITE_SUNSITE} \
|
MASTER_SITES= http://www.goron.de/~froese/alevt/
|
||||||
http://user.exit.mytoday.de/froese/alevt/
|
|
||||||
MASTER_SITE_SUBDIR= apps/video
|
|
||||||
|
|
||||||
MAINTAINER= roger@freebsd.org
|
MAINTAINER= roger@freebsd.org
|
||||||
COMMENT= X11 Teletext decoding and display program. (reads from /dev/vbi)
|
COMMENT= X11 Teletext decoding and display program. (reads from /dev/vbi)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (alevt-1.6.0.tar.gz) = 3826d99d14d0a8f70f8d3625b2d06d03
|
MD5 (alevt-1.6.1.tar.gz) = df6e241c6e2c6505c95d50cde0e1bc73
|
||||||
SIZE (alevt-1.6.0.tar.gz) = 116646
|
SIZE(alevt-1.6.1.tar.gz) = 117731
|
||||||
|
|
|
@ -19,13 +19,13 @@
|
||||||
# anything below this line is just for me!
|
# anything below this line is just for me!
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
! install -m 0755 alevt $(X11BASE)/bin
|
! install -m 0755 alevt $(PREFIX)/bin
|
||||||
! install -m 0755 alevt-date $(X11BASE)/bin
|
! install -m 0755 alevt-date $(PREFIX)/bin
|
||||||
! install -m 0755 alevt-cap $(X11BASE)/bin
|
! install -m 0755 alevt-cap $(PREFIX)/bin
|
||||||
! install -m 0644 alevt.1x $(X11BASE)/man/man1
|
! install -m 0644 alevt.1x $(PREFIX)/man/man1
|
||||||
! install -m 0644 alevt-date.1 $(X11BASE)/man/man1
|
! install -m 0644 alevt-date.1 $(PREFIX)/man/man1
|
||||||
! install -m 0644 alevt-cap.1 $(X11BASE)/man/man1
|
! install -m 0644 alevt-cap.1 $(PREFIX)/man/man1
|
||||||
! install -m 0644 contrib/mini-alevt.xpm $(X11BASE)/include/X11/pixmaps
|
! install -m 0644 contrib/mini-alevt.xpm $(PREFIX)/include/X11/pixmaps
|
||||||
sync
|
sync
|
||||||
|
|
||||||
depend:
|
depend:
|
||||||
|
|
|
@ -1,34 +1,16 @@
|
||||||
--- exp-html.c.orig Tue May 30 02:09:15 2000
|
--- exp-html.c.orig Tue Oct 17 21:28:30 2000
|
||||||
+++ exp-html.c Wed Oct 18 08:50:59 2000
|
+++ exp-html.c Tue Aug 17 16:31:33 2004
|
||||||
@@ -214,7 +214,7 @@
|
|
||||||
{
|
|
||||||
if (last_space)
|
|
||||||
{
|
|
||||||
- fprintf(fp," ");
|
|
||||||
+ fprintf(fp," ");
|
|
||||||
last_space=0;
|
|
||||||
nbsp=1;
|
|
||||||
}
|
|
||||||
@@ -251,7 +251,7 @@
|
|
||||||
{
|
|
||||||
if (last_space)
|
|
||||||
{
|
|
||||||
- fprintf(fp," ");
|
|
||||||
+ fprintf(fp," ");
|
|
||||||
last_space=0;
|
|
||||||
nbsp=1;
|
|
||||||
}
|
|
||||||
@@ -268,7 +268,12 @@
|
@@ -268,7 +268,12 @@
|
||||||
{
|
{
|
||||||
//if previous nbsp --> put semicolon!!!
|
//if previous nbsp --> put semicolon!!!
|
||||||
if (nbsp) fputc(';',fp);
|
if (nbsp) fputc(';',fp);
|
||||||
- fputc(pg->data[y][z].ch,fp);
|
- fputc(pg->data[y][z].ch,fp);
|
||||||
+
|
+
|
||||||
+ // Handle ascii characters which have HTML meanings
|
+ // Handle ascii characters which have HTML meanings
|
||||||
+ if (pg->data[y][z].ch == '<') fprintf(fp,"<");
|
+ if (pg->data[y][z].ch == '<') fprintf(fp,"<");
|
||||||
+ else if (pg->data[y][z].ch == '>') fprintf(fp,">");
|
+ else if (pg->data[y][z].ch == '>') fprintf(fp,">");
|
||||||
+ else if (pg->data[y][z].ch == '&') fprintf(fp,"&");
|
+ else if (pg->data[y][z].ch == '&') fprintf(fp,"&");
|
||||||
+ else fputc(pg->data[y][z].ch,fp);
|
+ else fputc(pg->data[y][z].ch,fp);
|
||||||
last_space=0;
|
last_space=0;
|
||||||
nbsp=0;
|
nbsp=0;
|
||||||
}
|
}
|
||||||
|
|
8
misc/alevt/files/patch-ac
Normal file
8
misc/alevt/files/patch-ac
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
--- lang.h.orig Tue Aug 17 16:34:24 2004
|
||||||
|
+++ lang.h Tue Aug 17 16:34:36 2004
|
||||||
|
@@ -19,4 +19,4 @@
|
||||||
|
void add_enhance(struct enhance *eh, int dcode, u32 *data);
|
||||||
|
void enhance(struct enhance *eh, struct vt_page *vtp);
|
||||||
|
|
||||||
|
-#endif LANG_H
|
||||||
|
+#endif /* LANG_H */
|
|
@ -1,5 +1,4 @@
|
||||||
bin/alevt
|
bin/alevt
|
||||||
bin/alevt-date
|
bin/alevt-date
|
||||||
bin/alevt-cap
|
bin/alevt-cap
|
||||||
|
|
||||||
include/X11/pixmaps/mini-alevt.xpm
|
include/X11/pixmaps/mini-alevt.xpm
|
||||||
|
|
Loading…
Add table
Reference in a new issue