stopping the server.
Martti's submission did not include -h, which I added because if I had
added the scripts the way he submitted them, the server wouldn't be
started on startup.
PR: 10196
Submitted by: Martti Kuparinen <martti.kuparinen@ericsson.com>
Reviewed by: kris (partially)
No response: maintainers (PR opened February 22, 1999)
This is a H323 Gatekeeper for H323 compliant videophone programs
such as voxilla, OhPhone and OpenPhone (see /usr/ports/net/openh323)
and commericial programs like NetMeeting.
More information can be found at
http://www.opengatekeeper.org
remote printing with samba was broken because of syntax error in shell.
only occurred when a SMB_PASSWD has been set.
Thanks to Olivier !
Submitted by: Olivier PAGE <olivier@esm2.imt-mrs.fr>
syntax error in SETUP
which is detected by bash2 but not by our shell
So all Linux user trapped over this
result is, that you can't select a printer and loop in printer selection
forever...
+ doesn't work:
+ PRINTER=`awk -F "|" \
^----- missing "
+ "{ if (FNR == $answer ) print \\$2 }" \
+ < $PRINTER_LIST"`
^^----- wrong order
+ works:
+ PRINTER="`awk -F "|" \
^----- o.k.
+ "{ if (FNR == $answer ) print \\$2 }" \
+ < $PRINTER_LIST`"
^^----- o.k.
Is it a bug in our shell ???
- Remove post-install information from DESCR's.
- Replace /usr/local with ${PREFIX} in DESCR's and MESSAGE's.
- Remove unnecessary whitespace.
Pointed out by: portlint
an Emacs Lisp library to define encoding/decoding schemes by rather
simple translation rule..
PR: ports/16931
Submitted by: OKAZAKI Tetsurou <okazaki@be.to>
CPU architecture.
Instead pass in the actual values, as defined in bsd.port.mk
Also, fix bug in do-install which prevented Alpha installs.
Submitted by: Karl.Dietz@frankfurt.netsurf.de
Avoid direct use of `/usr/local' in pkg/MESSAGE and use `${PREFIX}'
literally instead.
Indicated by: portlint
* Introducing `MESSAGE_SUB' might be a good idea to do substitutions
* in order to give proper instructions.
wanting do to this for a long time now. Now we got rid of the stupid
dependency on Tcl/Tk and save some checks in python's makefile.
Update the dependent ports accordingly.
New variables:
PORTNAME - Base name of port
PORTVERSION - Version of port
Modified variables:
PKGNAME - Always ${PORTNAME}-${PORTVERSION}; error to override this
DISTNAME - Defaults to ${PKGNAME}
Right now old style is still accepted (unless REQUIRE_PORTNAME is
defined) but all port Makefiles will be converted this weekend and
bsd.port.mk will be changed again to have the new style be mandatory.
Reviewed by: the ports list, mharo in particular
(2) Change "clean" to be more generic -- it now has
pre-clean/post-clean helpers (it only had pre-clean before) and
the actual work is in do-clean so porters can redefine it if
necessary.
Requested by: "Matthew N. Dodd" <winter@jurai.net>
Reviewed by: dirk
- Fix several small bugs.
- Support Excel spreadsheets using xlHtml. (RUN_DEPENDS added)
- Abolish mknmz --ole option.
- Introduce mknmz --html-split option. Split a large HTML document
into parts by <a name="..."> and index them respectively.
Fix PLIST. (@dirrm share/namazu was missing)