diff options
author | 2003-08-08 18:05:42 +0000 | |
---|---|---|
committer | 2003-08-08 18:05:42 +0000 | |
commit | f0cb22337342dfe9564d0dbdfdbe0cbdbf321e1b (patch) | |
tree | 99b3ed2d8121379e47b20ee7b744409de5d625f1 /sys-apps/qpage/files/qpage-3.3-gentoo.patch | |
parent | import of qpage ebuild; bug 19961 (diff) | |
download | historical-f0cb22337342dfe9564d0dbdfdbe0cbdbf321e1b.tar.gz historical-f0cb22337342dfe9564d0dbdfdbe0cbdbf321e1b.tar.bz2 historical-f0cb22337342dfe9564d0dbdfdbe0cbdbf321e1b.zip |
import of qpage ebuild; bug 19961
Diffstat (limited to 'sys-apps/qpage/files/qpage-3.3-gentoo.patch')
-rw-r--r-- | sys-apps/qpage/files/qpage-3.3-gentoo.patch | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/sys-apps/qpage/files/qpage-3.3-gentoo.patch b/sys-apps/qpage/files/qpage-3.3-gentoo.patch new file mode 100644 index 000000000000..577fb8a4ff3b --- /dev/null +++ b/sys-apps/qpage/files/qpage-3.3-gentoo.patch @@ -0,0 +1,72 @@ +--- config.input.dist 2003-04-11 14:03:36.000000000 -0700 ++++ config.input 2003-04-11 14:05:47.000000000 -0700 +@@ -20,7 +20,7 @@ + # See the QuickPage documentation for complete details about + # the syntax of the configuration file. + # +-QPAGE_CONFIG="/etc/qpage.cf" ++QPAGE_CONFIG="/etc/qpage/qpage.cf" + + + # +@@ -41,7 +41,7 @@ + # copies of the configuration file. Only one filename + # may be specified. + # +-SNPP_SERVER_FILE="/etc/qpage.servers" ++SNPP_SERVER_FILE="/etc/qpage/qpage.servers" + + + # +--- qpage.man.dist 2003-04-18 14:43:45.000000000 -0700 ++++ qpage.man 2003-04-18 14:43:55.000000000 -0700 +@@ -867,7 +867,7 @@ + must be able to detect when it's safe to send dial commands to the modem. + .LP + .SH FILES +-/etc/qpage.cf ++/etc/qpage/qpage.cf + .SH SEE ALSO + .B RFC-1861 + .SH KNOWN BUGS +--- example.cf.dist 2003-04-25 09:55:47.000000000 -0700 ++++ example.cf 2003-04-25 10:55:11.000000000 -0700 +@@ -21,7 +21,7 @@ + # + # modem=<modem name> + # text=<optional text, no whitespace allowed> +-# device=<modem device e.g. /dev/ttya> ++# device=<modem device e.g. /dev/tts/0> + # initcmd=<modem initialization command> + # dialcmd=<modem dial command not including phone number> + # +@@ -64,14 +64,15 @@ + + queuedir=/var/spool/qpage + ++lockdir=/var/lock/subsys/qpage ++ + identtimeout=5 + snpptimeout=60 + +-modem=ttya device=/dev/cua/a +-modem=ttyb device=/dev/cua/b ++modem=ttyS0 device=/dev/tts/0 + + service=default +- device=ttya,ttyb ++ device=ttyS0 + baudrate=1200 + parity=even + allowpid=yes +--- ixo.c.dist 2003-04-25 11:36:30.000000000 -0700 ++++ ixo.c 2003-04-25 11:37:37.000000000 -0700 +@@ -192,7 +192,7 @@ + if ((i = read_modem(fd, seconds)) < 0) + return(NULL); + +- if (i == '\r') { ++ if (i == '\r' || i == '\n') { + *ptr = '\0'; + got_full_packet++; + } |