From owner-freebsd-ports Sun Apr 26 00:10:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA04957 for freebsd-ports-outgoing; Sun, 26 Apr 1998 00:10:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA04928; Sun, 26 Apr 1998 00:10:02 -0700 (PDT) (envelope-from gnats) Date: Sun, 26 Apr 1998 00:10:02 -0700 (PDT) Message-Id: <199804260710.AAA04928@hub.freebsd.org> To: freebsd-ports Cc: From: "Pedro F. Giffuni" Subject: Re: ports/6419: Update to the FWF port Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6419; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org, giffunip@asme.org Cc: Subject: Re: ports/6419: Update to the FWF port Date: Sun, 26 Apr 1998 02:06:58 -0500 Sorry, I forgot there are new files (I split the patches to make it more maintainable). Please get fwf.tar.gz in incoming. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 00:23:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA06897 for freebsd-ports-outgoing; Sun, 26 Apr 1998 00:23:57 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA06892 for ; Sun, 26 Apr 1998 00:23:55 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id AAA14763 for ; Sun, 26 Apr 1998 00:23:52 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: ports@FreeBSD.ORG Subject: Useful hack or just weird? Date: Sun, 26 Apr 1998 00:23:51 -0700 Message-ID: <14759.893575431@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You be the judge.. This little hack lets the ports collection install "stubs" rather than full binaries, the mission in life of each stub being to essentially commit suicide by installing the relevant package on top of itself and then reinvoking the real binary with the original arguments. This is also sort of a shell-script equivalent of thinking out loud, so please don't judge my little quick hack too harshly - it was all of a 10 minute job. I can identify right off the bat, in fact, a number of its shortcomings: Its "media search" is extremely simplistic in its assumption of where packages are, its derivation of "EXECNAME" is similarly simplistic and surely won't work for all the packages (especially ones with version clash) and it doesn't adequately determine when it's running non-interactively and should just shut up with the various status reports. That said, for such a small hack, it also works a lot better than I thought it would. :-) Unpack the following sharchive and do the following: # patch -d /usr/share/mk < port-stub.diffs # install -c -m 755 port-stub.sh /usr/share/misc (it is very important that port-stub.sh be executable!) Then go to some port directory (for a port you _haven't_ yet installed) and say "make install-stubs" to install a stub executable for it. Then you just invoke this executable as you normally would (perhaps after rehashing your shell) and it should come up after the associated package is found and loaded from the current directory, your mounted FreeBSD cdrom or the ftp.freebsd.org site (in that order). Like I said, useful or weird? You decide. :-) P.S. If anyone can tell me how to make "yap()" in the port-stub script be quiet when run non-interactively, I'd appreciate it. I only know how to check non-interactivity with csh. :-) Thanks. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # port-stub.diffs # port-stub.sh # echo x - port-stub.diffs sed 's/^X//' >port-stub.diffs << 'END-of-port-stub.diffs' XIndex: bsd.port.mk X=================================================================== XRCS file: /home/ncvs/src/share/mk/bsd.port.mk,v Xretrieving revision 1.227.2.35 Xdiff -u -u -r1.227.2.35 bsd.port.mk X--- bsd.port.mk 1998/03/24 03:35:54 1.227.2.35 X+++ bsd.port.mk 1998/04/26 06:43:58 X@@ -87,6 +87,8 @@ X # PKGNAME - Name of the package file to create if the DISTNAME X # isn't really relevant for the port/package X # (default: ${DISTNAME}). X+# EXECNAME - String to derive "stub executable" name from if creating X+# stubs. (default: ${PKGNAME}) X # EXTRACT_ONLY - If defined, a subset of ${DISTFILES} you want to X # actually extract. X # PATCHDIR - A directory containing any additional patches you made X@@ -632,6 +634,8 @@ X # Derived names so that they're easily overridable. X DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} X PKGNAME?= ${DISTNAME} X+EXECNAME?= ${PKGNAME} X+PORTSTUB?= /usr/share/misc/port-stub.sh X X ALLFILES?= ${DISTFILES} ${PATCHFILES} X X@@ -1796,6 +1800,13 @@ X fi; \ X fi; \ X done; \ X+ fi X+.endif X+ X+.if !target(install-stubs) X+install-stubs: X+ @if [ ! -z "${EXECNAME}" -a -x ${PORTSTUB} ]; then \ X+ ${SETENV} PKGNAME=${PKGNAME} ${PORTSTUB} ${PREFIX}/bin/`echo ${EXECNAME} | sed -e 's/[_.-].*//'`; \ X fi X .endif X XIndex: bsd.port.subdir.mk X=================================================================== XRCS file: /home/ncvs/src/share/mk/bsd.port.subdir.mk,v Xretrieving revision 1.15.2.3 Xdiff -u -u -r1.15.2.3 bsd.port.subdir.mk X--- bsd.port.subdir.mk 1997/11/20 05:36:46 1.15.2.3 X+++ bsd.port.subdir.mk 1998/04/26 06:43:06 X@@ -129,6 +129,10 @@ X readmes: readme _SUBDIRUSE X .endif X X+.if !target(install-subs) X+install-stubs: _SUBDIRUSE X+.endif X+ X .if !target(readme) X readme: X @rm -f README.html END-of-port-stub.diffs echo x - port-stub.sh sed 's/^X//' >port-stub.sh << 'END-of-port-stub.sh' X#!/bin/sh X# X# Don't move this! X_PKGNAME=__PKGNAME X X# Be selectively verbose (someday) Xyap() { X echo $* X} X X# Main body. First check to see if we're just an installer invocation. Xif [ "${_PKGNAME}" = "__PKGNAME" ]; then X if [ $# -ne 1 ]; then X yap "This script should only be run by the install-stubs target in ports." X elif [ -f $1 ]; then X yap "$1 already exists, not installing stub." X elif [ ! -w `dirname $1` ]; then X yap "No write permission for `dirname $1`, can't install stub." X else X yap "===> Installing stub file for $1" X sed -e "1,5s/__PKGNAME/${PKGNAME}/" < $0 > $1 && chmod 755 $1 X fi X return 0 Xfi X XRELNAME=`uname -r | sed -e 's/-.*//'` Xif [ -r ${_PKGNAME}.tgz ]; then X _PKGFILE=${_PKGNAME}.tgz Xelif [ -r /cdrom/packages/All/${_PKGNAME}.tgz ]; then X _PKGFILE=/cdrom/packages/All/${_PKGNAME}.tgz Xelse X _PKGFILE=ftp://ftp.freebsd.org/pub/FreeBSD/packages-${RELNAME}/All/${_PKGNAME}.tgz Xfi Xyap "$0 is not currently installed on your system." Xyap "Attempting to install the associated package from:" Xyap "${_PKGFILE}." Xif ! pkg_add ${_PKGFILE}; then X yap "Unable to add package ${_PKGFILE}, sorry!"; X return 1 Xfi Xexec $0 $* END-of-port-stub.sh exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 01:55:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19800 for freebsd-ports-outgoing; Sun, 26 Apr 1998 01:55:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA19793 for ; Sun, 26 Apr 1998 01:55:37 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA12834 for freebsd-ports; Sun, 26 Apr 1998 01:52:32 -0700 (PDT) Date: Sun, 26 Apr 1998 01:52:32 -0700 (PDT) Message-Id: <199804260852.BAA12834@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/04/20] ports/6360 ports LDAP-3.3 will be spawning threads like ma o [1998/04/24] ports/6405 ports does not build; ignores local CFLAGS, CXX 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/10/19] ports/4803 ports xgrabsc dies with "bus error" after selec o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1997/11/19] ports/5093 ports gated 3-5-7 exited on signal 11 o [1998/02/22] misc/5815 ports possible breakage in header files? o [1998/02/23] ports/5825 ports cd-write 1.4 fails to read tracks. o [1998/03/03] ports/5908 ports atalkd won't come up o [1998/03/04] ports/5921 ports The developer(s) changed the tarball, mod o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/09] ports/5960 ports Added printer device o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/04/18] ports/6341 ports make install uses ``make'' instead of ${M o [1998/04/21] ports/6380 ports gcc-2.8.1 port does not create shared lib o [1998/04/24] ports/6408 ports New jpeg port does not link if the older 14 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ f [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n f [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or o [1997/04/01] ports/3169 ports nn port broken o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) a [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy o [1997/06/23] ports/3939 ports new port: latex2html_icon_server o [1997/06/30] ports/3991 ports set of OffiX ports o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/30] ports/4192 ports New port: Amulet f [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] ports/4281 ports Compress pcl graphics files - this is an o [1997/08/14] ports/4304 ports Recommendation re. Ports Collection s [1997/08/22] ports/4360 ports new port of Amaya-1.0b o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/09/25] ports/4631 ports New port: ncurses-1.9.9g o [1997/09/28] ports/4643 ports new port - japanese-english dictionary o [1997/09/28] ports/4644 ports This is a new port xfig -international ba o [1997/10/06] ports/4707 ports new-port : ja-mtools-3.6 (manipulating MS a [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/27] ports/4870 ports New port p5-Gtk a [1997/10/28] ports/4878 ports Apache w/FrontPage Module Port o [1997/10/29] ports/4889 ports new port for ntimelord-1.0 o [1997/11/04] ports/4933 ports New port: cgihtml library o [1997/11/04] ports/4935 ports audio/nas port fails build + fix o [1997/11/04] ports/4937 ports A looks-nice audio level meter port is no o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] ports/4974 ports New port: YODL, Yet Oneother Document Lan o [1997/11/08] ports/4980 ports NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 ports NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] ports/4986 ports NEW PORT: comms/atp - ATP 1.50, a BBS QWK o [1997/11/13] ports/5034 ports (tcsh) blocked write on named pipe sticks o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/17] ports/5080 ports Apache-1.2.4: Improved rc.d script o [1997/11/18] ports/5086 ports new port: elisp-manual.tar.gz o [1997/11/18] ports/5087 ports new port: emacs-lisp-intro.tar.gz o [1997/11/20] ports/5104 ports New port: sis-1.2pl1 a [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/11/29] ports/5175 ports NEW PORT: news/xmitBin, a binary files au o [1997/11/30] ports/5184 ports Port of S-Plus like language R o [1997/12/03] ports/5200 ports new port-package for pgpmoose o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/03] ports/5202 ports new port-package for pathalias o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game o [1997/12/11] ports/5273 ports Port of o2c-1.16 a [1997/12/14] ports/5295 ports New Math port: umfpack o [1997/12/15] ports/5309 ports New port: sls-1.00 [category misc] o [1997/12/15] ports/5312 ports New math port xwpl a [1997/12/17] ports/5331 ports New math port: xldlas-0.85 o [1997/12/19] ports/5342 ports New port ja-netscape-3.04(japanese/netsca o [1997/12/26] ports/5380 ports wb uses ghostscript 4 o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) o [1998/01/08] bin/5463 ports No spell check in pico editor because /us o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/15] ports/5504 ports New port sidplay (category audio) o [1998/01/15] ports/5505 ports MS-Windouws emulator. It can use Japanese o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 o [1998/01/25] ports/5566 ports New port: wmx-4 (category x11) o [1998/01/26] ports/5570 ports new port, rise 0.3.3 a [1998/01/26] ports/5579 ports New ports "ja-tcl-8.0" a [1998/01/26] ports/5580 ports New ports "ja-tk-8.0" o [1998/01/30] ports/5607 ports NEW PORT: timidity-luigi [category audio] o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/03] ports/5630 ports updated not-yet-released version of gone o [1998/02/03] ports/5633 ports Submission of new port in 'lang' category a [1998/02/03] ports/5638 ports mail/bulk_mailer port update o [1998/02/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst a [1998/02/06] ports/5667 ports I have ported the VICE 0.13.0 Commodore e o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/10] ports/5707 ports Update port: ja-dvipsk-5.66a (japanese/dv o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula o [1998/02/17] ports/5776 ports New compression port: lzo o [1998/02/19] ports/5788 ports pcemu harddisk-access fixes o [1998/02/21] ports/5808 ports Added support for JIS encoded PostScript o [1998/02/21] ports/5811 ports netatalk ioctl(SIOCADDMULTI) failure a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/02/28] ports/5878 ports New port: ja-platex209-1.0 (japanese/plat o [1998/03/01] ports/5881 ports new ports: jp-vfxdvik-20a (dvi viewer for o [1998/03/01] ports/5882 ports new ports: xdvik-20a (dvi previewer for X o [1998/03/01] ports/5884 ports New port: icqjava-0.981a (net/icqjava) o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/03] ports/5906 ports gimp-devel and gtk, discrepancy in locati o [1998/03/07] ports/5937 ports rxvt's built from ports directory don't s o [1998/03/08] ports/5946 ports New port biology/molmol a [1998/03/08] ports/5952 ports wwwoffle: read WWW pages offline o [1998/03/09] ports/5957 ports New port: gemdropx-1.0b3 o [1998/03/10] ports/5972 ports x11/fvwm95 requiring gsm, and rplay is a o [1998/03/10] ports/5973 ports New port: 3dpong-0.3 o [1998/03/11] ports/5981 ports cbb port broken, installs with control ch o [1998/03/13] ports/5998 ports New port: xchain-1.0.2 o [1998/03/14] ports/6011 ports new port request o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/15] ports/6027 ports New Port: tgif2tex o [1998/03/15] ports/6028 ports Upgrade Ports: kinput2 o [1998/03/15] ports/6029 ports New Ports: jvim+onew o [1998/03/15] ports/6030 ports Bugfix: mule o [1998/03/17] ports/6041 ports New port: xcogitate-1.02 o [1998/03/17] ports/6048 ports New port: xoids-1.5 o [1998/03/18] ports/6052 ports new port request: mizifont o [1998/03/18] ports/6053 ports new port request: korean/hanIM o [1998/03/18] ports/6054 ports port upgrade: korean/hlatexpsfonts o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/20] ports/6076 ports Upgrade port graphics/sane to version 0.7 o [1998/03/20] ports/6077 ports Small patch to graphics/sane 0.71 - erron o [1998/03/20] ports/6078 ports Documentation concerning logging suggests o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/21] ports/6090 ports New port: xvmahjongg-2.0 o [1998/03/22] ports/6105 ports New port: cftp-0.9.1 o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6119 ports New port: xmastermind-0.1 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/25] ports/6134 ports New port; new program to reconstruct ftp- o [1998/03/26] ports/6139 ports NEW PORT: x11/sharefonts, Shareware ATM f o [1998/03/27] ports/6143 ports new port request: korean/kaistfonts o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/28] ports/6155 ports new port: emulators/vice, Versatile Commo o [1998/03/28] ports/6158 ports New graphics port: Rayshade-4.0 o [1998/03/28] ports/6163 ports New port: xpyraminx-5.4.3 o [1998/03/29] ports/6165 ports New port: xpanex-5.4.3 o [1998/03/29] ports/6166 ports New port: xoct-5.4.3 o [1998/03/29] ports/6169 ports port upgrade: korean/pinetreefonts o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/03/30] ports/6176 ports running architextSearch (excite) under li o [1998/03/30] ports/6181 ports New port: xoj-1.0 o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/03] ports/6207 ports new port request: korean/ftghostscript5 o [1998/04/04] ports/6211 ports New port: sic-0.10a (net) o [1998/04/05] ports/6221 ports New port: mico o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/10] ports/6262 ports New port of bulk_mailer 1.9 o [1998/04/10] ports/6266 ports PostgreSQL port is old o [1998/04/12] ports/6281 ports Many ports don't execute `ldconfig' at th o [1998/04/12] ports/6282 ports >> Checksum mismatch for bxform-088.tgz. o [1998/04/15] ports/6305 ports New ports collection: ja-libslang o [1998/04/15] ports/6306 ports New ports collection: ja-slrn o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 o [1998/04/16] ports/6315 ports new port request: korean/htm a [1998/04/16] ports/6321 ports can't run any version of PostgreSQL on 2. o [1998/04/16] ports/6322 ports Updated port: mysql o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 o [1998/04/18] ports/6343 ports ldap-3.3 port updated o [1998/04/19] ports/6355 ports New port o [1998/04/20] ports/6358 ports new port of AfterStep-1.4.4 o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler o [1998/04/20] ports/6369 ports Patch to ports/net/trafshow port o [1998/04/21] ports/6374 ports Perl 5 port should run h2ph, and install o [1998/04/22] ports/6390 ports fix some setlocale problem in ports/japan o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz o [1998/04/23] ports/6398 ports update gated port from 3.5.8 to 3.5.9 o [1998/04/25] ports/6409 ports japanese/man-doc o [1998/04/25] ports/6411 ports Certain XView assumptions don't hold in X o [1998/04/25] ports/6413 ports new ports for lynx2.8rel.3 (modified for o [1998/04/25] ports/6414 ports new ports for ja-color-lynx2.8rel.3 (modi o [1998/04/25] ports/6415 ports new ports for ja-lynx2.8.1dev.7 (modified o [1998/04/25] ports/6416 ports new ports for ja-color-lynx2.8.1dev.7 (mo o [1998/04/25] ports/6417 ports new ports for ja-libslang-1.0.3 (modified o [1998/04/26] ports/6419 ports Update to the FWF port 175 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 04:24:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA20198 for freebsd-ports-outgoing; Sun, 26 Apr 1998 04:22:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA19691 for ; Sun, 26 Apr 1998 04:14:50 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.5) with ESMTP id NAA08882 for ; Sun, 26 Apr 1998 13:14:15 +0200 (CEST) To: ports@FreeBSD.ORG Subject: Frontpage server extension port ? From: Poul-Henning Kamp Date: Sun, 26 Apr 1998 13:14:15 +0200 Message-ID: <8880.893589255@critter.freebsd.dk> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Why hasn't nobody made one of these yet ? we DO want to make it as easy as possible for people to replace NT servers, right ? -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 05:16:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23972 for freebsd-ports-outgoing; Sun, 26 Apr 1998 05:12:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23493; Sun, 26 Apr 1998 05:07:34 -0700 (PDT) (envelope-from jseger) Date: Sun, 26 Apr 1998 05:07:34 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804261207.FAA23493@hub.freebsd.org> To: perlsta@cs.sunyit.edu, jseger, freebsd-ports Subject: Re: misc/5815 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: possible breakage in header files? State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Apr 26 05:07:21 PDT 1998 State-Changed-Why: Fixed in latest trafshow port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 06:02:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA26774 for freebsd-ports-outgoing; Sun, 26 Apr 1998 05:58:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA26505; Sun, 26 Apr 1998 05:54:07 -0700 (PDT) (envelope-from jseger) Date: Sun, 26 Apr 1998 05:54:07 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804261254.FAA26505@hub.freebsd.org> To: giffunip@asme.org, jseger, freebsd-ports Subject: Re: ports/6419 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to the FWF port State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Apr 26 05:53:51 PDT 1998 State-Changed-Why: Imported with some minor changes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 06:08:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27588 for freebsd-ports-outgoing; Sun, 26 Apr 1998 06:06:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27486; Sun, 26 Apr 1998 06:05:14 -0700 (PDT) (envelope-from jseger) Date: Sun, 26 Apr 1998 06:05:14 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804261305.GAA27486@hub.freebsd.org> To: jseger, freebsd-ports, peter Subject: Re: ports/6398 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update gated port from 3.5.8 to 3.5.9 Responsible-Changed-From-To: freebsd-ports->peter Responsible-Changed-By: jseger Responsible-Changed-When: Sun Apr 26 06:04:56 PDT 1998 Responsible-Changed-Why: Peter is the MAINTAINER. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 06:12:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28098 for freebsd-ports-outgoing; Sun, 26 Apr 1998 06:10:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27930; Sun, 26 Apr 1998 06:09:37 -0700 (PDT) (envelope-from jseger) Date: Sun, 26 Apr 1998 06:09:37 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804261309.GAA27930@hub.freebsd.org> To: awhawks@usa.net, jseger, freebsd-ports Subject: Re: ports/6369 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to ports/net/trafshow port State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Apr 26 06:09:23 PDT 1998 State-Changed-Why: I committed another fix earlier today. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 06:20:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28294 for freebsd-ports-outgoing; Sun, 26 Apr 1998 06:12:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA28200; Sun, 26 Apr 1998 06:11:27 -0700 (PDT) (envelope-from jseger) Date: Sun, 26 Apr 1998 06:11:27 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804261311.GAA28200@hub.freebsd.org> To: wollman@khavrinen.lcs.mit.edu, jseger, freebsd-ports Subject: Re: ports/6266 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PostgreSQL port is old State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Apr 26 06:10:59 PDT 1998 State-Changed-Why: The port was recently upgraded to 6.3.2. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 07:34:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04742 for freebsd-ports-outgoing; Sun, 26 Apr 1998 07:32:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fang.cs.sunyit.edu (perlsta@fang.cs.sunyit.edu [192.52.220.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA02842; Sun, 26 Apr 1998 07:11:45 -0700 (PDT) (envelope-from perlsta@fang.cs.sunyit.edu) Received: from localhost (perlsta@localhost) by fang.cs.sunyit.edu (8.8.5/8.7.3) with SMTP id JAA14488; Sun, 26 Apr 1998 09:13:25 GMT Date: Sun, 26 Apr 1998 09:13:25 +0000 (GMT) From: Alfred Perlstein To: "Justin M. Seger" cc: jseger@hub.freebsd.org, freebsd-ports@hub.freebsd.org Subject: Re: misc/5815 In-Reply-To: <199804261207.FAA23493@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org yes, it was unnessesarily including too many headers files that were causeing conflicts and "stuff" trafshow's fault and mine for not looking at it correctly. sorry, -Alfred On Sun, 26 Apr 1998, Justin M. Seger wrote: > Synopsis: possible breakage in header files? > > State-Changed-From-To: open-closed > State-Changed-By: jseger > State-Changed-When: Sun Apr 26 05:07:21 PDT 1998 > State-Changed-Why: > Fixed in latest trafshow port. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 07:50:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA05984 for freebsd-ports-outgoing; Sun, 26 Apr 1998 07:46:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.kt.rim.or.jp (root@mail.kt.rim.or.jp [202.247.130.53]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA05858; Sun, 26 Apr 1998 07:45:34 -0700 (PDT) (envelope-from kuriyama@sky.rim.or.jp) Received: from moon.opt.phys.waseda.ac.jp (ppp378.kt.rim.or.jp [202.247.140.78]) by mail.kt.rim.or.jp (8.8.5/3.4W3-rim1.1) with ESMTP id XAA18269; Sun, 26 Apr 1998 23:45:30 +0900 (JST) Received: from sky.rim.or.jp (earth [192.168.1.2]) by moon.opt.phys.waseda.ac.jp (8.8.7/3.5Wpl4/moon-0.9) with ESMTP id XAA09887; Sun, 26 Apr 1998 23:44:58 +0900 (JST) Message-ID: <35434835.8DCB7BBC@sky.rim.or.jp> Date: Sun, 26 Apr 1998 23:44:05 +0900 From: Jun Kuriyama X-Mailer: Mozilla 4.04 [ja] (Win95; I) MIME-Version: 1.0 To: "Justin M. Seger" CC: mi@aldan.algebra.com, FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6408: New jpeg port does not build if the old libs are around References: <199804241955.PAA18044@xxx.video-collage.com> <199804242247.SAA21526@freebsd.scds.com> Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Justin M. Seger wrote: > Could someone try to repeat this on STABLE? It works fine on current. On my 2.2.6-STABLE box, I can build it with older libjpeg. But I don't use gcc28. Is this gcc28 problem? -- Jun Kuriyama // kuriyama@sky.rim.or.jp // kuriyama@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 07:54:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06467 for freebsd-ports-outgoing; Sun, 26 Apr 1998 07:50:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06217; Sun, 26 Apr 1998 07:48:10 -0700 (PDT) (envelope-from jseger) Date: Sun, 26 Apr 1998 07:48:10 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804261448.HAA06217@hub.freebsd.org> To: mi@aldan.algebra.com, jseger, freebsd-ports Subject: Re: ports/6408 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New jpeg port does not link if the older libs are around State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Apr 26 07:47:53 PDT 1998 State-Changed-Why: This is a problem with gcc2.8. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 07:55:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06721 for freebsd-ports-outgoing; Sun, 26 Apr 1998 07:52:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA06199; Sun, 26 Apr 1998 07:48:06 -0700 (PDT) (envelope-from jseger@freebsd.scds.com) Received: (from jseger@localhost) by freebsd.scds.com (8.8.8/8.8.5) id LAA27207; Sun, 26 Apr 1998 11:00:08 -0400 (EDT) Date: Sun, 26 Apr 1998 11:00:08 -0400 (EDT) Message-Id: <199804261500.LAA27207@freebsd.scds.com> From: "Justin M. Seger" To: kuriyama@sky.rim.or.jp CC: mi@aldan.algebra.com, FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-reply-to: <35434835.8DCB7BBC@sky.rim.or.jp> (message from Jun Kuriyama on Sun, 26 Apr 1998 23:44:05 +0900) Subject: Re: ports/6408: New jpeg port does not build if the old libs are around References: <199804241955.PAA18044@xxx.video-collage.com> <199804242247.SAA21526@freebsd.scds.com> <35434835.8DCB7BBC@sky.rim.or.jp> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On my 2.2.6-STABLE box, I can build it with older libjpeg. But I don't use gcc28. Is this gcc28 problem? Sounds like it. I'll close the PR. -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 07:57:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06462 for freebsd-ports-outgoing; Sun, 26 Apr 1998 07:50:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06378; Sun, 26 Apr 1998 07:50:02 -0700 (PDT) (envelope-from gnats) Date: Sun, 26 Apr 1998 07:50:02 -0700 (PDT) Message-Id: <199804261450.HAA06378@hub.freebsd.org> To: freebsd-ports From: Jun Kuriyama Subject: Re: ports/6408: New jpeg port does not build if the old libs are around Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6408; it has been noted by GNATS. From: Jun Kuriyama To: "Justin M. Seger" Cc: mi@aldan.algebra.com, FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6408: New jpeg port does not build if the old libs are around Date: Sun, 26 Apr 1998 23:44:05 +0900 Justin M. Seger wrote: > Could someone try to repeat this on STABLE? It works fine on current. On my 2.2.6-STABLE box, I can build it with older libjpeg. But I don't use gcc28. Is this gcc28 problem? -- Jun Kuriyama // kuriyama@sky.rim.or.jp // kuriyama@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 08:06:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07978 for freebsd-ports-outgoing; Sun, 26 Apr 1998 08:04:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07592; Sun, 26 Apr 1998 08:00:01 -0700 (PDT) (envelope-from gnats) Date: Sun, 26 Apr 1998 08:00:01 -0700 (PDT) Message-Id: <199804261500.IAA07592@hub.freebsd.org> To: freebsd-ports From: "Justin M. Seger" Subject: Re: ports/6408: New jpeg port does not build if the old libs are around Reply-To: "Justin M. Seger" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6408; it has been noted by GNATS. From: "Justin M. Seger" To: kuriyama@sky.rim.or.jp Cc: mi@aldan.algebra.com, FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6408: New jpeg port does not build if the old libs are around Date: Sun, 26 Apr 1998 11:00:08 -0400 (EDT) On my 2.2.6-STABLE box, I can build it with older libjpeg. But I don't use gcc28. Is this gcc28 problem? Sounds like it. I'll close the PR. -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 08:20:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08616 for freebsd-ports-outgoing; Sun, 26 Apr 1998 08:11:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08182 for ; Sun, 26 Apr 1998 08:06:02 -0700 (PDT) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id KAA18567; Sun, 26 Apr 1998 10:04:51 -0400 (EDT) Date: Sun, 26 Apr 1998 10:04:51 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: manning@bear.cs.zorg.edu cc: ports@FreeBSD.ORG Subject: Re: Defragmentation program/port In-Reply-To: <199804252341.XAA00215@manning.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 25 Apr 1998 manning@bear.cs.zorg.edu wrote: > Is there a program or a port that you can use to defragment your hard- > drive? Like defrag for dos? That's because defragging is a very major win under dos, and a fairly minor one for a unix running an ffs filesystem. There are some commercial implementations I've heard of, but I've never heard that they made very much of a performance difference ... probably relying on folks not understanding the underlying differences in the dos and ffs filesystems. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 08:42:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11315 for freebsd-ports-outgoing; Sun, 26 Apr 1998 08:40:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11300; Sun, 26 Apr 1998 08:40:01 -0700 (PDT) (envelope-from gnats) Received: from aldan.ziplink.net (mi@kot.ne.mediaone.net [24.128.29.55]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09302 for ; Sun, 26 Apr 1998 08:19:40 -0700 (PDT) (envelope-from mi@rtfm.ziplink.net) Received: from rtfm.ziplink.net (rtfm [199.232.255.52]) by aldan.ziplink.net (8.8.8/8.8.7) with ESMTP id PAA18670 for ; Sun, 26 Apr 1998 15:19:38 GMT (envelope-from mi@rtfm.ziplink.net) Received: (from mi@localhost) by rtfm.ziplink.net (8.8.8/8.8.5) id LAA26760; Sun, 26 Apr 1998 11:19:37 -0400 (EDT) Message-Id: <199804261519.LAA26760@rtfm.ziplink.net> Date: Sun, 26 Apr 1998 11:19:37 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6423: xdelta port remains broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6423 >Category: ports >Synopsis: ld: -lgdbm: no match >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 26 08:40:01 PDT 1998 >Last-Modified: >Originator: Mikhail Teterin >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: libgdbm is in /usr/local/lib -- where else? >Description: 1) When creating xdelta's library (line breaks added): cc -shared -o .libs/libxdelta.so.0.18.0 cm.lo emit.lo grow.lo map.lo genck.lo cksum.lo xdelta.lo chash.lo misc.lo xd-gdbm.lo md5c.lo maketime.lo fakeglib.lo partime.lo -lgdbm -lz -lc ld: -lgdbm: no match *** Error code 1 [...] Notably, I pointed this to jmacd, and he blaimed libtool for not including /usr/local/lib into -L path. Well, whoever is at fault the port is still broken, although not as much as before. 2) Port's Makefile has this weird MAKE_ENV= CC=cc in it. Not only does it make the port ignore local settings in (/etc/make.conf), it is also not needed. CC is passed to build by bsd.port.mk . At least, the line should read ``CC="${CC}"'', but better not have it at all. >How-To-Repeat: Just build the port. >Fix: See description. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 08:44:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11526 for freebsd-ports-outgoing; Sun, 26 Apr 1998 08:42:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA11307; Sun, 26 Apr 1998 08:40:03 -0700 (PDT) (envelope-from gnats) Received: from aldan.ziplink.net (mi@kot.ne.mediaone.net [24.128.29.55]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA10128 for ; Sun, 26 Apr 1998 08:28:21 -0700 (PDT) (envelope-from mi@rtfm.ziplink.net) Received: from rtfm.ziplink.net (rtfm [199.232.255.52]) by aldan.ziplink.net (8.8.8/8.8.7) with ESMTP id PAA18687 for ; Sun, 26 Apr 1998 15:28:19 GMT (envelope-from mi@rtfm.ziplink.net) Received: (from mi@localhost) by rtfm.ziplink.net (8.8.8/8.8.5) id LAA26920; Sun, 26 Apr 1998 11:28:18 -0400 (EDT) Message-Id: <199804261528.LAA26920@rtfm.ziplink.net> Date: Sun, 26 Apr 1998 11:28:18 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6424: gcc28 port problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6424 >Category: ports >Synopsis: misc. problems with gcc28 port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 26 08:40:02 PDT 1998 >Last-Modified: >Originator: Mikhail Teterin >Organization: Virtual Estates, Inc. >Release: FreeBSD 3.0-CURRENT i386 >Environment: Reading specs from /usr/local/lib/gcc-lib/i386-unknown-freebsd3.0/2.8.1/specs gcc version 2.8.1 >Description: 1. C++ compiler does not know about /usr/include/g++ 2. See PR ports/6408 3. -shared patch is still not commited (required to reproduce 2.) >How-To-Repeat: Try compiling: #include main () { return 0; } mi@rtfm:/tmp (1064) pg++ -c t.C t.C:1: iostream.h: No such file or directory mi@rtfm:/tmp (1065) c++ -c t.C mi@rtfm:/tmp (1066) # compiles just fine >Fix: Add explicit -I/usr/include/g++ to CXXFLAGS >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 09:42:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA15491 for freebsd-ports-outgoing; Sun, 26 Apr 1998 09:14:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp6540.on.bellglobal.com (ppp6459.on.bellglobal.com [206.172.208.51]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA15347 for ; Sun, 26 Apr 1998 09:12:35 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp6540.on.bellglobal.com (8.8.8/8.8.8) with SMTP id NAA00356; Sun, 26 Apr 1998 13:10:49 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp6540.on.bellglobal.com: tim owned process doing -bs Date: Sun, 26 Apr 1998 13:10:24 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@ppp6540.on.bellglobal.com Reply-To: ac199@hwcn.org To: Chuck Robey cc: manning@bear.cs.zorg.edu, ports@FreeBSD.ORG Subject: Re: Defragmentation program/port In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 26 Apr 1998, Chuck Robey wrote: > On Sat, 25 Apr 1998 manning@bear.cs.zorg.edu wrote: > > Is there a program or a port that you can use to defragment your hard- > > drive? Like defrag for dos? [...] > made very much of a performance difference ... probably relying on folks > not understanding the underlying differences in the dos and ffs > filesystems. IOW, effectively handles defragmentation automatically. :-) -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 10:56:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA25955 for freebsd-ports-outgoing; Sun, 26 Apr 1998 10:54:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA24820 for ; Sun, 26 Apr 1998 10:46:01 -0700 (PDT) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id MAA18861; Sun, 26 Apr 1998 12:44:54 -0400 (EDT) Date: Sun, 26 Apr 1998 12:44:54 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: Tim Vanderhoek cc: manning@bear.cs.zorg.edu, ports@FreeBSD.ORG Subject: Re: Defragmentation program/port In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 26 Apr 1998, Tim Vanderhoek wrote: > On Sun, 26 Apr 1998, Chuck Robey wrote: > > On Sat, 25 Apr 1998 manning@bear.cs.zorg.edu wrote: > > > Is there a program or a port that you can use to defragment your hard- > > > drive? Like defrag for dos? > [...] > > made very much of a performance difference ... probably relying on folks > > not understanding the underlying differences in the dos and ffs > > filesystems. > > IOW, effectively handles defragmentation automatically. :-) Not with 100 percent effectiveness, but very good. The smallish remainder is the reason the companies offering the unix defraggers exist. IMO without good reason, but they exist. > > > -- > Only two other people have a .sig like this one. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 11:28:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29287 for freebsd-ports-outgoing; Sun, 26 Apr 1998 11:25:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from host.cer.ntnu.edu.tw (clkao@host.cer.ntnu.edu.tw [140.122.119.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23669 for ; Sun, 26 Apr 1998 10:33:08 -0700 (PDT) (envelope-from clkao@host.cer.ntnu.edu.tw) Received: (from clkao@localhost) by host.cer.ntnu.edu.tw (8.8.8/8.8.7) id BAA02840; Mon, 27 Apr 1998 01:30:47 +0800 (CST) (envelope-from clkao) Message-ID: <19980427013046.65280@CirX.ORG> Date: Mon, 27 Apr 1998 01:30:46 +0800 From: Chia-liang Kao To: ac199@hwcn.org Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/6361: New ports collection: GNU Pascal Compiler References: <19980426220618.33825@CirX.ORG> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84e In-Reply-To: ; from Tim Vanderhoek on Sun, Apr 26, 1998 at 01:31:58PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Apr 26, 1998 at 01:31:58PM -0400, Tim Vanderhoek wrote: > That's going to be a tricky port... > > I'm not sure if we have others that depend on system sources. If > you're worried about something, you should ask on the > freebsd-ports list and see if there's an example to follow. I had taken some look on g77 as you suggested, before I made the port. According to the Makefile of gpc itself, it depends on more objects than g77 does, and that's why I copy the entire gcc tree or make symbolic link for it. > Does the port replace the system `cc' or just use the system `cc' > sources to produce the pascal compiler? How easy would it be for > the port to use gcc-2.8.1 or egcs? Certainly just use, and `make clean' will remove everything, and let everything go back to the original, except the chmod'ed files (configure, etc). AFAIK, gpc claims itself as a frontend of gcc, and only work on 2.7.2.1(for gpc-2.0, as 2.6.3 for gpc-1.x). but I believe that it means the files it needs, not the compiler being used to compile it. -- Chia-liang Kao To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 13:38:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14281 for freebsd-ports-outgoing; Sun, 26 Apr 1998 13:31:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from granite.sentex.net (granite.sentex.ca [199.212.134.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA12443; Sun, 26 Apr 1998 13:12:38 -0700 (PDT) (envelope-from mike@sentex.net) Received: from ospf-mdt.sentex.net (ospf-mdt.sentex.net [205.211.164.81]) by granite.sentex.net (8.8.6/8.6.9) with SMTP id QAA17107; Sun, 26 Apr 1998 16:12:16 -0400 (EDT) From: mike@sentex.net (Mike Tancsa) To: phk@FreeBSD.ORG (Poul-Henning Kamp) Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Frontpage server extension port ? Date: Sun, 26 Apr 1998 19:59:49 GMT Message-ID: <354391d4.1193298993@mail.sentex.net> References: <8880.893589255@critter.freebsd.dk> In-Reply-To: <8880.893589255@critter.freebsd.dk> X-Mailer: Forte Agent .99e/32.227 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 26 Apr 1998 13:14:15 +0200, in sentex.lists.freebsd.misc you wrote: > >Why hasn't nobody made one of these yet ? There is a really good one that is uptodate as well. http://www.westbend.net/~hetzels/apache-fp/ ---Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 13:38:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14548 for freebsd-ports-outgoing; Sun, 26 Apr 1998 13:34:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA14379; Sun, 26 Apr 1998 13:32:58 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id QAA13072; Sun, 26 Apr 1998 16:32:56 -0400 (EDT) (envelope-from mph) Message-ID: <19980426163255.B13035@rh.psu.edu> Date: Sun, 26 Apr 1998 16:32:55 -0400 From: Matthew Hunt To: Poul-Henning Kamp , ports@FreeBSD.ORG Subject: Re: Frontpage server extension port ? References: <8880.893589255@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <8880.893589255@critter.freebsd.dk>; from Poul-Henning Kamp on Sun, Apr 26, 1998 at 01:14:15PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Apr 26, 1998 at 01:14:15PM +0200, Poul-Henning Kamp wrote: > Why hasn't nobody made one of these yet ? PR 4878, with followups as recently as Friday. -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 14:09:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA18563 for freebsd-ports-outgoing; Sun, 26 Apr 1998 14:04:24 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp1712.on.bellglobal.com (ppp1712.on.bellglobal.com [206.172.249.176]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA14755 for ; Sun, 26 Apr 1998 13:37:56 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp1712.on.bellglobal.com (8.8.8/8.8.8) with SMTP id RAA00253; Sun, 26 Apr 1998 17:35:54 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp1712.on.bellglobal.com: tim owned process doing -bs Date: Sun, 26 Apr 1998 17:35:54 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@ppp1712.on.bellglobal.com Reply-To: ac199@hwcn.org To: Chia-liang Kao cc: ac199@hwcn.org, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6361: New ports collection: GNU Pascal Compiler In-Reply-To: <19980427013046.65280@CirX.ORG> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 27 Apr 1998, Chia-liang Kao wrote: > I had taken some look on g77 as you suggested, before I made the port. > According to the Makefile of gpc itself, it depends on more objects > than g77 does, and that's why I copy the entire gcc tree or make > symbolic link for it. Ok, I see. Don't feel obligated to provide the symlink option if it feels onerous. Copying the whole gcc tree is much safer (eg. what if someone aborts the gpc port before it does maintainer-clean). -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 15:53:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA29459 for freebsd-ports-outgoing; Sun, 26 Apr 1998 15:29:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA26437; Sun, 26 Apr 1998 15:08:35 -0700 (PDT) (envelope-from itojun@FreeBSD.org) From: Jun-ichiro Itoh Received: (from itojun@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA14225; Sun, 26 Apr 1998 15:07:07 -0700 (PDT) Date: Sun, 26 Apr 1998 15:07:07 -0700 (PDT) Message-Id: <199804262207.PAA14225@freefall.freebsd.org> To: horikawa@jp.freebsd.org, itojun@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6409 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: japanese/man-doc State-Changed-From-To: open-closed State-Changed-By: itojun State-Changed-When: Sun Apr 26 15:06:43 PDT 1998 State-Changed-Why: thanks committed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 19:12:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21227 for freebsd-ports-outgoing; Sun, 26 Apr 1998 19:02:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA21063; Sun, 26 Apr 1998 19:00:02 -0700 (PDT) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19430; Sun, 26 Apr 1998 18:43:13 -0700 (PDT) (envelope-from nobody) Message-Id: <199804270143.SAA19430@hub.freebsd.org> Date: Sun, 26 Apr 1998 18:43:13 -0700 (PDT) From: mcdougall@ameritech.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6425: vice port doesnt build on -current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6425 >Category: ports >Synopsis: vice port doesnt build on -current >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 26 19:00:01 PDT 1998 >Last-Modified: >Originator: Adam McDougall >Organization: >Release: 3.0-current >Environment: FreeBSD bsdx.dyn.ml.org 3.0-CURRENT FreeBSD 3.0-CURRENT #2: Thu Apr 23 02:18:16 EDT 1998 user1@bsdx.dyn.ml.org:/asynch/src/sys/compile/BSDXKRNL i386 >Description: cc -I/usr/X11R6/include -O -pipe -I/usr/X11R6/include -DHAVE_CONFIG_H -DPREFIX =\"/usr/X11R6\" -I./include -I./arch/unix -I./include -o viad1.o -c viad1.c In file included from /usr/include/dirent.h:43, from include/fs_unix.h:37, from include/drive.h:44, from include/true1541.h:23, from viad1.c:66: /usr/include/sys/dirent.h:52: parse error before `u_int32_t' /usr/include/sys/dirent.h:52: warning: no semicolon at end of struct or union /usr/include/sys/dirent.h:53: warning: data definition has no type or storage cl ass /usr/include/sys/dirent.h:54: parse error before `d_type' /usr/include/sys/dirent.h:54: warning: data definition has no type or storage cl ass /usr/include/sys/dirent.h:55: parse error before `d_namlen' /usr/include/sys/dirent.h:55: warning: data definition has no type or storage cl ass /usr/include/sys/dirent.h:62: parse error before `}' gmake: *** [viad1.o] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. # >How-To-Repeat: cd /usr/ports/emulators/vice ; make all install clean >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 19:46:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25309 for freebsd-ports-outgoing; Sun, 26 Apr 1998 19:44:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA24946; Sun, 26 Apr 1998 19:40:01 -0700 (PDT) (envelope-from gnats) Received: from cx67628-a.dt1.sdca.home.com (scottl@cx67628-a.dt1.sdca.home.com [24.0.130.231]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA23915 for ; Sun, 26 Apr 1998 19:29:08 -0700 (PDT) (envelope-from scottl@cx67628-a.dt1.sdca.home.com) Received: (from scottl@localhost) by cx67628-a.dt1.sdca.home.com (8.8.8/8.8.8) id TAA04430; Sun, 26 Apr 1998 19:33:03 -0700 (PDT) (envelope-from scottl) Message-Id: <199804270233.TAA04430@cx67628-a.dt1.sdca.home.com> Date: Sun, 26 Apr 1998 19:33:03 -0700 (PDT) From: slafla@home.com Reply-To: slafla@home.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6426: ports/graphics/jpeg doesn't build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6426 >Category: ports >Synopsis: ports/graphics/jpeg doesn't build >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 26 19:40:00 PDT 1998 >Last-Modified: >Originator: Scott Long >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-CURRENT, last cvsup of both ports and standard trees on 26 Apr 98, last buildworld on 24 Apr 98 >Description: ports/graphics/jpeg fails during build. Last bit of output is: ./libtool --mode=link cc -o jpegtran jpegtran.lo rdswitch.lo cdjpeg.lo transupp.lo libjpeg.la LD_LIBRARY_PATH=".libs:$LD_LIBRARY_PATH" cc -o .libs/jpegtran jpegtran.o rdswitch.o cdjpeg.o transupp.o -R/usr/local/lib -ljpeg transupp.o: Undefined symbol `_jpeg_save_markers' referenced from text segment transupp.o: Undefined symbol `_jpeg_save_markers' referenced from text segment >How-To-Repeat: type 'make' from /usr/ports/graphics/jpeg >Fix: If I do 'make extract && make patch', then go to work/jpeg-6b and manually run './configure && make', I do not get any errors. Returning to ../.. and running 'make install' will install and register the package with no errors >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 19:52:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25784 for freebsd-ports-outgoing; Sun, 26 Apr 1998 19:51:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25734; Sun, 26 Apr 1998 19:50:01 -0700 (PDT) (envelope-from gnats) Received: from cx67628-a.dt1.sdca.home.com (scottl@cx67628-a.dt1.sdca.home.com [24.0.130.231]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA25067 for ; Sun, 26 Apr 1998 19:41:40 -0700 (PDT) (envelope-from scottl@cx67628-a.dt1.sdca.home.com) Received: (from scottl@localhost) by cx67628-a.dt1.sdca.home.com (8.8.8/8.8.8) id TAA10375; Sun, 26 Apr 1998 19:45:45 -0700 (PDT) (envelope-from scottl) Message-Id: <199804270245.TAA10375@cx67628-a.dt1.sdca.home.com> Date: Sun, 26 Apr 1998 19:45:45 -0700 (PDT) From: slafla@home.com Reply-To: slafla@home.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6427: Many problems with ports/graphics/gimp-devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6427 >Category: ports >Synopsis: Many problems with ports/graphics/gimp-devel >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Apr 26 19:50:00 PDT 1998 >Last-Modified: >Originator: Scott Long >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-CURRENT, ports and standard trees cvsupped as of 26 Apr 98 >Description: gimp-0.99.26 does not exist on either server listed in MASTER_SITES, nor on ftp.freebsd.org libjpeg is not fould by make even though it is installed. LIB_DEPENDS list jpeg\\.8\\, don't know if this is right. FORCE_PKG_REGISTER must be set to keep make from complaining >How-To-Repeat: run 'make' from /usr/ports/gimp-devel >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 20:42:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA01006 for freebsd-ports-outgoing; Sun, 26 Apr 1998 20:41:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA00926; Sun, 26 Apr 1998 20:40:02 -0700 (PDT) (envelope-from gnats) Received: from johngalt.celestial.com (johngalt.celestial.com [192.136.111.59]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA29704 for ; Sun, 26 Apr 1998 20:30:48 -0700 (PDT) (envelope-from sabami.seaslug.org!sab@celestial.com) Received: from localhost (2184 bytes) by johngalt.celestial.com via rmail with P:stdio/R:inet_hosts/T:smtp (sender: ) (ident using unix) id for ; Sun, 26 Apr 1998 20:30:41 -0700 (PDT) (Smail-3.2.0.101 1997-Dec-17 #7 built 1998-Mar-24) Received: (from scott@localhost) by two.sabami.seaslug.org (8.8.5/8.6.12) id TAA22484; Sun, 26 Apr 1998 19:35:38 -0700 (PDT) Message-Id: <199804270235.TAA22484@two.sabami.seaslug.org> Date: Sun, 26 Apr 1998 19:35:38 -0700 (PDT) From: Scott Blachowicz Reply-To: sab@sabami.seaslug.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6428: Update mail/nmh port to nmh-0.24 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6428 >Category: ports >Synopsis: update port to latest release >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Apr 26 20:40:01 PDT 1998 >Last-Modified: >Originator: Scott Blachowicz >Organization: none >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: Update to latest release. Also, fix problem of running the pkg/INSTALL script if it managed to lose its execute permissions. >How-To-Repeat: Apply this boring patch >Fix: Not much of anything needed over previous version...here's the patch... apply with 'patch -p1': diff -ur nmh-curr/Makefile nmh-0.24/Makefile --- nmh-curr/Makefile Tue Feb 24 03:23:00 1998 +++ nmh-0.24/Makefile Fri Apr 3 21:08:13 1998 @@ -1,12 +1,12 @@ # New ports collection makefile for: nmh -# Version required: 0.23 +# Version required: 0.24 # Date created: 26 July 1997 # Whom: Scott Blachowicz # # $Id: Makefile,v 1.6 1998/02/24 03:02:46 steve Exp $ # -DISTNAME= nmh-0.23 +DISTNAME= nmh-0.24 CATEGORIES= mail MASTER_SITES= ftp://ftp.math.gatech.edu/pub/nmh/ @@ -33,7 +33,7 @@ @${TOUCH} ${WRKSRC}/stamp-h.in post-install: - @PKG_PREFIX='${PREFIX}' ${PKGDIR}/INSTALL + @PKG_PREFIX='${PREFIX}' sh ${PKGDIR}/INSTALL chgrp mail ${PREFIX}/bin/inc chmod g+s ${PREFIX}/bin/inc diff -ur nmh-curr/files/md5 nmh-0.24/files/md5 --- nmh-curr/files/md5 Tue Feb 24 03:23:00 1998 +++ nmh-0.24/files/md5 Fri Apr 3 20:59:35 1998 @@ -1 +1 @@ -MD5 (nmh-0.23.tar.gz) = 382fad4ac6524c5477d06e81fc5916be +MD5 (nmh-0.24.tar.gz) = cc9236c060355756ad469a338806416d >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 20:59:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA03354 for freebsd-ports-outgoing; Sun, 26 Apr 1998 20:58:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA02495; Sun, 26 Apr 1998 20:53:29 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15289; Sun, 26 Apr 1998 20:52:01 -0700 (PDT) Date: Sun, 26 Apr 1998 20:52:01 -0700 (PDT) Message-Id: <199804270352.UAA15289@freefall.freebsd.org> To: andy@icc.surw.chel.su, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/5973 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: 3dpong-0.3 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Sun Apr 26 23:51:14 EDT 1998 State-Changed-Why: We'll make a dent in your PR collection yet... :-) Imported with minor changes, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Sun Apr 26 23:51:14 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 21:35:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA08731 for freebsd-ports-outgoing; Sun, 26 Apr 1998 21:33:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06511; Sun, 26 Apr 1998 21:19:15 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15507; Sun, 26 Apr 1998 21:17:47 -0700 (PDT) Date: Sun, 26 Apr 1998 21:17:47 -0700 (PDT) Message-Id: <199804270417.VAA15507@freefall.freebsd.org> To: andy@icc.surw.chel.su, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6041 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: xcogitate-1.02 State-Changed-From-To: open-analyzed State-Changed-By: mph State-Changed-When: Mon Apr 27 00:16:05 EDT 1998 State-Changed-Why: The tarball on the MASTER_SITE is corrupted (gzip complains of a premature EOF). Can you provide a correct copy of the distfile, or supply a location for it? Thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Apr 27 00:16:05 EDT 1998 Responsible-Changed-Why: I will commit it when I can get a valid distfile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 21:44:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA11122 for freebsd-ports-outgoing; Sun, 26 Apr 1998 21:44:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA08112; Sun, 26 Apr 1998 21:29:41 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15712; Sun, 26 Apr 1998 21:28:12 -0700 (PDT) Date: Sun, 26 Apr 1998 21:28:12 -0700 (PDT) Message-Id: <199804270428.VAA15712@freefall.freebsd.org> To: sab@sabami.seaslug.org, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6428 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port to latest release State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Mon Apr 27 00:27:47 EDT 1998 State-Changed-Why: Patches applied, thanks! Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Apr 27 00:27:47 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 21:45:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA11456 for freebsd-ports-outgoing; Sun, 26 Apr 1998 21:45:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA09605; Sun, 26 Apr 1998 21:38:08 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA15905; Sun, 26 Apr 1998 21:36:40 -0700 (PDT) Date: Sun, 26 Apr 1998 21:36:40 -0700 (PDT) Message-Id: <199804270436.VAA15905@freefall.freebsd.org> To: andy@icc.surw.chel.su, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/5998 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: xchain-1.0.2 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Mon Apr 27 00:36:22 EDT 1998 State-Changed-Why: Imported with minor changes, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Apr 27 00:36:22 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 21:50:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA12377 for freebsd-ports-outgoing; Sun, 26 Apr 1998 21:50:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA12353; Sun, 26 Apr 1998 21:50:33 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16135; Sun, 26 Apr 1998 21:49:04 -0700 (PDT) Date: Sun, 26 Apr 1998 21:49:04 -0700 (PDT) Message-Id: <199804270449.VAA16135@freefall.freebsd.org> To: andy@icc.surw.chel.su, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/5957 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: gemdropx-1.0b3 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Mon Apr 27 00:48:19 EDT 1998 State-Changed-Why: Imported with minor changes, thanks. (Can I be replaced with a recording now?) Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Apr 27 00:48:19 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 22:03:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14240 for freebsd-ports-outgoing; Sun, 26 Apr 1998 22:03:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA14227; Sun, 26 Apr 1998 22:03:32 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA16356; Sun, 26 Apr 1998 22:02:03 -0700 (PDT) Date: Sun, 26 Apr 1998 22:02:03 -0700 (PDT) Message-Id: <199804270502.WAA16356@freefall.freebsd.org> To: andy@icc.surw.chel.su, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6048 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: xoids-1.5 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Mon Apr 27 01:01:33 EDT 1998 State-Changed-Why: Imported with minor changes, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Apr 27 01:01:33 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Apr 26 22:28:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA17107 for freebsd-ports-outgoing; Sun, 26 Apr 1998 22:28:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA17100; Sun, 26 Apr 1998 22:28:18 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA16566; Sun, 26 Apr 1998 22:26:49 -0700 (PDT) Date: Sun, 26 Apr 1998 22:26:49 -0700 (PDT) Message-Id: <199804270526.WAA16566@freefall.freebsd.org> To: giffunip@asme.org, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/5331 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New math port: xldlas-0.85 State-Changed-From-To: analyzed-closed State-Changed-By: mph State-Changed-When: Mon Apr 27 01:25:27 EDT 1998 State-Changed-Why: Imported. The "install" target had some weirdness, so I put a do-install in the port Makefile; since we already installed half the files in a post-install, it's not much difference. Other minor changes as well. Thanks! Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Mon Apr 27 01:25:27 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 03:07:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA04748 for freebsd-ports-outgoing; Mon, 27 Apr 1998 03:07:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04723 for ; Mon, 27 Apr 1998 03:07:14 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id MAA00806 for freebsd-ports@freefall.cdrom.com; Mon, 27 Apr 1998 12:11:45 +0200 (MEST) (envelope-from kuku) Date: Mon, 27 Apr 1998 12:11:45 +0200 (MEST) From: Christoph Kukulies Message-Id: <199804271011.MAA00806@gilberto.physik.RWTH-Aachen.DE> To: freebsd-ports@freefall.FreeBSD.org Subject: kdenetwork - mimlib ? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Any clues where mimelib/string.h etc. are located? %make >> Checksum OK for kdenetwork-Beta3-1.src.tar.gz. ===> Building for kdenetwork-3.1b make all-recursive Making all in kmail Making all in pics Making all in toolbar Making all in doc g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -I/usr/X11R6/include/X11/qt -I/usr/X11R6/include -O2 -Wall -c kmmainwin.cpp In file included from kmmainwin.cpp:11: kmmessage.h:7: mimelib/string.h: No such file or directory In file included from kmcomposewin.h:18, from kmmainwin.cpp:17: kmmsgpart.h:7: mimelib/string.h: No such file or directory In file included from kmmainwin.cpp:22: kmsender.h:7: mimelib/smtp.h: No such file or directory kmsender.h:8: mimelib/string.h: No such file or directory kmsender.h:9: mimelib/utility.h: No such file or directory *** Error code 1 Stop. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 06:49:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA14412 for freebsd-ports-outgoing; Mon, 27 Apr 1998 06:49:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.lsumc.edu (RELAY.LSUMC.EDU [155.58.128.154]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA14402 for ; Mon, 27 Apr 1998 06:49:19 -0700 (PDT) (envelope-from jmire@lsumc.edu) Received: from exchgateway.lsumc.edu ([155.58.128.195]) by relay.lsumc.edu (Post.Office MTA v3.1.2 release (PO205-101c) ID# 0-42511U8000L8000S0) with ESMTP id AAA162 for ; Mon, 27 Apr 1998 08:49:05 -0500 Received: by EXCHGATEWAY.LSUMC.EDU with Internet Mail Service (5.5.1960.3) id ; Mon, 27 Apr 1998 08:48:43 -0500 Message-ID: From: jmire@lsumc.edu (Mire, John) To: "'freebsd-ports'" Date: Mon, 27 Apr 1998 08:49:09 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.1960.3) Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org unsubscribe \john -- John Mire: jmire@lsumc.edu LSUMC Shreveport Computer Services pgpkey: voice: 318.675.5443 fax: 318.675.4641 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 07:39:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA23791 for freebsd-ports-outgoing; Mon, 27 Apr 1998 07:39:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA23780; Mon, 27 Apr 1998 07:39:26 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id KAA10627; Mon, 27 Apr 1998 10:39:26 -0400 (EDT) (envelope-from mph) Message-ID: <19980427103925.A10582@rh.psu.edu> Date: Mon, 27 Apr 1998 10:39:25 -0400 From: Matthew Hunt To: asami@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: Port games/xcogitate needs local distfile Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi, I just committed the port games/xcogitate. For some reason, fetch(1) truncates the distfile when it retrieves it from the MASTER_SITE: mph124:~/tmp/xcogitate-1.02$ make fetch >> xcogs.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from http://www.pff-software.demon.nl/archive/. Receiving xcogs.tar.gz (32943 bytes): 100% 32565 bytes transfered in 80.0 seconds (407 bytes/s) I've committed the port with MASTER_SITE_LOCAL, so would you please put a copy of the distfile in the right place? A correct copy is in ~mph/dl/xcogs.tar.gz. I've also marked the port BROKEN until the distfile is in place. Thanks. Matt -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 08:36:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05034 for freebsd-ports-outgoing; Mon, 27 Apr 1998 08:36:42 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA04996; Mon, 27 Apr 1998 08:36:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA14980; Mon, 27 Apr 1998 08:35:01 -0700 (PDT) Date: Mon, 27 Apr 1998 08:35:01 -0700 (PDT) Message-Id: <199804271535.IAA14980@freefall.freebsd.org> To: croyle@gelemna.ft-wayne.in.us, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/5086 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: elisp-manual.tar.gz State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Mon Apr 27 08:34:20 PDT 1998 State-Changed-Why: Committed. Thanks. Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Mon Apr 27 08:34:20 PDT 1998 Responsible-Changed-Why: I committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 08:37:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA05240 for freebsd-ports-outgoing; Mon, 27 Apr 1998 08:37:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA05231; Mon, 27 Apr 1998 08:37:23 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA15053; Mon, 27 Apr 1998 08:35:51 -0700 (PDT) Date: Mon, 27 Apr 1998 08:35:51 -0700 (PDT) Message-Id: <199804271535.IAA15053@freefall.freebsd.org> To: croyle@gelemna.ft-wayne.in.us, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/5087 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: emacs-lisp-intro.tar.gz State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Mon Apr 27 08:35:08 PDT 1998 State-Changed-Why: Committed. Thanks. Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Mon Apr 27 08:35:08 PDT 1998 Responsible-Changed-Why: I committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 09:33:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16765 for freebsd-ports-outgoing; Mon, 27 Apr 1998 09:33:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from TomQNX.tomqnx.com (ott-pm6-25.comnet.ca [206.75.140.185]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16750 for ; Mon, 27 Apr 1998 09:33:15 -0700 (PDT) (envelope-from root@tomqnx.com) Received: by TomQNX.tomqnx.com (Smail3.2 #1) id m0yTqoQ-00080UC; Mon, 27 Apr 1998 12:31:26 -0400 (EDT) Message-Id: From: root@tomqnx.com (Tom Torrance at home Root) Subject: qt133 problem To: ports@FreeBSD.ORG Date: Mon, 27 Apr 1998 12:31:26 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL31H (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org /usr/ports/x11/qt133/Makefile has not been updated to support that version. It is exactly the same as /usr/ports/x11/qt/Makefile, and is for version 1.31 Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 09:56:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21513 for freebsd-ports-outgoing; Mon, 27 Apr 1998 09:56:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.westbend.net (ns1.westbend.net [207.217.224.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21469; Mon, 27 Apr 1998 09:56:28 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [207.217.224.195]) by mail.westbend.net (8.8.8/8.8.8) with SMTP id LAA24552; Mon, 27 Apr 1998 11:56:20 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <027601bd71fd$ab015de0$c3e0d9cf@admin.westbend.net> From: "Scot W. Hetzel" To: "Poul-Henning Kamp" Cc: Subject: Re: Frontpage server extension port ? Date: Mon, 27 Apr 1998 11:58:13 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----Original Message----- From: Poul-Henning Kamp > >Why hasn't nobody made one of these yet ? > The Apache-FrontPage port (see pr4878) has been completed, it is currently waiting for a commiter that has FrontPage and time to fully test the port. >we DO want to make it as easy as possible for people to replace NT >servers, right ? > Of course we do. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 10:20:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA25969 for freebsd-ports-outgoing; Mon, 27 Apr 1998 10:20:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA25929; Mon, 27 Apr 1998 10:20:01 -0700 (PDT) (envelope-from gnats) Date: Mon, 27 Apr 1998 10:20:01 -0700 (PDT) Message-Id: <199804271720.KAA25929@hub.freebsd.org> To: freebsd-ports Cc: From: Brett Taylor Subject: Re: ports/6427: Many problems with ports/graphics/gimp-devel Reply-To: Brett Taylor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6427; it has been noted by GNATS. From: Brett Taylor To: slafla@home.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/6427: Many problems with ports/graphics/gimp-devel Date: Mon, 27 Apr 1998 11:12:06 -0600 (MDT) > >Description: gimp-0.99.26 does not exist on either server listed in > MASTER_SITES, nor on ftp.freebsd.org That's because the gimp is actually at 99.27 now (I haven't checked today yet - maybe even further). Someone should update it - I don't think I have time to, at least not today. I know Satoshi asked for a distfile but I deleted mine right after I installed. :-P > libjpeg is not fould by make even though it is installed. LIB_DEPENDS > list jpeg\\.8\\, don't know if this is right. FORCE_PKG_REGISTER must > be set to keep make from complaining Huh - I had a few problems but that's because, I thought, I had some cruft laying around in /usr/local/lib. Once I deleted ALL of that and did a ldconfig -R I got it to go. ********************************************************* Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 11:11:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05137 for freebsd-ports-outgoing; Mon, 27 Apr 1998 11:11:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05067 for ; Mon, 27 Apr 1998 11:11:02 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA16046 for freebsd-ports; Mon, 27 Apr 1998 11:00:10 -0700 (PDT) Date: Mon, 27 Apr 1998 11:00:10 -0700 (PDT) Message-Id: <199804271800.LAA16046@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/04/20] ports/6360 ports LDAP-3.3 will be spawning threads like ma o [1998/04/24] ports/6405 ports does not build; ignores local CFLAGS, CXX 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/10/19] ports/4803 ports xgrabsc dies with "bus error" after selec o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1998/02/23] ports/5825 ports cd-write 1.4 fails to read tracks. o [1998/03/03] ports/5908 ports atalkd won't come up o [1998/03/04] ports/5921 ports The developer(s) changed the tarball, mod o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/09] ports/5960 ports Added printer device o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/04/18] ports/6341 ports make install uses ``make'' instead of ${M o [1998/04/21] ports/6380 ports gcc-2.8.1 port does not create shared lib o [1998/04/26] ports/6423 ports ld: -lgdbm: no match o [1998/04/26] ports/6426 ports ports/graphics/jpeg doesn't build o [1998/04/26] ports/6427 ports Many problems with ports/graphics/gimp-de 14 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ f [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n f [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or o [1997/04/01] ports/3169 ports nn port broken o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) a [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy o [1997/06/23] ports/3939 ports new port: latex2html_icon_server o [1997/06/30] ports/3991 ports set of OffiX ports o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/30] ports/4192 ports New port: Amulet f [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] ports/4281 ports Compress pcl graphics files - this is an o [1997/08/14] ports/4304 ports Recommendation re. Ports Collection s [1997/08/22] ports/4360 ports new port of Amaya-1.0b o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/09/25] ports/4631 ports New port: ncurses-1.9.9g o [1997/09/28] ports/4643 ports new port - japanese-english dictionary o [1997/09/28] ports/4644 ports This is a new port xfig -international ba o [1997/10/06] ports/4707 ports new-port : ja-mtools-3.6 (manipulating MS a [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/27] ports/4870 ports New port p5-Gtk a [1997/10/28] ports/4878 ports Apache w/FrontPage Module Port o [1997/10/29] ports/4889 ports new port for ntimelord-1.0 o [1997/11/04] ports/4933 ports New port: cgihtml library o [1997/11/04] ports/4935 ports audio/nas port fails build + fix o [1997/11/04] ports/4937 ports A looks-nice audio level meter port is no o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] ports/4974 ports New port: YODL, Yet Oneother Document Lan o [1997/11/08] ports/4980 ports NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 ports NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] ports/4986 ports NEW PORT: comms/atp - ATP 1.50, a BBS QWK o [1997/11/13] ports/5034 ports (tcsh) blocked write on named pipe sticks o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/17] ports/5080 ports Apache-1.2.4: Improved rc.d script o [1997/11/20] ports/5104 ports New port: sis-1.2pl1 a [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/11/29] ports/5175 ports NEW PORT: news/xmitBin, a binary files au o [1997/11/30] ports/5184 ports Port of S-Plus like language R o [1997/12/03] ports/5200 ports new port-package for pgpmoose o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/03] ports/5202 ports new port-package for pathalias o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/07] ports/5245 ports new port, bugsx game o [1997/12/11] ports/5273 ports Port of o2c-1.16 a [1997/12/14] ports/5295 ports New Math port: umfpack o [1997/12/15] ports/5309 ports New port: sls-1.00 [category misc] o [1997/12/15] ports/5312 ports New math port xwpl o [1997/12/19] ports/5342 ports New port ja-netscape-3.04(japanese/netsca o [1997/12/26] ports/5380 ports wb uses ghostscript 4 o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) o [1998/01/08] bin/5463 ports No spell check in pico editor because /us o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/15] ports/5504 ports New port sidplay (category audio) o [1998/01/15] ports/5505 ports MS-Windouws emulator. It can use Japanese o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 o [1998/01/25] ports/5566 ports New port: wmx-4 (category x11) o [1998/01/26] ports/5570 ports new port, rise 0.3.3 a [1998/01/26] ports/5579 ports New ports "ja-tcl-8.0" a [1998/01/26] ports/5580 ports New ports "ja-tk-8.0" o [1998/01/30] ports/5607 ports NEW PORT: timidity-luigi [category audio] o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/03] ports/5630 ports updated not-yet-released version of gone o [1998/02/03] ports/5633 ports Submission of new port in 'lang' category a [1998/02/03] ports/5638 ports mail/bulk_mailer port update o [1998/02/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst a [1998/02/06] ports/5667 ports I have ported the VICE 0.13.0 Commodore e o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/10] ports/5707 ports Update port: ja-dvipsk-5.66a (japanese/dv o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula o [1998/02/17] ports/5776 ports New compression port: lzo o [1998/02/19] ports/5788 ports pcemu harddisk-access fixes o [1998/02/21] ports/5808 ports Added support for JIS encoded PostScript o [1998/02/21] ports/5811 ports netatalk ioctl(SIOCADDMULTI) failure a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/02/28] ports/5878 ports New port: ja-platex209-1.0 (japanese/plat o [1998/03/01] ports/5881 ports new ports: jp-vfxdvik-20a (dvi viewer for o [1998/03/01] ports/5882 ports new ports: xdvik-20a (dvi previewer for X o [1998/03/01] ports/5884 ports New port: icqjava-0.981a (net/icqjava) o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/03] ports/5906 ports gimp-devel and gtk, discrepancy in locati o [1998/03/07] ports/5937 ports rxvt's built from ports directory don't s o [1998/03/08] ports/5946 ports New port biology/molmol a [1998/03/08] ports/5952 ports wwwoffle: read WWW pages offline o [1998/03/10] ports/5972 ports x11/fvwm95 requiring gsm, and rplay is a o [1998/03/11] ports/5981 ports cbb port broken, installs with control ch o [1998/03/14] ports/6011 ports new port request o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/15] ports/6027 ports New Port: tgif2tex o [1998/03/15] ports/6028 ports Upgrade Ports: kinput2 o [1998/03/15] ports/6029 ports New Ports: jvim+onew o [1998/03/15] ports/6030 ports Bugfix: mule o [1998/03/18] ports/6052 ports new port request: mizifont o [1998/03/18] ports/6053 ports new port request: korean/hanIM o [1998/03/18] ports/6054 ports port upgrade: korean/hlatexpsfonts o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/20] ports/6076 ports Upgrade port graphics/sane to version 0.7 o [1998/03/20] ports/6077 ports Small patch to graphics/sane 0.71 - erron o [1998/03/20] ports/6078 ports Documentation concerning logging suggests o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/21] ports/6090 ports New port: xvmahjongg-2.0 o [1998/03/22] ports/6105 ports New port: cftp-0.9.1 o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6119 ports New port: xmastermind-0.1 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/25] ports/6134 ports New port; new program to reconstruct ftp- o [1998/03/26] ports/6139 ports NEW PORT: x11/sharefonts, Shareware ATM f o [1998/03/27] ports/6143 ports new port request: korean/kaistfonts o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/28] ports/6155 ports new port: emulators/vice, Versatile Commo o [1998/03/28] ports/6158 ports New graphics port: Rayshade-4.0 o [1998/03/28] ports/6163 ports New port: xpyraminx-5.4.3 o [1998/03/29] ports/6165 ports New port: xpanex-5.4.3 o [1998/03/29] ports/6166 ports New port: xoct-5.4.3 o [1998/03/29] ports/6169 ports port upgrade: korean/pinetreefonts o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/03/30] ports/6176 ports running architextSearch (excite) under li o [1998/03/30] ports/6181 ports New port: xoj-1.0 o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/03] ports/6207 ports new port request: korean/ftghostscript5 o [1998/04/04] ports/6211 ports New port: sic-0.10a (net) o [1998/04/05] ports/6221 ports New port: mico o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/10] ports/6262 ports New port of bulk_mailer 1.9 o [1998/04/12] ports/6281 ports Many ports don't execute `ldconfig' at th o [1998/04/12] ports/6282 ports >> Checksum mismatch for bxform-088.tgz. o [1998/04/15] ports/6305 ports New ports collection: ja-libslang o [1998/04/15] ports/6306 ports New ports collection: ja-slrn o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 o [1998/04/16] ports/6315 ports new port request: korean/htm a [1998/04/16] ports/6321 ports can't run any version of PostgreSQL on 2. o [1998/04/16] ports/6322 ports Updated port: mysql o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 o [1998/04/18] ports/6343 ports ldap-3.3 port updated o [1998/04/19] ports/6355 ports New port o [1998/04/20] ports/6358 ports new port of AfterStep-1.4.4 o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler o [1998/04/21] ports/6374 ports Perl 5 port should run h2ph, and install o [1998/04/22] ports/6390 ports fix some setlocale problem in ports/japan o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz o [1998/04/25] ports/6411 ports Certain XView assumptions don't hold in X o [1998/04/25] ports/6413 ports new ports for lynx2.8rel.3 (modified for o [1998/04/25] ports/6414 ports new ports for ja-color-lynx2.8rel.3 (modi o [1998/04/25] ports/6415 ports new ports for ja-lynx2.8.1dev.7 (modified o [1998/04/25] ports/6416 ports new ports for ja-color-lynx2.8.1dev.7 (mo o [1998/04/25] ports/6417 ports new ports for ja-libslang-1.0.3 (modified o [1998/04/26] ports/6424 ports misc. problems with gcc28 port o [1998/04/26] ports/6425 ports vice port doesnt build on -current 164 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 11:43:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11373 for freebsd-ports-outgoing; Mon, 27 Apr 1998 11:43:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt050n33.san.rr.com (@dt050n33.san.rr.com [204.210.31.51]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11366 for ; Mon, 27 Apr 1998 11:43:33 -0700 (PDT) (envelope-from Studded@san.rr.com) Received: from san.rr.com (Studded@localhost [127.0.0.1]) by dt050n33.san.rr.com (8.8.8/8.8.8) with ESMTP id LAA09858 for ; Mon, 27 Apr 1998 11:43:32 -0700 (PDT) (envelope-from Studded@san.rr.com) Message-ID: <3544D1D4.7B9D10B9@san.rr.com> Date: Mon, 27 Apr 1998 11:43:32 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE-0426 i386) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Subject: bzip 2 fails MD5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org While compiling the new KDE it bombed while trying to build bzip2 as a dependency due to it failing the MD5. I double-checked bzip2 and it compiled ok when I built it with the option to ignore MD5, and once it was installed manually KDE built fine (when I did the build in kdelibs then kdebase, I couldn't get it to work when I went to x11/kde and tried typing make, but I have KDE installed already so that might be why). Hope this helps, Doug -- *** Chief Operations Officer, DALnet IRC network *** *** Proud designer and maintainer of the world's largest Internet *** Relay Chat server with 5,328 simultaneous connections. *** Try spider.dal.net on ports 6662-4 (Powered by FreeBSD) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 14:42:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15873 for freebsd-ports-outgoing; Mon, 27 Apr 1998 14:42:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA15864 for ; Mon, 27 Apr 1998 14:42:09 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id RAA15847; Mon, 27 Apr 1998 17:42:03 -0400 (EDT) (envelope-from mph) Message-ID: <19980427174202.A15721@rh.psu.edu> Date: Mon, 27 Apr 1998 17:42:02 -0400 From: Matthew Hunt To: Studded , freebsd-ports@FreeBSD.ORG Subject: Re: bzip 2 fails MD5 References: <3544D1D4.7B9D10B9@san.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <3544D1D4.7B9D10B9@san.rr.com>; from Studded on Mon, Apr 27, 1998 at 11:43:32AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 27, 1998 at 11:43:32AM -0700, Studded wrote: > dependency due to it failing the MD5. I double-checked bzip2 and it > compiled ok when I built it with the option to ignore MD5, and once it I've updated the port to reflect the new md5, thanks. I've also updated it to honor CC and CFLAGS. Why do Makefile authors have such an aversion to trusting make? I don't WANT all of my software changing CC and CFLAGS! gcc is fine (and on FreeBSD it's our cc) but it's not the end-all and be-all; my research code on the Ultra runs twice as fast with "cc -fast" vs. "gcc -O3"! We now resume our usual sanity, whatever that may be. -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 15:47:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00380 for freebsd-ports-outgoing; Mon, 27 Apr 1998 15:47:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tera.com (tera.tera.com [207.108.223.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA00373 for ; Mon, 27 Apr 1998 15:47:40 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from uucp@localhost) by tera.com (8.8.7/8.7.3) with UUCP id PAA09054 for freebsd-ports@freebsd.org; Mon, 27 Apr 1998 15:47:00 -0700 (PDT) Received: (from kline@localhost) by tao.thought.org (8.8.5/8.7.3) id PAA09837 for freebsd-ports@freebsd.org; Mon, 27 Apr 1998 15:44:45 -0700 (PDT) From: Gary Kline Message-Id: <199804272244.PAA09837@tao.thought.org> Subject: cbb gnats report... To: freebsd-ports@FreeBSD.ORG (FreeBSD Ports) Date: Mon, 27 Apr 1998 15:44:45 -0700 (PDT) Organization: <> thought.org: public access uNix in service... <> X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Wasn't this bug resolved?? o [1998/03/11] ports/5981 ports cbb port broken, installs with control ch If so, I'd like to close this PR.... thanks, gary -- Gary D. Kline kline@tao.thought.org Public service uNix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 16:00:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA02352 for freebsd-ports-outgoing; Mon, 27 Apr 1998 16:00:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA02316; Mon, 27 Apr 1998 16:00:01 -0700 (PDT) (envelope-from gnats) Date: Mon, 27 Apr 1998 16:00:01 -0700 (PDT) Message-Id: <199804272300.QAA02316@hub.freebsd.org> To: freebsd-ports Cc: From: Brett Taylor Subject: Re: ports/6358: New port of AfterStep-1.4.4 Reply-To: Brett Taylor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6358; it has been noted by GNATS. From: Brett Taylor To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/6358: New port of AfterStep-1.4.4 Date: Mon, 27 Apr 1998 16:54:07 -0600 (MDT) Holy cow. STOP the presses (not that anyone appears to be close to committing this). The AS people have released a new version, which fixes some of the bugs from before but ... good grief they have a HUGE mess in the patches to get to the fixed version - I don't even want to go into that. I'll try to get this newer, mostly fixed version ported by the end of the week. For now maybe set AS-1.0 unbroken. And I KNOW this is gonna be a problem but until AS-1.4.* becomes more stable can we rename the port that's sitting there waiting to be patched against, afterstep-devel (much like the gimp used to be)? I don't have a whole lot of experience with CVS so maybe backing the 1.4.4 name out isn't possible. Even afterstep-1.4 would be better. ********************************************************* Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 18:18:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28447 for freebsd-ports-outgoing; Mon, 27 Apr 1998 18:18:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28423; Mon, 27 Apr 1998 18:18:51 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id SAA06475; Mon, 27 Apr 1998 18:18:52 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: asami@FreeBSD.ORG cc: ports@FreeBSD.ORG Subject: Short on space at ftp.freebsd.org Date: Mon, 27 Apr 1998 18:18:52 -0700 Message-ID: <6472.893726332@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can we eliminate ports-2.2.5 and packages-2.2.5 under pub/FreeBSD? We could use the space and you can always make symlinks if you're trying to stay compat with people's compiled-in versions for /sys/sysinstall. Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 20:06:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20597 for freebsd-ports-outgoing; Mon, 27 Apr 1998 20:06:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20591 for ; Mon, 27 Apr 1998 20:06:48 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca36-40.ix.netcom.com [207.93.42.232]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA24973; Mon, 27 Apr 1998 20:06:37 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id UAA18104; Mon, 27 Apr 1998 20:06:19 -0700 (PDT) Date: Mon, 27 Apr 1998 20:06:19 -0700 (PDT) Message-Id: <199804280306.UAA18104@silvia.HIP.Berkeley.EDU> To: mph@pobox.com CC: ports@FreeBSD.ORG In-reply-to: <19980427103925.A10582@rh.psu.edu> (message from Matthew Hunt on Mon, 27 Apr 1998 10:39:25 -0400) Subject: Re: Port games/xcogitate needs local distfile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I've committed the port with MASTER_SITE_LOCAL, so would you please * put a copy of the distfile in the right place? A correct copy is * in ~mph/dl/xcogs.tar.gz. I can do that, but since you have an account on freefall, why don't you just use your own http homepage? :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 20:58:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA00991 for freebsd-ports-outgoing; Mon, 27 Apr 1998 20:58:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA00973 for ; Mon, 27 Apr 1998 20:58:32 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca36-40.ix.netcom.com [207.93.42.232]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA25020; Mon, 27 Apr 1998 20:58:30 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id UAA18259; Mon, 27 Apr 1998 20:58:27 -0700 (PDT) Date: Mon, 27 Apr 1998 20:58:27 -0700 (PDT) Message-Id: <199804280358.UAA18259@silvia.HIP.Berkeley.EDU> To: jkh@time.cdrom.com CC: ports@FreeBSD.ORG In-reply-to: <6472.893726332@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: Short on space at ftp.freebsd.org From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Can we eliminate ports-2.2.5 and packages-2.2.5 under pub/FreeBSD? We * could use the space and you can always make symlinks if you're trying * to stay compat with people's compiled-in versions for /sys/sysinstall. I think we should simply remove them. We don't have the releases themselves on ftp anymore, and a symlink to binaries compiled for a different version of an OS just doesn't seem the right thing to do. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 20:59:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA01443 for freebsd-ports-outgoing; Mon, 27 Apr 1998 20:59:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from aaka.3skel.com (aaka.3skel.com [207.240.212.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA01403 for ; Mon, 27 Apr 1998 20:59:33 -0700 (PDT) (envelope-from danj@3skel.com) Received: from fnur.3skel.com (fnur.3skel.com [192.168.0.8]) by aaka.3skel.com (8.8.5/8.8.2) with ESMTP id XAA08616 for ; Mon, 27 Apr 1998 23:59:30 -0400 (EDT) Received: from 3skel.com (localhost.3skel.com [127.0.0.1]) by fnur.3skel.com (8.8.5/8.8.2) with ESMTP id XAA00658 for ; Mon, 27 Apr 1998 23:59:29 -0400 (EDT) Message-ID: <35455420.8514A209@3skel.com> Date: Mon, 27 Apr 1998 23:59:28 -0400 From: Dan Janowski Organization: Triskelion Systems, Inc. X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.1-RELEASE i386) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Subject: AWE64/Speak-Freely Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just got an AWE64 card since speak-freely requires a full-duplex card. If I am transmitting sound and audio comes into sfspeaker I am getting the assertion failure in soundbyte.c Do I have to do something to this card in DOS? Or is there something else I need to know? Thanks, Dan -- danj@3skel.com Dan Janowski Triskelion Systems, Inc. Bronx, NY To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Apr 27 21:29:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06970 for freebsd-ports-outgoing; Mon, 27 Apr 1998 21:29:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06961; Mon, 27 Apr 1998 21:29:31 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id VAA07012; Mon, 27 Apr 1998 21:29:36 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: ports@FreeBSD.ORG Subject: Re: Short on space at ftp.freebsd.org In-reply-to: Your message of "Mon, 27 Apr 1998 20:58:27 PDT." <199804280358.UAA18259@silvia.HIP.Berkeley.EDU> Date: Mon, 27 Apr 1998 21:29:36 -0700 Message-ID: <7008.893737776@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Very well, I just thought I'd give you a last chance to argue for their preservation. Consider them nuked, Herr Portsmeister! ;-) > * Can we eliminate ports-2.2.5 and packages-2.2.5 under pub/FreeBSD? We > * could use the space and you can always make symlinks if you're trying > * to stay compat with people's compiled-in versions for /sys/sysinstall. > > I think we should simply remove them. We don't have the releases > themselves on ftp anymore, and a symlink to binaries compiled for a > different version of an OS just doesn't seem the right thing to do. > > Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 00:40:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14022 for freebsd-ports-outgoing; Tue, 28 Apr 1998 00:40:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14007; Tue, 28 Apr 1998 00:40:02 -0700 (PDT) (envelope-from gnats) Received: from host.cer.ntnu.edu.tw (host.cer.ntnu.edu.tw [140.122.119.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA12023 for ; Tue, 28 Apr 1998 00:27:07 -0700 (PDT) (envelope-from clkao@host.cer.ntnu.edu.tw) Received: (from clkao@localhost) by host.cer.ntnu.edu.tw (8.8.8/8.8.7) id PAA22123; Tue, 28 Apr 1998 15:25:21 +0800 (CST) (envelope-from clkao) Message-Id: <199804280725.PAA22123@host.cer.ntnu.edu.tw> Date: Tue, 28 Apr 1998 15:25:21 +0800 (CST) From: clkao@CirX.ORG Reply-To: clkao@CirX.ORG To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6434: mediatool in x11/kdelibs cause kwmsound core dumps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6434 >Category: ports >Synopsis: mediatool in x11/kdelibs cause kwmsound core dumps >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 00:40:01 PDT 1998 >Last-Modified: >Originator: Chia-liang Kao >Organization: CirX, Inc. >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: FreeBSD host.cer.ntnu.edu.tw 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Thu Nov 27 22:51:23 CST 1997 clive@host.cer.ntnu.edu.tw:/usr/src/sys/compile/HOST i386 >Description: kwmsound cause SIGSEGV in class KAudio, method sync. >How-To-Repeat: startkde, it would call kwmsound and just core dump. >Fix: someone might want to put this simple patch in x11/kdelibs/patches. --- mediatool/kaudio.cpp.orig Tue Apr 28 14:43:32 1998 +++ mediatool/kaudio.cpp Tue Apr 28 14:35:36 1998 @@ -187,7 +187,7 @@ void KAudio::sync() { - while ( StatChunk->sync_id != KeysChunk->sync_id ) + while ( StatChunk && StatChunk->sync_id != KeysChunk->sync_id ) usleep(10*1000); } >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 03:20:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12566 for freebsd-ports-outgoing; Tue, 28 Apr 1998 03:20:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA12528; Tue, 28 Apr 1998 03:20:01 -0700 (PDT) (envelope-from gnats) Received: from colossus.dyn.ml.org (dburr@206-18-112-222.la.inreach.net [206.18.112.222]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA11511 for ; Tue, 28 Apr 1998 03:12:23 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id DAA12259; Tue, 28 Apr 1998 03:09:07 -0700 (PDT) (envelope-from dburr) Message-Id: <199804281009.DAA12259@colossus.dyn.ml.org> Date: Tue, 28 Apr 1998 03:09:07 -0700 (PDT) From: dburr@POBoxes.com Reply-To: dburr@POBoxes.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6435: upgrade port graphics/xanim to 2.70.7.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6435 >Category: ports >Synopsis: upgrade port graphics/xanim to 2.70.7.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 03:20:00 PDT 1998 >Last-Modified: >Originator: Donald Burr >Organization: Computer Help >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: Built and tested on FreeBSD 2.2.6-RELEASE, but it should also work for 2.2.5, CURRENT, STABLE, et al. >Description: xanim 2.70.7.0 came out a few days ago. This patch will upgrade the graphics/xanim port to track it. >How-To-Repeat: >Fix: apply the following patch: diff -ruN xanim.old/Makefile xanim/Makefile --- xanim.old/Makefile Mon Jun 9 15:27:11 1997 +++ xanim/Makefile Tue Apr 28 02:54:10 1998 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.12 1997/06/09 22:27:11 max Exp $ # -DISTNAME= xanim27064 -PKGNAME= xanim-2.70.6.4 +DISTNAME= xanim27070 +PKGNAME= xanim-2.70.7.0 CATEGORIES= graphics x11 MASTER_SITES= ftp://xanim.va.pubnix.com/\ ftp://xanim.va.pubnix.com/modules/ @@ -25,5 +25,6 @@ cp ${DISTDIR}/$$file ${WRKSRC}; \ uncompress ${WRKSRC}/$$file; \ done + ${CP} ${WRKSRC}/docs/xanim.man ${WRKSRC} .include diff -ruN xanim.old/files/md5 xanim/files/md5 --- xanim.old/files/md5 Mon Jun 9 15:27:11 1997 +++ xanim/files/md5 Tue Apr 21 02:17:01 1998 @@ -1,4 +1,4 @@ -MD5 (xanim27064.tar.gz) = ce521899a41477016f2e90caf02ecaad +MD5 (xanim27070.tar.gz) = 768253a86b059b4d100e34c602931af6 MD5 (xa2.0_cvid_netbsd386.o.Z) = 80a70d69ea532c7f32a074381fff8468 MD5 (xa2.0_iv32_netbsd386.o.Z) = 1968c29d77e02c53df14bc4f2a29a1c0 MD5 (xa1.0_cyuv_netbsd386.o.Z) = 9f2d2b1a14f4518ffd02c0f45ccbf9e6 diff -ruN xanim.old/patches/patch-ab xanim/patches/patch-ab --- xanim.old/patches/patch-ab Thu Jun 12 11:01:41 1997 +++ xanim/patches/patch-ab Tue Apr 28 02:45:20 1998 @@ -1,82 +1,61 @@ -*** Imakefile.orig Mon Jan 27 01:22:08 1997 ---- Imakefile Tue Jun 10 07:12:07 1997 -*************** -*** 91,103 **** - XCOMM -- Indeo 3.x IV32 indeo.readme - XCOMM -- Creative CYUV creative.readme - XCOMM -! XCOMM XA_IV32_DEF = -DXA_INDEO -! XCOMM XA_CVID_DEF = -DXA_CINEPAK -! XCOMM XA_CYUV_DEF = -DXA_CYUV -! XCOMM -! XA_IV32_LIB = -! XA_CVID_LIB = -! XA_CYUV_LIB = - XCOMM - XCOMM -- NOTE: SGI Machines only: if you see an error like - XCOMM -- "merge_ext returns nil during relocation" or similiar ---- 91,103 ---- - XCOMM -- Indeo 3.x IV32 indeo.readme - XCOMM -- Creative CYUV creative.readme - XCOMM -! XA_IV32_DEF = -DXA_INDEO -! XA_CVID_DEF = -DXA_CINEPAK -! XA_CYUV_DEF = -DXA_CYUV -! XCOMM -! XA_IV32_LIB = xa2.0_cvid_netbsd386.o -! XA_CVID_LIB = xa2.0_iv32_netbsd386.o -! XA_CYUV_LIB = xa1.0_cyuv_netbsd386.o - XCOMM - XCOMM -- NOTE: SGI Machines only: if you see an error like - XCOMM -- "merge_ext returns nil during relocation" or similiar -*************** -*** 154,160 **** - XCOMM XA_AUDIO_DEFS = - XCOMM - XCOMM -- Sun Sparcs ----------------------------------------------------------- -! XA_AUDIO_DEFS = -DXA_SPARC_AUDIO - XCOMM - XCOMM NOTE: Imakefile should add the -DSVR4 to Sun Solaris machines, if not - XCOMM use the following: ---- 154,160 ---- - XCOMM XA_AUDIO_DEFS = - XCOMM - XCOMM -- Sun Sparcs ----------------------------------------------------------- -! XCOMM XA_AUDIO_DEFS = -DXA_SPARC_AUDIO - XCOMM - XCOMM NOTE: Imakefile should add the -DSVR4 to Sun Solaris machines, if not - XCOMM use the following: -*************** -*** 199,205 **** - XCOMM XA_MACH_LIBS = -lc - XCOMM - XCOMM -- Also FreeBSD, and BSDI with SBlast-BSD-1.5 (development stages)------- -! XCOMM XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND - XCOMM XA_AUDIO_LIBS = -lc - XCOMM - XCOMM -- SGI Indigo ----------------------------------------------------------- ---- 199,205 ---- - XCOMM XA_MACH_LIBS = -lc - XCOMM - XCOMM -- Also FreeBSD, and BSDI with SBlast-BSD-1.5 (development stages)------- -! XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND - XCOMM XA_AUDIO_LIBS = -lc - XCOMM - XCOMM -- SGI Indigo ----------------------------------------------------------- -*************** -*** 334,340 **** - - PROGRAMS = xanim - -! INCLUDES = -I$(INCDIR) $(XA_INCS) - - - LIBS1 = $(XA_LIBS) $(EXTENSIONLIB) $(XTOOLLIB) $(XLIB) -lm ---- 334,340 ---- - - PROGRAMS = xanim - -! INCLUDES = -I$(INCDIR)/X11 $(XA_INCS) - - - LIBS1 = $(XA_LIBS) $(EXTENSIONLIB) $(XTOOLLIB) $(XLIB) -lm +--- Imakefile.old Tue Apr 28 02:39:31 1998 ++++ Imakefile Tue Apr 28 02:45:12 1998 +@@ -91,13 +91,13 @@ + XCOMM -- Indeo 3.x IV32 indeo.readme + XCOMM -- Creative CYUV creative.readme + XCOMM +-XCOMM XA_IV32_DEF = -DXA_INDEO +-XCOMM XA_CVID_DEF = -DXA_CINEPAK +-XCOMM XA_CYUV_DEF = -DXA_CYUV +-XCOMM +-XA_IV32_LIB = +-XA_CVID_LIB = +-XA_CYUV_LIB = ++XA_IV32_DEF = -DXA_INDEO ++XA_CVID_DEF = -DXA_CINEPAK ++XA_CYUV_DEF = -DXA_CYUV ++XCOMM ++XA_IV32_LIB = xa2.0_cvid_netbsd386.o ++XA_CVID_LIB = xa2.0_iv32_netbsd386.o ++XA_CYUV_LIB = xa1.0_cyuv_netbsd386.o + XCOMM + XCOMM NOTE: SGI Machines Only: + XCOMM if your linker core dumps then you'll need to uncomment the following +@@ -165,7 +165,7 @@ + XCOMM XA_AUDIO_DEFS = + XCOMM + XCOMM -- Sun Sparcs ----------------------------------------------------------- +-XA_AUDIO_DEFS = -DXA_SPARC_AUDIO ++XCOMM XA_AUDIO_DEFS = -DXA_SPARC_AUDIO + XCOMM + XCOMM NOTE: Imakefile should add the -DSVR4 to Sun Solaris machines, if not + XCOMM use the following: +@@ -210,8 +210,8 @@ + XCOMM XA_MACH_LIBS = -lc + XCOMM + XCOMM -- Also FreeBSD, and BSDI with SBlast-BSD-1.5 (development stages)------- +-XCOMM XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND +-XCOMM XA_AUDIO_LIBS = -lc ++XA_AUDIO_DEFS = -DXA_LINUX_AUDIO -DXA_LINUX_NEWER_SND ++XA_AUDIO_LIBS = -lc + XCOMM + XCOMM -- SGI Indigo ----------------------------------------------------------- + XCOMM XA_AUDIO_DEFS = -DXA_SGI_AUDIO +@@ -325,7 +325,7 @@ + XCOMM -- following symbols(XmbufDisplayBuffers, XmbufQueryExtension, + XCOMM -- XmbufCreateBuffers). + XCOMM -- NOTE_7: HP-UX machines need to comment this out. +-XCOMM XA_MULTIBUF = -DXMBUF ++XA_MULTIBUF = -DXMBUF + XCOMM + XCOMM ******************** + +@@ -345,7 +345,7 @@ + + PROGRAMS = xanim + +-INCLUDES = -I$(INCDIR) $(XA_INCS) ++INCLUDES = -I$(INCDIR)/X11 $(XA_INCS) + + + LIBS1 = $(XA_LIBS) $(EXTENSIONLIB) $(XTOOLLIB) $(XLIB) -lm >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 03:47:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA17418 for freebsd-ports-outgoing; Tue, 28 Apr 1998 03:47:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from algw1.lucent.com (algw1.lucent.com [205.147.213.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id DAA17411 for ; Tue, 28 Apr 1998 03:47:30 -0700 (PDT) (envelope-from dob@nmcoma.netminder.lucent.com) Received: from nmcoma.netminder.lucent.com by alig1.firewall.lucent.com (SMI-8.6/EMS-L sol2) id HAA20845; Tue, 28 Apr 1998 07:02:21 -0400 Received: by nmcoma.netminder.lucent.com (SMI-8.6/EMS-1.3.1 sol2) id GAA02338; Tue, 28 Apr 1998 06:47:23 -0400 Cc: Eric Chet Received: from localhost by nmcoma.netminder.lucent.com (SMI-8.6/EMS-1.3.1 sol2) id GAA02335; Tue, 28 Apr 1998 06:47:21 -0400 Date: Tue, 28 Apr 1998 06:47:15 -0400 (EDT) From: "Daniel M. O'Brien" X-Sender: dob@localhost To: ports@FreeBSD.ORG Original-cc: Eric Chet Subject: IMAP-UW port isn't. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear Ports@FreeBSD.org: The imap-uw port on Current 3.0 won't build. See the attached output file. MD5 is wrong, patches are wrong. Any chance this will be fixed quickly? :-) Thanks, Dan O'Brien (dmobrien@lucent.com) Lucent Technologies, Bell Labs Innovations, Columbus OH 43213 Internal URL: External URL: Work: 614-860-2392 Home: 614-927-2178 Fax: 614-868-3810 Home2: 614-927-2955 ------------------------------------------------------ Script started on Tue Apr 28 06:43:25 1998 /usr/ports/mail/imap-uw: sudo make >> Checksum mismatch for imap-4.1.BETA.tar.Z. Make sure the Makefile and md5 file (/usr/ports/mail/imap-uw/files/md5) are up to date. If you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 Stop. /usr/ports/mail/imap-uw: sudo make NO_CHECKSUM=yes ===> Extracting for imap-uw-4.1b ===> Patching for imap-uw-4.1b ===> Applying FreeBSD patches for imap-uw-4.1b 1 out of 6 hunks failed--saving rejects to src/osdep/unix/Makefile.rej *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. /usr/ports/mail/imap-uw: sudo make NO_CHECKSUM=yes ===> Patching for imap-uw-4.1b ===> Applying FreeBSD patches for imap-uw-4.1b Ignoring previously applied (or reversed) patch. 1 out of 1 hunks ignored--saving rejects to src/osdep/unix/os_bsi.h.rej *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. /usr/ports/mail/imap-uw: sudo make NO_CHECKSUM=yes ===> Patching for imap-uw-4.1b ===> Applying FreeBSD patches for imap-uw-4.1b Ignoring previously applied (or reversed) patch. 1 out of 1 hunks ignored--saving rejects to src/osdep/unix/os_bsi.h.rej *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. /usr/ports/mail/imap-uw: Script done on Tue Apr 28 06:44:35 1998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 04:30:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27451 for freebsd-ports-outgoing; Tue, 28 Apr 1998 04:30:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27376; Tue, 28 Apr 1998 04:30:04 -0700 (PDT) (envelope-from gnats) Received: from beebite.ugh.net.au (root@[210.8.78.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA26893 for ; Tue, 28 Apr 1998 04:27:26 -0700 (PDT) (envelope-from andrew@beebite.ugh.net.au) Received: (from root@localhost) by beebite.ugh.net.au (8.8.8/8.8.8) id WAA13088; Tue, 28 Apr 1998 22:55:35 +1000 (EST) (envelope-from andrew) Message-Id: <199804281255.WAA13088@beebite.ugh.net.au> Date: Tue, 28 Apr 1998 22:55:35 +1000 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6436: gwm port dosn't list all its dependancys Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6436 >Category: ports >Synopsis: gwm port dosn't list all its dependancys >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 04:30:02 PDT 1998 >Last-Modified: >Originator: Andrew >Organization: UgH! >Release: FreeBSD 2.2.6-STABLE i386 >Environment: ports from current >Description: x11/gwm port dosnt list its dependant on xpm so make fails. >How-To-Repeat: cd /usr/ports/x11/gwm && make >Fix: --- Makefile.old Tue Apr 28 22:36:53 1998 +++ Makefile Tue Apr 28 22:50:26 1998 @@ -10,6 +10,7 @@ CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XCONTRIB} MASTER_SITE_SUBDIR= window_managers/gwm +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm MAINTAINER= markm@FreeBSD.ORG >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 04:30:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27505 for freebsd-ports-outgoing; Tue, 28 Apr 1998 04:30:13 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27444; Tue, 28 Apr 1998 04:30:08 -0700 (PDT) (envelope-from gnats) Received: from beebite.ugh.net.au (root@[210.8.78.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA26904 for ; Tue, 28 Apr 1998 04:27:48 -0700 (PDT) (envelope-from andrew@beebite.ugh.net.au) Received: (from root@localhost) by beebite.ugh.net.au (8.8.8/8.8.8) id XAA15184; Tue, 28 Apr 1998 23:20:16 +1000 (EST) (envelope-from andrew) Message-Id: <199804281320.XAA15184@beebite.ugh.net.au> Date: Tue, 28 Apr 1998 23:20:16 +1000 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6437: icewm port dosnt list dependancy on xpm in the Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6437 >Category: ports >Synopsis: icewm port dosnt list dependancy on xpm in the Makefile >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 04:30:06 PDT 1998 >Last-Modified: >Originator: Andrew >Organization: UgH! >Release: FreeBSD 2.2.6-STABLE i386 >Environment: ports from current >Description: icewm dosnt list a dependancy on xpm in the Makefile causing make to fail >How-To-Repeat: cd /usr/ports/x11/icewm && make >Fix: --- Makefile.old Tue Apr 28 23:13:56 1998 +++ Makefile Tue Apr 28 23:15:31 1998 @@ -9,6 +9,7 @@ DISTNAME= icewm-0.8.14 CATEGORIES= x11 MASTER_SITES= http://ixtas.fri.uni-lj.si/%7Emarkom/icewm/ +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm EXTRACT_SUFX= .src.tar.gz MAINTAINER= Nakai@technologist.com >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 04:30:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27539 for freebsd-ports-outgoing; Tue, 28 Apr 1998 04:30:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27517; Tue, 28 Apr 1998 04:30:14 -0700 (PDT) (envelope-from gnats) Received: from beebite.ugh.net.au (root@[210.8.78.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27076 for ; Tue, 28 Apr 1998 04:28:17 -0700 (PDT) (envelope-from andrew@beebite.ugh.net.au) Received: (from root@localhost) by beebite.ugh.net.au (8.8.8/8.8.8) id WAA03055; Tue, 28 Apr 1998 22:11:15 +1000 (EST) (envelope-from andrew) Message-Id: <199804281211.WAA03055@beebite.ugh.net.au> Date: Tue, 28 Apr 1998 22:11:15 +1000 (EST) From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6438: asclock port dosnt list a dependency Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6438 >Category: ports >Synopsis: asclock port dosnt list a dependency >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 04:30:10 PDT 1998 >Last-Modified: >Originator: Andrew >Organization: UgH! >Release: FreeBSD 2.2.6-STABLE i386 >Environment: 2.2.6-STABLE. Ports from current. >Description: asclock dosnt mention it needs xpm in its make file...making the build fail if you dont have it installed already. >How-To-Repeat: cd /usr/ports/x11/asclock && make >Fix: I just nicked the line out of another port...so I guess that must be the way to do it :-) --- Makefile.old Tue Apr 28 22:05:58 1998 +++ Makefile Tue Apr 28 22:05:55 1998 @@ -11,6 +11,7 @@ CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XCONTRIB} MASTER_SITE_SUBDIR= applications +LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm EXTRACT_SUFX= .tgz MAINTAINER= Nakai@Mlab.t.u-tokyo.ac.jp >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 04:53:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02648 for freebsd-ports-outgoing; Tue, 28 Apr 1998 04:53:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA02628; Tue, 28 Apr 1998 04:53:05 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA21656; Tue, 28 Apr 1998 04:51:27 -0700 (PDT) Date: Tue, 28 Apr 1998 04:51:27 -0700 (PDT) Message-Id: <199804281151.EAA21656@freefall.freebsd.org> To: dburr@POBoxes.com, tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6435 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade port graphics/xanim to 2.70.7.0 State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Tue Apr 28 04:50:48 PDT 1998 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 07:10:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28555 for freebsd-ports-outgoing; Tue, 28 Apr 1998 07:10:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28503; Tue, 28 Apr 1998 07:10:01 -0700 (PDT) (envelope-from gnats) Date: Tue, 28 Apr 1998 07:10:01 -0700 (PDT) Message-Id: <199804281410.HAA28503@hub.freebsd.org> To: freebsd-ports Cc: From: Jun Kuriyama Subject: Re: ports/2182: FreeBSD's and X-32's list of locales do not match Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/2182; it has been noted by GNATS. From: Jun Kuriyama To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/2182: FreeBSD's and X-32's list of locales do not match Date: Tue, 28 Apr 1998 22:04:57 +0900 Hmm. I've tested this 'How-To-Repeat' on my XFree86-3.3.1. But 'title' string was displayed. Of course, I cannot input Russian words so tested title is English. And, my X has ru_SU.KOI8-R alias like this: % grep ru_SU.KOI8-R /usr/X11R6/lib/X11/locale/locale.* /usr/X11R6/lib/X11/locale/locale.alias:ru_SU.KOI8-R ru_RU.KOI8-R Jun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 07:50:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06304 for freebsd-ports-outgoing; Tue, 28 Apr 1998 07:50:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06238; Tue, 28 Apr 1998 07:50:01 -0700 (PDT) (envelope-from gnats) Received: from colossus.dyn.ml.org (dburr@206-18-112-193.la.inreach.net [206.18.112.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA04351 for ; Tue, 28 Apr 1998 07:41:05 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id HAA18495; Tue, 28 Apr 1998 07:37:35 -0700 (PDT) (envelope-from dburr) Message-Id: <199804281437.HAA18495@colossus.dyn.ml.org> Date: Tue, 28 Apr 1998 07:37:35 -0700 (PDT) From: dburr@POBoxes.com Reply-To: dburr@POBoxes.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6441: Port graphics/aalib requires slang, can't find Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6441 >Category: ports >Synopsis: Port graphics/aalib requires slang, can't find >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 07:50:00 PDT 1998 >Last-Modified: >Originator: Donald Burr >Organization: Computer Help >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: FreeBSD 2.2.6-RELEASE, ports tree ftp'd as of last night. >Description: graphics/aalib appears to depend on Slang. At any rate, it #includes . Also, it does NOT look in /usr/local/include for it, which results in the file "aaslnkbd.c" to not compile. -DHAVE_CONFIG_H -I. -I. -I. -O3 -m486 -pipe -I/usr/X11R6/include -I/usr/local/include/slang -c -fPIC -DPIC aaslnkbd.c aaslnkbd.c:9: slang.h: No such file or directory aaslnkbd.c: In function `slang_getchar': aaslnkbd.c:143: `SL_KEY_ERR' undeclared (first use this function) aaslnkbd.c:143: (Each undeclared identifier is reported only once aaslnkbd.c:143: for each function it appears in.) aaslnkbd.c:145: `SL_KEY_LEFT' undeclared (first use this function) aaslnkbd.c:147: `SL_KEY_RIGHT' undeclared (first use this function) aaslnkbd.c:149: `SL_KEY_UP' undeclared (first use this function) aaslnkbd.c:151: `SL_KEY_DOWN' undeclared (first use this function) aaslnkbd.c:153: `SL_KEY_BACKSPACE' undeclared (first use this function) aaslnkbd.c:154: warning: unreachable code at beginning of switch statement *** Error code 1 Stop. >How-To-Repeat: Try building graphics/aalib without slang installed (or even, WITH slang installed -- see above). >Fix: Kludge: cd /usr/include && ln -sf ../local/include/slang.h slang.h then rebuild. Long-term solution: Fix the port. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 07:51:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06554 for freebsd-ports-outgoing; Tue, 28 Apr 1998 07:51:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA06544; Tue, 28 Apr 1998 07:51:07 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16477; Tue, 28 Apr 1998 07:49:28 -0700 (PDT) Date: Tue, 28 Apr 1998 07:49:28 -0700 (PDT) Message-Id: <199804281449.HAA16477@freefall.freebsd.org> To: andrew@ugh.net.au, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6438 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: asclock port dosnt list a dependency State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Tue Apr 28 10:49:04 EDT 1998 State-Changed-Why: Committed, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Tue Apr 28 10:49:04 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 07:52:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06855 for freebsd-ports-outgoing; Tue, 28 Apr 1998 07:52:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA06846; Tue, 28 Apr 1998 07:52:34 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16585; Tue, 28 Apr 1998 07:50:54 -0700 (PDT) Date: Tue, 28 Apr 1998 07:50:54 -0700 (PDT) Message-Id: <199804281450.HAA16585@freefall.freebsd.org> To: andrew@ugh.net.au, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6436 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gwm port dosn't list all its dependancys State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Tue Apr 28 10:50:14 EDT 1998 State-Changed-Why: Committed, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Tue Apr 28 10:50:14 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 07:53:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07219 for freebsd-ports-outgoing; Tue, 28 Apr 1998 07:53:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07184; Tue, 28 Apr 1998 07:53:43 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA16689; Tue, 28 Apr 1998 07:52:03 -0700 (PDT) Date: Tue, 28 Apr 1998 07:52:03 -0700 (PDT) Message-Id: <199804281452.HAA16689@freefall.freebsd.org> To: andrew@ugh.net.au, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6437 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: icewm port dosnt list dependancy on xpm in the Makefile State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Tue Apr 28 10:51:28 EDT 1998 State-Changed-Why: Committed, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Tue Apr 28 10:51:28 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 07:56:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07872 for freebsd-ports-outgoing; Tue, 28 Apr 1998 07:56:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07846 for ; Tue, 28 Apr 1998 07:56:57 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by hub.org (8.8.8/8.7.5) with SMTP id KAA18677 for ; Tue, 28 Apr 1998 10:57:10 -0400 (EDT) Date: Tue, 28 Apr 1998 10:57:09 -0400 (EDT) From: The Hermit Hacker To: ports@FreeBSD.ORG Subject: StarOffice Newsgroups... Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi... In the process of looking for information on StarOffice for Solaris (for the office), I fell across their public news server at starnews.stardivision.com ... ... but all the talk in the Unix group(s) are Linux related...I'm trying to throw *something* in there FreeBSD (like, asking for a port?), but I'm just one person... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 08:25:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13732 for freebsd-ports-outgoing; Tue, 28 Apr 1998 08:25:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13717; Tue, 28 Apr 1998 08:25:16 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA17009; Tue, 28 Apr 1998 08:23:36 -0700 (PDT) Date: Tue, 28 Apr 1998 08:23:36 -0700 (PDT) Message-Id: <199804281523.IAA17009@freefall.freebsd.org> To: junya@on.rim.or.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/4707 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new-port : ja-mtools-3.6 (manipulating MSDOS files) State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Tue Apr 28 08:22:51 PDT 1998 State-Changed-Why: Committed. Thanks. Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Tue Apr 28 08:22:51 PDT 1998 Responsible-Changed-Why: I committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 08:54:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20483 for freebsd-ports-outgoing; Tue, 28 Apr 1998 08:54:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA20471 for ; Tue, 28 Apr 1998 08:54:13 -0700 (PDT) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id QAA26576; Tue, 28 Apr 1998 16:17:00 +0200 From: Luigi Rizzo Message-Id: <199804281417.QAA26576@labinfo.iet.unipi.it> Subject: Re: AWE64/Speak-Freely To: danj@3skel.com (Dan Janowski) Date: Tue, 28 Apr 1998 16:17:00 +0200 (MET DST) Cc: freebsd-ports@FreeBSD.ORG In-Reply-To: <35455420.8514A209@3skel.com> from "Dan Janowski" at Apr 27, 98 11:59:09 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I just got an AWE64 card since speak-freely requires > a full-duplex card. you should have bought a true full duplex card. Old SB16/AWE have a split architecture and can do 16-bit in one direction, 8-bit in the other one. My driver supports this, but speak-freely does not work in this mode. Newer SB16 might do full duplex, but i haven't figured out how do they use drq's and there is no docs available. > Do I have to do something to this card in DOS? Or > is there something else I need to know? yes, return the sb16 and buy a WSS clone :) It's also cheaper. luigi -----------------------------+-------------------------------------- Luigi Rizzo | Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it | Universita' di Pisa tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ _____________________________|______________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 10:20:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11101 for freebsd-ports-outgoing; Tue, 28 Apr 1998 10:20:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11060; Tue, 28 Apr 1998 10:20:02 -0700 (PDT) (envelope-from gnats) Received: from colossus.dyn.ml.org (dburr@199-170-160-92.la.inreach.net [199.107.160.92]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA08829 for ; Tue, 28 Apr 1998 10:10:55 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id KAA08872; Tue, 28 Apr 1998 10:07:30 -0700 (PDT) (envelope-from dburr) Message-Id: <199804281707.KAA08872@colossus.dyn.ml.org> Date: Tue, 28 Apr 1998 10:07:30 -0700 (PDT) From: dburr@POBoxes.com Reply-To: dburr@POBoxes.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6442: Update port graphics/gimp-devel to version 0.99.28 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6442 >Category: ports >Synopsis: Update port graphics/gimp-devel to version 0.99.28 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 10:20:01 PDT 1998 >Last-Modified: >Originator: Donald Burr >Organization: Computer Help >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: Built and tested on 2.2.6-RELEASE >Description: The gimp-devel port is outdated -- ftp.gimp.org no longer has the version on its ftp site. I have updated the port to track version 0.99.28, which is the latest version. >How-To-Repeat: >Fix: apply this patch: diff -ruN gimp-devel.old/Makefile gimp-devel/Makefile --- gimp-devel.old/Makefile Sun Apr 19 15:29:32 1998 +++ gimp-devel/Makefile Tue Apr 28 10:05:53 1998 @@ -1,5 +1,5 @@ # New ports collection makefile for: Gimp -# Version required: 0.99.19 +# Version required: 0.99.28 # Date created: Mon Nov 18 21:28:43 CST 1996 # Whom: erich@FreeBSD.org # @@ -8,7 +8,7 @@ MAJOR= 0 MINOR= 99 -MICRO= 26 +MICRO= 28 VERSION= ${MAJOR}.${MINOR}.${MICRO} MM_VERSION= ${MAJOR}.${MINOR} diff -ruN gimp-devel.old/files/md5 gimp-devel/files/md5 --- gimp-devel.old/files/md5 Fri Apr 17 15:26:48 1998 +++ gimp-devel/files/md5 Tue Apr 28 08:58:52 1998 @@ -1,2 +1,2 @@ -MD5 (gimp-0.99.26.tar.gz) = 5007046065c3640ca8ead70d9a5a9ea5 +MD5 (gimp-0.99.28.tar.gz) = 22912ec257b264ad0f664d214eac2371 MD5 (gimp-data-extras-0.99a.tar.gz) = 7035455b77b6996bc14e35922de08a39 diff -ruN gimp-devel.old/patches/.orig/patch-ah.orig gimp-devel/patches/.orig/patch-ah.orig --- gimp-devel.old/patches/.orig/patch-ah.orig Wed Dec 31 16:00:00 1969 +++ gimp-devel/patches/.orig/patch-ah.orig Fri Apr 17 15:26:48 1998 @@ -0,0 +1,96 @@ +--- configure.in~ Thu Apr 16 20:00:52 1998 ++++ configure.in Thu Apr 16 20:02:07 1998 +@@ -115,13 +115,13 @@ + + dnl Test for libtiff + if test -z "$LIBTIFF_LIB"; then +- AC_CHECK_LIB(tiff, TIFFReadScanline, ++ AC_CHECK_LIB(tiff34, TIFFReadScanline, + AC_CHECK_HEADER(tiffio.h, +- TIFF='tiff'; LIBTIFF_LIB='-ltiff', ++ TIFF='tiff'; LIBTIFF_LIB='-ltiff34', + AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF header files not found) ***)), +- AC_CHECK_LIB(tiff, TIFFWriteScanline, ++ AC_CHECK_LIB(tiff34, TIFFWriteScanline, + AC_CHECK_HEADER(tiffio.h, +- TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg', ++ TIFF='tiff'; LIBTIFF_LIB='-ltiff34 -lz -ljpeg', + AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF header files not found) ***)), + AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF library not found) ***), -lz -ljpeg -lm), -lm) + fi +@@ -299,7 +299,7 @@ + LIBS="$gimp_save_LIBS" + + gimpdatadir=$datadir/gimp +-gimpplugindir=$libdir/$PACKAGE/$GIMP_MAJOR_VERSION_NUMBER.$GIMP_MINOR_VERSION_NUMBER ++gimpplugindir=$libexecdir/$PACKAGE/$GIMP_MAJOR_VERSION_NUMBER.$GIMP_MINOR_VERSION_NUMBER + + brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile` + gradientdata=`ls -1 $srcdir/data/gradients | grep -v Makefile` +--- configure~ Thu Apr 16 20:00:58 1998 ++++ configure Thu Apr 16 20:04:59 1998 +@@ -2282,14 +2282,14 @@ + fi + + if test -z "$LIBTIFF_LIB"; then +- echo $ac_n "checking for TIFFReadScanline in -ltiff""... $ac_c" 1>&6 +-echo "configure:2287: checking for TIFFReadScanline in -ltiff" >&5 +-ac_lib_var=`echo tiff'_'TIFFReadScanline | sed 'y%./+-%__p_%'` ++ echo $ac_n "checking for TIFFReadScanline in -ltiff34""... $ac_c" 1>&6 ++echo "configure:2287: checking for TIFFReadScanline in -ltiff34" >&5 ++ac_lib_var=`echo tiff34'_'TIFFReadScanline | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-ltiff -lm $LIBS" ++LIBS="-ltiff34 -lm $LIBS" + cat > conftest.$ac_ext <&6 +- TIFF='tiff'; LIBTIFF_LIB='-ltiff' ++ TIFF='tiff'; LIBTIFF_LIB='-ltiff34' + else + echo "$ac_t""no" 1>&6 + echo "configure: warning: *** TIFF plug-in will not be built (TIFF header files not found) ***" 1>&2 +@@ -2353,14 +2353,14 @@ + + else + echo "$ac_t""no" 1>&6 +-echo $ac_n "checking for TIFFWriteScanline in -ltiff""... $ac_c" 1>&6 +-echo "configure:2358: checking for TIFFWriteScanline in -ltiff" >&5 +-ac_lib_var=`echo tiff'_'TIFFWriteScanline | sed 'y%./+-%__p_%'` ++echo $ac_n "checking for TIFFWriteScanline in -ltiff34""... $ac_c" 1>&6 ++echo "configure:2358: checking for TIFFWriteScanline in -ltiff34" >&5 ++ac_lib_var=`echo tiff34'_'TIFFWriteScanline | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-ltiff -lz -ljpeg -lm $LIBS" ++LIBS="-ltiff34 -lz -ljpeg -lm $LIBS" + cat > conftest.$ac_ext <&6 +- TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg' ++ TIFF='tiff'; LIBTIFF_LIB='-ltiff34 -lz -ljpeg' + else + echo "$ac_t""no" 1>&6 + echo "configure: warning: *** TIFF plug-in will not be built (TIFF header files not found) ***" 1>&2 +@@ -4070,7 +4070,7 @@ + LIBS="$gimp_save_LIBS" + + gimpdatadir=$datadir/gimp +-gimpplugindir=$libdir/$PACKAGE/$GIMP_MAJOR_VERSION_NUMBER.$GIMP_MINOR_VERSION_NUMBER ++gimpplugindir=$libexecdir/$PACKAGE/$GIMP_MAJOR_VERSION_NUMBER.$GIMP_MINOR_VERSION_NUMBER + + brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile` + gradientdata=`ls -1 $srcdir/data/gradients | grep -v Makefile` diff -ruN gimp-devel.old/patches/patch-aa gimp-devel/patches/patch-aa --- gimp-devel.old/patches/patch-aa Wed Dec 31 16:00:00 1969 +++ gimp-devel/patches/patch-aa Tue Apr 28 09:54:39 1998 @@ -0,0 +1,11 @@ +--- app/main.c.old Tue Apr 28 09:54:27 1998 ++++ app/main.c Tue Apr 28 09:53:51 1998 +@@ -80,6 +80,8 @@ + int i, j; + gchar *display_name, *display_env; + ++#define ATEXIT(proc) (atexit (proc)) ++ + ATEXIT (g_mem_profile); + + /* Initialize variables */ diff -ruN gimp-devel.old/patches/patch-ah gimp-devel/patches/patch-ah --- gimp-devel.old/patches/patch-ah Fri Apr 17 15:26:48 1998 +++ gimp-devel/patches/patch-ah Tue Apr 28 09:09:55 1998 @@ -1,5 +1,5 @@ ---- configure.in~ Thu Apr 16 20:00:52 1998 -+++ configure.in Thu Apr 16 20:02:07 1998 +--- configure.in.old Tue Apr 28 09:04:13 1998 ++++ configure.in Tue Apr 28 09:07:13 1998 @@ -115,13 +115,13 @@ dnl Test for libtiff @@ -13,12 +13,12 @@ - AC_CHECK_LIB(tiff, TIFFWriteScanline, + AC_CHECK_LIB(tiff34, TIFFWriteScanline, AC_CHECK_HEADER(tiffio.h, -- TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg', -+ TIFF='tiff'; LIBTIFF_LIB='-ltiff34 -lz -ljpeg', +- TIFF='tiff'; LIBTIFF_LIB='-ltiff -ljpeg -lz', ++ TIFF='tiff'; LIBTIFF_LIB='-ltiff34 -ljpeg -lz', AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF header files not found) ***)), - AC_MSG_WARN(*** TIFF plug-in will not be built (TIFF library not found) ***), -lz -ljpeg -lm), -lm) - fi -@@ -299,7 +299,7 @@ + AC_CHECK_LIB(tiff34, TIFFFlushData, + AC_CHECK_HEADER(tiffio.h, +@@ -303,7 +303,7 @@ LIBS="$gimp_save_LIBS" gimpdatadir=$datadir/gimp @@ -27,17 +27,17 @@ brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile` gradientdata=`ls -1 $srcdir/data/gradients | grep -v Makefile` ---- configure~ Thu Apr 16 20:00:58 1998 -+++ configure Thu Apr 16 20:04:59 1998 -@@ -2282,14 +2282,14 @@ +--- configure.old Tue Apr 28 09:04:06 1998 ++++ configure Tue Apr 28 09:09:45 1998 +@@ -2281,14 +2281,14 @@ fi if test -z "$LIBTIFF_LIB"; then - echo $ac_n "checking for TIFFReadScanline in -ltiff""... $ac_c" 1>&6 --echo "configure:2287: checking for TIFFReadScanline in -ltiff" >&5 +-echo "configure:2286: checking for TIFFReadScanline in -ltiff" >&5 -ac_lib_var=`echo tiff'_'TIFFReadScanline | sed 'y%./+-%__p_%'` + echo $ac_n "checking for TIFFReadScanline in -ltiff34""... $ac_c" 1>&6 -+echo "configure:2287: checking for TIFFReadScanline in -ltiff34" >&5 ++echo "configure:2286: checking for TIFFReadScanline in -ltiff34" >&5 +ac_lib_var=`echo tiff34'_'TIFFReadScanline | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -46,9 +46,9 @@ -LIBS="-ltiff -lm $LIBS" +LIBS="-ltiff34 -lm $LIBS" cat > conftest.$ac_ext <&6 @@ -57,35 +57,35 @@ else echo "$ac_t""no" 1>&6 echo "configure: warning: *** TIFF plug-in will not be built (TIFF header files not found) ***" 1>&2 -@@ -2353,14 +2353,14 @@ +@@ -2352,14 +2352,14 @@ else echo "$ac_t""no" 1>&6 -echo $ac_n "checking for TIFFWriteScanline in -ltiff""... $ac_c" 1>&6 --echo "configure:2358: checking for TIFFWriteScanline in -ltiff" >&5 +-echo "configure:2357: checking for TIFFWriteScanline in -ltiff" >&5 -ac_lib_var=`echo tiff'_'TIFFWriteScanline | sed 'y%./+-%__p_%'` +echo $ac_n "checking for TIFFWriteScanline in -ltiff34""... $ac_c" 1>&6 -+echo "configure:2358: checking for TIFFWriteScanline in -ltiff34" >&5 ++echo "configure:2357: checking for TIFFWriteScanline in -ltiff34" >&5 +ac_lib_var=`echo tiff34'_'TIFFWriteScanline | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" --LIBS="-ltiff -lz -ljpeg -lm $LIBS" -+LIBS="-ltiff34 -lz -ljpeg -lm $LIBS" +-LIBS="-ltiff -ljpeg -lz -lm $LIBS" ++LIBS="-ltiff34 -ljpeg -lz -lm $LIBS" cat > conftest.$ac_ext <&6 -- TIFF='tiff'; LIBTIFF_LIB='-ltiff -lz -ljpeg' -+ TIFF='tiff'; LIBTIFF_LIB='-ltiff34 -lz -ljpeg' +- TIFF='tiff'; LIBTIFF_LIB='-ltiff -ljpeg -lz' ++ TIFF='tiff'; LIBTIFF_LIB='-ltiff34 -ljpeg -lz' else echo "$ac_t""no" 1>&6 echo "configure: warning: *** TIFF plug-in will not be built (TIFF header files not found) ***" 1>&2 -@@ -4070,7 +4070,7 @@ +@@ -4144,7 +4144,7 @@ LIBS="$gimp_save_LIBS" gimpdatadir=$datadir/gimp >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 12:30:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09182 for freebsd-ports-outgoing; Tue, 28 Apr 1998 12:30:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09169; Tue, 28 Apr 1998 12:30:43 -0700 (PDT) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA18077; Tue, 28 Apr 1998 12:29:01 -0700 (PDT) Date: Tue, 28 Apr 1998 12:29:01 -0700 (PDT) Message-Id: <199804281929.MAA18077@freefall.freebsd.org> To: asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: ports/6442 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port graphics/gimp-devel to version 0.99.28 Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: asami Responsible-Changed-When: Tue Apr 28 12:28:47 PDT 1998 Responsible-Changed-Why: I'll take this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 12:59:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19982 for freebsd-ports-outgoing; Tue, 28 Apr 1998 12:59:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19954; Tue, 28 Apr 1998 12:59:00 -0700 (PDT) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA18250; Tue, 28 Apr 1998 12:57:18 -0700 (PDT) Date: Tue, 28 Apr 1998 12:57:18 -0700 (PDT) Message-Id: <199804281957.MAA18250@freefall.freebsd.org> To: asami@FreeBSD.ORG, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6442 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port graphics/gimp-devel to version 0.99.28 Responsible-Changed-From-To: asami->freebsd-ports Responsible-Changed-By: asami Responsible-Changed-When: Tue Apr 28 12:55:22 PDT 1998 Responsible-Changed-Why: Never mind. Too much work. (1) The port patches both configure.in and configure. It should be one or the other. If it's the former, then USE_AUTOCONF should be set. (2) It depends on xdelta but the configure phase says it can't find it. Here's the configure log, for whoever that's going to pick this up: ===> Configuring for gimp-0.99.28 creating cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... missing checking for working autoconf... found checking for working automake... missing checking for working autoheader... found checking for working makeinfo... found checking host system type... i386-unknown-freebsd2.2.6 checking for ranlib... ranlib checking for gcc... cc checking whether the C compiler (cc -O2 -pipe ) works... yes checking whether the C compiler (cc -O2 -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... no checking for BSD-compatible nm... /usr/bin/nm -p checking whether ln -s works... yes checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc static flag -static works... -static checking if the linker (/usr/bin/ld) is GNU ld... no checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -p output... no checking how to hardcode library paths into programs... immediate checking for /usr/bin/ld option to reload object files... -r checking dynamic linker characteristics... freebsd2.2.6 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for objdir... .libs creating libtool checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... i386-unknown-freebsd2.2.6 checking for gcc... (cached) cc checking whether the C compiler (cc -O2 -pipe ) works... yes checking whether the C compiler (cc -O2 -pipe ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ANSI C... none needed checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking whether ln -s works... (cached) yes checking whether make sets ${MAKE}... (cached) yes checking how to run the C preprocessor... cc -E checking for gtk-config... /usr/X11R6/bin/gtk-config checking for GTK - version >= 1.0.0... yes checking for XmuClientWindow in -lXmu... yes checking for X11/Xmu/WinUtil.h... yes checking for aa_printf in -laa... yes checking for aalib.h... yes checking for TIFFReadScanline in -ltiff34... yes checking for tiffio.h... yes checking for jpeg_destroy_decompress in -ljpeg... yes checking for jpeg.h... yes checking for png_read_info in -lpng... yes checking for png.h... yes checking for png_structp in png.h... yes checking for GetMPEGFrame in -lmpeg... yes checking for mpeg.h... yes checking for xd_checkin in -lxdelta... no checking for xd_checkout in -lxdelta... no configure: warning: *** XD plug-in will not be built (XDELTA library not found) *** checking for XpmReadFileToXpmImage in -lXpm... yes checking for X11/xpm.h... yes checking for sys/ipc.h... yes checking for sys/shm.h... yes checking whether shmctl IPC_RMID allowes subsequent attaches... no checking for dirent.h that defines DIR... yes checking for opendir in -ldir... no checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking whether time.h and sys/time.h may both be included... yes checking for sys/time.h... yes checking for unistd.h... yes checking for pid_t... yes checking return type of signal handlers... void checking for vprintf... yes checking for working alloca.h... no checking for alloca... yes checking fd_set and sys/select... yes checking for random... yes checking for difftime... yes checking for emacs... no checking for xemacs... no checking for sendmail... /usr/sbin/sendmail checking for lp... /usr/bin/lp checking for lpstat... test: syntax error : checking for lpr... /usr/bin/lpr checking for lpc... /usr/sbin/lpc updating cache ./config.cache creating ./config.status creating Makefile creating gimprc creating gimprc_user creating libgimp/Makefile creating plug-ins/Makefile creating plug-ins/build creating plug-ins/dbbrowser/Makefile creating plug-ins/CML_explorer/Makefile creating plug-ins/convmatrix/Makefile creating plug-ins/diffraction/Makefile creating plug-ins/pix/Makefile creating plug-ins/oilify/Makefile creating plug-ins/nova/Makefile creating plug-ins/normalize/Makefile creating plug-ins/noisify/Makefile creating plug-ins/nlfilt/Makefile creating plug-ins/mosaic/Makefile creating plug-ins/mblur/Makefile creating plug-ins/maze/Makefile creating plug-ins/max_rgb/Makefile creating plug-ins/mail/Makefile creating plug-ins/laplace/Makefile creating plug-ins/ifscompose/Makefile creating plug-ins/iwarp/Makefile creating plug-ins/hrz/Makefile creating plug-ins/hot/Makefile creating plug-ins/gz/Makefile creating plug-ins/header/Makefile creating plug-ins/grid/Makefile creating plug-ins/gee/Makefile creating plug-ins/gradmap/Makefile creating plug-ins/gqbist/Makefile creating plug-ins/gif/Makefile creating plug-ins/gicon/Makefile creating plug-ins/gfli/Makefile creating plug-ins/gbr/Makefile creating plug-ins/gauss_iir/Makefile creating plug-ins/gauss_rle/Makefile creating plug-ins/fits/Makefile creating plug-ins/film/Makefile creating plug-ins/faxg3/Makefile creating plug-ins/exchange/Makefile creating plug-ins/engrave/Makefile creating plug-ins/emboss/Makefile creating plug-ins/edge/Makefile creating plug-ins/displace/Makefile creating plug-ins/destripe/Makefile creating plug-ins/despeckle/Makefile creating plug-ins/depthmerge/Makefile creating plug-ins/deinterlace/Makefile creating plug-ins/decompose/Makefile creating plug-ins/cubism/Makefile creating plug-ins/compose/Makefile creating plug-ins/checkerboard/Makefile creating plug-ins/bz2/Makefile creating plug-ins/xpm/Makefile creating plug-ins/AlienMap/Makefile creating plug-ins/c_astretch/Makefile creating plug-ins/bumpmap/Makefile creating plug-ins/script-fu/Makefile creating plug-ins/script-fu/scripts/Makefile creating plug-ins/jpeg/Makefile creating plug-ins/mpeg/Makefile creating plug-ins/aa/Makefile creating plug-ins/png/Makefile creating plug-ins/tiff/Makefile creating plug-ins/xd/Makefile creating plug-ins/bmp/Makefile creating plug-ins/megawidget/Makefile creating plug-ins/blur/Makefile creating plug-ins/flame/Makefile creating plug-ins/struc/Makefile creating plug-ins/zealouscrop/Makefile creating plug-ins/xwd/Makefile creating plug-ins/whirlpinch/Makefile creating plug-ins/waves/Makefile creating plug-ins/vpropagate/Makefile creating plug-ins/vinvert/Makefile creating plug-ins/video/Makefile creating plug-ins/url/Makefile creating plug-ins/tiler/Makefile creating plug-ins/tile/Makefile creating plug-ins/tileit/Makefile creating plug-ins/threshold_alpha/Makefile creating plug-ins/tga/Makefile creating plug-ins/sunras/Makefile creating plug-ins/spread/Makefile creating plug-ins/sparkle/Makefile creating plug-ins/sobel/Makefile creating plug-ins/snp/Makefile creating plug-ins/snoise/Makefile creating plug-ins/smooth_palette/Makefile creating plug-ins/sinus/Makefile creating plug-ins/shift/Makefile creating plug-ins/sgi/Makefile creating plug-ins/semiflatten/Makefile creating plug-ins/scatter_hsv/Makefile creating plug-ins/rotators/Makefile creating plug-ins/rotate/Makefile creating plug-ins/ripple/Makefile creating plug-ins/randomize/Makefile creating plug-ins/palette/Makefile creating plug-ins/ps/Makefile creating plug-ins/print/Makefile creating plug-ins/polar/Makefile creating plug-ins/pnm/Makefile creating plug-ins/plasma/Makefile creating plug-ins/pixelize/Makefile creating plug-ins/pcx/Makefile creating plug-ins/pagecurl/Makefile creating plug-ins/pat/Makefile creating plug-ins/blinds/Makefile creating plug-ins/autostretch_hsv/Makefile creating plug-ins/autocrop/Makefile creating plug-ins/apply_lens/Makefile creating plug-ins/animationplay/Makefile creating plug-ins/align_layers/Makefile creating plug-ins/CEL/Makefile creating plug-ins/glasstile/Makefile creating plug-ins/gtm/Makefile creating plug-ins/colorify/Makefile creating plug-ins/papertile/Makefile creating plug-ins/illusion/Makefile creating plug-ins/fractaltrace/Makefile creating plug-ins/flarefx/Makefile creating plug-ins/webbrowser/Makefile creating plug-ins/animoptimize/Makefile creating plug-ins/libgck/Makefile creating plug-ins/libgck/gck/Makefile creating plug-ins/MapObject/Makefile creating plug-ins/gfig/Makefile creating plug-ins/gfig/gfig-examples/Makefile creating plug-ins/screenshot/Makefile creating plug-ins/sharpen/Makefile creating plug-ins/psd/Makefile creating app/Makefile creating docs/Makefile creating data/Makefile creating data/brushes/Makefile creating data/gradients/Makefile creating data/palettes/Makefile creating data/patterns/Makefile creating config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 14:21:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA09906 for freebsd-ports-outgoing; Tue, 28 Apr 1998 14:21:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA09410; Tue, 28 Apr 1998 14:20:00 -0700 (PDT) (envelope-from benedict@echonyc.com) Received: from localhost (benedict@localhost) by echonyc.com (8.8.7/8.8.7) with SMTP id RAA09202; Tue, 28 Apr 1998 17:15:40 -0400 (EDT) Date: Tue, 28 Apr 1998 17:15:39 -0400 (EDT) From: Snob Art Genre To: jkh@time.cdrom.com, ache@FreeBSD.ORG, torstenb@FreeBSD.ORG, tg@FreeBSD.ORG, steve@FreeBSD.ORG, peter@FreeBSD.ORG, ports@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: Static vs. dynamic linking (was Re: Using MD5 insted of DES ...) (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If you are receiving this message, it's because you have your name on a piece of software that is set up to link statically when it should be shared, or shared when it should be static, according to the message below from John Dyson. Some of your names came from the MAINTAINER variable in Makefiles from the ports collection; others came from CVS records of your modifications to relevant files. I apologize if you're not actually responsible for the code in question. Some offenders are: telnetd (?) tcsh pdksh zsh inetd ftpd make fingerd touch (?) cc cc1 cc1plus pine elm mail bash2 mutt There are almost certainly more; I recommend that you check whatever code you maintain with John's criteria in mind, in your copious spare time. ;-) If you have any questions, direct them to John. His email address is in the headers a few lines down from here. Ben "You have your mind on computers, it seems." ---------- Forwarded message ---------- Date: Wed, 22 Apr 1998 20:41:33 -0500 (EST) From: "John S. Dyson" To: Snob Art Genre Cc: toor@dyson.iquest.net Subject: Re: Static vs. dynamic linking (was Re: Using MD5 insted of DES ...) Snob Art Genre said: > On Wed, 22 Apr 1998, John S. Dyson wrote: > > > I'll scream terribly loudly if we even passingly consider making a > > shell shared!!! Shells are almost never advatageously made shared. > > Then why does our ports system build them incorrectly?! > Because I don't mess with the ports, and haven't done a very good job of making the above fact known. For maintenence, memory and speed reasons, one can seldom justify a shared shell. BTW, I use the ports extensively, but I tend to build and port the shells myself, probably for the issue that we are discussing. I haven't been watching this discussion carefully, but here are the costs of shared libs: fork() performance is slower. exec() performance is effectively slower (due to ld.so.) data and shared lib bss is packed much less effectively, and locality of reference, both at the sub-page level, and the page level is worse. Shared libs often require additional page table pages to map them. Here are the non-advantages: Shared libs don't help .text sharing, if a process has more than a few static occurances (shared .text works really well on our system.) Here are the advantages: Shared libs are great for processes where the libraries are large relative to the program size. Shared libs are great for processes that don't have many static or dynamic instances. My suggestions for programs that should probably not be linked with shared libs under any circumstances: Make, cp, cat, ls, *sh, cc, daemons that fork, .... mail readers, any (small) program invoked by make, or repeatedly invoked by shell scripts. If the shared libs are on /usr, any program that needs to be able to work without /usr mounted. Programs where it is likely slightly advantageous to link with shared libs: cc1, cc1plus, cpp, as, *roff, daemons that don't fork often, any X windows program (including those in any category), specialty programs that aren't used often... Programs where it is probably a toss-up: vi, *grep, other programs that don't fit the above criteria. Most of /usr/local, except for forking daemons. Reiterating, with clarification: More than 3-4 copies running at the same time: static Forks like a shell: static Must be able to run without shared libs: static If library CPU performance is critical: static Executes for a "long time", and doesn't fork often: shared Huge libraries: shared Not often used: shared -- John | Never try to teach a pig to sing, dyson@freebsd.org | it just makes you look stupid, jdyson@nc.com | and it irritates the pig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe security" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 14:49:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15414 for freebsd-ports-outgoing; Tue, 28 Apr 1998 14:49:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA15406 for ; Tue, 28 Apr 1998 14:49:15 -0700 (PDT) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.8/8.8.8) with ESMTP id XAA17834; Tue, 28 Apr 1998 23:48:51 +0200 (MET DST) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA06848; Mon, 27 Apr 1998 23:53:05 +0200 (CEST) X-Face: " Date: Mon, 27 Apr 1998 23:53:04 +0200 From: Stefan Esser To: Christoph Kukulies , freebsd-ports@freefall.freebsd.org Cc: Stefan Esser Subject: Re: kdenetwork - mimlib ? References: <199804271011.MAA00806@gilberto.physik.RWTH-Aachen.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <199804271011.MAA00806@gilberto.physik.RWTH-Aachen.DE>; from Christoph Kukulies on Mon, Apr 27, 1998 at 12:11:45PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-04-27 12:11 +0200, Christoph Kukulies wrote: > > Any clues where mimelib/string.h etc. are located? In kdesupport ... > %make > >> Checksum OK for kdenetwork-Beta3-1.src.tar.gz. > ===> Building for kdenetwork-3.1b > make all-recursive > Making all in kmail > Making all in pics > Making all in toolbar > Making all in doc > g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -I/usr/X11R6/include/X11/qt -I/usr/X11R6/include -O2 -Wall -c kmmainwin.cpp > In file included from kmmainwin.cpp:11: > kmmessage.h:7: mimelib/string.h: No such file or directory > In file included from kmcomposewin.h:18, > from kmmainwin.cpp:17: > kmmsgpart.h:7: mimelib/string.h: No such file or directory > In file included from kmmainwin.cpp:22: > kmsender.h:7: mimelib/smtp.h: No such file or directory > kmsender.h:8: mimelib/string.h: No such file or directory > kmsender.h:9: mimelib/utility.h: No such file or directory > *** Error code 1 Hmmm, those include files are listed in kdesupport/pkg/PLIST, and the LIB_DEPENDS line in kdenetwork's Makefile should have built and installed kdesupport. Do you happen to have some old version of MIMELIB installed, without the header files (which should have gone into /usr/local/include/mimelib/*.h) ? Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 16:33:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08129 for freebsd-ports-outgoing; Tue, 28 Apr 1998 16:33:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08122 for ; Tue, 28 Apr 1998 16:33:24 -0700 (PDT) (envelope-from roddie@krweb.net) Received: from localhost (roddie@localhost) by hub.org (8.8.8/8.7.5) with SMTP id TAA09754; Tue, 28 Apr 1998 19:33:32 -0400 (EDT) Date: Tue, 28 Apr 1998 19:33:31 -0400 (EDT) From: Roddie Hasan X-Sender: roddie@hub.org To: The Hermit Hacker cc: ports@FreeBSD.ORG Subject: Re: StarOffice Newsgroups... In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > ... but all the talk in the Unix group(s) are Linux related...I'm > trying to throw *something* in there FreeBSD (like, asking for a port?), > but I'm just one person... > FYI - I just downloaded the Linux version of StarOffice 4.0 (45 megs), gunzip/untar'd it, and ran the setup program. Its interface is similar to a Windows program setup. I did the minimum install (75 megs), and it runs beautifully under FreeBSD 3.0-current with linux_lib installed. Roddie <>> Roddie Hasan - roddie@krweb.net - http://www.krweb.net/roddie <>> "Early bird gets the worm, but the second mouse gets the cheese." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 17:42:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22745 for freebsd-ports-outgoing; Tue, 28 Apr 1998 17:42:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@206-18-115-47.la.inreach.net [206.18.115.47]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22702; Tue, 28 Apr 1998 17:42:21 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id RAA13800; Tue, 28 Apr 1998 17:38:13 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199804281957.MAA18250@freefall.freebsd.org> Date: Tue, 28 Apr 1998 17:38:08 -0700 (PDT) Organization: Computer Help From: Donald Burr To: Satoshi Asami Subject: Re: ports/6442 Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- My secret spy satellite informs me that on 28-Apr-98, Satoshi Asami wrote: > Synopsis: Update port graphics/gimp-devel to version 0.99.28 > > Responsible-Changed-From-To: asami->freebsd-ports > Responsible-Changed-By: asami > Responsible-Changed-When: Tue Apr 28 12:55:22 PDT 1998 > Responsible-Changed-Why: > Never mind. Too much work. > > (1) The port patches both configure.in and configure. It should be > one or the other. If it's the former, then USE_AUTOCONF should > be set. > > (2) It depends on xdelta but the configure phase says it can't find it. That's what I get for doing port submissions after pulling an all-nighter. *sigh* I'll take a look at it later tonight, after my C++ midterm. But as to the problem (1): The previous gimp-devel port did this as well (patched both configure.in and configure) -- I didn't change anything, all I did was update the port so that the patch patches cleanly against the new versions of said files. - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUZ2b/jpixuAwagxAQF7rgP/RUXqJq8BsCM9Vxyz+Cx+IntKVTDySUiM ZZgdTCjOrpF8aPhfKxgwreQLeZw0W2fcbphC+Txk0hQS28P6aRgpSySBMQb3Uk/G Rl/kBg7R2dOu+V9/aaTlwtzyznE1J2SYo35653uMVPeYQzC3+0iBIxmsv+tjU+tc 8EIqaI+jAyg= =DpwO -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 17:46:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23658 for freebsd-ports-outgoing; Tue, 28 Apr 1998 17:46:24 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA23651 for ; Tue, 28 Apr 1998 17:46:15 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca36-42.ix.netcom.com [207.93.42.234]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA26382; Tue, 28 Apr 1998 17:46:10 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id RAA08624; Tue, 28 Apr 1998 17:46:06 -0700 (PDT) Date: Tue, 28 Apr 1998 17:46:06 -0700 (PDT) Message-Id: <199804290046.RAA08624@silvia.HIP.Berkeley.EDU> To: dburr@POBoxes.com CC: freebsd-ports@FreeBSD.ORG In-reply-to: (message from Donald Burr on Tue, 28 Apr 1998 17:38:08 -0700 (PDT)) Subject: Re: ports/6442 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * > (2) It depends on xdelta but the configure phase says it can't find it. And several hours later, packaging fails because of this. :> * I'll take a look at it later tonight, after my C++ midterm. But as to the * problem (1): The previous gimp-devel port did this as well (patched both * configure.in and configure) -- I didn't change anything, all I did was * update the port so that the patch patches cleanly against the new versions * of said files. You're right. I noticed that, should have mentioned it earlier. Sorry to blame you on that (although it still has to be fixed). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 18:12:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28663 for freebsd-ports-outgoing; Tue, 28 Apr 1998 18:12:13 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28581; Tue, 28 Apr 1998 18:12:05 -0700 (PDT) (envelope-from jseger) Date: Tue, 28 Apr 1998 18:12:05 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804290112.SAA28581@hub.freebsd.org> To: ibex@physik.TU-Berlin.DE, jseger, freebsd-ports Subject: Re: ports/6322 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port: mysql State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Tue Apr 28 18:08:11 PDT 1998 State-Changed-Why: Committed with minor changes, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 19:10:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA10299 for freebsd-ports-outgoing; Tue, 28 Apr 1998 19:10:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA10280 for ; Tue, 28 Apr 1998 19:10:34 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id TAA02383; Tue, 28 Apr 1998 19:09:48 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Roddie Hasan cc: The Hermit Hacker , ports@FreeBSD.ORG Subject: Re: StarOffice Newsgroups... In-reply-to: Your message of "Tue, 28 Apr 1998 19:33:31 EDT." Date: Tue, 28 Apr 1998 19:09:47 -0700 Message-ID: <2378.893815787@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yep, the chances of StarDivision doing a native port are close to infinitismal (I've talked to them) but we could REALLY do a much better job of advertising the fact that the Linux version works just fine. Jordan > > ... but all the talk in the Unix group(s) are Linux related...I'm > > trying to throw *something* in there FreeBSD (like, asking for a port?), > > but I'm just one person... > > > > FYI - I just downloaded the Linux version of StarOffice 4.0 (45 megs), > gunzip/untar'd it, and ran the setup program. Its interface is similar to > a Windows program setup. I did the minimum install (75 megs), and it runs > beautifully under FreeBSD 3.0-current with linux_lib installed. > > Roddie > > <>> Roddie Hasan - roddie@krweb.net - http://www.krweb.net/roddie > <>> "Early bird gets the worm, but the second mouse gets the cheese." > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 19:46:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA17870 for freebsd-ports-outgoing; Tue, 28 Apr 1998 19:46:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from thelab.hub.org (tc-18.acadiau.ca [131.162.2.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA17748 for ; Tue, 28 Apr 1998 19:45:59 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with SMTP id XAA23792; Tue, 28 Apr 1998 23:44:43 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Tue, 28 Apr 1998 23:44:42 -0300 (ADT) From: The Hermit Hacker To: "Jordan K. Hubbard" cc: Roddie Hasan , ports@FreeBSD.ORG Subject: Re: StarOffice Newsgroups... In-Reply-To: <2378.893815787@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 28 Apr 1998, Jordan K. Hubbard wrote: > Yep, the chances of StarDivision doing a native port are close > to infinitismal (I've talked to them) but we could REALLY do a much > better job of advertising the fact that the Linux version works > just fine. I was reading through the newsgroup today, playing catch up mostly, and one of the postings from one of their "internal guys" commented on wanting to port to "various Unices (incl Linux)", which I find comical... ...on the one hand, it makes it almost sound like Linux is one of many...but, I've yet to find a *non* Unix port :( > > > ... but all the talk in the Unix group(s) are Linux related...I'm > > > trying to throw *something* in there FreeBSD (like, asking for a port?), > > > but I'm just one person... > > > > > > > FYI - I just downloaded the Linux version of StarOffice 4.0 (45 megs), > > gunzip/untar'd it, and ran the setup program. Its interface is similar to > > a Windows program setup. I did the minimum install (75 megs), and it runs > > beautifully under FreeBSD 3.0-current with linux_lib installed. > > > > Roddie > > > > <>> Roddie Hasan - roddie@krweb.net - http://www.krweb.net/roddie > > <>> "Early bird gets the worm, but the second mouse gets the cheese." > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-ports" in the body of the message > Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 21:20:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07673 for freebsd-ports-outgoing; Tue, 28 Apr 1998 21:20:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07624; Tue, 28 Apr 1998 21:20:02 -0700 (PDT) (envelope-from gnats) Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06082 for ; Tue, 28 Apr 1998 21:11:40 -0700 (PDT) (envelope-from koshy@india.hp.com) Received: from postbox.india.hp.com (postbox.india.hp.com [15.10.45.1]) by palrel3.hp.com (8.8.5/8.8.5tis) with ESMTP id VAA24698 for ; Tue, 28 Apr 1998 21:11:30 -0700 (PDT) Received: from localhost by postbox.india.hp.com with ESMTP (1.39.111.2/16.2) id AA293532902; Wed, 29 Apr 1998 09:38:22 +0530 Message-Id: <199804290411.VAA24698@palrel3.hp.com> Date: Wed, 29 Apr 1998 09:38:22 +0530 From: A Joseph Koshy Reply-To: koshy@csypcnt3.india.hp.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6445: New port for `fhist' Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6445 >Category: ports >Synopsis: New port for `fhist' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 21:20:01 PDT 1998 >Last-Modified: >Originator: Joseph Koshy >Organization: HPISO-B >Release: FreeBSD 2.2.6-STABLE i386 >Environment: N/A >Description: New port for Peter Millers `Fhist' file history and comparision tools. >How-To-Repeat: Uuencoded port enclosed. >Fix: begin 664 fhist.tar.gz M'XL(`%BH1C4``^U:;5/;2!+.5^M7=&VR61O;LF1)-CB!Q0'#N@*&PN3EZO;* M.Y9&]BRRI-,+A+#9WW[=(]D8PH9L%2:7.ST%EC33,]/3,]WJ[I$[%7'2>+)2 M@*FUVQ8\`=#;EK9\G4,#:%E-W6J:FFY@M=9J&T_`6BU;&=(X81'`D[,@GEY^ M@>Z^^N\4KES_0W;&7>'QU8RA:UJK9?[E^NMZVYROOV&V:/V;IHGKKZV&G9OX M/U__IS#@%Q`&41*#'7@>MQ,1^##+-P2X0=2!DMPERE-XRZ.8JB/^[U1$W,&J M4DE7=:S:90D'.^)XP6($UG3#")H&Z!L;ZTCQ;AK,9(/22RG,;>$[@JG34+6# MV9;R%$F>]9UG>*/L]H>G@^YA;S,;6:4ACE_O+Q75J6BG>]K;/SKI]X:;)8>? MR>C8?^4RMPD[#0:++*G@JLL;:2^^-#H\HF(&\C%KTJI-$TDR<7% MA6HS?XQ$Z40-H@E1_SD3*(\H;&2D66?XJ[))'*B3X)R(PG2<]PBWR=(Z$Q]3 ME=GJ[Z&DFXG8;B1!X,5S)I98F#AJDEX([E,#EC3BP$VX/\DI<6+]P2G^]TXV M2Y]+#ZL'^B8.CO>AJD,N-7!G/)IPE)2R/W@SVCD:[/7WWYR@#"]YK*"\ATDD M0N`?N)TF;.QA81B@;(6/2N%Y'47%Y0>Y#X2?=0IRB+QCI13+#IY='9_T]OKO M/S7&PF\\NZ(6GQ25^PZV5Q1%%;[MI0Z'E^/846FSJ;.S+>5;[_T"<_M/"Q:O MS`OXRO>_WFYI;?DNT)N:;A;O_\?`\OK/G-5(_)[W/T"[>7O]S996O/\?`X>[ M%I07+UD59:%./E9@$TS7-4QS8[VY;FUHFJ&UU_FZ9;C&>IM9YH8Q+JSW_P0R M_0_/)BN,`?]&_&=H3=)_W;2LPOX_!J[7?^?H\+`W.%W!&/?9?UVS%O;?:,KX MSVI9A?U_#+Q)A"<2P6-(`HSZA)\P=$427-7""K(`\?Q8)B@!C8+X# M,@B(U>)5\/WB6O]W>\.=DY6,<5_^ITDY/ZG_2&FVJ<0P]4+_'P.GN/X0,ON, M34C!I?JC+9A&G$,8O<1#@B!"^=9/BFF>R:-C`J0T9.QZ<".-#EDG2Z"NZ@S6FF' M.G`HS1$:L@E/IL@;=T22,TO-'1[;W'>8G]P:3\F$$`63B,T`;\<=_F2G=!0E:QC_V_13O)*),6__13 M#7KIA/L(ESJ,'I":Q;]58-7WWU;A@)KZYOK%LU99?C;),9]Q/BD":? MDI"'MJ!QL!WR\\874A#))=%T(_$Q\!E6I3$N5$W)"[#_=E-7%67(:0IQT"'> M88_L^$YNQW&"Q]FD:_".C\?Y8LI)+%A6),LTBV'@)A>X&-B(V8G`G2$)/X0\ MRME[&WCIC(-NU6`0J.C&U91!<,YG8^R4)HCLU.$U*1*NV\O?LSP6LV>T5XIT MT#?!M?T_/N@/5^']?87_9RSE_]N:M/]6D?]_%%#"5MI:1=[)/+^\RQ*\,^8W M\%]OY)EE=?)QJ2Q/&]PHRS/.5/BMYU;@?N3ZSQ)[NK(,\-?G?YM6T\K]O^+\ M]U%P<_WEM<[8PXYQG_VGA]S_U]O-%E:;FMXN[/]CH%ZO4UP_"_Q&%MYSU:[7 M2WN1@",[P;4!?;VC61W-I&-<4ZE6JY_1ETZG*IL=R^B8>G;HN[T-=:/9 MJND:5//K]K8"GQ1T\I4Z2A[=2'2K$W2ZQQ[SSV!4+MM37(^UN%)YH50_IQC= M(L&.KHF4>DY5CBM*==Z"'J!$;4IK,;:XPJ>+*3G"9>PCXW&]76LCB_)"')9* MI7+9$S[W4^F]_@@GO>[NJX/NJ_[@M'?RMGM0@)+ZZB_?Q7?J__AA]]A]\7^[N?#_Z`,@J?]- ML]#_QP#I?[8'QA%G9[%J__EEY;])7'J'@;)4_0W0-CI-JX,W"]5O&C7=@"I> MT,,GM8(U..P.^GN]X6F'`MD/]3CDMG!1?:,@36C34AY2S$*/RRA85C,/F/PL M):9X?ZV!2E]]*ER'N_!+]VUO-/S'<'3D>CGZABOFW!O$E;6B,;M7I%I9C MZ"]C;!D-*I(=NZE MHC&R,L"!IX'GE/W*C;*(>S&G0N36(YV>=_%JN%LA,T`WL$4"-K0668O&&AP? M#?OO88JQ."K]I`8LCC$(=R",>$PBE/D/4S7!89XPYG#-/ M./2E#UP=A=RO#7CRB09*@N!GV>!SMDL2OZ*Y<@*X*ET_`A'%/!GAVO'DQ7)% M^3P03H7J^2Q,+K&Z_!Q_*B_N(F&.,R>H`0YX-U48!?:,Q6?E87]_].K@:.=U M#?(F1`-K%0T;4JM/($U^6:OI#]GW_]J0K_/M=OB?2&U]?N:`;^ M79M^4R>'2OZ2X7^*?S)[24ZCH"0C>3;2V*!._7<>=HS[_#]3NQW_FYI1Q'^/@FO_+PT=EGQ% M]'>3^K85T#NZ><,!;$G_+P_\;OA_;NIG7AUI+0O1\W#D@0M&:CZ=XY!#PL#G M%_(@AXBH-C^57AS_/*0[F#@BD&[?=1E&=?[M,F8WZ+M7?T+E,GSR=.[]E!L-&:1<,KO*S#AB1=,A%^N+)A'*]A8 MDT+M.IGH9-A'YU2W)26%286YOXW^X4*P67RJ9F:[13.QC-QL8]=TQD-5R$PXPO%S08XD>IG:31?,6K2W&_=(O0O9I/=U0N[_4/>K#FAC7( M,@49QS&&XX$_D9/&.6?9@V^M?P4*%"A0H$"!`@4*%"A0H$"!`@4*%"A0H$"! 1`@4*%"CP4/@/G[BUAP!0``"M ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Apr 28 21:50:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA14751 for freebsd-ports-outgoing; Tue, 28 Apr 1998 21:50:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA14698; Tue, 28 Apr 1998 21:50:03 -0700 (PDT) (envelope-from gnats) Received: from pc-21490.bc.rogers.wave.ca (pc-21490.bc.rogers.wave.ca [24.113.51.240]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA13424 for ; Tue, 28 Apr 1998 21:42:05 -0700 (PDT) (envelope-from jh@pc-21490.bc.rogers.wave.ca) Received: (from jh@localhost) by pc-21490.bc.rogers.wave.ca (8.8.8/8.8.7) id VAA03576; Tue, 28 Apr 1998 21:41:33 -0700 (PDT) Message-Id: <199804290441.VAA03576@pc-21490.bc.rogers.wave.ca> Date: Tue, 28 Apr 1998 21:41:33 -0700 (PDT) From: Jonathan Hanna Reply-To: pangolin@rogers.wave.ca To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6446: patch to use Karn patchkit for faster DES with ssh-1.2.22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6446 >Category: ports >Synopsis: patch to use Karn patchkit for faster DES with ssh-1.2.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 28 21:50:01 PDT 1998 >Last-Modified: >Originator: Jonathan Hanna >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: Phil Karn has produced a patchkit for ssh-1.2.22 to use his asm DES code. This modification of the port applies it if FAST_DES_PATCHKIT=YES and it has been downloaded by hand to distfiles. >How-To-Repeat: >Fix: diff -r -u ssh/Makefile ssh.fdes/Makefile --- ssh/Makefile Tue Mar 10 05:58:16 1998 +++ ssh.fdes/Makefile Fri Apr 24 16:21:42 1998 @@ -27,6 +27,15 @@ ftp://ftp.univie.ac.at/security/crypt/cryptography/asymmetric/rsa/ \ ftp://isdec.vc.cvut.cz/pub/security/unimi/crypt/applied-crypto/ .endif +# +# Use Phil Karn's asm patches to speed up DES on intel. +# Download by hand from http://www.cryptography.org/cgi-bin/crypto.cgi/ssh/ +# and put in distfiles directory. +# +.if defined(FAST_DES_PATCHKIT) && ${FAST_DES_PATCHKIT} == YES +PATCHFILES=ssh-1.2.22-patchkit +PATCH_DIST_STRIP=-p1 +.endif RESTRICTED= "Crypto; export-controlled" IS_INTERACTIVE= YES diff -r -u ssh/files/md5 ssh.fdes/files/md5 --- ssh/files/md5 Tue Jan 20 15:50:11 1998 +++ ssh.fdes/files/md5 Fri Apr 24 16:18:58 1998 @@ -1,2 +1,3 @@ MD5 (ssh-1.2.22.tar.gz) = 011f2b6d1935c59be0dae299db4ed7fa MD5 (rsaref2.tar.gz) = 0b474c97bf1f1c0d27e5a95f1239c08d +MD5 (ssh-1.2.22-patchkit) = 5228897d59be91ad3ae88e992d61cd50 >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 00:30:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13670 for freebsd-ports-outgoing; Wed, 29 Apr 1998 00:30:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13617; Wed, 29 Apr 1998 00:30:02 -0700 (PDT) (envelope-from gnats) Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA13424 for ; Wed, 29 Apr 1998 00:28:40 -0700 (PDT) (envelope-from koshy@india.hp.com) Received: from postbox.india.hp.com (postbox.india.hp.com [15.10.45.1]) by palrel3.hp.com (8.8.5/8.8.5tis) with ESMTP id AAA09316 for ; Wed, 29 Apr 1998 00:28:26 -0700 (PDT) Received: from localhost by postbox.india.hp.com with ESMTP (1.39.111.2/16.2) id AA074494717; Wed, 29 Apr 1998 12:55:17 +0530 Message-Id: <199804290728.AAA09316@palrel3.hp.com> Date: Wed, 29 Apr 1998 12:55:16 +0530 From: A Joseph Koshy Reply-To: koshy@india.hp.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6449: New port for `sgrep' Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6449 >Category: ports >Synopsis: New port for `sgrep': a grep for structured text >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 29 00:30:01 PDT 1998 >Last-Modified: >Originator: Joseph Koshy >Organization: HPISO B >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD 2.2-STABLE >Description: A new port for `sgrep': a grep for structured text like SGML. >How-To-Repeat: Uencoded tar.gz file of the port is enclosed. >Fix: begin 664 sgrep.tar.gz M'XL(`&+81C4``^U:;6\:.1#.5_PK1DJD)B*[[,(N!-14(0E-:2")`%WO0Z76 M+%YVR[Z==VF2J_IO[X?<>%]X27J75BJ^YFQG7C*6539V2C` MT!H-$W8`](:IK3X+:`!ULZJ;9LVLUU"M-?3J#IB;[5:&>9Q0#K`S"V/G_E_* M/:7_11&G_N_3&;-=CVW&AJYI];KQC_[7==W,_6\TJGH=)57#J.V`MIGNK.-_ M[O]=N&*W$(4\B<$*/8]9B1L&X.<3`NR0MZ"4SA*R"[\Q'@LU9W_,781EGCGA'Y:H_0R'/9&?M4>?B>M#M#(]+";M+(AY: MI-\>CCJ##\/N2(CM)&I5*OBI6K'J,"]V@YFKVFXEFH\KP]!.;BEGE5YH4:\R M3)<#-M"]&N&[,S@N/>XJJJ_TXU+6#54GV._KSXQS=\(@<1BX`=$6*>U]Z5X-1^U>[\/-X/IBT.Y_A;TO[P:7P\'9 MUTIJ"7_?##JON[]_K8S=8+4&]N=1:55'"2J**CX-Q%M?K7?>'K77*E(_\IB: MUN?6BKW8$4.4RPDAJAM8WAS_W)?C>***V:/ZLU?DOY[,$C^,C/\CFE@.BS>4 M!WQ__#<:9M44_%\S9/S?"M;]GSX52G^NC:?B?ZW16/@?78\20Q/^E_%_\U`4 M!8KL3U%*[S`^%4&[VM*.6J:91>]RN;PH]Z!456L5,?[D!!1=.]1U*&>/DQ," MNP3P`T:.&P.^;AW&LSC)[I@U3^@8TXQIR&*BG':OSKL#.(;*/.85+XW(&.HJ MI+S0K,=`$$F%:"X+D)X[YI3?@^AD#!BR(/*HA9W=ST/7`5%ZW=-'-K`>*2\4 M#\+>THCH,X;0.?4@HM.BTQAC7W=[G?46BVA;Q&)27A9;MO^HU)JI+!H#!N(T M$TNMP>"L:&4_Z_#!(BQCY:X-]^$<+!J\2!9I"(V!AV&2:GQWZB1PF^J3$.:Q M,(5.$64R.ZD/#3/U(3X:J0LMC]&@1:"D8$H M)2O*';*WGSDN[Z10.7XX@09.JV_H\FHB==G/Q^M@4:=N&*OB\B)UPMF5?U>Y MU8+U)`;[+)I]D-CL9\-X(#.6;_+_^.?:>(+_P6C4'\1_0ZMIDO^W`<'_^:)[ M1/_5>LO0EO2?%_M&H17V;^I(&>7T4Q#'>_MT[\UUOU,IUM[A>_N&0,C!M<%- M8(*D)KB(W;EQ:%*J7=N;9"6`!A-!H4'6 MGB!3W+;Y0NJY`5/AW+5MI-D@@3%SZ&8());:U)FYIEV'JSVAS;E!E'^I%U MU*Q7Z5%3:SP#\I,H\K_9=(-W0#]P_V-HFMC_ZT9=E_R_#2S]?W;=[W>N1ANP M\23_U_7%_5]Z%J173=.4_+\-M.&CF`$OQ$4/Q`F?6\F#39BXZGU;^K%^L>TKU9+S_^K\OQW*_@89\M_ M?V7M"\F!.*JED(2AEU$#H]QRW&":,4-^PAI,"'Y+&%\HL!E&_1CFL1`5C5(/ M+.Z*;;UI##ZU>%BTTS=40M*[6;A%77[+#./[%B&EMS1P MX2VELUGHT4-@/G6]EA"JA?!DY=:7E&[8;$;ATO4BYOV%>_J@J`.I1LTT5&A6 M*P(A"ER*64``7G[*KH6IY:LAG[XBORHO+M?_3:\[W$3T_X[X;QK+__]H9/=_ MICS_VPK$]4IV_KY^Q__P:@(WA;_J%)>0D)"0D)"0D)"0D)"0D)"0D)"0D)"0 =D)"0D)"0D)"0D)"0D)"0D)!X5O@;Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 00:37:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14878 for freebsd-ports-outgoing; Wed, 29 Apr 1998 00:37:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA14788; Wed, 29 Apr 1998 00:36:50 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id JAA00401; Wed, 29 Apr 1998 09:41:36 +0200 (MEST) (envelope-from kuku) Message-ID: <19980429094135.18643@gil.physik.rwth-aachen.de> Date: Wed, 29 Apr 1998 09:41:35 +0200 From: Christoph Kukulies To: Stefan Esser Cc: Christoph Kukulies , freebsd-ports@freefall.freebsd.org Subject: Re: kdenetwork - mimlib ? References: <199804271011.MAA00806@gilberto.physik.RWTH-Aachen.DE> <19980427235304.42014@mi.uni-koeln.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <19980427235304.42014@mi.uni-koeln.de>; from Stefan Esser on Mon, Apr 27, 1998 at 11:53:04PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 27, 1998 at 11:53:04PM +0200, Stefan Esser wrote: > On 1998-04-27 12:11 +0200, Christoph Kukulies wrote: > > > > Any clues where mimelib/string.h etc. are located? > > In kdesupport ... Ah, I see. ports/converters/kdesupport. That wasn't there. I overlooked that this was required. Just wondering why make or make install didn't ask for it first. > > > %make > > >> Checksum OK for kdenetwork-Beta3-1.src.tar.gz. > > ===> Building for kdenetwork-3.1b > > make all-recursive > > Making all in kmail > > Making all in pics > > Making all in toolbar > > Making all in doc > > g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/local/include -I/usr/X11R6/include/X11/qt -I/usr/X11R6/include -O2 -Wall -c kmmainwin.cpp > > In file included from kmmainwin.cpp:11: > > kmmessage.h:7: mimelib/string.h: No such file or directory > > In file included from kmcomposewin.h:18, > > from kmmainwin.cpp:17: > > kmmsgpart.h:7: mimelib/string.h: No such file or directory > > In file included from kmmainwin.cpp:22: > > kmsender.h:7: mimelib/smtp.h: No such file or directory > > kmsender.h:8: mimelib/string.h: No such file or directory > > kmsender.h:9: mimelib/utility.h: No such file or directory > > *** Error code 1 > > Hmmm, those include files are listed in kdesupport/pkg/PLIST, > and the LIB_DEPENDS line in kdenetwork's Makefile should have > built and installed kdesupport. > > Do you happen to have some old version of MIMELIB installed, > without the header files (which should have gone into > /usr/local/include/mimelib/*.h) ? > > Regards, STefan -- --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 01:00:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19568 for freebsd-ports-outgoing; Wed, 29 Apr 1998 01:00:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19505; Wed, 29 Apr 1998 01:00:04 -0700 (PDT) (envelope-from gnats) Received: from punky.snu.ac.kr (punky.snu.ac.kr [147.46.59.58]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA18794 for ; Wed, 29 Apr 1998 00:56:40 -0700 (PDT) (envelope-from pwd@punky.snu.ac.kr) Received: (from root@localhost) by punky.snu.ac.kr (8.8.8/8.8.7) id QAA08564; Wed, 29 Apr 1998 16:56:09 +0900 (KST) (envelope-from pwd) Message-Id: <199804290756.QAA08564@punky.snu.ac.kr> Date: Wed, 29 Apr 1998 16:56:09 +0900 (KST) From: junker@jazz.snu.ac.kr Reply-To: junker@jazz.snu.ac.kr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6450: port upgrade: korean/hanterm-xf86 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6450 >Category: ports >Synopsis: port upgrade: korean/hanterm-xf86 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 29 01:00:01 PDT 1998 >Last-Modified: >Originator: CHOI Junho >Organization: NARAE, CS Dept., Seoul National Univ., ROK >Release: FreeBSD 2.2.6-BETA i386 >Environment: FreeBSD punky.snu.ac.kr 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Tue Apr 21 16:15:35 KST 1998 pwd@punky.snu.ac.kr:/usr/src/sys/compile/PUNKY i386 >Description: Port upgrade(korean/hanterm-xf86) >How-To-Repeat: >Fix: Apply the following diffs: diff -uNr /usr/ports/korean/hanterm-xf86/Makefile hanterm-xf86/Makefile --- /usr/ports/korean/hanterm-xf86/Makefile Sun Mar 29 13:01:12 1998 +++ hanterm-xf86/Makefile Wed Apr 29 16:55:13 1998 @@ -1,13 +1,13 @@ # New ports collection makefile for: hanterm-xf86 -# Version required: hanterm-xf331-p12 +# Version required: hanterm-xf331-p13 # Date created: 22 Mar 1997 # Whom: CHOI Junho # # $Id: Makefile,v 1.4 1998/03/28 14:39:28 steve Exp $ # -DISTNAME= hanterm-xf331-p12 -PKGNAME= ko-hanterm-xf-3.3.1.12 +DISTNAME= hanterm-xf331-p13 +PKGNAME= ko-hanterm-xf-3.3.1.13 CATEGORIES= korean x11 MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/incoming/ diff -uNr /usr/ports/korean/hanterm-xf86/files/md5 hanterm-xf86/files/md5 --- /usr/ports/korean/hanterm-xf86/files/md5 Sun Mar 29 13:01:12 1998 +++ hanterm-xf86/files/md5 Wed Apr 29 16:47:32 1998 @@ -1 +1 @@ -MD5 (hanterm-xf331-p12.tar.gz) = 18d34f2c585306ae6d2c101ecdb1fbee +MD5 (hanterm-xf331-p13.tar.gz) = 211f0115412aa3db98d77bec8ef72840 >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 01:11:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21733 for freebsd-ports-outgoing; Wed, 29 Apr 1998 01:11:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@206-18-115-42.la.inreach.net [206.18.115.42]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA21688; Wed, 29 Apr 1998 01:11:30 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id BAA07137; Wed, 29 Apr 1998 01:07:50 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199804281957.MAA18250@freefall.freebsd.org> Date: Wed, 29 Apr 1998 01:07:46 -0700 (PDT) Organization: Computer Help From: Donald Burr To: Satoshi Asami Subject: Re: ports/6442 Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- OK, I think I've got this thing just about ready to send now... My secret spy satellite informs me that on 28-Apr-98, Satoshi Asami wrote: > Synopsis: Update port graphics/gimp-devel to version 0.99.28 > > Responsible-Changed-From-To: asami->freebsd-ports > Responsible-Changed-By: asami > Responsible-Changed-When: Tue Apr 28 12:55:22 PDT 1998 > Responsible-Changed-Why: > Never mind. Too much work. > > (1) The port patches both configure.in and configure. It should be > one or the other. If it's the former, then USE_AUTOCONF should > be set. Fixed this. I am now patching only configure. > (2) It depends on xdelta but the configure phase says it can't find it. Finally tracked this one down. Interestingly enough, this problem WASN'T where we were expecting it (i.e. it WASN'T in my port). gimp's configure tests for xdelta by searching for the xd_checkin and xd_checkout in - -lxdelta. I checked my copy of /usr/local/lib/libxdelta.a and .so.*, but no xd_checkin or xd_checkout was in there. So I looked at the xdelta port. Apparently, it requires gdbm, but the xdelta configure script wasn't finding it, and hence parts of xdelta weren't being built (guess which parts?). So I fixed up the xdelta port, and it now builds everything, including the xd_check{in,out}. And now GIMP detects -lxdelta properly. I'll be submitting the patched xdelta port in another PR in a few minutes. I'll also be re-submitting my GIMP port, because (aside from the patch I mentioned above) it apparently came with a few new scripts and plug-ins which I failed to add to the pkg/PLIST file. - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUbf0fjpixuAwagxAQGOpwP6AzI5n/2KaNfEap3kl7x8inZKxBNHEcn1 /aua9T6J2GFzMqoHdxzwB8DccbjjoRt7dPIo0br98QOMDDlOcIJ16lnhjRZ/g17e CRw2TgmxovqBUnt56w38pQyrXbfRMwCJtb+narBbInx++LU3YIO2ujExurlvbVvi pwbFacSGuI8= =U9Gf -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 01:20:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23342 for freebsd-ports-outgoing; Wed, 29 Apr 1998 01:20:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23297; Wed, 29 Apr 1998 01:20:03 -0700 (PDT) (envelope-from gnats) Received: from punky.snu.ac.kr (punky.snu.ac.kr [147.46.59.58]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA22704 for ; Wed, 29 Apr 1998 01:17:33 -0700 (PDT) (envelope-from pwd@punky.snu.ac.kr) Received: (from pwd@localhost) by punky.snu.ac.kr (8.8.8/8.8.7) id RAA00433; Wed, 29 Apr 1998 17:17:33 +0900 (KST) (envelope-from pwd) Message-Id: <199804290817.RAA00433@punky.snu.ac.kr> Date: Wed, 29 Apr 1998 17:17:33 +0900 (KST) From: junker@jazz.snu.ac.kr Reply-To: junker@jazz.snu.ac.kr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6452: port upgrade: korean/hanterm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6452 >Category: ports >Synopsis: port upgrade: korean/hanterm >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 29 01:20:02 PDT 1998 >Last-Modified: >Originator: CHOI Junho >Organization: NARAE, CS Dept., Seoul National Univ., ROK >Release: FreeBSD 2.2.6-STABLE i386 >Environment: FreeBSD punky.snu.ac.kr 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Tue Apr 21 16:15:35 KST 1998 pwd@punky.snu.ac.kr:/usr/src/sys/compile/PUNKY i386 >Description: Port upgrade(korean/hanterm) >How-To-Repeat: >Fix: Apply the following diffs: diff -uNr /usr/ports/korean/hanterm/Makefile hanterm/Makefile --- /usr/ports/korean/hanterm/Makefile Tue Mar 17 02:40:53 1998 +++ hanterm/Makefile Wed Apr 29 17:05:16 1998 @@ -1,20 +1,21 @@ -# New ports collection makefile for: hanterm304beta6p1 -# Version required: 3.04beta6p1 +# New ports collection makefile for: hanterm3.04 +# Version required: 3.04beta7 # Date created: 12 Mar 1997 # Whom: CHOI Junho # # $Id: Makefile,v 1.3 1998/03/16 07:17:40 steve Exp $ # -DISTNAME= hanterm304beta6p1 -PKGNAME= ko-hanterm-3.04b6.1 +DISTNAME= hanterm304beta7 +PKGNAME= ko-hanterm-3.04b7 CATEGORIES= korean x11 -MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ +MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/incoming/hantermbeta7/ \ + ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ ftp://ftp.kreonet.re.kr/pub/hangul/cair-archive/terminal/hanterm/hanterm304beta/ MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/korean/johab:${PORTSDIR}/korean/johabfonts +RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/misc/johabm16.pcf.gz:${PORTSDIR}/korean/johabfonts USE_IMAKE= yes NO_INSTALL_MANPAGES= yes diff -uNr /usr/ports/korean/hanterm/files/md5 hanterm/files/md5 --- /usr/ports/korean/hanterm/files/md5 Tue Mar 17 02:40:53 1998 +++ hanterm/files/md5 Wed Apr 29 17:05:46 1998 @@ -1 +1 @@ -MD5 (hanterm304beta6p1.tar.gz) = c6274b0abdd913b8bf007fbf12b77c93 +MD5 (hanterm304beta7.tar.gz) = d604ef46f8b3e73fc25e81adc8f6fc6d >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 01:23:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23900 for freebsd-ports-outgoing; Wed, 29 Apr 1998 01:23:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from jazz.snu.ac.kr (jazz.snu.ac.kr [147.46.59.52]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA23741; Wed, 29 Apr 1998 01:22:13 -0700 (PDT) (envelope-from junker@jazz.snu.ac.kr) Received: (from junker@localhost) by jazz.snu.ac.kr (8.8.8/8.8.8) id RAA13038; Wed, 29 Apr 1998 17:18:14 +0900 (KST) To: FreeBSD-gnats@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/6450: port upgrade: korean/hanterm-xf86 References: <199804290800.BAA19479@hub.freebsd.org> From: CHOI Junho Date: 29 Apr 1998 17:18:14 +0900 In-Reply-To: FreeBSD-gnats@FreeBSD.ORG's message of Wed, 29 Apr 1998 01:00:02 -0700 (PDT) Message-ID: Lines: 51 X-Mailer: Gnus v5.5/Emacs 20.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "FreeBSD-gnats" == FreeBSD-gnats writes: > Category: ports Responsible: freebsd-ports Synopsis: port > upgrade: korean/hanterm-xf86 Arrival-Date: Wed Apr 29 01:00:01 > PDT 1998 I did a big mistake. Please take it as a new diff: diff -uNr /usr/ports/korean/hanterm/Makefile hanterm/Makefile --- /usr/ports/korean/hanterm/Makefile Tue Mar 17 02:40:53 1998 +++ hanterm/Makefile Wed Apr 29 17:05:16 1998 @@ -1,20 +1,21 @@ -# New ports collection makefile for: hanterm304beta6p1 -# Version required: 3.04beta6p1 +# New ports collection makefile for: hanterm3.04 +# Version required: 3.04beta7 # Date created: 12 Mar 1997 # Whom: CHOI Junho # # $Id: Makefile,v 1.3 1998/03/16 07:17:40 steve Exp $ # -DISTNAME= hanterm304beta6p1 -PKGNAME= ko-hanterm-3.04b6.1 +DISTNAME= hanterm304beta7 +PKGNAME= ko-hanterm-3.04b7 CATEGORIES= korean x11 -MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ +MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/incoming/hantermbeta7/ \ + ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ ftp://ftp.kreonet.re.kr/pub/hangul/cair-archive/terminal/hanterm/hanterm304beta/ MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/korean/johab:${PORTSDIR}/korean/johabfonts +RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/misc/johabm16.pcf.gz:${PORTSDIR}/korean/johabfonts USE_IMAKE= yes NO_INSTALL_MANPAGES= yes diff -uNr /usr/ports/korean/hanterm/files/md5 hanterm/files/md5 --- /usr/ports/korean/hanterm/files/md5 Tue Mar 17 02:40:53 1998 +++ hanterm/files/md5 Wed Apr 29 17:05:46 1998 @@ -1 +1 @@ -MD5 (hanterm304beta6p1.tar.gz) = c6274b0abdd913b8bf007fbf12b77c93 +MD5 (hanterm304beta7.tar.gz) = d604ef46f8b3e73fc25e81adc8f6fc6d -- ----Cool FreeBSD!----MSX Forever!---J.U.N.K.E.R/Beat Snatchers!---- CHOI Junho http://jazz.snu.ac.kr/~junker Distributed Computing System Lab,CS Dept.,Seoul National Univ., ROK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 02:20:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA04290 for freebsd-ports-outgoing; Wed, 29 Apr 1998 02:20:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA04280; Wed, 29 Apr 1998 02:20:36 -0700 (PDT) (envelope-from ache@FreeBSD.org) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA22100; Wed, 29 Apr 1998 02:18:50 -0700 (PDT) Date: Wed, 29 Apr 1998 02:18:50 -0700 (PDT) Message-Id: <199804290918.CAA22100@freefall.freebsd.org> To: ache@FreeBSD.ORG, ache@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4127 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: netscape-3.01: get rid of bogus error message Responsible-Changed-From-To: ache->freebsd-ports Responsible-Changed-By: ache Responsible-Changed-When: Wed Apr 29 02:17:09 PDT 1998 Responsible-Changed-Why: I am not port maintainer anymore To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 03:17:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA16112 for freebsd-ports-outgoing; Wed, 29 Apr 1998 03:17:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA16107 for ; Wed, 29 Apr 1998 03:17:32 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id MAA00991 for freebsd-ports@freefall.cdrom.com; Wed, 29 Apr 1998 12:22:20 +0200 (MEST) (envelope-from kuku) Date: Wed, 29 Apr 1998 12:22:20 +0200 (MEST) From: Christoph Kukulies Message-Id: <199804291022.MAA00991@gilberto.physik.RWTH-Aachen.DE> To: freebsd-ports@freefall.FreeBSD.org Subject: converters/kdesupport libqt configure problem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I hardly dare to ask (because I'm trying to use kde under 2.2.5-R and my environment may be not -current) but I still have problems doing a make in /usr/ports/converters/kdesupport. configure exits with QT-1.31 not found when it runs the test compile/link on a small program with -I/usr/X11R6/include/X11/qt (which is there) and -lqt (which isn't there, it says). But I installed QT expressively manually before and the shared libs are there. A plain libqt.a isn't there though and I'm not so familar with the linker syntax when linking shared libs. Is -lqt the same for linking shared or with a .a lib? Anyway, it's a little bit strange. QT-1.31 is definitely there but configure in kdesupport still barfs. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 04:01:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA25172 for freebsd-ports-outgoing; Wed, 29 Apr 1998 04:01:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA25107; Wed, 29 Apr 1998 04:01:18 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA23594; Wed, 29 Apr 1998 03:59:31 -0700 (PDT) Date: Wed, 29 Apr 1998 03:59:31 -0700 (PDT) Message-Id: <199804291059.DAA23594@freefall.freebsd.org> To: koshy@india.hp.com, tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6449 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port for `sgrep': a grep for structured text State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Wed Apr 29 03:58:54 PDT 1998 State-Changed-Why: Imported, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 05:34:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16969 for freebsd-ports-outgoing; Wed, 29 Apr 1998 05:34:00 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from callmedia.se ([193.14.252.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16918; Wed, 29 Apr 1998 05:33:35 -0700 (PDT) (envelope-from robert@callmedia.se) Received: (from smap@localhost) by callmedia.se (8.7.5/8.7.3) id OAA05864; Wed, 29 Apr 1998 14:12:27 +0200 (MET DST) X-Authentication-Warning: gw.callmedia.se: smap set sender to using -f Received: from unknown(192.168.16.31) by gw.callmedia.se via smap (V1.3) id sma005862; Wed Apr 29 14:11:56 1998 Message-ID: <35471D4B.E347A427@callmedia.se> Date: Wed, 29 Apr 1998 14:30:03 +0200 From: Robert Lindgren X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-971208-SNAP i386) MIME-Version: 1.0 To: se@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: kdeutils-4.1b Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org RL [FreeBSD-current/ports/misc/kdeutils][18]:>make ===> kdeutils-4.1b is marked as broken: package. What's wrong? is the other ports in it;s way? Keep up the good work Best regards Robert Lindgren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 07:24:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11321 for freebsd-ports-outgoing; Wed, 29 Apr 1998 07:24:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11289; Wed, 29 Apr 1998 07:24:14 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA19461; Wed, 29 Apr 1998 07:22:26 -0700 (PDT) Date: Wed, 29 Apr 1998 07:22:26 -0700 (PDT) Message-Id: <199804291422.HAA19461@freefall.freebsd.org> To: phk@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: pending/6451 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix port misc/xdelta to properly detect gdbm Responsible-Changed-From-To: gnats-admin->ports Responsible-Changed-By: phk Responsible-Changed-When: Wed Apr 29 07:21:56 PDT 1998 Responsible-Changed-Why: ports issue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 07:25:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11488 for freebsd-ports-outgoing; Wed, 29 Apr 1998 07:25:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11305; Wed, 29 Apr 1998 07:24:38 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA19529; Wed, 29 Apr 1998 07:22:50 -0700 (PDT) Date: Wed, 29 Apr 1998 07:22:50 -0700 (PDT) Message-Id: <199804291422.HAA19529@freefall.freebsd.org> To: phk@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: pending/6453 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade port graphics/gimp-devel to 0.99.28 Responsible-Changed-From-To: gnats-admin->ports Responsible-Changed-By: phk Responsible-Changed-When: Wed Apr 29 07:22:32 PDT 1998 Responsible-Changed-Why: ports issue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 07:48:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18234 for freebsd-ports-outgoing; Wed, 29 Apr 1998 07:48:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA17967; Wed, 29 Apr 1998 07:47:41 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA20237; Wed, 29 Apr 1998 07:45:53 -0700 (PDT) Date: Wed, 29 Apr 1998 07:45:53 -0700 (PDT) Message-Id: <199804291445.HAA20237@freefall.freebsd.org> To: phk@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: pending/6430 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: trafshow 2.0 (port) can't be compiled Responsible-Changed-From-To: gnats-admin->ports Responsible-Changed-By: phk Responsible-Changed-When: Wed Apr 29 07:44:32 PDT 1998 Responsible-Changed-Why: ->ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 08:19:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA24684 for freebsd-ports-outgoing; Wed, 29 Apr 1998 08:19:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA24508; Wed, 29 Apr 1998 08:18:48 -0700 (PDT) (envelope-from wosch@cs.tu-berlin.de) Received: from freno.cs.tu-berlin.de (wosch@freno.cs.tu-berlin.de [130.149.27.28]) by mail.cs.tu-berlin.de (8.8.8/8.8.8) with ESMTP id RAA28309; Wed, 29 Apr 1998 17:13:35 +0200 (MET DST) Received: (from wosch@localhost) by freno.cs.tu-berlin.de (8.8.8/8.8.8) id RAA15487; Wed, 29 Apr 1998 17:13:34 +0200 (MET DST) Message-ID: <19980429171334.A15425@freno.cs.tu-berlin.de> Date: Wed, 29 Apr 1998 17:13:34 +0200 From: Wolfram Schneider To: "Amjad R. Alsharif" , wosch@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: Re: MajorDomo Package References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: ; from Amjad R. Alsharif on Tue, Apr 28, 1998 at 01:08:23PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-04-28 13:08:23 +0300, Amjad R. Alsharif wrote: > I am trying to download MajorDomo pakage to be installed on > freeBSD 2.5.5, but I keep on getting that the file does not exist. > Please, advice Aehm, sorry, there is no majordomo packages. You must build majordomo interactive with the sources. -- Wolfram Schneider http://www.freebsd.org/~wosch/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 08:27:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26532 for freebsd-ports-outgoing; Wed, 29 Apr 1998 08:27:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from unix.tfs.net (as1-p9.tfs.net [139.146.210.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26526 for ; Wed, 29 Apr 1998 08:27:38 -0700 (PDT) (envelope-from jbryant@unix.tfs.net) Received: (from jbryant@localhost) by unix.tfs.net (8.8.8/8.8.5) id KAA09072 for freebsd-ports@freebsd.org; Wed, 29 Apr 1998 10:27:28 -0500 (CDT) From: Jim Bryant Message-Id: <199804291527.KAA09072@unix.tfs.net> Subject: what happened to top? To: freebsd-ports@FreeBSD.ORG Date: Wed, 29 Apr 1998 10:27:28 -0500 (CDT) Reply-to: jbryant@unix.tfs.net X-Windows: R00LZ!@# MS-Winbl0wz DR00LZ!@# X-files: The truth is that the X-Files is fiction X-Republican: The best kind!!! X-Operating-System: FreeBSD 3.0-CURRENT #5: Sun Mar 8 12:29:10 CST 1998 X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org tried to run top y'day and it just keeps segfaulting. i'm running current from about a week ago. tried looking in /usr/ports for it, and found nothing. looked in packages on wcarchive, still didn't find it... whazzup? jim -- All opinions expressed are mine, if you | "I will not be pushed, stamped, think otherwise, then go jump into turbid | briefed, debriefed, indexed, or radioactive waters and yell WAHOO !!! | numbered!" - #1, "The Prisoner" ------------------------------------------------------------------------------ Inet: jbryant@tfs.net AX.25: kc5vdj@wv0t.#neks.ks.usa.noam grid: EM28pw voice: KC5VDJ - 6 & 2 Meters AM/FM/SSB, 70cm FM. http://www.tfs.net/~jbryant ------------------------------------------------------------------------------ HF/6M/2M: IC-706-MkII, 2M: HTX-212, 2M: HTX-202, 70cm: HTX-404, Packet: KPC-3+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 08:36:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA28211 for freebsd-ports-outgoing; Wed, 29 Apr 1998 08:36:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from jazz.snu.ac.kr (jazz.snu.ac.kr [147.46.59.52]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA28195 for ; Wed, 29 Apr 1998 08:36:32 -0700 (PDT) (envelope-from junker@jazz.snu.ac.kr) Received: (from junker@localhost) by jazz.snu.ac.kr (8.8.8/8.8.8) id AAA23091; Thu, 30 Apr 1998 00:32:32 +0900 (KST) To: ports@FreeBSD.ORG Subject: Someone who can help me for Korean ports? From: CHOI Junho Date: 30 Apr 1998 00:32:32 +0900 Message-ID: Lines: 33 X-Mailer: Gnus v5.5/Emacs 20.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I have made several ports for Korean-specific free(or not) software over 1 years. I always feel thankfully your port team and other people who helped me. Recently, I upgrade these ports regularly monitoring version upgrade, and make new ports for good software for Korean. Because I am only one who made ports for Korean in the Korea(except Korean ports derived from Japanese ports - like Wnn, mule, nvi-m17n - and thank who made these ports for us!), I am planning to change some structure of Korean ports. I send-pr'ed some of changing ports also. I think that in the FreeBSD ports team there are few who knows about Korean language. It is not a good thing for me. I need someone who helps my plan and give some advices to me, and if possible, commit these ports to FreeBSD ports tree. It is some kind of pleasure waiting to commit new ports I made, but I feel sometimes unhappy to see that my send-pr reports is not committed or looked at over months. I got messages from Bill "distfiles" Fenner(who checks the right distfile location?) that some of my ports locates bad distfile location, but I send-pr'ed for it 40 days ago! :< And people tends to commit some easy thing... (like just a 3-line minor version upgrade patch...) Maybe I am an impatient and greedy man who just think of myself... -- ----Cool FreeBSD!----MSX Forever!---J.U.N.K.E.R/Beat Snatchers!---- CHOI Junho http://jazz.snu.ac.kr/~junker Distributed Computing System Lab,CS Dept.,Seoul National Univ., ROK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 10:07:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA13921 for freebsd-ports-outgoing; Wed, 29 Apr 1998 10:07:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@206-18-112-181.la.inreach.net [206.18.112.181]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13913 for ; Wed, 29 Apr 1998 10:07:21 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id KAA07714 for freebsd-ports@freebsd.org; Wed, 29 Apr 1998 10:04:01 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 29 Apr 1998 10:04:01 -0700 (PDT) Organization: Computer Help From: Donald Burr To: FreeBSD Ports Subject: GNATS weirdness? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Over the past 24-36 hours or so, I have sent in several ports-related pr's (two on graphics/gimp-devel, one on graphics/xanim, one on misc/xdelta, one on graphics/aalib). I have only received confirmation messages for two of these (one of my graphics/gimp-devel ports, and graphics/xanim). The others seem to have gone to /dev/null, although I would swear that they went out of my machine OK (checking /var/log/maillog, I see successful transactions with hub.freebsd.org). The odd thing is, that I have seen successful send-pr submissions appear on the freebsd-ports list that were submitted AFTER mine that never showed up! Is GNATS having a nervous breakdown? Should I re-send the pr's that didn't get through? - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUddgfjpixuAwagxAQFvuwQAhvycv3vpdQAZmKMnca1RqWiWuLU+1nbk rNOqCXuAxsy0h8nR5Mn5/tMW0tm8hDrqwbOl3JqhPwYYRTTD1iv+5S0aZgZznsbL U5wYggvxQ0zgxxxFkpctQTmsPyFPvuwUh//i1hvy2K0vx4SHHFumir33um22uE/u 2mWQm5LPMUI= =UCb6 -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 10:28:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17974 for freebsd-ports-outgoing; Wed, 29 Apr 1998 10:28:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@199-170-160-75.la.inreach.net [199.107.160.75]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17968 for ; Wed, 29 Apr 1998 10:28:51 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id KAA08334 for freebsd-ports@freebsd.org; Wed, 29 Apr 1998 10:25:42 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 29 Apr 1998 10:25:40 -0700 (PDT) Organization: Computer Help From: Donald Burr To: FreeBSD Ports Subject: Never mind... (re: GNATS weirdness) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- I just used the GNATS web interface, and was able to pull up my "missing' PR's. So apparently GNATS got them. This still doesn't change the fact that I never received any acknowledgement messsages, nor did I receive the copy of the PR that is sent to ports@FreeBSD.org (yes, I am on the mailing list). I sure hope my ISP isn't losing e-mail. Can anyone tell me whether my address is generating bouncies? - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUdik/jpixuAwagxAQEhMAP/YLVQXhHgWwMQnoJLgWai21FjBifrP1zA RMGBpeEVZWTT7KSpusvrE7Pvcrl/14G/MUmCnfJLwbk0CUtFshagtMZ93FSkfzPO ON7lb5QY42R4VpT0n4DLRMiXoUIHMVkyKKahT3pmCiBKYBIt+Qik0LWPhRmFb8EK LMsJeMMmwCs= =Wd/h -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 10:57:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24706 for freebsd-ports-outgoing; Wed, 29 Apr 1998 10:57:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@199-170-160-75.la.inreach.net [199.107.160.75]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA24688 for ; Wed, 29 Apr 1998 10:57:25 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.8/8.8.7) id KAA09186 for freebsd-ports@freebsd.org; Wed, 29 Apr 1998 10:54:18 -0700 (PDT) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.2 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 29 Apr 1998 10:54:17 -0700 (PDT) Organization: Computer Help From: Donald Burr To: FreeBSD Ports Subject: please review the following ports in queue Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- I've got some ports that have been sitting in the queue for quite awhile. Perhaps some port committer who happens across some free time can take a look at these, pretty please? [with sugar on top even :) ] Thanks! ports/4985 NEW PORT: www/htmlpp htmlpp-3.9, a WWW authoring tool ports/4974 New port: YODL, Yet Oneother Document Language [category textproc] ports/6139 NEW PORT: x11/sharefonts, Shareware ATM fonts for X11 ports/4980 NEW PORT: netscape3-us (Netscape Nav with US encryption) [category www] ports/4986 NEW PORT: comms/atp - ATP 1.50, a BBS QWK packet reader ports/5175 NEW PORT: news/xmitBin, a binary files auto-poster - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUdpSPjpixuAwagxAQEh9wP/W32kLVr3n0L8uMX4ZykV23qkvT3qtbKr yMGSTua1neaE5EvaZzLg5/Ra/BEyhVWSuGb1Lje158Lkt/vU0als4kdRZmjlmsPu q/x1/JU7OfikixkY9ubkais6cavnch0BZpGACT9I2aujNXYs3c133o2QK7NAQenp vKLedt+Tcaw= =joKa -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 12:32:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA09889 for freebsd-ports-outgoing; Wed, 29 Apr 1998 12:32:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09696; Wed, 29 Apr 1998 12:31:42 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca36-42.ix.netcom.com [207.93.42.234]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id MAA27425; Wed, 29 Apr 1998 12:31:29 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id MAA10647; Wed, 29 Apr 1998 12:31:23 -0700 (PDT) Date: Wed, 29 Apr 1998 12:31:23 -0700 (PDT) Message-Id: <199804291931.MAA10647@silvia.HIP.Berkeley.EDU> To: robert@callmedia.se CC: se@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: <35471D4B.E347A427@callmedia.se> (message from Robert Lindgren on Wed, 29 Apr 1998 14:30:03 +0200) Subject: Re: FreeBSD Port: kdeutils-4.1b From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * RL [FreeBSD-current/ports/misc/kdeutils][18]:>make * ===> kdeutils-4.1b is marked as broken: package. * * What's wrong? PLIST is incorrect. * Keep up the good work Agreed. Go Stefan! :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 13:01:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA15575 for freebsd-ports-outgoing; Wed, 29 Apr 1998 13:01:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bachue.usc.unal.edu.co ([168.176.3.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA15231 for ; Wed, 29 Apr 1998 13:00:04 -0700 (PDT) (envelope-from giffunip@asme.org) Received: from giffuni.usc.unal.edu.co ([168.176.3.48]) by bachue.usc.unal.edu.co (Netscape Messaging Server 3.0) with SMTP id AAA1168; Wed, 29 Apr 1998 15:02:47 +0500 Message-ID: <35478583.167EB0E7@asme.org> Date: Wed, 29 Apr 1998 14:54:43 -0500 From: "Pedro F. Giffuni" Organization: U. Nacional de Colombia X-Mailer: Mozilla 3.01Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: jbryant@unix.tfs.net CC: ports@FreeBSD.ORG Subject: Re: what happened to top? References: <199804291527.KAA09072@unix.tfs.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org AFAIK top is part of the base OS now, and it was taken out of the ports tree. Ask in -current Jim Bryant wrote: > > tried to run top y'day and it just keeps segfaulting. i'm running > current from about a week ago. > > tried looking in /usr/ports for it, and found nothing. looked in > packages on wcarchive, still didn't find it... > > whazzup? > > jim > -- > All opinions expressed are mine, if you | "I will not be pushed, stamped, > think otherwise, then go jump into turbid | briefed, debriefed, indexed, or > radioactive waters and yell WAHOO !!! | numbered!" - #1, "The Prisoner" > ------------------------------------------------------------------------------ > Inet: jbryant@tfs.net AX.25: kc5vdj@wv0t.#neks.ks.usa.noam grid: EM28pw > voice: KC5VDJ - 6 & 2 Meters AM/FM/SSB, 70cm FM. http://www.tfs.net/~jbryant > ------------------------------------------------------------------------------ > HF/6M/2M: IC-706-MkII, 2M: HTX-212, 2M: HTX-202, 70cm: HTX-404, Packet: KPC-3+ > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 13:20:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19848 for freebsd-ports-outgoing; Wed, 29 Apr 1998 13:20:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19775; Wed, 29 Apr 1998 13:20:01 -0700 (PDT) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18320; Wed, 29 Apr 1998 13:13:00 -0700 (PDT) (envelope-from nobody) Message-Id: <199804292013.NAA18320@hub.freebsd.org> Date: Wed, 29 Apr 1998 13:13:00 -0700 (PDT) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6459: Update to the Cim (simula compiler) port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6459 >Category: ports >Synopsis: Update to the Cim (simula compiler) port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 29 13:20:01 PDT 1998 >Last-Modified: >Originator: Pedro F. Giffuni >Organization: U. Nal de Colombia >Release: 2.2.5-R >Environment: >Description: New version of cim is available, it adds shared libraries. I updated the port, but I'll not maintain it anymore. >How-To-Repeat: Attached diff. note that the "patches" directory disappeared. >Fix: diff -ruN /cdrom/ports/lang/cim/Makefile cim/Makefile --- /cdrom/ports/lang/cim/Makefile Sun Jul 20 22:14:35 1997 +++ cim/Makefile Tue Apr 28 21:21:39 1998 @@ -1,31 +1,21 @@ # New ports collection makefile for: cim -# Version required: 1.92 +# Version required: 2.10 # Date created: 21 Sept 1996 -# Whom: Pedro +# Whom: giffunip # # $Id: Makefile,v 1.4 1997/07/21 03:14:35 obrien Exp $ # -DISTNAME= cim-1.92 +DISTNAME= cim-2.10 CATEGORIES= lang -MASTER_SITES= ftp://ftp.ifi.uio.no/pub/cim/ \ - ${MASTER_SITE_SUNSITE} \ - ftp://ftp.fenk.wau.nl/pub/lang/simula/compilers/cim/ +MASTER_SITES= ftp://ftp.ifi.uio.no/pub/cim/ \ + ftp://ftp.fenk.wau.nl/pub/lang/simula/compilers/cim/ \ + ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= devel/lang/simula -MAINTAINER= pgiffuni@FPS.biblos.unal.edu.co +MAINTAINER= ports@FreeBSD.org -STRIP= -GNU_CONFIGURE= yes -ALL_TARGET= all check -MAN1= cim.1 - -post-install: - @strip ${PREFIX}/bin/cim - @strip $(PREFIX/bin/cimetags -.if defined(NOPORTDOCS) - @${RM} ${PREFIX}/doc/cim.ps - @${RM} ${PREFIX}/doc/cim.info -.endif +GNU_CONFIGURE= yes +MAN1= cim.1 .include diff -ruN /cdrom/ports/lang/cim/files/md5 cim/files/md5 --- /cdrom/ports/lang/cim/files/md5 Sat Apr 26 19:50:44 1997 +++ cim/files/md5 Wed Apr 22 21:58:11 1998 @@ -1 +1 @@ -MD5 (cim-1.92.tar.gz) = adad620669f9cde81d44a1c27fa7109e +MD5 (cim-2.10.tar.gz) = 936c1dc1932f44af353285f3d2a407b6 diff -ruN /cdrom/ports/lang/cim/install.txt cim/install.txt --- /cdrom/ports/lang/cim/install.txt Wed Dec 31 19:00:00 1969 +++ cim/install.txt Tue Apr 28 21:02:44 1998 @@ -0,0 +1,44 @@ +>> Checksum OK for cim-2.10.tar.gz. +===> Installing for cim-2.10 +Making install in src +/bin/sh ../mkinstalldirs /usr/local/bin + ../libtool --mode=install install -c -s -o bin -g bin -m 555 cim /usr/local/bin/cim +install -c -o bin -g bin -m 555 -s cim /usr/local/bin/cim +Making install in util +/bin/sh ../mkinstalldirs /usr/local/bin + install -c -o bin -g bin -m 555 cim2latex /usr/local/bin/cim2latex + install -c -o bin -g bin -m 555 cim2ps /usr/local/bin/cim2ps + install -c -o bin -g bin -m 555 cimindent /usr/local/bin/cimindent +Making install in doc +/bin/sh ../mkinstalldirs /usr/local/info + install -c -o bin -g bin -m 444 ./cim.info /usr/local/info/cim.info + install-info --info-dir=/usr/local/info /usr/local/info/cim.info +Making install in man +true +/bin/sh ../mkinstalldirs /usr/local/man/man1 + install -c -o bin -g bin -m 444 ./cim.1 /usr/local/man/man1/cim.1 +Making install in lib +/bin/sh ../mkinstalldirs /usr/local/lib +list='libcim-atr.a'; for p in $list; do if test -f $p; then echo " install -c -o bin -g bin -m 444 $p /usr/local/lib/$p"; install -c -o bin -g bin -m 444 $p /usr/local/lib/$p; else :; fi; done + install -c -o bin -g bin -m 444 libcim-atr.a /usr/local/lib/libcim-atr.a + : /usr/local/lib/libcim-atr.a +/bin/sh ../mkinstalldirs /usr/local/lib +../libtool --mode=install install -c -s -o bin -g bin -m 555 libcim.la /usr/local/lib/libcim.la +install -c -o bin -g bin -m 555 .libs/libcim.so.1.0 /usr/local/lib/libcim.so.1.0 +libtool: install: warning: no library stripping program +rm -f /usr/local/lib/libcim.so +(cd /usr/local/lib && ln -s libcim.so.1.0 libcim.so) +install -c -o bin -g bin -m 555 libcim.la /usr/local/lib/libcim.la +install -c -o bin -g bin -m 555 .libs/libcim.a /usr/local/lib/libcim.a +libtool: install: warning: no static library stripping program +chmod 644 /usr/local/lib/libcim.a +ranlib /usr/local/lib/libcim.a +PATH=$PATH:/sbin ldconfig -m /usr/local/lib +To link against installed libraries in LIBDIR, users may have to: + - add LIBDIR to their `LD_LIBRARY_PATH' environment variable + - use the `-LLIBDIR' linker flag +/bin/sh ../mkinstalldirs /usr/local/include + install -c -o bin -g bin -m 444 ./cim.h /usr/local/include/cim.h +Making install in test +===> Compressing manual pages for cim-2.10 +===> Registering installation for cim-2.10 diff -ruN /cdrom/ports/lang/cim/patches/patch-01 cim/patches/patch-01 --- /cdrom/ports/lang/cim/patches/patch-01 Wed Dec 4 03:01:30 1996 +++ cim/patches/patch-01 Wed Dec 31 19:00:00 1969 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sun Oct 6 03:46:08 1996 -+++ Makefile.in Tue Dec 3 21:36:05 1996 -@@ -45,7 +45,7 @@ - includedir = $(prefix)/include - - # Directory in which to install formated documentation. --docdir = $(prefix)/doc -+docdir = $(prefix)/share/doc/cim - - # Directory in which to install documentation info files. - infodir = $(prefix)/info diff -ruN /cdrom/ports/lang/cim/pkg/PLIST cim/pkg/PLIST --- /cdrom/ports/lang/cim/pkg/PLIST Wed Dec 4 03:04:24 1996 +++ cim/pkg/PLIST Tue Apr 28 20:40:46 1998 @@ -1,10 +1,12 @@ bin/cim bin/cim2latex bin/cim2ps -bin/cimetags -bin/simindent -lib/cim/libcim.a +bin/cimindent +lib/libcim-atr.a +lib/libcim.a +lib/libcim.la +lib/libcim.so +lib/libcim.so.1.0 include/cim.h man/man1/cim.1.gz info/cim.info -share/doc/cim/cim.ps >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 14:05:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28704 for freebsd-ports-outgoing; Wed, 29 Apr 1998 14:05:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA28676 for ; Wed, 29 Apr 1998 14:04:54 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id OAA10623; Wed, 29 Apr 1998 14:04:13 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: CHOI Junho cc: ports@FreeBSD.ORG Subject: Re: Someone who can help me for Korean ports? In-reply-to: Your message of "30 Apr 1998 00:32:32 +0900." Date: Wed, 29 Apr 1998 14:04:13 -0700 Message-ID: <10619.893883853@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I think that in the FreeBSD ports team there are few who knows about > Korean language. It is not a good thing for me. I need someone who > helps my plan and give some advices to me, and if possible, commit > these ports to FreeBSD ports tree. I agree, and I'm sorry that so many of your ports have been delayed for so long. I think it truly is because of the limited number of people available to test them. How comfortable are you with CVS? It would seem to me that the ideal answer is for you to become a committer and bring in your own ports directly. > Maybe I am an impatient and greedy man who just think of myself... Not at all. We need to make this process work for everyone or we're not doing our jobs. :) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 14:07:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29178 for freebsd-ports-outgoing; Wed, 29 Apr 1998 14:07:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29145 for ; Wed, 29 Apr 1998 14:06:53 -0700 (PDT) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id QAA08070; Wed, 29 Apr 1998 16:58:33 -0400 (EDT) Date: Wed, 29 Apr 1998 16:58:32 -0400 (EDT) From: Tim Vanderhoek To: Donald Burr cc: FreeBSD Ports Subject: Re: GNATS weirdness? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 29 Apr 1998, Donald Burr wrote: > that were submitted AFTER mine that never showed up! Is GNATS having a > nervous breakdown? Should I re-send the pr's that didn't get through? Maybe -- it wouldn't be the first time. If you don't see them in http://www.FreeBSD.ORG/cgi/send-pr.cgi/, then you probably can re-send them... If the originals did make it into the system, then it's probably easist to just remove their remnants. -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 14:07:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29246 for freebsd-ports-outgoing; Wed, 29 Apr 1998 14:07:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29236; Wed, 29 Apr 1998 14:07:33 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA22184; Wed, 29 Apr 1998 14:05:43 -0700 (PDT) Date: Wed, 29 Apr 1998 14:05:43 -0700 (PDT) Message-Id: <199804292105.OAA22184@freefall.freebsd.org> To: dburr@POBoxes.com, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6442 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port graphics/gimp-devel to version 0.99.28 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Apr 29 14:04:11 PDT 1998 State-Changed-Why: Committed. Thanks. Please correct pkg/PLIST before send-pr, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 14:10:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29839 for freebsd-ports-outgoing; Wed, 29 Apr 1998 14:10:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29771; Wed, 29 Apr 1998 14:10:12 -0700 (PDT) (envelope-from gnats) Received: from newport-2-6.quick.net (josh@newport-2-6.quick.net [207.212.160.222]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29080 for ; Wed, 29 Apr 1998 14:06:37 -0700 (PDT) (envelope-from josh@newport-2-6.quick.net) Received: (from josh@localhost) by newport-2-6.quick.net (8.8.8/8.8.8) id OAA19326; Wed, 29 Apr 1998 14:06:31 -0700 (PDT) (envelope-from josh) Message-Id: <199804292106.OAA19326@newport-2-6.quick.net> Date: Wed, 29 Apr 1998 14:06:31 -0700 (PDT) From: josh@quick.net Reply-To: josh@quick.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6460: New port: lang/bawk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6460 >Category: ports >Synopsis: New port: lang/bawk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 29 14:10:04 PDT 1998 >Last-Modified: >Originator: Josh Gilliam >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: This is Brian Kernighan's awk, which is "the one true awk". Awk scans input files for specified patterns and can perform an associated action when a line of the file matches the pattern. >How-To-Repeat: begin 644 kawk.tar.gz M'XL("'R41S4"`VMA=VLN=&%R`.U;>7?32!+/O]:GJ,D!3GQ)LN4+#)C$R61) M')YMAIVWS./)4ML6D25%+><8R'[VK>J6KS@PV9V-><.H>-!25_5155W5OVZ+ M<_/JO+#QN`0EM6(8L`&@W2FGI`*4#5VK:+I6KB!;U0QU`XR--="$1V8(L/') MYZ-OR?T1_R]*Y^3_P(RL$>.%[^]_K:0;R-:,2C'Q_]K]+\J1UZ?^RKFD5BO]B42UM@)KX_]$IE\N!Z_3SUK]373."YF0(4`.U5B\: M=54%K5:K*)E,1LJDWC,;FD$(.HH@OUK7*R1255Z]@IQ6*F4KD)'%JU<*I(BN M!R%CZ8%K1V;_7^ION1?\TG1WGTGNG6IH0'\R>)8J[%$)C0:$S/)#&_8**_*1 ME.^T]N$+='L=_/?@K-T[[+1:SY0<"3L#2#O\"ATO&$ZR,+3#^I3 MT>$%UG,6\9LQ]IGF64"FFE>SI'069+40)"$<+7V!(KMD@R4#7"PIOJ#UQ;*V M%\LJ7BRJ=K&BCU2FJ%=)&5D(96S?8V@%[$4CL8$?0OJ3>(-/\+P!KLDCY.-; M)A,/3/K'AOOTFW"A,YA//UCVVXRUQ"#[!LOS#Y9<$ZPZ1&I0+HJU*PO2`)<@ M^B+R;7`X\$D0^!S7?N1#GX$)0>@'+(2(\0C\`5R-S.@IQWKLV[%!3EDL6@6V M',]R)S:#YV,S&N5'+Y2JE+W[%3?0O#GJ=QG5,XQARYN%,L M#'$)6N=I^9X%N=`7!+%9RN&6>VE.@X:2W!)S*:20FUGASGFPU+%I?\(=)^;N M!?TL4#3N\=_EP]CQY,/%=&(H$TR?*?P7)BIT#2=>NNUCV--8?S'\9Z\W_HOJ M`O[32YJ(_XJ>Q/^ZXA_7JL!_2]%?U.IZ>1[]0N9N[-?JNC:/_9(J]E!9Q/@O M8N-``,!KN0/?`G,Y@\_(PAUVR"+7\7!K'#BXO\4@;PIC9B`J2V!P5X*Z!V&Z MAT"Z_P[1?0O0Q0"B5A$`0A2D//*NL5=VS:Q)Q-(F-A:]C;$2]:9!A5$D3!L3 MV%7AR1/X::8>EY)<2N[NDL7XA`>.Y?C>3V2NS/UM']`2)][J=,XZL.FX+ANB M2@.'(5[;3N_PW2QXYIC!A\T=_F%S$S%F%JYS+SQ2_+#9:YX(O;'+U^^.ZF"9 MWHS++A'V($#R)J[[\N5+.=#2$A![A*[+34*6TY,"#Q#Z1H,T:I"%S1T;!_:F M]J<^4*<]3%!]-HPKXS>L)ZQ\'^CGN[LK()_J)$J?@VHQ)&HIE@#IC]#Z"SHX M"^EF&)HWF,3!7$:2*5K'7^UHCL_O[4!:09X`M(4C`*XE_,?+9,087S%([GXE M[U'QSR@X4^]_5,Z(E3-JR\F`O,BE"??XS'60^I:ZR_I&L5,7%(ZF/KTSV2C6 M.'J02^<>7>WF03I7JU+G:O7OH/-&0C_H_1];]_V?49SCOW)9WO\9"?Y;%_Z+ M0E,`P,/0$0!0,T!#](<`SY@#0"FTB@!+M873GRI`D"Q$`K2"V].@%S<[1 M+YAG9O="#C+59^#`W;`/?-R90^4=6J<-Y)[@#2`/C.`F%.:M@`>X0D7)\N\2[K>:SQ%,-H@ M''ER(B=J^5[D>!,FQM\+T.9D%X'=`M>)Z/SI0W3E@[PDY*@$[2R%%7L$*]8( M5FP13R.(31$L&J+5_J8=YDWG9I@U$=>!)4UCY$9B+-V>IU.6=J[S+V=XC+HCI[FTX89S?9X*9K(#%XI6`^Y/]L_:* M<;XM2[I?WKDWI/''YCFC%_`]]P8]9))/\$G,G7`<9C8[7L"0WHPA/^P$==@A M$+`SQ$VVL>-_\'!5DSUI$$+1\FDP>XK$U!YKP[TO_YOKOO_32_/?_[2RO/]+ MSO]KR_^TE.D$GO=#9SC[&0@=@1G>T.NEA6N`J>CB/J`524I7Y_L`GNNT(F2P MJ(GXWX+>S\==Z)X=]MXW.ZT\U>S]2:++]=S^X4GSJ(O1E!LNOISARSX^!)/0 M&=R`9<7O0\N"W'O3=:4\52$O$S=\V8#MS_+Y%BOWXXK]6QKIUZ80[SO<]R!W MHT!<<6-B#_#K;&@;A?]R^(\\RA_O*Y`'__Y?UE5#X#\\-R:__Z_;_V/[D0S^ M1_D?RJ6[_J_H:I+_UT&G!P:D<0WDT0KYX>\(2:%L&D95T_HEK=(O56MVV6*J MJ:F6K;&:V5?+RW+<[7VG M_%^\AKN!4F>_SOE__VST]-6 MN_==XK]2G,9_N5BD^-=5K9C$_SKH=>B8'KQAH><,1Z;WE$-@1O09"W#+]#S' M&X+IV?3QC\4XIU?7](83<\B2]/!#Q?]!J[O?^3[[?[&LS^[_RN+[/\TH)_O_ M6J@W74NL@1VX`63",0U M`M!O.CQ@EC-PF#W-)EQD$?I6)&`A2HP5?#0Y]RW'C%#,M"+']W`XAM4@/@KR M!T!CBD^#QO*"FBJ4N,>\HBBY'"C_0+_`D>.ZCCF&>^@Y.>[5Q<2QSO,>BUXD M:6LU_D_C6]V-[Q+_FDIW_G'\ZT6)_ROE)/[705O09E<0^&'$P?)=E\E`G-[S M4S37`<0)80M^82$G;L@PGD)FU\E]M6I>U?.:AOP#C&6P0D8A79\&H%ZC'PH< M5_X\L`7O1_ZX?C=*EZ)X)62WL-GVL;V-#\H!'E/;S=-6(T5S>OOF2+[0#'.S MJ>PW>ZVCL\YQJ]M($5Y13IO=7JOSL7O=YRQ\7 MKD9^H8_QH*#\<;N'?UN=1FIY-HK2/OOXOO.F^^[UP3%R;QA'Z3>MP^,3G,;4 M;DKSY.1CK]DY:O5PHGE_$J%06VND4O)XI2BVGW,\7'NN6U=2VY^/V]T>M7G; M.3OJ-$]O8?LS#=+9ORV(YOC^MH.#_/.V,#NR+33#SI>:T!@+3>X<[A0E/_M? M"7UNY\G]^?%YDAL32BBAA!)***&$$DHHH8022BBAA!)***&$?ASZ#TA_L'`` #4``` ` end >Fix: ftp://ftp.freebsd.org/pub/FreeBSD/incoming/kawk.tar.gz MD5 (kawk.tar.gz) = 616161ffba0fe12fa8867d4dd0d781ba >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 14:27:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04135 for freebsd-ports-outgoing; Wed, 29 Apr 1998 14:27:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from unix.tfs.net (as1-p76.tfs.net [139.146.210.76]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03522 for ; Wed, 29 Apr 1998 14:25:19 -0700 (PDT) (envelope-from jbryant@unix.tfs.net) Received: (from jbryant@localhost) by unix.tfs.net (8.8.8/8.8.5) id QAA09632; Wed, 29 Apr 1998 16:24:40 -0500 (CDT) From: Jim Bryant Message-Id: <199804292124.QAA09632@unix.tfs.net> Subject: Re: what happened to top? In-Reply-To: <35478583.167EB0E7@asme.org> from "Pedro F. Giffuni" at "Apr 29, 98 02:54:43 pm" To: giffunip@asme.org (Pedro F. Giffuni) Date: Wed, 29 Apr 1998 16:24:40 -0500 (CDT) Cc: freebsd-ports@FreeBSD.ORG Reply-to: jbryant@unix.tfs.net X-Windows: R00LZ!@# MS-Winbl0wz DR00LZ!@# X-files: The truth is that the X-Files is fiction X-Republican: The best kind!!! X-Operating-System: FreeBSD 3.0-CURRENT #5: Sun Mar 8 12:29:10 CST 1998 X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org thanks... i should pay more attention to these things... In reply: > AFAIK top is part of the base OS now, and it was taken out of the ports > tree. Ask in -current > > > Jim Bryant wrote: > > > > tried to run top y'day and it just keeps segfaulting. i'm running > > current from about a week ago. > > > > tried looking in /usr/ports for it, and found nothing. looked in > > packages on wcarchive, still didn't find it... > > > > whazzup? jim -- All opinions expressed are mine, if you | "I will not be pushed, stamped, think otherwise, then go jump into turbid | briefed, debriefed, indexed, or radioactive waters and yell WAHOO !!! | numbered!" - #1, "The Prisoner" ------------------------------------------------------------------------------ Inet: jbryant@tfs.net AX.25: kc5vdj@wv0t.#neks.ks.usa.noam grid: EM28pw voice: KC5VDJ - 6 & 2 Meters AM/FM/SSB, 70cm FM. http://www.tfs.net/~jbryant ------------------------------------------------------------------------------ HF/6M/2M: IC-706-MkII, 2M: HTX-212, 2M: HTX-202, 70cm: HTX-404, Packet: KPC-3+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 14:40:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07368 for freebsd-ports-outgoing; Wed, 29 Apr 1998 14:40:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07298; Wed, 29 Apr 1998 14:40:09 -0700 (PDT) (envelope-from gnats) Date: Wed, 29 Apr 1998 14:40:09 -0700 (PDT) Message-Id: <199804292140.OAA07298@hub.freebsd.org> To: freebsd-ports Cc: From: Josh Gilliam Subject: Re: ports/6460 Reply-To: Josh Gilliam Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6460; it has been noted by GNATS. From: Josh Gilliam To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/6460 Date: Wed, 29 Apr 1998 14:36:05 -0700 >>Synopsis: New port: lang/bawk ^ k -- Josh Gilliam 5333 E Los Arboles Ave 1 714 633 6499 Orange CA 92869-4216 USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 16:01:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA27679 for freebsd-ports-outgoing; Wed, 29 Apr 1998 16:01:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA27472; Wed, 29 Apr 1998 16:00:53 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA23596; Wed, 29 Apr 1998 15:58:58 -0700 (PDT) Date: Wed, 29 Apr 1998 15:58:58 -0700 (PDT) Message-Id: <199804292258.PAA23596@freefall.freebsd.org> To: vanilla@MinJe.com.TW, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4870 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port p5-Gtk State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Apr 29 15:58:12 PDT 1998 State-Changed-Why: Committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 16:05:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA28659 for freebsd-ports-outgoing; Wed, 29 Apr 1998 16:05:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA28391; Wed, 29 Apr 1998 16:04:15 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23669; Wed, 29 Apr 1998 16:02:19 -0700 (PDT) Date: Wed, 29 Apr 1998 16:02:19 -0700 (PDT) Message-Id: <199804292302.QAA23669@freefall.freebsd.org> To: dburr@POBoxes.com, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5906 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gimp-devel and gtk, discrepancy in locations of header files State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Apr 29 16:00:19 PDT 1998 State-Changed-Why: Everything on the correct place now. thanks.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 16:10:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA29955 for freebsd-ports-outgoing; Wed, 29 Apr 1998 16:10:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29752; Wed, 29 Apr 1998 16:09:19 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA23792; Wed, 29 Apr 1998 16:07:26 -0700 (PDT) Date: Wed, 29 Apr 1998 16:07:26 -0700 (PDT) Message-Id: <199804292307.QAA23792@freefall.freebsd.org> To: slafla@home.com, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6427 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Many problems with ports/graphics/gimp-devel State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Apr 29 16:06:19 PDT 1998 State-Changed-Why: The current ports version is 0.99.28, and it can build. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 17:21:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14699 for freebsd-ports-outgoing; Wed, 29 Apr 1998 17:21:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.kt.rim.or.jp (root@mail.kt.rim.or.jp [202.247.130.53]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14605 for ; Wed, 29 Apr 1998 17:20:49 -0700 (PDT) (envelope-from kuriyama@sky.rim.or.jp) Received: from moon.opt.phys.waseda.ac.jp (ppp351.kt.rim.or.jp [202.247.140.51]) by mail.kt.rim.or.jp (8.8.5/3.4W3-rim1.1) with ESMTP id JAA11629; Thu, 30 Apr 1998 09:20:34 +0900 (JST) Received: from sky.rim.or.jp (earth [192.168.1.2]) by moon.opt.phys.waseda.ac.jp (8.8.7/3.5Wpl4/moon-0.9) with ESMTP id JAA02656; Thu, 30 Apr 1998 09:13:28 +0900 (JST) Message-ID: <3547C1F1.FDA1E431@sky.rim.or.jp> Date: Thu, 30 Apr 1998 09:12:33 +0900 From: Jun Kuriyama X-Mailer: Mozilla 4.04 [ja] (Win95; I) MIME-Version: 1.0 To: CHOI Junho CC: ports@FreeBSD.ORG Subject: Re: Someone who can help me for Korean ports? References: Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org CHOI Junho wrote: > I think that in the FreeBSD ports team there are few who knows about > Korean language. I think so, too. But I'll try these ports to commit. Please check result! BTW, I have a question. Should PR ports/3335 be replaced PR ports/6011? a [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1998/03/14] ports/6011 ports new port request And there is two ports in incoming about this PR. I should use newer one? o [1998/03/18] ports/6053 ports new port request: korean/hanIM incoming/hanIM-0.9-ports-980320.tar.gz incoming/hanIM-0.9-ports.tar.gz -- Jun Kuriyama // kuriyama@sky.rim.or.jp // kuriyama@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 17:23:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15047 for freebsd-ports-outgoing; Wed, 29 Apr 1998 17:23:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14891; Wed, 29 Apr 1998 17:22:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA24683; Wed, 29 Apr 1998 17:20:39 -0700 (PDT) Date: Wed, 29 Apr 1998 17:20:39 -0700 (PDT) Message-Id: <199804300020.RAA24683@freefall.freebsd.org> To: junker@jazz.snu.ac.kr, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/6054 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port upgrade: korean/hlatexpsfonts State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Wed Apr 29 17:19:58 PDT 1998 State-Changed-Why: Patch applied. Thanks. Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Wed Apr 29 17:19:58 PDT 1998 Responsible-Changed-Why: I committed this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 17:50:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19875 for freebsd-ports-outgoing; Wed, 29 Apr 1998 17:50:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19689; Wed, 29 Apr 1998 17:50:00 -0700 (PDT) (envelope-from jseger) Date: Wed, 29 Apr 1998 17:50:00 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199804300050.RAA19689@hub.freebsd.org> To: brett@peloton.physics.montana.edu, jseger, freebsd-ports Subject: Re: ports/4360 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port of Amaya-1.0b State-Changed-From-To: suspended-closed State-Changed-By: jseger State-Changed-When: Wed Apr 29 17:48:11 PDT 1998 State-Changed-Why: The submitter didn't submit a new port (it's been 6 months), and if he does decide to, a new PR should be opened since this is an old version anyway. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 17:54:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20532 for freebsd-ports-outgoing; Wed, 29 Apr 1998 17:54:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from paris.CS.Berkeley.EDU (paris.CS.Berkeley.EDU [128.32.34.47]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA20507 for ; Wed, 29 Apr 1998 17:54:47 -0700 (PDT) (envelope-from jmacd@paris.CS.Berkeley.EDU) Received: (from jmacd@localhost) by paris.CS.Berkeley.EDU (8.8.3/8.8.2) id RAA09762; Wed, 29 Apr 1998 17:54:36 -0700 (PDT) Message-ID: <19980429175435.39819@paris.CS.Berkeley.EDU> Date: Wed, 29 Apr 1998 17:54:35 -0700 From: Josh MacDonald To: "Vanill I. Shu" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: xdelta port References: <19980430035209.01995@MinJe.com.TW> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.89.1 In-Reply-To: <19980430035209.01995@MinJe.com.TW>; from Vanill I. Shu on Thu, Apr 30, 1998 at 03:52:09AM +0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I really think this is a shortcoming in the FreeBSD ports architecture. There are two options: 1. I patch the main distrbution to automatically include ${PREFIX}/include and ${PREFIX}/lib in the compile and link flags. 2. We patch only the FreeBSD port to do it. #1 is unacceptable. That's what the environment variables CFLAGS and LDFLAGS are for. #2 is more acceptable to me, but certainly unclean. In the port's Makefile we've declared that xdelta depends on gdbm. This is only a problem on FreeBSD because for some reason (perhaps others find it equally unacceptable, that's fine with me), gcc doesn't automatically search the local prefix (/usr/local, in this case). Since gcc isn't automatically searching this prefix, and the ports mechanism knows that xdelta depends on gdbm, it should insert the proper LDFLAGS and CFLAGS before building. Your patch doesn't work if I install a gdbm package in prefix A and then build xdelta with prefix B. I was always under the impression that the packages mechanism was designed to work with arbitrary prefixes. Since the package manager records the location of gdbm on installation, it can retrieve this information and provide the right linker flags. Also, version 0.19 is functionally equivalent to 0.18, I only released it to solve build problems on Windows and AIX, so we should focus on getting the current port to everyone's satisfaction before rushing off to import the newest version. Finally, the version number in the Makefile kept the same shared library version number (0.18) because the it is compatible with the previous release, so there's no need to change it. The program still builds thinking its version 0.19. So no, I don't like your patch, sorry. :) -josh Quoting Vanill I. Shu (vanilla@MinJe.com.TW): > yes.. > > here is my patch. could you review?.. > and on your xdelta-0.19, you forgot bump version on Makefile.am(in) > > diff -ruN xdelta.orig/Makefile xdelta/Makefile > --- xdelta.orig/Makefile Thu Apr 23 23:55:15 1998 > +++ xdelta/Makefile Thu Apr 30 03:36:35 1998 > @@ -1,12 +1,12 @@ > # New ports collection makefile for: xdelta > -# Version required: 0.18 > +# Version required: 0.19 > # Date created: Sun May 4 21:40:06 CDT 1997 > # Whom: jmacd > # > # $Id: Makefile,v 1.7 1998/04/23 07:08:10 jmacd Exp $ > # > > -DISTNAME= xdelta-0.18 > +DISTNAME= xdelta-0.19 > CATEGORIES= misc > MASTER_SITES= ftp://ftp.xcf.berkeley.edu/pub/jmacd/ > > @@ -15,9 +15,13 @@ > BUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm > > GNU_CONFIGURE= yup > +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ > + LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ > + INSTALL="/usr/bin/install -c" > + > # > # this seems to be necessary for libtool :( > -MAKE_ENV= CC=cc > +MAKE_ENV= CC=cc > MAN1= xdelta.1 > > .include > diff -ruN xdelta.orig/files/md5 xdelta/files/md5 > --- xdelta.orig/files/md5 Sun Apr 26 03:46:22 1998 > +++ xdelta/files/md5 Thu Apr 30 03:35:27 1998 > @@ -1 +1 @@ > -MD5 (xdelta-0.18.tar.gz) = e377988fc26f78c0cc60f31c3776d602 > +MD5 (xdelta-0.19.tar.gz) = fa415201d5fca8c0a0c1bf55012614ca > diff -ruN xdelta.orig/patches/patch-aa xdelta/patches/patch-aa > --- xdelta.orig/patches/patch-aa Thu Jan 1 08:00:00 1970 > +++ xdelta/patches/patch-aa Thu Apr 30 03:41:43 1998 > @@ -0,0 +1,11 @@ > +--- Makefile.in.orig Thu Apr 30 03:40:35 1998 > ++++ Makefile.in Thu Apr 30 03:40:49 1998 > +@@ -103,7 +103,7 @@ > + fakeglib.c \ > + partime.c > + > +-libxdelta_la_LDFLAGS = -version-info 0:18.0 > ++libxdelta_la_LDFLAGS = -version-info 0:19.0 > + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 > + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs > + CONFIG_HEADER = xdeltaconfig.h > diff -ruN xdelta.orig/pkg/PLIST xdelta/pkg/PLIST > --- xdelta.orig/pkg/PLIST Thu Apr 23 23:55:15 1998 > +++ xdelta/pkg/PLIST Thu Apr 30 03:44:16 1998 > @@ -1,8 +1,9 @@ > bin/xdelta > +include/fakeglib.h > include/xdelta.h > include/xdeltaconfig.h > -include/fakeglib.h > -lib/libxdelta.so.0.18.0 > -lib/libxdelta.la > lib/libxdelta.a > +lib/libxdelta.la > +lib/libxdelta.so > +lib/libxdelta.so.0.19.0 > man/man1/xdelta.1.gz > -- > > Even my heart has broken into pieces just for your sake, > I will be always waiting for you here with no regret. > > ¨ä¹ê, > ·R¤@­Ó¤H, ¥u¬O¤@ºØ¦Û§Ú§¹¦¨ªº°í«ù¦Ó¤w... > > Vanilla I. Shu \ ®}¤T®õ > vanilla@FreeBSD.ORG \ http://MinJe.com.TW/~vanilla -- -josh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 18:16:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24038 for freebsd-ports-outgoing; Wed, 29 Apr 1998 18:16:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from d183-205.uoregon.edu (d183-205.uoregon.edu [128.223.183.205]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24029 for ; Wed, 29 Apr 1998 18:16:33 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by d183-205.uoregon.edu (8.8.7/8.8.7) id SAA05782; Wed, 29 Apr 1998 18:16:33 -0700 (PDT) Message-ID: <19980429181632.42978@hydrogen.nike.efn.org> Date: Wed, 29 Apr 1998 18:16:32 -0700 From: John-Mark Gurney To: ports@FreeBSD.ORG Subject: reducing checksum check... Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was wondering if people would like it to only check the checksum when work/.extract_done doesn't exist? it seems strange to always checksum a package, even when your not going to use the source package durning the build... if people think this change should go in, I'm willing to create/commit the patch... -- John-Mark Gurney Modem Rev/FAX: +1 541 346 9237 Cu Networking P.O. Box 5693, 97405 Live in Peace, destroy Micro$oft, support free software, run FreeBSD Don't trust anyone you don't have the source for To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 18:17:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24104 for freebsd-ports-outgoing; Wed, 29 Apr 1998 18:17:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24097 for ; Wed, 29 Apr 1998 18:17:31 -0700 (PDT) (envelope-from Matthew.Thyer@dsto.defence.gov.au) Received: from exchsa1.dsto.defence.gov.au (exchsa1.dsto.defence.gov.au [131.185.2.94]) by digger1.defence.gov.au (8.7.5/8.7.3) with ESMTP id KAA02931 for ; Thu, 30 Apr 1998 10:45:37 +0930 (CST) Received: from fang.dsto.defence.gov.au ([131.185.2.5]) by exchsa1.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.1960.3) id J8D7XSR1; Thu, 30 Apr 1998 10:47:30 +0930 Received: from eddie.dsto.defence.gov.au (eddie.dsto.defence.gov.au [131.185.2.111]) by fang.dsto.defence.gov.au (8.8.5/8.8.5) with ESMTP id KAA03041 for ; Thu, 30 Apr 1998 10:47:26 +0930 (CST) Received: from dsto.defence.gov.au (localhost [127.0.0.1]) by eddie.dsto.defence.gov.au (8.8.8/8.8.5) with ESMTP id KAA02418 for ; Thu, 30 Apr 1998 10:47:25 +0930 (CST) Message-ID: <3547D124.26E0221@dsto.defence.gov.au> Date: Thu, 30 Apr 1998 10:47:24 +0930 From: Matthew Thyer Organization: Defence Science Technology Organisation X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: imap-4.1.BETA.tar.Z updated to version 10.224 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Uni Washington IMAP server has been updated to version 10.224. This happened on Mon Apr 27 11:44:00 1998 according to the time stamp on the file at the main ftp site. As usual this has been done without changing the name of the archive. # fetch ftp://ftp.cac.washington.edu/imap/imap-4.1.BETA.tar.Z Receiving imap-4.1.BETA.tar.Z: 1514 Kbytes 1551295 bytes transfered in 490.3 seconds (3.09 Kbytes/s) MD5 (distfiles/imap-4.1.BETA.tar.Z) = c389af8680b68236526a885371528bbe -- Matthew Thyer Phone: +61 8 8259 7249 Corporate Information Systems Fax: +61 8 8259 5537 Defence Science and Technology Organisation, Salisbury PO Box 1500 Salisbury South Australia 5108 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 18:20:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24679 for freebsd-ports-outgoing; Wed, 29 Apr 1998 18:20:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24604; Wed, 29 Apr 1998 18:20:10 -0700 (PDT) (envelope-from gnats) Date: Wed, 29 Apr 1998 18:20:10 -0700 (PDT) Message-Id: <199804300120.SAA24604@hub.freebsd.org> To: freebsd-ports Cc: From: "Pedro F. Giffuni" Subject: Re: ports/6459: Update to the Cim (simula compiler) port Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6459; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/6459: Update to the Cim (simula compiler) port Date: Wed, 29 Apr 1998 20:13:51 -0500 On the diff I also sent (accidentally) a file called build.txt that can be removed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 18:30:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26334 for freebsd-ports-outgoing; Wed, 29 Apr 1998 18:30:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26270; Wed, 29 Apr 1998 18:30:05 -0700 (PDT) (envelope-from gnats) Date: Wed, 29 Apr 1998 18:30:05 -0700 (PDT) Message-Id: <199804300130.SAA26270@hub.freebsd.org> To: freebsd-ports Cc: From: "Pedro F. Giffuni" Subject: Re: ports/6460: New port: lang/bawk Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6460; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org, josh@quick.net Cc: Subject: Re: ports/6460: New port: lang/bawk Date: Wed, 29 Apr 1998 20:22:40 -0500 James Raynard was planning to replace our gawk in the distribution with the one and only true awk: http://www.freebsd.org/~jraynard/source/ I am testing his patches..AFAIK he added some fixes from OpenBSD and Ache's international changes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 18:41:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28466 for freebsd-ports-outgoing; Wed, 29 Apr 1998 18:41:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA28281; Wed, 29 Apr 1998 18:40:21 -0700 (PDT) (envelope-from gnats) Date: Wed, 29 Apr 1998 18:40:21 -0700 (PDT) Message-Id: <199804300140.SAA28281@hub.freebsd.org> To: freebsd-ports Cc: From: "Pedro F. Giffuni" Subject: Re: ports/5776: New compression port: lzo Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5776; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/5776: New compression port: lzo Date: Wed, 29 Apr 1998 20:38:12 -0500 A new minor version was released but: 1) The known problem of the lack of shared libs is caused by a bug in /bin/sh and it doesn't seem a good idea to add a debendency on the pdksh just to build them. 2) The fast version requires an assembler guru. I suggest to suspend the port until both problems are fixed. If no one tracks it, please close the PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 18:50:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00981 for freebsd-ports-outgoing; Wed, 29 Apr 1998 18:50:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00826; Wed, 29 Apr 1998 18:50:17 -0700 (PDT) (envelope-from gnats) Received: from holly.dons.net.au (daniel.lnk.telstra.net [139.130.137.70]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA28353 for ; Wed, 29 Apr 1998 18:40:42 -0700 (PDT) (envelope-from darius@holly.dons.net.au) Received: (from darius@localhost) by holly.dons.net.au (8.8.8/8.8.5) id LAA01729; Thu, 30 Apr 1998 11:10:44 +0930 (CST) Message-Id: <199804300140.LAA01729@holly.dons.net.au> Date: Thu, 30 Apr 1998 11:10:44 +0930 (CST) From: "Daniel J. O'Connor" Reply-To: darius@holly.dons.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6461: Update to p5-DBD-Pg port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6461 >Category: ports >Synopsis: diff's to update the port to use version 0.72 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Apr 29 18:50:06 PDT 1998 >Last-Modified: >Originator: Daniel J. O'Connor >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: -current running PostgreSQL 6.3.2, with DBI v0.93 >Description: This diff makes the port use version 0.72.. The old version is described as 'ancient' by it's author :) And more to the point, it doesn't work with our version of DBI.. >How-To-Repeat: >Fix: Apply this diff.. *** Makefile.old Thu Apr 30 10:56:09 1998 --- Makefile Thu Apr 30 10:56:29 1998 *************** *** 1,13 **** # New ports collection makefile for: p5-DBD-Pg ! # Version required: 0.62 # Date created: June 17th 1997 # Whom: James FitzGibbon # # $Id: Makefile,v 1.4 1997/09/14 02:54:17 jfitz Exp $ # ! DISTNAME= DBD-Pg-0.62 ! PKGNAME= p5-DBD-Pg-0.62 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD --- 1,13 ---- # New ports collection makefile for: p5-DBD-Pg ! # Version required: 0.72 # Date created: June 17th 1997 # Whom: James FitzGibbon # # $Id: Makefile,v 1.4 1997/09/14 02:54:17 jfitz Exp $ # ! DISTNAME= DBD-Pg-0.72 ! PKGNAME= p5-DBD-Pg-0.72 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD *** files/md5.old Thu Apr 30 10:56:49 1998 --- files/md5 Thu Apr 30 10:57:39 1998 *************** *** 1 **** ! MD5 (DBD-Pg-0.62.tar.gz) = fbb6144ad32762d8dae71d40c7af10c5 --- 1 ---- ! MD5 (DBD-Pg-0.72.tar.gz) = 57c468529ad45b7f3a456618f08fd346 >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 19:06:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA04863 for freebsd-ports-outgoing; Wed, 29 Apr 1998 19:06:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA04787; Wed, 29 Apr 1998 19:05:39 -0700 (PDT) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA24988; Wed, 29 Apr 1998 19:03:46 -0700 (PDT) Date: Wed, 29 Apr 1998 19:03:46 -0700 (PDT) Message-Id: <199804300203.TAA24988@freefall.freebsd.org> To: dburr@POBoxes.com, asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports/6451 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix port misc/xdelta to properly detect gdbm State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Wed Apr 29 19:03:23 PDT 1998 State-Changed-Why: Patch applied, thanks. Gimp is now happy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 19:38:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11408 for freebsd-ports-outgoing; Wed, 29 Apr 1998 19:38:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11382 for ; Wed, 29 Apr 1998 19:38:26 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id MAA13249; Thu, 30 Apr 1998 12:08:09 +0930 (CST) Message-Id: <199804300238.MAA13249@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: John-Mark Gurney cc: ports@FreeBSD.ORG Subject: Re: reducing checksum check... In-reply-to: Your message of "Wed, 29 Apr 1998 18:16:32 MST." <19980429181632.42978@hydrogen.nike.efn.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 30 Apr 1998 12:08:09 +0930 From: "Daniel O'Connor" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > checksum a package, even when your not going to use the source package > durning the build... Yes.. This can be a pain when you are testing ports over NFS and they are large.. (Netscape comes to mind :) > if people think this change should go in, I'm willing to create/commit > the patch... Sounds OK to me if you are willing.. --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 19:47:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12882 for freebsd-ports-outgoing; Wed, 29 Apr 1998 19:47:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12684 for ; Wed, 29 Apr 1998 19:46:16 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca36-37.ix.netcom.com [207.93.42.229]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id TAA27825; Wed, 29 Apr 1998 19:46:04 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id TAA13107; Wed, 29 Apr 1998 19:45:57 -0700 (PDT) Date: Wed, 29 Apr 1998 19:45:57 -0700 (PDT) Message-Id: <199804300245.TAA13107@silvia.HIP.Berkeley.EDU> To: jmacd@paris.CS.Berkeley.EDU CC: vanilla@MinJe.com.TW, freebsd-ports@FreeBSD.ORG In-reply-to: <19980429175435.39819@paris.CS.Berkeley.EDU> (message from Josh MacDonald on Wed, 29 Apr 1998 17:54:35 -0700) Subject: Re: xdelta port From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I won't get into a discussion as to what the ports mechanism is supposed to do. There are a lot of things I would like it to do but we're perpetually short of manpower. :) * Finally, the version number in the Makefile kept the same shared library * version number (0.18) because the it is compatible with the previous * release, so there's no need to change it. The program still builds * thinking its version 0.19. Which is exactly how it should be. I commend you for understanding what many software authors don't. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 20:11:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16754 for freebsd-ports-outgoing; Wed, 29 Apr 1998 20:11:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16735 for ; Wed, 29 Apr 1998 20:10:59 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (ala-ca36-37.ix.netcom.com [207.93.42.229]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA27852; Wed, 29 Apr 1998 20:10:47 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id UAA13183; Wed, 29 Apr 1998 20:10:40 -0700 (PDT) Date: Wed, 29 Apr 1998 20:10:40 -0700 (PDT) Message-Id: <199804300310.UAA13183@silvia.HIP.Berkeley.EDU> To: gurney_j@resnet.uoregon.edu CC: ports@FreeBSD.ORG In-reply-to: <19980429181632.42978@hydrogen.nike.efn.org> (message from John-Mark Gurney on Wed, 29 Apr 1998 18:16:32 -0700) Subject: Re: reducing checksum check... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I was wondering if people would like it to only check the checksum * when work/.extract_done doesn't exist? There are ports that don't unpack some distfiles during the extract phase. * it seems strange to always * checksum a package, even when your not going to use the source package * durning the build... You should just type "make install" or "make package" depending on what you are trying to do. All the ports' make rules are chained and are not really designed to be called separately. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 21:50:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02306 for freebsd-ports-outgoing; Wed, 29 Apr 1998 21:50:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02275; Wed, 29 Apr 1998 21:50:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 29 Apr 1998 21:50:03 -0700 (PDT) Message-Id: <199804300450.VAA02275@hub.freebsd.org> To: freebsd-ports Cc: From: Jun Kuriyama Subject: Re: ports/2956: New Port: xgospel-1.10d in ftp.freebsd.org/pub/FreeBSD/incoming/ Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/2956; it has been noted by GNATS. From: Jun Kuriyama To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/2956: New Port: xgospel-1.10d in ftp.freebsd.org/pub/FreeBSD/incoming/ Date: Thu, 30 Apr 1998 13:44:27 +0900 What relations are there between this PR and /xperiment/xgospel in CD-ROM #1? Jun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Apr 29 22:32:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA08136 for freebsd-ports-outgoing; Wed, 29 Apr 1998 22:32:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from jazz.snu.ac.kr (jazz.snu.ac.kr [147.46.59.52]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA08125 for ; Wed, 29 Apr 1998 22:32:14 -0700 (PDT) (envelope-from junker@jazz.snu.ac.kr) Received: (from junker@localhost) by jazz.snu.ac.kr (8.8.8/8.8.8) id OAA21959; Thu, 30 Apr 1998 14:28:09 +0900 (KST) To: Jun Kuriyama Cc: ports@FreeBSD.ORG Subject: Re: Someone who can help me for Korean ports? References: <3547C1F1.FDA1E431@sky.rim.or.jp> From: CHOI Junho Date: 30 Apr 1998 14:28:09 +0900 In-Reply-To: Jun Kuriyama's message of Thu, 30 Apr 1998 09:12:33 +0900 Message-ID: Lines: 39 X-Mailer: Gnus v5.5/Emacs 20.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "Jun" == Jun Kuriyama writes: Jun> But I'll try these ports to commit. Please check result! Jun> BTW, I have a question. Should PR ports/3335 be replaced Jun> PR ports/6011? Jun> a [1997/04/19] ports/3335 ports new port request of Jun> korean/hanemacs o [1998/03/14] ports/6011 ports new port Jun> request Mr. Asami analyzed my first ports of hanemacs(ports/3335), and he replied to me that I should follow install-info scheme(newly introduced in that time). ports/6011 is based on Mr. Jordan's current emacs-19.34 ports, so it supports install-info and now complete(I think...). Take the newer one. Jun> And there is two ports in incoming about this PR. I should Jun> use newer one? Jun> o [1998/03/18] ports/6053 ports new port request: Jun> korean/hanIM incoming/hanIM-0.9-ports-980320.tar.gz Jun> incoming/hanIM-0.9-ports.tar.gz Take newer one(by the date) :) hanIM package is from rpm package, so I have to unpack it using rpm2cpio and cpio. I don't have another way to do this. I am worrying about hanIM(ports/6053) ports that I made some illegal links in it... I want to know that is legal for ports. If you see the ports Makefile, please check it. Thanks, -- ----Cool FreeBSD!----MSX Forever!---J.U.N.K.E.R/Beat Snatchers!---- CHOI Junho http://jazz.snu.ac.kr/~junker Distributed Computing System Lab,CS Dept.,Seoul National Univ., ROK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 00:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26104 for freebsd-ports-outgoing; Thu, 30 Apr 1998 00:40:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26063; Thu, 30 Apr 1998 00:40:01 -0700 (PDT) (envelope-from gnats) Received: from miya3f03.ee.kagu.sut.ac.jp (miya3f03.ee.kagu.sut.ac.jp [133.31.54.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA25780 for ; Thu, 30 Apr 1998 00:35:25 -0700 (PDT) (envelope-from sakai@miya3f03.ee.kagu.sut.ac.jp) Received: (from sakai@localhost) by miya3f03.ee.kagu.sut.ac.jp (8.8.8/8.8.8) id QAA03489; Thu, 30 Apr 1998 16:32:46 +0900 (JST) (envelope-from sakai) Message-Id: <199804300732.QAA03489@miya3f03.ee.kagu.sut.ac.jp> Date: Thu, 30 Apr 1998 16:32:46 +0900 (JST) From: sakai@miya3f01.ee.kagu.sut.ac.jp Reply-To: sakai@miya3f01.ee.kagu.sut.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6462: XShodou-1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6462 >Category: ports >Synopsis: New Package XShodou >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 30 00:40:01 PDT 1998 >Last-Modified: >Originator: Sakai Hiroaki (Tokyo Rika Daigaku) >Organization: Tokyo Rika Daigaku >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: DELL Latitude CP M166ST (Memory: 32MB, GraphicBoard: NeoMagic NM2160(Graphic Memory: 2MB)) FreeBSD-2.2.6R + PAO971211 Accelerated-X LX-4.1 tcl-8.0.2 tk-8.0.2 >Description: I want to contribute to FreeBSD project. And, I made a program for X. Please use the program "XShodou" and add XShodou to FreeBSD's package-collection. I have sent XShodou to "ftp.FreeBSD.ORG/pub/FreeBSD/incoming/". "xshodou-1.1.tgz" is that file. Please exec "pkg_add xshodou-1.1.tgz" to install XShodou to your system. Example: > su password: # pkg_add xshodou-1.1.tgz XShodou needs tck-8.0.2 and tk-8.0.2. Sakai Hiroaki ( sakai@miya.ee.kagu.sut.ac.jp ) >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 00:40:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26110 for freebsd-ports-outgoing; Thu, 30 Apr 1998 00:40:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26099; Thu, 30 Apr 1998 00:40:03 -0700 (PDT) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA25968; Thu, 30 Apr 1998 00:39:08 -0700 (PDT) (envelope-from nobody) Message-Id: <199804300739.AAA25968@hub.freebsd.org> Date: Thu, 30 Apr 1998 00:39:08 -0700 (PDT) From: steve@farrell.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6463: update for $PORTS/database/p5-DBD-Pg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6463 >Category: ports >Synopsis: update for $PORTS/database/p5-DBD-Pg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 30 00:40:02 PDT 1998 >Last-Modified: >Originator: steve farrell >Organization: >Release: 226 >Environment: FreeBSD phaedrus.uchicago.edu 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Wed Apr 8 19:25:06 CDT 1998 sfarrell@phaedrus.uchicago.edu:/usr/src/sys/compile/PHAEDRUS i386 >Description: update of port is in incoming p5-DBD-Pg-19980430-port.tar.gz >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 07:30:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17250 for freebsd-ports-outgoing; Thu, 30 Apr 1998 07:30:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17206; Thu, 30 Apr 1998 07:30:01 -0700 (PDT) (envelope-from gnats) Date: Thu, 30 Apr 1998 07:30:01 -0700 (PDT) Message-Id: <199804301430.HAA17206@hub.freebsd.org> To: freebsd-ports Cc: From: "Pedro F. Giffuni" Subject: Re: ports/6312: New port: ghostscript-3.33 Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6312; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/6312: New port: ghostscript-3.33 Date: Thu, 30 Apr 1998 00:17:00 -0500 A new version of hpdj is now available. the modified port is available in incoming as ghostscript-3.33.tar.gz The NEW features are (quoted): Version 2.4 (released 1998-04-27) ================================= Starting with this version, hpdj is released under the terms of the GNU Library General Public License (LGPL) instead of the GNU GPL. * Extensions - This version supports the Color Resolution Enhancement technology (C-REt) feature of some HP series-800 DeskJets, at least as far as I've been able to discover how this works without any documentation from HP. See the description of the new options 'BlackLevels' and 'CMYLevels' in the manual page. - There is a new option, "PagecountFile", which can be used to keep track of the number of pages printed. It is intended for spooler backends. - As an example of an input filter for a BSD spooler (lpr), I've added a file 'if-hpdj' to the distribution. Read the comments in the file to find out what it can do. - I've extended the list of PCL media size codes known to hpdj by some codes of interest to people with series-1100 DeskJets. * Modifications - The DJ 850C/855C/unspec margin information has been modified: - The margins for the JIS B5 format were demonstrably wrong for the DJ 850C and have been changed. - I've removed the entry for US A2 envelopes because contrary to what I believed previously this size is not supported. * Documentation - The FILES section in the manual page has been restructured and extended as a CONFIGURATION section. In particular, for those not familiar with PostScript, I've added much more on configuration with PostScript commands. * Compilation - I have added a missing "#include " directive to hpdjprn.c. - I have added an include directive for Aladdin's header "std.h" where appropriate in order to avoid some name clashes with non-standard system types like 'uint' on some operating systems (e.g., FreeBSD). .. Remainder deleted ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 09:39:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA05026 for freebsd-ports-outgoing; Thu, 30 Apr 1998 09:39:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA05004; Thu, 30 Apr 1998 09:39:02 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA11275; Thu, 30 Apr 1998 09:37:06 -0700 (PDT) Date: Thu, 30 Apr 1998 09:37:06 -0700 (PDT) Message-Id: <199804301637.JAA11275@freefall.freebsd.org> To: junker@jazz.snu.ac.kr, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/6169 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port upgrade: korean/pinetreefonts State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Thu Apr 30 09:36:24 PDT 1998 State-Changed-Why: Patch applied. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Thu Apr 30 09:36:24 PDT 1998 Responsible-Changed-Why: I committed this PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 11:10:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20104 for freebsd-ports-outgoing; Thu, 30 Apr 1998 11:10:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20052; Thu, 30 Apr 1998 11:10:05 -0700 (PDT) (envelope-from gnats) Received: from pc02.labcontrol.com (pc02.labcontrol.com [194.163.70.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA19533 for ; Thu, 30 Apr 1998 11:05:57 -0700 (PDT) (envelope-from marc@pc02.labcontrol.com) Received: (from marc@localhost) by pc02.labcontrol.com (8.8.7/8.8.7) id UAA00548; Thu, 30 Apr 1998 20:05:40 +0200 (CEST) (envelope-from marc) Message-Id: <199804301805.UAA00548@pc02.labcontrol.com> Date: Thu, 30 Apr 1998 20:05:40 +0200 (CEST) From: Marc van Woerkom Reply-To: lmarc@mail.labcontrol.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6468: popclient.info Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6468 >Category: ports >Synopsis: popclient.info contains no information >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 30 11:10:03 PDT 1998 >Last-Modified: >Originator: & van Woerkom >Organization: >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: >Description: popclient.info gets installed (looks nice from emacs :-) but contains no useful information - so why install it? >How-To-Repeat: just install popclient, then browse popclient.info >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 11:10:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20247 for freebsd-ports-outgoing; Thu, 30 Apr 1998 11:10:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20226; Thu, 30 Apr 1998 11:10:18 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA12101; Thu, 30 Apr 1998 11:08:22 -0700 (PDT) Date: Thu, 30 Apr 1998 11:08:22 -0700 (PDT) Message-Id: <199804301808.LAA12101@freefall.freebsd.org> To: dburr@POBoxes.com, vanilla@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports/6453 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade port graphics/gimp-devel to 0.99.28 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Thu Apr 30 11:06:12 PDT 1998 State-Changed-Why: Committed. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 12:00:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28419 for freebsd-ports-outgoing; Thu, 30 Apr 1998 12:00:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28387; Thu, 30 Apr 1998 12:00:05 -0700 (PDT) (envelope-from gnats) Received: from odin.sat.t.u-tokyo.ac.jp (odin.sat.t.u-tokyo.ac.jp [133.11.156.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27923 for ; Thu, 30 Apr 1998 11:57:31 -0700 (PDT) (envelope-from hideyuki@sat.t.u-tokyo.ac.jp) Received: by odin.sat.t.u-tokyo.ac.jp (8.8.8/8.7.3) id DAA10216; Fri, 1 May 1998 03:57:27 +0900 (JST) Message-Id: <199804301857.DAA10216@odin.sat.t.u-tokyo.ac.jp> Date: Fri, 1 May 1998 03:57:27 +0900 (JST) From: Hideyuki Suzuki Reply-To: hideyuki@sat.t.u-tokyo.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6469: updated port for wide-dhcp 1.4.0p1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6469 >Category: ports >Synopsis: updated port for wide-dhcp 1.4.0p1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Apr 30 12:00:04 PDT 1998 >Last-Modified: >Originator: Hideyuki Suzuki >Organization: The University of Tokyo, Japan >Release: FreeBSD 2.2.6-STABLE i386 >Environment: ports-current >Description: This is the updated port for wide-dhcp 1.4.0p1. The maintainer has already checked this port and he suggested to change maintainer from him to me. So, maintainer also was changed in this update. >How-To-Repeat: >Fix: Apply following patch: begin 644 wide-dhcp.patch.gz M'XL("*G"2#4``W=I9&4M9&AC<"YP871C:`#L/&UWVL;2G^U?L7'2'+`02+R# MZYP0C!-:##Y`FO;T]G!E:67K6DA4$D[W/S/[(B0AC).VISWW/&Z#T.[, M[.S,[,SL&T//HI^ZY*-C4=6Z,5>5"^.6VHY+#T__^-_AM#\C2*Q+*C?^DE:, M5>"8?E2Y@>;NU[=.I?_#;#J9S"MA8%96?A"%E6U.2G>'`8T"A]XYWC4)X!$Z MOD?T,OMO1UW]T')LFZAKH@8"DGVK'ZJJ2B3I`[W3:5>T>D7O$+W9K6G=>OM` M$E8491NP6B=:NZO7N_76`5)[_9JH>JE6(XI>@KK7KP_)"OJO+Z_+YMA^98Z?MDPR_]9O0(*2.3%$%K9:`_/!V\ET.)AQ*(]&A^I%;S8?3!>SX9P7V]&J6ZF$-V4D4#8LZ'KEP_!L M4+$#2M6/1D`KS$#)OP[5@P,.#9]EK+X*K;(?7%=6ZZO*.;R_F9W)IVJN@X!Z M$3-VU[G"?V8EC*S(@:'!17,^'`$/!TFIE",C*%__1J+?4-SEFT/E:_E%^5_T MAN,Y_!M,N0!VJ!H;20/*(?LZ-*)R5%ZKD7][+Z&!\.#'^;37GR\FX]%/N1TX M5(=OQY/I0'0Q[@ZYZ'T_6`S&/YP>3&;SGRX'I_]>>\:2_ANH0MVXP:E95^60 M!G(>%_YOKMY"ZAKW)<;#*?-<=+9._'APJ-S$I@EJV--PK+(-_06*[`,ZJ'ZLH/(W5E1.9-%VS@ MM6.3G\DSHMKDQ>?.Y?/@`PZOQL.'W8 M@&T1.&$8MH,DC*T^\R"8>A1JS">7$ZF\[-)?U8\'&:].A(/ M*TNK\?>[]9B5K_+KU1U^OZ#?3F5>'-J^#,T9.K%V<- M4L@QY2(Y)1VM3CLMK5JU&U5*]4ZM8=-VQVX:-H!4A,!O(X!O,8"N(H-F*Z#KEI&N;+P MX>#;G>N#"^!P8D:$0*/U;JT.M'B$5;')':@'YX$#4?.>U#12A0C9[.HMQ`)+ MX3S`*R813>1!V`&2DS??`;E$H4]L=QW>!/XZHO!R3:,EQ!2?)*GXHCD?=#,Z.Q_UWL[(*0@[ M_DY4]_9N"26S-\/QZ4'"DX=7CH>0PS>#'P?]I(^'Z$L_41-"%\2Z--+20)S^ M)116`+^">9HRO9"OP1(ZSHXHS_](3Q39$94\VI%$>_M8V]WGC:D<*@1$`&8"K8$^UV%0<7W3 M<+FE@'"XI9#39)VP%:@&4R&G*3PT%H49'J.8,3U%V1#,>HP'58&F3)<:'B1EZD&PQ(3L^+_D&!S(L>D']#C9^/3B M86<],"Q=3E=DDB9X),]VKEF*)ASC@P03;DK`\C'])@L MC[#C30%&G4JT7%7,N_"M7FO56G'4(BS.5%L0:D3$@#!3L>A=Q5N[;@JLVM4Z MW3J?$HKXJFM$T4I:-KPF@\,FK,&LE9`:!J@:T*EOA]8D&@MIB(&1K-UMU+KU MAL#`IEM-,'^%?6+;I'(,'^18Q)E"D3@A#`S375M`QO%D_#$9%$S*U.?)'#OT MO?N%1S^&1?+RY:9XL1#Q=;'(5OBA#87`_=/H2'!"/T4T\(`CR#(DKR?H*JD' M6MMK,N8_+@LT_X)E'$GZJ5F@F%XT3`I8*!DF$,;("/D#(MQZ-*BNPB*A\\PHKN#$RX0'S M*#[V$&026`YB.IY`RZE9A/=AM-Q9;R\H3)X#K.?#6A/#NLT$QHJ8_EHM7I1+ M9;6+_MK:JC*"E5'!2E:A9"IP@2+D_"3K`AKZ[AWC$D-(7''$L^:C5)E,G8_$ M!*#180;8%#U0I")^&%ZRERS3=[P_BE0##_I?'(OY+"1<;=4P&:FVP3[XW)H0`H$&4B;MA+U&905)T"@7D[GAA+^^$TNKW^*`:&KM(OG] M][SZTU,&H%=W`;QB`"T8UN#0<^B?PM#OP!^&`H*"!VM67[''(KI?41#$8/YN M,,4%L$5O>LEXI6Y(66]SX6\BWPL+*2S>16X.S`)!]]!?CO8Q<$#3C@T2L2V0 MS=7:+O%&WXV(0D+G-^K;A3`*UC"UY2@@N6(1A*,5R6=&C8!SCM:!5]"*)UO+ MR.F_RC%Q(@RO-T:P=&D8DL@7V$1CL9597!UM3:DU&@G#$,IU5JC4/.7N,XO= MF/EF0?Y*RWC<,/['[$+5Y9#7:VT^`:EK#>Y.5&X5,&#!)D`OQ+?1-='`-DS* M+((P7X6O9091ODG*X"0/P*6@`](\$:E:3H8%:LE+U(3*\Q%R4[M8;HYO1BY; MP7/L,LIL-ISTWP[/>V=GTQ)YZ=A!1C@0W%S_NC":O%U\Z$W'P_';$CGB5!*H M14*#P`\P#74\)W(,%T1?*';)-\LC8=]Y"48<#'+C8PKER:G&1X&>["T MR2P[76"%;*J0M$?T'6B3&(SAL0GF*R,PEMQ:A0F@J2Y8,3EF#VD[K9K&TX5Z M&^=H,I?2VPV6DNIM3$HUG@M@AZ^=$,8K,<&GPQP6P_=R$43+\+J\1*=LTI,T M(&8>+I:Q]**#CD"I5V5V`?[Z-QKXA9>AO[#"J)3Q-=)PB\63##`J^>G0UY"- M/`8M1`$I$Q-%IUZJUQ.B`*ZQO*-U1#G+J80W%3W3M5JI4R=*`\3)PAA1F#Y8 M/B@5`F4[U4$4:>*X/T:.[=6)>$<1.B>0W2>K\$U4$$4"PG#E1,&2Q^]'(SYL M#KB92G(/'#-A01Q/F(TF8,4]U,:V,*RI93M17EA>ME+C*$'QIG!2L/`BW\B3 M'4KH9^>78C&'>>[<[!6OXP8"ZF;FL*UL7EQ)F]%7*5K),Y8O5[8B'/P.;%Z@*ELBO`&M`3T(EO29\7,8H\QKCG?ZZYKA0 M\%,VR`1$Q)08'JFYLLMS:4BWPA4U5T41:=H=GAAW&JW$I(<0-YW.A]@RZ`SL M))/S"F4FU@-%_O&/F,2X>V8QP\PD)A\^.XL9YDUB8G\LDR_D@RTT5)NUE&Q# MSRK_3TAWJR-[Y;L+XRLE7&M5F83K=>W_)?RG21@75))"[NAG9V*9&8B:2$O>^"BT'=T9V3<0E M0S[ZTW@U4]UDV%PF=;ZA6:VW.T(F(JKS:1D:`3L]_E/9_?"F$V MFHQ>4VMN)B2;>,^GV#)4(A=_7##*EPN&$+1OHDM66(=IA-WR5Y'H>XG,)J/% M;-+_?C#'[Y#6O)\-\#Q8B;STO7CRXWN;91O9V\S4=M_.DO6/VUFR_KJ=)>NI M.TO6GIVE>I.?JZG%FTOBL(S<;Q1[.VM*9G1%\#Q1JUN5>SMB8RF#PG:"+F`B M7FT17>\VZMUZ-;&I5.4>1(_7WH[)A]YTVAO/AX-929SM82M1'X;S=Y/W'$Y&@[.$FAD^`QFI_/Q M8#8CYY,IZ9'+WG0^[+\?]:;D\OWTCVY);=39=^M/4+J>.ZYVNK6.RP6\>VXK,HR6W&U M+AZ7CK?B:GPM7)[5&MO,7:/XQ`2Y1S:%3S8G%>^"GPSR^#MW3);9)M> MY/)]N=36'))`?T6CG/V\BF.S_3K**QZ6V3*-IM*#IN( MOW/;,[]F<6<$.VL3FY[*KIU)WB66B20W(OTPH*YE1%3N4.:F5:=BT^JQ7:V: MAG_%%'7!G>"=R(0F*12FH_O0E)))(_/3?CD50-5R,T2ACY5CTC?"B!C9J(Y[ M2D9ZA;N"PN+Z);/>?#(;C@NA4=RU'HYU11;>=ZHNOT9VG\_IM#J;TNF:3$V` MY3,:T6")?(#XCZZ<*#S"_3!<4(&FCVS7N#Y*\]L;C6:#>0%K2@01D&WV"DZ- M%%@)6Z007_=:M'1QHNO,I.$3_1Q+E&3#X\7P?#R8L^3MX#,Y6C@V]/*(/)3$ M*JCL7UNF2BQ_,$R@\Q(,TO27(K%D*RRBJ&R80"B14LJ4)Y,\[<^$%/4+X?/I M,Q8I%IN.;$8WDRC$3BJ)79;#@\R'P%`N>6]UN M;1FHB3T#9?>TYTO&)\Y:[2%H)ST`WZZ5.52;7B6VKP71:(D?)4U.V`?F;A1M32J9C"ELXVDR/ MGL16S(V"L5E11%-@A[@D@RN0:S+*21K@TUQ]1=^ MBD*^U_"]=[X8II#K6`HEB^DY93F)'/^PP(J_143.:;P0CX1DE$R,DN+&A'/Y8EOB]A*'\5(L?9R2Z?P" M[&PX/I\DE[!AJ"3:2(VB(M*`/NC)A7(8M\`PJ^]B-X'I42'2N15*\?(P6BY`<5 M&(D8C1<_A@BZZWZS*C%5LB^@-7@>"?O#8E:6H"'.V&SLA%N*^,J4KYQF>3B) M=8E[@LR<9='C5L,I[K>=U#Z,0$E8S#-N,>/!!W82(F%L5P$U;K>T]7Y+?V99RU4>M6F8'^X:C=!""D"]*-," M\,>QJ>.=5PP168>NI9RF:#G50`:338,WD75W+I1(A)2LDW[83&34V'8Q,P2C MMB`Q+!%^0*W`,YBB8<9K=<>&6>2:2K[+`RDY#,5DB[MCG$3.)*?*4\^5_P-^ M%B#+T5]WNW#_SP-L`6YN%]:2MPO9K;I:,[OXM_MV(3M=WD1:>EMOF-+-SNOX_TKM2"6WPVY M,(:_#5#K:@V0W?;"V/X+BOQH_>:"(ONE!;W&IRC[NK&3_3A<2'^)Z-2%*5_F MDF'.;;G\>W_7XD[:<_6L/[FX[$&2<=[7&Z`[*!E/AOV+R_Z[[U.W_ZX3U]CV MH"7N_6U?>\RY";B7"WY?[4^\`+<1V>/7"?=QICS_.@'MNDZX!^]KKHQ^U8W1 M_-N+>Z4A]?2G7BL,GW"M,-QYK9"=U%;TAKRFD+K9%SYZKS!,7>L+$_<*-S_G ML+G9UZBD:G+N&&Y!).F)'X3(`Y>_%?$(Q1@D)AGF7#L,'[GZ&.9>?0SW77W, MRBAU]?$I8LHB/$$.*91=_7SB]?H:.7/H M-P+K!O%C9P\DY/=M*A)/0MP\=A4SW)O_V/^X_,?^JORGL2/_:23S'_NI^8^= M_7FD1E>K'R`U'K19^O-_[5W[!M%%G*-&EK(^=D&K-'%B3@<,.G"1"L_K" M.J9=K0G<7[6].7(*U.-_`:9LRZ58X9DJH^BZ`Z+=P&JKLW:FB1/DKB:Y4X&H MN)!&/(BG\&H-`2WT$MBF<;;__/_<*[SUA(83P&3/^.(%:#)69.^.7J,9V8GX M(KNR@]4V:%(=HFI4HO*M+@E:`A(6M/W$Q$SI8)Z?GAXE]VQ?`N""(L3Q,#^: MD1V^;#457F(;@ZB&.[>-&&Y/C3)T;"/:KFW$<#,U2H*APNWK!AQ-#2"D\%O: MAL*=,ZU$J7JF$J65*%&*ZVH`>XZ?PA[S&@#FXKL4W]/V'!DU2.D_JDU3_^&A M_H.V'D+_(7;QF=H.3<>A*R]8AB9"(]39G&[(H2?92,?`;J-DN!5/4;8FP7C! M#5F(MD`\=8]:!/.U->75!NH#=DO]`0ZV-?H#3).I/ZCC[K0N@3+J=(RY,M4' MLDQQ-%9I^=E<,COJ9U8*`(_P)"[V<^*/OHO#C8[1&:1NH`?01: MO-(+3H*3&O/44NCI2342GP?E-2H+KZCHBTT7]`L' M*KJMH:(MO8!8$FE4.IEV@GVOEEK%*8,-AV[S]5O3"C@*ART",NFT8($&7IST M`BT+MW0"?'.BZP0:`>@$^&>B$\@"JRJVG(:I"SC/4B%,1TZ8*P_N$-05:R", MSAO-IG&T%)OZT0P/P@/-UIW-^]<5Y"!]=&&:DO([JP(^#5)J!EJ:?D68ISE'BX9`0?M-!:H.S MQ6@[;'$CFRUN9+#%A5EL<;6[L,6UG6QQ&E$HS.!A[JR[8$=AGXL6N&)L5&E2 MFCQ<>BX[1R.AEQ/3LHU,&GY;GB8_RZ,>(`8DC%10E=BD#819.%D\BB'@L1_P M9U1^%!8/MV!TR&45XC('*#O-`?30Y73$(Y2<\+T`Q*[OM4CP,F4!1$=EVQZ- M[+#@W<1[HIF_'?@=H[=@7N4355&VY5"Q4Q9[-94H!#H*UY&KKLB_O)IM'V,^ M5>F$5%B6^0P-Y$6"^D(6$9BFI#*1(*L&K=KDZ$6J6)"5))A@K':]`%O/'!K MT51"T65`A#OM+]*P28X<,180-`X2D,L6KU(ET[%UPN-R.VO?I;WV71IKW\V] MKGTU<^V3AR0$Y"3+WC^[4\8G`9_('I<&9'*F3V3*D$XL'M>D;2.:+C0"9]J"T]"IKYEN2^EX88TG60QGZT%J[I-&:'MJ'">18YL3:MVXPC+=78I)O,;6I<*.U9EF93+]P?B:'N`7"6,?*ZH;BK(1(LH M&L57<]L3$04V^`4:H]C.I2U+H1 M.MW.")W:(W1JC-#Y-D60=6^1ED#*%473==623BSXQ'=,`&VF]8NVT[V1W;W1 MUUMA;%RNHW]KSOU&5@?#)=8.=O!F<*_9=CIX9G?PS.C@TVUV,(K&E?W;VJ]7 MM?XU,]B)`Z*H^,;=.W?U[V1M_U[MG++A:GOW\%>;*ANN'/?P=>T>WA.F!$'6 MF%IU#\^'C*]I'=PY[7OX@-P4)??P5;P%;RO5PZH:F`P=^-::(4)&#:Q[>#[Y MZN8]O*B!4$-L[U+]GF'ZW_0&?9?NR+<"JY_LDW?!]+TG7I3G#P\+C']B[0HJ M+0'N)S2T/$$FX/3:,UF)KI\8R/&)=L$]<4"Z)RN@ZQ,G='VR#KIN5\"XH\ZJ M@P-6GB'-DTO:C`3%+UH,YMM9[.?V8C\W%OL77V$W1ZAYL=AS28CK-SZHYA,N MRMS,408[<9W02+38^PB^PT_%,'5R=,QF\^A#V`>2]QC-4[D0OE@0_?]@!*J> MWG(10E0<`F?"=!C&BASJRY2(ZD;FY!5P6W6.GD$@D9PD@_'LV`?&FFXC8VD3X_/\*FP#=;XW[\K]>I7VIP\V. M=5_1V*_!Y8%V^^\JWKS^KP:D-W$XTDE=3/C2@$#>_R-;>L._@TV`5T<<`/F. MWJ[7G`"=8;4]C5(R0-+S0-'ZZ%2^Q%LK^6L/DFA>\FAZ'DE>SP,KH\X!W`'" M"^#)13868D0O\;\DKRY8'R/<=S8:=&`&0.#[ET__#?S,+XY?(6,E.;')[YW' M$XCK\"7H[?'9;P7A%4OT`@"S^P$:H[,?V7<4SO8% M;!QMK6N:SP:33W]&1#>,Y8'JMP!7]OWN9)'7S:<%"IRYN,<8L8C()B#>8YLE M'IM+V:YGQ3(B9Y9%*H[BI%"3W3A=K#M>%IQ<&B4NGNHU`.[AIR3+W&/Q;#Q" M%H3!"+R<@S,U+N=GHQ"X#^`.9Q#VEL,A%S64XS'L?[79`=8>2`FQB"[B/*!2 M"'9":.\5<'*@A5J=^267^(+7-)65E2UR@'1%=$!&5E5<=;#SI6OA>#QO%44_ MA>8E6D$"-?(W'392P"YIM*!+\/.O+MF-+FGBC5HS2"AE,>MHUK^,EQ/(@7_D M\TLP\^%E[!68:*42TUKK8LQ[TBM(#EB]5H[:4,E5-+<2WBSJP@E)JUXC0!CY M!&T*&Z16TZ-P15V^C+O#,`]/_!/?)!"D`4$"-VBH-B005/Z691>RY;3A3``$\XOY")A M4AS+Y>@+A*)'X6R+%:NPU+ M4K'=*'FB+1/.1MJ<'IZ^[)R^?GNF-J77?`^:D(<4E<%,=S[L(U!(=IB8)^4R M1)18L5W]#2K$?V*/R(P`VR,":"+Q^5&`$+\@7;I=U\`C7')PZ MLCMKTD@P5:>B\+ZK.(7V1(Q>KGH8L@QA,?''$=]2)O6I_9;$]<'RB[_`/OUF M^HO(($DAI.48:#FT>CMS\![J+L>+)(-J>&?RS_C]64DAJG9BGZ9EQX%.C9'' MP0[:F7`!U,ZB[2!W28T.L4LY/OT)&9R+>NM@[B18;QJA5_#!=*98`^LUX=_; MIEA*EGUB/1*X3MPSB-T&CKWR#XQ7CY^1#F38-:A:9)AFI4=#M::_*LIRW\%@5>E=2`$N\JP&S2'YQNE"=`S66US,@L)@P$;\N!I]G(*H(+B;6YX@#1*OJRY22@P=B[P^.2JQ M1+H4#I(,W865X2$=,QZ66#[)PLJ2MDE/72BL+,IHM2\M[&&%_[Y5I9"@3\8H M5RM6J>AIQ7#_05#(Y_#-`A2WX$TX//K1GXI2Q( MJV+R?2+34_AGN00(5%+B!^=J&<8+2;C5QT$DO7I4A?^HH-XP5MS`KU%XH%9< M)L]4%?Z--,/P\3X5&$Z+1;`"/GOW#&CK7CX]^^7@#MF1,/+-77(^>X.49!V@ MW#IX(-V4PMF=OZ62(KOGKX\U@4.8X8S!#Q%BA.X7%@+A$>%3IL2 M@MI.(DYHY`?(&)_K8=.+G=/B++:'.UULJL596%H<``S5-=RIU\IVF>QVZ5VO M[GM9WI(K%X8:I[[?\$Q.>Q\/^/Q3X#_O3^4H!;P">HH@/!))X0-!M%F30;F< MT!V"+E>\`0A,729QR680$=O^)S=]PGPYM M4+PAC5C`:E5`-QE&.M;H,;5T\%^WGO6JXIG\JT%R&,Z^F[E'7B<_ECLG/Y;; MDQ_+3>7'<@UNW!NI:V8=Z^V8GZ`CF]\J0C63374G)>2$;?RL+J6 MGWQ#7[NR"DYGN^%5MKM=HEU>X6H7-I@X[X%X69*V2#7'NEE_O7.S_GI[L_YZ MTUE_[9CUM>Q9+R`8=!WNG/"M_5HSA1JA#/9`6-"AE_[B&<];MY;WD^>S_G#RP_Z5UT+@9S86.8>/V>ZWK(?YV^ M.9)ZTM_$"9^>HFE9=37OD]4T,$@*E>/[>)'35,YFY969\G-AMAK-0*,"R8BM M"F2)(^[UB_\8?J#QA'G7,AA4H`?,QRH5ZMA+;-(=COJ=/ISYGY\<=N#(#_FK MO$1S*_2<-_(+*[M("O2^((-GX#5DP:+Q`!__FD\K6"E((J\321]W3B1]O)-( M\C-$DK^V!3[M7`M\^LHM<+,=*,N-#66Y,:`L_\V"LGCW8!FAB>4.W_JH+9LI M_#W:&;92"X7(E$Y?UVF2&ZA5Y)_27,*P4.*3-5:V;AL[G=*,GTRW3/?D]F6M M":!FL.[<+3J"Y6[1$2/6J'4#\(^=FX)_?-TIV.ON6@OTNE^Y!7H[UP*]K]P" M_9UK@?Y7;H&=\Q;:NYNWT+NWP,YY3.C=S6/"W5O@OCF35;'F9H0'X&9D_08# M]R'K;+?]9#,"VQ`%]M<52`9S59IHN`4%>7Z:[L#()[+`$;,&]IO5)EG4!`J@ MY[-B(#%["LRJ\6;R0P5^NV.O*?8Z@:F1H\MORU%:5*IIF>;9N^<)0<*Z477? M%)JJ6&M4#>\RJC)MA%>.*C?-#6UR40?>9OR!O!R#O=K%K[/M_F&FXT MZ/:\K;Q5.KV_.GW*9J@XA!]*A_-7ELJ2Z#U3,8G#4"L&%7CNC>?E\/'1\=GA MFQV0L[(J=Q*P7H:`]7``8KEK]6]F*E"^M=">KY&#HI5/)K-Q..%C":^U2Q))`\*?/>%]LGGR2A,R,'@"_COM+Z(>L/B"#J\" M)>$_/D)'8PQL51Z(^_:W%Z,8]1W=80A>)KM,7=]!V9+IPR_GJ]*.+'S*0Q^(DQ!"0/S8=8U$:L M)"7BC^2--5V46':A7B?^]P.# ME#6^Z,[#QX.HC\=HN/V81T@6^/'?Y\?/A+Y^S=2VB7 M'N\>MN2S=JXQ1-6`(VH/DN=DEP,4DC<7\-!C-6*VY'64;"'L?!Y-9`%EX*/G M+\GB:#GOA[R0!8^HL&=AOXN9H$#$C\`W8C:FB_$-W?L.2FPR:/`?8?^2`7`R M.H<2DCQ3_(X?0RH>^/OO)\]?G;XY?O2H0A4^.65/PJ'U>!K1`M?SF^,7QT[/C$C9(`WZJ7TTSLJ5^\LPST7WP^'%W`7"47CRH MH#"J3"YQ$,B`"M]B#$9S",9W@MXMB]X5_#=.NM-E=XPM!(V"G]`R4-2` M#S^^Q5!-PO-CEU!?7X;S:3CFJ69\V0ZG_1"FIYR_?-`/P1)`/-OLAudit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 13:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11510 for freebsd-ports-outgoing; Thu, 30 Apr 1998 13:10:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11486; Thu, 30 Apr 1998 13:10:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 30 Apr 1998 13:10:03 -0700 (PDT) Message-Id: <199804302010.NAA11486@hub.freebsd.org> To: freebsd-ports Cc: From: "Scot W. Hetzel" Subject: ports/4878: Apache w/FrontPage minor update Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/4878; it has been noted by GNATS. From: "Scot W. Hetzel" To: Cc: Subject: ports/4878: Apache w/FrontPage minor update Date: Thu, 30 Apr 1998 15:08:18 -0500 It was brought to my attention by Poul-Henning Kamp, that occasionally an error would occur involving shtml.dll. From: Poul-Henning Kamp >If you tried to use any of the serverside scripting (to send an email >in this case) it would fail because shtml.dll wasn't recognized by >the paranoid permissions code... (of the mod_frontpage module) > The suggested fix was to add a check for shtml.dll and to return shtml.exe in the mod_frontpage module. From: Poul-Henning Kamp >[...] >static const char* SHTML2 = > "/_vti_bin/shtml.dll"; >[...] > if (szCgi = strstr(szVti, SHTML2 )) > return FrontPageAlias(r, szCgi, SHTML); >[...] The port no longer tries to patch the fp-patch-apache_1.2.5 patch file. Instead, the fp-patch-apache_1.2.5 patch was moved to the pre-patch stage (was in the post-patch stage which required that the fp-patch-apache-1.2.5 patch be patched). The port now applies the required patches from the patch directory instead. Will make the port easier to maintain. The updated port is now available on: http://www.westbend.net/~hetzels/apache-fp ftp://ftp.freebsd.org/pub/FreeBSD/incoming/4878.apache-fp.126.d.tgz Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 13:50:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18862 for freebsd-ports-outgoing; Thu, 30 Apr 1998 13:50:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18813; Thu, 30 Apr 1998 13:50:01 -0700 (PDT) (envelope-from gnats) Date: Thu, 30 Apr 1998 13:50:01 -0700 (PDT) Message-Id: <199804302050.NAA18813@hub.freebsd.org> To: ports Cc: From: Jacques Vidrine Subject: Re: ports/6430: trafshow 2.0 (port) can't be compiled Reply-To: Jacques Vidrine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6430; it has been noted by GNATS. From: Jacques Vidrine To: freebsd-gnats-submit@freebsd.org, root@sprouts.org Cc: Subject: Re: ports/6430: trafshow 2.0 (port) can't be compiled Date: Thu, 30 Apr 1998 15:42:42 -0500 lib/interfaces.c includes , though it doesn't seem to need the only structure defined there (struct sl_softc). I don't think that trafshow should include this file -- at least not on BSD4.4lite platforms. Fix, to be applied after all other patches included in the port: --- lib/interfaces.c Wed Apr 29 13:56:21 1998 +++ lib/interfaces.c Wed Apr 29 13:56:30 1998 @@ -23,7 +23,6 @@ #include #include #include -#include #ifdef __FreeBSD__ #include #else Jacques Vidrine To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 14:50:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28626 for freebsd-ports-outgoing; Thu, 30 Apr 1998 14:50:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from matrix.42.org (root@matrix.42.org [192.68.213.129]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA28618 for ; Thu, 30 Apr 1998 14:50:37 -0700 (PDT) (envelope-from sec@matrix.42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.6) id VAA24741 for ports@FreeBSD.ORG (sender ); Thu, 30 Apr 1998 21:25:32 +0200 (CEST) Message-ID: <19980430212531.B24281@matrix.42.org> Date: Thu, 30 Apr 1998 21:25:31 +0200 From: Stefan `Sec` Zehl Cc: ports@FreeBSD.ORG Subject: Re: reducing checksum check... References: <19980429181632.42978@hydrogen.nike.efn.org> <199804300310.UAA13183@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.92.3i In-Reply-To: <199804300310.UAA13183@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Wed, Apr 29, 1998 at 08:10:40PM -0700 I-love-doing-this: really X-URL: http://sec.42.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 29, 1998 at 08:10:40PM -0700, Satoshi Asami wrote: > You should just type "make install" or "make package" depending on > what you are trying to do. All the ports' make rules are chained and > are not really designed to be called separately. Hm. I don't agree in this point. I often just do an "make" or "make patch" to be able to change some small detail i don't like about that particular port (one example: I always increase MAXWIN in the screen port from 10 to 30). Then i can proceed via an "make install". So i think this change (checking checksum only once) is worthwhile. Just doing it if 'work/.extract_done' doesn't exist shounds quite foolproof, too. CU, Sec -- Eine anständige Katze trinkt keinen Whisky, davon kriegt sie ja nen Kater. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 14:55:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29366 for freebsd-ports-outgoing; Thu, 30 Apr 1998 14:55:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from localhost.my.domain (ppp1566.on.bellglobal.com [206.172.249.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29342 for ; Thu, 30 Apr 1998 14:55:43 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by localhost.my.domain (8.8.8/8.8.8) with SMTP id SAA01251; Thu, 30 Apr 1998 18:18:25 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: localhost.my.domain: tim owned process doing -bs Date: Thu, 30 Apr 1998 18:18:25 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: Josh MacDonald cc: "Vanill I. Shu" , freebsd-ports@FreeBSD.ORG Subject: Re: xdelta port In-Reply-To: <19980429175435.39819@paris.CS.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 29 Apr 1998, Josh MacDonald wrote: > I really think this is a shortcoming in the FreeBSD ports architecture. One of a number, I'm sure. :-) > before building. Your patch doesn't work if I install a gdbm package in > prefix A and then build xdelta with prefix B. I was always under the In general, if a port depends on another port, you must install that other port from the same ports system. I think this is a reasonable limitation. In general, you can only have one PREFIX (eg. you can't install gdbm with PREFIX=/usr/local and and xdelta with PREFIX=~hoek/bin). This isn't a simple limitation. It will be a very long time before the architectural decisions and coding to fix it will be done (if ever). That said, it would probably result in a ports system that is cleaner overall. > prefixes. Since the package manager records the location of gdbm on > installation, it can retrieve this information and provide the right > linker flags. That would be a simple solution, but it'd only be a hack. If someone else wants to do the work, they're welcome, but I'm not sure it's worth the investment when it is only a hack. The correct solution moves package registration information to a directory of PREFIX and let's the port-builder specify directories to search for package registration information. It also makes -p of pkg_add(1) an undocumented option. It also makes a valiant and hopefully succesful attempt to remove all references to X11BASE and LOCALBASE from the ports tree. -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 15:41:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04970 for freebsd-ports-outgoing; Thu, 30 Apr 1998 15:41:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp6487.on.bellglobal.com (ppp6487.on.bellglobal.com [206.172.208.79]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04961 for ; Thu, 30 Apr 1998 15:41:12 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by localhost.my.domain (8.8.8/8.8.8) with SMTP id TAA01310; Thu, 30 Apr 1998 19:13:33 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: localhost.my.domain: tim owned process doing -bs Date: Thu, 30 Apr 1998 19:13:33 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: "David O'Brien" cc: freebsd-ports@FreeBSD.ORG Subject: Re: GCC In-Reply-To: <19980430041417.42994@nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 30 Apr 1998, David O'Brien wrote: > As the maintainer for both the GCC 2.8 and EGCS ports, I'd *STRONGLY* > recomend *NOT* making EGCS the stock compiler. It is a way fast moving > target. Much of the time the snapshots won't compile under FreeBSD. Perhaps you should remove the (in)stability comment from pkg/COMMENT in the gcc port. -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 17:19:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18646 for freebsd-ports-outgoing; Thu, 30 Apr 1998 17:19:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gatekeeper.alcatel.com.au (gatekeeper.alcatel.com.au [203.17.66.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA18618 for ; Thu, 30 Apr 1998 17:18:51 -0700 (PDT) (envelope-from peter.jeremy@alcatel.com.au) Received: from mfg1.cim.alcatel.com.au ([139.188.23.1]) by gatekeeper.alcatel.com.au (PMDF V5.1-7 #U2695) with ESMTP id <01IWIKOP60QO000I1G@gatekeeper.alcatel.com.au> for freebsd-ports@freebsd.org; Fri, 1 May 1998 10:17:17 +1000 Received: from cbd.alcatel.com.au by cim.alcatel.com.au (PMDF V5.1-10 #23324) with ESMTP id <01IWIKOLEL4WC2L316@cim.alcatel.com.au>; Fri, 01 May 1998 10:17:14 +1000 Received: from gsms01.alcatel.com.au by cbd.alcatel.com.au (PMDF V5.1-7 #U2695) with ESMTP id <01IWIKOIVCLCAZTVKN@cbd.alcatel.com.au>; Fri, 01 May 1998 10:17:09 +1100 Received: (from jeremyp@localhost) by gsms01.alcatel.com.au (8.8.8/8.7.3) id KAA12929; Fri, 01 May 1998 10:17:07 +1000 (EST) Date: Fri, 01 May 1998 10:17:07 +1000 (EST) From: Peter Jeremy Subject: Circular dependency in libiberty To: bug-gnu-utils@prep.ai.mit.edu Cc: freebsd-ports@FreeBSD.ORG Message-id: <199805010017.KAA12929@gsms01.alcatel.com.au> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Environment FreeBSD 2.2.5, binutils 2.9 and gdb 4.17 When building libiberty as part of either binutils 2.9 or gdb 4.17 with a FreeBSD 2.x host, gnu make (3.76.1) successfully builds libiberty.a, but reports a circular dependency. Running gnu make in the libiberty directory after the library is successfully built gives: pc0640% gmake gmake[1]: Entering directory `/usr/users/jeremyp/src/binutils/libiberty' gmake[1]: Circular vasprintf.o <- config.h dependency dropped. gmake[1]: Leaving directory `/usr/users/jeremyp/src/binutils/libiberty' pc0640% The standard FreeBSD 2.2.5 make is unable to handle the circular dependency and exits without building the library. This problem does not exist on a Sun Solaris 2.x host and appears to be related to the `EXTRA_OFILES=vasprintf.o' line in the Makefile - it appears that the dependency handling for EXTRA_OFILES is incorrect. Relevant configuration files from binutils are: ------- binutils/config.status: -------------------------------- #!/bin/sh # This file was generated automatically by configure. Do not edit. # This directory was configured as follows: /mnt/src/binutils-2.9/configure --host=i386-unknown-freebsd2.2.5 --target=m68k-unknown-coff --with-mmap --with-gnu-as --with-gnu-ld --enable-targets=i386-unknown-freebsd2.2.5,m68k-unknown-coff --disable-shared --norecursion # ------- binutils/config.cache: -------------------------------- # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs. It is not useful on other systems. # If it contains results you don't want to keep, you may remove or edit it. # # By default, configure uses ./config.cache as the cache file, # creating it if it does not exist already. You can give configure # the --cache-file=FILE option to use a different cache file; that is # what configure does when it calls configure scripts in # subdirectories, so they share the cache. # Giving --cache-file=/dev/null disables caching, for debugging configure. # config.status only pays attention to the cache file if you give it the # --recheck option to rerun configure. # ac_cv_prog_cc_works=${ac_cv_prog_cc_works='yes'} bfd_cv_decl_needed_getenv=${bfd_cv_decl_needed_getenv='no'} ac_cv_lib_fl_yywrap=${ac_cv_lib_fl_yywrap='yes'} gas_cv_decl_needed_malloc=${gas_cv_decl_needed_malloc='no'} ac_cv_header_varargs_h=${ac_cv_header_varargs_h='yes'} bfd_cv_decl_needed_strstr=${bfd_cv_decl_needed_strstr='no'} ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h='yes'} bfd_cv_decl_needed_free=${bfd_cv_decl_needed_free='no'} ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h='yes'} am_cv_mingw32=${am_cv_mingw32='no'} bu_cv_decl_time_t_time_h=${bu_cv_decl_time_t_time_h='yes'} ac_cv_prog_cc_g=${ac_cv_prog_cc_g='yes'} ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -c'} ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h='yes'} ac_cv_header_dirent_dirent_h=${ac_cv_header_dirent_dirent_h='yes'} ac_cv_func_mprotect=${ac_cv_func_mprotect='yes'} ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped='yes'} ac_cv_prog_gnu_ld=${ac_cv_prog_gnu_ld='no'} ac_cv_prog_RANLIB=${ac_cv_prog_RANLIB='ranlib'} ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h='yes'} bfd_cv_decl_needed_realloc=${bfd_cv_decl_needed_realloc='no'} ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h='yes'} ac_cv_prog_YACC=${ac_cv_prog_YACC='bison -y'} ac_cv_func_fcntl=${ac_cv_func_fcntl='yes'} ac_cv_path_LD=${ac_cv_path_LD='/usr/bin/ld'} ac_cv_prog_CC=${ac_cv_prog_CC='gcc'} am_cv_exeext=${am_cv_exeext='no'} ac_cv_prog_lex_root=${ac_cv_prog_lex_root='lex.yy'} ac_cv_func_sysconf=${ac_cv_func_sysconf='yes'} ac_cv_prog_LN_S=${ac_cv_prog_LN_S='ln -s'} ac_cv_header_alloca_h=${ac_cv_header_alloca_h='no'} ac_cv_func_alloca_works=${ac_cv_func_alloca_works='yes'} bfd_cv_decl_needed_sbrk=${bfd_cv_decl_needed_sbrk='no'} ac_cv_func_unlink=${ac_cv_func_unlink='yes'} gas_cv_decl_needed_strstr=${gas_cv_decl_needed_strstr='no'} bu_cv_decl_time_t_types_h=${bu_cv_decl_time_t_types_h='yes'} ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h='yes'} gas_cv_decl_needed_free=${gas_cv_decl_needed_free='no'} ac_cv_header_time=${ac_cv_header_time='yes'} ac_cv_header_strings_h=${ac_cv_header_strings_h='yes'} bu_cv_header_utime_h=${bu_cv_header_utime_h='yes'} ac_cv_lib_dir_opendir=${ac_cv_lib_dir_opendir='no'} bfd_cv_decl_needed_malloc=${bfd_cv_decl_needed_malloc='no'} ac_cv_prog_make_make_set=${ac_cv_prog_make_make_set='yes'} ac_cv_header_unistd_h=${ac_cv_header_unistd_h='yes'} ac_cv_header_string_h=${ac_cv_header_string_h='yes'} ac_cv_c_inline=${ac_cv_c_inline='inline'} ac_cv_header_time_h=${ac_cv_header_time_h='yes'} ac_cv_path_NM=${ac_cv_path_NM='/usr/bin/nm -p'} ac_cv_func_utimes=${ac_cv_func_utimes='yes'} ac_cv_header_memory_h=${ac_cv_header_memory_h='yes'} gas_cv_assert_ok=${gas_cv_assert_ok='yes'} ac_cv_prog_cc_cross=${ac_cv_prog_cc_cross='no'} ac_cv_prog_gcc=${ac_cv_prog_gcc='yes'} ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h='yes'} ac_cv_header_errno_h=${ac_cv_header_errno_h='yes'} ac_cv_prog_AR=${ac_cv_prog_AR='ar'} ac_cv_func_madvise=${ac_cv_func_madvise='yes'} ac_cv_prog_CPP=${ac_cv_prog_CPP='gcc -E'} ac_cv_func_sbrk=${ac_cv_func_sbrk='yes'} ac_cv_func_getpagesize=${ac_cv_func_getpagesize='yes'} ac_cv_prog_lex_yytext_pointer=${ac_cv_prog_lex_yytext_pointer='yes'} ac_cv_func_setitimer=${ac_cv_func_setitimer='yes'} ac_cv_header_stddef_h=${ac_cv_header_stddef_h='yes'} bfd_cv_decl_needed_fprintf=${bfd_cv_decl_needed_fprintf='no'} gas_cv_decl_needed_errno=${gas_cv_decl_needed_errno='no'} am_cv_cygwin32=${am_cv_cygwin32='no'} ac_cv_prog_LEX=${ac_cv_prog_LEX='flex'} gas_cv_decl_needed_sbrk=${gas_cv_decl_needed_sbrk='no'} ac_cv_func_fdopen=${ac_cv_func_fdopen='yes'} ------- binutils/libiberty/config.status: ---------- #!/bin/sh # This file was generated automatically by configure. Do not edit. # This directory was configured as follows: /mnt/src/binutils-2.9/configure --host=i386-unknown-freebsd2.2.5 --target=m68k-unknown-coff --srcdir=/mnt/src/binutils-2.9/libiberty --with-mmap --with-gnu-as --with-gnu-ld --with-gnu-as --with-gnu-ld --enable-targets=i386-unknown-freebsd2.2.5,m68k-unknown-coff --disable-shared --cache-file=../config.cache --norecursion # using "xhost-mkfrag" -------- binutils/libiberty/Makefile: --------- # This file was generated automatically by configure. Do not edit. VPATH = /mnt/src/binutils-2.9/libiberty links = alloca-conf.h host_alias = i386-unknown-freebsd2.2.5 host_cpu = i386 host_vendor = unknown host_os = freebsd2.2.5 host_canonical = i386-unknown-freebsd2.2.5 target_alias = m68k-unknown-coff target_cpu = m68k target_vendor = unknown target_os = coff target_canonical = m68k-unknown-coff build_alias = i386-unknown-freebsd2.2.5 build_cpu = i386 build_vendor = unknown build_os = freebsd2.2.5 build_canonical = i386-unknown-freebsd2.2.5 host_makefile_frag = xhost-mkfrag gxx_include_dir = ${prefix}/include/g++ # # Makefile # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 Free Software Foundation # # This file is part of the libiberty library. # Libiberty is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # Libiberty is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with libiberty; see the file COPYING.LIB. If not, # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # # This file was written, and is maintained by K. Richard Pixley # . # # Makefile for libiberty directory # srcdir = /mnt/src/binutils-2.9/libiberty prefix = /usr/local exec_prefix = $(prefix) bindir = ${exec_prefix}/bin libdir = ${exec_prefix}/lib datadir = ${prefix}/share mandir = ${prefix}/man man1dir = $(mandir)/man1 man2dir = $(mandir)/man2 man3dir = $(mandir)/man3 man4dir = $(mandir)/man4 man5dir = $(mandir)/man5 man6dir = $(mandir)/man6 man7dir = $(mandir)/man7 man8dir = $(mandir)/man8 man9dir = $(mandir)/man9 infodir = ${prefix}/info includedir = ${prefix}/include SHELL = /bin/sh # Multilib support variables. MULTISRCTOP = MULTIBUILDTOP = MULTIDIRS = MULTISUBDIR = MULTIDO = true MULTICLEAN = true INSTALL = $(SHELL) $(srcdir)/../install-sh -c INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA = $(INSTALL) AR = ar AR_FLAGS = rc ERRORS_CC = $(CC) CC = gcc CFLAGS = -g -O2 LIBCFLAGS = $(CFLAGS) MAKEINFO = makeinfo RANLIB = ranlib PICFLAG = MAKEOVERRIDES = TARGETLIB = libiberty.a CONFIG_H = lconfig.h NEEDED_LIST = lneeded-list # HOST_OFILES contains the list of objects that should be in the # library (in addition to the REQUIRED_OFILES and EXTRA_OFILES). # A configuration may override this with a fixed list a object files # names (hard to maintain), or some other way to generate a list. HOST_OFILES=`cat needed-list` # Extra targets that the top-level target depends on. # Specifically, what needs to be made before HOST_OFILES can be used. # Can be empty if HOST_OFILES is just a list of file names. DO_ALSO = needed-list # A configuration can specify extra .o files that should be included, # even if they are in libc. (Perhaps the libc version is buggy.) EXTRA_OFILES = # Flags to pass to a recursive make. FLAGS_TO_PASS = \ "AR=$(AR)" \ "AR_FLAGS=$(AR_FLAGS)" \ "CC=$(CC)" \ "CFLAGS=$(CFLAGS)" \ "LIBCFLAGS=$(LIBCFLAGS)" \ "EXTRA_OFILES=$(EXTRA_OFILES)" \ "HDEFINES=$(HDEFINES)" \ "INSTALL=$(INSTALL)" \ "INSTALL_DATA=$(INSTALL_DATA)" \ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ "LDFLAGS=$(LDFLAGS)" \ "LOADLIBES=$(LOADLIBES)" \ "PICFLAG=$(PICFLAG)" \ "RANLIB=$(RANLIB)" \ "SHELL=$(SHELL)" all: stamp-picdir $(TARGETLIB) required-list @if [ "$(RULE1)" != "not-used" ]; then \ $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all; \ else true; \ fi .PHONY: check installcheck check installcheck: #### Host, target, and site specific Makefile fragments come in here. # Warning: this fragment is automatically generated # Following fragment copied from /mnt/src/binutils-2.9/libiberty/config/mh-fbsd21 EXTRA_OFILES=vasprintf.o ### INCDIR=$(srcdir)/$(MULTISRCTOP)../include COMPILE.c = $(CC) -c $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) .c.o: test -z "$(PICFLAG)" || \ $(COMPILE.c) $(PICFLAG) $< -o pic/$@ $(COMPILE.c) $< # The default target just invokes make recursively. # However, the automatic configuration (in config/mh_default). # first causes it to figure out the objects missing in libc. info install-info clean-info dvi: # Include files that are in this directory. HFILES = # NOTE: If you add new files to the library, add them to this list # (alphabetical), and add them to REQUIRED_OFILES or 'functions.def'. CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c bzero.c \ choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c fnmatch.c \ getcwd.c getopt.c getopt1.c getpagesize.c getruntime.c \ floatformat.c hex.c index.c insque.c \ memchr.c memcmp.c memcpy.c memmove.c memset.c objalloc.c \ obstack.c pexecute.c random.c rename.c rindex.c sigsetmask.c spaces.c \ strcasecmp.c strncasecmp.c \ strchr.c strdup.c strerror.c strrchr.c strsignal.c \ strstr.c strtod.c strtol.c strtoul.c tmpnam.c \ vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \ xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c # These are always included in the library. REQUIRED_OFILES = argv.o basename.o choose-temp.o concat.o cplus-dem.o \ fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \ floatformat.o objalloc.o obstack.o pexecute.o spaces.o strerror.o \ strsignal.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o # Do we want/need any config overrides? # STAGESTUFF = $(TARGETLIB) *.o INSTALL_DEST = libdir install: install_to_$(INSTALL_DEST) install_to_libdir: all $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n ) mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n $(libdir)$(MULTISUBDIR)/$(TARGETLIB) @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install install_to_tooldir: all $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n ) mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB) @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install # The default configuration adds to libiberty all those functions that are # missing in libc. More precisely, it includes whatever $(CC) fails to find. # Then a sed+awk combination translates the ld error messages into # a list of .o files. stamp-needed: stamp-picdir $(NEEDED_LIST) cp $(NEEDED_LIST) needed-tmp $(SHELL) $(srcdir)/$(MULTISRCTOP)../move-if-change needed-tmp needed-list touch stamp-needed needed-list: stamp-needed ; @true lneeded-list: $(EXTRA_OFILES) needed.awk errors rm -f lneeded-list f=""; \ for i in `awk -f needed.awk >lneeded-list # Generate an awk script that looks for functions in functions.def needed.awk: $(srcdir)/functions.def Makefile echo "# !Automatically generated from $(srcdir)/functions.def"\ "- DO NOT EDIT!" >needed.awk grep '^DEF(' < $(srcdir)/functions.def \ | sed -e '/DEF/s|DEF.\([^,]*\).*|/\1/ { printf "\1.o " }|' \ >>needed.awk stamp-config: $(CONFIG_H) cp $(CONFIG_H) config.tmp $(SHELL) $(srcdir)/$(MULTISRCTOP)../move-if-change config.tmp config.h touch stamp-config config.h: stamp-config ; @true lconfig.h: needed2.awk errors echo "/* !Automatically generated from $(srcdir)/functions.def"\ "- DO NOT EDIT! */" >lconfig.h awk -f needed2.awk >lconfig.h # Generate an awk script that looks for variables in functions.def needed2.awk: $(srcdir)/functions.def Makefile echo "# !Automatically generated from $(srcdir)/functions.def"\ "- DO NOT EDIT!" >needed2.awk grep '^DEFVAR(' < $(srcdir)/functions.def \ | sed -e '/DEFVAR/s|DEFVAR.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \ >>needed2.awk grep '^DEFFUNC(' < $(srcdir)/functions.def \ | sed -e '/DEFFUNC/s|DEFFUNC.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \ >>needed2.awk dummy.o: $(srcdir)/dummy.c $(srcdir)/functions.def $(CC) -c $(CFLAGS) -I. -I$(INCDIR) $(HDEFINES) $(srcdir)/dummy.c 2>/dev/null errors: dummy.o $(EXTRA_OFILES) -($(ERRORS_CC) -o dummy $(CFLAGS) $(LDFLAGS) $(ERRORS_LDFLAGS) dummy.o $(EXTRA_OFILES) $(LOADLIBES)) >errors 2>&1 || true # required-list is used when building a shared bfd/opcodes/libiberty library. required-list: Makefile echo $(REQUIRED_OFILES) > required-list $(HOST_OFILES) $(REQUIRED_OFILES) : config.h RULE1 = $(TARGETLIB) $(RULE1): $(REQUIRED_OFILES) $(DO_ALSO) .always. @$(MAKE) RULE1=not-used RULE2=$(TARGETLIB) $(FLAGS_TO_PASS) \ "HOST_OFILES=$(HOST_OFILES)" # Rule invoked by recursive make in $(RULE1). RULE2 = not-used $(RULE2): $(REQUIRED_OFILES) $(HOST_OFILES) rm -rf $(TARGETLIB) $(AR) $(AR_FLAGS) $(TARGETLIB) \ $(REQUIRED_OFILES) $(HOST_OFILES) $(RANLIB) $(TARGETLIB) stamp-picdir: if [ -n "$(PICFLAG)" ] && [ ! -d pic ]; then \ mkdir pic; \ else true; fi touch stamp-picdir .always.: # Do nothing. .PHONY: all etags tags ls clean stage1 stage2 .always. etags tags: TAGS TAGS: $(CFILES) $(HFILES) etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done` # The standalone demangler (c++filt) has been moved to binutils. demangle: @echo "The standalone demangler, now named c++filt, is now" @echo "a part of binutils." @false ls: @echo Makefile $(HFILES) $(CFILES) # Need to deal with profiled libraries, too. mostlyclean: rm -rf *.o pic core errs \#* *.E a.out rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-* rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir @$(MULTICLEAN) multi-clean DO=mostlyclean clean: mostlyclean rm -f *.a required-list tmpmulti.out @$(MULTICLEAN) multi-clean DO=clean distclean: clean @$(MULTICLEAN) multi-clean DO=distclean rm -f *~ Makefile config.status alloca-conf.h xhost-mkfrag TAGS multilib.out maintainer-clean realclean: distclean force: Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status argv.o: $(INCDIR)/libiberty.h basename.o: $(INCDIR)/libiberty.h concat.o: $(INCDIR)/libiberty.h cplus-dem.o: $(INCDIR)/demangle.h fdmatch.o: $(INCDIR)/libiberty.h fnmatch.o: $(INCDIR)/fnmatch.h getopt.o: $(INCDIR)/getopt.h getopt1.o: $(INCDIR)/getopt.h getruntime.o: $(INCDIR)/libiberty.h hex.o: $(INCDIR)/libiberty.h floatformat.o: $(INCDIR)/floatformat.h objalloc.o: $(INCDIR)/objalloc.h obstack.o: $(INCDIR)/obstack.h pexecute.o: $(INCDIR)/libiberty.h spaces.o: $(INCDIR)/libiberty.h strerror.o: $(INCDIR)/libiberty.h strsignal.o: $(INCDIR)/libiberty.h xatexit.o: $(INCDIR)/libiberty.h xexit.o: $(INCDIR)/libiberty.h xmalloc.o: $(INCDIR)/libiberty.h xstrdup.o: $(INCDIR)/libiberty.h xstrerror.o: $(INCDIR)/libiberty.h ---------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 17:20:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18938 for freebsd-ports-outgoing; Thu, 30 Apr 1998 17:20:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp6487.on.bellglobal.com (ppp7269.on.bellglobal.com [206.172.249.237]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA18874 for ; Thu, 30 Apr 1998 17:20:04 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by localhost.my.domain (8.8.8/8.8.8) with SMTP id VAA03285; Thu, 30 Apr 1998 21:17:48 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: localhost.my.domain: tim owned process doing -bs Date: Thu, 30 Apr 1998 21:17:48 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: Jacques Vidrine cc: freebsd-ports@FreeBSD.ORG Subject: Re: OK, I must be stupid (ports/6430) In-Reply-To: <199804302035.PAA11632@cerebus.nectar.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [this does not belong on -hackers!! Moved to -ports] On Thu, 30 Apr 1998, Jacques Vidrine wrote: > -------------------------- > Patching file lib/interfaces.c using Plan A... > Hunk #1 succeeded at 23. > done Are you sure that the patch you are putting in patches/ is the same as ~trafshow.patch? It is at this point that I get "Hunk #1 failed at 23.", not "Hunk #1 succeeded at 23." > --- lib/interfaces.c.ae Wed Apr 29 13:56:21 1998 > +++ lib/interfaces.c Wed Apr 29 13:56:30 1998 > @@ -23,7 +23,6 @@ > #include > #include > #include > -#include > #ifdef __FreeBSD__ > #include > #else Well, when I change it to the following, --- ... +++ lib/interfaces.c @@ -39,1 +39,0 @@ -#include it works. ;-) I think you are working with an old trafshow distfile or an old trafshow port, because the lib/interfaces.c I was looking at should be rejecting your patch. -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 17:30:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20574 for freebsd-ports-outgoing; Thu, 30 Apr 1998 17:30:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20508; Thu, 30 Apr 1998 17:30:00 -0700 (PDT) (envelope-from gnats) Date: Thu, 30 Apr 1998 17:30:00 -0700 (PDT) Message-Id: <199805010030.RAA20508@hub.freebsd.org> To: ports Cc: From: Tim Vanderhoek Subject: Re: ports/6430: trafshow 2.0 (port) can't be compiled Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6430; it has been noted by GNATS. From: Tim Vanderhoek To: Jacques Vidrine Cc: bug-followup@FreeBSd.ORG Subject: Re: ports/6430: trafshow 2.0 (port) can't be compiled Date: Thu, 30 Apr 1998 21:22:10 -0400 (EDT) On Thu, 30 Apr 1998, Jacques Vidrine wrote: > Fix, to be applied after all other patches included in the port: No, there is already one patch to lib/interfaces.c. Any further patches should be combined with that one (style guide says "two patches no patch one file"). -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 18:59:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03308 for freebsd-ports-outgoing; Thu, 30 Apr 1998 18:59:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cerebus.nectar.com (cerebus.nectar.com [204.27.67.90]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03299 for ; Thu, 30 Apr 1998 18:59:50 -0700 (PDT) (envelope-from nectar@cerebus.nectar.com) Received: from cerebus.nectar.com (localhost.communique.net [127.0.0.1]) by cerebus.nectar.com (8.8.8/8.8.8) with ESMTP id UAA13795; Thu, 30 Apr 1998 20:59:31 -0500 (CDT) Message-Id: <199805010159.UAA13795@cerebus.nectar.com> X-Mailer: exmh version 2.0.2 2/24/98 X-Pgp-Rsafprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE X-Pgp-Rsakey: http://pgp.ai.mit.edu:11371/pks/lookup?op=get&search=0x094724A9 From: Jacques Vidrine To: ac199@hwcn.org Cc: freebsd-ports@FreeBSD.ORG In-Reply-To: References: Subject: Re: OK, I must be stupid (ports/6430) Date: Thu, 30 Apr 1998 20:59:31 -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Blah .. you're right, my trafshow distfile was out of date. And my ports directory, too, by a half-dozen hours :-) So I can't reproduce the problem. Jacques Vidrine On 30 April 1998 at 21:17, Tim Vanderhoek wrote: > [this does not belong on -hackers!! Moved to -ports] > > On Thu, 30 Apr 1998, Jacques Vidrine wrote: > > > -------------------------- > > Patching file lib/interfaces.c using Plan A... > > Hunk #1 succeeded at 23. > > done > > Are you sure that the patch you are putting in patches/ is the > same as ~trafshow.patch? It is at this point that I get "Hunk #1 > failed at 23.", not "Hunk #1 succeeded at 23." > > > > --- lib/interfaces.c.ae Wed Apr 29 13:56:21 1998 > > +++ lib/interfaces.c Wed Apr 29 13:56:30 1998 > > @@ -23,7 +23,6 @@ > > #include > > #include > > #include > > -#include > > #ifdef __FreeBSD__ > > #include > > #else > > Well, when I change it to the following, > > --- ... > +++ lib/interfaces.c > @@ -39,1 +39,0 @@ > -#include > > it works. ;-) > > I think you are working with an old trafshow distfile or an old > trafshow port, because the lib/interfaces.c I was looking at > should be rejecting your patch. > > > -- > Only two other people have a .sig like this one. > -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUksgjeRhT8JRySpAQFhIQQArVdqyvaqhTiHxBns4nQp7AfxOGGKBepR nPtPsqgNNYDyXmTOxdK7+jEKxPuu/ehcDwLtSBIsqqM21EkX3k8T+GCzz7pibxNx 8Aj/IavauuzUXDGI1Md7ehx3B6fgt3YwnTRGaXK4XWNOGXxvP+WvsIujZ5M4LQX6 DFGKdQl50jY= =/X77 -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 19:03:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA03917 for freebsd-ports-outgoing; Thu, 30 Apr 1998 19:03:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA03891 for ; Thu, 30 Apr 1998 19:03:28 -0700 (PDT) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id VAA25465; Thu, 30 Apr 1998 21:00:43 -0400 (EDT) Date: Thu, 30 Apr 1998 21:00:43 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@localhost To: Peter Jeremy cc: freebsd-ports@FreeBSD.ORG Subject: Re: Circular dependency in libiberty In-Reply-To: <199805010017.KAA12929@gsms01.alcatel.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 1 May 1998, Peter Jeremy wrote: Peter, I don't feel like hammering the GNU folks yet again, so I took them off the cc: list, but they've never supported FreeBSD, altho their documentation says they do. Realize that we are currently (for FreeBSD-current) getting close to a move to ELF ... at that point, it might possibly be worth going to them yet again about this (it's already been done, but no action) but as far as what 2.2.6 has, our a.out format, well, they've never ever come close. It's not a ports problem, and neither the gdb nor the binutils support us. Our own version of binutils is modified by FreeBSDers (I think Gary Jennejohn, among others) so that it supports us. You aren't the first person to point this out to them, at this point it's really just nothing more than flame-bait. > Environment FreeBSD 2.2.5, binutils 2.9 and gdb 4.17 > > When building libiberty as part of either binutils 2.9 or gdb 4.17 with > a FreeBSD 2.x host, gnu make (3.76.1) successfully builds libiberty.a, > but reports a circular dependency. Running gnu make in the libiberty > directory after the library is successfully built gives: > pc0640% gmake > gmake[1]: Entering directory `/usr/users/jeremyp/src/binutils/libiberty' > gmake[1]: Circular vasprintf.o <- config.h dependency dropped. > gmake[1]: Leaving directory `/usr/users/jeremyp/src/binutils/libiberty' > pc0640% > > The standard FreeBSD 2.2.5 make is unable to handle the circular > dependency and exits without building the library. > > This problem does not exist on a Sun Solaris 2.x host and appears > to be related to the `EXTRA_OFILES=vasprintf.o' line in the > Makefile - it appears that the dependency handling for EXTRA_OFILES > is incorrect. > > Relevant configuration files from binutils are: > > ------- binutils/config.status: -------------------------------- > #!/bin/sh > # This file was generated automatically by configure. Do not edit. > # This directory was configured as follows: > /mnt/src/binutils-2.9/configure --host=i386-unknown-freebsd2.2.5 --target=m68k-unknown-coff --with-mmap --with-gnu-as --with-gnu-ld --enable-targets=i386-unknown-freebsd2.2.5,m68k-unknown-coff --disable-shared --norecursion > # > ------- binutils/config.cache: -------------------------------- > # This file is a shell script that caches the results of configure > # tests run on this system so they can be shared between configure > # scripts and configure runs. It is not useful on other systems. > # If it contains results you don't want to keep, you may remove or edit it. > # > # By default, configure uses ./config.cache as the cache file, > # creating it if it does not exist already. You can give configure > # the --cache-file=FILE option to use a different cache file; that is > # what configure does when it calls configure scripts in > # subdirectories, so they share the cache. > # Giving --cache-file=/dev/null disables caching, for debugging configure. > # config.status only pays attention to the cache file if you give it the > # --recheck option to rerun configure. > # > ac_cv_prog_cc_works=${ac_cv_prog_cc_works='yes'} > bfd_cv_decl_needed_getenv=${bfd_cv_decl_needed_getenv='no'} > ac_cv_lib_fl_yywrap=${ac_cv_lib_fl_yywrap='yes'} > gas_cv_decl_needed_malloc=${gas_cv_decl_needed_malloc='no'} > ac_cv_header_varargs_h=${ac_cv_header_varargs_h='yes'} > bfd_cv_decl_needed_strstr=${bfd_cv_decl_needed_strstr='no'} > ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h='yes'} > bfd_cv_decl_needed_free=${bfd_cv_decl_needed_free='no'} > ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h='yes'} > am_cv_mingw32=${am_cv_mingw32='no'} > bu_cv_decl_time_t_time_h=${bu_cv_decl_time_t_time_h='yes'} > ac_cv_prog_cc_g=${ac_cv_prog_cc_g='yes'} > ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -c'} > ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h='yes'} > ac_cv_header_dirent_dirent_h=${ac_cv_header_dirent_dirent_h='yes'} > ac_cv_func_mprotect=${ac_cv_func_mprotect='yes'} > ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped='yes'} > ac_cv_prog_gnu_ld=${ac_cv_prog_gnu_ld='no'} > ac_cv_prog_RANLIB=${ac_cv_prog_RANLIB='ranlib'} > ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h='yes'} > bfd_cv_decl_needed_realloc=${bfd_cv_decl_needed_realloc='no'} > ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h='yes'} > ac_cv_prog_YACC=${ac_cv_prog_YACC='bison -y'} > ac_cv_func_fcntl=${ac_cv_func_fcntl='yes'} > ac_cv_path_LD=${ac_cv_path_LD='/usr/bin/ld'} > ac_cv_prog_CC=${ac_cv_prog_CC='gcc'} > am_cv_exeext=${am_cv_exeext='no'} > ac_cv_prog_lex_root=${ac_cv_prog_lex_root='lex.yy'} > ac_cv_func_sysconf=${ac_cv_func_sysconf='yes'} > ac_cv_prog_LN_S=${ac_cv_prog_LN_S='ln -s'} > ac_cv_header_alloca_h=${ac_cv_header_alloca_h='no'} > ac_cv_func_alloca_works=${ac_cv_func_alloca_works='yes'} > bfd_cv_decl_needed_sbrk=${bfd_cv_decl_needed_sbrk='no'} > ac_cv_func_unlink=${ac_cv_func_unlink='yes'} > gas_cv_decl_needed_strstr=${gas_cv_decl_needed_strstr='no'} > bu_cv_decl_time_t_types_h=${bu_cv_decl_time_t_types_h='yes'} > ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h='yes'} > gas_cv_decl_needed_free=${gas_cv_decl_needed_free='no'} > ac_cv_header_time=${ac_cv_header_time='yes'} > ac_cv_header_strings_h=${ac_cv_header_strings_h='yes'} > bu_cv_header_utime_h=${bu_cv_header_utime_h='yes'} > ac_cv_lib_dir_opendir=${ac_cv_lib_dir_opendir='no'} > bfd_cv_decl_needed_malloc=${bfd_cv_decl_needed_malloc='no'} > ac_cv_prog_make_make_set=${ac_cv_prog_make_make_set='yes'} > ac_cv_header_unistd_h=${ac_cv_header_unistd_h='yes'} > ac_cv_header_string_h=${ac_cv_header_string_h='yes'} > ac_cv_c_inline=${ac_cv_c_inline='inline'} > ac_cv_header_time_h=${ac_cv_header_time_h='yes'} > ac_cv_path_NM=${ac_cv_path_NM='/usr/bin/nm -p'} > ac_cv_func_utimes=${ac_cv_func_utimes='yes'} > ac_cv_header_memory_h=${ac_cv_header_memory_h='yes'} > gas_cv_assert_ok=${gas_cv_assert_ok='yes'} > ac_cv_prog_cc_cross=${ac_cv_prog_cc_cross='no'} > ac_cv_prog_gcc=${ac_cv_prog_gcc='yes'} > ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h='yes'} > ac_cv_header_errno_h=${ac_cv_header_errno_h='yes'} > ac_cv_prog_AR=${ac_cv_prog_AR='ar'} > ac_cv_func_madvise=${ac_cv_func_madvise='yes'} > ac_cv_prog_CPP=${ac_cv_prog_CPP='gcc -E'} > ac_cv_func_sbrk=${ac_cv_func_sbrk='yes'} > ac_cv_func_getpagesize=${ac_cv_func_getpagesize='yes'} > ac_cv_prog_lex_yytext_pointer=${ac_cv_prog_lex_yytext_pointer='yes'} > ac_cv_func_setitimer=${ac_cv_func_setitimer='yes'} > ac_cv_header_stddef_h=${ac_cv_header_stddef_h='yes'} > bfd_cv_decl_needed_fprintf=${bfd_cv_decl_needed_fprintf='no'} > gas_cv_decl_needed_errno=${gas_cv_decl_needed_errno='no'} > am_cv_cygwin32=${am_cv_cygwin32='no'} > ac_cv_prog_LEX=${ac_cv_prog_LEX='flex'} > gas_cv_decl_needed_sbrk=${gas_cv_decl_needed_sbrk='no'} > ac_cv_func_fdopen=${ac_cv_func_fdopen='yes'} > ------- binutils/libiberty/config.status: ---------- > #!/bin/sh > # This file was generated automatically by configure. Do not edit. > # This directory was configured as follows: > /mnt/src/binutils-2.9/configure --host=i386-unknown-freebsd2.2.5 --target=m68k-unknown-coff --srcdir=/mnt/src/binutils-2.9/libiberty --with-mmap --with-gnu-as --with-gnu-ld --with-gnu-as --with-gnu-ld --enable-targets=i386-unknown-freebsd2.2.5,m68k-unknown-coff --disable-shared --cache-file=../config.cache --norecursion > # using "xhost-mkfrag" > -------- binutils/libiberty/Makefile: --------- > # This file was generated automatically by configure. Do not edit. > VPATH = /mnt/src/binutils-2.9/libiberty > links = alloca-conf.h > host_alias = i386-unknown-freebsd2.2.5 > host_cpu = i386 > host_vendor = unknown > host_os = freebsd2.2.5 > host_canonical = i386-unknown-freebsd2.2.5 > target_alias = m68k-unknown-coff > target_cpu = m68k > target_vendor = unknown > target_os = coff > target_canonical = m68k-unknown-coff > build_alias = i386-unknown-freebsd2.2.5 > build_cpu = i386 > build_vendor = unknown > build_os = freebsd2.2.5 > build_canonical = i386-unknown-freebsd2.2.5 > host_makefile_frag = xhost-mkfrag > gxx_include_dir = ${prefix}/include/g++ > # > # Makefile > # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 Free Software Foundation > # > # This file is part of the libiberty library. > # Libiberty is free software; you can redistribute it and/or > # modify it under the terms of the GNU Library General Public > # License as published by the Free Software Foundation; either > # version 2 of the License, or (at your option) any later version. > # > # Libiberty is distributed in the hope that it will be useful, > # but WITHOUT ANY WARRANTY; without even the implied warranty of > # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > # Library General Public License for more details. > # > # You should have received a copy of the GNU Library General Public > # License along with libiberty; see the file COPYING.LIB. If not, > # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, > # Boston, MA 02111-1307, USA. > # > > # This file was written, and is maintained by K. Richard Pixley > # . > > # > # Makefile for libiberty directory > # > > srcdir = /mnt/src/binutils-2.9/libiberty > > prefix = /usr/local > > exec_prefix = $(prefix) > bindir = ${exec_prefix}/bin > libdir = ${exec_prefix}/lib > > datadir = ${prefix}/share > > mandir = ${prefix}/man > man1dir = $(mandir)/man1 > man2dir = $(mandir)/man2 > man3dir = $(mandir)/man3 > man4dir = $(mandir)/man4 > man5dir = $(mandir)/man5 > man6dir = $(mandir)/man6 > man7dir = $(mandir)/man7 > man8dir = $(mandir)/man8 > man9dir = $(mandir)/man9 > infodir = ${prefix}/info > includedir = ${prefix}/include > > SHELL = /bin/sh > > # Multilib support variables. > MULTISRCTOP = > MULTIBUILDTOP = > MULTIDIRS = > MULTISUBDIR = > MULTIDO = true > MULTICLEAN = true > > INSTALL = $(SHELL) $(srcdir)/../install-sh -c > INSTALL_PROGRAM = $(INSTALL) > INSTALL_DATA = $(INSTALL) > > AR = ar > AR_FLAGS = rc > > ERRORS_CC = $(CC) > CC = gcc > CFLAGS = -g -O2 > LIBCFLAGS = $(CFLAGS) > MAKEINFO = makeinfo > RANLIB = ranlib > > PICFLAG = > > MAKEOVERRIDES = > > TARGETLIB = libiberty.a > > CONFIG_H = lconfig.h > NEEDED_LIST = lneeded-list > > # HOST_OFILES contains the list of objects that should be in the > # library (in addition to the REQUIRED_OFILES and EXTRA_OFILES). > # A configuration may override this with a fixed list a object files > # names (hard to maintain), or some other way to generate a list. > HOST_OFILES=`cat needed-list` > > # Extra targets that the top-level target depends on. > # Specifically, what needs to be made before HOST_OFILES can be used. > # Can be empty if HOST_OFILES is just a list of file names. > DO_ALSO = needed-list > > # A configuration can specify extra .o files that should be included, > # even if they are in libc. (Perhaps the libc version is buggy.) > EXTRA_OFILES = > > # Flags to pass to a recursive make. > FLAGS_TO_PASS = \ > "AR=$(AR)" \ > "AR_FLAGS=$(AR_FLAGS)" \ > "CC=$(CC)" \ > "CFLAGS=$(CFLAGS)" \ > "LIBCFLAGS=$(LIBCFLAGS)" \ > "EXTRA_OFILES=$(EXTRA_OFILES)" \ > "HDEFINES=$(HDEFINES)" \ > "INSTALL=$(INSTALL)" \ > "INSTALL_DATA=$(INSTALL_DATA)" \ > "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ > "LDFLAGS=$(LDFLAGS)" \ > "LOADLIBES=$(LOADLIBES)" \ > "PICFLAG=$(PICFLAG)" \ > "RANLIB=$(RANLIB)" \ > "SHELL=$(SHELL)" > > all: stamp-picdir $(TARGETLIB) required-list > @if [ "$(RULE1)" != "not-used" ]; then \ > $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all; \ > else true; \ > fi > > .PHONY: check installcheck > check installcheck: > > > #### Host, target, and site specific Makefile fragments come in here. > # Warning: this fragment is automatically generated > # Following fragment copied from /mnt/src/binutils-2.9/libiberty/config/mh-fbsd21 > EXTRA_OFILES=vasprintf.o > ### > > INCDIR=$(srcdir)/$(MULTISRCTOP)../include > > COMPILE.c = $(CC) -c $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) > .c.o: > test -z "$(PICFLAG)" || \ > $(COMPILE.c) $(PICFLAG) $< -o pic/$@ > $(COMPILE.c) $< > > # The default target just invokes make recursively. > # However, the automatic configuration (in config/mh_default). > # first causes it to figure out the objects missing in libc. > info install-info clean-info dvi: > > # Include files that are in this directory. > HFILES = > > # NOTE: If you add new files to the library, add them to this list > # (alphabetical), and add them to REQUIRED_OFILES or 'functions.def'. > CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c bzero.c \ > choose-temp.c clock.c concat.c cplus-dem.c fdmatch.c fnmatch.c \ > getcwd.c getopt.c getopt1.c getpagesize.c getruntime.c \ > floatformat.c hex.c index.c insque.c \ > memchr.c memcmp.c memcpy.c memmove.c memset.c objalloc.c \ > obstack.c pexecute.c random.c rename.c rindex.c sigsetmask.c spaces.c \ > strcasecmp.c strncasecmp.c \ > strchr.c strdup.c strerror.c strrchr.c strsignal.c \ > strstr.c strtod.c strtol.c strtoul.c tmpnam.c \ > vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \ > xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c > # These are always included in the library. > REQUIRED_OFILES = argv.o basename.o choose-temp.o concat.o cplus-dem.o \ > fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \ > floatformat.o objalloc.o obstack.o pexecute.o spaces.o strerror.o \ > strsignal.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o > > # Do we want/need any config overrides? > # > > STAGESTUFF = $(TARGETLIB) *.o > > INSTALL_DEST = libdir > install: install_to_$(INSTALL_DEST) > > install_to_libdir: all > $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n > ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n ) > mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB).n $(libdir)$(MULTISUBDIR)/$(TARGETLIB) > @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install > > install_to_tooldir: all > $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n > ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB).n ) > mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB).n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB) > @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install > > # The default configuration adds to libiberty all those functions that are > # missing in libc. More precisely, it includes whatever $(CC) fails to find. > # Then a sed+awk combination translates the ld error messages into > # a list of .o files. > > stamp-needed: stamp-picdir $(NEEDED_LIST) > cp $(NEEDED_LIST) needed-tmp > $(SHELL) $(srcdir)/$(MULTISRCTOP)../move-if-change needed-tmp needed-list > touch stamp-needed > > needed-list: stamp-needed ; @true > > lneeded-list: $(EXTRA_OFILES) needed.awk errors > rm -f lneeded-list > f=""; \ > for i in `awk -f needed.awk case " $$f " in \ > *" $$i "*) ;; \ > *) f="$$f $$i" ;; \ > esac ; \ > done ; \ > case $$f in \ > *alloca.o*) f="$$f xmalloc.o xexit.o" ;; \ > esac ; \ > echo $$f >>lneeded-list > > # Generate an awk script that looks for functions in functions.def > > needed.awk: $(srcdir)/functions.def Makefile > echo "# !Automatically generated from $(srcdir)/functions.def"\ > "- DO NOT EDIT!" >needed.awk > grep '^DEF(' < $(srcdir)/functions.def \ > | sed -e '/DEF/s|DEF.\([^,]*\).*|/\1/ { printf "\1.o " }|' \ > >>needed.awk > > stamp-config: $(CONFIG_H) > cp $(CONFIG_H) config.tmp > $(SHELL) $(srcdir)/$(MULTISRCTOP)../move-if-change config.tmp config.h > touch stamp-config > > config.h: stamp-config ; @true > > lconfig.h: needed2.awk errors > echo "/* !Automatically generated from $(srcdir)/functions.def"\ > "- DO NOT EDIT! */" >lconfig.h > awk -f needed2.awk >lconfig.h > > # Generate an awk script that looks for variables in functions.def > > needed2.awk: $(srcdir)/functions.def Makefile > echo "# !Automatically generated from $(srcdir)/functions.def"\ > "- DO NOT EDIT!" >needed2.awk > grep '^DEFVAR(' < $(srcdir)/functions.def \ > | sed -e '/DEFVAR/s|DEFVAR.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \ > >>needed2.awk > grep '^DEFFUNC(' < $(srcdir)/functions.def \ > | sed -e '/DEFFUNC/s|DEFFUNC.\([^,]*\).*|/\1/ { printf "#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \ > >>needed2.awk > > dummy.o: $(srcdir)/dummy.c $(srcdir)/functions.def > $(CC) -c $(CFLAGS) -I. -I$(INCDIR) $(HDEFINES) $(srcdir)/dummy.c 2>/dev/null > > errors: dummy.o $(EXTRA_OFILES) > -($(ERRORS_CC) -o dummy $(CFLAGS) $(LDFLAGS) $(ERRORS_LDFLAGS) dummy.o $(EXTRA_OFILES) $(LOADLIBES)) >errors 2>&1 || true > > # required-list is used when building a shared bfd/opcodes/libiberty library. > required-list: Makefile > echo $(REQUIRED_OFILES) > required-list > > $(HOST_OFILES) $(REQUIRED_OFILES) : config.h > > RULE1 = $(TARGETLIB) > $(RULE1): $(REQUIRED_OFILES) $(DO_ALSO) .always. > @$(MAKE) RULE1=not-used RULE2=$(TARGETLIB) $(FLAGS_TO_PASS) \ > "HOST_OFILES=$(HOST_OFILES)" > > # Rule invoked by recursive make in $(RULE1). > RULE2 = not-used > $(RULE2): $(REQUIRED_OFILES) $(HOST_OFILES) > rm -rf $(TARGETLIB) > $(AR) $(AR_FLAGS) $(TARGETLIB) \ > $(REQUIRED_OFILES) $(HOST_OFILES) > $(RANLIB) $(TARGETLIB) > > stamp-picdir: > if [ -n "$(PICFLAG)" ] && [ ! -d pic ]; then \ > mkdir pic; \ > else true; fi > touch stamp-picdir > > .always.: > # Do nothing. > > .PHONY: all etags tags ls clean stage1 stage2 .always. > > etags tags: TAGS > > TAGS: $(CFILES) $(HFILES) > etags `for i in $(HFILES) $(CFILES); do echo $(srcdir)/$$i ; done` > > # The standalone demangler (c++filt) has been moved to binutils. > demangle: > @echo "The standalone demangler, now named c++filt, is now" > @echo "a part of binutils." > @false > > ls: > @echo Makefile $(HFILES) $(CFILES) > > # Need to deal with profiled libraries, too. > > mostlyclean: > rm -rf *.o pic core errs \#* *.E a.out > rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-* > rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir > @$(MULTICLEAN) multi-clean DO=mostlyclean > clean: mostlyclean > rm -f *.a required-list tmpmulti.out > @$(MULTICLEAN) multi-clean DO=clean > distclean: clean > @$(MULTICLEAN) multi-clean DO=distclean > rm -f *~ Makefile config.status alloca-conf.h xhost-mkfrag TAGS multilib.out > maintainer-clean realclean: distclean > > force: > > Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) > $(SHELL) ./config.status > > argv.o: $(INCDIR)/libiberty.h > basename.o: $(INCDIR)/libiberty.h > concat.o: $(INCDIR)/libiberty.h > cplus-dem.o: $(INCDIR)/demangle.h > fdmatch.o: $(INCDIR)/libiberty.h > fnmatch.o: $(INCDIR)/fnmatch.h > getopt.o: $(INCDIR)/getopt.h > getopt1.o: $(INCDIR)/getopt.h > getruntime.o: $(INCDIR)/libiberty.h > hex.o: $(INCDIR)/libiberty.h > floatformat.o: $(INCDIR)/floatformat.h > objalloc.o: $(INCDIR)/objalloc.h > obstack.o: $(INCDIR)/obstack.h > pexecute.o: $(INCDIR)/libiberty.h > spaces.o: $(INCDIR)/libiberty.h > strerror.o: $(INCDIR)/libiberty.h > strsignal.o: $(INCDIR)/libiberty.h > xatexit.o: $(INCDIR)/libiberty.h > xexit.o: $(INCDIR)/libiberty.h > xmalloc.o: $(INCDIR)/libiberty.h > xstrdup.o: $(INCDIR)/libiberty.h > xstrerror.o: $(INCDIR)/libiberty.h > ---------------------------------------------------------------- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 19:20:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA05848 for freebsd-ports-outgoing; Thu, 30 Apr 1998 19:20:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA05793; Thu, 30 Apr 1998 19:20:05 -0700 (PDT) (envelope-from gnats) Date: Thu, 30 Apr 1998 19:20:05 -0700 (PDT) Message-Id: <199805010220.TAA05793@hub.freebsd.org> To: ports Cc: From: Jacques Vidrine Subject: Re: ports/6430: trafshow 2.0 (port) can't be compiled Reply-To: Jacques Vidrine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6430; it has been noted by GNATS. From: Jacques Vidrine To: ac199@hwcn.org Cc: bug-followup@FreeBSd.ORG Subject: Re: ports/6430: trafshow 2.0 (port) can't be compiled Date: Thu, 30 Apr 1998 21:14:39 -0500 -----BEGIN PGP SIGNED MESSAGE----- Hmm, OK. I'm off to find the style guide for next time. Meanwhile, I see a fix has been committed for the problem, though I think the wrong fix. lib/interfaces.c wouldn't compile because it included , which references struct slcompress. The distribution shouldn't have included , at least not on BSD4.4lite. That header is only needed for struct sl_softc, which trafshow does not reference. Anyway, the name seems to indicate that it should only be included in kernel sources. The fix that was committed just imported all the stuff struct slcompress needed (, , ), which doesn't seem like the right thing. Thanks, Jacques Vidrine On 30 April 1998 at 21:22, Tim Vanderhoek wrote: > On Thu, 30 Apr 1998, Jacques Vidrine wrote: > > > Fix, to be applied after all other patches included in the port: > > No, there is already one patch to lib/interfaces.c. Any further > patches should be combined with that one (style guide says "two > patches no patch one file"). > > > -- > Only two other people have a .sig like this one. > -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNUkwDjeRhT8JRySpAQFdjAQAiHQCJvHIkgzd+FvwvBq9ljqRcB1fQbSX DYi++9weYebT9KdibFoM42auBnAjyURsanoH0Cicfc9yCmGn3WVp/KjPylT8okee ytL5c5Qvms8Z/PsfAPyOUwZohRgoL/rqspfkeqMtdVnEJqwPIg1rUJAoyFSuDett DyosdRZGIJw= =3fnG -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 20:30:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16127 for freebsd-ports-outgoing; Thu, 30 Apr 1998 20:30:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16111; Thu, 30 Apr 1998 20:30:35 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15535; Thu, 30 Apr 1998 20:28:35 -0700 (PDT) Date: Thu, 30 Apr 1998 20:28:35 -0700 (PDT) Message-Id: <199805010328.UAA15535@freefall.freebsd.org> To: Yoshio.Mita@isen.fr, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/4937 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: A looks-nice audio level meter port is now available! State-Changed-From-To: open-feedback State-Changed-By: mph State-Changed-When: Thu Apr 30 23:27:27 EDT 1998 State-Changed-Why: I updated this to 0.8c, but the level meter never showed anything with a CD playing. I am using Luigi's sound driver. Is this program perhaps limited to the Voxware driver? Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Thu Apr 30 23:27:27 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Apr 30 20:40:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA18232 for freebsd-ports-outgoing; Thu, 30 Apr 1998 20:40:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA18221; Thu, 30 Apr 1998 20:40:25 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id XAA19180; Thu, 30 Apr 1998 23:40:25 -0400 (EDT) (envelope-from mph) Message-ID: <19980430234024.A19165@mph124.rh.psu.edu> Date: Thu, 30 Apr 1998 23:40:24 -0400 From: Matthew Hunt To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Port of trn4 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi, I'd like to do a port of trn 4.0, which is in beta testing but quite popular judging from X-Newsreader headers on Usenet. Would you like to do a repository copy from trn to, say, trn4? Matt -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 00:54:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15422 for freebsd-ports-outgoing; Fri, 1 May 1998 00:54:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA15417 for ; Fri, 1 May 1998 00:54:26 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (wck-ca22-54.ix.netcom.com [207.92.174.182]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA00191; Fri, 1 May 1998 00:54:15 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA28793; Fri, 1 May 1998 00:54:11 -0700 (PDT) Date: Fri, 1 May 1998 00:54:11 -0700 (PDT) Message-Id: <199805010754.AAA28793@silvia.HIP.Berkeley.EDU> To: mph@pobox.com CC: ports@FreeBSD.ORG In-reply-to: <19980430234024.A19165@mph124.rh.psu.edu> (message from Matthew Hunt on Thu, 30 Apr 1998 23:40:24 -0400) Subject: Re: Port of trn4 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I'd like to do a port of trn 4.0, which is in beta testing but * quite popular judging from X-Newsreader headers on Usenet. * Would you like to do a repository copy from trn to, say, trn4? Dun. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 01:34:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18716 for freebsd-ports-outgoing; Fri, 1 May 1998 01:34:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA18711 for ; Fri, 1 May 1998 01:34:41 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.0.Beta7/frmug-2.3/nospam) with UUCP id KAA02727 for ports@FreeBSD.ORG; Fri, 1 May 1998 10:34:39 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: (from roberto@localhost) by keltia.freenix.fr (8.9.0.Beta4/keltia-2.14/nospam) id KAA29930 for ports@FreeBSD.ORG; Fri, 1 May 1998 10:32:45 +0200 (CEST) (envelope-from roberto) Message-ID: <19980501103245.A29927@keltia.freenix.fr> Date: Fri, 1 May 1998 10:32:45 +0200 From: Ollivier Robert To: ports@FreeBSD.ORG Subject: Re: Port of trn4 Mail-Followup-To: ports@FreeBSD.ORG References: <19980430234024.A19165@mph124.rh.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.92.3i In-Reply-To: <19980430234024.A19165@mph124.rh.psu.edu>; from Matthew Hunt on Thu, Apr 30, 1998 at 11:40:24PM -0400 X-Operating-System: FreeBSD 3.0-CURRENT ctm#4245 AMD-K6 MMX @ 225 MHz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Matthew Hunt: > I'd like to do a port of trn 4.0, which is in beta testing but > quite popular judging from X-Newsreader headers on Usenet. > Would you like to do a repository copy from trn to, say, trn4? Did you ask Wayne before this ? As trn4 is still not released, it'd better to ask him before, escpecially of you want to replace 3.6. Ollivier, old trn user :-) -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #8: Tue Apr 21 02:45:53 CEST 1998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 02:18:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA22077 for freebsd-ports-outgoing; Fri, 1 May 1998 02:18:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA22072 for ; Fri, 1 May 1998 02:18:57 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.HIP.Berkeley.EDU (wck-ca22-54.ix.netcom.com [207.92.174.182]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA00355; Fri, 1 May 1998 02:18:56 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA29029; Fri, 1 May 1998 02:18:49 -0700 (PDT) Date: Fri, 1 May 1998 02:18:49 -0700 (PDT) Message-Id: <199805010918.CAA29029@silvia.HIP.Berkeley.EDU> To: roberto@keltia.freenix.fr CC: ports@FreeBSD.ORG In-reply-to: <19980501103245.A29927@keltia.freenix.fr> (message from Ollivier Robert on Fri, 1 May 1998 10:32:45 +0200) Subject: Re: Port of trn4 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * > I'd like to do a port of trn 4.0, which is in beta testing but * > quite popular judging from X-Newsreader headers on Usenet. * > Would you like to do a repository copy from trn to, say, trn4? * * Did you ask Wayne before this ? As trn4 is still not released, it'd better * to ask him before, escpecially of you want to replace 3.6. Well, he said he doesn't intend to replace 3.6. It's going to be in a separate directory. By the way, please don't forget to set NO_LATEST_LINK in trn4/Makefile until (at least) it comes out of beta. > mph Satoshi (oops, it says NO_PACKAGE, but anyway...) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 03:20:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27547 for freebsd-ports-outgoing; Fri, 1 May 1998 03:20:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27531; Fri, 1 May 1998 03:20:02 -0700 (PDT) (envelope-from gnats) Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA26955 for ; Fri, 1 May 1998 03:13:42 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by rich.chel.su (8.7.2/Murphy) with ESMTP id QAA20845 for ; Fri, 1 May 1998 16:13:44 +0600 (UDT) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id OAA08125; Fri, 1 May 1998 14:18:11 +0400 (MSD) Message-Id: <199805011018.OAA08125@icc.surw.chel.su> Date: Fri, 1 May 1998 14:18:11 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6473: New port: libshhmsg-1.3.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6473 >Category: ports >Synopsis: New port: libshhmsg-1.3.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 1 03:20:01 PDT 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a port of library for displaying messages. It contains C-functions for error messages, verbose messages and `normal' messages in terminalbased programs. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # libshhmsg-1.3.3 # libshhmsg-1.3.3/Makefile # libshhmsg-1.3.3/pkg # libshhmsg-1.3.3/pkg/PLIST # libshhmsg-1.3.3/pkg/COMMENT # libshhmsg-1.3.3/pkg/DESCR # libshhmsg-1.3.3/files # libshhmsg-1.3.3/files/md5 # libshhmsg-1.3.3/patches # libshhmsg-1.3.3/patches/patch-aa # echo c - libshhmsg-1.3.3 mkdir -p libshhmsg-1.3.3 > /dev/null 2>&1 echo x - libshhmsg-1.3.3/Makefile sed 's/^X//' >libshhmsg-1.3.3/Makefile << 'END-of-libshhmsg-1.3.3/Makefile' X# New ports collection makefile for: libshhmsg X# Version required: 1.3.3 X# Date created: 1 May 1998 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= shhmsg-1.3.3 XPKGNAME= libshhmsg-1.3.3 XCATEGORIES= devel XMASTER_SITES= http://www.computas.no/users/shh/pub-unix/files/ X XMAINTAINER= andy@icc.surw.chel.su X XUSE_GMAKE= yes X Xdo-install: X @ ${INSTALL_DATA} ${WRKSRC}/shhmsg.h ${PREFIX}/include X @ ${INSTALL_DATA} ${WRKSRC}/libshhmsg.so.1.3.3 ${PREFIX}/lib X @ ln -s ${WRKSRC}/libshhmsg.so.1.3.3 ${PREFIX}/lib/libshhmsg.so X @ ${MKDIR} ${PREFIX}/share/doc/libshhmsg X.for file in CREDITS README shhmsg.txt X @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/libshhmsg X.endfor X X.include END-of-libshhmsg-1.3.3/Makefile echo c - libshhmsg-1.3.3/pkg mkdir -p libshhmsg-1.3.3/pkg > /dev/null 2>&1 echo x - libshhmsg-1.3.3/pkg/PLIST sed 's/^X//' >libshhmsg-1.3.3/pkg/PLIST << 'END-of-libshhmsg-1.3.3/pkg/PLIST' Xinclude/shhmsg.h Xlib/libshhmsg.so.1.3.3 Xlib/libshhmsg.so X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -m %D/lib Xshare/doc/libshhmsg/CREDITS Xshare/doc/libshhmsg/README Xshare/doc/libshhmsg/shhmsg.txt X@dirrm share/doc/libshhmsg END-of-libshhmsg-1.3.3/pkg/PLIST echo x - libshhmsg-1.3.3/pkg/COMMENT sed 's/^X//' >libshhmsg-1.3.3/pkg/COMMENT << 'END-of-libshhmsg-1.3.3/pkg/COMMENT' Xlibrary for displaying messages. END-of-libshhmsg-1.3.3/pkg/COMMENT echo x - libshhmsg-1.3.3/pkg/DESCR sed 's/^X//' >libshhmsg-1.3.3/pkg/DESCR << 'END-of-libshhmsg-1.3.3/pkg/DESCR' Xshhmsg - library for displaying messages. It contains XC-functions for error messages, verbose messages and X`normal' messages in terminalbased programs. END-of-libshhmsg-1.3.3/pkg/DESCR echo c - libshhmsg-1.3.3/files mkdir -p libshhmsg-1.3.3/files > /dev/null 2>&1 echo x - libshhmsg-1.3.3/files/md5 sed 's/^X//' >libshhmsg-1.3.3/files/md5 << 'END-of-libshhmsg-1.3.3/files/md5' XMD5 (shhmsg-1.3.3.tar.gz) = 8648e4b8dc2f1cee1e9e13c49739d88e END-of-libshhmsg-1.3.3/files/md5 echo c - libshhmsg-1.3.3/patches mkdir -p libshhmsg-1.3.3/patches > /dev/null 2>&1 echo x - libshhmsg-1.3.3/patches/patch-aa sed 's/^X//' >libshhmsg-1.3.3/patches/patch-aa << 'END-of-libshhmsg-1.3.3/patches/patch-aa' X--- Makefile Tue May 27 21:11:06 1997 X+++ /home/andy/tmp/wrk/Makefile Fri May 1 13:03:10 1998 X@@ -6,7 +6,7 @@ X VERSION = $(VERMAJ).$(VERMIN).$(VERPAT) X X # Define SHARED as 1 for Linux shared ELF library X-#SHARED = 1 X+SHARED = 1 X X ifeq ($(SHARED),1) X LIBTARGET = lib$(DIST).so.$(VERSION) X@@ -32,7 +32,7 @@ X X INCDIR = -I. X X-CCOPT = -s -Wall $(OPTIM) $(INCDIR) X+CCOPT = -s -Wall $(OPTIM) $(INCDIR) -D_POSIX_SOURCE X X # Object files to store in the library X LIBOBJS = vars.o streams.o progname.o \ X@@ -43,7 +43,7 @@ X X $(LIBTARGET): $(LIBOBJS) X ifeq ($(SHARED),1) X- $(CC) -shared -Wl,-soname,$(LIBTARGETSOMAJ) -o $(LIBTARGET) $(LIBOBJS) X+ $(CC) -shared -o $(LIBTARGET) $(LIBOBJS) X else X ar rcs $(LIBTARGET) $(LIBOBJS) X endif END-of-libshhmsg-1.3.3/patches/patch-aa exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 03:30:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA28577 for freebsd-ports-outgoing; Fri, 1 May 1998 03:30:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA28537; Fri, 1 May 1998 03:30:02 -0700 (PDT) (envelope-from gnats) Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27977 for ; Fri, 1 May 1998 03:25:10 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by rich.chel.su (8.7.2/Murphy) with ESMTP id QAA20975 for ; Fri, 1 May 1998 16:25:14 +0600 (UDT) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id OAA08265; Fri, 1 May 1998 14:29:41 +0400 (MSD) Message-Id: <199805011029.OAA08265@icc.surw.chel.su> Date: Fri, 1 May 1998 14:29:41 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6474: New port: libxalloc-1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6474 >Category: ports >Synopsis: New port: libxalloc-1.0.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 1 03:30:01 PDT 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a port of memory allocation library with error checking. It contains wrappers including error checking for memory allocating C-functions. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # libxalloc-1.0.2 # libxalloc-1.0.2/Makefile # libxalloc-1.0.2/files # libxalloc-1.0.2/files/md5 # libxalloc-1.0.2/patches # libxalloc-1.0.2/patches/patch-aa # libxalloc-1.0.2/pkg # libxalloc-1.0.2/pkg/PLIST # libxalloc-1.0.2/pkg/COMMENT # libxalloc-1.0.2/pkg/DESCR # echo c - libxalloc-1.0.2 mkdir -p libxalloc-1.0.2 > /dev/null 2>&1 echo x - libxalloc-1.0.2/Makefile sed 's/^X//' >libxalloc-1.0.2/Makefile << 'END-of-libxalloc-1.0.2/Makefile' X# New ports collection makefile for: libxalloc X# Version required: 1.0.2 X# Date created: 12 April 1998 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= xalloc-1.0.2 XPKGNAME= libxalloc-1.0.2 XCATEGORIES= devel XMASTER_SITES= http://www.computas.no/users/shh/pub-unix/files/ X XMAINTAINER= andy@icc.surw.chel.su X XUSE_GMAKE= yes X Xdo-install: X @ ${INSTALL_DATA} ${WRKSRC}/xalloc.h ${PREFIX}/include X @ ${INSTALL_DATA} ${WRKSRC}/libxalloc.so.1.0.2 ${PREFIX}/lib X @ ln -s ${WRKSRC}/libxalloc.so.1.0.2 ${PREFIX}/lib/libxalloc.so X @ ${MKDIR} ${PREFIX}/share/doc/libxalloc X @ ${INSTALL_DATA} ${WRKSRC}/CREDITS ${PREFIX}/share/doc/libxalloc X @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/libxalloc X X.include END-of-libxalloc-1.0.2/Makefile echo c - libxalloc-1.0.2/files mkdir -p libxalloc-1.0.2/files > /dev/null 2>&1 echo x - libxalloc-1.0.2/files/md5 sed 's/^X//' >libxalloc-1.0.2/files/md5 << 'END-of-libxalloc-1.0.2/files/md5' XMD5 (xalloc-1.0.2.tar.gz) = 54d4d936b5111475f0ea6a4943622323 END-of-libxalloc-1.0.2/files/md5 echo c - libxalloc-1.0.2/patches mkdir -p libxalloc-1.0.2/patches > /dev/null 2>&1 echo x - libxalloc-1.0.2/patches/patch-aa sed 's/^X//' >libxalloc-1.0.2/patches/patch-aa << 'END-of-libxalloc-1.0.2/patches/patch-aa' X--- Makefile Sun Mar 23 08:58:03 1997 X+++ /home/andy/tmp/wrk/Makefile Fri May 1 13:20:29 1998 X@@ -8,7 +8,7 @@ X ########################################################################### X X # Define SHARED as 1 for Linux shared ELF library X-#SHARED = 1 X+SHARED = 1 X X ifeq ($(SHARED),1) X LIBTARGET = lib$(DIST).so.$(VERSION) X@@ -50,7 +50,7 @@ X X $(LIBTARGET): $(LIBOBJS) X ifeq ($(SHARED),1) X- $(CC) -shared -Wl,-soname,$(LIBTARGETSOMAJ) -o $(LIBTARGET) $(LIBOBJS) X+ $(CC) -shared -o $(LIBTARGET) $(LIBOBJS) X else X ar rcs $(LIBTARGET) $(LIBOBJS) X endif END-of-libxalloc-1.0.2/patches/patch-aa echo c - libxalloc-1.0.2/pkg mkdir -p libxalloc-1.0.2/pkg > /dev/null 2>&1 echo x - libxalloc-1.0.2/pkg/PLIST sed 's/^X//' >libxalloc-1.0.2/pkg/PLIST << 'END-of-libxalloc-1.0.2/pkg/PLIST' Xinclude/xalloc.h Xlib/libxalloc.so.1.0.2 Xlib/libxalloc.so X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -m %D/lib Xshare/doc/libxalloc/CREDITS Xshare/doc/libxalloc/README X@dirrm share/doc/libxalloc END-of-libxalloc-1.0.2/pkg/PLIST echo x - libxalloc-1.0.2/pkg/COMMENT sed 's/^X//' >libxalloc-1.0.2/pkg/COMMENT << 'END-of-libxalloc-1.0.2/pkg/COMMENT' Xmemory allocation library with error checking. END-of-libxalloc-1.0.2/pkg/COMMENT echo x - libxalloc-1.0.2/pkg/DESCR sed 's/^X//' >libxalloc-1.0.2/pkg/DESCR << 'END-of-libxalloc-1.0.2/pkg/DESCR' Xxalloc is a memory allocation library with error checking. XIt contains wrappers including error checking for memory Xallocating C-functions. END-of-libxalloc-1.0.2/pkg/DESCR exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 03:50:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA29947 for freebsd-ports-outgoing; Fri, 1 May 1998 03:50:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA29915; Fri, 1 May 1998 03:50:01 -0700 (PDT) (envelope-from gnats) Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA29670 for ; Fri, 1 May 1998 03:46:28 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by rich.chel.su (8.7.2/Murphy) with ESMTP id QAA21190 for ; Fri, 1 May 1998 16:46:33 +0600 (UDT) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id OAA08420; Fri, 1 May 1998 14:51:00 +0400 (MSD) Message-Id: <199805011051.OAA08420@icc.surw.chel.su> Date: Fri, 1 May 1998 14:51:00 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6475: New port: libshhcards-1.0.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6475 >Category: ports >Synopsis: New port: libshhcards-1.0.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 1 03:50:00 PDT 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a port of library for displaying game cards on X11. It provides pixmaps for card games, and functions for using the cards in X11 programs. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # libshhcards-1.0.3 # libshhcards-1.0.3/Makefile # libshhcards-1.0.3/files # libshhcards-1.0.3/files/md5 # libshhcards-1.0.3/patches # libshhcards-1.0.3/patches/patch-aa # libshhcards-1.0.3/pkg # libshhcards-1.0.3/pkg/PLIST # libshhcards-1.0.3/pkg/COMMENT # libshhcards-1.0.3/pkg/DESCR # echo c - libshhcards-1.0.3 mkdir -p libshhcards-1.0.3 > /dev/null 2>&1 echo x - libshhcards-1.0.3/Makefile sed 's/^X//' >libshhcards-1.0.3/Makefile << 'END-of-libshhcards-1.0.3/Makefile' X# New ports collection makefile for: libshhcards X# Version required: 1.0.3 X# Date created: 12 April 1998 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= shhcards-1.0.3 XPKGNAME= libshhcards-1.0.3 XCATEGORIES= devel XMASTER_SITES= http://www.computas.no/users/shh/pub-unix/files/ X XMAINTAINER= andy@icc.surw.chel.su X XUSE_GMAKE= yes X Xdo-install: X @ ${INSTALL_DATA} ${WRKSRC}/shhcards.h ${PREFIX}/include X @ ${INSTALL_DATA} ${WRKSRC}/libshhcards.so.1.0.3 ${PREFIX}/lib X @ ln -s ${PREFIX}/lib/libshhcards.so.1.0.3 ${PREFIX}/lib/libshhcards.so X @ ${MKDIR} ${PREFIX}/share/doc/libshhcards X @ ${INSTALL_DATA} ${WRKSRC}/CREDITS ${PREFIX}/share/doc/libshhcards X @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/libshhcards X X.include END-of-libshhcards-1.0.3/Makefile echo c - libshhcards-1.0.3/files mkdir -p libshhcards-1.0.3/files > /dev/null 2>&1 echo x - libshhcards-1.0.3/files/md5 sed 's/^X//' >libshhcards-1.0.3/files/md5 << 'END-of-libshhcards-1.0.3/files/md5' XMD5 (shhcards-1.0.3.tar.gz) = c6f9161e096e8102b930e2b9e6d1796f END-of-libshhcards-1.0.3/files/md5 echo c - libshhcards-1.0.3/patches mkdir -p libshhcards-1.0.3/patches > /dev/null 2>&1 echo x - libshhcards-1.0.3/patches/patch-aa sed 's/^X//' >libshhcards-1.0.3/patches/patch-aa << 'END-of-libshhcards-1.0.3/patches/patch-aa' X--- Makefile Sun Mar 23 09:02:53 1997 X+++ /home/andy/tmp/wrk/Makefile Fri May 1 13:35:25 1998 X@@ -8,7 +8,7 @@ X ########################################################################### X X # Define SHARED as 1 for Linux shared ELF library X-#SHARED = 1 X+SHARED = 1 X X ifeq ($(SHARED),1) X LIBTARGET = lib$(DIST).so.$(VERSION) X@@ -87,7 +87,7 @@ X X $(LIBTARGET): $(LIBOBJS) X ifeq ($(SHARED),1) X- $(CC) -shared -Wl,-soname,$(LIBTARGETSOMAJ) -o $(LIBTARGET) $(LIBOBJS) X+ $(CC) -shared -o $(LIBTARGET) $(LIBOBJS) X else X ar rcs $(LIBTARGET) $(LIBOBJS) X endif END-of-libshhcards-1.0.3/patches/patch-aa echo c - libshhcards-1.0.3/pkg mkdir -p libshhcards-1.0.3/pkg > /dev/null 2>&1 echo x - libshhcards-1.0.3/pkg/PLIST sed 's/^X//' >libshhcards-1.0.3/pkg/PLIST << 'END-of-libshhcards-1.0.3/pkg/PLIST' Xinclude/shhcards.h Xlib/libshhcards.so.1.0.3 Xlib/libshhcards.so X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -m %D/lib Xshare/doc/libshhcards/CREDITS Xshare/doc/libshhcards/README X@dirrm share/doc/libshhcards END-of-libshhcards-1.0.3/pkg/PLIST echo x - libshhcards-1.0.3/pkg/COMMENT sed 's/^X//' >libshhcards-1.0.3/pkg/COMMENT << 'END-of-libshhcards-1.0.3/pkg/COMMENT' Xlibrary for displaying game cards on X11. END-of-libshhcards-1.0.3/pkg/COMMENT echo x - libshhcards-1.0.3/pkg/DESCR sed 's/^X//' >libshhcards-1.0.3/pkg/DESCR << 'END-of-libshhcards-1.0.3/pkg/DESCR' Xshhcards is a library for displaying game cards on X11. XIt provides pixmaps for card games, and functions for Xusing the cards in X11 programs. END-of-libshhcards-1.0.3/pkg/DESCR exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 06:42:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA15649 for freebsd-ports-outgoing; Fri, 1 May 1998 06:42:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA15626 for ; Fri, 1 May 1998 06:42:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA19660; Fri, 1 May 1998 06:40:03 -0700 (PDT) Received: from pcmita.isen.fr (pcmita.isen.fr [192.134.17.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA11069 for ; Fri, 1 May 1998 05:46:43 -0700 (PDT) (envelope-from mita@pcmita.isen.fr) Received: (from mita@localhost) by pcmita.isen.fr (8.8.7/8.8.7) id OAA25064; Fri, 1 May 1998 14:37:49 +0200 (CEST) (envelope-from mita) Message-Id: <199805011237.OAA25064@pcmita.isen.fr> Date: Fri, 1 May 1998 14:37:49 +0200 (CEST) From: MITA Yoshio Reply-To: MITA Yoshio To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6477: japanese/vfghostscript5 patches are updated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6477 >Category: ports >Synopsis: Newer patches are applied to gs5.10 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 1 06:40:03 PDT 1998 >Last-Modified: >Originator: MITA Yoshio >Organization: le Centre National de la Recherche Scientifique >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: >Description: gs5.10-vflib-1.2.tar.gz: Latest gs5.10 VFlib patch gs5.10-VFlibBM-PL2.diff.gz: gs5.10 VFlib-Freetype patch epag-3.01.tar.gz: EPSON ESC/page 60-600dpi driver are added. >How-To-Repeat: >Fix: 1. Apply a patch attatched to this file. 2. Remove japanese/vfghostscript5/files/gdevep82.patch from repository. (This patch is obsoleted by epag-3.01 driver.) 3. Enjoy. begin 644 ja-vfghostscript-5.10.diff.gz M'XL("&3`234``VIA+79F9VAO7/;-A;_ MV_D4L+>S36+Q``E>[CH31[83I[Y6=KOI;'<\(`%*E"620U)VTJ[WL^\#+U$2 M9/'_^?&VTC2)*T4 MM7&8!,#]`2&,L+YCZ#NJ7G`_G_W)==)P1[-0_HC0QL8@R^(=1;F]O96'-$@S MF7KR,%;^Q^!A3Y6SXWT%_3P/E#`Y MI%X:I!78-36K,Q MS=()H\J/AZ/`E0XO!>OFK`)NS&6>RE%*KZDTJ1AO08N0NEP!2?M'%Y>'1\<' M%[L;W_SZ^N+JXNR'7O?@X@[E3_N]HQ\/>M73X=GI)5!<[L\\GUV^.>C=`13\ MGNP=G5["OX/>[L8XR.C+82P?)IR_NMB7HZ2?SZ(8=QM!2_K+CGO)X.?T\+\< M!,.09S!$@FXP&;LC?A'YF1)/W#]^DMJ".B2MGF6JPN]$81\F0L2IG-)'[ MO\Q0;>]N#&/>3Q-/OC'I$@H8RSCL2ZKLF'(&KS?1]--`3"K`I1M?##F6\0Q( M2;5=DXD)!22MHMILI,XR200O_2K@3T$=%"23$G^AM!IE/$=E`TX\J/1*+H- MPC[*;B-$$XX23D=(1,T4"&B&!O2&H_3#>!2$URFZ#;)!@3&B&4_0#4_2(`I1 M"+8)311'09CE<)'`'\L(70+N310P-`E##KZ9TB08?2A`6'0;CB+*!`<#)\_E M=J`;A5&&O`$-^US@I!S=#GB()G$_*:B%\G&49`7.)`2^M/BB7'7Q%:,/)8)< M3'3M`;/6Z4=AEDIIQB0RGTCJE7$>_3.X_V^SJ/]N4YS_8LB<@8DCX# M\=6YECE7TX[7]ZY9ZU_;N]I2E4DZ-JE2E\O M>MT[]!T"X>C]+S[TB6R[?]2[4Y8D'?3L8?QS#C7'+BB!/:\($'2=[UUVW]PA M*4;_F.(OJ+*HFW#"LH9YH8!-*^%D-$+:B[_C)?+0&O(JU1<^Y8'2T"\>>,'B MT+2D8/3?$K>IVH*,8D+!EJH9!8Z73T'"22$2F'M0Y1PTOS77::9;FAL"-1^# MO-(JM`2I/+8U.18M>`'`+1ZP,O?Y@+:HG8KC+)%X,?T@05QJYU`^Q1.\'E9<%M$MZV.8]GN)Y\Y7Q%^M_X^P_GK42U.G?8!HZ?R<[;\MOF-5ZV!M M&N%?UEFO;%SM]5Y?W+449_F@Y\FOY.ON7=XU4WC#VEZ\:+R8A,%[J>]YXLUR MUGI.E_-N+N.M(]$CY$[-\1',]00^@C=\)&_EC_>QE15H$*89+"MW2J!&]#HX M/'IWIZ0#6$`WMV=SPC*`W4.V$-/F=D/7A%'R5>E]8,VMU+SXFOFB-`.4A@`W M"*'.*RNS&6^^9W'7.]C;/SD0\L^Z5[G\HD=N4J+O'H@G=X_V6S"A][&X9\?[ M$L#!"\W$#.L2BSSE>4/&8[&&\*H5"]V#51?JJX9/$"ZBS:3/9JH:!NF\&M)2 MQME*I(5UNO* MAWO_7!@**&BP2CI8K[_[@[MG0/CEAWX8C&]^/3J]N-P[/KXZ[YV][NV=W+4.C<*3;#8__%YY M8W7@>UA\USY2WM!^Q[RA_;GRQI<6_%NK>1VJ>;V\69%G!]WJ8&(WUKNM\HIU MT#B^2H.,R['0^O6%<*EUAB]GYJD77VE$3A/OXSV;( MJ\GF9$Q]/T]^CV=_+F?OL\>S4S:B'?AR.G@\2)S&21#>\R$P M5<_*8Y^V4Y\R@P&\-!.IP3VO4NXMS.`3MO:UIOS@2QDS8^EEHYIBK8M--?7& MY6"2WVS2S/QFD[F#K=4WFZ;L"U>;#&OYU2;L0WB:IYCJU;Q#.QZ^O<)-QPN$,KB,5#:,%MZ*;*54J)Y1)L,&@04].Q8_H6 M-[&I5MQS!]2"5;,-3CWB^+I.N.W9&K48901[\$+%V(#X7^C>?@HG(&S#-!S' ML+!K@.[$,!R#V;I*F>;JT.?7G]]Z#"$0=-,WF4Y,%1/F4MWCC,-X,-UEKJ7I MU)Y3HN6\2J!PWV"F[9FFJUF8N"JFG@[#:.F&XWNZ78]A^Y9Z/HX&P\QAAFI9 MP*TS;)E<-S1&N05XKM]$F-UA%]P>C#=WN8VYCUUB6IZOJ8;J>0ZV515SJ\G= MV'`7K(ZIFK[N>113V[<-EUNF0XA/"6=4==P9UNDIN^"$D&ZZKD$\#1./:]A0 M":&F!WB:K3)+KS@7-B]SC2WJ^"[6+)]QF#/;II9CN[[!L:UIKFTWQINNMY8(J:3V`N"/$8)0:!/F)X%C,KN&FPRNU0=VW#4'7P M096"1W&3&13,$B95\RSB%(FT@\TJBWYI;MUT2L>F()_8,!#8M1S.-,P\5>=$ M9[;O&OPCNK76=&O/T77#,"Q+P^"6,*%<]OC0ESDSG?25NO23Z_<++H.P6=74WJ>'V;K44(2`KK\OKQI=S2;5,;\>5G- M7\<,ME>2SRWS'\11;SC#`O]!C!"N'LQ3[P,\3,7ITO]!?.5J_Y/Z45LTUAW2 MT9U&SB"JVB&JN8ZC-7::5E`VMI6`\B4+DF1\+\,U#8\?64?D"U43RGBA>%?M"?),O_@&R!TA!I>ODG95A? M784LPE3%#,`4&S#$6%Z-0#&B5FD>?@,?_1MMHJUW6]_\^JHX&-L53^@_XMKD M@(LC`*@!RZVRJ[=[YWNGN]_F5SMT56;_=RO<# MQ4^)=GST:O^H=[$K'5?4"IA@6S^@B#=;Y2EE/BFE<_^V2?DZ"X^;A397L4G' MJ?^R#'ZVV)!G8N"VT-:;<[3/T^NW/$/0TT5TE/$DI!E'+`EN>-+)_\+!CQ)8 M:*N*8:K=+71V>%CINI4/RU;>?,U#G@0>.A>YB"=`=SHE"X>F(016$H-^*&1" M9PVXF5.6'BDH#^(4(L+!15RFXOL MA9Z%Q8GO*=E/J#<0B@)WP%-8*-D%9_?DI^_G.<%`[^&$MTLYP9[OX82W\YSY A'4>8UMK;_@S3NE4P->8%LO;"S$A_^LGY/XK=%JOC/0`` ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 06:53:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17096 for freebsd-ports-outgoing; Fri, 1 May 1998 06:53:42 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA17091 for ; Fri, 1 May 1998 06:53:40 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id JAA25492; Fri, 1 May 1998 09:53:38 -0400 (EDT) (envelope-from mph) Message-ID: <19980501095337.A25204@mph124.rh.psu.edu> Date: Fri, 1 May 1998 09:53:37 -0400 From: Matthew Hunt To: ports@FreeBSD.ORG Subject: Re: Port of trn4 References: <19980430234024.A19165@mph124.rh.psu.edu> <19980501103245.A29927@keltia.freenix.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <19980501103245.A29927@keltia.freenix.fr>; from Ollivier Robert on Fri, May 01, 1998 at 10:32:45AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, May 01, 1998 at 10:32:45AM +0200, Ollivier Robert wrote: > Did you ask Wayne before this ? As trn4 is still not released, it'd better > to ask him before, escpecially of you want to replace 3.6. As Satoshi pointed out, news/trn is still 3.6. This is a repository copy. The only licensing terms appear in the README: # You may copy the trn kit in whole or in part as long as you don't try to # make money off it, or pretend that you wrote it. We certainly are not violating any terms he has provided. -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 08:44:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA01252 for freebsd-ports-outgoing; Fri, 1 May 1998 08:44:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tweedledumb.cygnus.com (tweedledumb.cygnus.com [192.80.44.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA01241 for ; Fri, 1 May 1998 08:44:26 -0700 (PDT) (envelope-from ian@cygnus.com) Received: from subrogation.cygnus.com (subrogation.cygnus.com [192.80.44.76]) by tweedledumb.cygnus.com (8.8.5/8.8.5) with ESMTP id LAA07773; Fri, 1 May 1998 11:44:07 -0400 (EDT) Received: (ian@localhost) by subrogation.cygnus.com (950413.SGI.8.6.12/8.6.4) id LAA08846; Fri, 1 May 1998 11:44:07 -0400 Date: Fri, 1 May 1998 11:44:07 -0400 Message-Id: <199805011544.LAA08846@subrogation.cygnus.com> From: Ian Lance Taylor To: peter.jeremy@alcatel.com.au CC: bug-gnu-utils@gnu.org, freebsd-ports@FreeBSD.ORG In-reply-to: <199805010017.KAA12929@gsms01.alcatel.com.au> (message from Peter Jeremy on Fri, 01 May 1998 10:17:07 +1000 (EST)) Subject: Re: Circular dependency in libiberty Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Date: Fri, 01 May 1998 10:17:07 +1000 (EST) From: Peter Jeremy When building libiberty as part of either binutils 2.9 or gdb 4.17 with a FreeBSD 2.x host, gnu make (3.76.1) successfully builds libiberty.a, but reports a circular dependency. Running gnu make in the libiberty directory after the library is successfully built gives: pc0640% gmake gmake[1]: Entering directory `/usr/users/jeremyp/src/binutils/libiberty' gmake[1]: Circular vasprintf.o <- config.h dependency dropped. gmake[1]: Leaving directory `/usr/users/jeremyp/src/binutils/libiberty' pc0640% The standard FreeBSD 2.2.5 make is unable to handle the circular dependency and exits without building the library. Thanks for the bug report. I think the appended patch to libiberty/Makefile.in will avoid the problem. Ian Index: Makefile.in =================================================================== RCS file: /cvs/cvsfiles/devo/libiberty/Makefile.in,v retrieving revision 1.135 retrieving revision 1.136 diff -u -r1.135 -r1.136 --- Makefile.in 1998/01/14 02:43:04 1.135 +++ Makefile.in 1998/05/01 15:43:14 1.136 @@ -252,8 +252,6 @@ required-list: Makefile echo $(REQUIRED_OFILES) > required-list -$(HOST_OFILES) $(REQUIRED_OFILES) : config.h - RULE1 = $(TARGETLIB) $(RULE1): $(REQUIRED_OFILES) $(DO_ALSO) .always. @$(MAKE) RULE1=not-used RULE2=$(TARGETLIB) $(FLAGS_TO_PASS) \ @@ -312,25 +310,27 @@ Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status +alloca.o: config.h argv.o: $(INCDIR)/libiberty.h -basename.o: $(INCDIR)/libiberty.h +basename.o: config.h $(INCDIR)/libiberty.h +choose-temp.o: config.h concat.o: $(INCDIR)/libiberty.h cplus-dem.o: $(INCDIR)/demangle.h fdmatch.o: $(INCDIR)/libiberty.h -fnmatch.o: $(INCDIR)/fnmatch.h -getopt.o: $(INCDIR)/getopt.h -getopt1.o: $(INCDIR)/getopt.h +fnmatch.o: config.h $(INCDIR)/fnmatch.h +getopt.o: config.h $(INCDIR)/getopt.h +getopt1.o: config.h $(INCDIR)/getopt.h getruntime.o: $(INCDIR)/libiberty.h hex.o: $(INCDIR)/libiberty.h floatformat.o: $(INCDIR)/floatformat.h objalloc.o: $(INCDIR)/objalloc.h obstack.o: $(INCDIR)/obstack.h -pexecute.o: $(INCDIR)/libiberty.h +pexecute.o: config.h $(INCDIR)/libiberty.h spaces.o: $(INCDIR)/libiberty.h -strerror.o: $(INCDIR)/libiberty.h -strsignal.o: $(INCDIR)/libiberty.h +strerror.o: config.h $(INCDIR)/libiberty.h +strsignal.o: config.h $(INCDIR)/libiberty.h xatexit.o: $(INCDIR)/libiberty.h xexit.o: $(INCDIR)/libiberty.h xmalloc.o: $(INCDIR)/libiberty.h xstrdup.o: $(INCDIR)/libiberty.h -xstrerror.o: $(INCDIR)/libiberty.h +xstrerror.o: config.h $(INCDIR)/libiberty.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 09:52:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10875 for freebsd-ports-outgoing; Fri, 1 May 1998 09:52:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA10863 for ; Fri, 1 May 1998 09:52:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA15224; Fri, 1 May 1998 09:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10572; Fri, 1 May 1998 09:49:19 -0700 (PDT) (envelope-from nobody) Message-Id: <199805011649.JAA10572@hub.freebsd.org> Date: Fri, 1 May 1998 09:49:19 -0700 (PDT) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6478: Installation misses header file in rexx-imc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6478 >Category: ports >Synopsis: Installation misses header file in rexx-imc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 1 09:50:01 PDT 1998 >Last-Modified: >Originator: Pedro Giffuni >Organization: U. Nacional de Colombia >Release: 2.2.5-R >Environment: >Description: While creating a port of THE, (a rexx aware editor similar to xedit), I found our rexx doesn't install a required header file >How-To-Repeat: The port maintainer is probably busy as he didn't reply. My 2 seconds diff follows. >Fix: diff -ru -u /cdrom/ports/lang/rexx-imc/Makefile rexx-imc/Makefile --- /cdrom/ports/lang/rexx-imc/Makefile Thu Jul 17 10:12:49 1997 +++ rexx-imc/Makefile Fri May 1 11:37:01 1998 @@ -28,6 +28,7 @@ @ for file in librexx.a librexx.so.1.6.4; do \ ${INSTALL_DATA} ${WRKDIR}/$$file ${PREFIX}/lib; \ done + @(${INSTALL_DATA} ${WRKDIR}/rexxsaa.h ${PREFIX}/include) .ifndef(NOPORTDOCS) @ ${MKDIR} -p ${PREFIX}/share/doc/rexx-imc/ @ for file in README README.avail README.bugreport README.docs README.files README.make README.news README.versions rexx.info rexx.ref rexx.summary rexx.tech; do \ diff -ru -u /cdrom/ports/lang/rexx-imc/pkg/PLIST rexx-imc/pkg/PLIST --- /cdrom/ports/lang/rexx-imc/pkg/PLIST Mon Sep 23 10:50:11 1996 +++ rexx-imc/pkg/PLIST Fri May 1 11:34:15 1998 @@ -5,6 +5,7 @@ bin/rxmathfn.rxlib lib/librexx.a lib/librexx.so.1.6.4 +include/rexxsaa.h @exec ldconfig -m %B share/doc/rexx-imc/README share/doc/rexx-imc/README.avail >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 11:57:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA00634 for freebsd-ports-outgoing; Fri, 1 May 1998 11:57:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA00626; Fri, 1 May 1998 11:56:56 -0700 (PDT) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id OAA06846; Fri, 1 May 1998 14:56:52 -0400 (EDT) (envelope-from mph) Message-ID: <19980501145647.A6804@mph124.rh.psu.edu> Date: Fri, 1 May 1998 14:56:47 -0400 From: Matthew Hunt To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Re: Port of trn4 References: <19980430234024.A19165@mph124.rh.psu.edu> <199805010754.AAA28793@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805010754.AAA28793@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Fri, May 01, 1998 at 12:54:11AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, May 01, 1998 at 12:54:11AM -0700, Satoshi Asami wrote: > Dun. And committed; the trn4 port is conceptually close to the old trn port. We're still stuck with trn's Configure, which I find pretty icky for automated building. :-( I tested it for build, package (even though we don't package it), functionality, and pkg_delete on a fairly-close-to-virgin machine, so hopefully nothing is egregiously broken with it. In any case, I must go to my last undergraduate lecture momentarily, and then become very drunk. You will not want me to commit any more changes for a little while... :-) -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 12:22:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04597 for freebsd-ports-outgoing; Fri, 1 May 1998 12:22:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04556 for ; Fri, 1 May 1998 12:22:32 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.0.Beta7/frmug-2.3/nospam) with UUCP id VAA04105 for ports@FreeBSD.ORG; Fri, 1 May 1998 21:22:27 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: (from roberto@localhost) by keltia.freenix.fr (8.9.0.Beta4/keltia-2.14/nospam) id VAA03688 for ports@FreeBSD.ORG; Fri, 1 May 1998 21:18:52 +0200 (CEST) (envelope-from roberto) Message-ID: <19980501211851.A3470@keltia.freenix.fr> Date: Fri, 1 May 1998 21:18:51 +0200 From: Ollivier Robert To: ports@FreeBSD.ORG Subject: Re: Port of trn4 Mail-Followup-To: ports@FreeBSD.ORG References: <19980430234024.A19165@mph124.rh.psu.edu> <19980501103245.A29927@keltia.freenix.fr> <19980501095337.A25204@mph124.rh.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.92.3i In-Reply-To: <19980501095337.A25204@mph124.rh.psu.edu>; from Matthew Hunt on Fri, May 01, 1998 at 09:53:37AM -0400 X-Operating-System: FreeBSD 3.0-CURRENT ctm#4245 AMD-K6 MMX @ 225 MHz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Matthew Hunt: > We certainly are not violating any terms he has provided. I know, my point was just to ask him if he wanted it to propagate that much (I'm sure he won't mind as the "private" betas are pretty well known now). -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #8: Tue Apr 21 02:45:53 CEST 1998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 16:23:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13239 for freebsd-ports-outgoing; Fri, 1 May 1998 16:23:24 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13219; Fri, 1 May 1998 16:23:21 -0700 (PDT) (envelope-from jseger) Date: Fri, 1 May 1998 16:23:21 -0700 (PDT) From: "Justin M. Seger" Message-Id: <199805012323.QAA13219@hub.freebsd.org> To: i.vaudrey@cableinet.co.uk, jseger, freebsd-ports Subject: Re: ports/5080 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Apache-1.2.4: Improved rc.d script State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Fri May 1 16:23:00 PDT 1998 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 19:17:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12520 for freebsd-ports-outgoing; Fri, 1 May 1998 19:17:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12511; Fri, 1 May 1998 19:17:09 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA18229; Fri, 1 May 1998 19:15:03 -0700 (PDT) Date: Fri, 1 May 1998 19:15:03 -0700 (PDT) Message-Id: <199805020215.TAA18229@freefall.freebsd.org> To: junker@jazz.snu.ac.kr, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/3335 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port request of korean/hanemacs State-Changed-From-To: analyzed-closed State-Changed-By: kuriyama State-Changed-When: Fri May 1 19:14:10 PDT 1998 State-Changed-Why: Newer one is exist. PR: ports/6011 Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Fri May 1 19:14:10 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 19:18:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12679 for freebsd-ports-outgoing; Fri, 1 May 1998 19:18:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12672; Fri, 1 May 1998 19:18:15 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA18299; Fri, 1 May 1998 19:16:09 -0700 (PDT) Date: Fri, 1 May 1998 19:16:09 -0700 (PDT) Message-Id: <199805020216.TAA18299@freefall.freebsd.org> To: mi@aldan.ziplink.net, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/2182 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeBSD's and X-32's list of locales do not match State-Changed-From-To: feedback-closed State-Changed-By: kuriyama State-Changed-When: Fri May 1 19:15:21 PDT 1998 State-Changed-Why: This problem was fixed at long long ago... Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Fri May 1 19:15:21 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 19:39:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA16146 for freebsd-ports-outgoing; Fri, 1 May 1998 19:39:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA16115; Fri, 1 May 1998 19:39:39 -0700 (PDT) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA18505; Fri, 1 May 1998 19:37:33 -0700 (PDT) Date: Fri, 1 May 1998 19:37:33 -0700 (PDT) Message-Id: <199805020237.TAA18505@freefall.freebsd.org> To: andy@icc.surw.chel.su, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/6475 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: libshhcards-1.0.3 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Fri May 1 22:36:23 EDT 1998 State-Changed-Why: Imported with changes: - Add USE_X11 - Respect CC, CFLAGS - MASTER_SITE refused connections for a while; add my www.freebsd.org space as a second MASTER_SITE in case it happens again. Thanks! Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Fri May 1 22:36:23 EDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 20:22:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23465 for freebsd-ports-outgoing; Fri, 1 May 1998 20:22:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from entelchile.net (operaciones.entelchile.net [206.137.97.214]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA23437 for ; Fri, 1 May 1998 20:22:06 -0700 (PDT) (envelope-from joseantonio@entelchile.net) Received: from default (tc42-80.entelchile.net [206.84.69.80]) by entelchile.net (950413.SGI.8.6.12/950213.SGI.Mitzio) via ESMTP id XAA22409 for ; Fri, 1 May 1998 23:20:01 -0300 Message-Id: <199805020220.XAA22409@entelchile.net> Reply-To: From: "Jose Antonio Hermosilla" To: Subject: Interes de contactar con Uds. Date: Fri, 1 May 1998 23:21:59 -0400 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1161 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Señores. Estoy muy intersado en vuestro producto. Me gustaría tener un demostrativo en el que pueda instalar en un PC pemtium 200mhz mmx con 64MG ram y 3.2GB HD. Soy un desarrollador de software a empresas en plataformas Unix, microfocus cobol, C y otros. Espero que reciban este mail y me contesten atentamente jose antonio hermosilla To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 1 23:32:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA16086 for freebsd-ports-outgoing; Fri, 1 May 1998 23:32:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA16078 for ; Fri, 1 May 1998 23:32:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA19050; Fri, 1 May 1998 23:30:01 -0700 (PDT) Received: from rich.chel.su (root@mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA15804 for ; Fri, 1 May 1998 23:29:46 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by rich.chel.su (8.7.2/Murphy) with ESMTP id MAA01140 for ; Sat, 2 May 1998 12:29:51 +0600 (UDT) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id KAA12373; Sat, 2 May 1998 10:34:33 +0400 (MSD) Message-Id: <199805020634.KAA12373@icc.surw.chel.su> Date: Sat, 2 May 1998 10:34:33 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6483: New port: affenspiel-1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6483 >Category: ports >Synopsis: New port: affenspiel-1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 1 23:30:00 PDT 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This is a port of little puzzle game with monkey for X Window System. Shift the puzzle pieces around so that the monkey becomes complete, that means, move the big piece through the other pieces to the bottom of the playfield, so that the monkey picture gets complete. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # affenspiel-1.0 # affenspiel-1.0/Makefile # affenspiel-1.0/files # affenspiel-1.0/files/md5 # affenspiel-1.0/patches # affenspiel-1.0/patches/patch-aa # affenspiel-1.0/pkg # affenspiel-1.0/pkg/PLIST # affenspiel-1.0/pkg/DESCR # affenspiel-1.0/pkg/COMMENT # echo c - affenspiel-1.0 mkdir -p affenspiel-1.0 > /dev/null 2>&1 echo x - affenspiel-1.0/Makefile sed 's/^X//' >affenspiel-1.0/Makefile << 'END-of-affenspiel-1.0/Makefile' X# New ports collection makefile for: affenspiel X# Version required: 1.0 X# Date created: 2 May 1998 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= affenspiel-1.0 XCATEGORIES= games x11 XMASTER_SITES= ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= games/strategy XEXTRACT_SUFX= .tgz X XMAINTAINER= andy@icc.surw.chel.su X XWRKSRC= ${WRKDIR}/affenspiel XUSE_X11= yes X Xdo-install: X @ ${INSTALL_PROGRAM} ${WRKSRC}/affenspiel ${PREFIX}/bin X.if !defined(NOPORTDOCS) X @ ${MKDIR} ${PREFIX}/share/doc/affenspiel X @ ${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${PREFIX}/share/doc/affenspiel X @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/affenspiel X.endif X X.include END-of-affenspiel-1.0/Makefile echo c - affenspiel-1.0/files mkdir -p affenspiel-1.0/files > /dev/null 2>&1 echo x - affenspiel-1.0/files/md5 sed 's/^X//' >affenspiel-1.0/files/md5 << 'END-of-affenspiel-1.0/files/md5' XMD5 (affenspiel-1.0.tgz) = 7555aa524be2a05ab313faaa704cd10b END-of-affenspiel-1.0/files/md5 echo c - affenspiel-1.0/patches mkdir -p affenspiel-1.0/patches > /dev/null 2>&1 echo x - affenspiel-1.0/patches/patch-aa sed 's/^X//' >affenspiel-1.0/patches/patch-aa << 'END-of-affenspiel-1.0/patches/patch-aa' X--- Makefile Sun Mar 5 20:47:27 1995 X+++ /home/andy/tmp/wrk/Makefile Fri May 1 14:18:33 1998 X@@ -7,15 +7,15 @@ X RM = rm -f X CC = gcc X X-FILE_CONFIG = -DSAVED_GAME_NAME=\"/tmp/affenspiel.saved\" X+FILE_CONFIG = -DSAVED_GAME_NAME=\"affenspiel.saved\" X X CONFIG = $(FILE_CONFIG) X #DEBUG = -DDEBUG -g -ansi X #DEBUG = -DDEBUG -g -ansi -pedantic X DEBUG = -O2 X X-CFLAGS = $(DEBUG) $(CONFIG) X-LIBS = -lX11 X+CFLAGS = $(DEBUG) $(CONFIG) -I${X11BASE}/include X+LIBS = -L${X11BASE}/lib -lX11 X X OBJS = das_mit_dem_affen.o X END-of-affenspiel-1.0/patches/patch-aa echo c - affenspiel-1.0/pkg mkdir -p affenspiel-1.0/pkg > /dev/null 2>&1 echo x - affenspiel-1.0/pkg/PLIST sed 's/^X//' >affenspiel-1.0/pkg/PLIST << 'END-of-affenspiel-1.0/pkg/PLIST' Xbin/affenspiel Xshare/doc/affenspiel/COPYRIGHT Xshare/doc/affenspiel/README X@dirrm share/doc/affenspiel END-of-affenspiel-1.0/pkg/PLIST echo x - affenspiel-1.0/pkg/DESCR sed 's/^X//' >affenspiel-1.0/pkg/DESCR << 'END-of-affenspiel-1.0/pkg/DESCR' XShift the puzzle pieces around so that the monkey becomes complete, Xthat means, move the big piece through the other pieces to the Xbottom of the playfield, so that the monkey picture gets complete. END-of-affenspiel-1.0/pkg/DESCR echo x - affenspiel-1.0/pkg/COMMENT sed 's/^X//' >affenspiel-1.0/pkg/COMMENT << 'END-of-affenspiel-1.0/pkg/COMMENT' XLittle puzzle game with monkey for X Window System. END-of-affenspiel-1.0/pkg/COMMENT exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 06:42:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA22735 for freebsd-ports-outgoing; Sat, 2 May 1998 06:42:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA22723 for ; Sat, 2 May 1998 06:42:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA20887; Sat, 2 May 1998 06:40:07 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21615; Sat, 2 May 1998 06:34:03 -0700 (PDT) (envelope-from nobody) Message-Id: <199805021334.GAA21615@hub.freebsd.org> Date: Sat, 2 May 1998 06:34:03 -0700 (PDT) From: girgen@partitur.se To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6484: xemacs hangs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6484 >Category: ports >Synopsis: xemacs hangs >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 2 06:40:04 PDT 1998 >Last-Modified: >Originator: Palle Girgensohn >Organization: Partitur >Release: FreeBSD 2.2.6-STABLE i386 >Environment: >uname -a FreeBSD datan.palle.se 2.2.6-STABLE FreeBSD 2.2.6-STABLE #0: Wed Apr 15 10:59:30 CEST 1998 girgen@datan.palle.se:/usr/src/sys/compile/PALLEHEM i386 >Description: xemacs 20.4 hangs sooner or later (most ofter sooner) using up all cpu resources, and has to be killed. Here's a stack dump using 'script': Script started on Sat May 2 15:07:01 1998 datan:~#xemacs -nw Lisp backtrace follows: # (unwind-protect ...) sit-for(0) byte-code("À ÂÃ#sÅ ebÆÇ!È u Ã?" [add-timeout startup-message-timeout # nil timeout startup-splash-frame sit-for 0 next-command-event unread-command-event] 4) # (catch timeout ...) # (unwind-protect ...) # bind (timeout) command-line-1() # bind (command-line-args-left) command-line() # (unwind-protect ...) normal-top-level() # (condition-case ... . error) # (catch top-level ...) Terminated This happens even using -nw switch, so I doubt it's MOTIF-related? I've tried compiling with and without MOTIF_STATIC, and also tried the binaries from xemacs.org; same result. 20.3 worked OK; always got "No ExtNode to pop!" or similar when exiting, apart from that all was OK. Can it be the cyrix processor? >How-To-Repeat: start xemacs again >Fix: ? Recompiling without any HAVE_MOTIF? I'll try it, but doubt it will have any effect... >Audit-Trail: >Unformatted: >dmesg Copyright (c) 1992-1998 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 2.2.6-STABLE #0: Wed Apr 15 10:59:30 CEST 1998 girgen@datan.palle.se:/usr/src/sys/compile/PALLEHEM CPU: Cyrix 5x86 (486-class CPU) Origin = "CyrixInstead" DIR=0x132d Stepping=1 Revision=3 real memory = 67108864 (65536K bytes) avail memory = 63324160 (61840K bytes) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 08:33:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08078 for freebsd-ports-outgoing; Sat, 2 May 1998 08:33:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08067; Sat, 2 May 1998 08:33:29 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18023; Sat, 2 May 1998 08:31:18 -0700 (PDT) Date: Sat, 2 May 1998 08:31:18 -0700 (PDT) Message-Id: <199805021531.IAA18023@freefall.freebsd.org> To: hideyuki@sat.t.u-tokyo.ac.jp, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6469 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: updated port for wide-dhcp 1.4.0p1 State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Sat May 2 08:27:36 PDT 1998 State-Changed-Why: The change committed. BTW, from next time on, please explicitly state which files are to be added/removed as it is suggested in the handbook. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 08:42:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09678 for freebsd-ports-outgoing; Sat, 2 May 1998 08:42:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09648 for ; Sat, 2 May 1998 08:42:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18129; Sat, 2 May 1998 08:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07924; Sat, 2 May 1998 08:32:43 -0700 (PDT) (envelope-from nobody) Message-Id: <199805021532.IAA07924@hub.freebsd.org> Date: Sat, 2 May 1998 08:32:43 -0700 (PDT) From: shige@kuis.kyoto-u.ac.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6485: [update ports] japanese perl5 ports (ja-perl-5.004.04) diff style Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6485 >Category: ports >Synopsis: [update ports] japanese perl5 ports (ja-perl-5.004.04) diff style >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 2 08:40:00 PDT 1998 >Last-Modified: >Originator: Shigeyuki FUKUSHIMA >Organization: Department of Infomation Science, Kyoto University. >Release: 2.2.6-RELEASE >Environment: FreeBSD aphrodite.clarinet.org 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Fri May 1 20:40:06 JST 1998 root@onikobe.kuis.kyoto-u.ac.jp:/usr/src/sys/compile/aphrodite i386 >Description: Updating japanese perl5 ports (${PORTSDIR}/japanese/perl5) This update is, ja-perl-5.004.01 => ja-perl-5.004.04. And new maintainer of this ports is shige@kuis.kyoto-u.ac.jp (Shigeyuki FUKUSHIMA). This update is admitted by the Old maintainer of this ports, hikura@kaisei.org. Thank you. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 08:42:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09679 for freebsd-ports-outgoing; Sat, 2 May 1998 08:42:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09654 for ; Sat, 2 May 1998 08:42:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18134; Sat, 2 May 1998 08:40:01 -0700 (PDT) Date: Sat, 2 May 1998 08:40:01 -0700 (PDT) Message-Id: <199805021540.IAA18134@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Jun Kuriyama Subject: Re: ports/6143: new port request: korean/kaistfonts Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6143; it has been noted by GNATS. From: Jun Kuriyama To: freebsd-gnats-submit@freebsd.org Cc: Jun Kuriyama Subject: Re: ports/6143: new port request: korean/kaistfonts Date: Sun, 03 May 1998 00:15:13 +0900 Is there special reason to use '?=' insteas of '=' ? --- kaistfonts/Makefile > DISTFILES?= kaist-newmj18.bdf.gz ks_philgi16.bdf.gz \ > kaist-newmj16.bdf.gz ks_iyagi16.bdf.gz --- It seems good although replacing '?=' with '='. Jun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 08:42:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09680 for freebsd-ports-outgoing; Sat, 2 May 1998 08:42:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA09662 for ; Sat, 2 May 1998 08:42:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA18143; Sat, 2 May 1998 08:40:03 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA09044; Sat, 2 May 1998 08:37:24 -0700 (PDT) (envelope-from nobody) Message-Id: <199805021537.IAA09044@hub.freebsd.org> Date: Sat, 2 May 1998 08:37:24 -0700 (PDT) From: shige@kuis.kyoto-u.ac.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6486: [update ports] japanese perl5 ports (ja-perl-5.004.04) diff style Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6486 >Category: ports >Synopsis: [update ports] japanese perl5 ports (ja-perl-5.004.04) diff style >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 2 08:40:02 PDT 1998 >Last-Modified: >Originator: Shigeyuki FUKUSHIMA >Organization: Department of Infomation Science, Kyoto University. >Release: 2.2.6-RELEASE >Environment: FreeBSD aphrodite.clarinet.org 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Fri May 1 20:40:06 JST 1998 root@onikobe.kuis.kyoto-u.ac.jp:/usr/src/sys/compile/aphrodite i386 >Description: Updating japanese perl5 ports (${PORTSDIR}/japanese/perl5) This update is diff style, ja-perl-5.004.01 => ja-perl-5.004.04. To update this ports, please do follows: $ fetch ftp://ftp.freebsd.org/incoming/ports-ja-perl5.diff.gz $ cd ${PORTSDIR}/japanese/perl5 $ zcat ports-ja-perl5.diff.gz | patch -p1 And new maintainer of this ports is shige@kuis.kyoto-u.ac.jp (Shigeyuki FUKUSHIMA). This update is admitted by the Old maintainer of this ports, hikura@kaisei.org. Thank you. --- shige@kuis.kyoto-u.ac.jp >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 09:56:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19394 for freebsd-ports-outgoing; Sat, 2 May 1998 09:56:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ihgw2.lucent.com (ihgw2.lucent.com [207.19.48.2]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA19363 for ; Sat, 2 May 1998 09:56:13 -0700 (PDT) (envelope-from dob@cbsms1.cb.lucent.com) Received: from nmcoma.netminder.lucent.com by ihig2.firewall.lucent.com (SMI-8.6/EMS-L sol2) id LAA17208; Sat, 2 May 1998 11:45:58 -0500 Received: by nmcoma.netminder.lucent.com (SMI-8.6/EMS-1.3.1 sol2) id MAA17314; Sat, 2 May 1998 12:56:06 -0400 From: "Daniel M. O'Brien" Cc: Eric Chet Received: from localhost by nmcoma.netminder.lucent.com (SMI-8.6/EMS-1.3.1 sol2) id MAA17311; Sat, 2 May 1998 12:56:03 -0400 Date: Sat, 2 May 1998 12:55:56 -0400 (EDT) Original-From: "Daniel M. O'Brien" X-Sender: dob@localhost To: ports@FreeBSD.ORG Original-cc: Eric Chet Subject: Updated patches for imap Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-412959087-894128156=:2084" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-412959087-894128156=:2084 Content-Type: TEXT/PLAIN; charset=US-ASCII Dear Ports@Freebsd.org: Attached are hand massaged patches for the imap-uw port. These will probably go down the same rat hole as the last email I sent you regarding the imap port. At least I tried. Enjoy. Dan O'Brien (dmobrien@lucent.com) Lucent Technologies, Bell Labs Innovations, Columbus OH 43213 Internal URL: External URL: Work: 614-860-2392 Home: 614-927-2178 Fax: 614-868-3810 Home2: 614-927-2955 ------------------------------------------------------ --0-412959087-894128156=:2084 Content-Type: APPLICATION/octet-stream; name="imap-uw.patches.tar.gz" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: updated patches for imap H4sICHVPSzUAA2ltYXAtdXcucGF0Y2hlcy50YXIA7Vjrb6NIEp+v8V9RyuTD JAQb/A46r+JgnHDjGAs8O3O6OXkwtGMUDIiGPLS7//tVd4MdT7KzDykzWomS RRfVVf34dVV14cTNvLXsum9ekVRF6bbb8AYYKV+1SL1WE6DbaartntJqqgAq 6qtvQHnNRZWU08xNAd6kcZx9S+9+TUj4PRb0fUmWZaCp14ipT5JGHgUPyC6W NKivDxw3A8vLQD3DE9Faiqa0kT/r1iRJ+l2j+TqHaXwHTQUUVWM/hRn1aufn ILd6pz2Q8Kn24fy8Bm+DyAtzn8C/cBCa+fX1T0+FNEuD6OZr4SNtZI8JoUwu 1aTGSU2CExinhFw4I7hr1R/AjXyIo3s39eF+HUSEgruM80wY+0GKprAkODbE SxqHJCOnQGOg9wFGAx8ui2FmOeYnoGTjRlng0TqTN2rS22B1sFgU0y0W8NMA Wkxarg+HJ1HGF/fWJyucHZgIcRQ9KCYhJV9vSayKdUZ+sMKNPelfeVEWPoch jF/CZhWEhIn/3PknIv6Xr+ljfxD/bUXZxX+3JeK/q1Tx/z3ohfi/dm8Jd6I4 DW54PI+Ih8cEak/rtDW1JeL5hSRQWvLMwY26oHZZ5sAMv00CZ22WBPiT5QDw 883msR5DQknux8hEJNvQG2RWYZEBkPW37Ge0SVdev9lkulGWYEM3vAk2btJO VTZYnLQKXbY0ZDfLWDT8ufFX2GQkIvw1e+Dz3lNmuuabh82aPbCjJuvjyfDS GRy9uxg6hng5hqN3xqe5PSxea5JgpG9rwfXwvTHYIFDI/jzY3NWAg6IqvdMu SKxRVYHLbOg4H0fz/8wMHHL3cgzDsTMybRQK5hgunUIgGJzl4oM5GaGAzXYM yzwIfVwJl1qzuWlNdytzZoZuDidsbZh9YEqID9k6oLCKU2QI0LWboiwMlqmb PkKah4Slx/s4vQUvTllqCx9rUt35MB6bnwxHA8StTuOa5FxNzIsBGnqyFwYs K9K43qyr2GONzYmBiP5yYU6HtolW9XiA3b/xzAdXJCUQrCDCE0CswE1v8g0O AATDdRkGdE18XC9sAkrRKzTgXlhfCyx7fQaipPZbJZgHsDuTwaF8A/LIiyOa DZCZjp33kw+jS+OQjbikK+3gbXmd1OSDArZjsJwBXnHgmJf8TBL6gO4l7fqP 3vH9/o4iLsGZWdaEHVTjDlMOFw31ufmzwbAYNHKaNsLYc8MGc8QGwtZwvSy4 I0LVdq5mw/mV0FsGUSOla+yRn2/NAjkJErK3Nb7Ufc1dL2qal1PLNhYTS3+/ MIa6bjgLw7Yt2zkUszPLyag0Db30MckKvAKGF2LVCFr9Lj+ATgeBV0DqdPAg RJQjTEPb1hlKQ1u/wk0ztjz8Y65gD6ccv50Kc8kSVo0BLNwGg+0AHVq+4K6J /oB7fQA53h3BU1V0TQ89SzsofYSdmY5LkVdJ4OHeZ6YOsoc225j95VxDi0Hd +42Pei6cUg+JG+UJ27XHWE2s+voYTtDjwyC6dW9I/b/e+n/g5tma1r2nuxWz n8AJcwo44VPBr79CluaEL0kMRHe7YBOxeUckwaKARF5AqMD3rM9SaFdpFjmU aVmO7BeKGUpkMV+sbdwAawcWKR42JLrD54qyB6spIGKPzENcmItYzsiYOQP4 K0ZQAsv0Fjzb8s6S3Wl4Ow0Ph9tyWViy0ZbbDuDxAUpAVxght9z6MfKwvSEo zwKfqzFsuqrCsVHbp2pTuN59GmSkGAdvEZKmcYqvyCbL9FZw+BNMFt+WTB4W RpYjPIP5UgkrnpIAS/iuzl27dKAvHiudC6svzLkKAHYj0L0hpD8/hPDIp87L zr/oLBLh0mVYcda7TUqW1Yve1mfLFf3oCqSiH0lF/e+95hx/UP83m502Vort XrutqG2lw+v/XlX/fxcq639WOfu70t+yzUte+v/bjfCAQO1o7abW4VV8f1v6 7xsdOHkEY7Jk+k1F65xpbVXo809/9bSPn/7syb/84aM5v4L5lQEfHAMsG2aG Pbbs6+FUx9cx9pgO4CU+/zi0jTq/CuXhxLDngwbJiqnrbkjSDOVTS0jdKI4e N3FO66yEuknjPKE1SZhhDW1jpfXp+Jm9xOz3u18cCJwrYzIZAK++6FpcuzDH Evnw2o3w7odrvDYPAQvVHPDK2UC8wno6o56L1dg1oRR1UkjyjEKeACLLryLU 5z1F6cRuL/5kMOk6DMRVcKQ3dJ2VDl9QKooHLF7NI33XXV4VI75hXlR+PsQK hL0dfz5kHVNrJ55aTPiZXwh73yhyUejhBOxWmpjGdM6rqnKmov9LTdppyhNc ChaGRaX/XBfRcsNQO+DIs9MsPQ8/1V7yvGsMSxU/Olua2tewitz752nf6GvP 62vNsyeed8b/dDrb1kp/A9TXw4TvRONN0+dN6yk6mwy/eL4dl6rW7uzH5b7R c3Q63X8KOtxj+Hbw7UfnyooqqqiiiiqqqKKKKqqooooqqqiifyL9H+SCHLoA KAAA --0-412959087-894128156=:2084-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 11:55:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04687 for freebsd-ports-outgoing; Sat, 2 May 1998 11:55:57 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp1657.on.bellglobal.com (ppp1657.on.bellglobal.com [206.172.249.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA04682 for ; Sat, 2 May 1998 11:55:54 -0700 (PDT) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp1657.on.bellglobal.com (8.8.8/8.8.8) with SMTP id OAA00296; Sat, 2 May 1998 14:54:06 -0400 (EDT) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp1657.on.bellglobal.com: tim owned process doing -bs Date: Sat, 2 May 1998 14:54:05 -0400 (EDT) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: "Daniel M. O'Brien" cc: ports@FreeBSD.ORG, Eric Chet Subject: Re: Updated patches for imap In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 2 May 1998, Daniel M. O'Brien wrote: > Attached are hand massaged patches for the imap-uw port. These will > probably go down the same rat hole as the last email I sent you regarding > the imap port. At least I tried. Enjoy. DON'T DON'T DON'T DON'T DON'T DON'T DON'T DON'T DON'T DON'T DON'T DO NOT EVER _EVER_ SEND PATCHES TO ONE OF THE MAILING-LISTS AND EXPECT THEM TO BE SAVED!!!! We're very glad (!) to receive patches, or anything useful for that matter, but there is no single group or individual responsible for things posted to these mailing lists. When patches are posted, everyone looks at them and expects someone else to do something about them. Patches should be sent to either the port maintainer, or, if the port maintainer is known to be absent/non-responsive to email (such as the freebsd-ports@FreeBSD.ORG mailing list!!), they should be sent via send-pr(1). (See the handbook). Imap-uw is one of the more annoying ports, and we're very happy to have any help maintaining it. In fact, would you be interested in volunteering as the maintainer? -- Only two other people have a .sig like this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 13:05:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12784 for freebsd-ports-outgoing; Sat, 2 May 1998 13:05:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA12756; Sat, 2 May 1998 13:05:04 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19235; Sat, 2 May 1998 13:02:51 -0700 (PDT) Date: Sat, 2 May 1998 13:02:51 -0700 (PDT) Message-Id: <199805022002.NAA19235@freefall.freebsd.org> To: max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, max@FreeBSD.ORG Subject: Re: ports/6027 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: tgif2tex Responsible-Changed-From-To: freebsd-ports->max Responsible-Changed-By: max Responsible-Changed-When: Sat May 2 13:02:31 PDT 1998 Responsible-Changed-Why: I grabbed this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 13:09:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA13383 for freebsd-ports-outgoing; Sat, 2 May 1998 13:09:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns.mexcom.net (ver2-89.uninet.net.mx [200.38.135.89]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA13365 for ; Sat, 2 May 1998 13:08:47 -0700 (PDT) (envelope-from eculp@ver1.telmex.net.mx) Received: from mc.mexcom.net (telmex@ppp-14.mexcom.net [206.103.65.206]) by ns.mexcom.net (8.8.8/8.8.7) with SMTP id PAA19315 for ; Sat, 2 May 1998 15:05:28 -0500 (CDT) Message-ID: <354B6FF2.496F9C72@ver1.telmex.net.mx> Date: Sat, 02 May 1998 14:11:46 -0500 From: Edwin Culp Organization: Mexico Communicates, S.A. de C.V. X-Mailer: Mozilla 3.01Gold (X11; I; Linux 2.0.18 i586) MIME-Version: 1.0 To: freeBSD-ports@FreeBSD.ORG Subject: GTK-1.0.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org With GTK-1.0.0 from ports, I haven't been able to compile Sane-0.72 or Gimp-0.99.28. Both seem to have a problem with gtk-1.0.0. Gimp can't run the test program from configure. Sane seems to have a problem with the library for xscanimage and xcam. I have removed anterior versions of all three and started from scratch because I was burned by not doing that a few versions ago. Thanks for your suggestions ed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 14:10:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17773 for freebsd-ports-outgoing; Sat, 2 May 1998 14:10:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17756; Sat, 2 May 1998 14:10:37 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19476; Sat, 2 May 1998 14:08:24 -0700 (PDT) Date: Sat, 2 May 1998 14:08:24 -0700 (PDT) Message-Id: <199805022108.OAA19476@freefall.freebsd.org> To: taoka@infonets.hiroshima-u.ac.jp, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6030 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bugfix: mule State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Sat May 2 14:07:53 PDT 1998 State-Changed-Why: Submitted patch applied, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 14:52:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22826 for freebsd-ports-outgoing; Sat, 2 May 1998 14:52:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA22818 for ; Sat, 2 May 1998 14:52:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19806; Sat, 2 May 1998 14:50:00 -0700 (PDT) Received: from crazyian.isc.ucsb.edu ([128.111.124.113]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA22714 for ; Sat, 2 May 1998 14:51:01 -0700 (PDT) (envelope-from ian@crazyian.isc.ucsb.edu) Received: (from root@localhost) by crazyian.isc.ucsb.edu (8.8.8/8.8.7) id OAA27323; Sat, 2 May 1998 14:51:10 -0700 (PDT) (envelope-from ian) Message-Id: <199805022151.OAA27323@crazyian.isc.ucsb.edu> Date: Sat, 2 May 1998 14:51:10 -0700 (PDT) From: ian@majesticnet.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6488: new port: junkbuster Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6488 >Category: ports >Synopsis: new port: junkbuster >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 2 14:50:00 PDT 1998 >Last-Modified: >Originator: Ian Struble >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: 3.0-current, but -stable is probably OK. >Description: This is a port of the Internet Junkbuster Proxy(TM) by request by . Enjoy :^) begin 644 junkbuster.port.tar.gz M'XL(",242S4``VIU;FMB=7-T97(N<&]R="YT87(`[%U[4^-(DI]_3<1^AUIZ M=QI8++^A88*]8:"[AQT:.&!V;FYWHT.6RK8:/3PJ";_I3'-_U<9#QM?/.E+M9M[O9Z[!O&6KN])OZ%2_]5 M#VRGUV[O-G>[NRTHUFKWFM^PWA=KD75!W]V4L6\"-WZPW&3$>?@<#7K>ZU,Q M_H,@Y.)+2,$2X]_I-KM0K-WIME_&_SFN.^,?^96SO=5L[G2[#XS_3F]F_#O- M%NA_L^J&S+N^\O'_<-QC&\&G?KOI`!^<_]YD!ZS9W>M[W;U6I[6ST_-V>JVF MR]L=S^_O=GK=9JNU]GLW^N6J[++T?WPS_#(QP%+^O]M!^]_LO/C_9[EFQO_H M_,.'MV?7U=;QJ/WOFO&'\*])]G]WY\7^/\=UR.+`XVSB3EF6L&`8)REG?3>. M>KB][S>C_\=NKH\NJZWA,_SN]CM;_7F<'\5][9^=%_Y_ENAX% M@L'_739.THPE`W8]XNPD!H&(><;^9L2#7:3)Y^G&]8=-A['#F/'/'@]YG*'I M6`/3P>.1&X,EF29YRL9I<.MZ4S89`:9@_329B"`>L@Q(3WB?"/@LR)@;BH2- MW/&8QP*)^`DT9)AR-V.?DCZV!D`)5(XO)SF6#X%((C@#"Y5,\>/"5OUQ;:W. M3MR8765IW@_Y&@SI]U#W#8\=Z,M+U#KOFM'_B].3JXJ]_^/ZWVT6\5]KA_#_ M;JOWHO_/.99GS5<+\1T@2/<:`R:-O-M M/TR\FP>^]Y+D)N`/%H@'P?"!`H,DG;BI_T`)L`$BL[__W@_2-&+E8E^]4;#U MW\V\T9?(`"Z3_]OM[)+^-U_PW[-<<\:?_M9=M[(Z'K/_/;3Y"O]U6CTHUNWT MNB_V_SFNK:TM]L&]D<8X28-A[0J"KP\`!UD;_`S=[>V_6ZO6Z*7I_ MJ:WRA<^L^V8;0GQZ1"+XV&-P5U]C[/R'OUVQ@]HGSW/^M'&^R<9N*G@JY(., M_M1#F+B^>0"_Y).FVZ!TMI?,-SO^_6_7UD=#^M_N]GL-&?UO]OLO.C_ M]B M8,:.*-C+4S<+DAA5GC,([P@LSL.A;:?Y!W@=_[VB_P"!\11:/K99E/C!(/!DK2[@T5QP22^/P_/?F;O.>!+ M-V07@"D#CYT&'H!5[B!.!AQ*DV9@@R)`MD$V8F?G[)?#R\O#L^M?'4GMBG,V MRK+Q?J,QF4R<0N&$`Z\U1EF#QXWA.'1&610R:.;EV\/C#V\+1O@\XPGC(/ M@/L0.A&!><4DH/5*RME6G&1;S,VS)`)6>6`2I](2^]\AU@?T#C5*8O"NR)(Q M,3/EU+RB;8X9-!J+((:N19+Y8A$.!9_Z`$R(29**$A$_\:A#DE0V`GGT7#T: M6"#E(7?ET*IFPH<&H:#[`/;&`AQ/AL(FL!M]58+[K#\M^F!&P+Q>JPFZ)UUX MA7*`;1'$N?.?V(BG?!L()M;80;L]&(@BIS@PA.1H$W@E$5*!>8]XJ![?)#`JD@9+*N>SAA MD"S40O>ZCE?*^N@A1+E`+1"H^.N#&2US^YA!TS6F?`!L2T'<0/L<9UW2B_(P M"]`F4[&/^/K'/(7!(XY(H;9$N5RJ5E-*'"BK;6DR*?*#+Z'F8^Y0!!FGTK*< M%,!"[0O>8I[2]3P0(A+L-`F)QY+G2@Q`R7P4!E[.2"N;X/CX(+/?Q@ M,;!G8YY&R'EZ`;73J#W;0`L%HQO#^`M@*GWU[O`_-RV;K#(B-1@DG1PIB0)4 MB_9W_;_J[Z2D9EC!EP1+&71"-E/^60ZO!A:]7C^_6!H5!\*VL) M!D;1M$:0N+E:8[9)!..$)="'%#HU0"^B?HG*`D,UE81L!IONRP@1\[JMKG9U?OSTX M16,=)4!FS),Q\O<$W@6.1%,K[TT>Q8V3>!HEN?+DB@I$"VO=@+&T'"AX;>`3CK$4<^BB%%OI[^QN"8<9RO'K#'J$IM^9 MZ2T*E2Q_3Y>+`K6:D=]]E`REOJ`H=97UKP=BC`GW.R_2#$(=PKV8>RCK^^PG MSL?UPQ""EJ)SJ,0\KBLUU=K!M:''+EK1X"0(0_4*^5#/4%?ZO1%DKP4#GD#; M:+Y"L:D^8LF8-`[T^>_`*+QM;1:V18M\(","P)OX%UV9;438QLG9X?'QYZ5+V,8615-Q+QI-IN6%RPQ`YTAN/X1 MB-O<;UOMKM-N[CKM7M-I=WO[;YIOBE@9;5I:!X<+/"B8FN%D"[EZ"A8Y6_\9 MBQUB,;!-&V@MUG\^K&_MKV\JD=H0FT4#"Z*UVO=%7(T?3#,X!Y7NU$] MXG6!@3TX5/$]D$-CY><0V2E)EJT8`<4ZR)A(9/!!#B:)(28&Z?F%T@?L!`8\ M1D_M9>(^%&,"9L`D2F1E#Y'?6(F*QZ((/U`56D;/;D?1.I_W<[2/JMZ0W_(0 MV4V?DU.P`P*H'7R%=F=6F/7*H@;L82V(;-]?'#%VP,0HF4CK^?[M=>/B_.JZ M<71^=O;VZ%K;G9EWV_`NEBB]6R@I@I@L%S,O=>&EDW-F*CQIG,\O^`8*_GA\ M:0HJ&X8Y)!VJF<*M'2A\>OX>"V._49-]-W.E@YS/`F,@UXG*.@Q7B@V_Q3A= MQ?AU?'?Z.J7W$2#5SR]?HZT8ZY&`L%&;L!6TUR975FJ"9FQQ!9KH,@)>`6TG6B`3YG MRK!V*&)[ZW(G_D`9!9D7H(3@2GD!>!L)5)P4J#0G4&U*P/2V@H1`E?F`!=(! M:JQ63@8\)1>@ZWYZ)D`S?NE$@!FQ1=,`ZH7Y.8#[YEWM#E:1`-"MMN%_<6_7 MM@+VUY7,(G^;_&*X7U.Z@_IM4DM@?DVOA/BM!TUV!;BOJ[#`OKFM&.HOC/2- MK"Z)\U>#^:K6:C!^!1!?61NW&ZY`_^OUJB\7%_NNG_]CU=9'0^O_VGMMEKM.^M_6B_K?Y[E MPF4Y]H3EW/4_>_N]G6+]CUU\=OU/>[_9?&C]S]Y>L?SG4`*[(P7L3@G8/;[P MYZM=]'-8`L(RN@]B+\S1X;A9"35`,"&P>2=7%S(+(:90>R3TE&@$8P=\<;,$ M\P)8`*DA8,E%3CF]F'-?)KT@=`X@,(./*1)5;=)X!-Z1`=`<\"R1-P%`B;+A M!LJKJ6H8XE@!'@0_%!5F%!82!UQTN'R"00`*!>XP\I(\A:`5VCM-8E[,H6#L MJ6-ZN2=(P*`)[N4I@MX)=V]B\J].L0!),7CI?*/.`Q1Y^9,!(F^5IM#9*0,1 MMJTD0^:&-P1'9`=4AE+&6;IM0`VSL@M3HW@62-Y=V5!D.U`4)/BBL3'I7,H9 M9,"*&+%,Z**6V25LZ;O*(;Y-IPP,`&(@(?-Y[/#H=+\H53L*`T0+48[(%3/! MU`@A5!P+P1G'A#2(T2VHE'SG]/#JFD7H=+!R(*CR:(&:PJT=*RC7YT`R2%*% MZ:#9TQ(EU=!IG+F?I0C%(#19BB),;9UC<`*Q;ZO8T?7)^1EZI:O+HX\(#/_1 MP+L/AU<_G;X]^Q=^\P]V?'6MOL,[\]V_+$(%U(51"WU2UKGU8*R[+D=JG?TO MQK'Q=-WNC6J'+.E)]B*(E/E\D..$AK@8_N(]U3)X+\ZC/HPM6(5^D!D-!85# M$QNYXL887@$J5F*G[JQL`+(;":4Z?0H/"[3&XM-2K0'7/%0+"?2")^`FM`+@ M`]HNMO'N:E,F@X.,`S#T.-N0?Y""V[=FJMG)AXOSRVLPT@SS/?*S@])E-)!2 MS87G(>PH,P)%M\E$#4%G<.^T-%ACG'_Q\A`""CU)!A8MEM[FY\M3J;V:HY=2 M_X$X_^R"048T+`&A3ITD`[U&B9+*%(<4>VPD;;XM36;'TUHM\#%W.U.;Q8I8)J05*ZS7?TUR M2GOJ"0TTU2I+#8*9X0":EE#\4E@')<9O=?%B?%3.E1R/C"K@BR2\-4$&"I9S M=P0P\=;J=9QVL^DT%:_,6%IF"62Z*3T5"H/*WFZ#S90SK/QS1HE711;T&FPE M.OHY54)%^+^&M3[G#"*I?4:3J!YN;\X@TI[>'5Z(T*U%J"JI";*/@1)^IV>7 MOI/5PY":5*S*7)!W5IRAR<=I:6T9!HUD!RC[#?158@ZG&RS%5[9+1BID*2!6 M7*=(,$E#?UU+@,^F/"MF9]#.Z.A4VHA`[1?/Y`2ERO&B1F!T`\(GBH`QC2$* MU?(A4RO(Z&024_CH0:0/0HA;U*_U=M!;8=TH"ILSME09GRGT(`]Q@@^:9=F?V4&O%7>O MU)R-=.UR(M-2;TF@AAH%(?X;Q)X=L3]7>&H098I4)8) M[Y1G>1I+((4)1Z# M$1E7`XR?@(LK@\4Z(5X5**X,$U<%B8W(/0"(=9DEX?!C:'A1,%PT<5DH7.C3 M2D#8D)D'@^?4,1<$%[U8&@)7@(!-[2OBWPK@KVG*TN#7O%F&OG.0;W7`MQK< M6RGL71GUK@AZE\2\9M261[S:^E:*=^?"75W3PV#7=*42J#M#[1Z@:TH]'>8: M$@^`7,.`,L0UKZX"<%?#M[-,GT6WUM!5@6UGJS,AN*YG+JZ='4M$KN:S:C#M MFEEF51&BK0[05H5GJX.SCZ-9SXZ+U'V;G MRKS5'ZWF?M->_5%L<[F[]F/WH;4?/>OHEQ,=(R+\_<%LP7D@N?65+OVPCDR) M\&AF^>7VPOF9@?N;S,_0L)7.KV`?$MI`$XU3/H(^XE"8'40R^'=OH3(7(R$> M"IDOV688+4+LR-W4&S$>#P.]%(,:K[9@*6R!M\CO]:*!ZR:GAIO'P+&L4Z7H MH-89=]1F0=TY-\S<6_C*=?Q@&&1N2-WSAD$=3ZX$/Y]._V,\//CM6T14!^!A MOQU$V8'S[6\'?V[_4%3Z%WC*T_#/G4-369']?1N-LZE>,D]+>&GSEOJDSZ&' MF+^3`^YBY";42=F^-7%R70IF*%8ND)"*J1(=KLB5Y1OTWW:'\"\/0>!IOGJ_ MW2D8:HWZ`X/>F#_H;I:YWHW51JL!!1HBA*["<[F_)L!5T7)?VD:"(0HJAZIY MDR8:Y@D=A`U#\!^4@G"&P<":5`II+:L\OK<<\RE,ZTI11+[C\MD\<["QD7M# M<6Y$^'9;$DMYE-P6BZYI67Q2)%3WU0J,R637$;EWP]-!@`I>$AR4>FC1QRR/ M0+K3!H[2E/OU(*XC(#QH=3MO=O7<<7(CY&X\0[XBXN6I4&^4C`%!#&AH3!@: M\D$FMU"2Q4-$S''+3C^EX_#D>%*C%F[//'F@]&``@X`!*I@7S!!,=0J=,(F$ M8+2/=%\O(W,B-P[&H/!^X)HC'W!W(1`+I]`7:5;*D\*_H!K%B8E1MTD:LQ'E MT*@Y`L9XZ*9^:.54[E:OY4V>`"T:$?0L+B?Y\ MO0U2PEY:,"UWE$Q;TJ8=L(U8I%[7G0^VEUKJ#4-!LK83A`&NAYB[I MI<:6L\7T,O`":5MI:(ZZJ)H/A67/BN?&,1?C`!H&/?!S+SL#9CA;6M6*=N"B M[RU-43$.A8H2X]N40Z!`'YCNZ*$$\L[67&>S^&2`L3MTIF+9-/X;]Q6GKJ<2 MZEX2YE%,>1FY34S[)TRF@SRD_#9((CU71@0!Z&8J48[)<9VJ@"$H@*3* MK,EIFW$(=LG,!O%8$_MW-$4-@9&07BD7O"D?NC$5WAZK'(PZ'(W$A$5UYA'/)H M&+)T%#(3A"P0@SPY!+$CD"H#$-OR511^5!E]S`D^GC^)>G_^CU=6QR/GOW<[ MK;OGO^^^_/['LUR4_RL.!@OI=AE)JV!8UY/V??:@V?E`YCH]ZZ4[\6S"VBK.ITK$"8B3[G9\:&. M67#F1>UXI)?`,!A7N(&6A"!5X(UHEG&L5BB!P&XDVGT]:`'(S'?$"^F/&HUG;HT.)K@?=/MAJ5&HU';<8L M?EG"8MQK,*JU%R7@L;JUJ-!85&\K*C8594MQUU"\K$!XPG5__#^HK(Y'YO^[ M[>[=WW]Y^?V_Y[DH_K=^N^`>`-#N60#`*CX'`>P]A`!V=PL$H,X@HQ/@2@?E MH>]Y.0#B[@$0M#QOP-TLE^=JHE]0)U2BF?[Q^OJB6/MV&[C%0B_<'!&8XP]. MLMFS$_L1Z8GD>[XI5VMJQ0N`9B[&;(F&U*04(Z1)N#7F`((G@U!Q[YMG'')ARWQ<-N3 M9M35^=%/_]?>M?ZFC03QS_9?X0M(0`HFST;B>LVAAN90$X(`*:>KJL@)'$0! MC'"]!AP*;'L?ZHTB)<;,/CR>G=_L/-ISO@D!!X,`HU!Z+SX` M"/1(4G)6O^''\[F"MO\OGW$W&'R1R4YA!O'/+3&&F\?9I*?^B=VB>A"36-Q-J.>292-N*#5,#F33/<+_*),5Z[.FNY=)/1DTB>OAU%4D% MNNPC65C%04N1/;MYO'V_QR^A-Y;>KQX;QCFK-1,3CK9Q`0,L`]^(C\<2WW9' M,Y'6LH)Y&G&4?(NZ#I3D^8AG?P(RD9ZF,F$SDE]R1CMT[4M2)`2-':K/$ MPTJ>ZN-@2BQX$<(N@[KY1?.ZBJR*BRW.'(25."?S>^`;KG.F#GO=^/0M*3=Y MVE0)T8*W9P:@:32[T>S/L-5SQ0A<$_T#7)C8NNBNXF3S)T]Q!'/AA()"I#NR M-R3A&6+\`@\:EV'L1Y$]P=QHH2L>XL.XESA`(4PP6N4)O>&[Z@GAYAD%6.C1 MG/JRU/_&8>?XR(/&&[).P.<@*I,YO'\/2\0[(R4.,4O""8(Z]>VJO%5YR>'HI(HL$3\H4LOPFJ"-(8KQ;OSOC MJ)2>F`A%D4H.XP'[8_TJS52\)WE8G.=?''SH:4LF#UQ% M/7O+>F[XST5GEZ-L=U64@^P\ST87[(M"F?$&L524YY2&+PP$V944_*F<-]`2PA!VUEL.&&,"\SQ(4W(HP!5759H!`4$H,^`F M"`*_^%.9[C*&L(,9Z&`".6P.'-1RF($-!E'#=J!!S6M;R&!K1^;+`8/JZCO! M!4'?%%8P!!6,(`6U=!O@!.U%-H82C(*$U1A!36$1(<@';@@?K(0'VE!>`0?+ ML<'\6+=#!@:!P3?@`GW>:Z*"9%`0R0QSD"`VT)6`P(XB?=>!`]%NL"D8,($% MMH<"VR*!=8#`FC@@KG^L0`%TXUH88"T((+ED:P"@)J64\->U?W7_UKI_0J]+ M-7_5JPF]WX#:OY'6GY[I?>>6?/[7-];'"O^_X[V]_47_O_WT_.]'-#K_4U7% M$T[_#@^UTS]U\^+9W\';5[W_CA*\_SJRT%D:_[O<74\MD(AWH50R@'.IUN%0 MP7I5).0VO!^21-^AU%!4BT[DX\S#YA^$G"N$7),QLL7C:)-@A_4?%5Y3<)W+ MJ""6*#W%*9.T3.H;.52IO'&JRMT2DR%M?%@IAO4Y0F5T31MC42KZK%HZN37G?BV)&F-2-*>3^S$J[= M_+E=47?/ET6H1&C##/WK'9EN!I-8B0@D*D_$J&*>YO4`V4/6(2MJ;O5<-!(H M"DT,.80=<3AIAS=?"%`8?J>Q@F.R2P<6/Q1%VSRLB41:%?-1B<.?0!^\^L3^ M[-$A+N_FKLQ#@M5K(F!.6)2SV($^V8=;G:$_[E/U+WB'@*/TJ=98*J:<207X:#09 M8)),)VO;S4_GC>IE[3<+]N$2#N>LWNZH*P?\_\?Z1:TM+KCPT-V_;/M#M5,[ MOVK5\0,,&+ZLMCNUUDV[WL$K*[=]QX9OU!L=^*VU@'1L1K:=:5S=U!OM3O7B MXN:RVFA6SY'J#'8;7).>2N39Y9V8,CNBP34$#6'XU`MJER].]NMUZ]-9O?52SN;EK`M:47BXH=FJ?:S_^5+&R&OM40*U2_JF M4YHXI9%SZYI"=3%ZK5[\N?67R2::NE%Y)&U]Z M5@J1M7.3*99$S3GR=!3YO/_/_835G,*"\]KX4G&R>QU-(8&Z0#-D\ MCZA0!@4GB?*E=I2UO:TI:VM*4M <;6E+6]K2EK:TI2UM:4M;VO[']A\2YHOO`,@``(X[ ` end >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 15:42:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA28708 for freebsd-ports-outgoing; Sat, 2 May 1998 15:42:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA28694; Sat, 2 May 1998 15:42:39 -0700 (PDT) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA20279; Sat, 2 May 1998 15:40:26 -0700 (PDT) Date: Sat, 2 May 1998 15:40:26 -0700 (PDT) Message-Id: <199805022240.PAA20279@freefall.freebsd.org> To: watanabe@z.phys.nagoya-u.ac.jp, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5707 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ja-dvipsk-5.66a (japanese/dvipsk) State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Sat May 2 15:39:33 PDT 1998 State-Changed-Why: Port imported with some changes. Basically, the changes I made were to simplify the Makefile. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 16:02:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01739 for freebsd-ports-outgoing; Sat, 2 May 1998 16:02:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA01717 for ; Sat, 2 May 1998 16:02:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA20337; Sat, 2 May 1998 16:00:01 -0700 (PDT) Received: from crazyian.isc.ucsb.edu ([128.111.124.113]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA01466 for ; Sat, 2 May 1998 16:00:53 -0700 (PDT) (envelope-from ian@crazyian.isc.ucsb.edu) Received: (from root@localhost) by crazyian.isc.ucsb.edu (8.8.8/8.8.7) id QAA06227; Sat, 2 May 1998 16:01:04 -0700 (PDT) (envelope-from ian) Message-Id: <199805022301.QAA06227@crazyian.isc.ucsb.edu> Date: Sat, 2 May 1998 16:01:04 -0700 (PDT) From: ian@majesticnet.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/6489: update: x11/dclock Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6489 >Category: ports >Synopsis: distfile no longer exists on stated MASTERSITES >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 2 16:00:01 PDT 1998 >Last-Modified: >Originator: Ian Struble >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: -current and -stable >Description: The distfile for this port is no longer available at the MASTERSITES listed in the Makefile for this port. This patch should help to clear the good name of ports@FreeBSD.ORG from Bill Fenner's unfetchable distfiles page. I just am not sure if it is appropriate to just clear out the old sites from the MASTESITES list. Someone else more knowledgable should decide. >How-To-Repeat: Try to fetch x11/dclock >Fix: Apply attached patch. ---- Common subdirectories: dclock.old/CVS and dclock/CVS diff -c dclock.old/Makefile dclock/Makefile *** dclock.old/Makefile Sat May 2 15:39:45 1998 --- dclock/Makefile Sat May 2 15:46:03 1998 *************** *** 9,17 **** DISTNAME= dclock PKGNAME= dclock-pl4 CATEGORIES= x11 - MASTER_SITES= ftp://ftp.ucs.ubc.ca/pub/old/X11/contrib/ \ - ftp://pdq.coe.montana.edu/pub/mirrors/X11-contrib/ \ - ftp://ftp.pasteur.fr/pub/computing/unix/X11/R5contrib/ EXTRACT_SUFX= .shar.gz MAINTAINER= ports@FreeBSD.ORG --- 9,14 ---- Common subdirectories: dclock.old/files and dclock/files Common subdirectories: dclock.old/patches and dclock/patches Common subdirectories: dclock.old/pkg and dclock/pkg >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 17:44:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14706 for freebsd-ports-outgoing; Sat, 2 May 1998 17:44:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14699; Sat, 2 May 1998 17:44:44 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from partitur.se (t3o62p6.telia.com [195.198.198.126]) by bastuba.partitur.se (8.8.8/8.8.8) with ESMTP id CAA04556; Sun, 3 May 1998 02:44:44 +0200 (CEST) (envelope-from girgen@partitur.se) Message-ID: <354BBDE3.3FAFE56D@partitur.se> Date: Sun, 03 May 1998 02:44:19 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.6-STABLE i386) MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6484: xemacs hangs References: <199805021340.GAA20883@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FreeBSD-gnats-submit@FreeBSD.ORG wrote: > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: xemacs hangs > >Arrival-Date: Sat May 2 06:40:04 PDT 1998 I've tried recompiling xemacs without HAVE_MOTIF, and it does seem to work better. In xwindow mode it in fact working alright. But in no window mode, (xemacs -nw) dired only displays one column of "rights", i.e. a 'd' if a directory and a dash (-) otherwise. The rest of the columns (that are with grey background in Xemacs window mode) are empty. hitting any key to act on the files results in a "no file on this line" message. (This message I have seem before, in certain situations, but I can't remember the exact setup at that time.) Anyway, my conlusion is that Xemacs 20.4 won't work with lesstif-0.83. At least not for me. It also does not work quite well without it in no window mode. /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 17:46:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14871 for freebsd-ports-outgoing; Sat, 2 May 1998 17:46:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14833; Sat, 2 May 1998 17:45:54 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA20632; Sat, 2 May 1998 17:43:40 -0700 (PDT) Date: Sat, 2 May 1998 17:43:40 -0700 (PDT) Message-Id: <199805030043.RAA20632@freefall.freebsd.org> To: Yoshio.Mita@isen.fr, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/4644 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: This is a new port xfig -international based on graphics/xfig State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Sat May 2 17:43:00 PDT 1998 State-Changed-Why: Patch applied. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Sat May 2 17:43:00 PDT 1998 Responsible-Changed-Why: I committed this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 17:52:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15515 for freebsd-ports-outgoing; Sat, 2 May 1998 17:52:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15510 for ; Sat, 2 May 1998 17:52:15 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA20660; Sat, 2 May 1998 17:50:01 -0700 (PDT) Date: Sat, 2 May 1998 17:50:01 -0700 (PDT) Message-Id: <199805030050.RAA20660@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Palle Girgensohn Subject: Re: ports/6484: xemacs hangs Reply-To: Palle Girgensohn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6484; it has been noted by GNATS. From: Palle Girgensohn To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Cc: Subject: Re: ports/6484: xemacs hangs Date: Sun, 03 May 1998 02:44:19 +0200 FreeBSD-gnats-submit@FreeBSD.ORG wrote: > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: xemacs hangs > >Arrival-Date: Sat May 2 06:40:04 PDT 1998 I've tried recompiling xemacs without HAVE_MOTIF, and it does seem to work better. In xwindow mode it in fact working alright. But in no window mode, (xemacs -nw) dired only displays one column of "rights", i.e. a 'd' if a directory and a dash (-) otherwise. The rest of the columns (that are with grey background in Xemacs window mode) are empty. hitting any key to act on the files results in a "no file on this line" message. (This message I have seem before, in certain situations, but I can't remember the exact setup at that time.) Anyway, my conlusion is that Xemacs 20.4 won't work with lesstif-0.83. At least not for me. It also does not work quite well without it in no window mode. /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 19:18:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA00845 for freebsd-ports-outgoing; Sat, 2 May 1998 19:18:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fanfic.org (fanfic.org [205.150.35.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA00830 for ; Sat, 2 May 1998 19:18:55 -0700 (PDT) (envelope-from dstenn@fanfic.org) Received: from fanfic.org (localhost.fanfic.org [127.0.0.1]) by fanfic.org (8.8.8/8.8.8) with SMTP id WAA14103; Sat, 2 May 1998 22:18:43 -0400 (EDT) (envelope-from dstenn@fanfic.org) Posted-Date: Sat, 2 May 1998 22:18:43 -0400 (EDT) Date: Sat, 2 May 1998 22:18:42 -0400 (EDT) From: Dennis Tenn To: Edwin Culp cc: freeBSD-ports@FreeBSD.ORG Subject: Re: GTK-1.0.0 In-Reply-To: <354B6FF2.496F9C72@ver1.telmex.net.mx> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 2 May 1998, Edwin Culp wrote: | With GTK-1.0.0 from ports, I haven't been able to compile | Sane-0.72 or Gimp-0.99.28. Both seem to have a problem with | gtk-1.0.0. Gimp can't run the test program from configure. | Sane seems to have a problem with the library for xscanimage | and xcam. | | I have removed anterior versions of all three and started | from scratch because I was burned by not doing that a few | versions ago. | | Thanks for your suggestions That's not the same with me. I started out compiling gimp-0.99.28 and it complained that it needed gtk-1.0.0. I had an older version of gtk installed so I upgraded gtk via the ports and then recompiled gimp and it completed successfully. Now I'm happily using gimp-0.99.28. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Dennis Tenn * There will always come a time dstenn@fanfic.org * When your love will be tested ICQ# 1457509 * Stand tall and rise to the occasion * For only then will you grow strong. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 19:35:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA05343 for freebsd-ports-outgoing; Sat, 2 May 1998 19:35:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fanfic.org (fanfic.org [205.150.35.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA05322 for ; Sat, 2 May 1998 19:35:49 -0700 (PDT) (envelope-from dstenn@fanfic.org) Received: from fanfic.org (localhost.fanfic.org [127.0.0.1]) by fanfic.org (8.8.8/8.8.8) with SMTP id WAA21393 for ; Sat, 2 May 1998 22:35:47 -0400 (EDT) (envelope-from dstenn@fanfic.org) Posted-Date: Sat, 2 May 1998 22:35:47 -0400 (EDT) Date: Sat, 2 May 1998 22:35:47 -0400 (EDT) From: Dennis Tenn To: FreeBSD-ports@FreeBSD.ORG Subject: enlightenment-0.13.3 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I successfully compiled and installed enlightenment but I'm getting an error "Wrong JPEG library version: library is 61, caller expects 8". I tried reinstalling jpeg from the ports but that didn't work. I'm wondering if there is a new jpeg port that is necessary for enlightenment to work or if anyone has found a work-around for this problem. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Dennis Tenn * There will always come a time dstenn@fanfic.org * When your love will be tested ICQ# 1457509 * Stand tall and rise to the occasion * For only then will you grow strong. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 20:10:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA12578 for freebsd-ports-outgoing; Sat, 2 May 1998 20:10:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA12515; Sat, 2 May 1998 20:10:31 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA21118; Sat, 2 May 1998 20:08:14 -0700 (PDT) Date: Sat, 2 May 1998 20:08:14 -0700 (PDT) Message-Id: <199805030308.UAA21118@freefall.freebsd.org> To: junker@jazz.snu.ac.kr, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/6143 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port request: korean/kaistfonts State-Changed-From-To: open-analyzed State-Changed-By: kuriyama State-Changed-When: Sat May 2 20:07:24 PDT 1998 State-Changed-Why: I'll check this. Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Sat May 2 20:07:24 PDT 1998 Responsible-Changed-Why: I'll check this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 20:12:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA12955 for freebsd-ports-outgoing; Sat, 2 May 1998 20:12:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA12804; Sat, 2 May 1998 20:11:57 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA21188; Sat, 2 May 1998 20:09:42 -0700 (PDT) Date: Sat, 2 May 1998 20:09:42 -0700 (PDT) Message-Id: <199805030309.UAA21188@freefall.freebsd.org> To: bovynf@awe.be, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/4192 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Amulet State-Changed-From-To: open-analyzed State-Changed-By: kuriyama State-Changed-When: Sat May 2 20:08:48 PDT 1998 State-Changed-Why: Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Sat May 2 20:08:48 PDT 1998 Responsible-Changed-Why: I'll check this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 20:38:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17696 for freebsd-ports-outgoing; Sat, 2 May 1998 20:38:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17652; Sat, 2 May 1998 20:37:54 -0700 (PDT) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id XAA29438; Sat, 2 May 1998 23:32:54 -0400 (EDT) Date: Sat, 2 May 1998 23:32:53 -0400 (EDT) From: Tim Vanderhoek Reply-To: Tim Vanderhoek To: CHOI Junho cc: freebsd-ports@FreeBSD.ORG, bug-followup@FreeBSD.ORG Subject: Re: ports/6450: port upgrade: korean/hanterm-xf86 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please note that follow-ups to a PR should be sent to bug-followup@FreeBSD.ORG or to freebsd-gnats-submit@FreeBSD.ORG (I think I got that second one right?). Sending it to freebsd-gnats@FreeBSD.ORG does not enter it into the followup. I have Cc'd this to bug-followup@FreeBSD.ORG so it is now in the followup for the PR. Also Cc'd to -ports, even though gnats will forward a copy there later, since I think I've also seen the error perpetuated on that -list. On 29 Apr 1998, CHOI Junho wrote: > Date: 29 Apr 1998 17:18:14 +0900 > From: CHOI Junho > To: FreeBSD-gnats@FreeBSD.ORG > Cc: freebsd-ports@FreeBSD.ORG > Subject: Re: ports/6450: port upgrade: korean/hanterm-xf86 > > >>>>> "FreeBSD-gnats" == FreeBSD-gnats writes: > > > Category: ports Responsible: freebsd-ports Synopsis: port > > upgrade: korean/hanterm-xf86 Arrival-Date: Wed Apr 29 01:00:01 > > PDT 1998 > > I did a big mistake. Please take it as a new diff: > > diff -uNr /usr/ports/korean/hanterm/Makefile hanterm/Makefile > --- /usr/ports/korean/hanterm/Makefile Tue Mar 17 02:40:53 1998 > +++ hanterm/Makefile Wed Apr 29 17:05:16 1998 > @@ -1,20 +1,21 @@ > -# New ports collection makefile for: hanterm304beta6p1 > -# Version required: 3.04beta6p1 > +# New ports collection makefile for: hanterm3.04 > +# Version required: 3.04beta7 > # Date created: 12 Mar 1997 > # Whom: CHOI Junho > # > # $Id: Makefile,v 1.3 1998/03/16 07:17:40 steve Exp $ > # > > -DISTNAME= hanterm304beta6p1 > -PKGNAME= ko-hanterm-3.04b6.1 > +DISTNAME= hanterm304beta7 > +PKGNAME= ko-hanterm-3.04b7 > CATEGORIES= korean x11 > -MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ > +MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/incoming/hantermbeta7/ \ > + ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ > ftp://ftp.kreonet.re.kr/pub/hangul/cair-archive/terminal/hanterm/hanterm304beta/ > > MAINTAINER= junker@jazz.snu.ac.kr > > -RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/korean/johab:${PORTSDIR}/korean/johabfonts > +RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/misc/johabm16.pcf.gz:${PORTSDIR}/korean/johabfonts > > USE_IMAKE= yes > NO_INSTALL_MANPAGES= yes > diff -uNr /usr/ports/korean/hanterm/files/md5 hanterm/files/md5 > --- /usr/ports/korean/hanterm/files/md5 Tue Mar 17 02:40:53 1998 > +++ hanterm/files/md5 Wed Apr 29 17:05:46 1998 > @@ -1 +1 @@ > -MD5 (hanterm304beta6p1.tar.gz) = c6274b0abdd913b8bf007fbf12b77c93 > +MD5 (hanterm304beta7.tar.gz) = d604ef46f8b3e73fc25e81adc8f6fc6d > > > -- > ----Cool FreeBSD!----MSX Forever!---J.U.N.K.E.R/Beat Snatchers!---- > CHOI Junho http://jazz.snu.ac.kr/~junker > Distributed Computing System Lab,CS Dept.,Seoul National Univ., ROK > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 20:42:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA18573 for freebsd-ports-outgoing; Sat, 2 May 1998 20:42:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA18549 for ; Sat, 2 May 1998 20:42:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA21385; Sat, 2 May 1998 20:40:03 -0700 (PDT) Date: Sat, 2 May 1998 20:40:03 -0700 (PDT) Message-Id: <199805030340.UAA21385@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Tim Vanderhoek Subject: Re: ports/6450: port upgrade: korean/hanterm-xf86 Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/6450; it has been noted by GNATS. From: Tim Vanderhoek To: CHOI Junho Cc: freebsd-ports@FreeBSD.ORG, bug-followup@FreeBSD.ORG Subject: Re: ports/6450: port upgrade: korean/hanterm-xf86 Date: Sat, 2 May 1998 23:32:53 -0400 (EDT) Please note that follow-ups to a PR should be sent to bug-followup@FreeBSD.ORG or to freebsd-gnats-submit@FreeBSD.ORG (I think I got that second one right?). Sending it to freebsd-gnats@FreeBSD.ORG does not enter it into the followup. I have Cc'd this to bug-followup@FreeBSD.ORG so it is now in the followup for the PR. Also Cc'd to -ports, even though gnats will forward a copy there later, since I think I've also seen the error perpetuated on that -list. On 29 Apr 1998, CHOI Junho wrote: > Date: 29 Apr 1998 17:18:14 +0900 > From: CHOI Junho > To: FreeBSD-gnats@FreeBSD.ORG > Cc: freebsd-ports@FreeBSD.ORG > Subject: Re: ports/6450: port upgrade: korean/hanterm-xf86 > > >>>>> "FreeBSD-gnats" == FreeBSD-gnats writes: > > > Category: ports Responsible: freebsd-ports Synopsis: port > > upgrade: korean/hanterm-xf86 Arrival-Date: Wed Apr 29 01:00:01 > > PDT 1998 > > I did a big mistake. Please take it as a new diff: > > diff -uNr /usr/ports/korean/hanterm/Makefile hanterm/Makefile > --- /usr/ports/korean/hanterm/Makefile Tue Mar 17 02:40:53 1998 > +++ hanterm/Makefile Wed Apr 29 17:05:16 1998 > @@ -1,20 +1,21 @@ > -# New ports collection makefile for: hanterm304beta6p1 > -# Version required: 3.04beta6p1 > +# New ports collection makefile for: hanterm3.04 > +# Version required: 3.04beta7 > # Date created: 12 Mar 1997 > # Whom: CHOI Junho > # > # $Id: Makefile,v 1.3 1998/03/16 07:17:40 steve Exp $ > # > > -DISTNAME= hanterm304beta6p1 > -PKGNAME= ko-hanterm-3.04b6.1 > +DISTNAME= hanterm304beta7 > +PKGNAME= ko-hanterm-3.04b7 > CATEGORIES= korean x11 > -MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ > +MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/incoming/hantermbeta7/ \ > + ftp://ftp.kaist.ac.kr/pub/hangul/terminal/hanterm/hanterm304beta/ \ > ftp://ftp.kreonet.re.kr/pub/hangul/cair-archive/terminal/hanterm/hanterm304beta/ > > MAINTAINER= junker@jazz.snu.ac.kr > > -RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/korean/johab:${PORTSDIR}/korean/johabfonts > +RUN_DEPENDS= ${PREFIX}/lib/X11/fonts/misc/johabm16.pcf.gz:${PORTSDIR}/korean/johabfonts > > USE_IMAKE= yes > NO_INSTALL_MANPAGES= yes > diff -uNr /usr/ports/korean/hanterm/files/md5 hanterm/files/md5 > --- /usr/ports/korean/hanterm/files/md5 Tue Mar 17 02:40:53 1998 > +++ hanterm/files/md5 Wed Apr 29 17:05:46 1998 > @@ -1 +1 @@ > -MD5 (hanterm304beta6p1.tar.gz) = c6274b0abdd913b8bf007fbf12b77c93 > +MD5 (hanterm304beta7.tar.gz) = d604ef46f8b3e73fc25e81adc8f6fc6d > > > -- > ----Cool FreeBSD!----MSX Forever!---J.U.N.K.E.R/Beat Snatchers!---- > CHOI Junho http://jazz.snu.ac.kr/~junker > Distributed Computing System Lab,CS Dept.,Seoul National Univ., ROK > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 20:55:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA21266 for freebsd-ports-outgoing; Sat, 2 May 1998 20:55:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA21257; Sat, 2 May 1998 20:54:58 -0700 (PDT) (envelope-from roddie@krweb.net) Received: from localhost (roddie@localhost) by hub.org (8.8.8/8.7.5) with SMTP id XAA08093; Sat, 2 May 1998 23:54:59 -0400 (EDT) Date: Sat, 2 May 1998 23:54:58 -0400 (EDT) From: Roddie Hasan X-Sender: roddie@hub.org To: freebsd-current@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: -current and Gimp .99.28. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Updated my sources, built a kernel and made world this morning, and now when I run Gimp .99.28,get the splash screen, then I get a blank tips dialog and toolbar and the following message: /home/roddie$ gimp gimp fatal error: sigbus caught [n]othing, [e]xit, [s]tack trace, [a]ttach to process: A Stack Trace produces the following: #0 0x20191bbf in ?? () #1 0x2019196b in ?? () #2 0x385b3 in ?? () #3 0x8596e in ?? () #4 #5 0x2012f9a6 in ?? () #6 0x2012d3b7 in ?? () #7 0x2012dfa9 in ?? () #8 0x2015ffe9 in ?? () #9 0x2013b411 in ?? () #10 0x20139a81 in ?? () #11 0x2015ded1 in ?? () #12 0x2011ab58 in ?? () #13 0x2011a8a7 in ?? () #14 0x2011a701 in ?? () #15 0x857d7 in ?? () #16 0x1099 in ?? () Suspended (signal) I have deinstalled and reinstalled both Gtk and The Gimp with no success. Any suggestions, or am I even alone? Thanks in advance....Roddie <>> Roddie Hasan - roddie@krweb.net - http://www.krweb.net/roddie <>> "Early bird gets the worm, but the second mouse gets the cheese." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 22:53:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA12721 for freebsd-ports-outgoing; Sat, 2 May 1998 22:53:57 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA12716; Sat, 2 May 1998 22:53:54 -0700 (PDT) (envelope-from toor@dyson.iquest.net) Received: (from root@localhost) by dyson.iquest.net (8.8.8/8.8.8) id AAA00528; Sun, 3 May 1998 00:53:50 -0500 (EST) (envelope-from toor) Message-Id: <199805030553.AAA00528@dyson.iquest.net> Subject: Re: -current and Gimp .99.28. In-Reply-To: from Roddie Hasan at "May 2, 98 11:54:58 pm" To: roddie@krweb.net (Roddie Hasan) Date: Sun, 3 May 1998 00:53:49 -0500 (EST) Cc: freebsd-current@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: "John S. Dyson" Reply-To: dyson@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Roddie Hasan said: > > Updated my sources, built a kernel and made world this morning, and now > when I run Gimp .99.28,get the splash screen, then I get a blank tips > dialog and toolbar and the following message: > Don't run the current kernel. Run a kernel as of 20-Apr. -- John | Never try to teach a pig to sing, dyson@freebsd.org | it just makes you look stupid, jdyson@nc.com | and it irritates the pig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 23:01:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA13587 for freebsd-ports-outgoing; Sat, 2 May 1998 23:01:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hub.org (hub.org [209.47.148.200]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13581; Sat, 2 May 1998 23:01:14 -0700 (PDT) (envelope-from roddie@krweb.net) Received: from localhost (roddie@localhost) by hub.org (8.8.8/8.7.5) with SMTP id CAA22569; Sun, 3 May 1998 02:01:18 -0400 (EDT) Date: Sun, 3 May 1998 02:01:16 -0400 (EDT) From: Roddie Hasan X-Sender: roddie@hub.org To: "John S. Dyson" cc: freebsd-current@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: -current and Gimp .99.28. In-Reply-To: <199805030553.AAA00528@dyson.iquest.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Updated my sources, built a kernel and made world this morning, and now > > when I run Gimp .99.28,get the splash screen, then I get a blank tips > > dialog and toolbar and the following message: > > > Don't run the current kernel. Run a kernel as of 20-Apr. I do have an older kernel backed up, but I hadn't compiled scanner support until the current build.. Figures.. :) Assuming it's a known problem, any idea when it'll be remedied? Roddie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 2 23:42:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA17972 for freebsd-ports-outgoing; Sat, 2 May 1998 23:42:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA17958 for ; Sat, 2 May 1998 23:42:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA22947; Sat, 2 May 1998 23:40:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA17232; Sat, 2 May 1998 23:34:35 -0700 (PDT) (envelope-from nobody) Message-Id: <199805030634.XAA17232@hub.freebsd.org> Date: Sat, 2 May 1998 23:34:35 -0700 (PDT) From: mrspock@esfm.ipn.mx To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/6490: ImageMagick-4.0.2 requires an inexistent library: libttf.xxx.xxx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 6490 >Category: ports >Synopsis: ImageMagick-4.0.2 requires an inexistent library: libttf.xxx.xxx >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 2 23:40:01 PDT 1998 >Last-Modified: >Originator: Eduardo Viruena Silva >Organization: ESFM-IPN >Release: FreeBSD 2.2.6 >Environment: FreeBSD Isabeau.esfm.ipn.mx 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE #0: Wed Mar 25 02:28:49 GMT 1998 jkh@time.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: Image Magick 4.0.2 is not working properly. It seems to need a library: "libttf" Trying to compile ImageMagick from CVS Repository is useless also. The package does not compile fine. There seems to be an "include" file that is not located in a proper place. >How-To-Repeat: Install FreeBSD 2.2.6 Install ImageMagick.4.0.2.tgz using pkg_add >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message