From owner-freebsd-ports Sun Oct 8 0: 2:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hun.org (hun.org [216.190.28.252]) by hub.freebsd.org (Postfix) with ESMTP id 5C5C137B503; Sun, 8 Oct 2000 00:02:15 -0700 (PDT) Received: by hun.org (Postfix, from userid 1001) id 04A381C2AB; Sun, 8 Oct 2000 07:02:12 +0000 (GMT) From: attila! X-Organization: hun.org, over 40 years beyond the fringe home for unpenitent hackers and anarcho-cryptophreaks Die-Spammers: Spammers cheerfully broiled and served with Stubbs's "Inferno" Wicked Chicken Wing Sauce Mailer: FreeBSD 5.0-20000925 with XEmacs V21.1.10 (see alt.religion.emacs) Ballistic: N 37.218497 W 113.614979 To: freebsd-current@freebsd.org, freebsd-ports@freebsd.org Subject: POSTFIX-- Wietse: tweak and go! --pkg & port: both duds Message-Id: <20001008070212.04A381C2AB@hun.org> Date: Sun, 8 Oct 2000 07:02:12 +0000 (GMT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- ***************************************************** POSTFIX should be included in /usr/src/contrib freebsd.org and freefall use it... time for an easy choice ***************************************************** (1) 28 Sep: tried installing postfix-current 'pkg' --nogo! Blew sendmail out of the water --repaired.... (2) 28 Sep: tried installing postfix-current 'port' -nogo! Blew sendmail out of the water --repaired... again. (3) 01 Oct: go for good ol' manual compile, from Wietse's tar file! BINGO! (see 'by the numbers' following) However, being of the suspicious type, before compiling, I did grep for possible missing FREEBSD5 definitions --there were two in the util/sys_defs.h file. Having suffered through close to 20 years of configuring sendmail.cf since BSD4.2 first released, I promptly deleted sendmail from my systems.... sorry Eric; m4 has its place, but .cf is not one of them; the syntax sucks, and the whole thing is an unnecessary, condescending mindfsck(1). ************************************************* Fryin' the egg, or doin' the deal by the numbers: ************************************************* Poor man's guide to installing 'Postfix' (a) pick a directory and 'tar -zxf snapshot-20000531.tar.gz' (b) 'cd snapshot-20000531' (c) 'grep FREEBSD */[ch]' showed util/sys_defs.h was missing two FREEBSD5 declarations --modify accordingly. patch for util/sys_defs.h +++ sys_defs.h Fri Oct 6 13:13:16 2000 @@ -47,11 +47,13 @@ #define HAS_ST_GEN /* struct stat contains inode generation number */ #endif - -#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) +#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ + || defined(FREEBSD5) #define HAS_DUPLEX_PIPE #endif - -#if defined(OPENBSD2) || defined(FREEBSD3) || defined(FREEBSD4) +#if defined(OPENBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ + || defined(FREEBSD5) #define HAS_ISSETUGID #endif (d) make (do config and create all makefiles) (e) make (again, do the big number) (f) add to /etc/master.passwd (with 'vi_pwd' or execute 'pwd_mkdb' after editing): postfix:*:70:70::0:0:Postfix Owner:/nonexistent:/sbin/nologin check that uid/gid numbers do not conflict with other users (g) add to /etc/groups: postfix:*:70: postdrop:*:72: Check that gid numbers do not conflict. postfix gid must match postfix gid in master.passwd entry. The separate 'postdrop' group is required for the maildrop directory which must not be group owned by postfix itself. -rwxr-sr-x 1 root postdrop 223526 Oct 1 00:35 /usr/sbin/postdrop drwx-wx--T 2 postfix postdrop 512 Oct 6 17:31 /var/spool/postfix/maildrop (h) /usr/tmpdir is required for linking. so as 'root', do 'mkdir /usr/tmpdir && make install' Most questions can be defaulted although I did elect to use the SETUGID maildrop file. I chose/accepted directories: configuration: /etc/postfix/ user programs: /usr/sbin/ daemons: /usr/libexec/postfix/ queue: /var/spool/postfix/ mans: /usr/local/man/ which keeps the concept of mail uniform. Then, as 'root': cd /etc/postfix rm -f aliases* ln -s /etc/aliases aliases ln -s /etc/aliases.db aliases.db I had done the same in /etc/mail for the latest version of sendmail to leave 'aliases' in its historical location as '/etc/aliases' (i) As 'root', execute postfix start which creates the necessary spool directories and behaves like a default sendmail system. The standard '/etc/postfix/main.cf' will use 'gethostname(3)' 'and getdomainname(3)'. Once it starts, check directory permissions, files, etc. postfix check Fix whatever is called out (if anything); then, although I did not find it necessary, it is recommended to: postfix stop postfix start to make sure everything is cleared and updated. (j) Leave sendmail running to flush its queue, or if '/var/spool/mqueue' is empty, kill 'sendmail'. After postfix is installed, 'mailq' only looks at the postfix queue; so: /usr/libexec/sendmail/sendmail -bp will show the old sendmail queue; the original sendmail at this point is only monitoring its own queue. (k) Create or add to file /etc/rc.local # ---- /etc/rc.local ---- # # 0a04 1650 attila create file and add postfix start # # if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf source_rc_confs elif [ -r /etc/rc.conf ]; then . /etc/rc.conf fi case ${postfix_enable} in [Yy][Ee][Ss]) if [ -f /usr/sbin/postfix ]; then echo -n ' postfix'; /usr/sbin/postfix ${postfix_flags} fi ;; esac # # ---- end rc.local ---- (l) disable sendmail in /etc/rc.conf sendmail_enable="NO" (m) enable postfix in /etc/rc.conf postfix_enable="YES" postfix_flags="start" When you reboot, postfix, not sendmail, will be active. (n) If your machine is the end destination with a single name where gethostname(3) == getdomainname(3), the installed /etc/postfix/main.cf file is all you need to run in basic mode. I trimmed /etc/postfix/main.cf to the essentials and added local machine destinations handled on the server. If you are running the machine as the final destination, the defaults basically do it all until you start playing with the filters and the rest of the special goodies in the collection of /etc/postfix/sample.------.cf files plus user contributed code which can be found on: www.postfix.org I changed the 'undisclosed_recipients_header' since the default 'To: undisclosed recipients:;' format is obnoxious and is not accepted by some mail transport agents. The modification does not create a 'To: ' line, but the 'X-Listmgr: lists@hun.org' is included in the header. # ---- /etc/postfix/main.cf ---- # # Global Postfix configuration file: main.cf # # derived from main.cf-original # # 0a02 0400 attila initialize # variables set by INSTALL.sh --also see, but do not change main.cf.default queue_directory = /var/spool/postfix command_directory = /usr/sbin daemon_directory = /usr/libexec/postfix mail_owner = postfix local_destination_concurrency_limit = 2 default_destination_concurrency_limit = 10 debugger_command = PATH=/usr/bin:/usr/X11R6/bin xxgdb $daemon_directory/$process_name $process_id & sleep 5 # variables set by attila (none required for default operation) # # indent continuing lines, do not use '\' # # OBVIOUS: DO NOT USE MY mydestination LINES # IF YOU DO, YOU WILL NOT RECEIVE ANY MAIL (bummer) # but don't worry, it will not be sent to me either, # just bounce, messing up your mailing list subscriptions! debug_peer_level = 1 smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) #undisclosed_recipients_header = X-Listmgr: lists@hun.org #mydestination = hun.org, localhost.hun.org, hun.net, attila.org, # mail.hun.org, www.hun.org, ftp.hun.org, hun10.hun.org, # hun11.hun.org, hun12.hun.org, hun13.hun.org, hun14.hun.org # # ---- end main.cf ---- (o) CAUTION: 'make world' reinstalls 'sendmail' even when NO_SENDMAIL=YES # do not build sendmail and related programs is included in '/etc/make.conf'; 'make world' may not compile sendmail, but it restores the symbolic link during 'make installworld': /usr/sbin/sendmail -> /usr/sbin/mailcap which blows away postfix' 'sendmail' interface. My alternative was: 'cp /usr/sbin/sendmail /usr/sbin/postmail' I had written a two step intermediate mail interface some time ago to eliminate the wait for sendmail to do its thing; so, all that was necessary was to change its target and all user mail programs on this network followed right along. otherwise, modify mail, Mail, Emacs, Pine, whatever to call: /usr/sbin/postmail ---- end ---- -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: latin1 Comment: No safety this side of the grave; never was, never will be iQBFAwUBOeAbia/ciqw+xvOFAQHCZgGAg2AMA/0WOrzbo8kOx6zERvBIgVtRahN2 YkWr4Q/oOgeQXmhi59hD1dAmEA1/f3iC =87j0 -----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 Sun Oct 8 3: 0: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1D8D37B66C for ; Sun, 8 Oct 2000 03:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA56956; Sun, 8 Oct 2000 03:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ice.42.org (ice.42.org [194.246.250.222]) by hub.freebsd.org (Postfix) with ESMTP id B201237B502 for ; Sun, 8 Oct 2000 02:56:43 -0700 (PDT) Received: by ice.42.org (Postfix, from userid 1000) id 1872A10C; Sun, 8 Oct 2000 11:56:42 +0200 (CEST) Message-Id: <20001008095642.1872A10C@ice.42.org> Date: Sun, 8 Oct 2000 11:56:42 +0200 (CEST) From: sec@ice.42.org Reply-To: sec@ice.42.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21829: Update port: audio/libsidplay (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21829 >Category: ports >Synopsis: Update port: audio/libsidplay (by maintainer) >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 Oct 08 03:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Stefan `Sec` Zehl >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: The old distfile of this port has been removed from the master site. A new version of the sidplay library has been released. The changes are only in the building process and not otherwise relevant. >How-To-Repeat: >Fix: Apply this patch diff -burN /usr/ports/audio/libsidplay/Makefile libsidplay/Makefile --- /usr/ports/audio/libsidplay/Makefile Wed Oct 4 11:58:07 2000 +++ libsidplay/Makefile Sun Oct 8 11:51:37 2000 @@ -6,7 +6,7 @@ # PORTNAME= libsidplay -PORTVERSION= 1.36.44 +PORTVERSION= 1.36.45 CATEGORIES= audio emulators MASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/ DISTFILES= ${PORTNAME}-${PORTVERSION:S/./_/g}.tgz diff -burN /usr/ports/audio/libsidplay/files/md5 libsidplay/files/md5 --- /usr/ports/audio/libsidplay/files/md5 Tue Aug 22 00:04:20 2000 +++ libsidplay/files/md5 Sun Oct 8 11:29:58 2000 @@ -1 +1 @@ -MD5 (libsidplay-1_36_44.tgz) = 3817743d04ee3c6acdffdc2aec38eea5 +MD5 (libsidplay-1_36_45.tgz) = a1a4d5bdec9f50e28aea822d098c4035 >Release-Note: >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 Oct 8 4:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5D0937B66C for ; Sun, 8 Oct 2000 04:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA95534; Sun, 8 Oct 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 1BD7D37B674 for ; Sun, 8 Oct 2000 04:11:36 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e98B8wX24401 for ; Sun, 8 Oct 2000 13:08:59 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e98B8ht14776; Sun, 8 Oct 2000 13:08:43 +0200 (CEST) (envelope-from dm) Message-Id: <200010081108.e98B8ht14776@home.dinoex.sub.org> Date: Sun, 8 Oct 2000 13:08:43 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21830: fix news/fidogate (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21830 >Category: ports >Synopsis: fix news/fidogate (by maintainer) >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 Oct 08 04:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: ifmail, fidogate >Description: port is broken since renaming the patchfile URL is not inthe right format, fixed too. >How-To-Repeat: >Fix: apply this patches diff fidogate/Makefile fidogate-4.4.1/Makefile --- fidogate/Makefile Sun Oct 8 10:37:13 2000 +++ fidogate-4.4.1/Makefile Sun Oct 8 13:00:39 2000 @@ -29,7 +29,7 @@ .include .if ${OSVERSION} < 300000 -EXTRA_PATCHES+= ${PATCHDIR}/patch-perl +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-perl .endif pre-configure: diff fidogate/pkg-descr fidogate-4.4.1/pkg-descr --- fidogate/pkg-descr Mon Jan 24 06:53:39 2000 +++ fidogate-4.4.1/pkg-descr Sat May 13 10:05:30 2000 @@ -3,4 +3,5 @@ * Fido Mail Processor * Fido File Processor * Fido Areafix/Filefix -http://morannon.fido.de/fidogate/ + +WWW: http://www.fidogate.org/ >Release-Note: >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 Oct 8 4:28:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from neo.skynet.be (neo.skynet.be [195.238.2.53]) by hub.freebsd.org (Postfix) with ESMTP id 9F82937B503; Sun, 8 Oct 2000 04:28:03 -0700 (PDT) Received: from [10.0.1.2] (dialup774.brussels2.skynet.be [194.78.236.198]) by neo.skynet.be (Postfix) with ESMTP id C74636D08; Sun, 8 Oct 2000 13:27:21 +0200 (MET DST) Mime-Version: 1.0 X-Sender: blk@pop.skynet.be Message-Id: In-Reply-To: <20001008070212.04A381C2AB@hun.org> References: <20001008070212.04A381C2AB@hun.org> Date: Sun, 8 Oct 2000 13:14:14 +0200 To: attila! , freebsd-current@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: Brad Knowles Subject: Re: POSTFIX-- Wietse: tweak and go! --pkg & port: both duds Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 7:02 AM +0000 2000/10/8, attila! wrote: > (a) pick a directory and 'tar -zxf snapshot-20000531.tar.gz' > > (b) 'cd snapshot-20000531' Three things: 1. You don't tell people where to get the postfix software. Start with , and select a mirror site close to you. 2. You mention the use of snapshots, but this is not recommended practice for sites new to postfix. Instead, start with the most recent "release" version, e.g., postfix-19991231-pl09. According to Wietse, the "snapshot" versions are: Work-in-progress code, subject to change, needs testing before it can become an official release. However, these versions are what he runs on his own systems, so it's probably better than the official "production" release version of code from most anyone else. 3. If you want to build postfix with libraries that Wietse does not consider "standard" for your platform, this will take just a bit more work. I have a "MAKEAS" script that I keep at the root of my /usr/local/src/postfix directory structure, and whenever I go to build a new version, I just execute: $ sh ../MAKEAS And it does all the "hard" preparation work for me, which I can then just follow up with a: $ make; sh INSTALL.sh According to the instructions. Currently, my MAKEAS script contains the following (with backslashes to escape the line-breaks I manually added to prevent mis-wrapping): make makefiles CCARGS="-I/usr/local/BerkeleyDB/include \ -DHAS_DB -DPATH_DB_H='' \ -L/usr/local/BerkeleyDB/lib" AUXLIBS="-ldb" \ LDFLAGS="-L/usr/local/BerkeleyDB/lib" LIBS="-ldb" \ SYSLIBS="-ldb" Note that this implies that on this machine I have previously built and installed the Berkeley db 2.7.7 (built with "../dist/configure --enable-compat185", because postfix uses only the db 1.85 interfaces) and BIND 8.2.2-P5 (or whatever the latest version is that you want to install) packages. Note that Berkeley db 3.0 installs in a slightly different directory, and that I've had problems with it causing runtime failures, etc.... Recent snapshot releases have added features for performing simple one line body_check regexp matching (like the older header_check), added support for DSNs, and a new "fast ETRN" feature that will avoid flushing the entire queue when a single site wants mail for them to be flushed (which now makes postfix more suitable for use at an ISP that provides backup MX services for its customers). -- These are my opinions -- not to be taken as official Skynet policy ====================================================================== Brad Knowles, || Belgacom Skynet SA/NV Systems Architect, Mail/News/FTP/Proxy Admin || Rue Colonel Bourg, 124 Phone/Fax: +32-2-706.13.11/12.49 || B-1140 Brussels http://www.skynet.be || Belgium "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 5:22:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ldc.ro (ldc-gw.pub.ro [192.129.3.227]) by hub.freebsd.org (Postfix) with SMTP id E31D137B503 for ; Sun, 8 Oct 2000 05:22:08 -0700 (PDT) Received: (qmail 86880 invoked by uid 666); 8 Oct 2000 12:22:04 -0000 Date: Sun, 8 Oct 2000 15:22:04 +0300 From: Alex Popa To: freebsd-ports@freebsd.org Cc: freebsd-stable@freebsd.org Subject: Re: moh_php4 not compiling, failing at config Message-ID: <20001008152204.A86778@ldc.ro> References: <20001005202213.A9631@ldc.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001005202213.A9631@ldc.ro>; from razor@ldc.ro on Thu, Oct 05, 2000 at 08:22:13PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 05, 2000 at 08:22:13PM +0300, Alex Popa wrote: > I am trying to compile php4 on a FreeBSD -stable, cvsupped last night, > and compiled today, with ports collection cvsupped some one hour ago. > > Also, since I think it should compile (-kthread appears in cc's > manpage), I cc'd this to -stable as well as -ports. > Sorry for the messge, but just as a warning to others: please DO NOT `chmod 0 /usr/local/sbin/httpd' while compiling mod_php4! I admit, it was stupid. ------------+------------------------------------------ Alex Popa, | "Artificial Intelligence is razor@ldc.ro| no match for Natural Stupidity" ------------+------------------------------------------ "It took the computing power of three C-64s to fly to the Moon. It takes a 486 to run Windows 95. Something is wrong here." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 5:28:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id A056137B66C for ; Sun, 8 Oct 2000 05:28:35 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id IAA14436 for ; Sun, 8 Oct 2000 08:20:52 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e98CKnF84656; Sun, 8 Oct 2000 05:20:49 -0700 (PDT) (envelope-from asami) To: ports@FreeBSD.org Subject: Re: cvs commit: CVSROOT avail References: <200010081150.EAA04996@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 08 Oct 2000 05:20:45 -0700 In-Reply-To: asami@FreeBSD.org's message of "08 Oct 2000 04:56:13 -0700" Message-ID: Lines: 265 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for your patience! :) This is what I posted to -current and -stable. A more detailed description for you guys follows the mail. ======= > From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) > Date: 08 Oct 2000 04:56:13 -0700 > To: current@FreeBSD.org, stable@FreeBSD.org > > Well, it only took 17 hours. :) > > I tried my best to be careful but I'm sure there are some ports that > broke as a result, so please be gentle! > > By the way, if you are expecting CVS to suddenly run faster, don't be > disappointed by it running as slow as ever. The speedup will only > come when the Attics are cleaned (a few months later) by the CVS > meisters. > > -PW > === > From: Satoshi Asami > Date: Sun, 8 Oct 2000 04:50:45 -0700 (PDT) > X-FreeBSD-CVS-Branch: HEAD > > asami 2000/10/08 04:50:45 PDT > > Modified files: > . avail > Log: > The conversion is over. > > Revision Changes Path > 1.128 +2 -2 CVSROOT/avail ======= So far I have only checked "make index" (s^pkg-descr^pkg/DESCR^ shows only one differences, databases/mytop which was committed with the new layout prematurely) and a couple of small ports by hand. I've unlocked the tree because all the massive repo-copies are done. I've just started a package build so errors will start showing up at the errorlogs/4-latest page soon. If you find something interesting, go ahead and fix it if it doesn't involve a file moving. If it does, please ask me for a repo copy. By the way, this is what I've done, for the record. (1) Renamed all files/patch-* to something else (usually extra-patch-*) and changed Makefiles or whatever that are using them. (2) Repo-copied all patches/patch-* to files, pkg/{COMMENT,DESCR,PLIST,INSTALL,DEINSTALL,REQ,MESSAGE} to pkg-{comment,etc.}, and files/md5 to distinfo. (The copyfiles script -- see below.) (3) Moved files under pkg/ that's not handled in (2) (usually a conditional plist) to the main directory, add a pkg- prefix and fixed the Makefiles. In very rare cases, they were just informative files so they were copied to files/ instead. (The renameplist script is attached below.) (4) Moved patches under patches/ that's not named patch-* to files/. Fix up Makefile if they are used. (5) Checked all places in Makefiles where PATCHDIR or PKGDIR appear in the Makefiles, and fixed them as necessary. Most of these are slave ports specifying some directory names explicitly ("PATCHDIR=${.CURDIR}/patches" -> "PATCHDIR=${.CURDIR}/files") or simple name changes ("cat ${PKGDIR}/MESSAGE" -> "cat ${PKGMESSAGE}"). (As you can see, something like the latter shouldn't have been necessary if the Makefile was written properly in the first place. ;) (6) Checked all Makefiles that has "/patches/" or "/pkg/" spelled out and fixed them as necessary. (7) Checked all places in Makefiles where MD5_FILE is defined and fixed them. Roughly in this order. And here are the two scripts. Not particularly pretty, but could be useful in the future. ====== #!/bin/sh doit=0 if [ $# -gt 0 ]; then if [ "x$1" = "x-doit" ]; then doit=1 shift fi fi if [ $# != 1 ]; then echo "usage: $0 category" exit 1 fi repo=/home/ncvs/ports cd $HOME/tmp/ports/$1 || exit 1 for port in *; do if [ ! -d $port -o "x$port" = "xCVS" -o "x$port" = "xpkg" ]; then continue; fi if cd $port; then echo "cd $port" if [ -f files/md5 ]; then if [ ! -f $repo/$1/$port/files/md5,v ]; then echo "error: $repo/$1/$port/files/md5,v does not exist" exit 1 fi echo "cp -p $repo/$1/$port/files/md5,v /home/ncvs/ports/$1/$port/distinfo,v" if [ "$doit" = 1 ]; then cp -p $repo/$1/$port/files/md5,v /home/ncvs/ports/$1/$port/distinfo,v fi cd files echo "cvs remove -f md5" if [ "$doit" = 1 ]; then cvs remove -f md5 fi cd .. fi if [ -d pkg ] && cd pkg; then echo "cd pkg" for j in *; do if [ -f $j ]; then file=$(echo $j | tr '[:upper:]' '[:lower:]'); case "x$file" in xcomment|xdescr|xplist|xinstall|xdeinstall|xreq|xmessage) ;; *) echo "error: file $j unknown" exit 1 ;; esac if [ ! -f $repo/$1/$port/pkg/$j,v ]; then echo "error: $repo/$1/$port/pkg/$j,v does not exist" exit 1 fi echo "cp -p $repo/$1/$port/pkg/$j,v /home/ncvs/ports/$1/$port/pkg-$file,v" if [ "$doit" = 1 ]; then cp -p $repo/$1/$port/pkg/$j,v /home/ncvs/ports/$1/$port/pkg-$file,v fi else if [ "x$j" != "xCVS" ]; then echo "non-file $j ignored" fi fi done cd .. echo "cvs remove -Rf pkg" if [ "$doit" = 1 ]; then cvs remove -Rf pkg fi fi if [ -d patches ] && cd patches; then echo "cd patches" if [ ! -d $repo/$1/$port/files ]; then echo "mkdir -p $repo/$1/$port/files" if [ "$doit" = 1 ]; then mkdir -p $repo/$1/$port/files fi fi for file in *; do if [ -f $file ]; then case "x$file" in xpatch-*) ;; *) echo "error: file $file unknown" exit 1 ;; esac if [ ! -f $repo/$1/$port/patches/$file,v ]; then echo "error: $repo/$1/$port/patches/$file,v does not exist" exit 1 fi echo "cp -p $repo/$1/$port/patches/$file,v /home/ncvs/ports/$1/$port/files/$file,v" if [ "$doit" = 1 ]; then cp -p $repo/$1/$port/patches/$file,v /home/ncvs/ports/$1/$port/files/$file,v fi else if [ "x$file" != "xCVS" ]; then echo "non-file $file ignored" fi fi done cd .. echo "cvs remove -Rf patches" if [ "$doit" = 1 ]; then cvs remove -Rf patches fi fi cd .. fi done if [ "$doit" = 1 ]; then cd $HOME/tmp/ports/$1 cvs commit -m "Convert category $1 to new layout." cvs -q update echo "running another cvs update" cvs -q update fi ====== copyfiles is supposed to be called with the category name. It will exit when it finds a file it can't handle. Basically it's the (3) and (4) above. Fix them until it stops complaining, then call it with the "-doit" option. ====== #!/bin/sh # renameplists tolower=0 if [ $# -gt 0 ]; then if [ "x$1" = "x-tolower" ]; then tolower=1 shift fi fi if [ $# != 0 ]; then echo "$0 (in port directory)" exit 1 fi dir=$(pwd | sed -e "s^$(dirname $(dirname $(pwd)))/^^") cd $HOME/tmp/ports/$dir/pkg for i in PLIST?*; do j=$(echo $i | sed -e 's/PLIST//') if [ $tolower = 1 ]; then new=$(echo $j | tr '[:upper:]' '[:lower:]') else new=$j fi cp -p /home/ncvs/ports/$dir/pkg/PLIST$j,v /home/ncvs/ports/$dir/pkg-plist$new,v cvs remove -f $i done cd .. cvs -q update ====== renameplist is just a stupid script that will repo copy pkg/PLIST to pkg-plist, then cvs remove the originals. You still need to modify the Makefile and commit the change along with the (uncommitted) cvs remove. There is a "-tolower" option to convert the "" part to all lowercase (I believe some porters used all-uppercase name just because PLIST is all-uppercase -- looks kinda ugly with the "pkg-plist" prefix). With these two scripts and a lot of emacs keyboard macros, I was able to convert the entire tree in 17 hours. Ok, enough rambling. Good night. :) -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 7:33:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp8.xs4all.nl (smtp8.xs4all.nl [194.109.127.134]) by hub.freebsd.org (Postfix) with ESMTP id C718537B502 for ; Sun, 8 Oct 2000 07:33:18 -0700 (PDT) Received: from list1.xs4all.nl (list1.xs4all.nl [194.109.6.52]) by smtp8.xs4all.nl (8.9.3/8.9.3) with ESMTP id QAA01812 for ; Sun, 8 Oct 2000 16:33:14 +0200 (CEST) Received: (from root@localhost) by list1.xs4all.nl (8.9.3/8.9.3) id QAA27888; Sun, 8 Oct 2000 16:33:13 +0200 (CEST) From: micheloo@xs4all.nl (Michel Oosterhof) To: freebsd-ports@freebsd.org X-Via: imploder /usr/local/lib/mail/news2mail/news2mail at list1.xs4all.nl Subject: Re: ksh93 port? Date: 8 Oct 2000 14:33:12 GMT Organization: XS4ALL Internet BV Message-ID: <8rq0j8$p1f$1@news1.xs4all.nl> In-Reply-To: <00100714264200.00981@gw.fosburgh.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org wotan@fosburgh.ORG (Jonathan E Fosburgh) writes: >On Sat, 07 Oct 2000, stanb@panix.com wrote: >> I have a couple of questions about the ksh93 port. >> >> It apears to depend upon a binary distributin from bell labs that is no >> longer current. >> >> Any idea where I can get this lder distribution? >> >> Second, was the source to this not released into the public domain a >> few months back? If so should the port not be updated to use this >> source? >Are you no longer able to get the binary dist. from ATT? Unless things have >changed lately, the file the package depends on is the most recent we can use >(It is statically linked for BSD/OS IIRC). I have never heard of source >being released, but I could be wrong. You can download the source at http://www.research.att.com/sw/download/ It's in the ast-ksh package, or ast-ksh-locale for a localized version. michel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 8:14:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7917437B502; Sun, 8 Oct 2000 08:14:56 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA74034; Sun, 8 Oct 2000 08:14:56 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 8 Oct 2000 08:14:56 -0700 (PDT) From: Message-Id: <200010081514.IAA74034@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21830: fix news/fidogate (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix news/fidogate (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 8 08:14:40 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21830 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 10:46:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.prod.itd.earthlink.net [207.217.121.85]) by hub.freebsd.org (Postfix) with ESMTP id CC2A037B503 for ; Sun, 8 Oct 2000 10:46:12 -0700 (PDT) Received: from Nikki (user-33qt4r5.dialup.mindspring.com [199.174.147.101]) by gull.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with SMTP id KAA17455 for ; Sun, 8 Oct 2000 10:46:09 -0700 (PDT) Message-Id: <200010081746.KAA17455@gull.prod.itd.earthlink.net> From: "Michael G." To: "freebsd-ports@FreeBSD.ORG" Date: Sun, 08 Oct 2000 12:46:09 -0500 Reply-To: "Michael G." X-Mailer: PMMail 2000 Professional (2.10.2010) For Windows 98 (4.10.1998) In-Reply-To: <200010080139.SAA03835@harrier.prod.itd.earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: KDE 1.94 packages and space... Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Well I went ahead and used /stand/sysinstall ...and reloaded from the ftp site...seemed to work... I get the feeling /stand/sysinstall does things in the background you don't get when you run pkg_add by hand. Later... Michael G. On Sat, 07 Oct 2000 20:39:56 -0500, Michael G. wrote: > I've just reloaded my system and upgraded it to 4.1.1 >-stable. My /usr partion is 4 gigs and with XFree86 4.01 installed >is 10% full. I downloaded all required packages and stored them on >a separate partition. My /var and /tmp are mapped to /usr...so I >would not have expected space problems..but sure enough, after >about 25 minutes /usr goes to 100% full and the KDE installation >fails. How is this possible? Rather than run the meta port >KDE-1.94.tgz, is there an order I can install the the acutal >packages in that will work? I've isntalled KDE 1.1.2 off the CD's >before with no problem. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Buick Performance...Driving fast with Class Passing everything but gas stations 71 Skylark Custom ICQ #24517082 mikegoe@earthlink.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 10:50:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBC4E37B66D for ; Sun, 8 Oct 2000 10:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA27561; Sun, 8 Oct 2000 10:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id F149437B502 for ; Sun, 8 Oct 2000 10:48:36 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id BAA13642; Mon, 9 Oct 2000 01:53:23 +0800 (CST) (envelope-from keith) Message-Id: <200010081753.BAA13642@freebsd.sinica.edu.tw> Date: Mon, 9 Oct 2000 01:53:23 +0800 (CST) From: keith@freebsd.sinica.edu.tw Reply-To: keith@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21832: Update port: chinese/xcin25, from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21832 >Category: ports >Synopsis: Update port: chinese/xcin25, from maintainer >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 Oct 08 10:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: >Environment: 4.x-stable >Description: Update chinese/xcin25 to 2.5.2 pre6. This patch is for the new port layout. >How-To-Repeat: Please commit, thanks. >Fix: --- Makefile.orig Mon Oct 9 00:30:12 2000 +++ Makefile Mon Oct 9 00:36:41 2000 @@ -6,15 +6,10 @@ # PORTNAME= xcin -PORTVERSION= 2.5.2p5 -PORTREVISION= 2 +PORTVERSION= 2.5.2p6 CATEGORIES= chinese x11 MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/devel/ -DISTNAME= xcin-2.5.2-pre5 - -PATCH_SITES= ftp://xcin.linux.org.tw/pub/xcin/xcin/patch/ -PATCHFILES= xcin-2.5.2.pre5.diff3.gz -PATCH_DIST_STRIP= -p1 +DISTNAME= xcin-2.5.2.pre6 MAINTAINER= keith@freebsd.sinica.edu.tw @@ -23,7 +18,7 @@ db2.0:${PORTSDIR}/databases/db RUN_DEPENDS= ${X11BASE}/lib/X11/locale/zh_TW.Big5/XLC_LOCALE:${PORTSDIR}/x11/XFree86 \ ${X11BASE}/lib/X11/fonts/local/kc15f.pcf.gz:${PORTSDIR}/chinese/kcfonts \ - ${LOCALBASE}/share/tabe/libtabe-0.1-6:${PORTSDIR}/chinese/libtabe + ${LOCALBASE}/share/tabe/libtabe-0.1.7:${PORTSDIR}/chinese/libtabe WRKSRC= ${WRKDIR}/xcin-2.5 USE_X_PREFIX= yes --- distinfo.orig Mon Oct 9 00:32:43 2000 +++ distinfo Mon Oct 9 00:36:50 2000 @@ -1,2 +1 @@ -MD5 (xcin-2.5.2-pre5.tar.gz) = 4fd07ab343f4027a2b3e87b277d0b451 -MD5 (xcin-2.5.2.pre5.diff3.gz) = 22eb30e0776d144e5b04b8882f56c036 +MD5 (xcin-2.5.2.pre6.tar.gz) = 23ac8b3f14d92d8c7a71498cd8be193b --- pkg-plist.orig Mon Oct 9 00:09:50 2000 +++ pkg-plist Mon Oct 9 01:16:26 2000 @@ -29,31 +29,26 @@ lib/X11/xcin25/tab/big5/bims_pinyin.tab lib/X11/xcin25/tab/big5/cj.tab lib/X11/xcin25/tab/big5/default.phr +lib/X11/xcin25/tab/big5/jyutping.tab +lib/X11/xcin25/tab/big5/jyutping0.tab lib/X11/xcin25/tab/big5/phone.tab lib/X11/xcin25/tab/big5/pinyin.tab lib/X11/xcin25/tab/big5/simplex.tab lib/X11/xcin25/tab/big5/sys.tab lib/X11/xcin25/tab/big5/tsi.db lib/X11/xcin25/tab/big5/yin.db -lib/X11/xcin25/tab/big5hkscs/cj.tab -lib/X11/xcin25/tab/big5hkscs/default.phr -lib/X11/xcin25/tab/big5hkscs/sys.tab -lib/X11/xcin25/tab/gb2312/default.phr -lib/X11/xcin25/tab/gb2312/jtcj_gb.tab -lib/X11/xcin25/tab/gb2312/pinyin.tab -lib/X11/xcin25/tab/gb2312/shuangpin.tab -lib/X11/xcin25/tab/gb2312/sys.tab -lib/X11/xcin25/tab/gb2312/wubizixing.tab -lib/X11/xcin25/tab/gbk/default.phr -lib/X11/xcin25/tab/gbk/sys.tab +lib/X11/xcin25/tab/EUC/default.phr +lib/X11/xcin25/tab/EUC/jtcj_gb.tab +lib/X11/xcin25/tab/EUC/pinyin.tab +lib/X11/xcin25/tab/EUC/shuangpin.tab +lib/X11/xcin25/tab/EUC/sys.tab +lib/X11/xcin25/tab/EUC/wubizixing.tab share/locale/zh_TW.Big5/LC_MESSAGES/xcin.mo @dirrm lib/X11/xcin25/bin @dirrm lib/X11/xcin25/doc/internal @dirrm lib/X11/xcin25/doc/modules @dirrm lib/X11/xcin25/doc @dirrm lib/X11/xcin25/tab/big5 -@dirrm lib/X11/xcin25/tab/big5hkscs -@dirrm lib/X11/xcin25/tab/gb2312 -@dirrm lib/X11/xcin25/tab/gbk +@dirrm lib/X11/xcin25/tab/EUC @dirrm lib/X11/xcin25/tab @dirrm lib/X11/xcin25 --- files/patch-aa.orig Mon Oct 9 00:37:10 2000 +++ files/patch-aa Mon Oct 9 00:39:34 2000 @@ -1,10 +1,9 @@ --- src/util/cin2tab/Makefile.in.orig Thu Jul 20 09:46:36 2000 +++ src/util/cin2tab/Makefile.in Sat Aug 12 15:13:28 2000 -@@ -72,6 +72,7 @@ +@@ -72,5 +72,7 @@ distclean: clean rm -f Makefile .depend install: $(BIN) -- if [ -f $(xcin_binp)/$(BIN) ]; then mv $(xcin_binp)/$(BIN) $(xcin_binp)/$(BIN).old; fi - $(INSTALL_PROGRAM) $(BIN) $(xcin_binp) + if [ ! -d $(xcin_libp)/bin ]; then mkdir -p $(xcin_libp)/bin; fi + if [ -f $(xcin_libp)/bin/$(BIN) ]; then mv $(xcin_libp)/bin/$(BIN) $(xcin_libp)/bin/$(BIN).old; fi --- files/patch-ae.orig Sat Aug 12 15:36:19 2000 +++ files/patch-ae Mon Oct 9 01:27:15 2000 @@ -1,6 +1,6 @@ ---- src/xcinrc.in.orig Mon Jul 24 09:44:21 2000 -+++ src/xcinrc.in Sat Aug 12 15:15:12 2000 -@@ -86,8 +86,8 @@ +--- etc/xcinrc.FREEBSD.orig Mon Oct 9 01:25:34 2000 ++++ etc/xcinrc.FREEBSD Mon Oct 9 01:25:47 2000 +@@ -87,8 +87,8 @@ (PINPHO_MAP "bims_pinyin") ; ; The following has effect only when AUTO_SELECTION is YES --- files/patch-ag.orig Mon Oct 9 00:53:29 2000 +++ files/patch-ag Mon Oct 9 00:53:20 2000 @@ -0,0 +1,20 @@ +--- cin/big5/Makefile.in.orig Mon Oct 9 00:46:13 2000 ++++ cin/big5/Makefile.in Mon Oct 9 00:53:01 2000 +@@ -28,7 +28,7 @@ + ( BIG5ENC=big5 BIG5HKENC=big5hkscs make -f Rules make-big5 make-big5hkscs ) + + all-FREEBSD: +- ( BIG5ENC=big5 make make-big5 ) ++ ( BIG5ENC=big5 make -f Rules make-big5 ) + + all-HPUX: + ( BIG5ENC=big5 BIG5HKENC=hkbig5 make -f Rules make-big5 make-big5hkscs ) +@@ -39,7 +39,7 @@ + install-LINUX: + ( BIG5ENC=big5 BIG5HKENC=big5hkscs make -f Rules install_big5 install_big5hkscs ) + +-install-FREBSD: ++install-FREEBSD: + ( BIG5ENC=big5 make -f Rules install_big5 ) + + install-HPUX: --- files/patch-ah.orig Mon Oct 9 01:06:46 2000 +++ files/patch-ah Mon Oct 9 01:11:46 2000 @@ -0,0 +1,11 @@ +--- po/Makefile.in.orig Sun Oct 8 12:12:14 2000 ++++ po/Makefile.in Mon Oct 9 01:11:33 2000 +@@ -27,7 +27,7 @@ + install: + if [ "$(GNU_GETTEXT)" = 1 ]; then \ + for l in $(LC_MESG); do \ +- msgpath=$(xcin_msgp)/$$l/LC_MESSAGES; \ ++ msgpath=$(xcin_msgp)/zh_TW.Big5/LC_MESSAGES; \ + if [ ! -d $$msgpath ]; then \ + $(INSTALL) -d $$msgpath; fi; \ + msgfmt -o $$msgpath/xcin.mo xcin-$$l.po; \ >Release-Note: >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 Oct 8 11: 2:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 4CAF537B503; Sun, 8 Oct 2000 11:02:50 -0700 (PDT) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.0/8.9.3) with ESMTP id e98I2dX98661; Sun, 8 Oct 2000 11:02:39 -0700 (PDT) (envelope-from jkh@winston.osd.bsdi.com) To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail In-Reply-To: Message from asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) of "08 Oct 2000 04:56:13 PDT." Date: Sun, 08 Oct 2000 11:02:39 -0700 Message-ID: <98657.971028159@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [redirected to -ports] > Well, it only took 17 hours. :) > > I tried my best to be careful but I'm sure there are some ports that > broke as a result, so please be gentle! > > By the way, if you are expecting CVS to suddenly run faster, don't be > disappointed by it running as slow as ever. The speedup will only > come when the Attics are cleaned (a few months later) by the CVS > meisters. I guess I must have been asleep during the discussions which preceded this move since the rearrangement event didn't take me by surprise (you were very good about announcing that in advance) but the actual details of it did. I recognise that the package metadata does take up a bunch of inodes, though I don't quite see what advantage was incurred by moving it up one level from, say, pkg/PLIST to pkg-plist; can you perhaps explain it again for those of us like me who weren't paying attention the first time? Most notably, I'm wondering why you didn't simply fold all the package metadata into a single file with unique separators (even html-ish tags would do). Then the ports makefile infrastructure would simply separate it out into separate temp files for the rather rarely executed (for most folks anyway) "package" target. I think it's only that and the "describe" target which have any interest in the contents of the pkg/ directory unless you count the plist munging stuff, and that could be fairly easily changed to work from a single file as well. I should also note that the libh folks are working towards a packaging standard with a single package metadata file, so if we ever do manage to get that project finished and the ports collection migrated to a new package format, such a move would occur in any case. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 11: 7:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 7961037B502 for ; Sun, 8 Oct 2000 11:07:33 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id LAA75748 for ports@freebsd.org; Sun, 8 Oct 2000 11:07:32 -0700 (PDT) (envelope-from obrien) Date: Sun, 8 Oct 2000 11:07:32 -0700 From: "David O'Brien" To: ports@freebsd.org Subject: Gtk support for the Vim editor Message-ID: <20001008110732.D75096@dragon.nuxi.com> Reply-To: obrien@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It is my understanding that building the vim5 and vim6 ports with Gtk is broken right now. I do not like Gtk over Motif, thus I do not ever test building with Gtk. However, I am perfectlly willing to apply any patch that gives Gtk support (in a requested, non-default manner). I am not however willing to spend any more time on it than applying the patch and committing the result. So if anyone interested wants to step forward.... :-) -- -- David (obrien@FreeBSD.org) Gnu is Not Unix / Linux Is Not UniX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 11:20: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EB8F37B66C for ; Sun, 8 Oct 2000 11:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38343; Sun, 8 Oct 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 2453837B503 for ; Sun, 8 Oct 2000 11:10:41 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id BAA13518; Mon, 9 Oct 2000 01:49:43 +0800 (CST) (envelope-from keith) Message-Id: <200010081749.BAA13518@freebsd.sinica.edu.tw> Date: Mon, 9 Oct 2000 01:49:43 +0800 (CST) From: keith@freebsd.sinica.edu.tw Reply-To: keith@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21833: Update port: chinese/libtabe, from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21833 >Category: ports >Synopsis: Update chinese/libtabe to 0.1.7, from maintainer >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 Oct 08 11:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: >Environment: 4.x-stable >Description: Update libtabe to 0.1.7. This patch is for the new port layout. >How-To-Repeat: Please commit, thanks. >Fix: --- Makefile.orig Mon Oct 9 00:07:02 2000 +++ Makefile Mon Oct 9 00:13:47 2000 @@ -6,10 +6,9 @@ # PORTNAME= libtabe -PORTVERSION= 0.1.6 +PORTVERSION= 0.1.7 CATEGORIES= chinese MASTER_SITES= ftp://xcin.linux.org.tw/pub/xcin/libtabe/devel/ -DISTNAME= libtabe-0.1-6 MAINTAINER= keith@freebsd.sinica.edu.tw @@ -38,7 +37,7 @@ ${INSTALL_DATA} ${WRKSRC}/doc/${DOC} ${PREFIX}/share/doc/tabe .endfor .endif - ${TOUCH} ${PREFIX}/share/tabe/libtabe-0.1-6 + ${TOUCH} ${PREFIX}/share/tabe/libtabe-0.1.7 .if ${PORTOBJFORMAT} == "elf" ${RM} -f ${PREFIX}/lib/libbims.so ${PREFIX}/lib/libbims.so.0 ${MV} ${PREFIX}/lib/libbims.so.0.1 ${PREFIX}/lib/libbims.so.0 --- distinfo.orig Sat Aug 12 15:33:59 2000 +++ distinfo Mon Oct 9 00:07:33 2000 @@ -1 +1 @@ -MD5 (libtabe-0.1-6.tar.gz) = c617ed3a41157aa1e622b686d569e9da +MD5 (libtabe-0.1.7.tar.gz) = 050af767b2d7cf6707bee983286868b8 --- pkg-plist.orig Mon Oct 9 00:12:16 2000 +++ pkg-plist Mon Oct 9 00:13:41 2000 @@ -19,7 +19,7 @@ share/doc/tabe/ZuYinCode.txt share/doc/tabe/et26.txt share/doc/tabe/libtabe.sgml -share/tabe/libtabe-0.1-6 +share/tabe/libtabe-0.1.7 share/tabe/tsiyin/tsi.db share/tabe/tsiyin/yin.db @dirrm include/tabe --- files/patch-aa.orig Mon Oct 9 00:16:40 2000 +++ files/patch-aa Mon Oct 9 00:16:44 2000 @@ -4,7 +4,7 @@ bindir = @bindir@ includedir = @includedir@ --version = 0.1-6 +-version = 0.1.7 -major_ver = 0.1 +version = 0.1 +major_ver = 0 --- files/patch-ab.orig Mon Oct 9 00:16:50 2000 +++ files/patch-ab Mon Oct 9 00:18:12 2000 @@ -4,7 +4,7 @@ ld_sharelib = @ld_sharelib@ slib_ext = @slib_ext@ --version = 0.1-6 +-version = 0.1.7 -major_ver = 0.1 +version = 0.1 +major_ver = 0 >Release-Note: >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 Oct 8 11:21:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id 1512037B503 for ; Sun, 8 Oct 2000 11:21:33 -0700 (PDT) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.1/8.11.1) id e98IR7210488 for freebsd-ports@freebsd.org; Sun, 8 Oct 2000 11:27:07 -0700 (PDT) (envelope-from sgk) From: Steve Kargl Message-Id: <200010081827.e98IR7210488@troutmask.apl.washington.edu> Subject: Problem with GNU_CONFIGURE To: freebsd-ports@freebsd.org Date: Sun, 8 Oct 2000 11:27:07 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL61 (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 I'm trying to put together a port of the FSF gmp library. But, the bare bone Makefile blows up during the configure phase. Here's the Makefile content: PORTNAME= gmp PORTVERSION= 3.1 CATEGORIES= devel MASTER_SITES= ftp://ftp.gnu.org/gnu/gmp/ # # Don't use autoconf, yet. The script needs autoconf 2.14 or higher # which isn't available in the FreeBSD ports collection. Apparently, # the gmp maintainer's are using a snapshot from the autoconf CVS tree. # #USE_AUTOCONF= yes GNU_CONFIGURE= yes .include Here's the failure: root[203] make ===> Extracting for gmp-3.1 >> Checksum OK for gmp-3.1.tar.gz. ===> Patching for gmp-3.1 ===> Ignoring empty patch directory ===> Configuring for gmp-3.1 creating cache ./config.cache checking host system type... i386--freebsd5.0 checking target system type... i386--freebsd5.0 checking build system type... i386--freebsd5.0 configure: error: can only configure for one host and one target at a time ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure version 2.14a, executed with > ./configure --prefix=/usr/local i386--freebsd5.0 configure:636: checking host system type configure:672: checking target system type configure:707: checking build system type (end of "config.log") *** Error code 1 The problem is that the Makefile file is trying to feed i386-freebsd5.0 to the configure script. This should not be done for this port. Why? Because, the configure script goes to some extremes to determine the specific processor type. That is, it will identify if you have an i386, i486, i586, i686, k5, k6, k7, ev4, ev5, ev6, and a slew of others, so that *highly optimized* assembly can be used. The script also checks for 3dnow, mmx, and other advance features. So, how does one get the configure script to run without the i386--freebsd5.0? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 11:38:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 1BC5437B503 for ; Sun, 8 Oct 2000 11:38:49 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id UAA48746; Sun, 8 Oct 2000 20:38:35 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e98IcDP79496; Sun, 8 Oct 2000 11:38:13 -0700 (PDT) (envelope-from reg) Date: Sun, 8 Oct 2000 11:38:12 -0700 From: Jeremy Lea To: Steve Kargl Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Problem with GNU_CONFIGURE Message-ID: <20001008113812.G30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Steve Kargl , freebsd-ports@FreeBSD.ORG References: <200010081827.e98IR7210488@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010081827.e98IR7210488@troutmask.apl.washington.edu>; from sgk@troutmask.apl.washington.edu on Sun, Oct 08, 2000 at 11:27:07AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sun, Oct 08, 2000 at 11:27:07AM -0700, Steve Kargl wrote: > So, how does one get the configure script to run without the > i386--freebsd5.0? Define CONFIGURE_TARGET= "" Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.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 Oct 8 11:40: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF87C37B66C for ; Sun, 8 Oct 2000 11:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA44875; Sun, 8 Oct 2000 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id B93DD37B66C for ; Sun, 8 Oct 2000 11:35:13 -0700 (PDT) Received: from m346-mp1-cvx1b.gui.ntl.com ([62.252.9.90]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001008183511.HIIW13676.mta03-svc.ntlworld.com@m346-mp1-cvx1b.gui.ntl.com> for ; Sun, 8 Oct 2000 19:35:11 +0100 Message-Id: Date: Sun, 8 Oct 2000 19:35:27 +0100 (BST) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/21834: New port: vlock, all-console locker Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21834 >Category: ports >Synopsis: New port: vlock, all-console locker >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 Oct 08 11:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 4.1-RELEASE i386 >Organization: NeverNET IRC >Environment: >Description: vlock is a utility which locks a terminal which can only be unlocked with the user's password (or the root password). vlock also has the ability to prevent console switching (in effect everybody out of the local system (except for root)) and uses PAM authentication by default. >How-To-Repeat: >Fix: # 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: # # vlock # vlock/Makefile # vlock/files # vlock/files/md5 # vlock/patches # vlock/patches/patch-aa # vlock/patches/patch-ab # vlock/patches/patch-ac # vlock/patches/patch-ad # vlock/pkg # vlock/pkg/PLIST # vlock/pkg/COMMENT # vlock/pkg/DESCR # echo c - vlock mkdir -p vlock > /dev/null 2>&1 echo x - vlock/Makefile sed 's/^X//' >vlock/Makefile << 'END-of-vlock/Makefile' X# New ports collection makefile for: vlock X# Date created: 08 Oct 2000 X# Whom: George Reid X# X# $FreeBSD$ X# X XPORTNAME= vlock XPORTVERSION= 1.3 XCATEGORIES= misc XMASTER_SITES= ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= utils/console X XMAINTAINER= services@nevernet.net X XMAN1= vlock.1 X X.include END-of-vlock/Makefile echo c - vlock/files mkdir -p vlock/files > /dev/null 2>&1 echo x - vlock/files/md5 sed 's/^X//' >vlock/files/md5 << 'END-of-vlock/files/md5' XMD5 (vlock-1.3.tar.gz) = d04076f9c5f12aadc4d5fbbabf8a0c12 END-of-vlock/files/md5 echo c - vlock/patches mkdir -p vlock/patches > /dev/null 2>&1 echo x - vlock/patches/patch-aa sed 's/^X//' >vlock/patches/patch-aa << 'END-of-vlock/patches/patch-aa' X--- Makefile.orig Sun Oct 8 18:03:19 2000 X+++ Makefile Sun Oct 8 18:03:24 2000 X@@ -1,24 +1,19 @@ X # vlock makefile X X-CC = gcc X-# remove the -DUSE_PAM, -ldl, and -lpam if you aren't using PAM X-RPM_OPT_FLAGS=-O2 X-CFLAGS = $(RPM_OPT_FLAGS) -DUSE_PAM X-LDFLAGS = -ldl -lpam -lpam_misc X+CFLAGS += -DUSE_PAM X+LDFLAGS = -lpam X X OBJS = vlock.o signals.o help.o terminal.o input.o X X-vlock: $(OBJS) X+all: vlock X X-vlock.man: vlock.1 X- groff -man -Tascii vlock.1 > vlock.man X+vlock: $(OBJS) X+ cc $(OBJS) $(LDFLAGS) -o vlock X X-vlock.o: vlock.h version.h X-signals.o: vlock.h X-help.o: vlock.h X-terminal.o: vlock.h X-input.o: vlock.h X+install: X+ /usr/bin/install -c -s -o root -g wheel -m 4555 vlock /usr/local/bin/vlock X+ /usr/bin/install -c -o root -g wheel -m 444 vlock.1 /usr/local/man/man1 X X clean: X- rm -f $(OBJS) vlock core core.vlock X+ rm -f $(OBJS) vlock vlock.core X END-of-vlock/patches/patch-aa echo x - vlock/patches/patch-ab sed 's/^X//' >vlock/patches/patch-ab << 'END-of-vlock/patches/patch-ab' X--- signals.c.orig Sun Oct 8 18:03:19 2000 X+++ signals.c Sun Oct 8 18:03:24 2000 X@@ -16,7 +16,7 @@ X #include X #include X #include X-#include X+#include X #include "vlock.h" X X END-of-vlock/patches/patch-ab echo x - vlock/patches/patch-ac sed 's/^X//' >vlock/patches/patch-ac << 'END-of-vlock/patches/patch-ac' X--- terminal.c.orig Sun Oct 8 18:03:19 2000 X+++ terminal.c Sun Oct 8 18:03:24 2000 X@@ -15,7 +15,7 @@ X #include X #include X #include X-#include X+#include X #include "vlock.h" X X END-of-vlock/patches/patch-ac echo x - vlock/patches/patch-ad sed 's/^X//' >vlock/patches/patch-ad << 'END-of-vlock/patches/patch-ad' X--- vlock.c.orig Sun Oct 8 18:03:19 2000 X+++ vlock.c Sun Oct 8 18:03:24 2000 X@@ -14,12 +14,10 @@ X #include X #include X #include X-#include X #include X #include X-#include X-#include X #include X+#include X #include "vlock.h" X #include "version.h" X X@@ -37,20 +35,12 @@ X X int main(int argc, char **argv) { X X- static struct option long_options[] = { /* For parsing long arguments */ X- {"current", 0, &o_lock_all, 0}, X- {"all", 0, &o_lock_all, 1}, X- {"version", no_argument, 0, O_VERSION}, X- {"help", no_argument, 0, O_HELP}, X- {0, 0, 0, 0}, X- }; X int option_index; /* Unused */ X int c; X struct vt_mode vtm; X X /* First we parse all the command line arguments */ X- while ((c = getopt_long(argc, argv, "acvh", X- long_options, &option_index)) != -1) { X+ while ((c = getopt(argc, argv, "acvh")) != -1) { X switch(c) { X case 'c': X o_lock_all = 0; X@@ -107,6 +97,7 @@ X vtm.mode = VT_PROCESS; X vtm.relsig = SIGUSR1; /* handled by release_vt() */ X vtm.acqsig = SIGUSR2; /* handled by acquire_vt() */ X+ vtm.frsig = SIGUSR1; /* needed by FreeBSD */ X ioctl(vfd, VT_SETMODE, &vtm); X } X END-of-vlock/patches/patch-ad echo c - vlock/pkg mkdir -p vlock/pkg > /dev/null 2>&1 echo x - vlock/pkg/PLIST sed 's/^X//' >vlock/pkg/PLIST << 'END-of-vlock/pkg/PLIST' Xbin/vlock END-of-vlock/pkg/PLIST echo x - vlock/pkg/COMMENT sed 's/^X//' >vlock/pkg/COMMENT << 'END-of-vlock/pkg/COMMENT' XA terminal locking with the ability to prevent console switching END-of-vlock/pkg/COMMENT echo x - vlock/pkg/DESCR sed 's/^X//' >vlock/pkg/DESCR << 'END-of-vlock/pkg/DESCR' Xvlock is a utility which locks a terminal which can only be unlocked Xwith the user's password (or the root password). vlock also has the Xability to prevent console switching (in effect everybody out of the local Xsystem (except for root)) and uses PAM authentication by default. X X- George Reid Xservices@nevernet.net END-of-vlock/pkg/DESCR exit >Release-Note: >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 Oct 8 11:41:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id D7F2937B503 for ; Sun, 8 Oct 2000 11:41:30 -0700 (PDT) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e98IfS717983; Sun, 8 Oct 2000 13:41:28 -0500 (CDT) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id e98IfPW19911; Sun, 8 Oct 2000 13:41:25 -0500 (CDT) (envelope-from steve) Date: Sun, 8 Oct 2000 13:41:25 -0500 From: Steve Price To: Steve Kargl Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Problem with GNU_CONFIGURE Message-ID: <20001008134125.C13010@bonsai.knology.net> References: <200010081827.e98IR7210488@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200010081827.e98IR7210488@troutmask.apl.washington.edu>; from sgk@troutmask.apl.washington.edu on Sun, Oct 08, 2000 at 11:27:07AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 08, 2000 at 11:27:07AM -0700, Steve Kargl wrote: # I'm trying to put together a port of the FSF gmp library. # But, the bare bone Makefile blows up during the configure phase. # Here's the Makefile content: # [snip] # # The problem is that the Makefile file is trying to feed # i386-freebsd5.0 to the configure script. This should not # be done for this port. Why? Because, the configure script # goes to some extremes to determine the specific processor # type. That is, it will identify if you have an i386, i486, # i586, i686, k5, k6, k7, ev4, ev5, ev6, and a slew of others, # so that *highly optimized* assembly can be used. The script # also checks for 3dnow, mmx, and other advance features. # # So, how does one get the configure script to run without the # i386--freebsd5.0? Well because CONFIGURE_ARGS is set with += and not ?= in bsd.port.mk you can't just override it. However if you want to resort to a somewhat ugly hack then you can override ${CONFIGURE_SCRIPT}. In the Makefile you'd have something like this. GNU_CONFIGURE= yes CONFIGURE_ARGS= _myarch=${CONFIGURE_TARGET} CONFIGURE_SCRIPT= Myconfig pre-configure: ${CP} ${FILESDIR}/Myconfig ${WRKSRC} ${CHMOD} +x ${WRKSRC}/Myconfig And the replacement configure script would look something like this. #!/bin/sh args=`echo $* | sed -e"s/${_myarch}//"` ./configure $args The only other way I can think would be to roll your do-configure target in the Makefile. HTH -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 11:43: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id D267237B66C; Sun, 8 Oct 2000 11:43:06 -0700 (PDT) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e98Ih0718301; Sun, 8 Oct 2000 13:43:04 -0500 (CDT) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id e98Ih0119931; Sun, 8 Oct 2000 13:43:00 -0500 (CDT) (envelope-from steve) Date: Sun, 8 Oct 2000 13:43:00 -0500 From: Steve Price To: Jeremy Lea Cc: Steve Kargl , freebsd-ports@FreeBSD.ORG Subject: Re: Problem with GNU_CONFIGURE Message-ID: <20001008134300.D13010@bonsai.knology.net> References: <200010081827.e98IR7210488@troutmask.apl.washington.edu> <20001008113812.G30468@shale.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20001008113812.G30468@shale.csir.co.za>; from reg@FreeBSD.ORG on Sun, Oct 08, 2000 at 11:38:12AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 08, 2000 at 11:38:12AM -0700, Jeremy Lea wrote: # Hi, # # On Sun, Oct 08, 2000 at 11:27:07AM -0700, Steve Kargl wrote: # > So, how does one get the configure script to run without the # > i386--freebsd5.0? # # Define CONFIGURE_TARGET= "" Oops spoke too soon and without enough thought. This is indeed a much better way to do it. *blush* Forget about the ugly hacks I dreamed up. :-) -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 11:47:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id 92C6C37B502; Sun, 8 Oct 2000 11:47:30 -0700 (PDT) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.1/8.11.1) id e98Ir2a10647; Sun, 8 Oct 2000 11:53:02 -0700 (PDT) (envelope-from sgk) From: Steve Kargl Message-Id: <200010081853.e98Ir2a10647@troutmask.apl.washington.edu> Subject: Re: Problem with GNU_CONFIGURE In-Reply-To: <20001008134300.D13010@bonsai.knology.net> from Steve Price at "Oct 8, 2000 01:43:00 pm" To: Steve Price Date: Sun, 8 Oct 2000 11:53:02 -0700 (PDT) Cc: Jeremy Lea , freebsd-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL61 (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 Steve Price wrote: > On Sun, Oct 08, 2000 at 11:38:12AM -0700, Jeremy Lea wrote: > # Hi, > # > # On Sun, Oct 08, 2000 at 11:27:07AM -0700, Steve Kargl wrote: > # > So, how does one get the configure script to run without the > # > i386--freebsd5.0? > # > # Define CONFIGURE_TARGET= "" > > Oops spoke too soon and without enough thought. This is indeed > a much better way to do it. *blush* Forget about the ugly hacks > I dreamed up. :-) > Thanks. I also found that you can use HAS_CONFIGURE without GNU_CONFIGURE to get the desired results. And, with this port one can't use USE_LIBTOOL. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 12: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61D7937B66C for ; Sun, 8 Oct 2000 12:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA52254; Sun, 8 Oct 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id ACE7937B502; Sun, 8 Oct 2000 11:56:28 -0700 (PDT) Message-Id: <20001008185628.ACE7937B502@hub.freebsd.org> Date: Sun, 8 Oct 2000 11:56:28 -0700 (PDT) From: gshapiro+FreeBSD-gnats@gshapiro.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21835: ports/security/pgp problems with new format Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21835 >Category: ports >Synopsis: ports/security/pgp problems with new format >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 Oct 08 12:00:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gregory Neil Shapiro >Release: 4.1.1-STABLE >Organization: >Environment: FreeBSD horsey.gshapiro.net 4.1.1-STABLE FreeBSD 4.1.1-STABLE #11: Sat Oct 7 10:21:10 PDT 2000 gshapiro@horsey.gshapiro.net:/home/FreeBSD/obj/src/FreeBSD/RELENG_4/sys/HORSEY i386 >Description: The new layout update for the ports has some problems for the security/pgp port due to the port's US vs non-US files and patches directory. Now that the RSA patent isn't an issue, it may be possible to eliminate the US/non-US distinction. >How-To-Repeat: >Fix: >Release-Note: >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 Oct 8 12:10:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B01937B66D for ; Sun, 8 Oct 2000 12:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA56927; Sun, 8 Oct 2000 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id 1730637B66C for ; Sun, 8 Oct 2000 12:01:28 -0700 (PDT) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (36936 bytes) by henoch.cc.fh-lippe.de via sendmail with P:esmtp/R:inet_hosts/T:smtp (sender: ) id for ; Sun, 8 Oct 2000 21:01:26 +0200 (MET DST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-17) Received: from door.lippe.de(domicliorum.cc.fh-lippe.de[193.16.112.172]) (36556 bytes) by spock.cc.fh-lippe.de via sendmail with P:smtp/R:smart_host/T:smtp (sender: ) id for ; Sun, 8 Oct 2000 21:01:19 +0200 (MET DST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-17) Received: from odie.lippe.de (root@odie.lippe.de [192.168.4.2]) by door.lippe.de (8.9.3/8.9.3) with ESMTP id VAA15271 for ; Sun, 8 Oct 2000 21:00:06 +0200 (CEST) (envelope-from lkoeller@lippe.de) Received: (from lkoeller@localhost) by odie.lippe.de (8.9.3/8.9.3) id VAA84116; Sun, 8 Oct 2000 21:00:05 +0200 (CEST) (envelope-from lkoeller) Message-Id: <200010081900.VAA84116@odie.lippe.de> Date: Sun, 8 Oct 2000 21:00:05 +0200 (CEST) From: lkoeller@cc.fh-lippe.de Reply-To: lkoeller@cc.fh-lippe.de To: FreeBSD-gnats-submit@freebsd.org Cc: lkoeller@cc.fh-lippe.de X-Send-Pr-Version: 3.2 Subject: ports/21836: XmHTML port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21836 >Category: ports >Synopsis: Ports update of XmHTML Motif Toolkit >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 08 12:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Lars Koeller >Release: FreeBSD 3.4-RELEASE i386 >Organization: Fachhochschule Lippe, Lemgo, Germany >Environment: i386 FreeBSD 3.4-RELEASE, ports updated with cvsup on 8.10.2000 >Description: XmHTML update to 1.1.7 from 1.1.0, necessart for grace-5.1.2!!! >How-To-Repeat: - >Fix: Apply the appended patchfile (diff -Nru xmhtml.org xmhtml) -- E-Mail: \ Lars Koeller Lars.Koeller@Uni-Bielefeld.DE \ UNIX Sysadmin lkoeller@cc.fh-lippe.de \ Computing Center PGP-key: \ University of Bielefeld http://www.pgp.net/pgpnet/www-key.html \ Germany ----------- FreeBSD, what else? ---- http://www.freebsd.org ------------- diff -Nru xmhtml.org/Makefile xmhtml/Makefile --- xmhtml.org/Makefile Tue Jul 4 09:13:33 2000 +++ xmhtml/Makefile Sun Aug 6 20:24:47 2000 @@ -6,14 +6,9 @@ # PORTNAME= XmHTML -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.7 CATEGORIES= x11-toolkits www -MASTER_SITES= ftp://crl.nmsu.edu/pub/XmHTML/ \ - ftp://ftp.ist.co.uk/pub/motif/XmHTML/ \ - ftp://ftp.nerdnet.nl/pub/X11/Widgets/XmHTML/ - -PATCH_SITES= ftp://crl.nmsu.edu/pub/XmHTML/ -PATCHFILES= patch-102697.gz +MASTER_SITES= http://www.xs4all.nl/~ripley/XmHTML/dist MAINTAINER= thepish@freebsd.org @@ -21,11 +16,22 @@ jpeg.9:${PORTSDIR}/graphics/jpeg REQUIRES_MOTIF= yes -USE_IMAKE= yes -XMKMF= PORTOBJFORMAT=${PORTOBJFORMAT} xmkmf -a - -EXMP_DIR= ${PREFIX}/share/examples/${DISTNAME}/ -DOCS_DIR= ${PREFIX}/share/doc/${DISTNAME}/ +USE_XPM= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +USE_X_PREFIX= yes + +EXMP_DIR= ${X11BASE}/share/examples/${DISTNAME}/ +DOCS_DIR= ${X11BASE}/share/doc/${DISTNAME}/ + +post-patch: + ${TOUCH} ${WRKSRC}/configure + ${CHMOD} 755 ${WRKSRC}/configure + +post-build: + rm -rf ${WRKSRC}/examples/.libs ${WRKSRC}/examples/*.lo ${WRKSRC}/examples/*.o + rm -rf ${WRKSRC}/book/.libs ${WRKSRC}/book/*.lo ${WRKSRC}/book/*.o + rm -rf ${WRKSRC}/contrib/.libs ${WRKSRC}/contrib/*.lo ${WRKSRC}/contrib/*.o pre-install: ${ECHO} "installing examples into ${EXMP_DIR}" @@ -35,7 +41,13 @@ @ ${MKDIR} ${DOCS_DIR} @ (cd ${WRKSRC}/html; tar -cpf- * | tar -xvpf- -C ${DOCS_DIR} ) +do-install: + ${LIBTOOL} ${LIBTOOL_FLAGS} ${INSTALL_DATA} \ + ${WRKSRC}/lib/libXmHTML.la ${X11BASE}/lib + ${MKDIR} ${X11BASE}/include/XmHTML + ${INSTALL_DATA} ${WRKSRC}/include/XmHTML/*.h ${X11BASE}/include/XmHTML + post-install: - @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib + @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${X11BASE}/lib .include diff -Nru xmhtml.org/files/md5 xmhtml/files/md5 --- xmhtml.org/files/md5 Sun Feb 21 04:22:20 1999 +++ xmhtml/files/md5 Thu Aug 3 22:14:40 2000 @@ -1,2 +1,2 @@ -MD5 (XmHTML-1.1.0.tar.gz) = 4a29ce778089a3312ba5c5ce700101f6 -MD5 (patch-102697.gz) = 5af647414fe4087935cc8ec9652fb938 +MD5 (XmHTML-1.1.7.tar.gz) = 6d079435fb954bb7878f4dd0d3f7b8d8 + diff -Nru xmhtml.org/patches/patch-aa xmhtml/patches/patch-aa --- xmhtml.org/patches/patch-aa Sun Feb 21 04:59:30 1999 +++ xmhtml/patches/patch-aa Sat Aug 5 15:30:13 2000 @@ -1,60 +1,155 @@ ---- XmHTML.cf.orig Sat Feb 20 13:38:17 1999 -+++ XmHTML.cf Sat Feb 20 14:08:18 1999 -@@ -22,10 +22,10 @@ - XCOMM - - XCOMM This specifies where the XmHTML library will be installed --#define XmHTMLLibDir $(USRLIBDIR) -+#define XmHTMLLibDir /usr/X11R6/lib - - XCOMM This specifies where the XmHTML header files will be installed --#define XmHTMLIncDir $(INCROOT)/XmHTML -+#define XmHTMLIncDir /usr/X11R6/include/XmHTML - - XCOMM You may need to modify the following DEFINES as follows: - XCOMM if your system doesn't provide str[n]casecmp, add -DNEED_STRCASECMP -@@ -51,6 +51,11 @@ - DEFINES = -DNEED_STRCASECMP - #endif - -+BUILDINCTOP= .. -+BUILDBINTOP= .. -+BUILDLIBTOP= .. -+INSTINCFLAGS = -c -m 0444 -+ - XCOMM Image support configuration - - XCOMM XPM support. -@@ -59,8 +64,8 @@ - XCOMM Uncomment and fill in the proper paths to xpm.h and libXpm - XCOMM The defaults are /usr/X11R6/include (or wherever your X includes live) - XCOMM and /usr/X11R6/lib (or wherever your X libraries live) --XCOMM XPMINCLUDES = -I$(INCROOT)/X11 --XCOMM XPMLIBRARIES = -L$(LIBDIR) -lXpm -+XPMINCLUDES = -I$(INCROOT)/X11 -+XPMLIBRARIES = -L$(LIBDIR) -lXpm - - XCOMM - XCOMM JPEG Support. Enabled by default. -@@ -74,8 +79,8 @@ - XCOMM Required include files: jpeglib.h, jconfig.h, jmorecfg.h - XCOMM - #if (IHaveJPEG) --JPEGINC = --JPEGLIB = -ljpeg -+JPEGINC = -I/usr/local/include -+JPEGLIB = -ljpeg -L/usr/local/lib - #else - XCOMM JPEG support not selected - #endif -@@ -93,8 +98,8 @@ - XCOMM Required include files: png.h, pngconf.h - XCOMM - #if (IHavePNG) --PNGINC = --PNGLIB = -lpng -+PNGINC = -I/usr/local/include -+PNGLIB = -lpng -L/usr/local/lib - #else - XCOMM PNG support not selected - #endif +*** Makefile.orig Thu Feb 4 01:43:27 1999 +--- Makefile Sat Aug 5 15:29:56 2000 +*************** +*** 40,46 **** + # remove the examples directory from this line. + # If you want to build the XmHTML tutorial examples, add the book directory. + +! SUBDIRS= lib http examples tools + + # some common definitions + # +--- 40,46 ---- + # remove the examples directory from this line. + # If you want to build the XmHTML tutorial examples, add the book directory. + +! SUBDIRS= lib http examples tools book contrib + + # some common definitions + # +*************** +*** 64,72 **** + # Compiler Settings # + # # + ##################### +! CC = gcc +! CFLAGS = -g -funroll-loops -Wall -pipe -ansi +! LDFLAGS = + + # The following flags are *very* usefull if you are getting unresolved + # references to functions in libraries that you *know* to exist. +--- 64,72 ---- + # Compiler Settings # + # # + ##################### +! CC = libtool gcc +! CFLAGS = -O2 -funroll-loops -pipe -ansi +! #LDFLAGS = + + # The following flags are *very* usefull if you are getting unresolved + # references to functions in libraries that you *know* to exist. +*************** +*** 115,121 **** + # HAVE_LIBZ => zlib.h + + ZLIBINC = +! IMAGEINCLUDES = $(ZLIBINC) + + # Image libraries + # No need to add -lXpm if you need to include it with LIBS below +--- 115,121 ---- + # HAVE_LIBZ => zlib.h + + ZLIBINC = +! IMAGEINCLUDES = -I${LOCALBASE}/include $(ZLIBINC) + + # Image libraries + # No need to add -lXpm if you need to include it with LIBS below +*************** +*** 126,132 **** + # HAVE_LIBZ => libz (and possibly libm) + + ZLIBLIB = -lz -lm +! IMAGELIBS = -ljpeg -lpng $(ZLIBLIB) + + # It might be troublesome to know what the correct defines are for your + # system. A possible set of defines for some OS's is given below. Pick +--- 126,132 ---- + # HAVE_LIBZ => libz (and possibly libm) + + ZLIBLIB = -lz -lm +! IMAGELIBS = -L${LOCALBASE}/lib -ljpeg -lpng $(ZLIBLIB) + + # It might be troublesome to know what the correct defines are for your + # system. A possible set of defines for some OS's is given below. Pick +*************** +*** 166,182 **** + # Add -DDEBUG to enable selective debug output (see the file DEBUGGING for more + # info). + # +! CPPFLAGS = -DDEBUG -D_GNU_SOURCE -D_BSD_SOURCE -D_POSIX_SOURCE -DHAVE_REGEX_H $(IMAGEDEFINES) + + # Various include directories + LIBINC=-I. -I../include -I../include/common -I../../include -I../../include/common + + # Platform specific includes + ifeq ($(PLATFORM),Motif) +! PLATFORMINC=-I../../include/XmHTML -I/usr/X11R6/include + else + ifeq ($(PLATFORM),gtk) +! PLATFORMINC=-I../../include/gtk-xmhtml -I/usr/local/include + endif + endif + +--- 166,182 ---- + # Add -DDEBUG to enable selective debug output (see the file DEBUGGING for more + # info). + # +! CPPFLAGS = -DHAVE_REGEX_H $(IMAGEDEFINES) + + # Various include directories + LIBINC=-I. -I../include -I../include/common -I../../include -I../../include/common + + # Platform specific includes + ifeq ($(PLATFORM),Motif) +! PLATFORMINC=-I../../include/XmHTML -I${X11BASE}/include + else + ifeq ($(PLATFORM),gtk) +! PLATFORMINC=-I../../include/gtk-xmhtml -I${LOCALBASE}/include + endif + endif + +*************** +*** 192,208 **** + # Motif version (default) + ifeq ($(PLATFORM),Motif) + +! LIBDIR = -L/usr/X11R6/lib + # This is what is required under Linux (Motif 2.0.1). + # Your mileage may vary. +! LIBS = -lXm -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE + + else + + # gtk version (only supported port for now) + ifeq($(PLATFORM),gtk) + +! LIBDIR = -L/usr/local/lib + LIBS = -lgdk -lgtk -lX11 + + # endif gtk +--- 192,208 ---- + # Motif version (default) + ifeq ($(PLATFORM),Motif) + +! LIBDIR = -L${X11BASE}/lib + # This is what is required under Linux (Motif 2.0.1). + # Your mileage may vary. +! LIBS = ${MOTIFLIB} -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE + + else + + # gtk version (only supported port for now) + ifeq($(PLATFORM),gtk) + +! LIBDIR = -L${X11BASE}/lib + LIBS = -lgdk -lgtk -lX11 + + # endif gtk +*************** +*** 308,311 **** + tools/scansrc.sh ./lib/common > docs/sources.desc + tools/scansrc.sh ./lib/Motif >> docs/sources.desc + tools/scansrc.sh ./lib/gtk >> docs/sources.desc +- +--- 308,310 ---- diff -Nru xmhtml.org/patches/patch-ab xmhtml/patches/patch-ab --- xmhtml.org/patches/patch-ab Sun Feb 21 04:22:20 1999 +++ xmhtml/patches/patch-ab Sat Aug 5 14:31:58 2000 @@ -1,18 +1,15 @@ ---- src/Imakefile.orig Sat Feb 20 14:31:44 1999 -+++ src/Imakefile Sun Feb 21 12:52:40 1999 -@@ -61,11 +61,15 @@ +--- examples/Makefile.orig Wed Feb 3 19:43:27 1999 ++++ examples/Makefile Tue Nov 2 01:39:14 1999 +@@ -11,10 +11,10 @@ + EXAMPLES=example_1 example_2 example_4 - XCOMM I don't know whether or not X11R5/R4 image has got a Concat3. - XCOMM This works. -+.if (${PORTOBJFORMAT} == "aout") - #if (ProjectX < 6) - SOXMHTMLLIBREV = $(XmHTMLVersionNum)./**/$(XmHTMLRevision)./**/$(XmHTMLUpdateLevel) - #else - SOXMHTMLLIBREV = Concat3($(XmHTMLVersionNum).,$(XmHTMLRevision).,$(XmHTMLUpdateLevel)) - #endif -+.else -+SOXMHTMLLIBREV = $(XmHTMLVersionNum)./**/$(XmHTMLUpdateLevel) -+.endif + # The XmHTML library +-XMHTMLLIB = -L../lib -lXmHTML ++XMHTMLLIB = ../lib/libXmHTML.la - HEADERS = XmHTML.h XmHTMLP.h HTML.h Parser.h ParserP.h + # Richard Offer's http client-side library +-HTTPLIB = -L../http -lhttp ++HTTPLIB = ../http/libhttp.la + # Libraries against which all examples are linked + LINKLIBS = $(XMHTMLLIB) $(LOADLIBES) $(DMALLOCLIB) diff -Nru xmhtml.org/patches/patch-ac xmhtml/patches/patch-ac --- xmhtml.org/patches/patch-ac Wed May 12 11:12:37 1999 +++ xmhtml/patches/patch-ac Sat Aug 5 14:32:03 2000 @@ -1,11 +1,23 @@ ---- ./book/Imakefile.org Wed May 12 01:31:48 1999 -+++ ./book/Imakefile Wed May 12 02:03:40 1999 -@@ -36,7 +36,7 @@ - DEPLIBS = $(DEPXMLIB) $(DEPXTOOLLIB) $(DEPXLIB) +--- http/Makefile.orig Wed Feb 3 19:43:27 1999 ++++ http/Makefile Tue Nov 2 01:28:54 1999 +@@ -2,7 +2,7 @@ + # lint configuration. I use lclint. + # - XCOMM required libraries --LOCAL_LIBRARIES = $(XMHTMLLIB) $(XMLIB) $(XTOOLLIB) $(XLIB) $(DMALLOCLIB) -+LOCAL_LIBRARIES = $(XMHTMLLIB) $(MOTIFLIB) $(XTOOLLIB) $(XLIB) $(DMALLOCLIB) +-LIBRARY=libhttp.a ++LIBRARY=libhttp.la - SRCS = simple_html.c simple_html2.c autosize_html.c forced_html.c html.c + # List of source, object and header files + SRCS=HTTP.c cookie.c +@@ -27,9 +27,8 @@ + # targets to build + $(TARGET):: $(OBJS) +- $(RM) $@ \ +- $(AR) $@ $(OBJS) +- $(RANLIB) $@ ++ $(RM) $@ ++ $(CC) -o $@ $(OBJS:.o=.lo) -rpath ${PREFIX}/lib -version-info 0:2 + + stamp-includes: + @if [ -d ../include ]; then set +x; \ diff -Nru xmhtml.org/patches/patch-ad xmhtml/patches/patch-ad --- xmhtml.org/patches/patch-ad Wed May 12 11:12:39 1999 +++ xmhtml/patches/patch-ad Sat Aug 5 15:12:21 2000 @@ -1,11 +1,26 @@ ---- ./examples/Imakefile.org Wed May 12 01:31:48 1999 -+++ ./examples/Imakefile Wed May 12 02:04:00 1999 -@@ -36,7 +36,7 @@ - DEPLIBS = $(DEPXMLIB) $(DEPXTOOLLIB) $(DEPXLIB) +$NetBSD: patch-ad,v 1.3 1999/11/13 07:31:40 jlam Exp $ + +--- lib/Makefile.orig Wed Feb 3 19:43:26 1999 ++++ lib/Makefile Tue Nov 2 01:28:54 1999 +@@ -25,7 +25,7 @@ + # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # + ############################################################################## + # +-LIBRARY=libXmHTML.a ++LIBRARY=libXmHTML.la - XCOMM required libraries --LOCAL_LIBRARIES = $(XMHTMLLIB) $(XMLIB) $(XTOOLLIB) $(XLIB) $(DMALLOCLIB) -+LOCAL_LIBRARIES = $(XMHTMLLIB) $(MOTIFLIB) $(XTOOLLIB) $(XLIB) $(DMALLOCLIB) + # Target to make + TARGET=$(LIBRARY) +@@ -44,9 +44,9 @@ + @(set -x; cd common; $(MAKE) all $(pass_flags) ) - XCOMM common routines for all examples - XCOMM + $(TARGET):: common $(PLATFORM) +- $(RM) $@ \ +- $(AR) $@ common/*.o $(PLATFORM)/*.o +- $(RANLIB) $@ ++ $(RM) $@ ++ $(CC) -o $@ common/*.lo $(PLATFORM)/*.lo \ ++ -rpath ${PREFIX}/lib -version-info 1:2 + + depend:: + @( for dir in $(SUBDIRS) ; do \ diff -Nru xmhtml.org/patches/patch-ae xmhtml/patches/patch-ae --- xmhtml.org/patches/patch-ae Wed May 12 11:12:40 1999 +++ xmhtml/patches/patch-ae Sat Aug 5 14:32:10 2000 @@ -1,11 +1,11 @@ ---- ./tools/Imakefile.org Wed May 12 01:31:49 1999 -+++ ./tools/Imakefile Wed May 12 02:04:11 1999 -@@ -35,7 +35,7 @@ - DEFAULT_LIBS = +--- tools/Makefile.orig Wed Feb 3 19:43:27 1999 ++++ tools/Makefile Tue Nov 2 01:38:36 1999 +@@ -88,7 +88,7 @@ - XCOMM X libraries, required for reptype --LOCAL_LIBRARIES = $(XMLIB) $(XTOOLLIB) $(XLIB) $(DMALLOCLIB) $(DEFAULT_LIBS) -+LOCAL_LIBRARIES = $(MOTIFLIB) $(XTOOLLIB) $(XLIB) $(DMALLOCLIB) $(DEFAULT_LIBS) + httpget:: httpget.o + $(RM) $@ \ +- $(CC) -o $@ $(LDFLAGS) httpget.o -L../http -lhttp $(DMALLOCLIB) ++ $(CC) -o $@ $(LDFLAGS) httpget.o ../http/libhttp.la $(DMALLOCLIB) - #if (IHaveZLIB) - SRCS = GetRepTypes.c WidgetSize.c gifinfo.c ImBuffer.c parse.c gif2gzf.c \ + # gif to gzf converter + gif2gzf:: gif2gzf.o LZWStream.o ImBuffer.o diff -Nru xmhtml.org/pkg/PLIST xmhtml/pkg/PLIST --- xmhtml.org/pkg/PLIST Sun Feb 21 04:59:37 1999 +++ xmhtml/pkg/PLIST Sat Aug 5 18:22:29 2000 @@ -1,232 +1,219 @@ -share/doc/XmHTML-1.1.0/GPL.html -share/doc/XmHTML-1.1.0/LGPL.html -share/doc/XmHTML-1.1.0/XmHTML.html -share/doc/XmHTML-1.1.0/XmHTML.html.orig -share/doc/XmHTML-1.1.0/changes.html -share/doc/XmHTML-1.1.0/changes.html.orig -share/doc/XmHTML-1.1.0/copyrights.html -share/doc/XmHTML-1.1.0/copyrights.html.orig -share/doc/XmHTML-1.1.0/custom_map.html -share/doc/XmHTML-1.1.0/custom_map.txt -share/doc/XmHTML-1.1.0/debug.html -share/doc/XmHTML-1.1.0/debug.html.orig -share/doc/XmHTML-1.1.0/extensions.html -share/doc/XmHTML-1.1.0/extensions.html.orig -share/doc/XmHTML-1.1.0/font_map.html -share/doc/XmHTML-1.1.0/getit.html -share/doc/XmHTML-1.1.0/getit.html.orig -share/doc/XmHTML-1.1.0/legals.html -share/doc/XmHTML-1.1.0/legals.html.orig -share/doc/XmHTML-1.1.0/man.html -share/doc/XmHTML-1.1.0/man.html.orig -share/doc/XmHTML-1.1.0/parser.html -share/doc/XmHTML-1.1.0/parser.html.orig -share/doc/XmHTML-1.1.0/parser_prog.html -share/doc/XmHTML-1.1.0/parser_prog.html.orig -share/doc/XmHTML-1.1.0/parser_ref.html -share/doc/XmHTML-1.1.0/parser_ref.html.orig -share/doc/XmHTML-1.1.0/progguide.html -share/doc/XmHTML-1.1.0/progguide.html.orig -share/doc/XmHTML-1.1.0/xmhtml_prog.html -share/doc/XmHTML-1.1.0/xmhtml_prog.html.orig -share/doc/XmHTML-1.1.0/man/AllocCol.html -share/doc/XmHTML-1.1.0/man/AncGetId.html -share/doc/XmHTML-1.1.0/man/AncScrId.html -share/doc/XmHTML-1.1.0/man/AncScrNm.html -share/doc/XmHTML-1.1.0/man/CrtHTML.html -share/doc/XmHTML-1.1.0/man/FontInfo.html -share/doc/XmHTML-1.1.0/man/FontInfo.html.orig -share/doc/XmHTML-1.1.0/man/FrGtChld.html -share/doc/XmHTML-1.1.0/man/FreeCol.html -share/doc/XmHTML-1.1.0/man/GetTitle.html -share/doc/XmHTML-1.1.0/man/GtHdAttr.html -share/doc/XmHTML-1.1.0/man/GtURLTyp.html -share/doc/XmHTML-1.1.0/man/HTGIFStr.html -share/doc/XmHTML-1.1.0/man/HTGtVer.html -share/doc/XmHTML-1.1.0/man/HTML.html -share/doc/XmHTML-1.1.0/man/HTML.html.orig -share/doc/XmHTML-1.1.0/man/HTObject.html -share/doc/XmHTML-1.1.0/man/HTPLCStr.html -share/doc/XmHTML-1.1.0/man/HTPapSiz.html -share/doc/XmHTML-1.1.0/man/ImCrFrIn.html -share/doc/XmHTML-1.1.0/man/ImCreate.html -share/doc/XmHTML-1.1.0/man/ImDefPrc.html -share/doc/XmHTML-1.1.0/man/ImDestro.html -share/doc/XmHTML-1.1.0/man/ImFreeAl.html -share/doc/XmHTML-1.1.0/man/ImFreeIn.html -share/doc/XmHTML-1.1.0/man/ImGZFSup.html -share/doc/XmHTML-1.1.0/man/ImGetTyp.html -share/doc/XmHTML-1.1.0/man/ImGifGzf.html -share/doc/XmHTML-1.1.0/man/ImImgMap.html -share/doc/XmHTML-1.1.0/man/ImInfo.html -share/doc/XmHTML-1.1.0/man/ImPLCCon.html -share/doc/XmHTML-1.1.0/man/ImPLCKil.html -share/doc/XmHTML-1.1.0/man/ImPLCSus.html -share/doc/XmHTML-1.1.0/man/ImReplac.html -share/doc/XmHTML-1.1.0/man/ImUpdate.html -share/doc/XmHTML-1.1.0/man/Redispla.html -share/doc/XmHTML-1.1.0/man/TxtGtFmt.html -share/doc/XmHTML-1.1.0/man/TxtGtSrc.html -share/doc/XmHTML-1.1.0/man/TxtGtStr.html -share/doc/XmHTML-1.1.0/man/TxtScrLn.html -share/doc/XmHTML-1.1.0/man/TxtStStr.html -share/doc/XmHTML-1.1.0/man/XYToInfo.html -share/doc/XmHTML-1.1.0/man/XmImage.html -share/doc/XmHTML-1.1.0/man/man.map -share/doc/XmHTML-1.1.0/man/man.map.orig -share/doc/XmHTML-1.1.0/man/man.tmpl -share/examples/XmHTML-1.1.0/book/.depend -share/examples/XmHTML-1.1.0/book/Imakefile -share/examples/XmHTML-1.1.0/book/Imakefile.orig -share/examples/XmHTML-1.1.0/book/Makefile -share/examples/XmHTML-1.1.0/book/Makefile.bak -share/examples/XmHTML-1.1.0/book/Makefile.org -share/examples/XmHTML-1.1.0/book/autosize_html -share/examples/XmHTML-1.1.0/book/autosize_html.c -share/examples/XmHTML-1.1.0/book/autosize_html.c.orig -share/examples/XmHTML-1.1.0/book/autosize_html.o -share/examples/XmHTML-1.1.0/book/forced_html -share/examples/XmHTML-1.1.0/book/forced_html.c -share/examples/XmHTML-1.1.0/book/forced_html.c.orig -share/examples/XmHTML-1.1.0/book/forced_html.o -share/examples/XmHTML-1.1.0/book/html -share/examples/XmHTML-1.1.0/book/html.c -share/examples/XmHTML-1.1.0/book/html.c.orig -share/examples/XmHTML-1.1.0/book/html.o -share/examples/XmHTML-1.1.0/book/simple_html -share/examples/XmHTML-1.1.0/book/simple_html.c -share/examples/XmHTML-1.1.0/book/simple_html.c.orig -share/examples/XmHTML-1.1.0/book/simple_html.o -share/examples/XmHTML-1.1.0/book/simple_html2 -share/examples/XmHTML-1.1.0/book/simple_html2.c -share/examples/XmHTML-1.1.0/book/simple_html2.c.orig -share/examples/XmHTML-1.1.0/book/simple_html2.o -share/examples/XmHTML-1.1.0/book/work_window.c -share/examples/XmHTML-1.1.0/book/work_window.c.orig -share/examples/XmHTML-1.1.0/contrib/Makefile -share/examples/XmHTML-1.1.0/contrib/VUEorDT.c -share/examples/XmHTML-1.1.0/contrib/gif_decode.c -share/examples/XmHTML-1.1.0/contrib/swallow.c -share/examples/XmHTML-1.1.0/examples/.depend -share/examples/XmHTML-1.1.0/examples/HTMLDemos.ad -share/examples/XmHTML-1.1.0/examples/HTMLDemos.ad.orig -share/examples/XmHTML-1.1.0/examples/HTTP.c -share/examples/XmHTML-1.1.0/examples/HTTP.c.orig -share/examples/XmHTML-1.1.0/examples/HTTP.h -share/examples/XmHTML-1.1.0/examples/HTTP.h.orig -share/examples/XmHTML-1.1.0/examples/HTTP.o -share/examples/XmHTML-1.1.0/examples/HTTPP.h -share/examples/XmHTML-1.1.0/examples/HTTPP.h.orig -share/examples/XmHTML-1.1.0/examples/Imakefile -share/examples/XmHTML-1.1.0/examples/Imakefile.orig -share/examples/XmHTML-1.1.0/examples/Makefile -share/examples/XmHTML-1.1.0/examples/Makefile.bak -share/examples/XmHTML-1.1.0/examples/Makefile.org -share/examples/XmHTML-1.1.0/examples/Makefile.org.orig -share/examples/XmHTML-1.1.0/examples/Makefile.orig -share/examples/XmHTML-1.1.0/examples/README -share/examples/XmHTML-1.1.0/examples/README.orig -share/examples/XmHTML-1.1.0/examples/cache.c -share/examples/XmHTML-1.1.0/examples/cache.c.orig -share/examples/XmHTML-1.1.0/examples/cache.h -share/examples/XmHTML-1.1.0/examples/cache.o -share/examples/XmHTML-1.1.0/examples/debug_menu.c.orig -share/examples/XmHTML-1.1.0/examples/debug_menu.h.orig -share/examples/XmHTML-1.1.0/examples/example_1 -share/examples/XmHTML-1.1.0/examples/example_1.c -share/examples/XmHTML-1.1.0/examples/example_1.c.orig -share/examples/XmHTML-1.1.0/examples/example_1.o -share/examples/XmHTML-1.1.0/examples/example_2 -share/examples/XmHTML-1.1.0/examples/example_2.c -share/examples/XmHTML-1.1.0/examples/example_2.c.orig -share/examples/XmHTML-1.1.0/examples/example_2.o -share/examples/XmHTML-1.1.0/examples/example_3 -share/examples/XmHTML-1.1.0/examples/example_3.c -share/examples/XmHTML-1.1.0/examples/example_3.c.orig -share/examples/XmHTML-1.1.0/examples/example_3.o -share/examples/XmHTML-1.1.0/examples/example_4 -share/examples/XmHTML-1.1.0/examples/example_4.c -share/examples/XmHTML-1.1.0/examples/example_4.c.orig -share/examples/XmHTML-1.1.0/examples/example_4.o -share/examples/XmHTML-1.1.0/examples/form-test.pl -share/examples/XmHTML-1.1.0/examples/form-test.pl.orig -share/examples/XmHTML-1.1.0/examples/gif_decode.c -share/examples/XmHTML-1.1.0/examples/misc.c -share/examples/XmHTML-1.1.0/examples/misc.c.orig -share/examples/XmHTML-1.1.0/examples/misc.o -share/examples/XmHTML-1.1.0/examples/visual.c -share/examples/XmHTML-1.1.0/examples/visual.o -share/examples/XmHTML-1.1.0/examples/test-pages/README -share/examples/XmHTML-1.1.0/examples/test-pages/animation1.html -share/examples/XmHTML-1.1.0/examples/test-pages/animation2.html -share/examples/XmHTML-1.1.0/examples/test-pages/animation3.html -share/examples/XmHTML-1.1.0/examples/test-pages/black.jpg -share/examples/XmHTML-1.1.0/examples/test-pages/bug.gif -share/examples/XmHTML-1.1.0/examples/test-pages/comments.html -share/examples/XmHTML-1.1.0/examples/test-pages/cyrillic.html -share/examples/XmHTML-1.1.0/examples/test-pages/dark_side.html -share/examples/XmHTML-1.1.0/examples/test-pages/emailed.gif -share/examples/XmHTML-1.1.0/examples/test-pages/empty.html -share/examples/XmHTML-1.1.0/examples/test-pages/empty1.html -share/examples/XmHTML-1.1.0/examples/test-pages/eye.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye1.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye10.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye11.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye12.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye13.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye14.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye15.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye16.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye17.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye18.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye19.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye2.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye20.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye21.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye22.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye23.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye24.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye3.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye4.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye5.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye6.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye7.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye8.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/eye9.xpm -share/examples/XmHTML-1.1.0/examples/test-pages/face.html -share/examples/XmHTML-1.1.0/examples/test-pages/font-stuff.html -share/examples/XmHTML-1.1.0/examples/test-pages/form-test.html -share/examples/XmHTML-1.1.0/examples/test-pages/form-test.html.orig -share/examples/XmHTML-1.1.0/examples/test-pages/frame.html -share/examples/XmHTML-1.1.0/examples/test-pages/frame1.html -share/examples/XmHTML-1.1.0/examples/test-pages/frame2.html -share/examples/XmHTML-1.1.0/examples/test-pages/frame3.html -share/examples/XmHTML-1.1.0/examples/test-pages/frame4.html -share/examples/XmHTML-1.1.0/examples/test-pages/frame5.html -share/examples/XmHTML-1.1.0/examples/test-pages/image-layout.html -share/examples/XmHTML-1.1.0/examples/test-pages/image-map.html -share/examples/XmHTML-1.1.0/examples/test-pages/null_end.html -share/examples/XmHTML-1.1.0/examples/test-pages/null_end1.html -share/examples/XmHTML-1.1.0/examples/test-pages/pass7_sml.png -share/examples/XmHTML-1.1.0/examples/test-pages/png.html -share/examples/XmHTML-1.1.0/examples/test-pages/pnglogo-blk-tiny.png -share/examples/XmHTML-1.1.0/examples/test-pages/root.html -share/examples/XmHTML-1.1.0/examples/test-pages/symbol.html -share/examples/XmHTML-1.1.0/examples/test-pages/unclosed.html -share/examples/XmHTML-1.1.0/examples/test-pages/unclosed1.html +share/doc/XmHTML-1.1.7/GPL.html +share/doc/XmHTML-1.1.7/LGPL.html +share/doc/XmHTML-1.1.7/XmHTML.html +share/doc/XmHTML-1.1.7/apps.html +share/doc/XmHTML-1.1.7/changes.html +share/doc/XmHTML-1.1.7/copyrights.html +share/doc/XmHTML-1.1.7/custom_map.html +share/doc/XmHTML-1.1.7/custom_map.txt +share/doc/XmHTML-1.1.7/datatypes.html +share/doc/XmHTML-1.1.7/debug.html +share/doc/XmHTML-1.1.7/extensions.html +share/doc/XmHTML-1.1.7/font_map.html +share/doc/XmHTML-1.1.7/getit.html +share/doc/XmHTML-1.1.7/legals.html +share/doc/XmHTML-1.1.7/man.html +share/doc/XmHTML-1.1.7/parser.html +share/doc/XmHTML-1.1.7/parser_prog.html +share/doc/XmHTML-1.1.7/parser_ref.html +share/doc/XmHTML-1.1.7/procedures.html +share/doc/XmHTML-1.1.7/progguide.html +share/doc/XmHTML-1.1.7/structures.html +share/doc/XmHTML-1.1.7/xmhtml_prog.html +share/doc/XmHTML-1.1.7/man/AllocCol.html +share/doc/XmHTML-1.1.7/man/AncGetId.html +share/doc/XmHTML-1.1.7/man/AncScrId.html +share/doc/XmHTML-1.1.7/man/AncScrNm.html +share/doc/XmHTML-1.1.7/man/CrtHTML.html +share/doc/XmHTML-1.1.7/man/FontInfo.html +share/doc/XmHTML-1.1.7/man/FrGtChld.html +share/doc/XmHTML-1.1.7/man/FreeCol.html +share/doc/XmHTML-1.1.7/man/GetTitle.html +share/doc/XmHTML-1.1.7/man/GtHdAttr.html +share/doc/XmHTML-1.1.7/man/GtURLTyp.html +share/doc/XmHTML-1.1.7/man/HTGIFStr.html +share/doc/XmHTML-1.1.7/man/HTGtVer.html +share/doc/XmHTML-1.1.7/man/HTML.html +share/doc/XmHTML-1.1.7/man/HTObject.html +share/doc/XmHTML-1.1.7/man/HTPLCStr.html +share/doc/XmHTML-1.1.7/man/HTPapSiz.html +share/doc/XmHTML-1.1.7/man/ImCrFrIn.html +share/doc/XmHTML-1.1.7/man/ImCreate.html +share/doc/XmHTML-1.1.7/man/ImDefPrc.html +share/doc/XmHTML-1.1.7/man/ImDestro.html +share/doc/XmHTML-1.1.7/man/ImFreeAl.html +share/doc/XmHTML-1.1.7/man/ImFreeIn.html +share/doc/XmHTML-1.1.7/man/ImGZFSup.html +share/doc/XmHTML-1.1.7/man/ImGetTyp.html +share/doc/XmHTML-1.1.7/man/ImGifGzf.html +share/doc/XmHTML-1.1.7/man/ImImgMap.html +share/doc/XmHTML-1.1.7/man/ImInfo.html +share/doc/XmHTML-1.1.7/man/ImPLCCon.html +share/doc/XmHTML-1.1.7/man/ImPLCKil.html +share/doc/XmHTML-1.1.7/man/ImPLCSus.html +share/doc/XmHTML-1.1.7/man/ImReplac.html +share/doc/XmHTML-1.1.7/man/ImUpdate.html +share/doc/XmHTML-1.1.7/man/Redispla.html +share/doc/XmHTML-1.1.7/man/TxtGtFmt.html +share/doc/XmHTML-1.1.7/man/TxtGtSrc.html +share/doc/XmHTML-1.1.7/man/TxtGtStr.html +share/doc/XmHTML-1.1.7/man/TxtScrLn.html +share/doc/XmHTML-1.1.7/man/TxtStStr.html +share/doc/XmHTML-1.1.7/man/TxtStrWl.html +share/doc/XmHTML-1.1.7/man/XYToInfo.html +share/doc/XmHTML-1.1.7/man/XmImage.html +share/doc/XmHTML-1.1.7/man/man.map +share/doc/XmHTML-1.1.7/man/man.tmpl +share/doc/XmHTML-1.1.7/man/empty.html +share/examples/XmHTML-1.1.7/book/Imakefile +share/examples/XmHTML-1.1.7/book/Makefile +share/examples/XmHTML-1.1.7/book/Makefile.orig +share/examples/XmHTML-1.1.7/book/Makefile.org +share/examples/XmHTML-1.1.7/book/autosize_html +share/examples/XmHTML-1.1.7/book/autosize_html.c +share/examples/XmHTML-1.1.7/book/forced_html +share/examples/XmHTML-1.1.7/book/forced_html.c +share/examples/XmHTML-1.1.7/book/html +share/examples/XmHTML-1.1.7/book/html.c +share/examples/XmHTML-1.1.7/book/html_browser +share/examples/XmHTML-1.1.7/book/html_browser.c +share/examples/XmHTML-1.1.7/book/simple_html +share/examples/XmHTML-1.1.7/book/simple_html.c +share/examples/XmHTML-1.1.7/book/simple_html2 +share/examples/XmHTML-1.1.7/book/simple_html2.c +share/examples/XmHTML-1.1.7/book/work_window.c +share/examples/XmHTML-1.1.7/contrib/Makefile +share/examples/XmHTML-1.1.7/contrib/Makefile.org +share/examples/XmHTML-1.1.7/contrib/README +share/examples/XmHTML-1.1.7/contrib/VUEorDT.c +share/examples/XmHTML-1.1.7/contrib/drawBttn.c +share/examples/XmHTML-1.1.7/contrib/example_5.c +share/examples/XmHTML-1.1.7/contrib/gif_decode.c +share/examples/XmHTML-1.1.7/contrib/htmltest.c +share/examples/XmHTML-1.1.7/contrib/netscape.c +share/examples/XmHTML-1.1.7/contrib/swallow.c +share/examples/XmHTML-1.1.7/contrib/swallow2 +share/examples/XmHTML-1.1.7/contrib/swallow2.c +share/examples/XmHTML-1.1.7/examples/HTMLDemos.ad +share/examples/XmHTML-1.1.7/examples/Imakefile +share/examples/XmHTML-1.1.7/examples/Makefile +share/examples/XmHTML-1.1.7/examples/Makefile.org +share/examples/XmHTML-1.1.7/examples/Makefile.orig +share/examples/XmHTML-1.1.7/examples/README +share/examples/XmHTML-1.1.7/examples/cache.c +share/examples/XmHTML-1.1.7/examples/cache.h +share/examples/XmHTML-1.1.7/examples/example_1 +share/examples/XmHTML-1.1.7/examples/example_1.c +share/examples/XmHTML-1.1.7/examples/example_2 +share/examples/XmHTML-1.1.7/examples/example_2.c +share/examples/XmHTML-1.1.7/examples/example_4 +share/examples/XmHTML-1.1.7/examples/example_4.c +share/examples/XmHTML-1.1.7/examples/form-test.pl +share/examples/XmHTML-1.1.7/examples/ftypes.h +share/examples/XmHTML-1.1.7/examples/gif_decode.c +share/examples/XmHTML-1.1.7/examples/history.c +share/examples/XmHTML-1.1.7/examples/history.h +share/examples/XmHTML-1.1.7/examples/menu.c +share/examples/XmHTML-1.1.7/examples/menu.h +share/examples/XmHTML-1.1.7/examples/menuItems.h +share/examples/XmHTML-1.1.7/examples/misc.c +share/examples/XmHTML-1.1.7/examples/misc.h +share/examples/XmHTML-1.1.7/examples/visual.c +share/examples/XmHTML-1.1.7/examples/test-pages/README +share/examples/XmHTML-1.1.7/examples/test-pages/animation1.html +share/examples/XmHTML-1.1.7/examples/test-pages/animation2.html +share/examples/XmHTML-1.1.7/examples/test-pages/animation3.html +share/examples/XmHTML-1.1.7/examples/test-pages/black.jpg +share/examples/XmHTML-1.1.7/examples/test-pages/bug.gif +share/examples/XmHTML-1.1.7/examples/test-pages/chinese.html +share/examples/XmHTML-1.1.7/examples/test-pages/comments.html +share/examples/XmHTML-1.1.7/examples/test-pages/cyrillic.html +share/examples/XmHTML-1.1.7/examples/test-pages/dark_side.html +share/examples/XmHTML-1.1.7/examples/test-pages/dusan.html +share/examples/XmHTML-1.1.7/examples/test-pages/emailed.gif +share/examples/XmHTML-1.1.7/examples/test-pages/empty.html +share/examples/XmHTML-1.1.7/examples/test-pages/empty1.html +share/examples/XmHTML-1.1.7/examples/test-pages/english.html +share/examples/XmHTML-1.1.7/examples/test-pages/eye.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye1.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye10.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye11.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye12.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye13.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye14.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye15.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye16.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye17.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye18.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye19.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye2.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye20.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye21.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye22.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye23.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye24.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye3.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye4.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye5.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye6.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye7.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye8.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/eye9.xpm +share/examples/XmHTML-1.1.7/examples/test-pages/face.html +share/examples/XmHTML-1.1.7/examples/test-pages/font-stuff.html +share/examples/XmHTML-1.1.7/examples/test-pages/form-test.html +share/examples/XmHTML-1.1.7/examples/test-pages/frame.html +share/examples/XmHTML-1.1.7/examples/test-pages/frame1.html +share/examples/XmHTML-1.1.7/examples/test-pages/frame2.html +share/examples/XmHTML-1.1.7/examples/test-pages/frame3.html +share/examples/XmHTML-1.1.7/examples/test-pages/frame4.html +share/examples/XmHTML-1.1.7/examples/test-pages/frame5.html +share/examples/XmHTML-1.1.7/examples/test-pages/icons.html +share/examples/XmHTML-1.1.7/examples/test-pages/image-layout.html +share/examples/XmHTML-1.1.7/examples/test-pages/image-map.html +share/examples/XmHTML-1.1.7/examples/test-pages/null_end.html +share/examples/XmHTML-1.1.7/examples/test-pages/null_end1.html +share/examples/XmHTML-1.1.7/examples/test-pages/pass7_sml.png +share/examples/XmHTML-1.1.7/examples/test-pages/png.html +share/examples/XmHTML-1.1.7/examples/test-pages/pnglogo-blk-tiny.png +share/examples/XmHTML-1.1.7/examples/test-pages/root.html +share/examples/XmHTML-1.1.7/examples/test-pages/symbol.html +share/examples/XmHTML-1.1.7/examples/test-pages/table1.html +share/examples/XmHTML-1.1.7/examples/test-pages/table10.html +share/examples/XmHTML-1.1.7/examples/test-pages/table11.html +share/examples/XmHTML-1.1.7/examples/test-pages/table2.html +share/examples/XmHTML-1.1.7/examples/test-pages/table3.html +share/examples/XmHTML-1.1.7/examples/test-pages/table4.html +share/examples/XmHTML-1.1.7/examples/test-pages/table5.html +share/examples/XmHTML-1.1.7/examples/test-pages/table6.html +share/examples/XmHTML-1.1.7/examples/test-pages/table7.html +share/examples/XmHTML-1.1.7/examples/test-pages/table7.html.swp +share/examples/XmHTML-1.1.7/examples/test-pages/table8.html +share/examples/XmHTML-1.1.7/examples/test-pages/table9.html +share/examples/XmHTML-1.1.7/examples/test-pages/unclosed.html +share/examples/XmHTML-1.1.7/examples/test-pages/unclosed1.html lib/libXmHTML.a +lib/libXmHTML.la lib/libXmHTML.so lib/libXmHTML.so.1 +include/XmHTML/Balloon.h +include/XmHTML/BalloonP.h +include/XmHTML/HTML.h +include/XmHTML/HTMLStrings.h +include/XmHTML/XCC.h +include/XmHTML/XCCP.h include/XmHTML/XmHTML.h include/XmHTML/XmHTMLP.h -include/XmHTML/HTML.h -include/XmHTML/Parser.h -include/XmHTML/ParserP.h -@dirrm share/examples/XmHTML-1.1.0/examples/test-pages -@dirrm share/examples/XmHTML-1.1.0/examples -@dirrm share/examples/XmHTML-1.1.0/book -@dirrm share/examples/XmHTML-1.1.0/contrib -@dirrm share/examples/XmHTML-1.1.0 -@dirrm share/doc/XmHTML-1.1.0/man -@dirrm share/doc/XmHTML-1.1.0 +include/XmHTML/XmHTMLfuncs.h +include/XmHTML/debug_menu.h +include/XmHTML/resources.h +include/XmHTML/tka.h +include/XmHTML/toolkit.h +@dirrm share/examples/XmHTML-1.1.7/examples/test-pages +@dirrm share/examples/XmHTML-1.1.7/examples +@dirrm share/examples/XmHTML-1.1.7/book +@dirrm share/examples/XmHTML-1.1.7/contrib +@dirrm share/examples/XmHTML-1.1.7 +@dirrm share/doc/XmHTML-1.1.7/man +@dirrm share/doc/XmHTML-1.1.7 @dirrm include/XmHTML >Release-Note: >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 Oct 8 12:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76CD037B503 for ; Sun, 8 Oct 2000 12:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA60494; Sun, 8 Oct 2000 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id AEEB137B66C for ; Sun, 8 Oct 2000 12:18:23 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id MAA03818; Sun, 8 Oct 2000 12:14:25 -0700 (PDT) (envelope-from adsharma) Message-Id: <200010081914.MAA03818@sharmas.dhs.org> Date: Sun, 8 Oct 2000 12:14:25 -0700 (PDT) From: adsharma@sharmas.dhs.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21839: Updated port x11-toolkits/py-qt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21839 >Category: ports >Synopsis: Updated port x11-toolkits/py-qt >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 08 12:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Arun Sharma >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Same as devel/sip. Needs moc2 to be available as moc. >Description: Updates the port to use qt-2.x >How-To-Repeat: >Fix: >Release-Note: >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 Oct 8 12:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 569E837B66C for ; Sun, 8 Oct 2000 12:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA60485; Sun, 8 Oct 2000 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id EB1F837B503 for ; Sun, 8 Oct 2000 12:17:05 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id MAA03704; Sun, 8 Oct 2000 12:13:07 -0700 (PDT) (envelope-from adsharma) Message-Id: <200010081913.MAA03704@sharmas.dhs.org> Date: Sun, 8 Oct 2000 12:13:07 -0700 (PDT) From: adsharma@sharmas.dhs.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21838: Updated port devel/sip Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21838 >Category: ports >Synopsis: Updated port devel/sip >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 08 12:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Arun Sharma >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: Needs moc2 to be symbolically linked to moc. I couldn't find a way of overriding $MOC. lrwxr-xr-x 1 root wheel 19 Sep 26 09:09 /usr/X11R6/bin/moc -> /usr/X11R6/bin/moc2 -r-xr-xr-x 1 root wheel 289724 Sep 22 12:47 /usr/X11R6/bin/moc2 >Description: Updates the port to use qt-2.x, sip-2.x >How-To-Repeat: >Fix: >Release-Note: >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 Oct 8 12:31:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 9068C37B672; Sun, 8 Oct 2000 12:31:06 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 524FD18F7; Sun, 8 Oct 2000 14:31:11 -0500 (EST) Date: Sun, 8 Oct 2000 14:31:11 -0500 From: Will Andrews To: Brad Knowles Cc: attila! , freebsd-current@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: POSTFIX-- Wietse: tweak and go! --pkg & port: both duds Message-ID: <20001008143111.D539@puck.firepipe.net> Reply-To: Will Andrews References: <20001008070212.04A381C2AB@hun.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from blk@skynet.be on Sun, Oct 08, 2000 at 01:14:14PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 08, 2000 at 01:14:14PM +0200, Brad Knowles wrote: > 2. You mention the use of snapshots, but this is not > recommended practice for sites new to postfix. Instead, > start with the most recent "release" version, e.g., > postfix-19991231-pl09. > > According to Wietse, the "snapshot" versions are: > > Work-in-progress code, subject to change, needs > testing before it can become an official release. > > However, these versions are what he runs on his own > systems, so it's probably better than the official > "production" release version of code from most anyone > else. Heh.. Wietse uses so-called ``experimental'' Postfix on his systems. And there are *LOTS* of people who think that whatever Wietse runs is good enough for them.. so this statement had better be hased on personal experience about the actual stability of ``experimental''. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 12:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5854137B66C for ; Sun, 8 Oct 2000 12:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA67144; Sun, 8 Oct 2000 12:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 8 Oct 2000 12:40:03 -0700 (PDT) Message-Id: <200010081940.MAA67144@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21838: Updated port devel/sip Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21838; it has been noted by GNATS. From: Will Andrews To: adsharma@sharmas.dhs.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21838: Updated port devel/sip Date: Sun, 8 Oct 2000 14:34:04 -0500 On Sun, Oct 08, 2000 at 12:13:07PM -0700, adsharma@sharmas.dhs.org wrote: > >Category: ports > >Confidential: yes Umm.. no. > >Severity: serious > >Priority: medium Umm.. no. > >Responsible: freebsd-ports > >Environment: > > Needs moc2 to be symbolically linked to moc. I couldn't find a way > of overriding $MOC. > > lrwxr-xr-x 1 root wheel 19 Sep 26 09:09 /usr/X11R6/bin/moc -> /usr/X11R6/bin/moc2 > -r-xr-xr-x 1 root wheel 289724 Sep 22 12:47 /usr/X11R6/bin/moc2 Umm.. no. :-) Set this in your Makefile: MOC?= ${X11BASE}/bin/moc2 CONFIGURE_ENV= ... MOC="${MOC}" See also KDE2 ports. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 12:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D56C37B66D for ; Sun, 8 Oct 2000 12:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA67154; Sun, 8 Oct 2000 12:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 8 Oct 2000 12:40:04 -0700 (PDT) Message-Id: <200010081940.MAA67154@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Arun Sharma" Subject: send-pr defaults (Was Re: ports/21838: Updated port devel/sip) Reply-To: "Arun Sharma" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21838; it has been noted by GNATS. From: "Arun Sharma" To: "Will Andrews" Cc: Subject: send-pr defaults (Was Re: ports/21838: Updated port devel/sip) Date: Sat, 7 Oct 2000 12:36:36 -0700 I think it's a bit too tedious to edit 20 different fields manually. Perhaps we need a better UI (with good defaults) so that I don't have to edit the severity and default fields everytime I submit something. Is there a web based interface to do this ? -Arun > On Sun, Oct 08, 2000 at 12:13:07PM -0700, adsharma@sharmas.dhs.org wrote: > > >Category: ports > > >Confidential: yes > > Umm.. no. > > > >Severity: serious > > >Priority: medium > > Umm.. no. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 13:11:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from apoq.skynet.be (apoq.skynet.be [195.238.2.35]) by hub.freebsd.org (Postfix) with ESMTP id 3BAEB37B681; Sun, 8 Oct 2000 13:11:02 -0700 (PDT) Received: from [10.0.1.2] (dialup1759.brussels.skynet.be [194.78.234.223]) by apoq.skynet.be (Postfix) with ESMTP id C1846992D; Sun, 8 Oct 2000 22:10:57 +0200 (MET DST) Mime-Version: 1.0 X-Sender: blk@pop.skynet.be Message-Id: In-Reply-To: <20001008143111.D539@puck.firepipe.net> References: <20001008070212.04A381C2AB@hun.org> <20001008143111.D539@puck.firepipe.net> Date: Sun, 8 Oct 2000 22:10:33 +0200 To: Will Andrews From: Brad Knowles Subject: Re: POSTFIX-- Wietse: tweak and go! --pkg & port: both duds Cc: attila! , freebsd-current@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 2:31 PM -0500 2000/10/8, Will Andrews wrote: > Heh.. Wietse uses so-called ``experimental'' Postfix on his systems. > And there are *LOTS* of people who think that whatever Wietse runs is > good enough for them.. so this statement had better be hased on personal > experience about the actual stability of ``experimental''. I quoted directly from the postfix web page, when I said that the snapshot versions are: Work-in-progress code, subject to change, needs testing before it can become an official release. I've been involved with postfix since long before it became known by this name, and all during that process, the recommended version that people are encouraged to run is the latest "official release" version. Myself, I run the next-to-latest snapshot version on our production systems, but you'd better be prepared to deal with any problems that may occur if you want to do the same. Otherwise, you shouldn't be running a snapshot version. -- These are my opinions -- not to be taken as official Skynet policy ====================================================================== Brad Knowles, || Belgacom Skynet SA/NV Systems Architect, Mail/News/FTP/Proxy Admin || Rue Colonel Bourg, 124 Phone/Fax: +32-2-706.13.11/12.49 || B-1140 Brussels http://www.skynet.be || Belgium "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 14:22:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hun.org (hun.org [216.190.28.252]) by hub.freebsd.org (Postfix) with ESMTP id 9950A37B503; Sun, 8 Oct 2000 14:22:48 -0700 (PDT) Received: by hun.org (Postfix, from userid 1001) id 856EF1C2AB; Sun, 8 Oct 2000 21:22:46 +0000 (GMT) From: attila! X-Organization: hun.org, over 40 years beyond the fringe home for unpenitent hackers and anarcho-cryptophreaks X-Die-Spammers: Spammers cheerfully broiled and served with Stubbs's "Inferno" Wicked Chicken Wing Sauce X-Mailer: FreeBSD 5.0-20000925 with XEmacs V21.1.10 (see alt.religion.emacs) X-Ballistic: N 37.218497 W 113.614979 In-Reply-To: References: <20001008143111.D539@puck.firepipe.net>, , <20001008070212.04A381C2AB@hun.org> Cc: Brad Knowles , Will Andrews To: freebsd-current@freebsd.org, freebsd-ports@freebsd.org Subject: Re: POSTFIX-- Wietse: tweak and go! --pkg & port: both duds Message-Id: <20001008212246.856EF1C2AB@hun.org> Date: Sun, 8 Oct 2000 21:22:46 +0000 (GMT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org on 8 Oct 2000 13:14:14 +0200, Brad Knowles responded: + At 7:02 AM +0000 2000/10/8, attila! wrote: + + > (a) pick a directory and 'tar -zxf snapshot-20000531.tar.gz' + > + > (b) 'cd snapshot-20000531' + + Three things: + + 1. You don't tell people where to get the postfix software. + + Start with , and + select a mirror site close to you. True, I did not; thanx for pointing that out! I already had the code, both from the 'ports' version which did not install correctly, and one I had pulled down. A selection (more at www.postfix.org). ftp://ftp.merit.edu/postfix/experimental/ ftp://ftp.tux.org/pub/net/postfix/experimental/ ftp://ftp.utoronto.ca/mirror/packages/postfix/experimental/ ftp://ftp.samurai.com/pub/postfix/experimental/ ftp://ftp.nl.uu.net/pub/unix/mail/postfix/experimental/ ftp://ftp.cs.tu-berlin.de/pub/net/mail/postfix/experimental/ ftp://ftp.mira.net/pub/unix/mail/postfix/experimental/ ftp://coda.nctu.edu.tw/network/mail/postfix/experimental/ + 2. You mention the use of snapshots, but this is not + recommended practice for sites new to postfix. Instead, + start with the most recent "release" version, e.g., + postfix-19991231-pl09. + + According to Wietse, the "snapshot" versions are: + + Work-in-progress code, subject to change, needs + testing before it can become an official release. + + However, these versions are what he runs on his own + systems, so it's probably better than the official + "production" release version of code from most anyone + else. I look at 'snapshots' philosophically; if I willingly track FreeBSD-5.0-current, I am obviously accustomed to the risks therein. As I mentioned, FreeBSD-current has 'snapshot-20000531' available in both the 'pkg' and 'ports' libraries. Most sites that I am aware of are using the snapshot-50000531 release, and as you point out, Wietse uses it on his site(s), which is more than enough of a recommendation from my perspective. 20000531 also represents a major 'cut-point'. 20001001 is the most current which Wietse is now running and stating that it is 'production quality'. Obviously, I will port 20001001 this afternoon! on Sun, 8 Oct 2000 22:10:33 +0200, Brad Knowles responded: = on 2:31 PM -0500 2000/10/8, Will Andrews wrote: = = > Heh.. Wietse uses so-called ``experimental'' Postfix on his systems. = > And there are *LOTS* of people who think that whatever Wietse runs is = > good enough for them.. so this statement had better be hased on personal = > experience about the actual stability of ``experimental''. = = I quoted directly from the postfix web page, when I said that the = snapshot versions are: = = Work-in-progress code, subject to change, needs testing before = it can become an official release. = = I've been involved with postfix since long before it became known = by this name, and all during that process, the recommended version = that people are encouraged to run is the latest "official release" = version. = = Myself, I run the next-to-latest snapshot version on our = production systems, but you'd better be prepared to deal with any = problems that may occur if you want to do the same. Otherwise, you = shouldn't be running a snapshot version. not only good advice, but mandatory... however, I may be a little crazier as I will port the _latest_ version this afternoon! Nothing ventured, nothing gained. on 8 Oct 2000 13:14:14 +0200, Brad Knowles responded: (cont) + 3. [re: non-standard dbm libraries and MAKEAS] + + [snip] + Berkeley db 2.7.7 (built with "../dist/configure + --enable-compat185", because postfix uses only the db 1.85 + interfaces) + [snip] Why not consider the use of the mysql interface which provides dynamic aliasing? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 14:26:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 9759237B503 for ; Sun, 8 Oct 2000 14:26:43 -0700 (PDT) Received: from z3 ([192.168.1.15]) by sharmas.dhs.org (8.9.3/8.9.3) with SMTP id OAA15705; Sun, 8 Oct 2000 14:24:36 -0700 Message-ID: <008801c030a5$28262720$0f01a8c0@sharmas.org> From: "Arun Sharma" To: "Will Andrews" Cc: Subject: Re: send-pr defaults (Was Re: ports/21838: Updated port devel/sip) Date: Sat, 7 Oct 2000 14:25:46 -0700 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 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Actually, I see such a beast over here: http://www.freebsd.org/send-pr.html but there is no way to attach a file. It's fairly trivial to enhance it to attach a (diff) file. Thanks! -Arun ----- Original Message ----- From: Arun Sharma To: Will Andrews Cc: Sent: Saturday, October 07, 2000 12:36 PM Subject: send-pr defaults (Was Re: ports/21838: Updated port devel/sip) > I think it's a bit too tedious to edit 20 different fields > manually. Perhaps we need a better UI (with good > defaults) so that I don't have to edit the severity > and default fields everytime I submit something. > > Is there a web based interface to do this ? > > -Arun > > > On Sun, Oct 08, 2000 at 12:13:07PM -0700, adsharma@sharmas.dhs.org wrote: > > > >Category: ports > > > >Confidential: yes > > > > Umm.. no. > > > > > >Severity: serious > > > >Priority: medium > > > > Umm.. no. > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 14:45:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id C087C37B502 for ; Sun, 8 Oct 2000 14:45:39 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id OAA15742; Sun, 8 Oct 2000 14:43:33 -0700 Date: Sun, 8 Oct 2000 14:43:33 -0700 From: Arun Sharma Message-Id: <200010082143.OAA15742@sharmas.dhs.org> To: ports@freebsd.org Subject: Re: ports/21838: Updated port devel/sip In-Reply-To: <200010081913.MAA03704@sharmas.dhs.org> References: <200010081913.MAA03704@sharmas.dhs.org> Reply-To: adsharma@sharmas.dhs.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 8 Oct 2000 21:20:19 +0200, adsharma@sharmas.dhs.org wrote: > > >Number: 21838 > >Category: ports > >Synopsis: Updated port devel/sip > >Confidential: yes > >Severity: serious > >Priority: medium > >Responsible: freebsd-ports > >State: open Forgot to attach the diff. -Arun diff -urN sip/Makefile sip.new/Makefile --- sip/Makefile Mon Aug 21 03:07:34 2000 +++ sip.new/Makefile Tue Sep 26 09:10:21 2000 @@ -1,23 +1,24 @@ # New ports collection makefile for: sip +# Version required: 0.9 # Date created: Sun Oct 17 00:24:28 PDT 1999 # Whom: adsharma@home.com # -# $FreeBSD: ports/devel/sip/Makefile,v 1.7 2000/08/21 10:07:34 sobomax Exp $ +# $FreeBSD: ports/devel/sip/Makefile,v 1.2 2000/05/28 03:51:51 steve Exp $ # PORTNAME= sip -PORTVERSION= 0.12 +PORTVERSION= 2.0.1 CATEGORIES= devel python MASTER_SITES= http://www.river-bank.demon.co.uk/software/ -MAINTAINER= adsharma@home.com +MAINTAINER= adsharma@sharmas.dhs.org BUILD_DEPENDS= ${LOCALBASE}/include/python1.5/Python.h:${PORTSDIR}/lang/python USE_LIBTOOL= yes -INSTALLS_SHLIB= yes USE_QT= yes -CONFIGURE_ARGS= --enable-qt --with-qt-includes=${X11BASE}/include/X11/qt +CONFIGURE_ARGS= --enable-qt=yes --with-qt-includes=${X11BASE}/include/qt2 +GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ENV= LDFLAGS=-lgcc diff -urN sip/distinfo sip.new/distinfo --- sip/distinfo Fri Jun 16 20:37:09 2000 +++ sip.new/distinfo Fri Sep 22 08:31:20 2000 @@ -1 +1 @@ -MD5 (sip-0.12.tar.gz) = 64a53fa4204aaa5a6098cdaf3c34604c +MD5 (sip-2.0.1.tar.gz) = 6e3c05b69fcd39d3413e13b5708cfc18 diff -urN sip/pkg-plist sip.new/pkg-plist --- sip/pkg-plist Fri Jun 16 20:37:10 2000 +++ sip.new/pkg-plist Fri Sep 22 08:38:00 2000 @@ -5,3 +5,5 @@ include/sip/sip.h include/sip/sipQt.h @dirrm include/sip +@exec /sbin/ldconfig -m %D/lib +@unexec /sbin/ldconfig -R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 14:46:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 1361D37B502 for ; Sun, 8 Oct 2000 14:46:19 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id OAA15747; Sun, 8 Oct 2000 14:44:13 -0700 Date: Sun, 8 Oct 2000 14:44:13 -0700 From: Arun Sharma Message-Id: <200010082144.OAA15747@sharmas.dhs.org> To: ports@freebsd.org Subject: Re: ports/21839: Updated port x11-toolkits/py-qt In-Reply-To: <200010081914.MAA03818@sharmas.dhs.org> References: <200010081914.MAA03818@sharmas.dhs.org> Reply-To: adsharma@sharmas.dhs.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 8 Oct 2000 21:20:14 +0200, adsharma@sharmas.dhs.org wrote: > > >Number: 21839 > >Category: ports > >Synopsis: Updated port x11-toolkits/py-qt > >Confidential: yes > >Severity: serious > >Priority: medium > >Responsible: freebsd-ports > >State: open Forgot to attach the diff. -Arun diff -urN py-qt/Makefile py-qt.new/Makefile --- py-qt/Makefile Sun Oct 8 12:03:37 2000 +++ py-qt.new/Makefile Fri Sep 22 13:50:26 2000 @@ -3,10 +3,10 @@ # Date created: Sun Oct 17 00:24:28 PDT 1999 # Whom: adsharma@sharmas.dhs.org # -# $FreeBSD: ports/x11-toolkits/py-qt/Makefile,v 1.3 2000/08/21 10:07:34 sobomax Exp $ +# $FreeBSD: ports/x11-toolkits/py-qt/Makefile,v 1.1 2000/04/23 05:07:09 will Exp $ PORTNAME= py-qt -PORTVERSION= 0.12 +PORTVERSION= 2.0 CATEGORIES= x11-toolkits python MASTER_SITES= http://www.river-bank.demon.co.uk/software/ DISTNAME= PyQt-${PORTVERSION} @@ -17,8 +17,10 @@ USE_QT= yes USE_LIBTOOL= yes +GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ENV= LDFLAGS=-lgcc -CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt +CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/qt2 \ + --with-qt-libraries=${X11BASE}/lib .include diff -urN py-qt/distinfo py-qt.new/distinfo --- py-qt/distinfo Sun Jul 9 18:45:30 2000 +++ py-qt.new/distinfo Fri Sep 22 08:41:52 2000 @@ -1 +1 @@ -MD5 (PyQt-0.12.tar.gz) = 2e3ce2c038dde5fa1a71b46924189385 +MD5 (PyQt-2.0.tar.gz) = 9c775bf628b033faa31d64b91d01a87c diff -urN py-qt/pkg-plist py-qt.new/pkg-plist --- py-qt/pkg-plist Sun Jul 9 18:45:31 2000 +++ py-qt.new/pkg-plist Tue Sep 26 09:11:27 2000 @@ -1,5 +1,6 @@ -lib/python1.5/lib-dynload/libqtcmodule-0.12.so -lib/python1.5/lib-dynload/libqtcmodule.so +lib/python1.5/site-packages/libqtcmodule-2.0.so +lib/python1.5/site-packages/libqtcmodule.so lib/python1.5/qt.py +bin/pyuilist @exec /sbin/ldconfig -m %D/lib @unexec /sbin/ldconfig -R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 14:48:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 654FB37B502 for ; Sun, 8 Oct 2000 14:48:10 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id OAA15760; Sun, 8 Oct 2000 14:46:04 -0700 Date: Sun, 8 Oct 2000 14:46:04 -0700 From: Arun Sharma To: ports@freebsd.org Message-Id: Posted-To: muc.lists.freebsd.ports,mpc.lists.freebsd.ports Subject: Re: ports/21838: Updated port devel/sip References: <200010081940.MAA67144@freefall.freebsd.org> Reply-To: adsharma@sharmas.dhs.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [This message has also been posted.] On 8 Oct 2000 21:40:13 +0200, Will Andrews wrote: > > Needs moc2 to be symbolically linked to moc. I couldn't find a way > > of overriding $MOC. > > > > lrwxr-xr-x 1 root wheel 19 Sep 26 09:09 /usr/X11R6/bin/moc -> /usr/X11R6/bin/moc2 > > -r-xr-xr-x 1 root wheel 289724 Sep 22 12:47 /usr/X11R6/bin/moc2 > > Umm.. no. :-) > > Set this in your Makefile: > > MOC?= ${X11BASE}/bin/moc2 > CONFIGURE_ENV= ... MOC="${MOC}" > > See also KDE2 ports. This doesn't work for sip and py-qt ports because they don't honor $MOC. I'll have to hack configure.in to make it work. If this is an acceptable solution, I'll cook up a new patch. -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 15:10: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E37E37B502 for ; Sun, 8 Oct 2000 15:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA22107; Sun, 8 Oct 2000 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 8 Oct 2000 15:10:02 -0700 (PDT) Message-Id: <200010082210.PAA22107@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21838: Updated port devel/sip Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21838; it has been noted by GNATS. From: Will Andrews To: Arun Sharma Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/21838: Updated port devel/sip Date: Sun, 8 Oct 2000 17:00:11 -0500 On Sun, Oct 08, 2000 at 02:46:04PM -0700, Arun Sharma wrote: > This doesn't work for sip and py-qt ports because they don't honor $MOC. > I'll have to hack configure.in to make it work. > > If this is an acceptable solution, I'll cook up a new patch. Yes, that is an acceptable solution. Be sure to return patches to the author, because anyone who doesn't support that sort of thing is a . :-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 15:20: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B32837B66D for ; Sun, 8 Oct 2000 15:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA25327; Sun, 8 Oct 2000 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 192CC37B503; Sun, 8 Oct 2000 15:18:22 -0700 (PDT) Message-Id: <20001008221822.192CC37B503@hub.freebsd.org> Date: Sun, 8 Oct 2000 15:18:22 -0700 (PDT) From: bsdx@looksharp.net To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21842: Update port: sysutils/gcombust [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21842 >Category: ports >Synopsis: Update port: sysutils/gcombust [MAINTAINER] >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 Oct 08 15:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Adam McDougall >Release: 4.1.1-STABLE >Organization: >Environment: FreeBSD amethyst.looksharp.net 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sat Oct 7 14:42:34 EDT 2000 user1@amethyst.looksharp.net:/usr/obj/usr/src/sys/AMETHYST i386 >Description: Upgrade two versions to the latest. Changes: version 0.1.34 - Works with mkisofs from cdrtools 1.9a03 and later (in fact, it demands that new a version). Renaming of files/dirs. Shows verbose info about CDs. -data option and CDplus options added for multisession. Added a busy pointer. Bugfixes. version 0.1.35 - On-the-fly burning of all sessions of multisession cds, driveroptios=burnproof option, eject/close menuitem, a little improved multisession interface. hu.po and es.po updates. Various bug- and compilefixes. . portlint is happy with the port, I've followed the make install/deinstall/package/etc tests in the handbook and they come out fine. The program works, I've burned around a dozen good cd's with it. It works with the cdrecord/mkisofs currently in ports. >How-To-Repeat: >Fix: diff -urN gcombust.old/Makefile gcombust/Makefile --- gcombust.old/Makefile Thu Oct 5 02:42:25 2000 +++ gcombust/Makefile Sun Oct 8 18:05:26 2000 @@ -6,7 +6,7 @@ # PORTNAME= gcombust -PORTVERSION= 0.1.33 +PORTVERSION= 0.1.35 CATEGORIES= sysutils MASTER_SITES= http://www.abo.fi/~jmunsin/gcombust/ diff -urN gcombust.old/distinfo gcombust/distinfo --- gcombust.old/distinfo Wed May 31 05:36:49 2000 +++ gcombust/distinfo Sun Oct 8 18:05:31 2000 @@ -1 +1 @@ -MD5 (gcombust-0.1.33.tar.gz) = ae0dc2e2dce7f084b295be3218c68614 +MD5 (gcombust-0.1.35.tar.gz) = d99b51075cf16408639fbd7f58b920aa >Release-Note: >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 Oct 8 16:19:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 2032337B503; Sun, 8 Oct 2000 16:19:31 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA15855; Sun, 8 Oct 2000 19:19:25 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id QAA07480; Sun, 8 Oct 2000 16:19:22 -0700 (PDT) (envelope-from asami) To: tg@FreeBSD.org Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/lang/python+ipv6 Makefile ports/lang/python+ipv6/pkg PLIST.Tools PLIST.gmp PLIST.tk PLIST.v6 ports/lang/python15 Makefile ports/lang/python15/pkg PLIST.Tools PLIST.gmp References: <200010080242.TAA55524@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 08 Oct 2000 16:19:19 -0700 In-Reply-To: Satoshi Asami's message of "Sat, 7 Oct 2000 19:42:12 -0700 (PDT)" Message-ID: Lines: 30 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas, what do you think? Satoshi ------- From: Satoshi Asami Date: Sat, 7 Oct 2000 19:42:12 -0700 (PDT) asami 2000/10/07 19:42:12 PDT Modified files: lang/python+ipv6 Makefile lang/python15 Makefile Removed files: lang/python+ipv6/pkg PLIST.Tools PLIST.gmp PLIST.tk PLIST.v6 lang/python15/pkg PLIST.Tools PLIST.gmp Log: Rename PLIST.* to pkg-plist.*. Note: I don't know where PLIST_TK (which I assume used to point to "PLIST.tk") is defined. (There is no Makefile in the entire ports tree that defines that variable.) Someone in the know, please let me know. Revision Changes Path 1.66 +5 -5 ports/lang/python+ipv6/Makefile 1.69 +4 -4 ports/lang/python15/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 16:23: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 3F89A37B503; Sun, 8 Oct 2000 16:23:07 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA07781; Sun, 8 Oct 2000 19:23:00 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id QAA07494; Sun, 8 Oct 2000 16:22:58 -0700 (PDT) (envelope-from asami) To: jeh@FreeBSD.org Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/devel/i386-rtems-binutils Makefile ports/devel/i386-rtems-binutils/pkg PLIST.i386-rtems PLIST.i960-rtems PLIST.m68k-rtems PLIST.mips64orion-rtems PLIST.powerpc-rtems PLIST.sh-rtems PLIST.sparc-rtems References: <200010080013.RAA50944@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 08 Oct 2000 16:22:57 -0700 In-Reply-To: Satoshi Asami's message of "Sat, 7 Oct 2000 17:13:29 -0700 (PDT)" Message-ID: Lines: 26 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org James, please check? Satoshi ------- From: Satoshi Asami Date: Sat, 7 Oct 2000 17:13:29 -0700 (PDT) asami 2000/10/07 17:13:29 PDT Modified files: devel/i386-rtems-binutils Makefile Removed files: devel/i386-rtems-binutils/pkg PLIST.i386-rtems PLIST.i960-rtems PLIST.m68k-rtems PLIST.mips64orion-rtems PLIST.powerpc-rtems PLIST.sh-rtems PLIST.sparc-rtems Log: Rename PLIST.* to pkg-plist.*. Note: I'm not sure if this covers all the cases. If the maintainer can check to make sure I haven't missed something, it will be appreciated. Revision Changes Path 1.6 +2 -2 ports/devel/i386-rtems-binutils/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 17:10: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 035C137B503 for ; Sun, 8 Oct 2000 17:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA65937; Sun, 8 Oct 2000 17:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.fix.no (totem.fix.no [213.142.66.130]) by hub.freebsd.org (Postfix) with ESMTP id DA41037B66D for ; Sun, 8 Oct 2000 17:01:15 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id 12E645771; Mon, 9 Oct 2000 02:04:35 +0200 (CEST) Message-Id: <20001009000435.12E645771@totem.fix.no> Date: Mon, 9 Oct 2000 02:04:35 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21848: Update port: audio/xsidplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21848 >Category: ports >Synopsis: Update port: audio/xsidplay >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 Oct 08 17:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 4.1-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD eggsilo.localnet 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Aug 28 10:23:12 CEST 2000 root@:/usr/src/sys/compile/EGGSILO i386 >Description: Updates the port to the latest version. Now requires QT2.2. Thanks to KATO Tsuguru for useful patches. >How-To-Repeat: >Fix: diff -Nur xsidplay.old/Makefile xsidplay/Makefile --- xsidplay.old/Makefile Sun Oct 1 20:29:37 2000 +++ xsidplay/Makefile Mon Oct 9 01:18:54 2000 @@ -6,21 +6,29 @@ # PORTNAME= xsidplay -PORTVERSION= 1.3.9 +PORTVERSION= 1.4.2 CATEGORIES= audio emulators MASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/ \ http://www.freenix.no/~anders/ -DISTFILES= ${PORTNAME}-${PORTVERSION:S/./_/g}.tgz +DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g} +EXTRACT_SUFX= .tgz MAINTAINER= anders@fix.no LIB_DEPENDS= sidplay.1:${PORTSDIR}/audio/libsidplay -GNU_CONFIGURE= YES -USE_QT= YES -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ - -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +USE_QT2= yes +USE_GMAKE= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= MOC="${X11BASE}/bin/moc2" +CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/qt2 \ + --with-qt-libraries=${X11BASE}/lib \ + --with-sidplay-includes=${LOCALBASE}/include \ + --with-sidplay-library=${LOCALBASE}/lib \ + --with-x-includes=${X11BASE}/include \ + --with-x-libraries=${X11BASE}/lib do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin diff -Nur xsidplay.old/distinfo xsidplay/distinfo --- xsidplay.old/distinfo Mon Sep 18 18:11:08 2000 +++ xsidplay/distinfo Mon Oct 9 01:19:00 2000 @@ -1 +1 @@ -MD5 (xsidplay-1_3_9.tgz) = 0899624e144c6b686d69d7396689e8c5 +MD5 (xsidplay-1_4_2.tgz) = e23471956ac48d6d6894d439462971eb diff -Nur xsidplay.old/files/patch-aa xsidplay/files/patch-aa --- xsidplay.old/files/patch-aa Mon Sep 18 18:11:09 2000 +++ xsidplay/files/patch-aa Mon Oct 9 01:17:30 2000 @@ -1,36 +1,11 @@ ---- src/HVSCDialogData.cpp.orig Fri Oct 9 09:08:24 1998 -+++ src/HVSCDialogData.cpp Tue Sep 12 04:02:45 2000 -@@ -109,9 +109,30 @@ - browseBtn = new QPushButton( this, "BrowseButton" ); - browseBtn->setGeometry( 320, 32, 70, 30 ); - { -- QColorGroup normal( QColor( QRgb(0) ), QColor( QRgb(11862015) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -- QColorGroup disabled( QColor( QRgb(8421504) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(8421504) ), QColor( QRgb(12632256) ) ); -- QColorGroup active( QColor( QRgb(0) ), QColor( QRgb(8505544) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -+ QColorGroup normal( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)11862015 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); -+ QColorGroup disabled( -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ) ); -+ QColorGroup active( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)8505544 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); - QPalette palette( normal, disabled, active ); - browseBtn->setPalette( palette ); - } +--- configure.orig Mon Sep 18 19:55:14 2000 ++++ configure Tue Sep 19 00:48:06 2000 +@@ -1480,7 +1480,7 @@ + # Check whether --with-qt-dir or --without-qt-dir was given. + if test "${with_qt_dir+set}" = set; then + withval="$with_qt_dir" +- ac_qt_includes="$withval"/include ++ ac_qt_includes="$withval"/include/qt2 + ac_qt_libraries="$withval"/lib + + fi diff -Nur xsidplay.old/files/patch-ab xsidplay/files/patch-ab --- xsidplay.old/files/patch-ab Mon Sep 18 18:11:09 2000 +++ xsidplay/files/patch-ab Mon Oct 9 01:17:30 2000 @@ -1,36 +1,11 @@ ---- src/MainDialog.cpp.orig Sat Jul 3 12:57:28 1999 -+++ src/MainDialog.cpp Tue Sep 12 03:47:31 2000 -@@ -152,9 +152,30 @@ - timeLCD->setMode( QLCDNumber::DEC ); - timeLCD->setSegmentStyle( QLCDNumber::Filled ); - { -- QColorGroup normal( QColor( QRgb(0) ), QColor( QRgb(11513755) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -- QColorGroup disabled( QColor( QRgb(8421504) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(8421504) ), QColor( QRgb(12632256) ) ); -- QColorGroup active( QColor( QRgb(0) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -+ QColorGroup normal( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)11513755 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); -+ QColorGroup disabled( -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ) ); -+ QColorGroup active( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); - QPalette palette( normal, disabled, active ); - timeLCD->setPalette( palette ); - } +--- src/MainDialogData.cpp.orig Fri Sep 15 22:51:57 2000 ++++ src/MainDialogData.cpp Tue Sep 19 00:12:43 2000 +@@ -169,7 +169,7 @@ + subSongSlider->setPageStep( 1 ); + subSongSlider->setValue( 1 ); + subSongSlider->setFocusPolicy( QSlider::TabFocus ); +- subSongSlider->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)7, (QSizePolicy::SizeType)0 ) ); ++ // subSongSlider->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)7, (QSizePolicy::SizeType)0 ) ); + subSongSlider->setCursor( QCursor( 13 ) ); + QToolTip::add( subSongSlider, tr( "Quick song selection" ) ); + diff -Nur xsidplay.old/files/patch-ac xsidplay/files/patch-ac --- xsidplay.old/files/patch-ac Mon Sep 18 18:11:09 2000 +++ xsidplay/files/patch-ac Mon Oct 9 01:39:58 2000 @@ -1,70 +1,11 @@ ---- src/MainDialogData.cpp.orig Mon Dec 14 06:50:51 1998 -+++ src/MainDialogData.cpp Tue Sep 12 03:57:49 2000 -@@ -43,9 +43,30 @@ - songLCD = new QLCDNumber( this, "LCDNumber_2" ); - songLCD->setGeometry( 90, 35, 40, 30 ); - { -- QColorGroup normal( QColor( QRgb(0) ), QColor( QRgb(11513755) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -- QColorGroup disabled( QColor( QRgb(8421504) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(8421504) ), QColor( QRgb(12632256) ) ); -- QColorGroup active( QColor( QRgb(0) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -+ QColorGroup normal( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)11513755 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); -+ QColorGroup disabled( -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ) ); -+ QColorGroup active( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); - QPalette palette( normal, disabled, active ); - songLCD->setPalette( palette ); - } -@@ -58,9 +79,30 @@ - timeLCD = new TimeLCD( this, "TimeLCD_1" ); - timeLCD->setGeometry( 10, 35, 75, 30 ); - { -- QColorGroup normal( QColor( QRgb(0) ), QColor( QRgb(11513755) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -- QColorGroup disabled( QColor( QRgb(8421504) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(8421504) ), QColor( QRgb(12632256) ) ); -- QColorGroup active( QColor( QRgb(0) ), QColor( QRgb(12632256) ), QColor( QRgb(16777215) ), QColor( QRgb(6316128) ), QColor( QRgb(10789024) ), QColor( QRgb(0) ), QColor( QRgb(16777215) ) ); -+ QColorGroup normal( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)11513755 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); -+ QColorGroup disabled( -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)8421504 ), -+ QColor( (unsigned int)12632256 ) ); -+ QColorGroup active( -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)12632256 ), -+ QColor( (unsigned int)16777215 ), -+ QColor( (unsigned int)6316128 ), -+ QColor( (unsigned int)10789024 ), -+ QColor( (unsigned int)0 ), -+ QColor( (unsigned int)16777215 ) ); - QPalette palette( normal, disabled, active ); - timeLCD->setPalette( palette ); - } +--- src/Makefile.in.old Mon Oct 9 01:32:37 2000 ++++ src/Makefile.in Mon Oct 9 01:33:41 2000 +@@ -104,7 +104,7 @@ + + bin_PROGRAMS = xsidplay + +-xsidplay_LDADD = audio/libaudio.a stilview/libstilview.a songlendb/libsonglendb.a widgets/libwidgets.a @SIDPLAY_LDFLAGS@ -lsidplay @QT_LDFLAGS@ -lqt ++xsidplay_LDADD = audio/libaudio.a stilview/libstilview.a songlendb/libsonglendb.a widgets/libwidgets.a @SIDPLAY_LDFLAGS@ -lsidplay @QT_LDFLAGS@ -L$(X11BASE)/lib -lqt2 + + + xsidplay_SOURCES = $(BUILT_SOURCES) AudioDialog.cpp AudioDialog.h AudioDialogData.cpp AudioDialogData.h ConfigFile.cpp ConfigFile.h EmuDialog.cpp EmuDialog.h EmuDialogData.cpp EmuDialogData.h FilterDialog.cpp FilterDialog.h FilterDialogData.cpp FilterDialogData.h GlobalIcon.h HVSCDialog.cpp HVSCDialog.h HVSCDialogData.cpp HVSCDialogData.h HVSCconfig.h HistoryDialog.cpp HistoryDialog.h HistoryDialogData.cpp HistoryDialogData.h HistoryFile.cpp HistoryFile.h HistoryItem.h MainDialog.cpp MainDialog.h MainDialogData.cpp MainDialogData.h MixerConfig.h MixerDialog.cpp MixerDialog.h MixerDialogData.cpp MixerDialogData.h Playlist.cpp Playlist.h PlaylistDialog.cpp PlaylistDialog.h PlaylistDialogData.cpp PlaylistDialogData.h PlaylistItem.h PlaylistOptDialog.cpp PlaylistOptDialog.h StilDialog.cpp StilDialog.h TextFile.cpp TextFile.h WaveViewDialog.cpp WaveViewDialog.h WaveViewDialogData.cpp WaveViewDialogData.h myTimer.h xsidplay.cpp >Release-Note: >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 Oct 8 17:10:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0BB437B66F for ; Sun, 8 Oct 2000 17:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA65926; Sun, 8 Oct 2000 17:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.fix.no (totem.fix.no [213.142.66.130]) by hub.freebsd.org (Postfix) with ESMTP id DAEDB37B66C for ; Sun, 8 Oct 2000 17:00:59 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id 0D00B5865; Mon, 9 Oct 2000 02:04:19 +0200 (CEST) Message-Id: <20001009000419.0D00B5865@totem.fix.no> Date: Mon, 9 Oct 2000 02:04:19 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21847: Update port: www/thttpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21847 >Category: ports >Synopsis: Update port: www/thttpd >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 Oct 08 17:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 4.1-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD eggsilo.localnet 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Aug 28 10:23:12 CEST 2000 root@:/usr/src/sys/compile/EGGSILO i386 >Description: Updates the port to the latest version. >How-To-Repeat: >Fix: diff -Nur thttpd.old/Makefile thttpd/Makefile --- thttpd.old/Makefile Fri Jul 14 01:47:46 2000 +++ thttpd/Makefile Sun Oct 8 21:44:48 2000 @@ -6,7 +6,7 @@ # PORTNAME= thttpd -PORTVERSION= 2.19 +PORTVERSION= 2.20 CATEGORIES= www ipv6 MASTER_SITES= http://www.acme.com/software/thttpd/ \ http://www.freenix.no/~anders/ diff -Nur thttpd.old/distinfo thttpd/distinfo --- thttpd.old/distinfo Thu Jul 13 10:11:49 2000 +++ thttpd/distinfo Sun Oct 8 21:45:13 2000 @@ -1,2 +1,2 @@ -MD5 (thttpd-2.19.tar.gz) = 69a8cf991cf67b03d82971151d4ba50f +MD5 (thttpd-2.20.tar.gz) = 63bedbab266112cfb4ab1123599d7c37 MD5 (notes.html) = 1647d3399a391067e5a08f36b8cc3ca4 >Release-Note: >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 Oct 8 17:10:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B794937B66D for ; Sun, 8 Oct 2000 17:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA65917; Sun, 8 Oct 2000 17:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.fix.no (totem.fix.no [213.142.66.130]) by hub.freebsd.org (Postfix) with ESMTP id EF8D737B6C6 for ; Sun, 8 Oct 2000 17:00:37 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id DBB365865; Mon, 9 Oct 2000 02:03:45 +0200 (CEST) Message-Id: <20001009000345.DBB365865@totem.fix.no> Date: Mon, 9 Oct 2000 02:03:45 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21846: Update port: net/dante Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21846 >Category: ports >Synopsis: Update port: net/dante >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 Oct 08 17:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 4.1-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD eggsilo.localnet 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Aug 28 10:23:12 CEST 2000 root@:/usr/src/sys/compile/EGGSILO i386 >Description: Updates the Dante port to version 1.1.4. Removes all patches, as they have been incorporated. >How-To-Repeat: >Fix: diff -Nur dante.old/Makefile dante/Makefile --- dante.old/Makefile Sun Oct 8 17:35:33 2000 +++ dante/Makefile Sun Oct 8 20:29:51 2000 @@ -6,7 +6,7 @@ # PORTNAME= dante -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.4 CATEGORIES= net security MASTER_SITES= ftp://ftp.inet.no/pub/socks/ \ http://www.freenix.no/~anders/ \ diff -Nur dante.old/distinfo dante/distinfo --- dante.old/distinfo Mon Jul 3 01:20:06 2000 +++ dante/distinfo Sun Oct 8 20:31:48 2000 @@ -1 +1 @@ -MD5 (dante-1.1.2.tar.gz) = d522a4c2da7c68ef7340e39c642a7ca2 +MD5 (dante-1.1.4.tar.gz) = 39aae565b602586972da7eda2d64f968 diff -Nur dante.old/files/patch-ac dante/files/patch-ac --- dante.old/files/patch-ac Fri Jul 7 19:47:46 2000 +++ dante/files/patch-ac Thu Jan 1 01:00:00 1970 @@ -1,21 +0,0 @@ ---- configure Fri Jun 23 01:04:17 2000 -+++ configure Fri Jul 7 10:53:32 2000 -@@ -9896,6 +9896,7 @@ - - - -+ - trap '' 1 2 15 - cat > confcache <<\EOF - # This file is a shell script that caches the results of configure -@@ -10295,8 +10296,8 @@ - EOF - - cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF diff -Nur dante.old/files/patch-ad dante/files/patch-ad --- dante.old/files/patch-ad Fri Jul 7 19:47:46 2000 +++ dante/files/patch-ad Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ ---- configure.in Fri Jun 23 01:02:43 2000 -+++ configure.in Fri Jul 7 10:52:19 2000 -@@ -1425,6 +1425,7 @@ - AC_LINK_FILES(dlib/interposition.c, sockd/interposition.c) - AC_LINK_FILES(lib/broken.c, dlib/broken.c) - AC_LINK_FILES(dlib/broken.c, sockd/broken.c) -+AC_LINK_FILES(lib/hostcache.c, dlib/hostcache.c) - - AC_OUTPUT([sockd/Makefile include/Makefile lib/Makefile dlib/Makefile \ - Makefile example/Makefile doc/Makefile bin/Makefile \ diff -Nur dante.old/files/patch-ae dante/files/patch-ae --- dante.old/files/patch-ae Fri Jul 7 19:47:46 2000 +++ dante/files/patch-ae Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- dlib/Makefile.am Fri Jun 9 05:11:37 2000 -+++ dlib/Makefile.am Fri Jul 7 10:45:29 2000 -@@ -6,7 +6,7 @@ - clientconfig.c clientprotocol.c Raccept.c userio.c method_uname.c \ - connectchild.c config.c log.c protocol.c socket.c udp_util.c \ - Rbindresvport.c Rconnect.c util.c Rgethostbyname.c Rcompat.c \ -- msproxy_clientprotocol.c broken.c -+ msproxy_clientprotocol.c broken.c hostcache.c - - #libdsocks version info, interfaceversion:revision:old interfaces supported - #XXX SPEC/dante.spec.in must have the same value as version info diff -Nur dante.old/files/patch-af dante/files/patch-af --- dante.old/files/patch-af Fri Jul 7 19:47:46 2000 +++ dante/files/patch-af Thu Jan 1 01:00:00 1970 @@ -1,32 +0,0 @@ ---- dlib/Makefile.in Mon Jun 26 05:44:23 2000 -+++ dlib/Makefile.in Fri Jul 7 11:00:13 2000 -@@ -81,7 +81,7 @@ - YACC = @YACC@ - - lib_LTLIBRARIES = libdsocks.la --libdsocks_la_SOURCES = interposition.c int_osf1.c int_osf2.c int_osf3.c config_parse.y io.c debug.c Rgetpeername.c Rgetsockname.c udp.c Rrresvport.c Rbind.c config_scan.l address.c authneg.c client.c clientconfig.c clientprotocol.c Raccept.c userio.c method_uname.c connectchild.c config.c log.c protocol.c socket.c udp_util.c Rbindresvport.c Rconnect.c util.c Rgethostbyname.c Rcompat.c msproxy_clientprotocol.c broken.c -+libdsocks_la_SOURCES = interposition.c int_osf1.c int_osf2.c int_osf3.c config_parse.y io.c debug.c Rgetpeername.c Rgetsockname.c udp.c Rrresvport.c Rbind.c config_scan.l address.c authneg.c client.c clientconfig.c clientprotocol.c Raccept.c userio.c method_uname.c connectchild.c config.c log.c protocol.c socket.c udp_util.c Rbindresvport.c Rconnect.c util.c Rgethostbyname.c Rcompat.c msproxy_clientprotocol.c broken.c hostcache.c - - - #libdsocks version info, interfaceversion:revision:old interfaces supported -@@ -116,7 +116,8 @@ - authneg.lo client.lo clientconfig.lo clientprotocol.lo Raccept.lo \ - userio.lo method_uname.lo connectchild.lo config.lo log.lo protocol.lo \ - socket.lo udp_util.lo Rbindresvport.lo Rconnect.lo util.lo \ --Rgethostbyname.lo Rcompat.lo msproxy_clientprotocol.lo broken.lo -+Rgethostbyname.lo Rcompat.lo msproxy_clientprotocol.lo broken.lo \ -+hostcache.lo - LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ - LEXLIB = @LEXLIB@ - CFLAGS = @CFLAGS@ -@@ -340,6 +341,10 @@ - ../include/interposition.h ../include/socks.h - debug.lo debug.o : debug.c ../include/common.h ../include/autoconf.h \ - ../include/redefac.h ../include/yacconfig.h ../include/config.h \ -+ ../include/interposition.h ../include/socks.h -+hostcache.lo hostcache.o : hostcache.c ../include/common.h \ -+ ../include/autoconf.h ../include/redefac.h \ -+ ../include/yacconfig.h ../include/config.h \ - ../include/interposition.h ../include/socks.h - int_osf1.lo int_osf1.o : int_osf1.c ../include/common.h \ - ../include/autoconf.h ../include/redefac.h \ diff -Nur dante.old/files/patch-ag dante/files/patch-ag --- dante.old/files/patch-ag Fri Jul 7 19:47:46 2000 +++ dante/files/patch-ag Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- sockd/Makefile.in Mon Jun 26 05:44:47 2000 -+++ sockd/Makefile.in Fri Jul 7 11:00:44 2000 -@@ -329,7 +329,7 @@ - ../include/interposition.h ../include/sockd.h - sockd_io.o: sockd_io.c ../include/common.h ../include/autoconf.h \ - ../include/redefac.h ../include/yacconfig.h ../include/config.h \ -- ../include/interposition.h ../include/sockd.h -+ ../include/interposition.h ../include/sockd.h config_parse.h - sockd_negotiate.o: sockd_negotiate.c ../include/common.h \ - ../include/autoconf.h ../include/redefac.h \ - ../include/yacconfig.h ../include/config.h \ diff -Nur dante.old/files/patch-ah dante/files/patch-ah --- dante.old/files/patch-ah Fri Jul 7 19:50:25 2000 +++ dante/files/patch-ah Thu Jan 1 01:00:00 1970 @@ -1,27 +0,0 @@ ---- lib/address.c 1999/12/22 09:29:22 1.75 -+++ lib/address.c 2000/07/07 15:55:47 -@@ -162,9 +162,21 @@ - if (!socksfdv[d].state.system) - switch (socksfdv[d].state.command) { - case SOCKS_BIND: -- if (socksfdv[d].control != -1 -- && d != (unsigned int)socksfdv[d].control) -- close(socksfdv[d].control); -+ if (socksfdv[d].control == -1 -+ || socksfdv[d].control == (int)d) -+ break; -+ -+ /* -+ * If we are using the bind extension it's possible -+ * that this controlconnection is shared with other -+ * (accept()'ed) addresses, if so we must leave it -+ * open for the other connections. -+ */ -+ if (socks_addrcontrol(&socksfdv[d].local, &socksfdv[d].remote) -+ == -1) -+ break; -+ -+ close(socksfdv[d].control); - break; - - case SOCKS_CONNECT: >Release-Note: >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 Oct 8 17:38:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 99E3937B502; Sun, 8 Oct 2000 17:38:42 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA23751; Sun, 8 Oct 2000 20:38:27 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id RAA07825; Sun, 8 Oct 2000 17:38:19 -0700 (PDT) (envelope-from asami) To: billf@freebsd.org, alexlh@funk.org Cc: ports@freebsd.org Subject: Re: cvs commit: ports/security/sslproxy/patches sigchld.diff References: <200010080608.XAA41485@freefall.freebsd.org> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 08 Oct 2000 17:38:16 -0700 In-Reply-To: Satoshi Asami's message of "Sat, 7 Oct 2000 23:08:19 -0700 (PDT)" Message-ID: Lines: 16 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill, what's this file supposed to do ? You added this file on Februrary 7th this year. If you want it to be applied as a patch, you need to call it "patch-*". Satoshi ------- From: Satoshi Asami Date: Sat, 7 Oct 2000 23:08:19 -0700 (PDT) asami 2000/10/07 23:08:19 PDT Removed files: security/sslproxy/patches sigchld.diff Log: Move sigchld.diff from patches/ to files/. I'm not sure what this file is supposed to do, but it can't stay in patches/. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 17:50:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id EFBC837B503; Sun, 8 Oct 2000 17:50:55 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 76BE01C6B; Sun, 8 Oct 2000 20:50:55 -0400 (EDT) Date: Sun, 8 Oct 2000 20:50:55 -0400 From: Bill Fumerola To: Satoshi - Ports Wraith - Asami Cc: alexlh@funk.org, ports@freebsd.org Subject: Re: cvs commit: ports/security/sslproxy/patches sigchld.diff Message-ID: <20001008205055.B38472@jade.chc-chimes.com> References: <200010080608.XAA41485@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from asami@freebsd.org on Sun, Oct 08, 2000 at 05:38:16PM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 08, 2000 at 05:38:16PM -0700, Satoshi - Ports Wraith - Asami wrote: > Bill, what's this file supposed to do ? You added this file on > Februrary 7th this year. If you want it to be applied as a patch, you > need to call it "patch-*". These days, I don't remember what I did 8 hours ago let alone 8 months, but I'll investigate when I get some time. Thanks, -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@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 Oct 8 18: 5:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 9929937B503 for ; Sun, 8 Oct 2000 18:05:24 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA18720 for ; Sun, 8 Oct 2000 21:05:21 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id SAA08003; Sun, 8 Oct 2000 18:05:18 -0700 (PDT) (envelope-from asami) To: ports@FreeBSD.org Subject: Re: cvs commit: CVSROOT avail References: <200010081150.EAA04996@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 08 Oct 2000 18:05:13 -0700 In-Reply-To: asami@FreeBSD.org's message of "08 Oct 2000 05:20:45 -0700" Message-ID: Lines: 20 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) * I've just started a package build so errors will start showing up at * the errorlogs/4-latest page soon. If you find something interesting, * go ahead and fix it if it doesn't involve a file moving. If it does, * please ask me for a repo copy. Turns out that that build died prematurely because of cvs merge conflicts on bento with my uncommitted patches. ;) Another one started just about two hours ago, and seems to be progressing nicely. I already found a couple of bugs (you saw the commits), please check http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/ and let me know if there's something suspicious. "distinfo update" might be something to look out for. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 8 23:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8100537B503 for ; Sun, 8 Oct 2000 23:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA93638; Sun, 8 Oct 2000 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hyperhost.net (hyperhost.net [207.159.132.249]) by hub.freebsd.org (Postfix) with ESMTP id E72F237B66D for ; Sun, 8 Oct 2000 23:00:57 -0700 (PDT) Received: from foobar.foobar.eyep.net (p17.a4.du.radix.net [207.192.130.145]) by hyperhost.net (8.9.3/8.9.3) with ESMTP id CAA04438 for ; Mon, 9 Oct 2000 02:00:47 -0400 (EDT) Received: by foobar.foobar.eyep.net (Postfix, from userid 0) id 053F91381C7; Mon, 9 Oct 2000 02:00:17 -0400 (EDT) Message-Id: <20001009060017.053F91381C7@foobar.foobar.eyep.net> Date: Mon, 9 Oct 2000 02:00:17 -0400 (EDT) From: patseal@hyperhost.net Reply-To: patseal@hyperhost.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21850: Update port: x11-wm/blackbox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21850 >Category: ports >Synopsis: Update port: x11-wm/blackbox >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 Oct 08 23:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Seal >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: blackbox-0.61.0 -> 0.61.1 Misc. Bugfixes only >How-To-Repeat: >Fix: diff -ruN blackbox.org/Makefile blackbox/Makefile --- blackbox.orig/Makefile Thu Aug 31 15:44:59 2000 +++ blackbox/Makefile Mon Oct 9 01:51:32 2000 @@ -6,7 +6,7 @@ # PORTNAME= blackbox -PORTVERSION= 0.61.0 +PORTVERSION= 0.61.1 CATEGORIES= x11-wm MASTER_SITES= ftp://portal.alug.org/pub/blackbox/0.6x.x/ diff -ruN blackbox.org/distinfo blackbox/distinfo --- blackbox.orig/distinfo Tue Aug 29 11:57:47 2000 +++ blackbox/distinfo Mon Oct 9 01:52:52 2000 @@ -1 +1 @@ -MD5 (blackbox-0.61.0.tar.bz2) = 8b43027da0a589b668794dc2b2d009af +MD5 (blackbox-0.61.1.tar.bz2) = 03c67404bda28a401ff7d23a2316882b >Release-Note: >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 Oct 8 23:50: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BC0637B66C for ; Sun, 8 Oct 2000 23:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA07227; Sun, 8 Oct 2000 23:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mach.greycat.com (mach.greycat.com [207.173.133.5]) by hub.freebsd.org (Postfix) with ESMTP id 2BBE237B66C for ; Sun, 8 Oct 2000 23:45:04 -0700 (PDT) Received: (from dann@localhost) by mach.greycat.com (8.11.0/8.11.0) id e996jBV01329; Sun, 8 Oct 2000 23:45:11 -0700 (PDT) (envelope-from dann) Message-Id: <200010090645.e996jBV01329@mach.greycat.com> Date: Sun, 8 Oct 2000 23:45:11 -0700 (PDT) From: Dann Lunsford Reply-To: Dann Lunsford To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21851: 'make readmes' broken in new ports structure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21851 >Category: ports >Synopsis: 'make readmes' broken in new ports structure >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 08 23:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dann Lunsford >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Very little >Environment: 4.1.1-STABLE, as of 7-OCT-2000 >Description: bsd.ports.subdir.mk was not updated for the new port structure. Causes 'make readmes' (at least) to fail, generating files with incorrect information >How-To-Repeat: cd /usr/ports make readmes In the category directories, README.html will contain only "(no description)" lines. >Fix: apply this patch to bsd.ports.subdir.mk --- bsd.port.subdir.mk.orig Sun Oct 8 23:14:01 2000 +++ bsd.port.subdir.mk Sun Oct 8 23:22:59 2000 @@ -210,15 +210,15 @@ .else @echo -n ''"`cd ${entry}; make package-name | ${HTMLIFY}`: " >> $@.tmp .endif -.if exists(${entry}/pkg/COMMENT) - @${HTMLIFY} ${entry}/pkg/COMMENT >> $@.tmp +.if exists(${entry}/pkg-comment) + @${HTMLIFY} ${entry}/pkg-comment >> $@.tmp .else @echo "(no description)" >> $@.tmp .endif .endfor @sort -t '>' +1 -2 $@.tmp > $@.tmp2 -.if exists(${.CURDIR}/pkg/DESCR) - @${HTMLIFY} ${.CURDIR}/pkg/DESCR > $@.tmp3 +.if exists(${.CURDIR}/pkg-descr) + @${HTMLIFY} ${.CURDIR}/pkg-descr > $@.tmp3 .else @> $@.tmp3 .endif >Release-Note: >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 Mon Oct 9 0: 7: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C344037B66C; Mon, 9 Oct 2000 00:07:03 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA15002; Mon, 9 Oct 2000 00:07:03 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Mon, 9 Oct 2000 00:07:03 -0700 (PDT) From: Message-Id: <200010090707.AAA15002@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21850: Update port: x11-wm/blackbox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/blackbox Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Mon Oct 9 00:06:23 PDT 2000 Responsible-Changed-Why: I'm looking at this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=21850 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 0:10: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4D3F37B66E for ; Mon, 9 Oct 2000 00:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA15993; Mon, 9 Oct 2000 00:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from relay1.ntu-kpi.kiev.ua (www.ntu-kpi.kiev.ua [212.111.192.161]) by hub.freebsd.org (Postfix) with ESMTP id B94B337B66C for ; Mon, 9 Oct 2000 00:07:38 -0700 (PDT) Received: from library.ntu-kpi.kiev.ua (eth0.library.ntu-kpi.kiev.ua [10.0.1.251]) by relay1.ntu-kpi.kiev.ua (Postfix) with ESMTP id 9236C2FA18 for ; Mon, 9 Oct 2000 10:07:35 +0300 (EEST) Received: (from antonz@localhost) by library.ntu-kpi.kiev.ua (8.9.3/8.9.3) id KAA57641; Mon, 9 Oct 2000 10:07:38 +0300 (EEST) (envelope-from antonz) Message-Id: <200010090707.KAA57641@library.ntu-kpi.kiev.ua> Date: Mon, 9 Oct 2000 10:07:38 +0300 (EEST) From: antonz@library.ntu-kpi.kiev.ua Reply-To: antonz@library.ntu-kpi.kiev.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21853: Broken lang/gpc port temporary fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21853 >Category: ports >Synopsis: Broken lang/gpc port temporary fix >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: Mon Oct 09 00:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anton N. Breusov >Release: FreeBSD 3.5-STABLE i386 >Organization: NTUU "KPI", Scientific Technical Library >Environment: Any >Description: GNU Pascal distfile gpc-19990118.tar.gz moved from ftp://agnes.dida.physik.uni-essen.de/gnu-pascal/current/ to ftp://agnes.dida.physik.uni-essen.de/gnu-pascal/beta/ >How-To-Repeat: cd /usr/ports/lang/gpc; make >Fix: This is temporary patch: ============== gpc.diff =================================================== --- Makefile.prev Mon Oct 9 09:52:34 2000 +++ Makefile Mon Oct 9 09:49:39 2000 @@ -7,7 +7,7 @@ PORTNAME= gpc PORTVERSION= 2.0 CATEGORIES= lang -MASTER_SITES= ftp://agnes.dida.physik.uni-essen.de/gnu-pascal/current/ +MASTER_SITES= ftp://agnes.dida.physik.uni-essen.de/gnu-pascal/beta/ DISTNAME= gpc-19990118 MAINTAINER= antonz@library.ntu-kpi.kiev.ua ============== end of gpc.diff ============================================= To apply it do this: 1). Copy this gpc.diff file to /usr/ports/lang/gpc 2). Do: # cd /usr/ports/lang/gpc # patch Release-Note: >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 Mon Oct 9 1: 0:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E319937B66C for ; Mon, 9 Oct 2000 01:00:24 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA35762; Mon, 9 Oct 2000 01:00:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 728EA37B502; Mon, 9 Oct 2000 00:54:13 -0700 (PDT) Message-Id: <20001009075413.728EA37B502@hub.freebsd.org> Date: Mon, 9 Oct 2000 00:54:13 -0700 (PDT) From: gonza@techline.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21854: update ports: mail/smapi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21854 >Category: ports >Synopsis: update ports: mail/smapi >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 09 01:00:23 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Samoyloff >Release: 3.4-RELEASE (i386) >Organization: TECHLine Systems LTD >Environment: >Description: update for mail/smapi ports >How-To-Repeat: >Fix: --- smapi/Makefile.orig Wed Oct 4 11:33:47 2000 +++ smapi/Makefile Mon Oct 9 11:16:23 2000 @@ -6,7 +6,7 @@ # PORTNAME= smapi -PORTVERSION= 000919 +PORTVERSION= 001008 CATEGORIES= mail MASTER_SITES= http://cvs.physcip.uni-stuttgart.de/cvs2/ --- smapi/distinfo.orig Tue Oct 3 20:40:38 2000 +++ smapi/distinfo Mon Oct 9 11:16:26 2000 @@ -1 +1 @@ -MD5 (smapi-000919.tar.gz) = c77df45287010f4d941b1095cedf3d0d +MD5 (smapi-001008.tar.gz) = 6695279ce14d8f460fb2da6cf4f1ccc1 >Release-Note: >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 Mon Oct 9 1:23: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id E2E9937B502; Mon, 9 Oct 2000 01:22:50 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id LAA13967; Mon, 9 Oct 2000 11:22:34 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e998MOJ17555; Mon, 9 Oct 2000 11:22:24 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E1803D.7A049B1D@FreeBSD.org> Date: Mon, 09 Oct 2000 11:22:22 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org Cc: asami@FreeBSD.org Subject: PROPOSAL: Handling of GNU Texinfo documentation in bsd.port.mk [patch] Content-Type: multipart/mixed; boundary="------------1486476D245C0406F5854465" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------1486476D245C0406F5854465 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hi there, I suppose that anyone here aware that handling of GNU Texinfo documentation in our port system is quite suboptimal - the port authors required to insert appropriate post-install targets and @unexec/@exec directives by hand, while this process could be quite easily automated. The following patch is expected to solve the problem by introducing new INFOPAGES make variable, so for most cases you just need to list info pages installed by the port in INFOPAGES and forget about it (no more post-install/@exec/@unexec), for example if the port installs foo.info and bar.info you just need the following in Makefile: [...] INFOPAGES= foo bar [...] In more complex cases, when the installed infopages for some strange reason don't contain information required for install-info(1) to register those pages into info/dir directory file, you may need something like the following: [...] INFOPAGES= foo%"Utilities"%"* Foo: (foo). Foo manual" \ bar%"Utilities"%"* Bar: (bar). Bar manual" As usually any comments/suggestions are welcomed. -Maxim --------------1486476D245C0406F5854465 Content-Type: text/plain; charset=koi8-r; name="bsd.port.mk-ingopages.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk-ingopages.diff" --- bsd.port.mk 2000/10/08 18:05:35 1.1 +++ bsd.port.mk 2000/10/08 20:29:11 @@ -293,6 +293,16 @@ # NOMANCOMPRESS. The default is "yes" if USE_IMAKE # is set and NO_INSTALL_MANPAGES is not set, and # "no" otherwise. +# INFOPAGES - A list of GNU Texinfo pages installed by the port. The +# format for entries is the following: +# name[%[section]%[entry]]. For example if your port has +# "info/foo.info" and "info/bar.info", set +# "INFOPAGES=foo bar". Optional section and entry fields +# provided for the cases when info page doesn't contain +# information required for install-info(1) to correctly +# register the page into catalog of info pages. In this +# case use something like the following: +# ``INFOPAGES=foo%"Bar utilities"%"* Foo: (foo). Foo utility"'' # # Default targets and their behaviors: # @@ -949,6 +959,7 @@ AUTOCONF?= autoconf LIBTOOL?= libtool XMKMF?= xmkmf -a +INSTALL-INFO?= /usr/bin/install-info .if exists(/sbin/md5) MD5?= /sbin/md5 .elif exists(/bin/md5) @@ -1423,6 +1434,11 @@ .endif .endif +INFOPREFIX?= ${PREFIX} +INFOSUBDIR?= info +LOCALINFODIR?= ${PREFIX}/${INFOSUBDIR}/dir +INFO_SUFX?= .info + # Put this for down as possible so it will catch all PLIST_SUB definitions. .if defined(INSTALLS_SHLIB) @@ -2076,6 +2092,27 @@ .if make(real-install) && (defined(_MANPAGES) || defined(_MLINKS)) @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} compress-man .endif +.if make(real-install) && defined(INFOPAGES) + @${ECHO_MSG} "===> Registering infopages" + @for i in ${INFOPAGES}; do \ + INFOPAGE=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$1 }'`; \ + INFOSECTION=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$2 }'`; \ + INFOENTRY=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$3 }'`;\ + _INFOPAGE=""; \ + _INFOSECTION="--quiet"; \ + _INFOENTRY="--quiet"; \ + if [ x"$${INFOPAGE}" != x"" ]; then \ + _INFOPAGE=${INFOPREFIX}/${INFOSUBDIR}/$${INFOPAGE}${INFO_SUFX}; \ + if [ x"$${INFOSECTION}" != x"" ]; then \ + _INFOSECTION="--section=$${INFOSECTION}"; \ + fi; \ + if [ x"$${INFOENTRY}" != x"" ]; then \ + _INFOENTRY="--entry=$${INFOENTRY}"; \ + fi; \ + ${INSTALL-INFO} "$${_INFOSECTION}" "$${_INFOENTRY}" $${_INFOPAGE} ${LOCALINFODIR}; \ + fi; \ + done +.endif .if make(real-install) && defined(INSTALLS_SHLIB) @${ECHO_MSG} "===> Running ldconfig" ${LDCONFIG} -m ${LDCONFIG_RUNLIST} @@ -2929,6 +2966,28 @@ @for man in ${__MANPAGES}; do \ ${ECHO} $${man} >> ${TMPPLIST}; \ done +.if defined(INFOPAGES) + @for i in ${INFOPAGES}; do \ + INFOPAGE=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$1 }'`; \ + INFOSECTION=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$2 }'`; \ + INFOENTRY=`${ECHO} "$${i}" | ${AWK} --field-separator "%" '{ print $$3 }'`;\ + _INFOPAGE=""; \ + _INFOSECTION=""; \ + _INFOENTRY=""; \ + if [ x"$${INFOPAGE}" != x"" ]; then \ + _INFOPAGE=${INFOSUBDIR}/$${INFOPAGE}${INFO_SUFX}; \ + if [ x"$${INFOSECTION}" != x"" ]; then \ + _INFOSECTION="--section=\"${INFOSECTION}\""; \ + fi; \ + if [ x"$${INFOENTRY}" != x"" ]; then \ + _INFOENTRY="--entry=\"$${INFOENTRY}\""; \ + fi; \ + (${ECHO} "@unexec ${INSTALL-INFO} --delete %D/$${_INFOPAGE} ${LOCALINFODIR}"; \ + ${ECHO} $${_INFOPAGE}; \ + ${ECHO} "@exec ${INSTALL-INFO} $${_INFOSECTION} $${_INFOENTRY} %D/$${_INFOPAGE} ${LOCALINFODIR}") >> ${TMPPLIST}; \ + fi; \ + done +.endif .for _PREFIX in ${PREFIX} .if ${_TMLINKS:M${_PREFIX}*}x != x @for i in ${_TMLINKS:M${_PREFIX}*:S,^${_PREFIX}/,,}; do \ --------------1486476D245C0406F5854465-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 1:43:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 83C8137B502; Mon, 9 Oct 2000 01:43:36 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id LAA14413; Mon, 9 Oct 2000 11:42:53 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e998geJ17698; Mon, 9 Oct 2000 11:42:40 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E184FE.7FCE1E41@FreeBSD.org> Date: Mon, 09 Oct 2000 11:42:38 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org, reg@FreeBSD.org Cc: asami@FreeBSD.org Subject: Problems with bsd.gnome.mk [patch] Content-Type: multipart/mixed; boundary="------------C3E54AE80D5590E6FB00BE44" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------C3E54AE80D5590E6FB00BE44 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hi Jeremy and All, I wonder if anyone noticed that bsd.gnome.mk does quite strange things with package names when WANT_* defined, so example if you have WANT_GNOME defined in your /etc/make.conf and gnome is in fact installed: $ cd /usr/ports/audio/gnomeaudio ; make -V PKGNAME gnomeaudio-gnome-1.0.0 $ cd /usr/ports/x11/gnomecore ; make -V PKGNAME gnomecore-gnome-1.2.2.1 [etc.] Please note strange '-gnome' suffix, it looks like there are some plans for gnomecore-kde, gnomecore-nognome or something ;). This should be corrected by surpressing appropriate suffix for the ports that define USE_GNOME, USE_ESOUND etc. Also I don't like the fact that bsd.gnome.mk adds --localstatedir=${PREFIX}/share/gnome and --datadir=${PREFIX}/share/gnome configure arguments even for those ports, which contains optional GNOME dependencies, so for example port installs its files into ${PREFIX}/share/foo for nognome case, but into ${PREFIX}/share/gnome/foo if WANT_GNOME is defined (for example sawfish, xmms etc.). IMO this leads to confusion and doesn't really necessary. At least this stuff should be made optional, so only ports which really can benefit from that would use this feature. As an example of possible problems with this behaviour, please considering somebody writing a port of sawfish theme - and confusion as to where the theme files should go - into share/gnome/safwish, or share/sawfish. Other packages may have similar problems. The attached patch is expected to solve both these problems. -Maxim --------------C3E54AE80D5590E6FB00BE44 Content-Type: text/plain; charset=koi8-r; name="bsd.gnome.mk-fix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.gnome.mk-fix.diff" --- bsd.gnome.mk 2000/10/07 15:38:00 1.1 +++ bsd.gnome.mk 2000/10/07 19:14:38 @@ -67,6 +67,12 @@ # HAVE_GNOME: # yes - either found Gnome or WITH_GNOME set to yes. +.if defined(WANT_GNOME) || defined(HAVE_GNOME) +.if !defined(USE_GNOME) && !defined(USE_GNOMELIBS) && !defined(USE_GNOMECTRL) +NOGNOMECONFIGUREARGS= yes +.endif +.endif + .if defined(PACKAGE_BUILDING) && !defined(WITH_ALL) WITHOUT_ALL= yes .endif @@ -209,7 +215,9 @@ CONFIGURE_ENV+= ESD_CONFIG="${ESD_CONFIG}" MAKE_ENV+= ESD_CONFIG="${ESD_CONFIG}" .if defined(HAVE_ESOUND) +.if !defined(NOESOUNDSUFFIX) && !defined(USE_ESOUND) PKGNAMESUFFIX= -esound +.endif CONFIGURE_ENV+= HAVE_ESOUND=${HAVE_ESOUND} MAKE_ENV+= HAVE_ESOUND=${HAVE_ESOUND} .endif @@ -221,7 +229,9 @@ CONFIGURE_ENV+= GLIB_CONFIG="${GLIB_CONFIG}" MAKE_ENV+= GLIB_CONFIG="${GLIB_CONFIG}" .if defined(HAVE_GLIB) +.if !defined(NOGLIBSUFFIX) && !defined(USE_GLIB) PKGNAMESUFFIX= -glib +.endif CONFIGURE_ENV+= HAVE_GLIB=${HAVE_GLIB} MAKE_ENV+= HAVE_GLIB=${HAVE_GLIB} .endif @@ -233,7 +243,9 @@ CONFIGURE_ENV+= GTK_CONFIG="${GTK_CONFIG}" MAKE_ENV+= GTK_CONFIG="${GTK_CONFIG}" .if defined(HAVE_GTK) +.if !defined(NOGTKSUFFIX) defined(USE_GTK) PKGNAMESUFFIX= -gtk +.endif CONFIGURE_ENV+= HAVE_GTK=${HAVE_GTK} MAKE_ENV+= HAVE_GTK=${HAVE_GTK} .endif @@ -245,22 +257,28 @@ CONFIGURE_ENV+= IMLIB_CONFIG="${IMLIB_CONFIG}" MAKE_ENV+= IMLIB_CONFIG="${IMLIB_CONFIG}" .if defined(HAVE_IMLIB) +.if !defined(NOIMLIBSUFFIX) && defined(USE_IMLIB) PKGNAMESUFFIX= -imlib +.endif CONFIGURE_ENV+= HAVE_IMLIB=${HAVE_IMLIB} MAKE_ENV+= HAVE_IMLIB=${HAVE_IMLIB} .endif .endif .if defined(USE_GNOMELIBS) -CONFIGURE_ARGS+=--localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --with-gnome=${PREFIX} +.if !defined(NOGNOMECONFIGUREARGS) +CONFIGURE_ARGS+= --localstatedir=${PREFIX}/share/gnome \ + --datadir=${PREFIX}/share/gnome +.endif +CONFIGURE_ARGS+= --with-gnome=${PREFIX} LIB_DEPENDS+= gnome.4:${PORTSDIR}/x11/gnomelibs GNOME_CONFIG?= ${X11BASE}/bin/gnome-config CONFIGURE_ENV+= GNOME_CONFIG="${GNOME_CONFIG}" MAKE_ENV+= GNOME_CONFIG="${GNOME_CONFIG}" .if defined(HAVE_GNOME) +.if !defined(NOGNOMESUFFIX) && defined(USE_GNOME) PKGNAMESUFFIX= -gnome +.endif CONFIGURE_ENV+= HAVE_GNOME=${HAVE_GNOME} MAKE_ENV+= HAVE_GNOME=${HAVE_GNOME} PLIST_SUB+= GNOME:="" NOGNOME:="@comment " DATADIR="share/gnome" --------------C3E54AE80D5590E6FB00BE44-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 1:50: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5531737B670 for ; Mon, 9 Oct 2000 01:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA53805; Mon, 9 Oct 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B8BBC37B503; Mon, 9 Oct 2000 01:47:12 -0700 (PDT) Message-Id: <20001009084712.B8BBC37B503@hub.freebsd.org> Date: Mon, 9 Oct 2000 01:47:12 -0700 (PDT) From: spcoltri@omcl.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21855: From MAINTAINER: update MASTER_SITES for ports/games/baduki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21855 >Category: ports >Synopsis: From MAINTAINER: update MASTER_SITES for ports/games/baduki >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: Mon Oct 09 01:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Coltrin >Release: 4.1.1-STABLE >Organization: Orbital Mind Control Lasers >Environment: FreeBSD hrothgar.omcl.org 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Mon Oct 2 17:09:41 MDT 2000 spcoltri@hrothgar.omcl.org:/usr/obj/usr/src/sys/HROTHGAR i386 >Description: The MASTER_SITE for baduki has reorganized. This patch updates the port with the correct pathname. >How-To-Repeat: >Fix: Apply in ports/games: diff -ur baduki.old/Makefile baduki/Makefile --- baduki.old/Makefile Mon Oct 9 02:43:35 2000 +++ baduki/Makefile Mon Oct 9 02:44:05 2000 @@ -8,7 +8,7 @@ PORTNAME= baduki PORTVERSION= 0.2.9 CATEGORIES= games -MASTER_SITES= ftp://autoinst.acs.uci.edu/pub/go/ +MASTER_SITES= ftp://autoinst.acs.uci.edu/pub/go/baduki/ MAINTAINER= spcoltri@omcl.org >Release-Note: >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 Mon Oct 9 2: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68C0737B502 for ; Mon, 9 Oct 2000 02:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA57653; Mon, 9 Oct 2000 02:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 9 Oct 2000 02:00:03 -0700 (PDT) Message-Id: <200010090900.CAA57653@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Michael Joyner Subject: Re: ports/21714: audio problem with nil Reply-To: Michael Joyner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21714; it has been noted by GNATS. From: Michael Joyner To: freebsd-gnats-submit@FreeBSD.org, Maxim Sobolev Cc: Subject: Re: ports/21714: audio problem with nil Date: Sun, 08 Oct 2000 15:03:08 -0400 Hrm, have played with the Mix_OpenAudio settings in nil_client.cpp and am beginning to think it might not be a bug in NIL but a bug in SDL11 or maybe some step isn't being taken to ensure proper audio initilization.... will dig a little further as time permits, gonna have to read the SDL11 docs... :/ -- === Unix is like a wigwam -- no Gates, no Windows, and an Apache inside. === --- Michael Joyner Systems Administrator mjoyner@rv1.dynip.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 2: 0: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 6698237B66D; Mon, 9 Oct 2000 02:00:05 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id CAA52136; Mon, 9 Oct 2000 02:00:04 -0700 (PDT) (envelope-from obrien) Date: Mon, 9 Oct 2000 02:00:03 -0700 From: "David O'Brien" To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: PROPOSAL: Handling of GNU Texinfo documentation in bsd.port.mk [patch] Message-ID: <20001009020003.A43153@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <39E1803D.7A049B1D@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E1803D.7A049B1D@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Oct 09, 2000 at 11:22:22AM +0300 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 11:22:22AM +0300, Maxim Sobolev wrote: > cases you just need to list info pages installed by the port in INFOPAGES and > forget about it (no more post-install/@exec/@unexec), for example if the port > installs foo.info and bar.info you just need the following in Makefile: > > [...] > INFOPAGES= foo bar > [...] If this happens, it should work like MAN?, where the files do not need to be listed in the PLIST. -- -- David (obrien@FreeBSD.org) GNU is Not Unix / Linux Is Not UniX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 2:16:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [207.175.42.154]) by hub.freebsd.org (Postfix) with ESMTP id 3752A37B503 for ; Mon, 9 Oct 2000 02:16:23 -0700 (PDT) Received: from ns.tokyo.redhat.com (IDENT:root@ns.tokyo.redhat.com [172.16.21.254]) by lacrosse.corp.redhat.com (8.9.3/8.9.3) with ESMTP id FAA08005; Mon, 9 Oct 2000 05:16:15 -0400 Received: from station18.tokyo.redhat.com (IDENT:nakai@colts.tokyo.redhat.com [172.16.21.101]) by ns.tokyo.redhat.com (8.9.3/8.11.0) with SMTP id SAA18866; Mon, 9 Oct 2000 18:20:00 +0900 Message-Id: <200010090920.SAA18866@ns.tokyo.redhat.com> Date: Mon, 9 Oct 2000 18:07:39 +0900 From: Yukihiro Nakai To: "Jay Roberts" Cc: ports@FreeBSD.org Subject: Re: xfce In-Reply-To: <000a01c02f41$d22dcad0$0201a8c0@a7v> References: <000a01c02f41$d22dcad0$0201a8c0@a7v> X-Mailer: Sylpheed version 0.4.1 (GTK+ 1.2.6; Linux 2.2.14-5.0; i686) Organization: FreeBSD.org 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 Reinstall glib-1.2.8 and gtk+-1.2.8, and also xfce from ports. Gtk+ port seems to be restructed and now it makes /usr/local/lib/libgtk12.so.2 . Thanks. On Thu, 5 Oct 2000 23:02:10 -0400 "Jay Roberts" wrote: > I am writing to you at the suggestion of folks in #freebsdhelp IRC channel. I have tried without success to run xfce after installing the port .... > > > When I installed theport all seemed to go well... > But on Launch I get error > "/usr/libexec/ld-elf.so.1: Shared Object 'libgtk-1.2.so.5' not found > > any suggestions? > --- Nakai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 2:42:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 5A61237B503; Mon, 9 Oct 2000 02:42:30 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id MAA15662; Mon, 9 Oct 2000 12:42:16 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e999gHJ18071; Mon, 9 Oct 2000 12:42:17 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E192F6.E9DDEFB7@FreeBSD.org> Date: Mon, 09 Oct 2000 12:42:15 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: obrien@FreeBSD.org Cc: ports@FreeBSD.org Subject: Re: PROPOSAL: Handling of GNU Texinfo documentation in bsd.port.mk [patch] References: <39E1803D.7A049B1D@FreeBSD.org> <20001009020003.A43153@dragon.nuxi.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > On Mon, Oct 09, 2000 at 11:22:22AM +0300, Maxim Sobolev wrote: > > cases you just need to list info pages installed by the port in INFOPAGES and > > forget about it (no more post-install/@exec/@unexec), for example if the port > > installs foo.info and bar.info you just need the following in Makefile: > > > > [...] > > INFOPAGES= foo bar > > [...] > > If this happens, it should work like MAN?, where the files do not need to > be listed in the PLIST. Exactly. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 3:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EE6D37B66F for ; Mon, 9 Oct 2000 03:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA98987; Mon, 9 Oct 2000 03:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 0745937B502 for ; Mon, 9 Oct 2000 03:41:07 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13iaMf-0008ud-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 09 Oct 2000 12:41:01 +0200 Message-Id: Date: Mon, 09 Oct 2000 12:41:01 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21857: Port update: biology/emboss (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21857 >Category: ports >Synopsis: Port update: biology/emboss (maintainer) >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: Mon Oct 09 03:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 3.5-STABLE i386 >Organization: Electric Genetics >Environment: >Description: - Update biology/emboss from 1.5.0 to 1.6.0 - Alphabetise ${PLIST} to ease future maintenance >How-To-Repeat: >Fix: begin 644 emboss.diff.gz M'XL("-&?X3D"`V5M8F]S-OD MY_G+Y6"8;KX.5+B(LVRT<)XOOCC/:ND'JKQ77Y\-A\,VW8>_I?[@226#Z70P MN;N?SN['T\%T/!Z?`=A/Y,.7.!H\NOE@<#>83.['X_OIQ(H_?AP,K\]O!C#_ M?/QX-OB?L\'9X*_';]^_?OKR\-L'F]#9T-SYY\.WI\^/7W_[,!E=C?1S]NY= MZWN#/SY]?_C[X[?/#T^_?5CX<1"OWLX&7SX]?7_X-G_Z_-W<7N;)_<6%_G>T M>1[I]".5C^)T=9%L%A30EK5XVY;C^ZN;^_%E8\O)`!-CQ^&7/Z\&_VMS M.2SL-=**N/6 MB7U[,[D<3Y>SR\5T/+EU)^/;N\E,N4OWZLZ9+!;C=ILDSZMA$N@R5.6I;^Q; MI0YH,X[-KV]GUQOV65\?JU-,R[?LH4?7;BQYX9)]3M,`O6CN MJE9G0_/+5^4MY4O^Y=.D%@'V@,IRU9!NN+.GM)'+QYE5438Q%;77?GM[J^)A/]IWIF MMDE4&CJYNU9I>>?-C>VO7/W(,^6D[MI:-%^&9,A@)TJ3:K1Q`[7)=M-M;NZDM&J[L95V%4VGGJV=5.D/PZT:U=") M-DZ073A>Z$>C+'_KU>C:;]$D:;Q*G3"[6.=A<&%:_^&?G[\]_/']X<^1N=4; MQ0G\512J*)^O@GCA!/-5&F\2<=Q3(@6Q>^KS0OWB^?JM$\6.IF2;GNAEEE3A?4'3A\TBMW M16I5YO*5J0>G`O%*T<;PLR1PWN;O:XAUFS/7V=NHR%5S\SG&F2^NQ.TTELK1 M@S^5G9R`#M+#KMP7)A'GY4B-UIM!,BW.Z8SHEI93UF-O4EZ/S5E]R"JCGV^A MFC_[>L+INR*SZTKS=8^HFUD5DC&R?*I[_CA4I%Z4N&T!Z>]MJ=N\9S+M9:J< M9U*Z^?E3#SAYL;[#B\WX@U/;*1JI==+(9[\>78'Z2]?&$W87=IY(:DVRY.!I M=\Y)QGGS=$NCVX`W20GT3)84FMZ4E1:38E)<3IHYM9U4<]K0R9Y-Z\VKZ4R+ MFN90K?3T-EWQ>H$VSOVEJ(4+LX7#)K[)Q0.@2"DO4*SVU28M>\"K<%!K8V1* M/=-Z^D6(])MKOE-2G:_IE&-7=Q1Q0(H]SXQU.''BF*\HI7NL1`]1%9UOW0+I MK\-;2-3V+:9CY"J-YL4G*&RN$Y6XL1_08M.0T6*SNLUJ]9@_SVAUL5#(JXN5 M0Z'<"=@'V+5'4DR/'>KQ[UG>0SBDSOX-$3IO])69M MG9.FRJQ7B"R6*G[6E2J[#I(+F]I4A0XM3;2E,UGJ69[Z?'FMVKP0=FXH?-@+ MW79DRHTCSTG?YOJ1&]>\/Y)'Z8IT@BQFQ?\I.D&Z[=814O8SM%IATID@]>9; ME:_)OO=3K^-7:TZGQ%6>+_THLG7\RHZ,ZN>G_FBUD"_,+X9@9+J7'\6 M_%0QRS/)R&#;H4O&>'/)UL4XA.:TUV5R&=7 MB-W43Z2?;A$Q<.31_)#.W";W]7LL')8TD=8J2$Z+^:S>S`:`$UZM%_W=QJGI MRLD(KP[]G;[&BP6[;&&R[\8;MM6IMSNPC*DIO%\"YM*N51TY=KL=PXG+M8"(13UEQI'(Z%\72`:\N MU@*$DUQ[22JW73Z7!IVK:I5VMZWKU- M.OF/O#=&LW.%46]O7.'TQ;X52IJ_^IGQ'C)BN\>%4]9;7#BYV>%"*>T&%TIJ M][=P4KO=A-6R%5%M-B&UY?HZI39[1CAASN;6[!BA=-5V"U)L=UNP8K/9@M2: MO1:4M-QJP6B-:XY*L]R1P6F+#1F4M-F!0,J+#0BDUNP_H*1F"9D1-KL/*'6S M^8"3AZ1P>_\`%:'9/D#))4DWFP<8>;EW@)(66P M6KC"&67IU>:DK[+^<\L]3+M[7Q[B;%(?^; MBB5Q("_?^?:TBJ6Z]J!F<:Z]?+NGOML2:-;K.IY@5NBZ@DR/OE7*6X,8F-S. M2L;`883M1;R.-)MENP[!5O3A0:A9VNV(URS:M0O*9;J.P&)AKBKI50EMN+OJ MJL]R":L]L;U%JPZ1G^5%JUQ_AA"4MEKDZ@BMEK7:@\N%K+JTEW?GD^D`T^F5 M^=M:WGK>VYYB,]/M"3?#W_:REJ"&K@3*UKLKU(0?:>RJZ6]':/?WMS7%;7\A MS0CH6-3N2K(3W.ZP>DI;U].M@7M@6N,P#C.C+7"D3=L:"G8(ZL%?>QUU%[8< MX'4$FCZU(Z@;[(J7WA32`E\TNS&=-2XOIZV=]DX" M7AK/UWU/T:(L3M9^X/0IE6LEPV[)["QUE?=J0N_% MM"9)GW#MA'5%W5Q-SN\&F%U>M[W5.]'>LMZ4?ZI%ZC!Y_1EVUM&WA]\_/3U< M>)LP?+.PK4/-7]\^?_W^U*=Y-#LGMD0M^7GX_1^/3___Y7)\+/#J2.#,HI1N M+XL!R-5TW&G&A[\^?;D9=X7<=H;W-YWI1LZSXW>&5HOO)ARRTB?E09G6 MP%0/+D+5WCH^9/YJI#;/MH#7LZ)"9]>M`P\;(7=6F8&@!=VAJ^6R-?!U[>=J M^.J'@7KK*N7!6P[F+0?Q2;7DR/8>>F"F1\I[:6Q/,=$YQ=Q-T_3W-F$[GE/> MXK@BB(Z'9]&DJ)B[L7WS[F:M'4L3RQS;&47NPC^NR%[]+#LN,8.3O8(7"E/S MNN>--N%(UV:/(D]7G0K/?_$S7X\P@^>D4U3P4_3P8.1[/]KR:T5ZG'GX833A MZTTX.2K0D[KZ([^;%#;&];AUR--$2F/O:*(O:=`3;G,][+7QL-?&0\;&PQ-M MG/BI^7\R6BL]ZDF/2LQ(+CNNV(0+/92VMIY-SV?&UM.[\\OK:8>URZBS46RV M!^5'):E:'@TW2+<6.Q3?@UGC[ZHQ*VBJI$=BZJ13LE,IG:J=6FG-BY/G M5;8[19O$FSM1U"^J4L))%C*I]%BHD71:R$CZ+614?1;2,X]0=ZG5W_92[1L1 MC!'!&''0G:.C5MH5==BI$O59JM+MVNJCYZ=I..ABZ74+=O;SMIFAP^9'F7X@ MF'Z0,_WP#J8?3F'ZX72F'][%](.,Z0B*$]$1(Z(D0TA,AH"="<-`4/&D1$M(B)*1%B$B+D-`3(<`RXD32(@2D M10A(BSB!M(B32(M@28O@28N0D!8A(BU"=#H:`BXC1%Q&2+B,D'`9(>0R0L!E MA)C+")[+B!.XC!!P&7$*EQ%B+B.$7$8(N(P0<1DAX#)"PF6$!!H`"<010H@C M1!!'B"".$$,<\0Z((R001T@@CI!0&R"A-D"`AX2`\``12A(BE"1$]`C(P).0 MP28@YE1"C*<`@:`)`<`3(H`G)`!/2`&>^$4`3_P*@"=^#<`3/,`3$(`\,3[`)Z0`#PA!7A"`/"$#.`)&<`3[P-X MXIT`3[P#X(EW`#SQ3B@G!`!0B`">D``\(0%X0@CPA`S@"0'`$[\"X`D1P!,R M@"=D`$^(`9Z@`9Z@H66@H64X#0H*(104,B@H6"@H!%!0T%!0T"0WG$H$A80[ MBM/PH9#@0W$*/A0GXT/Q"_"AD.)#P>-#(<"'0H#S@PPU"AEJ%"+4*,1H08C0 M@A"B!<&C!2%!"X)&"T*&%@2-%@2/%@2/%H0`+0@!6A`"M"!$:$&P:$'P:$&0 M:$%(T(*0H`4A0`N"1PM"@!:$`!D('AD(&3(0`F0@>&0@6&0@1,A`R)"!8)&! M_<+"-T])]^F"D-$%(:`+0D87!$\7!$T7A(`N"`%=$!*Z(`1T0?!T0?!T0&(A),1""(B%$!`+ M(2,60D0L!$\LA(18"!&Q$")B(:3$0K#$0LB(A1`1"T$2"\$3"\$2"R$@%D)` M+(206`B:6`B>6`@1L1`B8B$DQ$)PQ$(P!,+1ZN=181O:$!RTL"_I+6YAK[1& M%_8I2WIA(>LZ4UNKSP:]QVXME($[G=N;6O+CRB*8]A'PPWXHCL\\=,CH07UI#O8%*([>,]4AZB2(Y:Q4)0C*91$ ME/:G;R>!/NMW/J,]>TW!A\?--CQJ\V%/C0U[:GS8^\YT*MI-4L#*6@+._@O@ 'Y@:I-)4``.MW ` end >Release-Note: >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 Mon Oct 9 4: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33DCA37B66D for ; Mon, 9 Oct 2000 04:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA02357; Mon, 9 Oct 2000 04:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hyperhost.net (hyperhost.net [207.159.132.249]) by hub.freebsd.org (Postfix) with ESMTP id D722137B66C for ; Mon, 9 Oct 2000 03:56:47 -0700 (PDT) Received: from foobar.foobar.eyep.net (p17.a4.du.radix.net [207.192.130.145]) by hyperhost.net (8.9.3/8.9.3) with ESMTP id GAA08465 for ; Mon, 9 Oct 2000 06:56:45 -0400 (EDT) Received: by foobar.foobar.eyep.net (Postfix, from userid 1000) id 60CE31381C7; Mon, 9 Oct 2000 06:56:18 -0400 (EDT) Message-Id: <20001009105618.60CE31381C7@foobar.foobar.eyep.net> Date: Mon, 9 Oct 2000 06:56:18 -0400 (EDT) From: patseal@hyperhost.net Reply-To: patseal@hyperhost.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21858: www ports interface bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21858 >Category: ports >Synopsis: www ports interface bug >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 09 04:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Seal >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: when searching for the biblereader port at: http://www.freebsd.org/ports/ it comes up and says it's listed under misc, but it's not listed under http://www.freebsd.org/ports/misc.html its listed under http://www.freebsd.org/ports/deskutils.html biblereader used to be under deskutils, aparently the www interface is confused. >How-To-Repeat: >Fix: >Release-Note: >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 Mon Oct 9 4:11: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from epsilon.lucida.qc.ca (epsilon.lucida.qc.ca [216.95.146.6]) by hub.freebsd.org (Postfix) with SMTP id B9BBB37B66D for ; Mon, 9 Oct 2000 04:10:58 -0700 (PDT) Received: (qmail 96621 invoked by uid 1000); 9 Oct 2000 11:10:54 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 9 Oct 2000 11:10:54 -0000 Date: Mon, 9 Oct 2000 07:10:53 -0400 (EDT) From: Matt Heckaman X-Sender: matt@epsilon.lucida.qc.ca To: FreeBSD-PORTS Subject: BIND v9 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: localhost 1.6.2 0/1000/N Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Greetings, Is it known if there are any plans to import bind 9.0.0 into the ports collection? The ISC webpage calls it a production release, so I don't see why it wouldn't be, but never know. :) Cheers, Matt * Matt Heckaman - mailto:matt@lucida.qc.ca http://www.lucida.qc.ca/ * * GPG fingerprint - A9BC F3A8 278E 22F2 9BDA BFCF 74C3 2D31 C035 5390 * -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: http://www.lucida.qc.ca/pgp iD8DBQE54ae+dMMtMcA1U5ARAnodAKDfb+/P2FV/sguUzQmA5ljXmikPOgCdF+Hh R8CPBnsTFt7LGwh9YUVln/g= =fOi8 -----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 Mon Oct 9 4:59:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cip1.melaten.rwth-aachen.de (cip1.melaten.RWTH-Aachen.DE [134.130.92.100]) by hub.freebsd.org (Postfix) with ESMTP id 919A637B503; Mon, 9 Oct 2000 04:59:26 -0700 (PDT) Received: from cip12.melaten.rwth-aachen.de (cip12.melaten.rwth-aachen.de [134.130.92.12]) by cip1.melaten.rwth-aachen.de (8.9.3/8.8.8) with ESMTP id OAA08807; Mon, 9 Oct 2000 14:10:51 +0200 Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id OAA22408; Mon, 9 Oct 2000 14:06:41 +0200 (CEST) (envelope-from tg@melaten.rwth-aachen.de) X-Authentication-Warning: cip12.melaten.rwth-aachen.de: tg set sender to tg@melaten.rwth-aachen.de using -f To: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/lang/python+ipv6 Makefile ports/lang/python+ipv6/pkg PLIST.Tools PLIST.gmp PLIST.tk PLIST.v6 ports/lang/python15 Makefile ports/lang/python15/pkg PLIST.Tools PLIST.gmp References: <200010080242.TAA55524@freefall.freebsd.org> From: Thomas Gellekum In-Reply-To: asami@FreeBSD.org's message of "08 Oct 2000 16:19:19 -0700" Date: 09 Oct 2000 14:06:40 +0200 Message-ID: Lines: 10 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Canyonlands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) writes: > Note: I don't know where PLIST_TK (which I assume used to point to > "PLIST.tk") is defined. (There is no Makefile in the entire ports tree > that defines that variable.) Someone in the know, please let me know. It's unnecessary since I created x11-toolkits/py-tkinter. I probably just forgot to delete the reference in lang/python15. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 6: 5:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.inetservice.de (mail.inetservice.de [62.96.3.26]) by hub.freebsd.org (Postfix) with ESMTP id 7A1DE37B66E for ; Mon, 9 Oct 2000 06:05:17 -0700 (PDT) Received: from 62.96.16.38 (line16-38.inetservice.de [62.96.16.38]) by mail.inetservice.de (8.9.3/8.9.3) with ESMTP id PAA28556 for ; Mon, 9 Oct 2000 15:04:16 +0200 Received: (qmail 489 invoked from network); 8 Oct 2000 13:05:12 -0000 Received: from didi.room.de (10.10.10.2) by escom.room.de with SMTP; 8 Oct 2000 13:05:12 -0000 Received: (qmail 10074 invoked by uid 1001); 9 Oct 2000 13:04:51 -0000 From: "Jochen Solbrig" Date: Mon, 9 Oct 2000 15:04:51 +0200 To: ports@freebsd.org Subject: netpbm port half installed Message-ID: <20001009150450.A10041@didi.room.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! Today 9.Oct. I tried to install the netpbm-9.8 port. At first I noticed that the patches are incomplete: I had to edit work/netpbm-9.8/Makefile.config. Some include paths are wrong, "ginstall" is used to install and network support doesn't work. Here is what I changed: line 51: # MAKE is set automatically by Make to what was used to invoke Make. INSTALL = install line 109: #If the linker is gcc (e.g. NetBSD): LDFLAGS = -Wl,--rpath,$(INSTALLLIBS) line 151: # Use the Tiff library included with Netpbm: #TIFFHDR_DIR = $(SRCDIR)/libtiff #TIFFLIB_DIR = $(SRCDIR)/libtiff #NetBSD: TIFFHDR_DIR = $(LOCALBASE)/include TIFFLIB_DIR = $(LOCALBASE)/lib line 179: # Netbsd: JPEGLIB_DIR = ${LOCALBASE}/lib JPEGHDR_DIR = ${LOCALBASE}/include line 201: # NetBSD: PNGLIB_DIR = $(LOCALBASE)/lib PNGHDR_DIR = $(LOCALBASE)/include line 230: # Don't build network functions: NETWORKLD = NONE After I completed with "make" I installed the package wich "make install". This stops with the following errors: gmake[1]: Leaving directory `/usr/ports/graphics/netpbm/work/netpbm-9.8/pnm' ===> Generating temporary packing list ** Missing package files for netpbm-9.8. *** Error code 1 Stop in /usr/ports/graphics/netpbm. *** Error code 1 Stop in /usr/ports/graphics/netpbm. *** Error code 1 Stop in /usr/ports/graphics/netpbm. Netpbm is installed but not registered as package. Can somebody please complete the port? Jochen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 6:14:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 3471137B66D for ; Mon, 9 Oct 2000 06:14:04 -0700 (PDT) Received: by peitho.fxp.org (Postfix, from userid 1501) id 310941360E; Mon, 9 Oct 2000 09:14:07 -0400 (EDT) Date: Mon, 9 Oct 2000 09:14:06 -0400 From: Chris Faulhaber To: Jochen Solbrig Cc: ports@freebsd.org Subject: Re: netpbm port half installed Message-ID: <20001009091406.A28702@peitho.fxp.org> References: <20001009150450.A10041@didi.room.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001009150450.A10041@didi.room.de>; from jsolbrig@web.de on Mon, Oct 09, 2000 at 03:04:51PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 03:04:51PM +0200, Jochen Solbrig wrote: > Hello! > > Today 9.Oct. I tried to install the netpbm-9.8 port. At first I noticed > that the patches are incomplete: I had to edit > work/netpbm-9.8/Makefile.config. > *snip* > > After I completed with "make" I installed the package wich "make install". > This stops with the following errors: > gmake[1]: Leaving directory `/usr/ports/graphics/netpbm/work/netpbm-9.8/pnm' > ===> Generating temporary packing list > ** Missing package files for netpbm-9.8. > *** Error code 1 > Stop in /usr/ports/graphics/netpbm. > *** Error code 1 > Stop in /usr/ports/graphics/netpbm. > *** Error code 1 > Stop in /usr/ports/graphics/netpbm. > Significant changes were made to the ports system this weekend. Are you sure you updated the .mk files in ports/Mk (aka update ports-base in the cvsup file if you aren't using ports-all). -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 7: 0: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C42D737B66C for ; Mon, 9 Oct 2000 07:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA70079; Mon, 9 Oct 2000 07:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30DC637B502 for ; Mon, 9 Oct 2000 06:52:41 -0700 (PDT) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AC916E2710 for ; Mon, 9 Oct 2000 06:52:22 -0700 (PDT) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id e99DobB45538; Mon, 9 Oct 2000 21:50:37 +0800 (CST) Message-Id: <200010091350.e99DobB45538@www.caece.net> Date: Mon, 9 Oct 2000 21:50:37 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@cae.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21862: update port: chinese/telnet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21862 >Category: ports >Synopsis: update port: chinese/telnet >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: Mon Oct 09 07:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD bsd.caece.net 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Jul 31 00:29:46 CST 2000 root@bsd.caece.net:/usr/src/sys/compile/CAECE i386 >Description: fix the WRKDIR problem. >How-To-Repeat: http://bento.freebsd.org/errorlogs/4-full/zh-telnet-1.0.log >Fix: diff -ruN /usr/ports/chinese/telnet/Makefile telnet/Makefile --- /usr/ports/chinese/telnet/Makefile Thu Oct 5 12:00:44 2000 +++ telnet/Makefile Mon Oct 9 13:13:10 2000 @@ -17,7 +17,7 @@ do-extract: .if exists (${SRCDIR}) - @${MKDIR} work + @${MKDIR} ${WRKDIR} @${CP} -R ${SRCDIR} ${WRKSRC} .else BROKEN= "You need to build this port with ${SRCDIR}" >Release-Note: >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 Mon Oct 9 7: 1: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from neo.skynet.be (neo.skynet.be [195.238.2.53]) by hub.freebsd.org (Postfix) with ESMTP id 9AE1F37B502; Mon, 9 Oct 2000 07:00:57 -0700 (PDT) Received: from [195.238.1.121] (brad.techos.skynet.be [195.238.1.121]) by neo.skynet.be (Postfix) with ESMTP id 58F596CAE; Mon, 9 Oct 2000 16:00:08 +0200 (MET DST) Mime-Version: 1.0 X-Sender: blk@pop.skynet.be Message-Id: In-Reply-To: <20001008212246.856EF1C2AB@hun.org> References: <20001008143111.D539@puck.firepipe.net>, , <20001008070212.04A381C2AB@hun.org> <20001008212246.856EF1C2AB@hun.org> Date: Mon, 9 Oct 2000 13:58:19 +0200 To: attila! , freebsd-current@freebsd.org, freebsd-ports@freebsd.org From: Brad Knowles Subject: Re: POSTFIX-- Wietse: tweak and go! --pkg & port: both duds Cc: Will Andrews Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 9:22 PM +0000 2000/10/8, attila! wrote: > I look at 'snapshots' philosophically; if I willingly track > FreeBSD-5.0-current, I am obviously accustomed to the risks > therein. Understood. I just wanted to point out the philosophical differences from the postfix perspective, and thought that it was important that this be made explicit. > 20001001 is the most current which Wietse is now running and > stating that it is 'production quality'. Obviously, I will > port 20001001 this afternoon! No, 20001005 is the latest snapshot I know of, and appears to be what Wietse is running himself: $ telnet spike.porcupine.org. 25 Trying 168.100.189.2... Connected to spike.porcupine.org. Escape character is '^]'. 220 spike.porcupine.org ESMTP Postfix (Snapshot-20001005) quit 221 Bye Connection closed by foreign host. However, I would not be too surprised if what he was running is actually slightly later than this (i.e., another snapshot in progress), and it just identifies itself as Snapshot-20001005. > Why not consider the use of the mysql interface which > provides dynamic aliasing? The machines where I run this code don't strictly need a MySQL interface for aliases. Although we do keep our internal aliases in a MySQL database, I do not believe that it is in a format that would be suitable for use with postfix, and therefore I'd have to create yet another MySQL database that *was* in the proper format. This would likely lead to synchronization problems, etc.... -- These are my opinions -- not to be taken as official Skynet policy ====================================================================== Brad Knowles, || Belgacom Skynet SA/NV Systems Architect, Mail/News/FTP/Proxy Admin || Rue Colonel Bourg, 124 Phone/Fax: +32-2-706.13.11/12.49 || B-1140 Brussels http://www.skynet.be || Belgium "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin, Historical Review of Pennsylvania. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 8:30:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DA4F37B66E for ; Mon, 9 Oct 2000 08:30:06 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA09088; Mon, 9 Oct 2000 08:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 91C0437B503 for ; Mon, 9 Oct 2000 08:29:41 -0700 (PDT) Received: by ada.eu.org (Postfix, from userid 10) id 3265719017; Mon, 9 Oct 2000 17:29:39 +0200 (CEST) Received: by trillian.enst.fr (Postfix, from userid 1000) id 7210120C; Mon, 9 Oct 2000 17:29:23 +0200 (CEST) Message-Id: <20001009152923.7210120C@trillian.enst.fr> Date: Mon, 9 Oct 2000 17:29:23 +0200 (CEST) From: sam@inf.enst.fr Reply-To: sam@inf.enst.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21863: Port update: devel/perforce Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21863 >Category: ports >Synopsis: Port update: devel/perforce >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: Mon Oct 09 08:30:05 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 4.1-STABLE i386 >Organization: TELECOM Paris >Environment: >Description: Perforce port update >How-To-Repeat: >Fix: Please apply the following patch, and manually add files/perforce and files/perforce.sh.in. --- perforce/Makefile.orig Mon Oct 9 16:56:35 2000 +++ perforce/Makefile Mon Oct 9 17:22:16 2000 @@ -6,28 +6,36 @@ # PORTNAME= perforce -PORTVERSION= 99.2 +PORTVERSION= 00.1 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/bin.freebsd/ \ http://www.dsmit.com/p4/ \ ftp://ftp.perforce.com/pub/perforce/r${PORTVERSION}/doc/man/ EXTRACT_SUFX= -DISTFILES= p4 p4d p4.1 p4d.1 +DISTFILES= p4 p4d p4web p4.1 p4d.1 DIST_SUBDIR= perforce MAINTAINER= sam@inf.enst.fr NO_PACKAGE= Restricted distribution NO_CDROM= Restricted distribution -NO_BUILD= yes MAN1= p4.1 p4d.1 do-extract: @${MKDIR} ${WRKSRC} +do-build: + ${SED} -e "s,@PREFIX@,${PREFIX},g" \ + < files/perforce.sh.in > ${WRKSRC}/perforce.sh + do-install: - ${INSTALL_PROGRAM} ${DISTDIR}/${DIST_SUBDIR}/p4 ${PREFIX}/bin - ${INSTALL_PROGRAM} ${DISTDIR}/${DIST_SUBDIR}/p4d ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${DISTDIR}/${DIST_SUBDIR}/p4 ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${DISTDIR}/${DIST_SUBDIR}/p4web ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${DISTDIR}/${DIST_SUBDIR}/p4d ${PREFIX}/sbin/ + if [ ! -f ${PREFIX}/etc/perforce ]; then \ + ${INSTALL_DATA} files/perforce ${PREFIX}/etc/; \ + fi + ${INSTALL_SCRIPT} ${WRKSRC}/perforce.sh ${PREFIX}/etc/rc.d/ .for PERFMAN in p4 p4d ${INSTALL_MAN} ${DISTDIR}/${DIST_SUBDIR}/${PERFMAN}.1 ${PREFIX}/man/man1 .endfor --- perforce/distinfo.orig Mon Oct 9 16:58:34 2000 +++ perforce/distinfo Mon Oct 9 17:01:36 2000 @@ -1,4 +1,5 @@ -MD5 (perforce/p4) = 6394c00f803fec549b3d22539bbdbe4a -MD5 (perforce/p4d) = 0e14a67349b32ac413876b010ad41024 -MD5 (perforce/p4.1) = 316b0cf0e0c6e0ff63ecdb612e45f58a -MD5 (perforce/p4d.1) = e2f1b2c60690ac4d4d3881faee5aa5e0 +MD5 (perforce/p4) = 9456775cd3acbdf7b61fa5cc9abaa929 +MD5 (perforce/p4d) = f85238c698d4fe724289edd62809a16c +MD5 (perforce/p4web) = efe8d09184767fd1c8d9b63ce6d9f7d4 +MD5 (perforce/p4.1) = ff71fd46bccf768a1681252d358b2b49 +MD5 (perforce/p4d.1) = 17383209ae44dd2383f62cb47fe4ba78 --- perforce/pkg-plist.orig Mon Oct 9 16:58:50 2000 +++ perforce/pkg-plist Mon Oct 9 17:21:15 2000 @@ -1,2 +1,5 @@ bin/p4 +bin/p4web sbin/p4d +etc/perforce +etc/rc.d/perforce.sh --- /dev/null Mon Oct 9 17:23:48 2000 +++ perforce/files/perforce Mon Oct 9 17:17:56 2000 @@ -0,0 +1,18 @@ +# +# Perforce FreeBSD configuration file +# + +# +# Perforce ROOT +# +PERFORCE_ROOT="/usr/p4root" + +# +# Perforce options (see man p4d) +# +PERFORCE_OPTIONS="-v server=1 -L /var/log/perforce" + +# +# Uncomment this line to have the server started automatically +# +#PERFORCE_START=yes --- /dev/null Mon Oct 9 17:23:48 2000 +++ perforce/files/perforce.sh.in Mon Oct 9 17:15:29 2000 @@ -0,0 +1,11 @@ +#!/bin/sh +case $1 in + start) + [ -f @PREFIX@/etc/perforce ] && . @PREFIX@/etc/perforce + if [ x$PERFORCE_START = xyes ]; then + echo -n " perforce server" + p4d -r $PERFORCE_ROOT $PERFORCE_OPTIONS + fi + ;; + *) ;; +esac >Release-Note: >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 Mon Oct 9 8:38: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B332F37B66D; Mon, 9 Oct 2000 08:37:58 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA11970; Mon, 9 Oct 2000 08:37:58 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Date: Mon, 9 Oct 2000 08:37:58 -0700 (PDT) From: Message-Id: <200010091537.IAA11970@freefall.freebsd.org> To: antonz@library.ntu-kpi.kiev.ua, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21853: Broken lang/gpc port temporary fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Broken lang/gpc port temporary fix State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Mon Oct 9 08:37:12 PDT 2000 State-Changed-Why: Committed thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21853 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 8:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E918037B66C for ; Mon, 9 Oct 2000 08:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA16225; Mon, 9 Oct 2000 08:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 9 Oct 2000 08:50:03 -0700 (PDT) Message-Id: <200010091550.IAA16225@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/21863: Port update: devel/perforce Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21863; it has been noted by GNATS. From: Peter Pentchev To: sam@inf.enst.fr Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/21863: Port update: devel/perforce Date: Mon, 9 Oct 2000 18:42:09 +0300 On Mon, Oct 09, 2000 at 05:29:23PM +0200, sam@inf.enst.fr wrote: > > >Number: 21863 > >Category: ports > >Synopsis: Port update: devel/perforce [snip] > PORTNAME= perforce > -PORTVERSION= 99.2 > +PORTVERSION= 00.1 > CATEGORIES= devel This version 'unbump' sounds like a very likely candidate for a PORTEPOCH=1 to me.. G'luck, Peter -- This sentence no verb. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 8:50:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F9AA37B66F for ; Mon, 9 Oct 2000 08:50:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA16243; Mon, 9 Oct 2000 08:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 97AB337B66F for ; Mon, 9 Oct 2000 08:49:18 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13ifAw-0009D8-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 09 Oct 2000 17:49:14 +0200 Message-Id: Date: Mon, 09 Oct 2000 17:49:14 +0200 From: johann@egenetics.com Reply-To: bio@freebsd.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21865: Update port: biology/p5-AcePerl (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21865 >Category: ports >Synopsis: Update port: biology/p5-AcePerl (maintainer) >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: Mon Oct 09 08:50:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 3.5-STABLE i386 >Organization: Electric Genetics >Environment: >Description: - Update biology/p5-AcePerl from 1.62 to 1.67 - Alphabetise ${PLIST} to ease future maintenance - Port now compiles in XS optimisations and RPC server interface - Port now honours ${CC} properly, also for compiled extensions - Port now uses PERL_CONFIGURE - Hand over port MAINTAINERship to FreeBSD bio-porters mailing list >How-To-Repeat: >Fix: diff -ruN p5-AcePerl.bak/Makefile p5-AcePerl/Makefile --- p5-AcePerl.bak/Makefile Fri Jul 28 15:16:10 2000 +++ p5-AcePerl/Makefile Mon Oct 9 17:37:27 2000 @@ -6,16 +6,17 @@ # PORTNAME= AcePerl -PORTVERSION= 1.62 +PORTVERSION= 1.67 CATEGORIES= biology databases perl5 MASTER_SITES= http://stein.cshl.org/AcePerl/archive/ \ ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR=Ace PKGNAMEPREFIX= p5- -MAINTAINER= johann@egenetics.com +MAINTAINER= bio@freebsd.net USE_PERL5= YES +PERL_CONFIGURE= YES MAN3= Ace::Sequence::Feature.3 \ Ace::Sequence.3 \ @@ -30,8 +31,8 @@ MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -do-configure: - ${CP} ${FILESDIR}/FREEBSD_DEF ${WRKSRC}/ace/wmake/ - @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL +post-patch: + @ ${SED} -e 's/XX__CC__XX/${CC}/' < ${FILESDIR}/FREEBSD_DEF \ + > ${WRKSRC}/ace/wmake/FREEBSD_DEF .include diff -ruN p5-AcePerl.bak/distinfo p5-AcePerl/distinfo --- p5-AcePerl.bak/distinfo Fri Jul 28 15:16:10 2000 +++ p5-AcePerl/distinfo Mon Oct 9 16:09:24 2000 @@ -1 +1 @@ -MD5 (AcePerl-1.62.tar.gz) = d9978077a8e1857b94216d5a28bc38ef +MD5 (AcePerl-1.67.tar.gz) = 46c9bc547f4c8e73480ddac7cbf79d95 diff -ruN p5-AcePerl.bak/files/FREEBSD_DEF p5-AcePerl/files/FREEBSD_DEF --- p5-AcePerl.bak/files/FREEBSD_DEF Fri Jul 28 15:16:10 2000 +++ p5-AcePerl/files/FREEBSD_DEF Mon Oct 9 17:26:35 2000 @@ -8,10 +8,10 @@ ##### following the explanations given in wmake/truemake ##### ################################################################# -CFLAGS+= -g -Wall -O2 -DACEDB4 NAME = FREEBSD -COMPILER = gcc ${CFLAGS} -LINKER = gcc -g +CFLAGS+= -g -Wall -O2 -DACEDB4 +COMPILER = XX__CC__XX ${CFLAGS} +LINKER = XX__CC__XX -g LIBS = -lm Xt_LIBS = -L/usr/X11R6/lib -lXaw -lXt -lXmu -lXext -lX11 diff -ruN p5-AcePerl.bak/files/patch-ac p5-AcePerl/files/patch-ac --- p5-AcePerl.bak/files/patch-ac Thu Jan 1 02:00:00 1970 +++ p5-AcePerl/files/patch-ac Mon Oct 9 16:43:52 2000 @@ -0,0 +1,11 @@ +--- Makefile.PL.orig Thu Aug 31 19:02:21 2000 ++++ Makefile.PL Mon Oct 9 16:43:32 2000 +@@ -1,7 +1,7 @@ + use Config; + use ExtUtils::MakeMaker qw(prompt WriteMakefile); + +-my $choice; ++my $choice = 3; + while (!$choice) { + $reply = prompt( + "\nWhat do you want to build?\n\n" . diff -ruN p5-AcePerl.bak/pkg-descr p5-AcePerl/pkg-descr --- p5-AcePerl.bak/pkg-descr Fri Jul 28 15:16:10 2000 +++ p5-AcePerl/pkg-descr Mon Oct 9 17:40:01 2000 @@ -2,7 +2,9 @@ system. It provides functionality for connecting to remote ACEDB databases, performing queries, fetching ACE objects, and updating databases. +Author: Lincoln D. Stein WWW: http://stein.cshl.org/AcePerl/ -- Johann -johann@egenetics.com +Port maintained by the FreeBSD bio-porters mailing list. + +-- FreeBSD bio-porters diff -ruN p5-AcePerl.bak/pkg-plist p5-AcePerl/pkg-plist --- p5-AcePerl.bak/pkg-plist Fri Jul 28 15:16:10 2000 +++ p5-AcePerl/pkg-plist Mon Oct 9 16:56:09 2000 @@ -1,73 +1,86 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Ace.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Ace.so +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Freesubs.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Iterator.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Local.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/Feature.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/Multi.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/FeatureList.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/Homol.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Model.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Object.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Iterator.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/RPC.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/Feature.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/FeatureList.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/Homol.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence/Multi.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/SocketServer.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/GFF/Filehandle.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/fetch_many.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/auto_save.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/date_style.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/comment.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/isComment.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/.packlist +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Freesubs/Freesubs.bs +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Freesubs/Freesubs.so +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asAce.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asHTML.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asTable.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asXML.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_default_makeHTML.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_insert.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_special_dump.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_to_ace_date.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/date_style.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/add_row.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/delete.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asPeptide.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/add_tree.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asHTML.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/timestamp.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asAce.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asTable.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asTable.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asString.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/replace.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/debug.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_asAce.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_default_makeHTML.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/isTimestamp.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/tags.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asDNA.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asGif.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_special_dump.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asHTML.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/_insert.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/kill.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/rollback.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asDNA.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asPeptide.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asString.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asTable.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/asXML.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/autosplit.ix +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/comment.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/commit.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/status.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/parse_file.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/class_count.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/layout.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/parse.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/pick.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/date_style.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/debug.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/delete.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/escapeXML.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/isComment.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/kill.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/replace.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/rollback.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/tags.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object/timestamp.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/RPC/RPC.bs +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/RPC/RPC.so lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Sequence/Feature/autosplit.ix lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Sequence/autosplit.ix -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/grep.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/put.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/new.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/classes.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/_unregister_iterator.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/_register_iterator.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/_restore_iterator.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/_save_iterator.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/_unregister_iterator.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/auto_save.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/autosplit.ix +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/class_count.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/classes.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/count.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/date_style.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/fetch_many.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/find.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/freeprotect.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/grep.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/layout.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/new.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/parse.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/parse_file.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/parse_longtext.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/pick.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/ping.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/count.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/autosplit.ix +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/put.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/split.al +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/status.al lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/timestamps.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/parse_longtext.al -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/GFF @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Sequence/Feature @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Sequence +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/RPC @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Object +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace/Freesubs @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Ace +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/GFF +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace/Sequence +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Ace >Release-Note: >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 Mon Oct 9 9:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D062337B66C for ; Mon, 9 Oct 2000 09:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA35348; Mon, 9 Oct 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 05E3537B66C; Mon, 9 Oct 2000 09:37:38 -0700 (PDT) Message-Id: <20001009163738.05E3537B66C@hub.freebsd.org> Date: Mon, 9 Oct 2000 09:37:38 -0700 (PDT) From: goran.lowkrantz@ismobile.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21867: Update doxygen from 1.1.0 to 1.2.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21867 >Category: ports >Synopsis: Update doxygen from 1.1.0 to 1.2.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: Mon Oct 09 09:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Goran Lowkrantz >Release: 4.1-STABLE >Organization: isMobile.com AB >Environment: FreeBSD oden.hq.ismobile.com 4.1-STABLE FreeBSD 4.1-STABLE #8: Mon Sep 11 13:57:29 CEST 2000 root@oden.hq.ismobile.com:/usr/src/sys/compile/ODEN i386 >Description: Update of doxygen to current version request. >How-To-Repeat: >Fix: --- Makefile.orig Tue Sep 26 06:15:53 2000 +++ Makefile Mon Oct 9 17:50:11 2000 @@ -6,7 +6,7 @@ # PORTNAME= doxygen -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.2 CATEGORIES= devel MASTER_SITES= http://www.stack.nl/~dimitri/doxygen/dl/ DISTFILES= ${PORTNAME}-${PORTVERSION}.src.tar.gz >Release-Note: >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 Mon Oct 9 9:42:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id A6B9C37B66D; Mon, 9 Oct 2000 09:42:15 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id SAA58149; Mon, 9 Oct 2000 18:41:58 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e99GfX400987; Mon, 9 Oct 2000 09:41:33 -0700 (PDT) (envelope-from reg) Date: Mon, 9 Oct 2000 09:41:33 -0700 From: Jeremy Lea To: Maxim Sobolev Cc: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Problems with bsd.gnome.mk [patch] Message-ID: <20001009094132.H30468@shale.csir.co.za> References: <39E184FE.7FCE1E41@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E184FE.7FCE1E41@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Oct 09, 2000 at 11:42:38AM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 09, 2000 at 11:42:38AM +0300, Maxim Sobolev wrote: > I wonder if anyone noticed that bsd.gnome.mk does quite strange things with > package names when WANT_* defined, so example if you have WANT_GNOME defined in > your /etc/make.conf and gnome is in fact installed: Try defining WITH_GTK in /etc/make.conf and come back to me on this. The behaviuor is entirely intentional, if you happen to read the documentation. WANT is for a port's makefile. > Also I don't like the fact that bsd.gnome.mk adds > --localstatedir=${PREFIX}/share/gnome and --datadir=${PREFIX}/share/gnome > configure arguments even for those ports, which contains optional GNOME > dependencies, so for example port installs its files into ${PREFIX}/share/foo > for nognome case, but into ${PREFIX}/share/gnome/foo if WANT_GNOME is defined > (for example sawfish, xmms etc.). IMO this leads to confusion and doesn't > really necessary. At least this stuff should be made optional, so only ports > which really can benefit from that would use this feature. As an example of > possible problems with this behaviour, please considering somebody writing a > port of sawfish theme - and confusion as to where the theme files should go - > into share/gnome/safwish, or share/sawfish. Other packages may have similar > problems. This is an unfortunate sideeffect of a policy decision by both Vanilla and I when we origionally ported Gnome. We decided that all Gnome apps should put their data in ${X11BASE}/share/gnome. I'm not entirely sure that preventing this behaviour is a good thing. It leads to Gnome apps being ported in two possible ways: Patching to remove /gnome from after datadir and helpdir, and patching to add /gnome after pixmapdir. Solving the problem from a port's perspective is also fairly simple. You define WANT_GNOME, and then test HAVE_GNOME and define USE_GNOME. You can then use %%DATADIR%% to get the correct PLIST entries. It looks lile I mananged to screw up with sawfish. The Makefile shouldn't have had PLIST_SUB's for GNOME in it after I was finnished, and the PLIST should have had %%DATADIR%%'s. Sorry. I'll consider something to turn this off, but only in the case where Gnome is optional. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 9:44:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 3B4CA37B503; Mon, 9 Oct 2000 09:44:18 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id SAA58170; Mon, 9 Oct 2000 18:43:59 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e99GhYJ01017; Mon, 9 Oct 2000 09:43:34 -0700 (PDT) (envelope-from reg) Date: Mon, 9 Oct 2000 09:43:33 -0700 From: Jeremy Lea To: Yukihiro Nakai Cc: Jay Roberts , ports@FreeBSD.ORG Subject: Re: xfce Message-ID: <20001009094333.I30468@shale.csir.co.za> References: <000a01c02f41$d22dcad0$0201a8c0@a7v> <200010090920.SAA18866@ns.tokyo.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010090920.SAA18866@ns.tokyo.redhat.com>; from nakai@FreeBSD.ORG on Mon, Oct 09, 2000 at 06:07:39PM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 09, 2000 at 06:07:39PM +0900, Yukihiro Nakai wrote: > Reinstall glib-1.2.8 and gtk+-1.2.8, and also xfce from ports. > Gtk+ port seems to be restructed and now it makes /usr/local/lib/libgtk12.so.2 . It most definitely should not be doing that... it should be /usr/X11R6/lib/libgtk12.so.2 -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 9:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5832937B66C for ; Mon, 9 Oct 2000 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA38904; Mon, 9 Oct 2000 09:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from venus.sympad.net (venus.sympad.net [212.0.213.62]) by hub.freebsd.org (Postfix) with ESMTP id 0BBE037B503 for ; Mon, 9 Oct 2000 09:47:02 -0700 (PDT) Received: (from andy@localhost) by venus.sympad.net (8.9.3/8.9.3) id TAA69069; Mon, 9 Oct 2000 19:46:49 +0300 (EEST) (envelope-from andy) Message-Id: <200010091646.TAA69069@venus.sympad.net> Date: Mon, 9 Oct 2000 19:46:49 +0300 (EEST) From: Andrey Tchoritch Reply-To: andy@venus.sympad.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21868: New port: This is a game of pentix for terminals Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21868 >Category: ports >Synopsis: New port: This is a game of pentix for terminals >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: Mon Oct 09 09:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrey Tchoritch >Release: FreeBSD 3.4-STABLE i386 >Organization: sympad library >Environment: >Description: This is a game of pentix for terminals pentix is one of the various flavours of good old tetris. however, pentix surpassed its famous parent in playbility this version of pentix is based on the original msdos version of pentix by Marta & Adrian Soncodi (C) 1986 ICE/APP which is considered standard of pentix I've tried to keep this port and the original version as alike as possible in all relevant respects Play Pentix! Andrey Tchoritch http://www.sympad.net/~andy/pentix >How-To-Repeat: >Fix: # 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: # # pentix # pentix/Makefile # pentix/files # pentix/files/md5 # pentix/pkg # pentix/pkg/COMMENT # pentix/pkg/DESCR # pentix/pkg/PLIST # echo c - pentix mkdir -p pentix > /dev/null 2>&1 echo x - pentix/Makefile sed 's/^X//' >pentix/Makefile << 'END-of-pentix/Makefile' X# Ports collection makefile for: pentix X# Version required: 2.4 X# Date created: 19 Sep 2000 X# Whom: andy X# X# $FreeBSD$ X# X XDISTNAME= pentix-2.4 XCATEGORIES= games XMASTER_SITES= http://www.sympad.net/~andy/pentix/ X XMAINTAINER= andy@sympad.net X XMAN1= pentix.1 X X.include END-of-pentix/Makefile echo c - pentix/files mkdir -p pentix/files > /dev/null 2>&1 echo x - pentix/files/md5 sed 's/^X//' >pentix/files/md5 << 'END-of-pentix/files/md5' XMD5 (pentix-2.4.tar.gz) = 1e92e95ddfe8507909779f1a4cb3e476 END-of-pentix/files/md5 echo c - pentix/pkg mkdir -p pentix/pkg > /dev/null 2>&1 echo x - pentix/pkg/COMMENT sed 's/^X//' >pentix/pkg/COMMENT << 'END-of-pentix/pkg/COMMENT' XThis is a game of pentix for terminals END-of-pentix/pkg/COMMENT echo x - pentix/pkg/DESCR sed 's/^X//' >pentix/pkg/DESCR << 'END-of-pentix/pkg/DESCR' XThis is a game of pentix for terminals X Xpentix is one of the various flavours of good old tetris. Xhowever, pentix surpassed its famous parent in playbility X Xthis version of pentix is based on the original msdos version of Xpentix by Marta & Adrian Soncodi (C) 1986 ICE/APP Xwhich is considered standard of pentix X XI've tried to keep this port and the original version as alike as possible Xin all relevant respects X XPlay Pentix! X XAndrey Tchoritch Xhttp://www.sympad.net/~andy/pentix END-of-pentix/pkg/DESCR echo x - pentix/pkg/PLIST sed 's/^X//' >pentix/pkg/PLIST << 'END-of-pentix/pkg/PLIST' Xbin/pentix Xshare/games/pentix/pentix.qtn Xshare/games/pentix/pentix.res Xshare/games/pentix/readme.txt X@dirrm share/games/pentix END-of-pentix/pkg/PLIST exit >Release-Note: >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 Mon Oct 9 11: 0:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDD5437B66D for ; Mon, 9 Oct 2000 11:00:31 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA65672 for freebsd-ports@freebsd.org; Mon, 9 Oct 2000 11:00:30 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 9 Oct 2000 11:00:30 -0700 (PDT) Message-Id: <200010091800.LAA65672@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 [2000/07/13] ports/19888 ports qpopper3 dumps core for APOP authetificat o [2000/09/08] ports/21140 ports Many perl port. Hard to find pearls. o [2000/09/21] ports/21465 ports nmh-1.0.4: multiple simultaneous "inc"s s o [2000/09/21] ports/21466 ports port xpaint-2.5.7 won't make install 4 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/12/21] kern/9163 ports [patch] squid does not join a multicast g f [2000/05/03] ports/18367 ports Staroffice personal dir cannot be on nfs o [2000/06/12] ports/19232 ports port name changed and being updated o [2000/08/03] ports/20392 ports Fixed new port: Perl5 data debugging tool o [2000/08/04] ports/20401 ports lang/erlang skips the build of crypto.app o [2000/08/11] ports/20554 ports java/perltools: New port o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] ports/20581 ports current cdrecord port fails to install s [2000/08/14] ports/20607 ports plugger fails to build o [2000/08/16] ports/20642 ports new port : gigabase-2.14 o [2000/08/16] ports/20668 ports new port: databases/db3 (Berkeley DB rev. o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/20] ports/20727 ports new port: databases/db3 (Berkeley DB revi o [2000/08/21] ports/20759 ports new port: databases/db3 o [2000/08/21] ports/20762 ports o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/25] ports/20850 ports security/portsentry patch o [2000/08/26] ports/20856 ports portsentry o [2000/08/28] ports/20905 ports new port: www/oops o [2000/08/28] ports/20913 ports ports not linking against -ljpeg o [2000/09/04] ports/21055 ports popper3 dumps core o [2000/09/07] ports/21095 ports MASTER_SITES_GNU are semi-broken [PATCH] o [2000/09/08] ports/21116 ports vmware2 does not compile on -current f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/15] ports/21289 ports qpopauth doesn't work(qpopper ports) o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/16] ports/21320 ports ports submission - wmusic o [2000/09/16] ports/21322 ports ports/mbone/rat update to support newpcm o [2000/09/17] ports/21330 ports Update port: mbone/rat for newpcm mixer a o [2000/09/18] ports/21355 ports evg port fails to run - syntax error in a o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/20] ports/21416 ports Patch-ab for port emulators/xmame refer t o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/20] ports/21437 ports port update to correct mail/exmh2 support o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/22] ports/21486 ports fetchmail KPOP does not work o [2000/09/23] ports/21508 ports Re: FIX: devel/pcre to install a working o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/25] ports/21554 ports linux_base-6.1 incorrectly enables NIS by o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 o [2000/10/02] ports/21714 ports audio problem with nil o [2000/10/02] ports/21718 ports XFree86-4 (4.0.1) server does not start f o [2000/10/03] ports/21727 ports port pm3-base-1.1.5 cannot find source co o [2000/10/04] ports/21756 ports errors in Squid-2.3.4's configure prevent o [2000/10/06] ports/21780 ports audio/vorbis should not depend on xmms! o [2000/10/06] ports/21784 ports further improving the PostgreSQL port o [2000/10/08] ports/21835 ports ports/security/pgp problems with new form o [2000/10/08] ports/21851 ports 'make readmes' broken in new ports struct o [2000/10/09] ports/21858 ports www ports interface bug 53 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1999/11/18] ports/14991 ports new port: devel/tcl-trf - Tcl Data transf o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 f [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl a [2000/03/30] ports/17693 ports new port: www/linux-djvuplugin f [2000/05/02] ports/18356 ports /usr/ports/net/pipsecd build fails f [2000/05/15] ports/18582 ports joe can't read @7 termcap capability and f [2000/05/18] ports/18652 ports New port: devel/libnspr a [2000/06/06] ports/19082 ports Can't build editors/aXe-6.1.2 o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo f [2000/07/02] ports/19659 ports erlang port: proposal for updating the mn f [2000/07/11] ports/19854 ports [PATCH] inclusion of full mozart-oz docum o [2000/07/20] ports/20061 ports New Port: Entity - a RAD that work. Its f f [2000/07/25] ports/20170 ports [PATCH] fvwm2-beta update o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/02] ports/20359 ports New port: Apache-mod_perl_guide o [2000/08/05] ports/20435 ports New port: Free EcmaScript Interpreter o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/11] ports/20542 ports New Port: Fugu-0.9.9d (http://gale.org/fu o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20602 ports New Ports: Manipulate / fetch info from M o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po f [2000/08/17] ports/20693 ports Two patches for fxtv o [2000/08/19] ports/20722 ports New port: x11-fonts/jmk-x11-fonts f [2000/08/20] ports/20737 ports audio/cdrdao test for pccts has a LOCALBA f [2000/08/21] ports/20760 ports unfetchable mail for a resource which is o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/25] ports/20837 ports new port: palm/palmpower - disassembler + o [2000/08/26] ports/20880 ports new fvwm2-beta port o [2000/08/27] ports/20885 ports new port request o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20968 ports Remove port: graphics/pnmtopng o [2000/08/31] ports/20975 ports update math/grace f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/20998 ports [PATCH] Enhancements for Xfstt port o [2000/09/02] ports/21003 ports New Port, modification of tcopy a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/07] ports/21097 ports new port: net/xtradius o [2000/09/08] ports/21113 ports New port; voicetronix unified telephony A o [2000/09/10] ports/21168 ports New port: www/apache-contrib f [2000/09/14] ports/21262 ports Fix port: mail/postfix-current o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and o [2000/09/16] ports/21307 ports New ports: dsssl-docbook-cygnus-1.44(text f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/17] ports/21327 ports Initial ports entry for Bayonne IVR serve o [2000/09/18] ports/21341 ports New port: devel/elib-emacs + devel/elib-e f [2000/09/18] ports/21345 ports ports/biology/molden has a checksum error f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/18] ports/21392 ports New port: converters/tnef - Unpack data f o [2000/09/19] ports/21396 ports New port: net/ghtool - cmdline interface o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/19] ports/21411 ports Cyrus-SASL autodetected DB3, but fails to o [2000/09/20] ports/21412 ports New port: net/yaz o [2000/09/20] ports/21413 ports New port: net/zebra-server o [2000/09/20] ports/21414 ports New port: www/mod_zap o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] ports/21439 ports FIX: mail/postfix-current o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/21] ports/21458 ports MASTER_SITES port update games/crossfire o [2000/09/22] ports/21475 ports Port broken: xlockmore 4.17.2 o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/22] ports/21481 ports Update port math/abs o [2000/09/22] ports/21482 ports New port: games/gnurobots o [2000/09/22] ports/21485 ports Update: devel/camlp4 o [2000/09/22] ports/21488 ports New port: bmsync, a bookmark converter o [2000/09/23] ports/21497 ports New addition to ports/ o [2000/09/23] ports/21502 ports Upgrade ports/lang/ghc to version 4.08.1 o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21511 ports Update port: security/pam-mysql o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] ports/21541 ports Replacement for pr 21538 o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/25] ports/21555 ports [PATCH] citrix_ica upgrade to version 6.0 o [2000/09/26] ports/21557 ports New port: MagicCube4D - four-dimensional o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] ports/21564 ports New port: security/sing o [2000/09/26] ports/21573 ports Update port: cad/qcad to 1.4.4 o [2000/09/26] ports/21574 ports Update port: devel/qtez o [2000/09/26] ports/21575 ports Update port: graphics/ImageMagick to 5.2. o [2000/09/26] ports/21576 ports Update port: graphics/gnofract4d to 1.3 o [2000/09/26] ports/21577 ports Update port: graphics/togl o [2000/09/26] ports/21579 ports Update port: graphics/vcg o [2000/09/26] ports/21581 ports Update port: misc/xpns o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/26] ports/21589 ports Update port: www/udmsearch o [2000/09/27] ports/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21597 ports port of WMusic o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/28] ports/21610 ports Update port: databases/sqsh o [2000/09/28] ports/21611 ports Update port: games/gleyes o [2000/09/28] ports/21612 ports Update port: games/xbomber o [2000/09/28] ports/21613 ports Update port: games/xracer o [2000/09/28] ports/21614 ports Update port: graphics/4va o [2000/09/28] ports/21615 ports Update port: print/pdq o [2000/09/28] ports/21616 ports Update port: print/pstotext o [2000/09/28] ports/21617 ports Update port: sysutils/logrotate o [2000/09/28] ports/21618 ports Update port: sysutils/pwgen o [2000/09/28] ports/21619 ports Update port: x11/xkeywrap o [2000/09/28] ports/21620 ports Update port: audio/cd2mp3 o [2000/09/28] ports/21630 ports Update of games/KnightCap to recognize CC o [2000/09/28] ports/21633 ports Updated port: tkrat2 f [2000/09/28] ports/21638 ports Update: games/xlifegame o [2000/09/28] ports/21640 ports Update: games/xeji o [2000/09/28] ports/21641 ports Port update: fetchmail 5.5.3 o [2000/09/29] ports/21648 ports new port: gnometoaster o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] ports/21668 ports Update x11-wm/enlightenment o [2000/10/01] ports/21669 ports MAINTAINER new port: graphics/xine o [2000/10/01] ports/21670 ports MAINTAINER: new port: net/arping o [2000/10/01] ports/21678 ports New port: biology/biojava o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/01] ports/21687 ports rpm port is out-dated (2.5.6 instead of 3 o [2000/10/01] ports/21689 ports Update Port: audio/cdindex to 1.2.0 o [2000/10/02] ports/21691 ports New port: chinese/linux_base o [2000/10/02] ports/21705 ports CSCOPE writes incorrect offset into index o [2000/10/02] ports/21706 ports update libol to 0.2.20 o [2000/10/02] ports/21711 ports New port: unadf - unzip-like tool for .ad o [2000/10/02] ports/21720 ports Update port to use ADNS. o [2000/10/04] ports/21745 ports Update Port: audio/cd2mp3 Latest releas o [2000/10/04] ports/21746 ports Ports update: audio/cd2mp3 Update to cd2 o [2000/10/04] ports/21747 ports Port Update: devel/portlint to allow PORT o [2000/10/04] ports/21749 ports Update port: audio/cd2mp3 Update to cd2m o [2000/10/04] ports/21755 ports update editors/nano to 0.9.19 o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/04] ports/21760 ports New port: py-4Suite-0.9.0 o [2000/10/05] ports/21765 ports I cat't make ports using Message-Id: <200010091821.LAA75404@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21761: Re: errors in Squid-2.3.4's configure prevent ipf configuration Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: errors in Squid-2.3.4's configure prevent ipf configuration Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 9 11:20:33 PDT 2000 Responsible-Changed-Why: orphaned pr http://www.freebsd.org/cgi/query-pr.cgi?pr=21761 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 11:22:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1B5137B66E; Mon, 9 Oct 2000 11:22:22 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75695; Mon, 9 Oct 2000 11:22:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 9 Oct 2000 11:22:22 -0700 (PDT) From: Message-Id: <200010091822.LAA75695@freefall.freebsd.org> To: andreas@klemm.gtn.com, peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21816: Re: further improving the PostgreSQL port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: further improving the PostgreSQL port State-Changed-From-To: open->closed State-Changed-By: peter State-Changed-When: Mon Oct 9 11:21:47 PDT 2000 State-Changed-Why: Not a PR Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 9 11:21:47 PDT 2000 Responsible-Changed-Why: orphaned pr http://www.freebsd.org/cgi/query-pr.cgi?pr=21816 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 11:23: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA0F537B66E; Mon, 9 Oct 2000 11:23:04 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75958; Mon, 9 Oct 2000 11:23:04 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 9 Oct 2000 11:23:04 -0700 (PDT) From: Message-Id: <200010091823.LAA75958@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: bin/21840: more(1) is less(1) and that should be on PicoBSD too Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: more(1) is less(1) and that should be on PicoBSD too New Synopsis: more(1) is less(1) and that should be on PicoBSD too Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 9 11:22:28 PDT 2000 Responsible-Changed-Why: ophaned pr http://www.freebsd.org/cgi/query-pr.cgi?pr=21840 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 11:23:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAA2D37B66D; Mon, 9 Oct 2000 11:23:32 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA76174; Mon, 9 Oct 2000 11:23:32 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 9 Oct 2000 11:23:32 -0700 (PDT) From: Message-Id: <200010091823.LAA76174@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21763: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 9 11:23:13 PDT 2000 Responsible-Changed-Why: orphaned pr http://www.freebsd.org/cgi/query-pr.cgi?pr=21763 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 11:49: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smarthost-1.mail.telinco.net (smarthost-1.mail.telinco.net [212.1.128.90]) by hub.freebsd.org (Postfix) with ESMTP id 1F18137B66D; Mon, 9 Oct 2000 11:49:05 -0700 (PDT) Received: from smtp1.cluster1.telinco.net ([212.1.128.150]) by smarthost-1.mail.telinco.net with esmtp (Exim 3.02 #7) id 13ihyw-000EbB-00; Mon, 09 Oct 2000 19:49:02 +0100 Received: from daemon.lpds.sublink.org (ppp-3-60.cvx2.telinco.net [212.1.142.60]) by smtp1.cluster1.telinco.net (8.9.1a/8.9.1) with ESMTP id TAA16244; Mon, 9 Oct 2000 19:49:01 +0100 (BST) Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id TAA07987; Mon, 9 Oct 2000 19:30:28 +0100 (BST) (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id TAA87307; Mon, 9 Oct 2000 19:34:02 +0100 (BST) (envelope-from wcp) From: "Walter C. Pelissero" Message-ID: <14818.3993.887434.859107@hyde.lpds.sublink.org> Date: Mon, 9 Oct 2000 19:34:01 +0100 (BST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: freebsd-hackers@freebsd.org, freebsd-ports@freebsd.org Subject: xmovie 1.5.2 for FreeBSD X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just recently ported xmovie 1.5.2 to FreeBSD 4.0. The patch file can be found at my home page http://www.pelissero.org. It's rather big (80K) because it can be considered a fix patch for the Linux version as well. Among the other bugs, the code relied on a (sort of) misbehavior of the Linux pthreads implementation (GNU?) that allows a thread to unlock a mutex locked by another thread. I'm working on the CSS code that still doesn't work (I guess it didn't even under Linux). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 11:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F33E37B66C for ; Mon, 9 Oct 2000 11:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA85260; Mon, 9 Oct 2000 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from starbug.ugh.net.au (starbug.ugh.net.au [203.31.238.37]) by hub.freebsd.org (Postfix) with ESMTP id 1B19B37B503 for ; Mon, 9 Oct 2000 11:43:28 -0700 (PDT) Received: by starbug.ugh.net.au (Postfix, from userid 1000) id 4BD94A84A; Tue, 10 Oct 2000 05:43:26 +1100 (EST) Message-Id: <20001009184326.4BD94A84A@starbug.ugh.net.au> Date: Tue, 10 Oct 2000 05:43:26 +1100 (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/21870: New port: perl module for parseing XML config files Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21870 >Category: ports >Synopsis: New port: perl module for parseing XML config files >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: Mon Oct 09 11:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew >Release: FreeBSD 4.1.1-STABLE i386 >Organization: UgH! >Environment: >Description: XML::Simple. A perl module designed for reading XML config files. NOTE: This isn't PREFIX clean but I couldn't find an example of a PREFIX clean perl module port to work out how to do it. >How-To-Repeat: >Fix: # 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: # # p5-XML-Simple # p5-XML-Simple/Makefile # p5-XML-Simple/pkg-comment # p5-XML-Simple/pkg-descr # p5-XML-Simple/pkg-plist # p5-XML-Simple/distinfo # echo c - p5-XML-Simple mkdir -p p5-XML-Simple > /dev/null 2>&1 echo x - p5-XML-Simple/Makefile sed 's/^X//' >p5-XML-Simple/Makefile << 'END-of-p5-XML-Simple/Makefile' X# New ports collection makefile for: p5-XML-Simple X# Date created: October 10th 2000 X# Whom: Andrew X# X# $FreeBSD$ X# X XPORTNAME= XML-Simple XPORTVERSION= 1.05 XCATEGORIES= textproc perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= XML XPKGNAMEPREFIX= p5- X XMAINTAINER= andrew@ugh.net.au X XBUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser X XUSE_PERL5= YES X XMAN3= XML::Simple.3 XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X Xdo-configure: X @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL X X.include END-of-p5-XML-Simple/Makefile echo x - p5-XML-Simple/pkg-comment sed 's/^X//' >p5-XML-Simple/pkg-comment << 'END-of-p5-XML-Simple/pkg-comment' XTrivial API for reading and writing XML (esp config files) END-of-p5-XML-Simple/pkg-comment echo x - p5-XML-Simple/pkg-descr sed 's/^X//' >p5-XML-Simple/pkg-descr << 'END-of-p5-XML-Simple/pkg-descr' XXML::Simple is a Perl module that makes it really easy to read and write XML Xfiles. X XXML::Simple was originally developed for the purpose of reading and writing Xconfig files in XML format (which offers various advantages over say .INI Xformat). Having said that, many people find it useful for other purposes. X XWWW: http://web.co.nz/~grantm/cpan/ X XAndrew Xandrew@ugh.net.au END-of-p5-XML-Simple/pkg-descr echo x - p5-XML-Simple/pkg-plist sed 's/^X//' >p5-XML-Simple/pkg-plist << 'END-of-p5-XML-Simple/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Simple/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/XML/Simple.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Simple X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true END-of-p5-XML-Simple/pkg-plist echo x - p5-XML-Simple/distinfo sed 's/^X//' >p5-XML-Simple/distinfo << 'END-of-p5-XML-Simple/distinfo' XMD5 (XML-Simple-1.05.tar.gz) = 2f003d83da8c87b7025cd22fabd7c8ac END-of-p5-XML-Simple/distinfo exit >Release-Note: >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 Mon Oct 9 12:12:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thelab.hub.org (CDR8-44.accesscable.net [24.138.8.44]) by hub.freebsd.org (Postfix) with ESMTP id 1DC7537B502; Mon, 9 Oct 2000 12:12:51 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.1/8.11.0) with ESMTP id e99JBQG13914; Mon, 9 Oct 2000 16:11:32 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Mon, 9 Oct 2000 16:11:20 -0300 (ADT) From: The Hermit Hacker To: Tom Lane Cc: torstenb@FreeBSD.org, freebsd-ports@FreeBSD.org, PostgreSQL Development Subject: Re: [HACKERS] Autoconf version discrepancies In-Reply-To: <21191.971058005@sss.pgh.pa.us> 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, 8 Oct 2000, Tom Lane wrote: > Bruce Momjian writes: > >> The patches ad, ae, and af will cause configure to fail on machines > >> without mktemp. It's not like things get "screwed up" for me, but the > >> point of Autoconf is portability to *all* machines, so FreeBSD-specific > >> changes/optimizations(?) seem misplaced. > > > Are there any platforms that do not have mktemp? Hard to imagine. > > Not hard at all, considering that mktemp(1) is defined by no standard > according to the references I have handy. > > More generally, I have to side with Peter on this: local patches to > Autoconf are a fine example of Missing The Point. The output script > has to run everywhere, not only on your own platform. > > Also, we not long ago went through the exercise of making sure that all > committers were standardized on the same version of Autoconf, ie, 2.13. > Now it emerges that hub.org is running a NON STANDARD version of > Autoconf: 2.13 + unspecified BSD-originated hacks. So the output is > likely to change depending on who committed last and where they did it > from. Take a look at the patches that I pointed Peter at for these "Unspecified" patches. The ones that Peter points out merely change from using .$$ to stipulate the temp file name to using 'mktemp' ... Now, what I'd be curious about is what platforms this does break things on, cause if it does, it kinda makes using FreeBSD's autoconf difficult for non-FreeBSD developments, about as difficult as some of the Linux-centric ones that we try to port to FreeBSD ... Basically, what benefits are there to using 'mktemp' over using the shell based '.$$', and do those developing software under *BSD then break themselves for other platforms as a result (or force other platforms to run autoconf to build)? If using mktemp doesn't break any platform, this is a moot point ... if it does, then I think it is something that *has* to be fix in the FreeBSD port itself so that it doesn't make us look FreeBSD-centric in our development efforts on any other package ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 13:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5542C37B66C for ; Mon, 9 Oct 2000 13:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA19431; Mon, 9 Oct 2000 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 80B0337B66C for ; Mon, 9 Oct 2000 13:17:24 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e99KGMY11652 for ; Mon, 9 Oct 2000 22:16:22 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e99KFwL25840; Mon, 9 Oct 2000 22:15:58 +0200 (CEST) (envelope-from dm) Message-Id: <200010092015.e99KFwL25840@home.dinoex.sub.org> Date: Mon, 9 Oct 2000 22:15:58 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21871: Fix news/ifmail (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21871 >Category: ports >Synopsis: Fix news/ifmail (by maintainer) >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: Mon Oct 09 13:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: >Description: One of the Mastersites need to be removed. >How-To-Repeat: >Fix: Apply this patch diff ifmail/Makefile ifmail-2.15-dinoex/Makefile --- ifmail/Makefile Tue Apr 25 09:26:49 2000 +++ ifmail-2.15-dinoex/Makefile Fri Jul 7 21:52:23 2000 @@ -9,8 +9,7 @@ PORTVERSION= 2.15 CATEGORIES= news MASTER_SITES= ${MASTER_SITE_SUNSITE} \ - ftp://ftp.average.org/ifmail/ \ - ftp://ftp.lan-ks.de/pub/approved/ + ftp://ftp.average.org/ifmail/ MASTER_SITE_SUBDIR= system/fido MAINTAINER= dirk.meyer@dinoex.sub.org >Release-Note: >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 Mon Oct 9 13:30: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A9FD37B503 for ; Mon, 9 Oct 2000 13:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA22804; Mon, 9 Oct 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id EF0BA37B66C for ; Mon, 9 Oct 2000 13:23:13 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e99KMMY12654 for ; Mon, 9 Oct 2000 22:22:22 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e99KLcR26084; Mon, 9 Oct 2000 22:21:38 +0200 (CEST) (envelope-from dm) Message-Id: <200010092021.e99KLcR26084@home.dinoex.sub.org> Date: Mon, 9 Oct 2000 22:21:38 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21872: Fix net/crescendo (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21872 >Category: ports >Synopsis: Fix net/crescendo (by maintainer) >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: Mon Oct 09 13:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 3.4-STABLE i386 >Organization: privat >Environment: tinyfuge, gnomelibs A gnome frontend for tinyfuge >Description: Dependency seem to strong. >How-To-Repeat: >Fix: apply this patch. diff crescendo/Makefile crescendo-1.1.6/Makefile --- crescendo/Makefile Sun Oct 8 10:35:23 2000 +++ crescendo-1.1.6/Makefile Sun Oct 8 21:02:23 2000 @@ -15,9 +15,9 @@ USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= yes USE_LIBTOOL= yes -CONFIGURE_ARGS= --enable-compile-warnings=yes +USE_GNOMELIBS= yes +CONFIGURE_ARGS+= --enable-compile-warnings=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CFLAGS+= -g >Release-Note: >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 Mon Oct 9 13:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 878BA37B502 for ; Mon, 9 Oct 2000 13:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA22813; Mon, 9 Oct 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 1510937B503 for ; Mon, 9 Oct 2000 13:23:23 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e99KMNY12656 for ; Mon, 9 Oct 2000 22:22:23 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e99KJOl25960; Mon, 9 Oct 2000 22:19:24 +0200 (CEST) (envelope-from dm) Message-Id: <200010092019.e99KJOl25960@home.dinoex.sub.org> Date: Mon, 9 Oct 2000 22:19:24 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21873: Fix news/c-nocem (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21873 >Category: ports >Synopsis: Fix news/c-nocem (by maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 09 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: cnews Installed. C-nocem is a fast filter to remove spam. >Description: Patch is not enough, as the configuration in not fully written. Fixed and source specified, so unnessary extraction is not needed. >How-To-Repeat: >Fix: apply this patch diff c-nocem/Makefile c-nocem-3.6/Makefile --- c-nocem/Makefile Mon Aug 14 11:42:41 2000 +++ c-nocem-3.6/Makefile Mon Oct 9 22:12:03 2000 @@ -12,7 +12,7 @@ MAINTAINER= dirk.meyer@dinoex.sub.org -BUILD_DEPENDS= /nonexistent:${PORTSDIR}/news/cnews:patch +BUILD_DEPENDS= ${WRKDIRPREFIX}${PORTSDIR}/news/cnews/work/conf/substitutions:${PORTSDIR}/news/cnews:configure WRKSRC= ${WRKDIR}/c-nocem USE_GMAKE= yes >Release-Note: >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 Mon Oct 9 13:30:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95F7D37B66C for ; Mon, 9 Oct 2000 13:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA22826; Mon, 9 Oct 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 84F2C37B503 for ; Mon, 9 Oct 2000 13:29:15 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e99KSMY14231 for ; Mon, 9 Oct 2000 22:28:22 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e99KQEu26310; Mon, 9 Oct 2000 22:26:14 +0200 (CEST) (envelope-from dm) Message-Id: <200010092026.e99KQEu26310@home.dinoex.sub.org> Date: Mon, 9 Oct 2000 22:26:14 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21874: Fix news/cnews (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21874 >Category: ports >Synopsis: Fix news/cnews (by maintainer) >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: Mon Oct 09 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: >Description: Change in MASTER_SITES Owner for binaries now from shake/mk/* Owner for initial configuration must be news Small message extended. >How-To-Repeat: >Fix: apply the patch diff cnews/Makefile cnews-cr.g/Makefile --- cnews/Makefile Mon Aug 14 11:42:42 2000 +++ cnews-cr.g/Makefile Sun Oct 8 22:18:55 2000 @@ -9,11 +9,9 @@ PORTVERSION= cr.g CATEGORIES= news MASTER_SITES= ftp://ftp.cs.toronto.edu/pub/c-news/ \ - ftp://ftp.lan-ks.de/pub/c-news/ \ ftp://ftp.funet.fi/pub/unix/news/cnews/ \ ftp://ftp.win.or.jp/pub/network/news/cnews/ \ ftp://ftp.redcom.ru/pub/unix/usenet/c-news/ \ - ftp://ftp.mc.hik.se/pub/unix/news/c-news/ \ ftp://ftp.dinoex.org/pub/c-news/ DISTNAME= c-news EXTRACT_SUFX= .tar.Z @@ -91,17 +89,16 @@ ${RM} -f ${PREFIX}/bin/inews ${INSTALL_DATA} ${WRKSRC}/libdbz/dbz.h ${PREFIX}/include ${INSTALL_DATA} ${WRKSRC}/libcnews.a ${PREFIX}/lib - ${MKDIR} ${NEWSARTS} ${NEWSBIN} ${NEWSCTL} - -${LN} -s ${NEWSARTS} /var/news - ${CHOWN} news.news ${NEWSARTS} ${NEWSCTL} - ${CHOWN} bin.bin ${NEWSBIN} + ${MKDIR} ${NEWSARTS} ${NEWSOV} ${NEWSBIN} ${NEWSCTL} + ${CHOWN} ${BINOWN}.${BINGRP} ${NEWSBIN} ${INSTALL_SCRIPT} ${WRKSRC}/${PGPVERIFY} ${NEWSBIN}/pgpverify cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} setup cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ui readpostcheck .for f in checknews cnewsdo inews injnews postnews readnews - ${CHOWN} bin.bin ${PREFIX}/bin/$f + ${CHOWN} ${BINOWN}.${BINGRP} ${PREFIX}/bin/$f .endfor + ${CHOWN} -R news.news ${NEWSARTS} ${NEWSOV} ${NEWSCTL} ${CHOWN} news.news ${NEWSBIN}/input/newsspool ${CHMOD} 6755 ${NEWSBIN}/input/newsspool .for i in ${MAN1} @@ -119,6 +116,8 @@ @${ECHO} " cd to ${NEWSCTL} and change the following files..." @${ECHO} "mailname, whoami, organization, mailpaths, sys, readnews.ctl, postdefltgroup" @${ECHO} " to suit your local system and news topology." + @${ECHO} "check that you have vaild aliases in report.ctl," + @${ECHO} " so any problem can be reported." @${ECHO} "!!!!!!!!" @${ECHO} "" >Release-Note: >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 Mon Oct 9 13:40:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0E7737B66C for ; Mon, 9 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA26135; Mon, 9 Oct 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 0E24D37B66C for ; Mon, 9 Oct 2000 13:39:54 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e99KcRY15952 for ; Mon, 9 Oct 2000 22:38:27 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e99KbtA27159; Mon, 9 Oct 2000 22:37:55 +0200 (CEST) (envelope-from dm) Message-Id: <200010092037.e99KbtA27159@home.dinoex.sub.org> Date: Mon, 9 Oct 2000 22:37:55 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21875: Update german/webalizer (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21875 >Category: ports >Synopsis: Update german/webalizer (by maintainer) >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: Mon Oct 09 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: gd-lib, apache >Description: generates statistics in HTML output, for Apache web server. >How-To-Repeat: New Release is out. Please keep german/webalizer2 for future updates. >Fix: delete all patches and scripts!! apply this extra patch. diff webalizer/Makefile de-webalizer-2.1.5/Makefile --- webalizer/Makefile Tue Sep 5 08:35:47 2000 +++ de-webalizer-2.1.5/Makefile Mon Oct 9 22:31:13 2000 @@ -5,52 +5,65 @@ # $FreeBSD: ports/german/webalizer/Makefile,v 1.16 2000/09/05 02:12:33 steve Exp $ PORTNAME= webalizer -PORTVERSION= 1.30.4 +PORTVERSION= 2.1.5 CATEGORIES= german www MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/ \ ftp://ftp.lan-ks.de/pub/FreeBSD/distfiles/ -DISTNAME= ${PORTNAME}-1.30-04-src -EXTRACT_SUFX= .tgz +PKGNAMEPREFIX?= de- +DISTNAME= ${PORTNAME}-2.01-05-src MAINTAINER= dirk.meyer@dinoex.sub.org LIB_DEPENDS= gd.1:${PORTSDIR}/graphics/gd -WEBALIZER_LANG?= german +USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-gdlib=${PREFIX}/lib \ +WEBALIZER_LANG?= german + +.include + +CONFIGURE_ARGS+= --enable-dns \ + --with-etcdir=${PREFIX}/etc \ + --with-gdlib=${PREFIX}/lib \ --with-gd=${PREFIX}/include/gd \ --with-language=${WEBALIZER_LANG} CONFIGURE_ENV+= LDFLAGS="-L${PREFIX}/lib" -BIN1= de-webalizer -MAN1= de-webalizer.1 +MAKE_ARGS+= CFLAGS="${CFLAGS}" +MAN1= ${PKGNAMEPREFIX}webalizer.1 DOC1= CHANGES COPYING Copyright INSTALL \ - README country-codes.txt webalizer.LSM + README README.FIRST DNS.README country-codes.txt WRKSRC= ${WRKDIR}/${DISTNAME:S/-src$//} +PLIST_SUB+= PKGNAMEPREFIX=${PKGNAMEPREFIX} pre-configure: - @${PERL5} -pi -e "s=/etc=${PREFIX}/etc=" ${WRKSRC}/webalizer.c + @${PERL5} -pi -e "s=webalizer.conf=${PKGNAMEPREFIX}webalizer.conf=" \ + ${WRKSRC}/webalizer.c do-install: -.for i in ${BIN1} - @${INSTALL_SCRIPT} ${WRKSRC}/webalizer ${PREFIX}/bin/${i} -.endfor + @${INSTALL_PROGRAM} ${WRKSRC}/webalizer \ + ${PREFIX}/bin/${PKGNAMEPREFIX}webalizer + ${LN} -sf ${PKGNAMEPREFIX}webalizer \ + ${PREFIX}/bin/${PKGNAMEPREFIX}webazolver post-install: - ${INSTALL_MAN} ${WRKSRC}/webalizer.1 ${PREFIX}/man/man1/de-webalizer.1 +.for i in ${MAN1} + ${INSTALL_MAN} ${WRKSRC}/webalizer.1 ${PREFIX}/man/man1/${i} +.endfor .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/de-webalizer + ${MKDIR} ${PREFIX}/share/doc/${PKGNAMEPREFIX}webalizer .for i in ${DOC1} - @${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/de-webalizer/${i} + @${INSTALL_DATA} ${WRKSRC}/${i} \ + ${PREFIX}/share/doc/${PKGNAMEPREFIX}webalizer/${i} .endfor .endif - ${MKDIR} ${PREFIX}/share/examples/de-webalizer -.for i in msfree.gif sample.conf webalizer.gif - @${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/examples/de-webalizer/${i} + ${MKDIR} ${PREFIX}/share/examples/${PKGNAMEPREFIX}webalizer +.for i in msfree.png sample.conf webalizer.png + @${INSTALL_DATA} ${WRKSRC}/${i} \ + ${PREFIX}/share/examples/${PKGNAMEPREFIX}webalizer/${i} .endfor - @if [ ! -f ${PREFIX}/etc/de-webalizer.conf-dist ]; then \ + @if [ ! -f ${PREFIX}/etc/${PKGNAMEPREFIX}webalizer.conf-dist ]; then \ ${INSTALL_DATA} ${WRKSRC}/sample.conf \ - ${PREFIX}/etc/de-webalizer.conf-dist ; \ + ${PREFIX}/etc/${PKGNAMEPREFIX}webalizer.conf-dist ; \ fi -.include +.include diff webalizer/distinfo de-webalizer-2.1.5/distinfo --- webalizer/distinfo Mon Sep 27 04:47:08 1999 +++ de-webalizer-2.1.5/distinfo Sat Oct 7 15:41:50 2000 @@ -1 +1 @@ -MD5 (webalizer-1.30-04-src.tgz) = f151b5e811bcdaa4ba72bca447f5cd44 +MD5 (webalizer-2.01-05-src.tar.bz2) = ab45bc2c7893c00370a1fcbd9b71232e diff webalizer/pkg-descr de-webalizer-2.1.5/pkg-descr --- webalizer/pkg-descr Mon May 3 08:17:22 1999 +++ de-webalizer-2.1.5/pkg-descr Tue Apr 18 20:11:23 2000 @@ -1,22 +1,23 @@ What is The Webalizer? ---------------------- -The Webalizer is a web server log file analysis program which produces -usage statistics in HTML format for viewing with a browser. The results -are presented in both columnar and graphical format, which facilitates -interpretation. Yearly, monthly, daily and hourly usage statistics are -presented, along with the ability to display usage by site, URL, referrer, -user agent (browser) and country (user agent and referrer are only -available if your web server procduces Combined log format files). - -The Webalizer supports CLF (common log format) log files, as well as -Combined log formats as defined by NCSA and others, and variations -of these which it attempts to handle intelligently. +A fast, free web server log file analysis program. Produces +HTML output for viewing with a web browser. Written in C on +a Linux platform, however designed to be as ANSI/POSIX +compliant as possible so porting to other UNIX platforms should +be painless. Binary distributions for most popular platforms +are available. Features multiple language support, incremental +processing capabilities, reverse DNS lookup support, export via +tab seperated ascii files to popular databases and spreadsheets, +and much more. Supports standard CLF and combined logs, as well +as wu-ftpd xferlog and squid proxy logs, which can be either in +standard text format or gzip compressed. Keywords: Web Analysis, Log Analysis, Usage Statistics, Linux, Unix Author: Bradford L. Barrett Maintained-by: Bradford L. Barrett WWW: http://www.mrunix.net/webalizer/ +Alternate-site:http://samhain.unix.cslab.tuwien.ac.at/webalizer/ FTP: ftp://www.mrunix.net/pub/webalizer/ Platforms: Linux, SCO, other UNIX's Copying-policy: GPL diff webalizer/pkg-plist de-webalizer-2.1.5/pkg-plist --- webalizer/pkg-plist Wed Mar 31 17:17:31 1999 +++ de-webalizer-2.1.5/pkg-plist Tue May 16 19:51:12 2000 @@ -1,14 +1,16 @@ -bin/de-webalizer -etc/de-webalizer.conf-dist -share/doc/de-webalizer/CHANGES -share/doc/de-webalizer/COPYING -share/doc/de-webalizer/Copyright -share/doc/de-webalizer/INSTALL -share/doc/de-webalizer/README -share/doc/de-webalizer/country-codes.txt -share/doc/de-webalizer/webalizer.LSM -@dirrm share/doc/de-webalizer -share/examples/de-webalizer/msfree.gif -share/examples/de-webalizer/sample.conf -share/examples/de-webalizer/webalizer.gif -@dirrm share/examples/de-webalizer +bin/%%PKGNAMEPREFIX%%webalizer +@unexec rm -f %B/%%PKGNAMEPREFIX%%webazolver +etc/%%PKGNAMEPREFIX%%webalizer.conf-dist +share/doc/%%PKGNAMEPREFIX%%webalizer/CHANGES +share/doc/%%PKGNAMEPREFIX%%webalizer/COPYING +share/doc/%%PKGNAMEPREFIX%%webalizer/Copyright +share/doc/%%PKGNAMEPREFIX%%webalizer/DNS.README +share/doc/%%PKGNAMEPREFIX%%webalizer/INSTALL +share/doc/%%PKGNAMEPREFIX%%webalizer/README +share/doc/%%PKGNAMEPREFIX%%webalizer/README.FIRST +share/doc/%%PKGNAMEPREFIX%%webalizer/country-codes.txt +@dirrm share/doc/%%PKGNAMEPREFIX%%webalizer +share/examples/%%PKGNAMEPREFIX%%webalizer/msfree.png +share/examples/%%PKGNAMEPREFIX%%webalizer/sample.conf +share/examples/%%PKGNAMEPREFIX%%webalizer/webalizer.png +@dirrm share/examples/%%PKGNAMEPREFIX%%webalizer diff webalizer/scripts/pre-configure de-webalizer-2.1.5/scripts/pre-configure --- webalizer/scripts/pre-configure Sat Oct 2 06:00:58 1999 +++ de-webalizer-2.1.5/scripts/pre-configure Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ -#! /bin/sh - -# -# $FreeBSD: ports/german/webalizer/scripts/pre-configure,v 1.2 1999/08/29 11:29:46 peter Exp $ -# - -# only one central config file in $PREFIX/etc -# -andreas - -perl -pi -e "s=!!PREFIX!!=$PREFIX=" ${WRKSRC}/webalizer.c >Release-Note: >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 Mon Oct 9 13:40:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0A6737B66E for ; Mon, 9 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA26144; Mon, 9 Oct 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 7E13137B66C for ; Mon, 9 Oct 2000 13:39:57 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e99KcSY15954 for ; Mon, 9 Oct 2000 22:38:28 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e99Kc2Q27268; Mon, 9 Oct 2000 22:38:02 +0200 (CEST) (envelope-from dm) Message-Id: <200010092038.e99Kc2Q27268@home.dinoex.sub.org> Date: Mon, 9 Oct 2000 22:38:02 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21876: Update www/webalizer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21876 >Category: ports >Synopsis: Update www/webalizer >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: Mon Oct 09 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: gd-lib, apache >Description: generates statistics in HTML output, for Apache web server. >How-To-Repeat: New Release is out. >Fix: apply this extra patch. diff webalizer/Makefile webalizer-2.1.5/Makefile --- webalizer/Makefile Wed Aug 30 06:18:33 2000 +++ webalizer-2.1.5/Makefile Mon Oct 9 22:30:28 2000 @@ -6,34 +6,36 @@ # PORTNAME= webalizer -PORTVERSION= 1.30.4 +PORTVERSION= 2.1.5 CATEGORIES= www MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/ \ ftp://ftp.lan-ks.de/pub/FreeBSD/distfiles/ -DISTNAME= ${PORTNAME}-1.30-04-src -EXTRACT_SUFX= .tgz +DISTNAME= ${PORTNAME}-2.01-05-src MAINTAINER= dirk.meyer@dinoex.sub.org LIB_DEPENDS= gd.1:${PORTSDIR}/graphics/gd +USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-gdlib=${PREFIX}/lib \ +CONFIGURE_ARGS+= --enable-dns \ + --with-etcdir=${PREFIX}/etc \ + --with-gdlib=${PREFIX}/lib \ --with-gd=${PREFIX}/include/gd CONFIGURE_ENV+= LDFLAGS="-L${PREFIX}/lib" -BIN1= webalizer MAN1= webalizer.1 DOC1= CHANGES COPYING Copyright INSTALL \ - README country-codes.txt webalizer.LSM -SUPP_LANG= catalan chinese czech dutch english french \ - german italian korean polish portuguese \ - portuguese_brazil romanian russain slowak \ - spanish swedish + README README.FIRST DNS.README country-codes.txt +SUPP_LANG= catalan chinese czech danish dutch english estonian \ + finnish french german greek hungarian indonesian \ + italian korean polish portuguese portuguese_brazil \ + romanian russain slowak slovene spanish swedish turkish WRKSRC= ${WRKDIR}/${DISTNAME:S/-src$//} MAKE_ARGS+= CFLAGS="${CFLAGS}" .if defined(BATCH) +# no cosmetique spaces allowed WEBALIZER_LANG=english .endif @@ -42,18 +44,16 @@ .endif pre-configure: - @${PERL5} -pi -e "s=/etc=${PREFIX}/etc=" ${WRKSRC}/webalizer.c .if !defined(WEBALIZER_LANG) @${ECHO_MSG} "You can customize the language by typing" -.for i in ${SUPP_LANG} - @${ECHO_MSG} "make WEBALIZER_LANG=${i}" -.endfor + @${ECHO_MSG} " make WEBALIZER_LANG=" + @${ECHO_MSG} "where is one of:" + @${ECHO_MSG} ${SUPP_LANG} .endif do-install: -.for i in ${BIN1} - @${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin/${i} -.endfor + ${INSTALL_PROGRAM} ${WRKSRC}/webalizer ${PREFIX}/bin + ${LN} -sf webalizer ${PREFIX}/bin/webazolver post-install: .for i in ${MAN1} @@ -66,7 +66,7 @@ .endfor .endif ${MKDIR} ${PREFIX}/share/examples/webalizer -.for i in msfree.gif sample.conf webalizer.gif +.for i in msfree.png sample.conf webalizer.png @${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/examples/webalizer/${i} .endfor @if [ ! -f ${PREFIX}/etc/webalizer.conf-dist ]; then \ diff webalizer/distinfo webalizer-2.1.5/distinfo --- webalizer/distinfo Sun Aug 1 22:30:05 1999 +++ webalizer-2.1.5/distinfo Sat Oct 7 15:39:01 2000 @@ -1 +1 @@ -MD5 (webalizer-1.30-04-src.tgz) = f151b5e811bcdaa4ba72bca447f5cd44 +MD5 (webalizer-2.01-05-src.tar.bz2) = ab45bc2c7893c00370a1fcbd9b71232e diff webalizer/files/patch-ad webalizer-2.1.5/files/patch-ad --- webalizer/files/patch-ad Sun Aug 1 22:30:09 1999 +++ webalizer-2.1.5/files/patch-ad Thu Jan 1 01:00:00 1970 @@ -1,38 +0,0 @@ ---- graphs.c.orig Tue Jun 15 06:33:40 1999 -+++ graphs.c Sat Jul 31 10:43:48 1999 -@@ -285,7 +285,7 @@ - /* save gif image */ - if ((out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ -@@ -501,7 +501,7 @@ - /* open file for writing */ - if ((out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ -@@ -614,7 +614,7 @@ - /* save as gif file */ - if ( (out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ -@@ -700,7 +700,7 @@ - /* save gif image */ - if ((out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ diff webalizer/files/patch-ae webalizer-2.1.5/files/patch-ae --- webalizer/files/patch-ae Mon Nov 1 01:58:48 1999 +++ webalizer-2.1.5/files/patch-ae Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- configure.orig Wed Oct 27 18:18:41 1999 -+++ configure Wed Oct 27 18:18:52 1999 -@@ -1054,7 +1054,7 @@ - fi - if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 -- LIBS="-lgd ${LIBS}"; HAVE_LIBGD="yes" -+ LIBS="-lgd -lpng ${LIBS}"; HAVE_LIBGD="yes" - else - echo "$ac_t""no" 1>&6 - HAVE_LIBGD="" diff webalizer/files/patch-af webalizer-2.1.5/files/patch-af --- webalizer/files/patch-af Tue May 30 00:29:22 2000 +++ webalizer-2.1.5/files/patch-af Thu Jan 1 01:00:00 1970 @@ -1,40 +0,0 @@ ---- webalizer.c.orig Sun Jul 11 19:36:10 1999 -+++ webalizer.c Mon May 29 21:42:53 2000 -@@ -1981,8 +1981,8 @@ - - /* fill in filenames */ - sprintf(html_fname,"usage_%04d%02d.%s",cur_year,cur_month,html_ext); -- sprintf(gif1_fname,"daily_usage_%04d%02d.gif",cur_year,cur_month); -- sprintf(gif2_fname,"hourly_usage_%04d%02d.gif",cur_year,cur_month); -+ sprintf(gif1_fname,"daily_usage_%04d%02d.png",cur_year,cur_month); -+ sprintf(gif2_fname,"hourly_usage_%04d%02d.png",cur_year,cur_month); - - /* create GIF images for web page */ - sprintf(dtitle,"%s %s %d",msg_hmth_du,l_month[cur_month-1],cur_year); -@@ -3125,7 +3125,7 @@ - pie_legend[i]=top_ctrys[i]->desc; - } - sprintf(pie_title,"%s %s %d",msg_ctry_use,l_month[cur_month-1],cur_year); -- sprintf(pie_fname,"ctry_usage_%04d%02d.gif",cur_year,cur_month); -+ sprintf(pie_fname,"ctry_usage_%04d%02d.png",cur_year,cur_month); - - pie_chart(pie_fname,pie_title,t_hit,pie_data,pie_legend); /* do it */ - -@@ -3213,7 +3213,7 @@ - - i=(s_mth==12)?1:s_mth+1; - -- year_graph6x( "usage.gif", /* filename */ -+ year_graph6x( "usage.png", /* filename */ - buffer, /* graph title */ - i, /* last month */ - hist_hit, /* data set 1 */ -@@ -3234,7 +3234,7 @@ - } - write_html_head(msg_main_per); - /* year graph */ -- fprintf(out_fp,"\"%s\"

\n",buffer); - /* month table */ - fprintf(out_fp,"\n"); diff webalizer/pkg-descr webalizer-2.1.5/pkg-descr --- webalizer/pkg-descr Thu Jun 10 10:15:24 1999 +++ webalizer-2.1.5/pkg-descr Tue Apr 18 20:11:23 2000 @@ -1,22 +1,23 @@ What is The Webalizer? ---------------------- -The Webalizer is a web server log file analysis program which produces -usage statistics in HTML format for viewing with a browser. The results -are presented in both columnar and graphical format, which facilitates -interpretation. Yearly, monthly, daily and hourly usage statistics are -presented, along with the ability to display usage by site, URL, referrer, -user agent (browser) and country (user agent and referrer are only -available if your web server procduces Combined log format files). - -The Webalizer supports CLF (common log format) log files, as well as -Combined log formats as defined by NCSA and others, and variations -of these which it attempts to handle intelligently. +A fast, free web server log file analysis program. Produces +HTML output for viewing with a web browser. Written in C on +a Linux platform, however designed to be as ANSI/POSIX +compliant as possible so porting to other UNIX platforms should +be painless. Binary distributions for most popular platforms +are available. Features multiple language support, incremental +processing capabilities, reverse DNS lookup support, export via +tab seperated ascii files to popular databases and spreadsheets, +and much more. Supports standard CLF and combined logs, as well +as wu-ftpd xferlog and squid proxy logs, which can be either in +standard text format or gzip compressed. Keywords: Web Analysis, Log Analysis, Usage Statistics, Linux, Unix Author: Bradford L. Barrett Maintained-by: Bradford L. Barrett WWW: http://www.mrunix.net/webalizer/ +Alternate-site:http://samhain.unix.cslab.tuwien.ac.at/webalizer/ FTP: ftp://www.mrunix.net/pub/webalizer/ Platforms: Linux, SCO, other UNIX's Copying-policy: GPL diff webalizer/pkg-plist webalizer-2.1.5/pkg-plist --- webalizer/pkg-plist Wed Mar 31 17:15:24 1999 +++ webalizer-2.1.5/pkg-plist Tue May 16 19:20:20 2000 @@ -1,14 +1,16 @@ bin/webalizer +@unexec rm -f %B/webazolver etc/webalizer.conf-dist share/doc/webalizer/CHANGES share/doc/webalizer/COPYING share/doc/webalizer/Copyright share/doc/webalizer/INSTALL +share/doc/webalizer/DNS.README share/doc/webalizer/README +share/doc/webalizer/README.FIRST share/doc/webalizer/country-codes.txt -share/doc/webalizer/webalizer.LSM @dirrm share/doc/webalizer -share/examples/webalizer/msfree.gif +share/examples/webalizer/msfree.png share/examples/webalizer/sample.conf -share/examples/webalizer/webalizer.gif +share/examples/webalizer/webalizer.png @dirrm share/examples/webalizer >Release-Note: >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 Mon Oct 9 14:33:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id BB9E337B502; Mon, 9 Oct 2000 14:33:46 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id RAA04160; Mon, 9 Oct 2000 17:33:40 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e99LXZa94937; Mon, 9 Oct 2000 14:33:35 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Mon, 9 Oct 2000 14:33:35 -0700 (PDT) Message-Id: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: reg@freebsd.org, ade@freebsd.org Cc: ports@freebsd.org Subject: share/locale From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, It might be a figment of my imagination but there seem to be some ports that are leaving the share/locale directory behind after the bsd.gnome.mk change. http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.20001008/windowmaker-0.62.1.log http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.20001008/freeciv-1.11.4.log I found this while looking at ports that didn't build in the most recent (post-new-order) run while they did in the 09/29 run. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 14:38:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id CFA3A37B503; Mon, 9 Oct 2000 14:38:19 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id RAA01579; Mon, 9 Oct 2000 17:38:10 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e99Lc6S94973; Mon, 9 Oct 2000 14:38:06 -0700 (PDT) (envelope-from asami) To: reg@freebsd.org Cc: ade@freebsd.org, ports@freebsd.org Subject: Re: share/locale References: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 14:38:03 -0700 In-Reply-To: asami@freebsd.org's message of "Mon, 9 Oct 2000 14:33:35 -0700 (PDT)" Message-ID: Lines: 23 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oops, found another one -- this one's share/help. http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/gnotepad+-1.3.0.log Satoshi ------- Date: Mon, 9 Oct 2000 14:33:35 -0700 (PDT) From: asami@freebsd.org (Satoshi Asami) Hi, It might be a figment of my imagination but there seem to be some ports that are leaving the share/locale directory behind after the bsd.gnome.mk change. http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.20001008/windowmaker-0.62.1.log http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.20001008/freeciv-1.11.4.log I found this while looking at ports that didn't build in the most recent (post-new-order) run while they did in the 09/29 run. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 14:40:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 0E9E637B66C; Mon, 9 Oct 2000 14:40:26 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id RAA18775; Mon, 9 Oct 2000 17:40:22 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e99LeK894992; Mon, 9 Oct 2000 14:40:20 -0700 (PDT) (envelope-from asami) To: reg@freebsd.org Cc: ade@freebsd.org, ports@freebsd.org Subject: Re: share/locale References: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) In-Reply-To: asami@freebsd.org's message of "Mon, 9 Oct 2000 14:33:35 -0700 (PDT)" X-Mailer: Gnus v5.7/Emacs 20.7 Date: 09 Oct 2000 14:40:15 -0700 Message-ID: Lines: 6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Not sure if it's related, but this one's failing in pkg_create trying to find a bunch of gnome stuff. http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/screem-0.3.0.log Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 14:51:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id B78C537B66C; Mon, 9 Oct 2000 14:51:37 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id RAA30551; Mon, 9 Oct 2000 17:51:17 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e99LokA95039; Mon, 9 Oct 2000 14:50:46 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Mon, 9 Oct 2000 14:50:46 -0700 (PDT) Message-Id: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: leeym@bsd.ce.ntu.edu.tw, knu@freebsd.org Cc: kevlo@freebsd.org, ade@freebsd.org, reg@freebsd.org, ports@freebsd.org Subject: New order check done From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I finished checking all ports that failed in the recent run that used to build in the 09/29 run. I've either fixed (see recent commits) or found out what's wrong (like make checksum failing because author updated the distfile) for most of them, but I can't figure out the following two. The ports are chinese/telnet and x11-toolkits/ruby-gtk. http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/ruby-gtk-0.23.log http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/zh-telnet-1.0.log I have already made one change to zh-telnet to at least give it a fighting chance (it had a WRKDIR violation) but it's still not very close. zh-telnet has been touched by someone other than me since the 09/29 run so that might be the reason. ruby-gtk, on the other hand, is either my fault or bsd.gnome.mk's. :> Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 15:21:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id DD13437B503; Mon, 9 Oct 2000 15:21:47 -0700 (PDT) Received: from localhost (bsdx@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id SAA12675; Mon, 9 Oct 2000 18:22:14 -0400 (EDT) (envelope-from bsdx@looksharp.net) Date: Mon, 9 Oct 2000 18:22:13 -0400 (EDT) From: Adam To: freebsd-gnats-submit@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21159: gcombust port simple upgrade In-Reply-To: <200009100650.XAA99581@freefall.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 I just remembered that I forgot to say that I checked the installed files newer than .build_done against the existing PLIST and it needs no changes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 15:22:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from inf.ufsc.br (euryale.inf.ufsc.br [150.162.60.23]) by hub.freebsd.org (Postfix) with ESMTP id D7DDF37B66C for ; Mon, 9 Oct 2000 15:22:33 -0700 (PDT) Received: from venus (venus [150.162.60.1]) by inf.ufsc.br (8.9.3/8.9.3) with ESMTP id UAA23510 for ; Mon, 9 Oct 2000 20:26:16 -0300 Date: Mon, 9 Oct 2000 20:26:13 -0300 (EST) From: Antonio Carlos Venancio Junior X-Sender: antonio@venus To: freebsd-ports@freebsd.org Subject: subscribe 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 16:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 273BC37B66D for ; Mon, 9 Oct 2000 16:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA98093; Mon, 9 Oct 2000 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 175FC37B66C; Mon, 9 Oct 2000 16:47:29 -0700 (PDT) Message-Id: <20001009234729.175FC37B66C@hub.freebsd.org> Date: Mon, 9 Oct 2000 16:47:29 -0700 (PDT) From: spcoltri@omcl.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21878: Make fvwm2-beta GNOME-compliant Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21878 >Category: ports >Synopsis: Make fvwm2-beta GNOME-compliant >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: Mon Oct 09 16:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Coltrin >Release: 4.1.1-STABLE >Organization: Orbital Mind Control Lasers >Environment: FreeBSD hrothgar.omcl.org 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Mon Oct 2 17:09:41 MDT 2000 spcoltri@hrothgar.omcl.org:/usr/obj/usr/src/sys/HROTHGAR i386 >Description: This patch causes the x11-wm/fvwm2-beta port to make a Gnome-compliant window manager. It does not introduce any port dependencies on Gnome. >How-To-Repeat: >Fix: Apply in ports/x11-wm : diff -ur fvwm2-beta.old/Makefile fvwm2-beta/Makefile --- fvwm2-beta.old/Makefile Mon Oct 9 17:26:04 2000 +++ fvwm2-beta/Makefile Mon Oct 9 17:26:33 2000 @@ -21,6 +21,8 @@ USE_GMAKE= yes PLIST_SUB= VER=${PORTVERSION} +CONFIGURE_ARGS+= --enable-gnome + MAN1= FvwmAuto.1 FvwmAnimate.1 FvwmBacker.1 FvwmBanner.1 FvwmButtons.1 \ FvwmCommand.1 FvwmConsole.1 FvwmConsoleC.pl.1 FvwmCpp.1 FvwmDebug.1 \ FvwmDragWell.1 FvwmEvent.1 FvwmForm.1 FvwmGtk.1 FvwmIconBox.1 \ >Release-Note: >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 Mon Oct 9 17:48: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4288537B502; Mon, 9 Oct 2000 17:48:05 -0700 (PDT) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA19627; Mon, 9 Oct 2000 17:48:05 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Date: Mon, 9 Oct 2000 17:48:05 -0700 (PDT) From: Message-Id: <200010100048.RAA19627@freefall.freebsd.org> To: nectar@FreeBSD.org, freebsd-ports@FreeBSD.org, nectar@FreeBSD.org Subject: Re: ports/21846: Update port: net/dante Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/dante Responsible-Changed-From-To: freebsd-ports->nectar Responsible-Changed-By: nectar Responsible-Changed-When: Mon Oct 9 17:47:16 PDT 2000 Responsible-Changed-Why: I depend on this port. http://www.freebsd.org/cgi/query-pr.cgi?pr=21846 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 18:15:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 5BB2937B66C; Mon, 9 Oct 2000 18:15:17 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA26240; Mon, 9 Oct 2000 21:15:15 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A1FDQ98683; Mon, 9 Oct 2000 18:15:13 -0700 (PDT) (envelope-from asami) To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: PROPOSAL: Handling of GNU Texinfo documentation in bsd.port.mk [patch] References: <39E1803D.7A049B1D@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 18:15:08 -0700 In-Reply-To: Maxim Sobolev's message of "Mon, 09 Oct 2000 11:22:22 +0300" Message-ID: Lines: 29 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Maxim Sobolev * [...] * INFOPAGES= foo bar * [...] * * In more complex cases, when the installed infopages for some strange reason * don't contain information required for install-info(1) to register those pages * into info/dir directory file, you may need something like the following: * * [...] * INFOPAGES= foo%"Utilities"%"* Foo: (foo). Foo manual" \ * bar%"Utilities"%"* Bar: (bar). Bar manual" * * As usually any comments/suggestions are welcomed. Sounds like a good idea. You need to extend it to deal with split info files (foo.info-1, foo.info-2, etc.) though. * + (${ECHO} "@unexec ${INSTALL-INFO} --delete %D/$${_INFOPAGE} ${LOCALINFODIR}"; \ * + ${ECHO} $${_INFOPAGE}; \ * + ${ECHO} "@exec ${INSTALL-INFO} $${_INFOSECTION} $${_INFOENTRY} %D/$${_INFOPAGE} ${LOCALINFODIR}") >> ${TMPPLIST}; \ You don't need to put the "@unexec" before the files -- install-info --delete doesn't require the info files to be present anymore. I recommend you put them in the normal "file, @exec, @unexec" order for ease to understand. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 18:32:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by hub.freebsd.org (Postfix) with ESMTP id 9003237B503; Mon, 9 Oct 2000 18:32:19 -0700 (PDT) Received: from localhost (leeym@localhost.caece.net [127.0.0.1]) by www.caece.net (8.11.0/8.11.0) with ESMTP id e9A1W4482265; Tue, 10 Oct 2000 09:32:05 +0800 (CST) Date: Tue, 10 Oct 2000 09:32:04 +0800 (CST) From: Yen-Ming Lee X-Sender: leeym@www.caece.net To: Satoshi Asami Cc: leeym@bsd.ce.ntu.edu.tw, knu@freebsd.org, kevlo@freebsd.org, ade@freebsd.org, reg@freebsd.org, ports@freebsd.org Subject: Re: New order check done In-Reply-To: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=big5 Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 9 Oct 2000, Satoshi Asami wrote: > Hi, > > I finished checking all ports that failed in the recent run that used > to build in the 09/29 run. I've either fixed (see recent commits) or > found out what's wrong (like make checksum failing because author > updated the distfile) for most of them, but I can't figure out the > following two. > > The ports are chinese/telnet and x11-toolkits/ruby-gtk. > > http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/ruby-gtk-0.23.log > http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/zh-telnet-1.0.log > > I have already made one change to zh-telnet to at least give it a > fighting chance (it had a WRKDIR violation) but it's still not very > close. zh-telnet has been touched by someone other than me since the > 09/29 run so that might be the reason. > > ruby-gtk, on the other hand, is either my fault or bsd.gnome.mk's. :> > > Satoshi > Sorry, I'm maintainer of zh-telnet, and I forget to put do-install section in Makefile. BTW, ports/21862 is fixed by asami already, please close it. Thanks. I'll send-pr for this patch later. -- Yen-Ming Lee [§õ«Û©ú] | http://cae.ce.ntu.edu.tw/~leeym/ CAE Group, Civil Engineering, NTU, Taipei, Taiwan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 18:34:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 1B3B237B687; Mon, 9 Oct 2000 18:34:29 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA08765; Mon, 9 Oct 2000 21:34:25 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A1YLV98774; Mon, 9 Oct 2000 18:34:21 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Mon, 9 Oct 2000 18:34:21 -0700 (PDT) Message-Id: <200010100134.e9A1YLV98774@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ports@freebsd.org Cc: obrien@freebsd.org Subject: *_WRKSRC From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What do people think about the following (submitted by DavidO, reworked slightly by me). Basically it adds PATCH_WRKSRC, BUILD_WRKSRC and INSTALL_WRKSRC alongside CONFIGURE_WRKSRC to deal with oddball ports that want different directories. It also extends the use of CONFIGURE_WRKSRC to include all configure-related actions. I don't think this breaks anything but I'm not sure. It does seem like this way is cleaner though. I'm not sure if patch-libtool should use PATCH_WRKSRC or CONFIGURE_WRKSRC. :) Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v retrieving revision 1.355 diff -u -r1.355 bsd.port.mk --- bsd.port.mk 2000/10/08 11:43:54 1.355 +++ bsd.port.mk 2000/10/10 01:28:35 @@ -384,6 +394,7 @@ # The patches specified by this variable will be # applied after the normal distribution patches but # before those in ${PATCHDIR}. +# PATCH_WRKSRC - Directory to apply patches in (default: ${WRKSRC}). # # For configure: # @@ -409,6 +420,7 @@ # For build and install: # # ALL_TARGET - Default target for sub-make in build stage (default: all). +# BUILD_WRKSRC - Directory to do build in (default: ${WRKSRC}). # MAKE_ENV - Additional environment vars passed to sub-make in build # and install stages (default: see below). # MAKE_ARGS - Any extra arguments to sub-make in build and install @@ -418,6 +430,7 @@ # # INSTALL_TARGET - Default target for sub-make in install stage # (default: install). +# INSTALL_WRKSRC - Directory to install from (default: ${WRKSRC}). # NO_MTREE - If set, will not invoke mtree from bsd.port.mk from # the "install" target. # MTREE_FILE - The name of the mtree file (default: /etc/mtree/BSD.x11.dist @@ -704,6 +717,11 @@ WRKSRC?= ${WRKDIR}/${DISTNAME} .endif +PATCH_WRKSRC?= ${WRKSRC} +CONFIGURE_WRKSRC?= ${WRKSRC} +BUILD_WRKSRC?= ${WRKSRC} +INSTALL_WRKSRC?=${WRKSRC} + PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} CONFIGURE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} @@ -933,12 +957,12 @@ PATCH_DIST_STRIP?= -p0 .if defined(PATCH_DEBUG) PATCH_DEBUG_TMP= yes -PATCH_ARGS?= -d ${WRKSRC} -E ${PATCH_STRIP} -PATCH_DIST_ARGS?= -d ${WRKSRC} -E ${PATCH_DIST_STRIP} +PATCH_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_STRIP} +PATCH_DIST_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_DIST_STRIP} .else PATCH_DEBUG_TMP= no -PATCH_ARGS?= -d ${WRKSRC} --forward --quiet -E ${PATCH_STRIP} -PATCH_DIST_ARGS?= -d ${WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP} +PATCH_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_STRIP} +PATCH_DIST_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP} .endif .if defined(BATCH) PATCH_ARGS+= --batch @@ -1250,7 +1277,6 @@ .undef HAS_CONFIGURE .endif -CONFIGURE_WRKSRC?= ${WRKSRC} CONFIGURE_SCRIPT?= configure CONFIGURE_TARGET?= ${MACHINE_ARCH}--freebsd${OSREL} CONFIGURE_LOG?= config.log @@ -1784,10 +1811,10 @@ .if !target(do-configure) do-configure: .if defined(USE_AUTOMAKE) - @(cd ${WRKSRC} && ${AUTOMAKE}) + @(cd ${CONFIGURE_WRKSRC} && ${AUTOMAKE}) .endif .if defined(USE_AUTOCONF) - @(cd ${WRKSRC} && ${AUTOCONF}) + @(cd ${CONFIGURE_WRKSRC} && ${AUTOCONF}) .endif @if [ -f ${SCRIPTDIR}/configure ]; then \ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ @@ -1814,7 +1841,7 @@ ${PERL5} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS} .endif .if defined(USE_IMAKE) - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF}) + @(cd ${CONFIGURE_WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF}) .endif .endif @@ -1823,9 +1850,9 @@ .if !target(do-build) do-build: .if defined(USE_GMAKE) - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) + @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) .else - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) + @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) .endif .endif @@ -1834,14 +1861,14 @@ .if !target(do-install) do-install: .if defined(USE_GMAKE) - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES) - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) .endif .else defined(USE_GMAKE) - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES) - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) .endif .endif .endif @@ -2186,7 +2221,7 @@ exit 1); \ fi; \ LIBTOOLDIR=`${WHICH} ${LIBTOOL} | ${SED} -e 's^/bin/libtool^/share/libtool^'` || ${LOCALBASE}/share/libtool; \ - cd ${WRKSRC}; \ + cd ${PATCH_WRKSRC}; \ for file in ${LIBTOOLFILES}; do \ ${CP} $$file $$file.tmp; \ ${SED} -e "s^\$$ac_aux_dir/ltconfig^$${LIBTOOLDIR}/ltconfig^g" \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 18:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6301E37B676 for ; Mon, 9 Oct 2000 18:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA39080; Mon, 9 Oct 2000 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by hub.freebsd.org (Postfix) with ESMTP id D9A9137B502 for ; Mon, 9 Oct 2000 18:36:41 -0700 (PDT) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id e9A1ab982661; Tue, 10 Oct 2000 09:36:37 +0800 (CST) Message-Id: <200010100136.e9A1ab982661@www.caece.net> Date: Tue, 10 Oct 2000 09:36:37 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@cae.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21881: update port: chinese/telnet (by MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21881 >Category: ports >Synopsis: update port: chinese/telnet (by MAINTAINER) >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: Mon Oct 09 18:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD utopia.leeym.yi.org 4.1.1-STABLE FreeBSD 4.1.1-STABLE #3: Mon Oct 9 10:02:34 CST 2000 root@utopia.leeym.yi.org:/usr/src/sys/compile/UTOPIA i386 >Description: put do-install section in Makefile. ports/21862 is fixed by asami, please close it. >How-To-Repeat: http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/zh-telnet-1.0.log >Fix: diff -ruN /usr/ports/chinese/telnet/Makefile telnet/Makefile --- /usr/ports/chinese/telnet/Makefile Tue Oct 10 03:17:09 2000 +++ telnet/Makefile Tue Oct 10 09:20:09 2000 @@ -25,4 +25,8 @@ MAN1= telnet.1 +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/telnet ${PREFIX}/bin/telnet + ${INSTALL_MAN} ${WRKSRC}/telnet.1 ${MANPREFIX}/man/man1/telnet.1 + .include >Release-Note: >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 Mon Oct 9 18:57:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id CBC9537B502; Mon, 9 Oct 2000 18:57:36 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA27965; Mon, 9 Oct 2000 21:57:30 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A1vQH98914; Mon, 9 Oct 2000 18:57:26 -0700 (PDT) (envelope-from asami) To: Maxim Sobolev Cc: bmah@FreeBSD.org, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 18:57:22 -0700 In-Reply-To: Maxim Sobolev's message of "Wed, 04 Oct 2000 14:42:52 +0300" Message-ID: Lines: 96 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Maxim Sobolev * Looks fine, thank you Bruce for fast reply. I hope PW will take a look at this thread when he has * finished his NEWLAYOUT efforts and let us know his final word then. :-> Yes, this is exactly what I'm doing now. :) * From: Maxim Sobolev * 2. What is proposed? * * It is proposed to plant into package short information about path of the underlying * port, from which installed packages was generated, in the Ports Tree. Due to the fact * that it is going to change pkg_install tools it is proposed to do it in as less * intrusive way as possible, so the old packages generated by the previous version of * pkg_* tools will work with the new version of tools and vice versa. This defines * usage of @comment PLIST variable for the purpose. This is a very good idea. I've wanted this for years. :) * 3. How it would work? * * When creating package, bsd.port.mk will generate MASTERCATEGORY/PORTDIR string and * feed it to pkg_create. Here MASTERCATEGORY is the first category specified in port's * CATEGORIES and it should coincide with name of corresponding parent directory in the * ports tree. It was defined in such way to properly handle ports installed w/o parent Yes, I think it is correct to make that assumption. (I believe it is documented in the Porter's Handbook as a rule, but if it is not, it should be.) * category directory (for example when you install package from the module received * using `cvs co ...'). pkg_create in turn will prefix it with appropriate @comment * magic and add into +CONTENTS. * Later, when you updated your ports tree and want to check if any new versions of the * installed packages are available, your designated for this purpose tool (pkg_version) * will call pkg_info with an appropriate option for all installed packages, create a * list of packages where origin is defined and check if appropriate ports' makefiles in * /usr/ports are in fact present. Then for all packages which can be handled under a * new scheme the tool will call appropriate `make -V PORTVERSION -f ...' to determine * current version of the package in the Ports Collection. All other packages (for * example old packages w/o origin, third party packages etc.) will be handled using * ports/INDEX. Sounds good. Well, I don't think third party packages will be "handled" all that well using ports/INDEX since they aren't in there (unless the user edited the file manually to put it in :), but I assume you are saying it will just fall back to the old method of using INDEX if the port directory is found, which is of course fine. Same goes for ports that have been repo-copied, but of course this can't be helped. * With this message I'm attaching appropriate patches for pkg_* tools and bsd.port.mk. I'm not capable of reviewing patches to pkg_* tools but on the bsd.port.mk patch: * --- bsd.port.mk.orig Mon Oct 2 09:10:12 2000 * +++ bsd.port.mk Wed Oct 4 10:58:15 2000 * @@ -1070,6 +1070,17 @@ * PKGMESSAGE?= ${PKGDIR}/pkg-message * .endif * * +SED?= /usr/bin/sed * +BASENAME?= /usr/bin/basename I should just move the whole damn section up here. * + * +.if ${OSVERSION} > 500012 Don't worry about the OSVERSION check, I'll make an upgrade kit and bump BSDPORTMKVERSION to make sure people will have the newest pkg_* tools. * +_PKGCATEGORY!= ${ECHO} ${CATEGORIES} | ${SED} -E 's|^ *||g ; s| .*$$||' * +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} I wish we could do these substitutions without having to invoke separate processes though. Will, aren't there ways to do this in make? * +PKGCATEGORY?= ${_PKGCATEGORY} * +PORTDIRNAME?= ${_PORTDIRNAME} * +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} * +.endif * +.if defined(PKGORIGIN) && ${OSVERSION} > 500012 * +PKG_ARGS+= -o ${PKGORIGIN} * +.endif Same comment re OSVERSION applies here. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19: 0:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hyde.ssec.wisc.edu (hyde.ssec.wisc.edu [144.92.108.217]) by hub.freebsd.org (Postfix) with ESMTP id 3DE3E37B503 for ; Mon, 9 Oct 2000 19:00:16 -0700 (PDT) Received: from hyde.ssec.wisc.edu (dglo@localhost [127.0.0.1]) by hyde.ssec.wisc.edu (8.9.3/8.9.3) with ESMTP id UAA16944 for ; Mon, 9 Oct 2000 20:59:59 -0500 (CDT) Message-Id: <200010100159.UAA16944@hyde.ssec.wisc.edu> To: freebsd-ports@freebsd.org Subject: Help with Makefile for new mysql-jdbc-mm port X-image-url: http://www.ssec.wisc.edu/~dglo/headshot.jpg Date: Mon, 09 Oct 2000 20:59:59 -0500 From: Dave Glowacki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to update the mysql-jdbc-mm Makefile and I have a couple of questions about the proper way to do this. First, the sources and documentation are distributed in a .jar file (which, for those who don't know, is basically a zip file with some standard files added.) The appended Makefile has my hacks to extract everything from this. Can someone tell me if this is the right way to do things, please? Second, the sources will work with either JDK 1.1 or Java2, but the Java2 sources should only be built by a Java2 compiler. I'm trying to check for the existence of a Java2 compiler by doing: JAVA2C= ${LOCALBASE}/jdk1.2.2/bin/javac .if exists(${JAVA2C}) ALL_TARGET= jar .else ALL_TARGET= jdbc1-jar .endif but ${LOCALBASE} isn't set when this is evaluated, so 'make' ends up checking for "/jdk1.2.2/bin/javac". What's the right way to do this? Here's my Makefile: # New ports collection makefile for: The mm MySql JDBC interface # Date created: 2 January 2000 # Whom: Dave Glowacki # # $FreeBSD: ports/databases/mysql-jdbc-mm/Makefile,v 1.6 2000/09/05 02:09:25 steve Exp $ # PORTNAME= mysql-jdbc-mm PORTVERSION= 2.0.2 CATEGORIES= databases java MASTER_SITES= http://www.worldserver.com/mm.mysql/dist/ DISTNAME= mm.mysql-${PORTVERSION} EXTRACT_SUFX= -src.jar MAINTAINER= dglo@SSEC.WISC.EDU JAVA_HOME?= ${LOCALBASE}/jdk1.1.8 BUILD_DEPENDS= ${JAVA_HOME}/bin/javac:${PORTSDIR}/java/jdk RUN_DEPENDS= ${JAVA_HOME}/bin/java:${PORTSDIR}/java/jdk EXTRACT_CMD= ${JAVA_HOME}/bin/jar EXTRACT_BEFORE_ARGS= -xf USE_GMAKE= yes JAVA2C= ${LOCALBASE}/jdk1.2.2/bin/javac .if exists(${JAVA2C}) ALL_TARGET= jar .else ALL_TARGET= jdbc1-jar .endif foo: echo LB=${LOCALBASE} J2C=${JAVA2C} AT=${ALL_TARGET} do-install: @${MKDIR} ${PREFIX}/share/java/classes @${INSTALL_DATA} ${WRKSRC}/mysql_1_uncomp.jar ${LOCALBASE}/share/java/classes @${INSTALL_DATA} ${WRKSRC}/mysql_1_comp.jar ${LOCALBASE}/share/java/classes .if exists(${JAVA2C}) @${INSTALL_DATA} ${WRKSRC}/mysql_2_uncomp.jar ${LOCALBASE}/share/java/classes @${INSTALL_DATA} ${WRKSRC}/mysql_2_comp.jar ${LOCALBASE}/share/java/classes @${INSTALL_DATA} ${WRKSRC}/mysql_both_uncomp.jar ${LOCALBASE}/share/java/classes @${INSTALL_DATA} ${WRKSRC}/mysql_both_comp.jar ${LOCALBASE}/share/java/classes .endif post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/mysql-jdbc @(cd ${WRKSRC}/doc && ${TAR} -c -f - .) \ | (cd ${PREFIX}/share/doc/mysql-jdbc && ${TAR} --unlink -x -f -) @(cd ${PREFIX} \ && find share/doc/mysql-jdbc -type f -print >> ${TMPPLIST}) .endif .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19: 1:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF25137B66D; Mon, 9 Oct 2000 19:01:43 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA47210; Mon, 9 Oct 2000 19:01:43 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Mon, 9 Oct 2000 19:01:43 -0700 (PDT) From: Message-Id: <200010100201.TAA47210@freefall.freebsd.org> To: leeym@cae.ce.ntu.edu.tw, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21862: update port: chinese/telnet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: chinese/telnet State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Mon Oct 9 19:01:09 PDT 2000 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21862 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19:18: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 36D6337B503; Mon, 9 Oct 2000 19:18:00 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id LAA24861; Tue, 10 Oct 2000 11:17:49 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9A2HBM77100; Tue, 10 Oct 2000 11:17:12 +0900 (JST) Date: Tue, 10 Oct 2000 11:17:10 +0900 Message-ID: <86og0twic9.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: asami@freebsd.org, yasuf@bsdclub.org Cc: leeym@bsd.ce.ntu.edu.tw, knu@freebsd.org, kevlo@freebsd.org, ade@freebsd.org, reg@freebsd.org, ports@freebsd.org Subject: Re: New order check done In-Reply-To: In your message of "Mon, 9 Oct 2000 14:50:46 -0700 (PDT)" <200010092150.e99LokA95039@silvia.hip.berkeley.edu> References: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Mon, 9 Oct 2000 14:50:46 -0700 (PDT), Satoshi Asami wrote: > http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/ruby-gtk-0.23.log > ruby-gtk, on the other hand, is either my fault or bsd.gnome.mk's. :> It was caused because someone removed the below line: CONFIGURE_ARGS= ${GTK_CONFIG} Ruby-gtk's configure script is _not_ a GNU one and it takes gtk-config's name as the first command line argument followed by some options that start with "--". I confirmed the following patch fixes it. Fukuma-san, would you approve this change? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/ruby-gtk/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 2000/10/08 10:23:45 1.15 +++ Makefile 2000/10/10 01:52:45 @@ -15,14 +15,14 @@ MAINTAINER= yasuf@bsdclub.org -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - USE_RUBY= yes USE_RUBY_EXTCONF= yes USE_XLIB= yes USE_GTK= yes WANT_IMLIB= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +CONFIGURE_ARGS= ${GTK_CONFIG} INSTALL_TARGET= site-install .include -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19:19:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 84B7C37B66C for ; Mon, 9 Oct 2000 19:19:07 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id WAA18847; Mon, 9 Oct 2000 22:19:03 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A2J0L99014; Mon, 9 Oct 2000 19:19:00 -0700 (PDT) (envelope-from asami) To: Jordan Hubbard Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail References: <98657.971028159@winston.osd.bsdi.com> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 19:18:57 -0700 In-Reply-To: Jordan Hubbard's message of "Sun, 08 Oct 2000 11:02:39 -0700" Message-ID: Lines: 53 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Jordan Hubbard * I guess I must have been asleep during the discussions which preceded * this move since the rearrangement event didn't take me by surprise * (you were very good about announcing that in advance) but the actual * details of it did. I recognise that the package metadata does take * up a bunch of inodes, though I don't quite see what advantage was * incurred by moving it up one level from, say, pkg/PLIST to pkg-plist; * can you perhaps explain it again for those of us like me who weren't * paying attention the first time? Much fewer directories. That was the first goal. :) By the way, a simple count on bento's ports tree shows 77,226 files before and 50,031 files after the conversion. Most of the savings comes from reducing the directory count from 28,678 to 13,783 and the associated CVS stuff. (In terms of inodes, it's from 105,904 to 63,814.) Ignoring the CVS directories and files in them, it's 34,628 files to 29,367 files, and 14,487 directories to 6,899 directories. This last count is what's significant, as we managed to reduce the number of directories to less than half. :) * Most notably, I'm wondering why you didn't simply fold all the package * metadata into a single file with unique separators (even html-ish tags * would do). Then the ports makefile infrastructure would simply * separate it out into separate temp files for the rather rarely * executed (for most folks anyway) "package" target. I think it's only * that and the "describe" target which have any interest in the contents * of the pkg/ directory unless you count the plist munging stuff, and * that could be fairly easily changed to work from a single file as * well. There's also ease of maintenance by porters. I don't really like going the Richard Wackarbarth direction of modifying the ports tree in order to reduce the cost to users by further burdening our overworked porter/committer bunch. That said, we are planning to move pkg-comment into a variable in Makefile (which will also take care of all the nastiness associated with multi-line COMMENT files and those that don't have the trailing '\n') so that's one less file to worry about. That leaves only pkg-descr and pkg-plist for most ports. * I should also note that the libh folks are working towards a packaging * standard with a single package metadata file, so if we ever do manage * to get that project finished and the ports collection migrated to a * new package format, such a move would occur in any case. We'll talk about it when that happens. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7346937B66D for ; Mon, 9 Oct 2000 19:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA56399; Mon, 9 Oct 2000 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id CB79C37B502 for ; Mon, 9 Oct 2000 19:12:00 -0700 (PDT) Received: (from doug@localhost) by dt051n37.san.rr.com (8.9.3/8.9.3) id TAA86282; Mon, 9 Oct 2000 19:11:59 -0700 (PDT) (envelope-from doug) Message-Id: <200010100211.TAA86282@dt051n37.san.rr.com> Date: Mon, 9 Oct 2000 19:11:59 -0700 (PDT) From: DougB@gorean.org Reply-To: DougB@gorean.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21882: xlock + Mesa + XFree 4 = problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21882 >Category: ports >Synopsis: xlock + Mesa + XFree 4 = problems >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 09 19:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Doug >Release: FreeBSD 3.5.1-STABLE-0903 i386 >Organization: AAAG >Environment: Fresh -Current system with freshly cvsup'ed ports. >Description: I have installed XFree version 4 (pre ports format change), set XFREE86_VERSION=4 in /etc/make.conf, and just now attempted to rebuild xlockmore. I was surprised when it wanted to include Mesa (isn't that built into X 4?) and even more surprised when the xlock build failed due to missing includes in /usr/X11R6/include/GL/. Comparing a similarly configured system with the one that doesn't work, it seems that the probme is related to includes that are present in one place, but not on the system I'm working on today. Two of the missing includes are glx.h and gl.h, both of which have older versions present on the working system. (Where "working" means that xlockmore compiles). >How-To-Repeat: See above. >Fix: Unknown. I tried to unravel all the mesa stuff, but quickly got a headache. I will try cleaning out mesa and xlock, then building X 4 again and starting over, but that will have to wait a little while. I'll be glad to test patches if someone gets there before me. >Release-Note: >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 Mon Oct 9 19:30:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id C3D8937B502; Mon, 9 Oct 2000 19:30:28 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id LAA26338; Tue, 10 Oct 2000 11:30:25 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9A2TmM77406; Tue, 10 Oct 2000 11:29:49 +0900 (JST) Date: Tue, 10 Oct 2000 11:29:48 +0900 Message-ID: <86n1gdwhr7.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: bsd.port.mk: No need to create FILESDIR on makesum User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I found a "make makesum" creates ${FILESDIR} when it's no longer necessary. Please apply the following patch. Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.355 diff -u -r1.355 bsd.port.mk --- bsd.port.mk 2000/10/08 11:43:54 1.355 +++ bsd.port.mk 2000/10/10 02:26:17 @@ -2351,7 +2351,6 @@ .if !target(makesum) makesum: @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} fetch NO_CHECKSUM=yes - @${MKDIR} ${FILESDIR} @if [ -f ${MD5_FILE} ]; then ${RM} -f ${MD5_FILE}; fi @(cd ${DISTDIR}; \ for file in ${_CKSUMFILES}; do \ -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19:37: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 49E0837B66D; Mon, 9 Oct 2000 19:37:00 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id C705C1908; Mon, 9 Oct 2000 21:37:09 -0500 (EST) Date: Mon, 9 Oct 2000 21:37:09 -0500 From: Will Andrews To: Satoshi - Ports Wraith - Asami Cc: Maxim Sobolev , bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] Message-ID: <20001009213709.M1067@puck.firepipe.net> Reply-To: Will Andrews References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.ORG on Mon, Oct 09, 2000 at 06:57:22PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 06:57:22PM -0700, Satoshi - Ports Wraith - Asami wrote: > This is a very good idea. I've wanted this for years. :) Me too (the want and years parts :-). :-) > I wish we could do these substitutions without having to invoke > separate processes though. Will, aren't there ways to do this in > make? Yes. You can do regex in make(1) using :C/// var modifier. Currently this is only available in -current, and has been there barely 24 hours. I was planning to MFC it at BSDCon (among other make(1) things I'm going to fix later tonight or tomorrow) to RELENG_[43] and possibly RELENG_2_[2,1_0]. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 19:47:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 480BC37B502 for ; Mon, 9 Oct 2000 19:47:42 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id LAA28717 for ; Tue, 10 Oct 2000 11:47:37 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9A2kuM77667; Tue, 10 Oct 2000 11:46:57 +0900 (JST) Date: Tue, 10 Oct 2000 11:46:56 +0900 Message-ID: <86lmvxwgyn.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: freebsd-ports@FreeBSD.org Subject: GL_CLIENT_ALL_ATTRIB_BITS or GL_ALL_CLIENT_ATTRIB_BITS? User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This seems to be a discrepancy between Mesa3 and XFree86 4.0's Mesa. http://bento.FreeBSD.org/errorlogs/4-latest/ruby-opengl-0.31_1.log Take a look at graphics/ruby-opengl's patch-ab. This patch wasn't needed when Mesa3 was version 3.2 because it defined GL_CLIENT_ALL_ATTRIB_BITS, but on version 3.2.1 it was changed to GL_ALL_CLIENT_ATTRIB_BITS and I had to add the patch. Now, XFree86 4.0 is found to lack the latter one... I don't have XFree86 4.0 installed on any of my boxen, so would someone please check XFree86 4.0 and tell me if it has GL_CLIENT_ALL_ATTRIB_BITS, or something other than that? If it has GL_CLIENT_ALL_ATTRIB_BITS, I could change the part to something like this: #ifdef GL_CLIENT_ALL_ATTRIB_BITS /* For Mesa 3.2 and XFree86 4.0 */ rb_define_const(mOGL, "CLIENT_ALL_ATTRIB_BITS", INT2NUM(GL_CLIENT_ALL_ATTRIB_BITS)); #endif #ifdef GL_ALL_CLIENT_ATTRIB_BITS /* For Mesa 3.2.1 */ rb_define_const(mOGL, "CLIENT_ALL_ATTRIB_BITS", INT2NUM(GL_ALL_CLIENT_ATTRIB_BITS)); #endif -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 20:29:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from servizi.padova.com (servizi.padova.com [212.131.155.42]) by hub.freebsd.org (Postfix) with ESMTP id 77AF437B672; Mon, 9 Oct 2000 20:29:30 -0700 (PDT) Received: from padova08 (unverified [212.131.155.4]) by servizi.padova.com (Rockliffe SMTPRA 4.2.2) with SMTP id for ; Tue, 10 Oct 2000 01:56:53 +0200 Message-ID: <006f01c0324d$3d232d40$049b83d4@pol.it> Reply-To: "Emma Bonino" From: "Emma Bonino" To: Subject: Toc toc. Sono Emma Bonino e la prego... Date: Tue, 10 Oct 2000 02:01:28 +0200 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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Toc toc. Mi scusi, sono Emma Bonino e la prego di partecipare al gioco online che stiamo organizzando perche' anche cittadini come lei (che non votino affatto radicale o che lo facciano, che non votino o non intendano piu' votare) possano partecipare alle nostre decisioni, essere presenti o rappresentati nei nostri organi dirigenti. In vista delle elezioni politiche occorre tentare di allearsi con il Polo o con l'Ulivo? O combattere da soli? O organizzare il boicottaggio di elezioni non democratiche? Quali Riforme istituzionali, politiche, del lavoro, dell'impresa: "americane" o "tedesche", o nessuna? Quali politiche sulle liberta' individuali e sulla scienza, oltre che sulle droghe: proibizioniste o antiproibizioniste, come gia' sul divorzio e sull'aborto? E i partiti devono aprirsi a tutti i cittadini attraverso Internet, o restare "chiusi" come finora? Dal 27 novembre al 3 dicembre si votera' online per eleggere 25 nuovi membri del Comitato Radicale. Se, come vivamente spero, lei intende partecipare a questo gioco, lo preannunci e registri cliccando qui: http://www.radicali.it/p_register/ Mi scusi ancora. A presto. Emma Bonino PS Questa email e' stata inviata nel rispetto della legge sulla privacy; se desidera maggiori informazioni o se intende cancellarsi, puo' cliccare qui: http://www.radicali.it/p_privacy_org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 20:44:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65BFB37B66D; Mon, 9 Oct 2000 20:44:11 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA88103; Mon, 9 Oct 2000 20:44:11 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Mon, 9 Oct 2000 20:44:11 -0700 (PDT) From: Message-Id: <200010100344.UAA88103@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-small@FreeBSD.org Subject: Re: bin/21840: more(1) is less(1) and that should be on PicoBSD too Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: more(1) is less(1) and that should be on PicoBSD too Responsible-Changed-From-To: freebsd-ports->freebsd-small Responsible-Changed-By: trevor Responsible-Changed-When: Mon Oct 9 20:43:01 PDT 2000 Responsible-Changed-Why: MAINTAINER (src/release/picobsd/Makefile) http://www.freebsd.org/cgi/query-pr.cgi?pr=21840 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 20:49:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38FF137B66E; Mon, 9 Oct 2000 20:49:37 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA90273; Mon, 9 Oct 2000 20:49:37 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Mon, 9 Oct 2000 20:49:37 -0700 (PDT) From: Message-Id: <200010100349.UAA90273@freefall.freebsd.org> To: andy@venus.sympad.net, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21868: New port: This is a game of pentix for terminals Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: This is a game of pentix for terminals State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Mon Oct 9 20:48:55 PDT 2000 State-Changed-Why: Modified to respect PREFIX Committed, Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21868 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21: 0:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF8AF37B66E for ; Mon, 9 Oct 2000 21:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA93997; Mon, 9 Oct 2000 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by hub.freebsd.org (Postfix) with ESMTP id 89FF937B66C for ; Mon, 9 Oct 2000 20:48:37 -0700 (PDT) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id e9A3m7r89055; Tue, 10 Oct 2000 11:48:07 +0800 (CST) Message-Id: <200010100348.e9A3m7r89055@www.caece.net> Date: Tue, 10 Oct 2000 11:48:07 +0800 (CST) From: Yen-Ming Lee Reply-To: leeym@cae.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21883: update port: devel/p5-IPC-Shareable (by MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21883 >Category: ports >Synopsis: update port: devel/p5-IPC-Shareable (by MAINTAINER) >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: Mon Oct 09 21:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD utopia.leeym.yi.org 4.1.1-STABLE FreeBSD 4.1.1-STABLE #3: Mon Oct 9 10:02:34 CST 2000 root@utopia.leeym.yi.org:/usr/src/sys/compile/UTOPIA i386 >Description: update port from 0.51 to 0.52 change ${PERL_ARCH} in RUN_DEPENDS alphabetize pkg-plist >How-To-Repeat: >Fix: diff -ruN /usr/ports/devel/p5-IPC-Shareable/Makefile p5-IPC-Shareable/Makefile --- /usr/ports/devel/p5-IPC-Shareable/Makefile Sun Sep 10 00:01:10 2000 +++ p5-IPC-Shareable/Makefile Tue Oct 10 03:11:09 2000 @@ -6,7 +6,7 @@ # PORTNAME= IPC-Shareable -PORTVERSION= 0.51 +PORTVERSION= 0.52 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= IPC @@ -14,14 +14,11 @@ MAINTAINER= leeym@cae.ce.ntu.edu.tw -RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/i386-freebsd/Storable.pm:${PORTSDIR}/devel/p5-Storable +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable -USE_PERL5= YES +PERL_CONFIGURE= YES MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= IPC::Shareable.3 IPC::Shareable::SharedMem.3 - -do-configure: - @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL .include diff -ruN /usr/ports/devel/p5-IPC-Shareable/distinfo p5-IPC-Shareable/distinfo --- /usr/ports/devel/p5-IPC-Shareable/distinfo Thu Sep 7 00:02:17 2000 +++ p5-IPC-Shareable/distinfo Sat Oct 7 14:21:10 2000 @@ -1 +1 @@ -MD5 (IPC-Shareable-0.51.tar.gz) = 2ea26ce7f8d90c5bbd9310242ebc181d +MD5 (IPC-Shareable-0.52.tar.gz) = 44eaaff2b20fb0566960d071382bb927 diff -ruN /usr/ports/devel/p5-IPC-Shareable/pkg-plist p5-IPC-Shareable/pkg-plist --- /usr/ports/devel/p5-IPC-Shareable/pkg-plist Sat Sep 9 17:59:54 2000 +++ p5-IPC-Shareable/pkg-plist Fri Sep 8 22:00:52 2000 @@ -1,6 +1,6 @@ -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/Shareable/.packlist -lib/perl5/site_perl/%%PERL_VER%%/IPC/Shareable/SharedMem.pm lib/perl5/site_perl/%%PERL_VER%%/IPC/Shareable.pm +lib/perl5/site_perl/%%PERL_VER%%/IPC/Shareable/SharedMem.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/Shareable/.packlist @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC/Shareable @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/IPC @dirrm lib/perl5/site_perl/%%PERL_VER%%/IPC/Shareable >Release-Note: >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 Mon Oct 9 21: 0:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D712B37B66F for ; Mon, 9 Oct 2000 21:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA94007; Mon, 9 Oct 2000 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 40ACE37B503 for ; Mon, 9 Oct 2000 20:58:22 -0700 (PDT) Received: (qmail 13173289 invoked from network); 10 Oct 2000 03:58:14 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 10 Oct 2000 03:58:14 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9A3wDe25570; Tue, 10 Oct 2000 05:58:13 +0200 (CEST) (envelope-from root) Message-Id: <200010100358.e9A3wDe25570@gits.dyndns.org> Date: Tue, 10 Oct 2000 05:58:13 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21884: New port: misc/sh-utils - 2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21884 >Category: ports >Synopsis: New port: misc/sh-utils - 2.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: Mon Oct 09 21:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: The SNU sh utilities, including basename, chroot, date, dirname, echo, env, expr, false, groups, hostid, hostname, id, logname, nice, nohup, pathchk, pinky, printenv, printf, pwd, sleep, stty, su, tee, test, true, tty, uname, users, who, whoami, and yes. >How-To-Repeat: n/a >Fix: # 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: # # misc/sh-utils # misc/sh-utils/Makefile # misc/sh-utils/distinfo # misc/sh-utils/pkg-comment # misc/sh-utils/pkg-descr # misc/sh-utils/pkg-plist # echo c - misc/sh-utils mkdir -p misc/sh-utils > /dev/null 2>&1 echo x - misc/sh-utils/Makefile sed 's/^X//' >misc/sh-utils/Makefile << 'END-of-misc/sh-utils/Makefile' X# New ports collection makefile for: sh-utils X# Version required: 2.0 X# Date created: 10 October 2000 X# Whom: Cyrille Lefevre X# X# $FreeBSD$ X# X XPORTNAME= sh-utils XPORTVERSION= 2.0 XCATEGORIES= misc XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= sh-utils X XMAINTAINER= ports@freebsd.org X XGNU_CONFIGURE= yes X XCONFIGURE_ARGS= --program-prefix=g X XUSE_GMAKE= yes X XMAN1= gbasename.1 gchroot.1 gdate.1 gdirname.1 gecho.1 genv.1 \ X gexpr.1 gfalse.1 ggroups.1 ghostid.1 ghostname.1 gid.1 \ X glogname.1 gnice.1 gnohup.1 gpathchk.1 gpinky.1 gprintenv.1 \ X gprintf.1 gpwd.1 gsleep.1 gstty.1 gsu.1 gtee.1 gtest.1 \ X gtrue.1 gtty.1 guname.1 gusers.1 gwho.1 gwhoami.1 gyes.1 X X.include END-of-misc/sh-utils/Makefile echo x - misc/sh-utils/distinfo sed 's/^X//' >misc/sh-utils/distinfo << 'END-of-misc/sh-utils/distinfo' XMD5 (sh-utils-2.0.tar.gz) = 5e78d1d48ca563ca77e96b22406c4aaf END-of-misc/sh-utils/distinfo echo x - misc/sh-utils/pkg-comment sed 's/^X//' >misc/sh-utils/pkg-comment << 'END-of-misc/sh-utils/pkg-comment' XThe FSF's version of date(1), expr(1), test(1), etc. END-of-misc/sh-utils/pkg-comment echo x - misc/sh-utils/pkg-descr sed 's/^X//' >misc/sh-utils/pkg-descr << 'END-of-misc/sh-utils/pkg-descr' XThe Free Software Foundation's "sh" utilities, including "basename", X"chroot", "date", "dirname", "echo", "env", "expr", "false", X"groups", "hostid", "hostname", "id", "logname", "nice", "nohup", X"pathchk", "pinky", "printenv", "printf", "pwd", "sleep", "stty", X"su", "tee", "test", "true", "tty", "uname", "users", "who", X"whoami", and "yes". X XThese utilities exist in the FreeBSD base collection, but the GNU Xversions have added functionality that is sometimes useful. X XNote that this port will install these utilities with a `g' prefix, Xeg., gdate, gexpr, gtest, but the texinfo documentation will refer to Xthese utilities without the `g' prefix. END-of-misc/sh-utils/pkg-descr echo x - misc/sh-utils/pkg-plist sed 's/^X//' >misc/sh-utils/pkg-plist << 'END-of-misc/sh-utils/pkg-plist' Xbin/gbasename Xbin/gdate Xbin/gdirname Xbin/gecho Xbin/genv Xbin/gexpr Xbin/gfactor Xbin/gfalse Xbin/ghostname Xbin/gid Xbin/glogname Xbin/gpathchk Xbin/gpinky Xbin/gprintenv Xbin/gprintf Xbin/gpwd Xbin/gseq Xbin/gsleep Xbin/gtee Xbin/gtest Xbin/gtrue Xbin/gtty Xbin/gusers Xbin/gwho Xbin/gwhoami Xbin/gyes Xbin/guname Xbin/gchroot Xbin/ghostid Xbin/gnice Xbin/gstty Xbin/ggroups Xbin/gnohup Xbin/gsu X@unexec install-info --delete %D/info/sh-utils.info %D/info/dir Xinfo/sh-utils.info X@exec install-info %D/info/sh-utils.info %D/info/dir Xshare/locale/cs/LC_MESSAGES/sh-utils.mo Xshare/locale/de/LC_MESSAGES/sh-utils.mo Xshare/locale/el/LC_MESSAGES/sh-utils.mo Xshare/locale/es/LC_MESSAGES/sh-utils.mo Xshare/locale/fr/LC_MESSAGES/sh-utils.mo Xshare/locale/it/LC_MESSAGES/sh-utils.mo Xshare/locale/nl/LC_MESSAGES/sh-utils.mo Xshare/locale/no/LC_MESSAGES/sh-utils.mo Xshare/locale/pl/LC_MESSAGES/sh-utils.mo Xshare/locale/pt/LC_MESSAGES/sh-utils.mo Xshare/locale/pt_BR/LC_MESSAGES/sh-utils.mo Xshare/locale/ru/LC_MESSAGES/sh-utils.mo Xshare/locale/sk/LC_MESSAGES/sh-utils.mo Xshare/locale/sv/LC_MESSAGES/sh-utils.mo Xshare/locale/zh/LC_MESSAGES/sh-utils.mo END-of-misc/sh-utils/pkg-plist exit >Release-Note: >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 Mon Oct 9 21: 5:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AFC437B66C; Mon, 9 Oct 2000 21:05:55 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA97726; Mon, 9 Oct 2000 21:05:55 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:05:55 -0700 (PDT) From: Message-Id: <200010100405.VAA97726@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21871: Fix news/ifmail (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix news/ifmail (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:05:40 PDT 2000 State-Changed-Why: Patch applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21871 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21: 6:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F4E437B502; Mon, 9 Oct 2000 21:06:30 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA98052; Mon, 9 Oct 2000 21:06:30 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:06:30 -0700 (PDT) From: Message-Id: <200010100406.VAA98052@freefall.freebsd.org> To: bio@freebsd.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21865: Update port: biology/p5-AcePerl (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/p5-AcePerl (maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:06:11 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21865 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21: 8:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 439DA37B502; Mon, 9 Oct 2000 21:08:29 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA98757; Mon, 9 Oct 2000 21:08:29 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Mon, 9 Oct 2000 21:08:29 -0700 (PDT) From: Message-Id: <200010100408.VAA98757@freefall.freebsd.org> To: eric@magdalena.osd.bsdi.com, trevor@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21320: ports submission - wmusic Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports submission - wmusic State-Changed-From-To: open->closed State-Changed-By: trevor State-Changed-When: Mon Oct 9 21:06:38 PDT 2000 State-Changed-Why: This has been re-submitted as PR 21597. The only change is the maintainer's address (to eric@osd.bsdi.com). http://www.freebsd.org/cgi/query-pr.cgi?pr=21320 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21: 9: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C741A37B503; Mon, 9 Oct 2000 21:09:01 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA99070; Mon, 9 Oct 2000 21:09:01 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:09:01 -0700 (PDT) From: Message-Id: <200010100409.VAA99070@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21872: Fix net/crescendo (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix net/crescendo (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:08:46 PDT 2000 State-Changed-Why: Patch applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21872 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21: 9: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D58DD37B66C; Mon, 9 Oct 2000 21:09:02 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA99094; Mon, 9 Oct 2000 21:09:02 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Mon, 9 Oct 2000 21:09:02 -0700 (PDT) From: Message-Id: <200010100409.VAA99094@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21597: port of WMusic Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port of WMusic Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Mon Oct 9 21:08:39 PDT 2000 Responsible-Changed-Why: I'll look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21597 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:11:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0FA937B502; Mon, 9 Oct 2000 21:11:52 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA00294; Mon, 9 Oct 2000 21:11:52 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:11:52 -0700 (PDT) From: Message-Id: <200010100411.VAA00294@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21873: Fix news/c-nocem (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix news/c-nocem (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:11:40 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:16:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9748B37B503; Mon, 9 Oct 2000 21:16:13 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA01984; Mon, 9 Oct 2000 21:16:13 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:16:13 -0700 (PDT) From: Message-Id: <200010100416.VAA01984@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21874: Fix news/cnews (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix news/cnews (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:16:00 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21874 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:16:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id EF10C37B503; Mon, 9 Oct 2000 21:16:19 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id C06F61C69; Tue, 10 Oct 2000 00:16:18 -0400 (EDT) Date: Tue, 10 Oct 2000 00:16:18 -0400 From: Bill Fumerola To: Will Andrews Cc: Satoshi - Ports Wraith - Asami , Maxim Sobolev , bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] Message-ID: <20001010001618.V38472@jade.chc-chimes.com> References: <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <20001009213709.M1067@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001009213709.M1067@puck.firepipe.net>; from will@physics.purdue.edu on Mon, Oct 09, 2000 at 09:37:09PM -0500 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 09:37:09PM -0500, Will Andrews wrote: > Yes. You can do regex in make(1) using :C/// var modifier. Currently > this is only available in -current, and has been there barely 24 hours. > I was planning to MFC it at BSDCon (among other make(1) things I'm going > to fix later tonight or tomorrow) to RELENG_[43] and possibly > RELENG_2_[2,1_0]. Don't touch RELENG_2_*. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:32: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAE7637B502; Mon, 9 Oct 2000 21:32:04 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA07800; Mon, 9 Oct 2000 21:32:04 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:32:04 -0700 (PDT) From: Message-Id: <200010100432.VAA07800@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21876: Update www/webalizer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update www/webalizer State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:31:46 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21876 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:34:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B72437B503; Mon, 9 Oct 2000 21:34:09 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA08533; Mon, 9 Oct 2000 21:34:09 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:34:09 -0700 (PDT) From: Message-Id: <200010100434.VAA08533@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21875: Update german/webalizer (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update german/webalizer (by maintainer) State-Changed-From-To: open->feedback State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:33:17 PDT 2000 State-Changed-Why: Patches don't appliy cleanly. See: >> Checksum OK for webalizer-2.01-05-src.tar.bz2. ===> de-webalizer-2.1.5 depends on executable: bzip2 - found ===> de-webalizer-2.1.5 depends on shared library: gd.1 - found ===> Patching for de-webalizer-2.1.5 ===> Applying FreeBSD patches for de-webalizer-2.1.5 4 out of 4 hunks failed--saving rejects to webalizer.c.rej >> Patch patch-af failed to apply cleanly. >> Patch(es) patch-ae applied cleanly. *** Error code 1 http://www.freebsd.org/cgi/query-pr.cgi?pr=21875 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:43: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 44E1237B503; Mon, 9 Oct 2000 21:43:00 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA12052; Mon, 9 Oct 2000 21:43:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:43:00 -0700 (PDT) From: Message-Id: <200010100443.VAA12052@freefall.freebsd.org> To: leeym@cae.ce.ntu.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21883: update port: devel/p5-IPC-Shareable (by MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: devel/p5-IPC-Shareable (by MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:42:48 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21883 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:44:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7136137B66D; Mon, 9 Oct 2000 21:44:26 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA12575; Mon, 9 Oct 2000 21:44:26 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:44:26 -0700 (PDT) From: Message-Id: <200010100444.VAA12575@freefall.freebsd.org> To: leeym@cae.ce.ntu.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21881: update port: chinese/telnet (by MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: chinese/telnet (by MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:43:36 PDT 2000 State-Changed-Why: Already fixed by foxfair. http://www.freebsd.org/cgi/query-pr.cgi?pr=21881 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:56:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DDFD37B675; Mon, 9 Oct 2000 21:54:57 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA16312; Mon, 9 Oct 2000 21:54:56 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:54:56 -0700 (PDT) From: Message-Id: <200010100454.VAA16312@freefall.freebsd.org> To: johann@egenetics.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21857: Port update: biology/emboss (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: biology/emboss (maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:54:44 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21857 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 21:57:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A22B337B66C; Mon, 9 Oct 2000 21:56:59 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA17239; Mon, 9 Oct 2000 21:56:59 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 21:56:59 -0700 (PDT) From: Message-Id: <200010100456.VAA17239@freefall.freebsd.org> To: spcoltri@omcl.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21855: From MAINTAINER: update MASTER_SITES for ports/games/baduki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: From MAINTAINER: update MASTER_SITES for ports/games/baduki State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 21:56:45 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21855 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22: 1:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17F0237B66E; Mon, 9 Oct 2000 22:00:36 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA18706; Mon, 9 Oct 2000 22:00:35 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 22:00:35 -0700 (PDT) From: Message-Id: <200010100500.WAA18706@freefall.freebsd.org> To: gonza@techline.ru, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21854: update ports: mail/smapi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports: mail/smapi State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 22:00:22 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22: 4:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 2CFFD37B502 for ; Mon, 9 Oct 2000 22:04:41 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id BAA14437; Tue, 10 Oct 2000 01:04:30 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A54BY99691; Mon, 9 Oct 2000 22:04:11 -0700 (PDT) (envelope-from asami) To: "Akinori MUSHA" Cc: freebsd-ports@FreeBSD.org Subject: Re: bsd.port.mk: No need to create FILESDIR on makesum References: <86n1gdwhr7.wl@archon.local.idaemons.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 22:04:04 -0700 In-Reply-To: "Akinori MUSHA"'s message of "Tue, 10 Oct 2000 11:29:48 +0900" Message-ID: Lines: 10 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "Akinori MUSHA" * I found a "make makesum" creates ${FILESDIR} when it's no longer * necessary. Please apply the following patch. * - @${MKDIR} ${FILESDIR} Oops. Thanks, will 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 Oct 9 22: 7:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A1B237B689; Mon, 9 Oct 2000 22:07:39 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA24366; Mon, 9 Oct 2000 22:07:39 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 22:07:39 -0700 (PDT) From: Message-Id: <200010100507.WAA24366@freefall.freebsd.org> To: anders@fix.no, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21848: Update port: audio/xsidplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/xsidplay State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 22:07:25 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21848 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22: 8:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from maynard.mail.mindspring.net (maynard.mail.mindspring.net [207.69.200.243]) by hub.freebsd.org (Postfix) with ESMTP id 0907737B66D; Mon, 9 Oct 2000 22:08:48 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id BAA09743; Tue, 10 Oct 2000 01:08:43 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A58eR99743; Mon, 9 Oct 2000 22:08:40 -0700 (PDT) (envelope-from asami) To: Will Andrews Cc: Maxim Sobolev , bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <20001009213709.M1067@puck.firepipe.net> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 22:08:37 -0700 In-Reply-To: Will Andrews's message of "Mon, 9 Oct 2000 21:37:09 -0500" Message-ID: Lines: 15 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Will Andrews * Yes. You can do regex in make(1) using :C/// var modifier. Currently * this is only available in -current, and has been there barely 24 hours. * I was planning to MFC it at BSDCon (among other make(1) things I'm going * to fix later tonight or tomorrow) to RELENG_[43] and possibly * RELENG_2_[2,1_0]. Oh, goodie. However, is there some way to test make's own version? I'm not sure if bsd.port.mk will be able to print out "go get the upgrade kit" if make itself is old.... Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:10:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 803A937B66E; Mon, 9 Oct 2000 22:10:09 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA25350; Mon, 9 Oct 2000 22:10:09 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 22:10:09 -0700 (PDT) From: Message-Id: <200010100510.WAA25350@freefall.freebsd.org> To: anders@fix.no, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21847: Update port: www/thttpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/thttpd State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 22:09:58 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21847 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:13: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 8B21237B502; Mon, 9 Oct 2000 22:13:05 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id BAA10862; Tue, 10 Oct 2000 01:13:03 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A5CuL99781; Mon, 9 Oct 2000 22:12:56 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Mon, 9 Oct 2000 22:12:56 -0700 (PDT) Message-Id: <200010100512.e9A5CuL99781@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: sobomax@FreeBSD.org, ports@FreeBSD.org In-reply-to: (asami@FreeBSD.org) Subject: Re: PROPOSAL: Handling of GNU Texinfo documentation in bsd.port.mk [patch] From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) References: <39E1803D.7A049B1D@FreeBSD.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Sounds like a good idea. You need to extend it to deal with split * info files (foo.info-1, foo.info-2, etc.) though. It will be nice if it can deal with compressed info pages too. (For that matter, it will be nice if it can be extended to compress info pages too. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:15:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BDE637B502; Mon, 9 Oct 2000 22:15:27 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA27486; Mon, 9 Oct 2000 22:15:27 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 22:15:27 -0700 (PDT) From: Message-Id: <200010100515.WAA27486@freefall.freebsd.org> To: bsdx@looksharp.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21842: Update port: sysutils/gcombust [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/gcombust [MAINTAINER] State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 22:15:13 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21842 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:30: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 5948D37B66C for ; Mon, 9 Oct 2000 22:30:06 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id e9A5U3Y11361 for ; Mon, 9 Oct 2000 23:30:04 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id XAA23104 for ; Mon, 9 Oct 2000 23:30:03 -0600 (MDT) Message-Id: <200010100530.XAA23104@harmony.village.org> To: ports@freebsd.org Subject: portlint bad, or did I make a bad commit? Date: Mon, 09 Oct 2000 23:30:03 -0600 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org cd /usr/ports/net/socks5 portlint | grep -v OK FATAL: extra item "PORTREVISION" placed in the PORTNAME section. WARN: no MASTER_SITES found. is it ok? 1 fatal errors and 1 warnings found. The MASTER_SITES part is right, but if PORTREVISION doesn't belong in the PORTNAME section, where does it belong? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:33:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5E8837B503; Mon, 9 Oct 2000 22:33:10 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA33872; Mon, 9 Oct 2000 22:33:10 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 22:33:10 -0700 (PDT) From: Message-Id: <200010100533.WAA33872@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21833: Update chinese/libtabe to 0.1.7, from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update chinese/libtabe to 0.1.7, from maintainer State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 22:32:58 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21833 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:37:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36F6537B503; Mon, 9 Oct 2000 22:37:37 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA35505; Mon, 9 Oct 2000 22:37:37 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 9 Oct 2000 22:37:37 -0700 (PDT) From: Message-Id: <200010100537.WAA35505@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21832: Update port: chinese/xcin25, from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: chinese/xcin25, from maintainer State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 9 22:37:18 PDT 2000 State-Changed-Why: Commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21832 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:45:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 50F9237B66C; Mon, 9 Oct 2000 22:45:42 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 114811908; Tue, 10 Oct 2000 00:45:50 -0500 (EST) Date: Tue, 10 Oct 2000 00:45:50 -0500 From: Will Andrews To: Satoshi - Ports Wraith - Asami Cc: Will Andrews , Maxim Sobolev , bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] Message-ID: <20001010004549.R1067@puck.firepipe.net> Reply-To: Will Andrews References: <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <20001009213709.M1067@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.ORG on Mon, Oct 09, 2000 at 10:08:37PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 10:08:37PM -0700, Satoshi - Ports Wraith - Asami wrote: > Oh, goodie. After quick discussion with Bill, I've decided I'm not MFC'ing to 2.x. But still 3.x and 4.x. > However, is there some way to test make's own version? I'm not sure > if bsd.port.mk will be able to print out "go get the upgrade kit" if > make itself is old.... Sorry, no idea about how to do that. Wonder how NetBSD/OpenBSD handled it. Probably should check. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 22:58: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8E4B237B66C; Mon, 9 Oct 2000 22:58:03 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id IAA02661; Tue, 10 Oct 2000 08:57:58 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9A5vu201775; Tue, 10 Oct 2000 08:57:56 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E2AFE2.EF3DE9D0@FreeBSD.org> Date: Tue, 10 Oct 2000 08:57:55 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Lea Cc: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Problems with bsd.gnome.mk [patch] References: <39E184FE.7FCE1E41@FreeBSD.org> <20001009094132.H30468@shale.csir.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Lea wrote: > Hi, > > On Mon, Oct 09, 2000 at 11:42:38AM +0300, Maxim Sobolev wrote: > > I wonder if anyone noticed that bsd.gnome.mk does quite strange things with > > package names when WANT_* defined, so example if you have WANT_GNOME defined in > > your /etc/make.conf and gnome is in fact installed: > > Try defining WITH_GTK in /etc/make.conf and come back to me on this. > The behaviuor is entirely intentional, if you happen to read the > documentation. WANT is for a port's makefile. Hmm, it was not obvious from the bsd.gnome.mk. > > Also I don't like the fact that bsd.gnome.mk adds > > --localstatedir=${PREFIX}/share/gnome and --datadir=${PREFIX}/share/gnome > > configure arguments even for those ports, which contains optional GNOME > > dependencies, so for example port installs its files into ${PREFIX}/share/foo > > for nognome case, but into ${PREFIX}/share/gnome/foo if WANT_GNOME is defined > > (for example sawfish, xmms etc.). IMO this leads to confusion and doesn't > > really necessary. At least this stuff should be made optional, so only ports > > which really can benefit from that would use this feature. As an example of > > possible problems with this behaviour, please considering somebody writing a > > port of sawfish theme - and confusion as to where the theme files should go - > > into share/gnome/safwish, or share/sawfish. Other packages may have similar > > problems. > > This is an unfortunate sideeffect of a policy decision by both Vanilla > and I when we origionally ported Gnome. We decided that all Gnome apps > should put their data in ${X11BASE}/share/gnome. > > I'm not entirely sure that preventing this behaviour is a good thing. > It leads to Gnome apps being ported in two possible ways: Patching to > remove /gnome from after datadir and helpdir, and patching to add /gnome > after pixmapdir. Solving the problem from a port's perspective is also > fairly simple. You define WANT_GNOME, and then test HAVE_GNOME and > define USE_GNOME. You can then use %%DATADIR%% to get the correct PLIST > entries. > > It looks lile I mananged to screw up with sawfish. The Makefile > shouldn't have had PLIST_SUB's for GNOME in it after I was finnished, > and the PLIST should have had %%DATADIR%%'s. Sorry. > > I'll consider something to turn this off, but only in the case where > Gnome is optional. Yes, at least please provide an option to turn this off, otherwise I'll be forced to revert sawfish and some others mine half-GNOME ports to pre-GNOME state. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23: 7:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from inf.ufsc.br (euryale.inf.ufsc.br [150.162.60.23]) by hub.freebsd.org (Postfix) with ESMTP id 7CAF937B66D for ; Mon, 9 Oct 2000 23:07:21 -0700 (PDT) Received: from venus (venus [150.162.60.1]) by inf.ufsc.br (8.9.3/8.9.3) with ESMTP id EAA21992 for ; Tue, 10 Oct 2000 04:11:16 -0300 Date: Tue, 10 Oct 2000 04:11:11 -0300 (EST) From: Antonio Carlos Venancio Junior X-Sender: antonio@venus To: freebsd-ports@freebsd.org Subject: XFMail 1.4.6 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 People, I wanna use XFMail 1.4.6 (actual release) but port version is still 1.4.0 and it has tons of bugs, core dumped all the time, so I cant use it. I already meiled the mantainer and nothing. What is wrong with it? Cya Antonio .-===================================================================-. | Can't buy what I want because its FREE! - Pearl Jam | |-===================================================================-| | antonio@inf.ufsc.br | floripa@zoing.net | antonio@musicramp.com | |-===================================================================-| | ICQ# 9253680 | Floripa | MySQL | PHP | FreeBSD - The Power to Serve | `-===================================================================-' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:11:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by hub.freebsd.org (Postfix) with ESMTP id 2C60737B502 for ; Mon, 9 Oct 2000 23:11:50 -0700 (PDT) Received: from parish ([62.255.96.238]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001009223045.WXGF27285.mta07-svc.ntlworld.com@parish> for ; Mon, 9 Oct 2000 23:30:45 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e99MUPN92829 for ports@freebsd.org; Mon, 9 Oct 2000 23:30:25 +0100 (BST) (envelope-from mark) Date: Mon, 9 Oct 2000 23:30:24 +0100 From: Mark Ovens To: ports@freebsd.org Subject: xmps port doesn't work Message-ID: <20001009233024.G252@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i Organization: Total lack of Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just installed the xmps port, but when I try to run it I get: # xmps No plugins found, aborting... # There is no documentation with the port so I am unable to work out what is wrong. Any ideas? -- 4.4 - The number of the Beastie ________________________________________________________________ 51.44°N FreeBSD - The Power To Serve http://www.freebsd.org 2.057°W My Webpage http://ukug.uk.freebsd.org/~mark mailto:marko@freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:19:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 2AC1C37B66C for ; Mon, 9 Oct 2000 23:19:31 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id B427D1908; Tue, 10 Oct 2000 01:19:42 -0500 (EST) Date: Tue, 10 Oct 2000 01:19:42 -0500 From: Will Andrews To: Warner Losh Cc: ports@FreeBSD.ORG Subject: Re: portlint bad, or did I make a bad commit? Message-ID: <20001010011942.U1067@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Warner Losh , ports@FreeBSD.ORG References: <200010100530.XAA23104@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010100530.XAA23104@harmony.village.org>; from imp@village.org on Mon, Oct 09, 2000 at 11:30:03PM -0600 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 11:30:03PM -0600, Warner Losh wrote: > cd /usr/ports/net/socks5 > portlint | grep -v OK > FATAL: extra item "PORTREVISION" placed in the PORTNAME section. > WARN: no MASTER_SITES found. is it ok? > 1 fatal errors and 1 warnings found. > > The MASTER_SITES part is right, but if PORTREVISION doesn't belong in > the PORTNAME section, where does it belong? Portlint tends to lag behind things lately. Sorry. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:21: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 9AAE637B66D for ; Mon, 9 Oct 2000 23:20:57 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id e9A6KoY11592; Tue, 10 Oct 2000 00:20:51 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id AAA23604; Tue, 10 Oct 2000 00:20:50 -0600 (MDT) Message-Id: <200010100620.AAA23604@harmony.village.org> To: Will Andrews Subject: Re: portlint bad, or did I make a bad commit? Cc: ports@FreeBSD.ORG In-reply-to: Your message of "Tue, 10 Oct 2000 01:19:42 CDT." <20001010011942.U1067@puck.firepipe.net> References: <20001010011942.U1067@puck.firepipe.net> <200010100530.XAA23104@harmony.village.org> Date: Tue, 10 Oct 2000 00:20:50 -0600 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20001010011942.U1067@puck.firepipe.net> Will Andrews writes: : On Mon, Oct 09, 2000 at 11:30:03PM -0600, Warner Losh wrote: : > cd /usr/ports/net/socks5 : > portlint | grep -v OK : > FATAL: extra item "PORTREVISION" placed in the PORTNAME section. : > WARN: no MASTER_SITES found. is it ok? : > 1 fatal errors and 1 warnings found. : > : > The MASTER_SITES part is right, but if PORTREVISION doesn't belong in : > the PORTNAME section, where does it belong? : : Portlint tends to lag behind things lately. Sorry. So I shouldn't sweat it? Good. I won't. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:24:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id C58CC37B502 for ; Mon, 9 Oct 2000 23:24:22 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id A6C671908; Tue, 10 Oct 2000 01:24:29 -0500 (EST) Date: Tue, 10 Oct 2000 01:24:29 -0500 From: Will Andrews To: Warner Losh Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: portlint bad, or did I make a bad commit? Message-ID: <20001010012429.W1067@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Warner Losh , ports@FreeBSD.ORG References: <20001010011942.U1067@puck.firepipe.net> <200010100530.XAA23104@harmony.village.org> <20001010011942.U1067@puck.firepipe.net> <200010100620.AAA23604@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010100620.AAA23604@harmony.village.org>; from imp@village.org on Tue, Oct 10, 2000 at 12:20:50AM -0600 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 10, 2000 at 12:20:50AM -0600, Warner Losh wrote: > So I shouldn't sweat it? Good. I won't. Yeah, don't worry about it. I'm going to review some patches that should help bring portlint up to par with the current tree, and hopefully commit tonight. Thanks for the heads-up. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:25:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9F77537B502; Mon, 9 Oct 2000 23:25:12 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id JAA03121; Tue, 10 Oct 2000 09:24:59 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9A6P1201848; Tue, 10 Oct 2000 09:25:01 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E2B63B.3A32622E@FreeBSD.org> Date: Tue, 10 Oct 2000 09:24:59 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.org Subject: Re: PROPOSAL: Handling of GNU Texinfo documentation in bsd.port.mk [patch] References: <39E1803D.7A049B1D@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > * From: Maxim Sobolev > > * [...] > * INFOPAGES= foo bar > * [...] > * > * In more complex cases, when the installed infopages for some strange reason > * don't contain information required for install-info(1) to register those pages > * into info/dir directory file, you may need something like the following: > * > * [...] > * INFOPAGES= foo%"Utilities"%"* Foo: (foo). Foo manual" \ > * bar%"Utilities"%"* Bar: (bar). Bar manual" > * > * As usually any comments/suggestions are welcomed. > > Sounds like a good idea. You need to extend it to deal with split > info files (foo.info-1, foo.info-2, etc.) though. I was thinking about it, but it seems that it would create additional overhead, which is not quite required, as it is easier to either patch appropriate Makefile to produce non-split info files, or at least add additional files into pkg-plist as usually. What do you think? > * + (${ECHO} "@unexec ${INSTALL-INFO} --delete %D/$${_INFOPAGE} ${LOCALINFODIR}"; \ > * + ${ECHO} $${_INFOPAGE}; \ > * + ${ECHO} "@exec ${INSTALL-INFO} $${_INFOSECTION} $${_INFOENTRY} %D/$${_INFOPAGE} ${LOCALINFODIR}") >> ${TMPPLIST}; \ > > You don't need to put the "@unexec" before the files -- install-info > --delete doesn't require the info files to be present anymore. I > recommend you put them in the normal "file, @exec, @unexec" order for > ease to understand. Noted, thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:33:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 593DE37B502; Mon, 9 Oct 2000 23:33:24 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id IAA65633; Tue, 10 Oct 2000 08:32:50 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A6WNx92482; Mon, 9 Oct 2000 23:32:23 -0700 (PDT) (envelope-from reg) Date: Mon, 9 Oct 2000 23:32:23 -0700 From: Jeremy Lea To: Satoshi Asami Cc: ade@freebsd.org, ports@freebsd.org Subject: Re: share/locale Message-ID: <20001009233223.K30468@shale.csir.co.za> References: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu>; from asami@freebsd.org on Mon, Oct 09, 2000 at 02:33:35PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 09, 2000 at 02:33:35PM -0700, Satoshi Asami wrote: > It might be a figment of my imagination but there seem to be some > ports that are leaving the share/locale directory behind after the > bsd.gnome.mk change. > > http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.20001008/windowmaker-0.62.1.log This ones never been found out before... It was making ${LOCALBASE}/lib/locale. Needs a depenency on gettext. > http://bento.FreeBSD.org/errorlogs/errorlogs/a.4.20001008/freeciv-1.11.4.log My fault. I removed a bunch of @dirrm's, but I didn't notice that the port doesn't depend on gettext in the non-imlib case. I also broke freeciv-gtk, which is not really freeciv-gtk, but freeciv-imlib. Patches attached. Add gettext dependency for both. -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ x11-wm/windowmaker: Maintainer: sobomax@FreeBSD.org Changes: Makefile pkg-plist Adds : Removes: --- /usr/ports.ref/x11-wm/windowmaker/Makefile Thu Oct 5 00:22:54 2000 +++ x11-wm/windowmaker/Makefile Mon Oct 9 23:29:46 2000 @@ -20,7 +20,8 @@ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.4:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ - PropList.2:${PORTSDIR}/devel/libPropList + PropList.2:${PORTSDIR}/devel/libPropList \ + intl.1:${PORTSDIR}/devel/gettext USE_BZIP2= yes USE_PERL5= yes @@ -30,7 +31,8 @@ USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ENV= X11BASE=${X11BASE} LIBS=-L${LOCALBASE}/lib \ - CPPFLAGS=-I${LOCALBASE}/include + CPPFLAGS=-I${LOCALBASE}/include \ + LINGUAS="cs da de el es fi fr gl hr it ja ko nl no pl pt ro ru se sk tr zh_CN zh_TW.Big5" CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \ --with-nlsdir=${PREFIX}/share/locale \ --with-libs-from="-L${LOCALBASE}/lib" \ --- /usr/ports.ref/x11-wm/windowmaker/pkg-plist Thu Jun 15 09:44:05 2000 +++ x11-wm/windowmaker/pkg-plist Mon Oct 9 23:29:21 2000 @@ -312,6 +312,42 @@ share/WindowMaker/plmenu.zh_CN share/WindowMaker/wmmacros share/WindowMaker/xtree.dat +share/locale/cs/LC_MESSAGES/WPrefs.mo +share/locale/cs/LC_MESSAGES/WindowMaker.mo +share/locale/da/LC_MESSAGES/WindowMaker.mo +share/locale/de/LC_MESSAGES/WPrefs.mo +share/locale/de/LC_MESSAGES/WindowMaker.mo +share/locale/el/LC_MESSAGES/WindowMaker.mo +share/locale/es/LC_MESSAGES/WPrefs.mo +share/locale/es/LC_MESSAGES/WindowMaker.mo +share/locale/fi/LC_MESSAGES/WPrefs.mo +share/locale/fi/LC_MESSAGES/WindowMaker.mo +share/locale/fr/LC_MESSAGES/WPrefs.mo +share/locale/fr/LC_MESSAGES/WindowMaker.mo +share/locale/gl/LC_MESSAGES/WindowMaker.mo +share/locale/hr/LC_MESSAGES/WPrefs.mo +share/locale/hr/LC_MESSAGES/WindowMaker.mo +share/locale/it/LC_MESSAGES/WPrefs.mo +share/locale/it/LC_MESSAGES/WindowMaker.mo +share/locale/ja/LC_MESSAGES/WPrefs.mo +share/locale/ja/LC_MESSAGES/WindowMaker.mo +share/locale/ko/LC_MESSAGES/WPrefs.mo +share/locale/ko/LC_MESSAGES/WindowMaker.mo +share/locale/nl/LC_MESSAGES/WindowMaker.mo +share/locale/no/LC_MESSAGES/WindowMaker.mo +share/locale/pl/LC_MESSAGES/WindowMaker.mo +share/locale/pt/LC_MESSAGES/WPrefs.mo +share/locale/pt/LC_MESSAGES/WindowMaker.mo +share/locale/ro/LC_MESSAGES/WindowMaker.mo +share/locale/ru/LC_MESSAGES/WPrefs.mo +share/locale/ru/LC_MESSAGES/WindowMaker.mo +share/locale/se/LC_MESSAGES/WindowMaker.mo +share/locale/sk/LC_MESSAGES/WindowMaker.mo +share/locale/tr/LC_MESSAGES/WindowMaker.mo +share/locale/zh_CN/LC_MESSAGES/WPrefs.mo +share/locale/zh_CN/LC_MESSAGES/WindowMaker.mo +share/locale/zh_TW.Big5/LC_MESSAGES/WPrefs.mo +share/locale/zh_TW.Big5/LC_MESSAGES/WindowMaker.mo @exec mkdir -p %B/Sounds @dirrm share/WindowMaker/Themes/STEP2000.themed @dirrm share/WindowMaker/Themes/Night.themed games/freeciv: Maintainer: sheldonh@freebsd.org Changes: Makefile Adds : Removes: --- /usr/ports.ref/games/freeciv/Makefile Wed Oct 4 23:57:34 2000 +++ games/freeciv/Makefile Mon Oct 9 22:37:09 2000 @@ -14,10 +14,14 @@ MAINTAINER= sheldonh@freebsd.org +LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext + USE_XPM= yes USE_BZIP2= yes WANT_IMLIB= yes GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" .include @@ -26,5 +30,11 @@ .else CONFIGURE_ARGS= --disable-gtktest .endif + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ + s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \ + s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure .include games/freeciv-gtk: Maintainer: Changes: Makefile Adds : Removes: --- /usr/ports.ref/games/freeciv-gtk/Makefile Tue Apr 25 23:56:18 2000 +++ games/freeciv-gtk/Makefile Mon Oct 9 22:37:27 2000 @@ -7,6 +7,6 @@ MASTERDIR= ${.CURDIR}/../freeciv -WITH_GTK= yes +WITH_IMLIB= yes .include "${MASTERDIR}/Makefile" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:36:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9929F37B503; Mon, 9 Oct 2000 23:36:34 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id JAA03325; Tue, 10 Oct 2000 09:36:13 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9A6aF201879; Tue, 10 Oct 2000 09:36:15 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E2B8DD.C7099DE3@FreeBSD.org> Date: Tue, 10 Oct 2000 09:36:13 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: bmah@FreeBSD.org, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > * * From: Maxim Sobolev > > * 2. What is proposed? > * > * It is proposed to plant into package short information about path of the underlying > * port, from which installed packages was generated, in the Ports Tree. Due to the fact > > This is a very good idea. I've wanted this for years. :) I like that you like it ;). > * 3. How it would work? > * > * When creating package, bsd.port.mk will generate MASTERCATEGORY/PORTDIR string and > * feed it to pkg_create. Here MASTERCATEGORY is the first category specified in port's > * CATEGORIES and it should coincide with name of corresponding parent directory in the > * ports tree. It was defined in such way to properly handle ports installed w/o parent > > Yes, I think it is correct to make that assumption. (I believe it is > documented in the Porter's Handbook as a rule, but if it is not, it > should be.) /me goes to read Porter's Handbook ;). > * current version of the package in the Ports Collection. All other packages (for > * example old packages w/o origin, third party packages etc.) will be handled using > * ports/INDEX. > > Sounds good. Well, I don't think third party packages will be > "handled" all that well using ports/INDEX since they aren't in there > (unless the user edited the file manually to put it in :), but I > assume you are saying it will just fall back to the old method of > using INDEX if the port directory is found, which is of course fine. Correct. > Same goes for ports that have been repo-copied, but of course this > can't be helped. Unfortunately :( > * With this message I'm attaching appropriate patches for pkg_* tools and bsd.port.mk. > > I'm not capable of reviewing patches to pkg_* tools but on the > bsd.port.mk patch: > > * +SED?= /usr/bin/sed > * +BASENAME?= /usr/bin/basename > > I should just move the whole damn section up here. Yes, it would be fine. Also it would be nice to add /usr/bin/find and /usr/bin/xargs into this section. Alternative I would propose to create share/mk/bsd.commands.mk, so not only ports, but all others make(1) users would benefit from it. > * + > * +.if ${OSVERSION} > 500012 > > Don't worry about the OSVERSION check, I'll make an upgrade kit and > bump BSDPORTMKVERSION to make sure people will have the newest pkg_* > tools. Ok, I added it just for completeness sake ;). > * +_PKGCATEGORY!= ${ECHO} ${CATEGORIES} | ${SED} -E 's|^ *||g ; s| .*$$||' > * +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} > > I wish we could do these substitutions without having to invoke > separate processes though. Will, aren't there ways to do this in > make? Yes, it should be possible when current Will's efforts to bring :C/// into make(1) is finished. I do not see any way to avoid ${BASENAME}, though. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:37:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id E886B37B503; Mon, 9 Oct 2000 23:37:48 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id IAA65706; Tue, 10 Oct 2000 08:37:29 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A6awF92633; Mon, 9 Oct 2000 23:36:58 -0700 (PDT) (envelope-from reg) Date: Mon, 9 Oct 2000 23:36:58 -0700 From: Jeremy Lea To: Satoshi - Ports Wraith - Asami Cc: ade@freebsd.org, ports@freebsd.org Subject: Re: share/locale Message-ID: <20001009233658.L30468@shale.csir.co.za> References: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@freebsd.org on Mon, Oct 09, 2000 at 02:38:03PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 09, 2000 at 02:38:03PM -0700, Satoshi Asami wrote: > Oops, found another one -- this one's share/help. I was expecting a few of these. Whether people should be installing Gnome help files if they are not using Gnome is debatable. Same applies to pixmaps. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ editors/gnotepad+: Maintainer: brett@peloton.runet.edu Changes: pkg-plist Adds : Removes: --- /usr/ports.ref/editors/gnotepad+/pkg-plist Thu Oct 5 00:22:33 2000 +++ editors/gnotepad+/pkg-plist Mon Oct 9 23:34:46 2000 @@ -141,5 +141,6 @@ share/locale/ja/LC_MESSAGES/gnotepad+.mo @dirrm %%DATADIR%%/help/gnotepad+/C @dirrm %%DATADIR%%/help/gnotepad+ +%%NOGNOME:%%@dirrm %%DATADIR%%/help @dirrm %%DATADIR%%/gnotepad+/xpm @dirrm %%DATADIR%%/gnotepad+ net/gaim: Maintainer: jim@FreeBSD.org Changes: pkg-plist Adds : Removes: --- /usr/ports.ref/net/gaim/pkg-plist Mon Oct 9 22:54:01 2000 +++ net/gaim/pkg-plist Mon Oct 9 22:52:41 2000 @@ -130,5 +130,5 @@ %%GNOME:%%@dirrm share/gnome/sounds/gaim @dirrm %%DATADIR%%/pixmaps/gaim/gnome @dirrm %%DATADIR%%/pixmaps/gaim -@dirrm %%DATADIR%%/pixmaps +%%NOGNOME:%%@dirrm %%DATADIR%%/pixmaps @dirrm lib/gaim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:40:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 1AB7E37B502; Mon, 9 Oct 2000 23:40:10 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id IAA65743; Tue, 10 Oct 2000 08:39:51 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A6dQ992726; Mon, 9 Oct 2000 23:39:26 -0700 (PDT) (envelope-from reg) Date: Mon, 9 Oct 2000 23:39:26 -0700 From: Jeremy Lea To: Satoshi - Ports Wraith - Asami Cc: ade@freebsd.org, ports@freebsd.org Subject: Re: share/locale Message-ID: <20001009233926.M30468@shale.csir.co.za> References: <200010092133.e99LXZa94937@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@freebsd.org on Mon, Oct 09, 2000 at 02:40:15PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 09, 2000 at 02:40:15PM -0700, Satoshi Asami wrote: > Not sure if it's related, but this one's failing in pkg_create trying > to find a bunch of gnome stuff. > > http://bento.FreeBSD.org/errorlogs/errorlogs/e.4.20001008/screem-0.3.0.log Me again... This one must have been missed in my build testing. The plugins should be going into ${PREFIX}/lib not ${PREFIX}/share so: Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ www/screem: Maintainer: ports@FreeBSD.org Changes: Makefile pkg-plist Adds : Removes: --- /usr/ports.ref/www/screem/Makefile Thu Oct 5 00:17:22 2000 +++ www/screem/Makefile Mon Oct 9 23:02:17 2000 @@ -30,7 +30,7 @@ @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ - 's|\@GNOME_DATA_PREFIX\@/gnome|\@GNOME_DATA_PREFIX\@|g ; \ + 's|\@GNOME_DATA_PREFIX\@|\$$\(datadir\)|g ; \ s|\$\(datadir\)/gnome|\$\(datadir\)|g ; \ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' --- /usr/ports.ref/www/screem/pkg-plist Mon Aug 21 03:55:21 2000 +++ www/screem/pkg-plist Mon Oct 9 22:23:22 2000 @@ -1,4 +1,17 @@ bin/screem +lib/screem/plugins/colourWizard.so +lib/screem/plugins/cssWizard.so +lib/screem/plugins/entityWizard.so +lib/screem/plugins/formWizard.so +lib/screem/plugins/frameWizard.so +lib/screem/plugins/galleryWizard.so +lib/screem/plugins/imageWizard.so +lib/screem/plugins/linkWizard.so +lib/screem/plugins/mailWizard.so +lib/screem/plugins/script.scm +lib/screem/plugins/ssiWizard.so +lib/screem/plugins/tableWizard.so +lib/screem/plugins/uploadWizard.so share/gnome/apps/Development/screem.desktop share/gnome/help/screem/C/authors.html share/gnome/help/screem/C/buttons.html @@ -213,19 +226,6 @@ share/gnome/screem/htmlhelp/values.html share/gnome/screem/htmlhelp/wdglogo-small.gif share/gnome/screem/htmlhelp/wdglogo1.gif -share/gnome/screem/plugins/colourWizard.so -share/gnome/screem/plugins/cssWizard.so -share/gnome/screem/plugins/entityWizard.so -share/gnome/screem/plugins/formWizard.so -share/gnome/screem/plugins/frameWizard.so -share/gnome/screem/plugins/galleryWizard.so -share/gnome/screem/plugins/imageWizard.so -share/gnome/screem/plugins/linkWizard.so -share/gnome/screem/plugins/mailWizard.so -share/gnome/screem/plugins/script.scm -share/gnome/screem/plugins/ssiWizard.so -share/gnome/screem/plugins/tableWizard.so -share/gnome/screem/plugins/uploadWizard.so share/gnome/screem/resources/Images/made.jpg share/gnome/screem/screem.tagtree share/gnome/screem/syntax/html.screem.syntax @@ -246,7 +246,6 @@ @dirrm share/gnome/screem/resources/HTML @dirrm share/gnome/screem/resources/Applets @dirrm share/gnome/screem/resources -@dirrm share/gnome/screem/plugins @dirrm share/gnome/screem/htmlhelp/tables @dirrm share/gnome/screem/htmlhelp/special @dirrm share/gnome/screem/htmlhelp/phrase @@ -269,3 +268,4 @@ @dirrm share/gnome/help/screem/C/figs @dirrm share/gnome/help/screem/C @dirrm share/gnome/help/screem +@dirrm lib/screem/plugins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 9 23:57:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 26A0137B502; Mon, 9 Oct 2000 23:57:28 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id CAA08518; Tue, 10 Oct 2000 02:57:14 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9A6vA201365; Mon, 9 Oct 2000 23:57:10 -0700 (PDT) (envelope-from asami) To: Will Andrews Cc: Maxim Sobolev , bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG, bde@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <20001009213709.M1067@puck.firepipe.net> <20001010004549.R1067@puck.firepipe.net> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 09 Oct 2000 23:57:06 -0700 In-Reply-To: Will Andrews's message of "Tue, 10 Oct 2000 00:45:50 -0500" Message-ID: Lines: 90 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Will Andrews * After quick discussion with Bill, I've decided I'm not MFC'ing to 2.x. * But still 3.x and 4.x. That's good enough for ports. :) * Sorry, no idea about how to do that. Wonder how NetBSD/OpenBSD handled * it. Probably should check. That would be nice. :) By the way, since you are doing make(1) stuff...I have a request. The way make handles targets is suboptimal. Try the following Makefile with -j5 and you'll see what I mean. === .for l in a b c d e .for i in 1 2 3 4 5 all:: ${l}${i} ${l}${i}: @sleep 1 @echo ${l}${i} .endfor .endfor e5: f0 f0: f1 f1: f2 f2: f3 f3: f4 .for i in 0 1 2 3 4 f${i}: @sleep 1 @echo f${i} .endfor === The number of targets is 30, the longest dependency chain is length 6 so make -j5 should be able to complete it in 6 seconds. Yet it takes 10 seconds because it doesn't notice that e5 depends on f0 which depends on f1, etc., until it tries to create e5. I believe this is the way make works. When it is asked to create a job, it will take something from the heap (queue) of stuff to do. If it's not ready to be made (because it has unmade dependencies), drop it on the floor and go get another one. Other than just not taking the length of the chain into account, I think the "drop it on the floor" has a pessimization effect. Reordering the variables in the above Makefile doesn't help at all; for instance, changing it like this: === .for l in e d b c a .for i in 5 4 3 2 1 all:: ${l}${i} ${l}${i}: @sleep 1 @echo ${l}${i} .endfor .endfor f3: f4 f2: f3 f1: f2 f0: f1 e5: f0 .for i in 0 1 2 3 4 f${i}: @sleep 1 @echo f${i} .endfor === you might think it will try to make the f's first but it won't. I think it's because it always adds the dependencies to the end of the queue or something. If you can make it recognize that there is a long chain e5 <- f0 <- ... <- f4 and try to take stuff from the head of that chain while it has slots to fill, the package building cluster will be eternally grateful to you. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 0: 0: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CECD937B503 for ; Tue, 10 Oct 2000 00:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA68495; Tue, 10 Oct 2000 00:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 10 Oct 2000 00:00:01 -0700 (PDT) Message-Id: <200010100700.AAA68495@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/21875: Update german/webalizer (by maintainer) Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21875; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/21875: Update german/webalizer (by maintainer) Date: Tue, 10 Oct 2000 08:45:23 +0200 > State-Changed-Why: > Patches don't appliy cleanly. See: > > >> Checksum OK for webalizer-2.01-05-src.tar.bz2. > ===> de-webalizer-2.1.5 depends on executable: bzip2 - found > ===> de-webalizer-2.1.5 depends on shared library: gd.1 - found > ===> Patching for de-webalizer-2.1.5 > ===> Applying FreeBSD patches for de-webalizer-2.1.5 > 4 out of 4 hunks failed--saving rejects to webalizer.c.rej > >> Patch patch-af failed to apply cleanly. > >> Patch(es) patch-ae applied cleanly. > *** Error code 1> > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21875 Please remove all the "patches" and "script" files. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 0: 2:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 2150F37B503; Tue, 10 Oct 2000 00:01:39 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id IAA65862; Tue, 10 Oct 2000 08:59:31 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A6x0504621; Mon, 9 Oct 2000 23:59:00 -0700 (PDT) (envelope-from reg) Date: Mon, 9 Oct 2000 23:59:00 -0700 From: Jeremy Lea To: Akinori MUSHA Cc: asami@FreeBSD.ORG, yasuf@bsdclub.org, leeym@bsd.ce.ntu.edu.tw, knu@FreeBSD.ORG, kevlo@FreeBSD.ORG, ade@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: New order check done Message-ID: <20001009235900.N30468@shale.csir.co.za> References: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> <86og0twic9.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86og0twic9.wl@archon.local.idaemons.org>; from knu@idaemons.org on Tue, Oct 10, 2000 at 11:17:10AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, Oct 10, 2000 at 11:17:10AM +0900, Akinori MUSHA wrote: > It was caused because someone removed the below line: > > CONFIGURE_ARGS= ${GTK_CONFIG} > > Ruby-gtk's configure script is _not_ a GNU one and it takes > gtk-config's name as the first command line argument followed by some > options that start with "--". Sorry, that was me. The configure script finds imlib-config if it is installed, so it was passing my test builds with WITHOUT_IMLIB=yes, and I couldn't find any use for the CONFIGURE_ARGS, since the port didn't define (HAS|GNU)_CONFIGURE. You might want to consider using EXTCONF_ARGS rather than reusing CONFIGURE_ARGS. > I confirmed the following patch fixes it. Fukuma-san, would you > approve this change? > > Index: Makefile > =================================================================== > RCS file: /home/ncvs/ports/x11-toolkits/ruby-gtk/Makefile,v > retrieving revision 1.15 > diff -u -r1.15 Makefile > --- Makefile 2000/10/08 10:23:45 1.15 > +++ Makefile 2000/10/10 01:52:45 > @@ -15,14 +15,14 @@ > > MAINTAINER= yasuf@bsdclub.org > > -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} > - > USE_RUBY= yes > USE_RUBY_EXTCONF= yes > USE_XLIB= yes > USE_GTK= yes > WANT_IMLIB= yes > > +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} > +CONFIGURE_ARGS= ${GTK_CONFIG} > INSTALL_TARGET= site-install WRKSRC should be between the DEPENDS and USE sections, IIRC, and CONFIGURE_ARGS should be part of the USE section and seperated from INSTALL_TARGET by an empty line. -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 0:41:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 6CF8637B502; Tue, 10 Oct 2000 00:41:21 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id KAA01327; Tue, 10 Oct 2000 10:41:15 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9A7fG201967; Tue, 10 Oct 2000 10:41:16 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E2C818.59B1E871@FreeBSD.org> Date: Tue, 10 Oct 2000 10:41:13 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Lea , ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Problems with bsd.gnome.mk [patch] References: <39E184FE.7FCE1E41@FreeBSD.org> <20001009094132.H30468@shale.csir.co.za> <39E2AFE2.EF3DE9D0@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > > I'm not entirely sure that preventing this behaviour is a good thing. > > It leads to Gnome apps being ported in two possible ways: Patching to > > remove /gnome from after datadir and helpdir, and patching to add /gnome > > after pixmapdir. Solving the problem from a port's perspective is also > > fairly simple. You define WANT_GNOME, and then test HAVE_GNOME and > > define USE_GNOME. You can then use %%DATADIR%% to get the correct PLIST > > entries. I do not see any benefits of this setup for ports with only optional GNOME support. In additional to my previous example with sawfish themes, for example xmms - it's in GNOME case only installs small applet, and IMHO it's not necessary to move the whole share/xmms into share/gnome. It's definitely not worth in this case to pollute pkg-plist with %%DATADIR%%, which creates additional headache in the case when you have to upgrade the port. Please make GNOME's CONFIGURE_ARGS optional! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 1: 0: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1263437B66C for ; Tue, 10 Oct 2000 01:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA90369; Tue, 10 Oct 2000 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 5814237B66C for ; Tue, 10 Oct 2000 00:58:27 -0700 (PDT) Received: (qmail 25408 invoked by uid 0); 10 Oct 2000 07:58:26 -0000 Message-Id: <20001010075826.25407.qmail@ringwraith.office1> Date: 10 Oct 2000 07:58:26 -0000 From: "Peter Pentchev" Reply-To: "Peter Pentchev" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21888: [PATCH] editors/vim5 missing MD5 checksums Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21888 >Category: ports >Synopsis: [PATCH] editors/vim5 missing MD5 checksums >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 Oct 10 01:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: "Peter Pentchev" >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Orbitel JSCo. >Environment: ports tree after David O'Brien's last commit to editors/vim5/Makefile >Description: File: [freebsd] / ports / editors / vim5 / Makefile (download) Revision 1.84, Mon Oct 9 16:59:06 2000 UTC (14 hours, 57 minutes ago) by obrien Branch: MAIN CVS Tags: vim_5_7_10, HEAD Changes since 1.83: +8 -7 lines Update Vim 5.7 to patchlevel 10. This is the commit in question; it adds 10 patchfiles. However, it does not touch the 'distinfo' file, so 'make extract' and everything afterwards fails with missing checksums for the patchfiles. >How-To-Repeat: cd /usr/ports/editors/vim5 && make extract >Fix: diff -urN ports/editors/vim5/distinfo myports/editors/vim5/distinfo --- ports/editors/vim5/distinfo Wed Jun 28 20:56:13 2000 +++ myports/editors/vim5/distinfo Tue Oct 10 10:44:06 2000 @@ -1,2 +1,11 @@ MD5 (vim/vim-5.7-src.tar.gz) = 0b2bca69c7018a8777d8d5390e23d06e MD5 (vim/vim-5.7-rt.tar.gz) = b7d9cbc64479e26f52e2bc58d312bd84 +MD5 (vim/5.7.001) = 4475b6a12422f070eac160eb8ca2c5a0 +MD5 (vim/5.7.002) = 921c4e4d44f1b6688c64449ff3f37cfa +MD5 (vim/5.7.003) = 365dec5b40bcffb08060bf5d85fa6fad +MD5 (vim/5.7.004) = 3fb81bef9aa2a8ed00afcb4de4f2304f +MD5 (vim/5.7.005) = fe14fd3a67a74058749426795cfe5f9d +MD5 (vim/5.7.006) = f3c5eef36c5a2d12c293d1c917ae3bad +MD5 (vim/5.7.007) = 0b1eddade543bdd13f4a5b2b6c21ad2a +MD5 (vim/5.7.008) = b39514242aa4273a8b6ac6682c31e319 +MD5 (vim/5.7.010) = ad101d5fa02db54c7bfadac06dc85ca1 >Release-Note: >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 Oct 10 1: 7: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 343B437B502; Tue, 10 Oct 2000 01:06:59 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA94291; Tue, 10 Oct 2000 01:06:59 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Tue, 10 Oct 2000 01:06:59 -0700 (PDT) From: Message-Id: <200010100806.BAA94291@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/21888: [PATCH] editors/vim5 missing MD5 checksums Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] editors/vim5 missing MD5 checksums Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: trevor Responsible-Changed-When: Tue Oct 10 01:06:29 PDT 2000 Responsible-Changed-Why: to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21888 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 1:47:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from orbix.mobilix.dk (orbix.mobilix.dk [212.97.216.244]) by hub.freebsd.org (Postfix) with ESMTP id B413237B66C for ; Tue, 10 Oct 2000 01:47:21 -0700 (PDT) Received: from ms04.mobilix.dk (ms04.mobilix.dk [172.16.1.24]) by orbix.mobilix.dk (8.9.3/8.9.3) with SMTP id KAA13619 for ; Tue, 10 Oct 2000 10:47:13 +0200 Received: FROM ms07.mobilix.dk BY ms04.mobilix.dk ; Tue Oct 10 10:49:25 2000 +0100 Received: by ms07.mobilix.dk with Internet Mail Service (5.5.2650.21) id <4F74MXPT>; Tue, 10 Oct 2000 10:49:24 +0100 Message-ID: From: =?iso-8859-1?Q?Niels_J=F8rgen_Kokholm?= To: "'lodea@vet.com.au'" Cc: "'ports@FreeBSD.org'" Subject: FreeBSD Port: openldap-1.2.11 Date: Tue, 10 Oct 2000 10:49:22 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/mixed; boundary="----_=_NextPart_000_01C0329F.5DD98820" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C0329F.5DD98820 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Dear Lachlan O'Dea Do you have any plans for making a Port for openldap 2.x? Yours Sincerely Niels J=F8rgen Kokholm <>=20 ------_=_NextPart_000_01C0329F.5DD98820 Content-Type: application/octet-stream; name="=?iso-8859-1?Q?Niels_J=F8rgen_Kokholm=2Evcf?=" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="=?iso-8859-1?Q?Niels_J=F8rgen_Kokholm=2Evcf?=" BEGIN:VCARD VERSION:2.1 N:Kokholm;Niels J=F8rgen FN:Niels J=F8rgen Kokholm ORG:MOBILIX A/S;TID/EDD TITLE:INM Expert NOTE:Niels J=F8rgen Kokholm ADR;WORK:;3.25.E LABEL;WORK:3.25.E EMAIL;PREF;INTERNET:niels.joergen.kokholm@mobilix.dk REV:20001005T075256Z END:VCARD ------_=_NextPart_000_01C0329F.5DD98820-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 1:51:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 41F9337B502; Tue, 10 Oct 2000 01:51:38 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id KAA66582; Tue, 10 Oct 2000 10:51:22 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A8ovq18637; Tue, 10 Oct 2000 01:50:57 -0700 (PDT) (envelope-from reg) Date: Tue, 10 Oct 2000 01:50:57 -0700 From: Jeremy Lea To: Maxim Sobolev Cc: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Problems with bsd.gnome.mk [patch] Message-ID: <20001010015057.O30468@shale.csir.co.za> References: <39E184FE.7FCE1E41@FreeBSD.org> <20001009094132.H30468@shale.csir.co.za> <39E2AFE2.EF3DE9D0@FreeBSD.org> <39E2C818.59B1E871@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E2C818.59B1E871@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 10, 2000 at 10:41:13AM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, Oct 10, 2000 at 10:41:13AM +0300, Maxim Sobolev wrote: > I do not see any benefits of this setup for ports with only optional > GNOME support. In additional to my previous example with sawfish > themes, for example xmms - it's in GNOME case only installs small > applet, and IMHO it's not necessary to move the whole share/xmms into > share/gnome. It's definitely not worth in this case to pollute > pkg-plist with %%DATADIR%%, which creates additional headache in the > case when you have to upgrade the port. Please try this patch. You should be able to override datadir from the port's Makefile. e.g.: CONFIGURE_ARGS= --datadir=${PREFIX}/share -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ Index: bsd.gnome.mk =================================================================== RCS file: /usr/home/ncvs/ports/Mk/bsd.gnome.mk,v retrieving revision 1.3 diff -u -r1.3 bsd.gnome.mk --- bsd.gnome.mk 2000/10/09 16:56:43 1.3 +++ bsd.gnome.mk 2000/10/10 08:48:14 @@ -253,9 +253,15 @@ .endif .if defined(USE_GNOMELIBS) -CONFIGURE_ARGS+=--localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --with-gnome=${PREFIX} +.if defined(HAVE_GNOME) && \ + (${CONFIGURE_ARGS:S/localstatedir//} != ${CONFIGURE_ARGS}) +CONFIGURE_ARGS+=--localstatedir=${PREFIX}/share/gnome +.endif +.if defined(HAVE_GNOME) && \ + (${CONFIGURE_ARGS:S/datadir//} != ${CONFIGURE_ARGS}) +CONFIGURE_ARGS+=--datadir=${PREFIX}/share/gnome \ +.endif +CONFIGURE_ARGS+=--with-gnome=${PREFIX} LIB_DEPENDS+= gnome.4:${PORTSDIR}/x11/gnomelibs GNOME_CONFIG?= ${X11BASE}/bin/gnome-config CONFIGURE_ENV+= GNOME_CONFIG="${GNOME_CONFIG}" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 1:56:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id DCBC737B502; Tue, 10 Oct 2000 01:56:41 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id KAA66656; Tue, 10 Oct 2000 10:56:24 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A8twK23862; Tue, 10 Oct 2000 01:55:58 -0700 (PDT) (envelope-from reg) Date: Tue, 10 Oct 2000 01:55:58 -0700 From: Jeremy Lea To: Maxim Sobolev Cc: ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: Problems with bsd.gnome.mk [patch] Message-ID: <20001010015558.P30468@shale.csir.co.za> References: <39E184FE.7FCE1E41@FreeBSD.org> <20001009094132.H30468@shale.csir.co.za> <39E2AFE2.EF3DE9D0@FreeBSD.org> <39E2C818.59B1E871@FreeBSD.org> <20001010015057.O30468@shale.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001010015057.O30468@shale.csir.co.za>; from reg@FreeBSD.ORG on Tue, Oct 10, 2000 at 01:50:57AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, Oct 10, 2000 at 01:50:57AM -0700, Jeremy Lea wrote: > +CONFIGURE_ARGS+=--datadir=${PREFIX}/share/gnome \ ^^^ Doh. That shouldn't be there. -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 2:18:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 822CB37B66C; Tue, 10 Oct 2000 02:18:29 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id LAA66873; Tue, 10 Oct 2000 11:18:12 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9A9HfK34534; Tue, 10 Oct 2000 02:17:41 -0700 (PDT) (envelope-from reg) Date: Tue, 10 Oct 2000 02:17:40 -0700 From: Jeremy Lea To: Maxim Sobolev Cc: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Problems with bsd.gnome.mk [patch] Message-ID: <20001010021740.Q30468@shale.csir.co.za> References: <39E184FE.7FCE1E41@FreeBSD.org> <20001009094132.H30468@shale.csir.co.za> <39E2AFE2.EF3DE9D0@FreeBSD.org> <39E2C818.59B1E871@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E2C818.59B1E871@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 10, 2000 at 10:41:13AM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, Oct 10, 2000 at 10:41:13AM +0300, Maxim Sobolev wrote: > Please make GNOME's CONFIGURE_ARGS optional! Completely ignore the last patch... I need to go to sleep... -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ Index: bsd.gnome.mk =================================================================== RCS file: /usr/home/ncvs/ports/Mk/bsd.gnome.mk,v retrieving revision 1.3 diff -u -r1.3 bsd.gnome.mk --- bsd.gnome.mk 2000/10/09 16:56:43 1.3 +++ bsd.gnome.mk 2000/10/10 09:14:23 @@ -253,9 +253,13 @@ .endif .if defined(USE_GNOMELIBS) -CONFIGURE_ARGS+=--localstatedir=${PREFIX}/share/gnome \ - --datadir=${PREFIX}/share/gnome \ - --with-gnome=${PREFIX} +.if !defined(HAVE_GNOME) || ${CONFIGURE_ARGS:S/--localstatedir=//} == ${CONFIGURE_ARGS} +CONFIGURE_ARGS+=--localstatedir=${PREFIX}/share/gnome +.endif +.if !defined(HAVE_GNOME) || ${CONFIGURE_ARGS:S/--datadir=//} == ${CONFIGURE_ARGS} +CONFIGURE_ARGS+=--datadir=${PREFIX}/share/gnome +.endif +CONFIGURE_ARGS+=--with-gnome=${PREFIX} LIB_DEPENDS+= gnome.4:${PORTSDIR}/x11/gnomelibs GNOME_CONFIG?= ${X11BASE}/bin/gnome-config CONFIGURE_ENV+= GNOME_CONFIG="${GNOME_CONFIG}" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 2:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32F5137B66D for ; Tue, 10 Oct 2000 02:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA21236; Tue, 10 Oct 2000 02:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wizard.vlink.ru (wizard.vlink.ru [195.239.222.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FED937B66C for ; Tue, 10 Oct 2000 02:19:51 -0700 (PDT) Received: by wizard.vlink.ru (Postfix, from userid 1000) id 65A9EA0D01; Tue, 10 Oct 2000 13:18:59 +0400 (MSD) Message-Id: <20001010091859.65A9EA0D01@wizard.vlink.ru> Date: Tue, 10 Oct 2000 13:18:59 +0400 (MSD) From: dsh@vlink.ru Reply-To: dsh@wizard.vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21889: update comms/qico to 0.48 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21889 >Category: ports >Synopsis: update comms/qico to 0.48 >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 Oct 10 02:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: diff -Nru qico.orig/Makefile qico/Makefile --- qico.orig/Makefile Thu Aug 24 02:12:22 2000 +++ qico/Makefile Tue Oct 10 13:11:09 2000 @@ -1,5 +1,4 @@ # New ports collection makefile for: qico -# Version required: 0.46.2 # Date created: 13 Jan 2000 # Whom: Denis Shaposhnikov # @@ -7,9 +6,12 @@ # PORTNAME= qico -PORTVERSION= 0.46.2 +PORTVERSION= 0.48 +DISTNAME= ${PORTNAME}-${PORTVERSION}.0 CATEGORIES= comms MASTER_SITES= http://lev.serebryakov.spb.ru/download/ +PATCH_SITES= ${MASTER_SITES} +PATCHFILES= ${PORTNAME}-${PORTVERSION}.0-stable.patch.gz MAINTAINER= dsh@vlink.ru diff -Nru qico.orig/distinfo qico/distinfo --- qico.orig/distinfo Wed Aug 23 18:32:16 2000 +++ qico/distinfo Tue Oct 10 13:11:08 2000 @@ -1 +1,2 @@ -MD5 (qico-0.46.2.tar.gz) = 5c585ae8266a8b5132ed4523024e5462 +MD5 (qico-0.48.0.tar.gz) = 7605f61fc4e6b550f66366e0f9016715 +MD5 (qico-0.48.0-stable.patch.gz) = c519677256297a9da8da3228c3b11fdb diff -Nru qico.orig/files/patch-ac qico/files/patch-ac --- qico.orig/files/patch-ac Wed Aug 23 18:32:23 2000 +++ qico/files/patch-ac Tue Oct 10 13:11:09 2000 @@ -1,5 +1,5 @@ --- src/Makefile.orig Tue Aug 15 20:53:42 2000 -+++ src/Makefile Sun Aug 20 10:06:44 2000 ++++ src/Makefile Sat Oct 7 19:06:08 2000 @@ -14,7 +14,7 @@ #DEFS += -DY_DEBUG #-DYYERROR_VERBOSE=1 -DYYDEBUG=100 @@ -9,3 +9,12 @@ ifeq (1,$(STRIP)) IFLAGS = -s else +@@ -23,7 +23,7 @@ + endif + #DLIBS = -lccmalloc -ldl + ifeq (1,$(FREE_BSD)) +-LIBS += -lutil ++#LIBS += -lutil + DEFS += -DFREE_BSD=1 + else + LIBS += diff -Nru qico.orig/files/patch-ad qico/files/patch-ad --- qico.orig/files/patch-ad Wed Aug 23 18:32:23 2000 +++ qico/files/patch-ad Thu Jan 1 03:00:00 1970 @@ -1,29 +0,0 @@ ---- src/ftn.c.orig Tue Aug 15 20:53:42 2000 -+++ src/ftn.c Sun Aug 20 10:14:11 2000 -@@ -2,7 +2,7 @@ - * File: ftn.c - * Created at Thu Jul 15 16:11:27 1999 by pk // aaz@ruxy.org.ru - * ftn tools -- * $Id: ftn.c,v 1.8 2000/08/13 21:10:01 lev Exp $ -+ * $Id: ftn.c,v 1.9 2000/08/16 01:12:21 lev Exp $ - **********************************************************/ - #include - #include -@@ -476,7 +476,7 @@ - - int dosallowin83(int c) - { -- static char dos_allow[] = "!@#$%^&()~`'-_{}."; -+ static char dos_allow[] = "!@#$%^&()~`'-_{}"; - - if((c >= 'a' && c <= 'z') || - (c >= 'A' && c <= 'Z') || -@@ -601,7 +601,7 @@ - nl=el=ec=uc=lc=0; - f=1; - while(*p) { -- if(!dosallowin83(*p)) { -+ if(!dosallowin83(*p) && ('.'!=*p)) { - f=0; - break; - } >Fix: >Release-Note: >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 Oct 10 2:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCAFC37B66D for ; Tue, 10 Oct 2000 02:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA27959; Tue, 10 Oct 2000 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CB92937B66E; Tue, 10 Oct 2000 02:39:11 -0700 (PDT) Message-Id: <20001010093911.CB92937B66E@hub.freebsd.org> Date: Tue, 10 Oct 2000 02:39:11 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21890: ports/net/tintin++ source not found on any mastersite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21890 >Category: ports >Synopsis: ports/net/tintin++ source not found on any mastersite >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 10 02:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andreas Schulz >Release: 4.1-RELEASE >Organization: GMD-FIRST >Environment: FreeBSD freebsd.first.gmd.de 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Wed Aug 30 10:5 2:12 CEST 2000 root@freebsd.first.gmd.de:/usr/src/sys/compile/FREEBSD i386 >Description: tintin++v1.5pl9 can't be found on any mastersite. The first mastersite only has tintin++v1.5pl6, the second is in the moment not reachable and the third seems to have no longer the tree at it, there is no clients subdir under mud available or it is hidden. >How-To-Repeat: Try a make checksum or make fetch. >Fix: Back to the pl6 version or other mastersites that have the newer version ? >Release-Note: >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 Oct 10 2:49:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 4E3B437B502; Tue, 10 Oct 2000 02:49:41 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id MAA03895; Tue, 10 Oct 2000 12:49:28 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9A9nT203122; Tue, 10 Oct 2000 12:49:29 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E2E625.E62C93A1@FreeBSD.org> Date: Tue, 10 Oct 2000 12:49:26 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Lea Cc: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Problems with bsd.gnome.mk [patch] References: <39E184FE.7FCE1E41@FreeBSD.org> <20001009094132.H30468@shale.csir.co.za> <39E2AFE2.EF3DE9D0@FreeBSD.org> <39E2C818.59B1E871@FreeBSD.org> <20001010021740.Q30468@shale.csir.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Lea wrote: > Hi, > > On Tue, Oct 10, 2000 at 10:41:13AM +0300, Maxim Sobolev wrote: > > Please make GNOME's CONFIGURE_ARGS optional! > > Completely ignore the last patch... I need to go to sleep... > > -Jeremy > > -- > FreeBSD - Because the best things in life are free... > http://www.freebsd.org/ > > Index: bsd.gnome.mk > =================================================================== > RCS file: /usr/home/ncvs/ports/Mk/bsd.gnome.mk,v > retrieving revision 1.3 > diff -u -r1.3 bsd.gnome.mk > --- bsd.gnome.mk 2000/10/09 16:56:43 1.3 > +++ bsd.gnome.mk 2000/10/10 09:14:23 > @@ -253,9 +253,13 @@ Looks fine. Please commit. Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 3:32:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-a.chmpgn1.il.home.com [24.181.130.26]) by hub.freebsd.org (Postfix) with ESMTP id D846437B66D for ; Tue, 10 Oct 2000 03:32:30 -0700 (PDT) Received: (from jeremy@localhost) by indigo.external.org (8.9.3/8.9.3) id FAA09808; Tue, 10 Oct 2000 05:32:10 -0500 (CDT) (envelope-from jeremy) Date: Tue, 10 Oct 2000 05:32:09 -0500 From: Jeremy Shaffner To: "Walter C. Pelissero" , ports@freebsd.org Subject: Re: xmovie 1.5.2 for FreeBSD Message-ID: <20001010053209.A5289@external.org> References: <14818.3993.887434.859107@hyde.lpds.sublink.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <14818.3993.887434.859107@hyde.lpds.sublink.org>; from walter@pelissero.org on Mon, Oct 09, 2000 at 07:34:01PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 09, 2000 at 07:34:01PM +0100, Walter C. Pelissero wrote: > I just recently ported xmovie 1.5.2 to FreeBSD 4.0. The patch file > can be found at my home page http://www.pelissero.org. > > It's rather big (80K) because it can be considered a fix patch for the > Linux version as well. You can still submit this as a Port by adding your patch file as another DISTFILE hosted at your site. You'd then apply it via the post-extract target for example in your Makefile. There are several Ports that use this method to apply meta-patches that are too large for (what is now) files/patch-*. I don't know what you currently name the patch file, but you should use some variant of xmovie-freebsd-patch-${XMOVIEVERSION}.tar.gz so that it tracks a specific version of xmovie. If you only want your part to be the patching and not the maintaining, I'll do it if you like. Thanks for your efforts, btw. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 3:49:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 1844C37B66D; Tue, 10 Oct 2000 03:49:12 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id TAA10109; Tue, 10 Oct 2000 19:48:54 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9AAmGM42741; Tue, 10 Oct 2000 19:48:16 +0900 (JST) Date: Tue, 10 Oct 2000 19:48:16 +0900 Message-ID: <86itr1dlan.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: reg@FreeBSD.ORG Cc: asami@FreeBSD.ORG, yasuf@bsdclub.org, leeym@bsd.ce.ntu.edu.tw, kevlo@FreeBSD.ORG, ade@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: New order check done In-Reply-To: In your message of "Mon, 9 Oct 2000 23:59:00 -0700" <20001009235900.N30468@shale.csir.co.za> References: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> <86og0twic9.wl@archon.local.idaemons.org> <20001009235900.N30468@shale.csir.co.za> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, At Mon, 9 Oct 2000 23:59:00 -0700, Jeremy Lea wrote: > On Tue, Oct 10, 2000 at 11:17:10AM +0900, Akinori MUSHA wrote: > > It was caused because someone removed the below line: > > > > CONFIGURE_ARGS= ${GTK_CONFIG} > > > > Ruby-gtk's configure script is _not_ a GNU one and it takes > > gtk-config's name as the first command line argument followed by some > > options that start with "--". > > Sorry, that was me. The configure script finds imlib-config if it is > installed, so it was passing my test builds with WITHOUT_IMLIB=yes, and > I couldn't find any use for the CONFIGURE_ARGS, since the port didn't No problem. It's all fine now. :) > define (HAS|GNU)_CONFIGURE. You might want to consider using > EXTCONF_ARGS rather than reusing CONFIGURE_ARGS. FYI, we have PERL_CONFIGURE which declares the port uses Makefile.PL as configure script, and which uses CONFIGURE_ARGS. That shows CONFIGURE_ARGS is used generally for the configure stage. Ruby has currently two options of how to configure: USE_RUBY_EXCONF declares that the port uses exconf.rb, and USE_RUBY_SETUP declares that it uses setup.rb. Anyway, bsd.gnome.mk does not need to set CONFIGURE_ARGS when neither HAS_CONFIGURE or GNU_CONFIGURE is defined. It can just leave it to the port. > > diff -u -r1.15 Makefile > > --- Makefile 2000/10/08 10:23:45 1.15 > > +++ Makefile 2000/10/10 01:52:45 > > @@ -15,14 +15,14 @@ > > > > MAINTAINER= yasuf@bsdclub.org > > > > -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} > > - > > USE_RUBY= yes > > USE_RUBY_EXTCONF= yes > > USE_XLIB= yes > > USE_GTK= yes > > WANT_IMLIB= yes > > > > +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} > > +CONFIGURE_ARGS= ${GTK_CONFIG} > > INSTALL_TARGET= site-install > > WRKSRC should be between the DEPENDS and USE sections, IIRC, and > CONFIGURE_ARGS should be part of the USE section and seperated from > INSTALL_TARGET by an empty line. Porter's Handbook doesn't seem to say such things. Which piece of documents are you referring to? IMHO, USE_* options above are indications of dependencies, so they should be put right after *_DEPENDS section. Likewise, WRKSRC, CONFIGURE_ARGS and INSTALL_TARGET are all indications of how to build and install the port, thus they should be put right before the list of target definitions, I think. But these are no more than just my personal preference, and I'll be willing to follow the standard if I was against something explicitly written. :) -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 3:53:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id CED1E37B503 for ; Tue, 10 Oct 2000 03:53:41 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9AArQl12381; Tue, 10 Oct 2000 06:53:27 -0400 (EDT) Date: Tue, 10 Oct 2000 06:53:26 -0400 (EDT) From: Trevor Johnson To: Jeremy Shaffner Cc: "Walter C. Pelissero" , ports@FreeBSD.ORG Subject: Re: xmovie 1.5.2 for FreeBSD In-Reply-To: <20001010053209.A5289@external.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 > You can still submit this as a Port by adding your patch file as another > DISTFILE hosted at your site. You'd then apply it via the post-extract > target for example in your Makefile. There are several Ports that use > this method to apply meta-patches that are too large for (what is now) > files/patch-*. I notice that xmovie 1.5.2.1 is already in the ports collection (graphics/xmovie). The port used to use PATCH_SITES and PATCHFILES, which is usually better because: - fetch won't try to get patches from the MASTER_SITES, which are likely to be different from the PATCH_SITES. - ordinarily you don't need to write a post-extract target, because bsd.port.mk will uncompress and apply the patches for you. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 4:14:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCCE137B502; Tue, 10 Oct 2000 04:14:54 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA65097; Tue, 10 Oct 2000 04:14:54 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 10 Oct 2000 04:14:54 -0700 (PDT) From: Message-Id: <200010101114.EAA65097@freefall.freebsd.org> To: chapmanb@arches.uga.edu, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21678: New port: biology/biojava Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: biology/biojava State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 10 04:14:20 PDT 2000 State-Changed-Why: Minor pkg-plist addition. Committed, Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21678 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 5:24: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smarthost-2.mail.telinco.net (smarthost-2.mail.telinco.net [212.1.128.91]) by hub.freebsd.org (Postfix) with ESMTP id AAD3037B503 for ; Tue, 10 Oct 2000 05:23:57 -0700 (PDT) Received: from smtp2.cluster1.telinco.net ([212.1.128.151] helo=smtp2.telinco.net) by smarthost-2.mail.telinco.net with esmtp (Exim 3.02 #4) id 13iyRj-0009Bw-00 for ports@FreeBSD.ORG; Tue, 10 Oct 2000 13:23:51 +0100 Received: from daemon.lpds.sublink.org (ppp-2-48.cvx4.telinco.net [212.1.149.48]) by smtp2.telinco.net (8.9.1a/8.9.1) with ESMTP id NAA15242 for ; Tue, 10 Oct 2000 13:23:49 +0100 (BST) Received: from pelissero.org (hyde.lpds.sublink.org [10.0.0.2]) by daemon.lpds.sublink.org (8.9.3/8.9.3) with ESMTP id MAA08551 for ; Tue, 10 Oct 2000 12:46:55 +0100 (BST) (envelope-from wcp@pelissero.org) Received: (from wcp@localhost) by pelissero.org (8.9.3/8.9.3) id MAA01552; Tue, 10 Oct 2000 12:51:46 +0100 (BST) (envelope-from wcp) From: "Walter C. Pelissero" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14819.722.559973.675112@hyde.lpds.sublink.org> Date: Tue, 10 Oct 2000 12:51:46 +0100 (BST) To: Trevor Johnson Cc: Jeremy Shaffner , "Walter C. Pelissero" , ports@FreeBSD.ORG Subject: Re: xmovie 1.5.2 for FreeBSD In-Reply-To: References: <20001010053209.A5289@external.org> X-Mailer: VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid Reply-To: walter@pelissero.org X-Attribution: WP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trevor Johnson writes: > > You can still submit this as a Port by adding your patch file as another > > DISTFILE hosted at your site. You'd then apply it via the post-extract > > target for example in your Makefile. There are several Ports that use > > this method to apply meta-patches that are too large for (what is now) > > files/patch-*. > > I notice that xmovie 1.5.2.1 is already in the ports collection > (graphics/xmovie). I've seen only a 1.3.1_1. I would be disappointed to see a 1.5.2.1, because I've looked carefully before investing my weekend in this port. I don't know if I'm willing to make an "official" port. As I pointed out in my previous message that patch corrects bugs present even in the Linux version. The author has been informed and I expect him to come up with a new release soon (possibly including the FreeBSD port). A port from that relese will be much smaller and cleaner. In the meanwhile I'll try to decipher the ports jargon. Maybe, making a real FreeBSD port, is easier than it sounds. BTW, the infamous CSS seems to work somehow. It's slowing the program to an unusable level but it seems to be doing something. I have the impression it's formally correct but not well integrated with the rest of the code. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 5:34:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id EF90237B66D for ; Tue, 10 Oct 2000 05:34:47 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9ACYjS15058; Tue, 10 Oct 2000 08:34:45 -0400 (EDT) Date: Tue, 10 Oct 2000 08:34:45 -0400 (EDT) From: Trevor Johnson To: "Walter C. Pelissero" Cc: ports@FreeBSD.ORG Subject: Re: xmovie 1.5.2 for FreeBSD In-Reply-To: <14819.722.559973.675112@hyde.lpds.sublink.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 > > I notice that xmovie 1.5.2.1 is already in the ports collection > > (graphics/xmovie). > > I've seen only a 1.3.1_1. It was updated just last Sunday. > I would be disappointed to see a 1.5.2.1, > because I've looked carefully before investing my weekend in this > port. It dawns on me that you've made a native FreeBSD version, whereas the port in the collection still uses the Linux binary. Congratulations and thanks! -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 8:23:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mx1.hcvlny.cv.net (mx1.hcvlny.cv.net [167.206.112.76]) by hub.freebsd.org (Postfix) with ESMTP id 043AB37B502; Tue, 10 Oct 2000 08:23:08 -0700 (PDT) Received: from s1.optonline.net (s1.optonline.net [167.206.112.6]) by mx1.hcvlny.cv.net (8.10.2/8.10.2) with ESMTP id e9AFN2003969; Tue, 10 Oct 2000 11:23:02 -0400 (EDT) Received: from optonline.com (ool-18bd8597.dyn.optonline.net [24.189.133.151]) by s1.optonline.net (8.10.2/8.10.2) with ESMTP id e9AFN1o21388; Tue, 10 Oct 2000 11:23:01 -0400 (EDT) Message-ID: <39E33455.64BD8643@optonline.com> Date: Tue, 10 Oct 2000 11:23:01 -0400 From: trini0 X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.1-RELEASE i386) MIME-Version: 1.0 To: will@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: qt22-2.2.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To whom it may concern, I've been trying to install ksetiwatch on my system running FreeBSD 4.1 R to accompany KDE 1.94 & seti@home. It cannot be setup because a dependant qt2.2.0 is not installed on the system. What is installed is 2.1 beta 2. I tried reinstalling qt2.2 from the ports and Im getting the same error. Is this supposed to be like this? Thanks Please reply to my email because Im not subscribed to the ports list, thanx.......:) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 9: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 263A837B503 for ; Tue, 10 Oct 2000 09:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73731; Tue, 10 Oct 2000 09:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 587AF37B503; Tue, 10 Oct 2000 08:52:45 -0700 (PDT) Message-Id: <20001010155245.587AF37B503@hub.freebsd.org> Date: Tue, 10 Oct 2000 08:52:45 -0700 (PDT) From: igor@zynaps.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21892: new port: flow-tools Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21892 >Category: ports >Synopsis: new port: flow-tools >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 Oct 10 09:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Igor Vinokurov >Release: 4.0-20000603-STABLE >Organization: >Environment: >Description: Tools to manipulate Cisco NetFlow accounting data flow-capture - capture flow PDUs from a cisco router and write them to disk flow-cat - concatenate flows flow-dscan - detect scans from flow files flow-expire - expire flows the same way that flow-capture does flow-export - export flow records to a different format flow-fanout - capture flow PDUs from a CISCO router and replicate them flow-filter - filter flows (grep for flows, sort of) flow-gen - generate flows for testing flow-mirror - mirror flows to remote archive hosts using FTP flow-print - print flow records in human readable form flow-profile - er, ah, profile flows flow-stat - summarize flows into various reports >How-To-Repeat: >Fix: begin 644 flow-tools-port.tar.gz M'XL(`*TZXSD``^T::W/B.#)?K5_1NV%JDR,&OX`+=6Q!@&2YY9'"S$VN:NHH MQ0APQ;8X/R8[D^*_;TNV@S.S-W.92JBK6SJ%K6Y)W5*WU.JVLO3XO1IS[D75 MH]<"L+1&K09'($#[[)TAT-`;6MVTK!J6==UH6$=0>[41%2")8AH"'(6,/3<_F;=JB'%LHS&$6@O-H*OP)_<_JJJPHC>L:7KL0H/W94RX@%2 M/J(5P#":-:MI:&!HFD;*Y?)C4V66,)@X,>@:Z.=-L]XTK;15NPVJ:9PUH"R? M[3:!RV'KQ]TZ^Y%`;V#/6CN*JE5,BX#]2W\X;%5OW:`:K8EZ,1CW!M-6-8G" MJL<=ZE4#%HM.H@4I?UDMR$!@V+]!WNPW`MUN:^4XH*U-[UQ![7N%[.+AX-^U<@SHHB'(#QTL6#-1A M@>BYMT#4'=>)`>HR"4+N>2K%G\?Y)D+2DD:QZM-X_5_R_')LV9A(.1-6;KVV M)*'7P86R=*M<-<%-Y7I.`XM\MW!#4#90>4HMM MB:J4'@9C>]89#K:L.8@5&>52V0)+Q48$ M'(_10(Q&+J[01]4\^A_W4!7>B)I1.1IWQ*;Y^ MF8V&IZ1^_^:;AHR_S/-P_[?!Q2C!T6%/(X09+CNO8U@&7(?*#C2)X0\B5D(-%C` M?>BBJXC7S!?>8^%&=T`R9K%@Q`,LL$#X$T&.TLI%Y-``JQ9IV6C&A&GRR\%%MLG7,(N%_22%(QH99M)PI1H26/L=N M-'36[@<&:Q[%$221<-R7L^NT\R9T`S$[^7ZJ%`R:UPF>`DB@"WKK,:F7O!N7 M61^J,SP#NCZ#C%*T+6XDP3I*?)^&[J=\`BB(PP>D\"3*PM^(D&L,R2.T)4,% M?N1)"/].Q"0Y+@?4:17G%26K54Y"#B,:WL%EXGD^JO/$I\MRFT=)A2V24W(X MD[X;/O/_UT-,S5]:QK?B/U-K/'[_,8V&]/\UX^#_]P$B(2ZZ4%(@Q#M$^NT= MFOKD)SANZQV>>M$"+KW@#D?E_7>Q_2SM\_]\+?&%_?_'B:G]&_J]IEB8S`J-V\/_[@%&O M!B=B$510#:?0@O-SZY:>:\9YPW`8;5CG#7J^I-I2NSTW&G@N'USM_Q44]G]^ MM_/B,KZ5_UOFH__'`\"2^]_4#_M_'W`,8W8/,BG#G-WS,"O'C`O\;"V('+"I M[!8).8:>R$T=3!)CMF@J"+HF;@+Y+>9E\@;P&-ZMN2^K%'?%P_:GCP'=1)4P M(<=86;H,&;NP>R7$R/5D.AMW1OU6488@_J,_M0>3<4N1=X/=SJQ_-9D.^G9+ M"5A,1AU[UI_.[<%,4);QIEFMXK."=16^=KD,"IE(#JM)Q$(\U>BRBG'FARH1 M=X\[B:1_,YMVNK.Y_?;RIJ4()TB0^V`\PU]_VE*D9MK9D"L\7!'RUN[/KT:= M7Y'%/_LV(>^FO]K3;DM12@]8%'=.U=)#/K&MFI:S^6P)Z0R'\UEG>M6?M137 M_&M=7=Y&"Q"72D+R6$=&3^Z0]/P31YP793">(VDHCMA[DG5,@_&\/@W%'S$9 MB.<8AN'%CC(0S^NR,#Q'A4+SLK1212=DPZ-8E?\NT"1*&R?:GPZWH&Y<>9,L M&(O]K3+X*7KSK_?'/SR]K*UN6.B]07+6\Release-Note: >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 Oct 10 10:30:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from t-mta2.odn.ne.jp (mfep2.odn.ne.jp [143.90.131.180]) by hub.freebsd.org (Postfix) with ESMTP id 58E4337B502; Tue, 10 Oct 2000 10:30:39 -0700 (PDT) Received: from localhost ([211.121.243.254]) by t-mta2.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001010173038050.MERY.873.t-mta2.odn.ne.jp@mta2.odn.ne.jp>; Wed, 11 Oct 2000 02:30:38 +0900 To: knu@idaemons.org Cc: asami@freebsd.org, leeym@bsd.ce.ntu.edu.tw, knu@freebsd.org, kevlo@freebsd.org, ade@freebsd.org, reg@freebsd.org, ports@freebsd.org Subject: Re: New order check done In-Reply-To: <86og0twic9.wl@archon.local.idaemons.org> References: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> <86og0twic9.wl@archon.local.idaemons.org> X-Mailer: Mew version 1.94.1 on Emacs 20.6 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Wed_Oct_11_02:30:16_2000_809)--" Message-Id: <20001011023036X.yasuf@bsdclub.org> Date: Wed, 11 Oct 2000 02:30:36 +0900 From: Yasuhiro Fukuma X-Dispatcher: imput version 20000228(IM140) Lines: 49 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ----Security_Multipart(Wed_Oct_11_02:30:16_2000_809)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, In the article <86og0twic9.wl@archon.local.idaemons.org>, "Akinori MUSHA" wrote: > It was caused because someone removed the below line: > > CONFIGURE_ARGS= ${GTK_CONFIG} > > Ruby-gtk's configure script is _not_ a GNU one and it takes > gtk-config's name as the first command line argument followed by some > options that start with "--". > > I confirmed the following patch fixes it. Fukuma-san, would you > approve this change? I haven't tested it, but it seems this patch has a problem when USE_IMLIB is defined. Ruby/GTK's configure script takes the name of gtk-config _or_ imlib-config as the argument, whether it uses Imlib. I'll fix it ASAP, so please give a moment... --- FUKUMA Yasuhiro (=?ISO-2022-JP?B?GyRCSiE0VhsoQiAbJEI5LzkwGyhC?=) as Yasu.F @ Kitakyushu.Fukuoka.Japan Web site: http://www.bsdclub.org/~yasuf/ PGP fingerprint = 17 25 8A F3 99 E5 7E 19 C0 EA 6E 03 8A C3 CE F0 ``It isn't a bug; it's just your imagination.'' ----Security_Multipart(Wed_Oct_11_02:30:16_2000_809)-- Content-Type: Application/Pgp-Signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: BA0Xz4YiXSebzSLQsI33ZLiCuyL7utkl iQCVAwUAOeNSMgqHABIYLe0FAQGsLAQAqGg4/aAX359ZrXSnXaEbqKxHgN+VS5mt rvY3BQeNiG0WX7k/Q8fqZQsPRJGqsO1rB1fEbLw+2Almtc5HHOJigeRNCcAfqOK4 LcqVuD3CnLpl3akomkuVuS6NyLNMPNxQqrzf0yN5us/5MIn31T5q24cooJcWl3SS MQojRFno4/k= =hbPF -----END PGP SIGNATURE----- ----Security_Multipart(Wed_Oct_11_02:30:16_2000_809)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 10:57:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-a.chmpgn1.il.home.com [24.181.130.26]) by hub.freebsd.org (Postfix) with ESMTP id 8AECA37B502; Tue, 10 Oct 2000 10:57:31 -0700 (PDT) Received: (from jeremy@localhost) by indigo.external.org (8.9.3/8.9.3) id MAA01834; Tue, 10 Oct 2000 12:57:29 -0500 (CDT) (envelope-from jeremy) Date: Tue, 10 Oct 2000 12:57:28 -0500 From: Jeremy Shaffner To: "Walter C. Pelissero" Cc: Yoshiro MIHIRA , ports@FreeBSD.org Subject: Re: xmovie 1.5.2 for FreeBSD Message-ID: <20001010125728.A1592@external.org> References: <20001010053209.A5289@external.org> <14819.722.559973.675112@hyde.lpds.sublink.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <14819.722.559973.675112@hyde.lpds.sublink.org>; from walter@pelissero.org on Tue, Oct 10, 2000 at 12:51:46PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 10, 2000 at 12:51:46PM +0100, Walter C. Pelissero wrote: > Trevor Johnson writes: > > > You can still submit this as a Port by adding your patch file as another > > > DISTFILE hosted at your site. You'd then apply it via the post-extract > > > target for example in your Makefile. There are several Ports that use > > > this method to apply meta-patches that are too large for (what is now) > > > files/patch-*. > > > > I notice that xmovie 1.5.2.1 is already in the ports collection > > (graphics/xmovie). > > I've seen only a 1.3.1_1. I would be disappointed to see a 1.5.2.1, > because I've looked carefully before investing my weekend in this > port. > > I don't know if I'm willing to make an "official" port. As I pointed > out in my previous message that patch corrects bugs present even in > the Linux version. The author has been informed and I expect him to > come up with a new release soon (possibly including the FreeBSD port). > > A port from that relese will be much smaller and cleaner. > If you can build a native xmovie I think that would be preferable than using the Linuxulator which the current (1.5.2.1) xmovie port does. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 10:59:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48D5E37B503; Tue, 10 Oct 2000 10:59:18 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA19952; Tue, 10 Oct 2000 10:59:17 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 10 Oct 2000 10:59:17 -0700 (PDT) From: Message-Id: <200010101759.KAA19952@freefall.freebsd.org> To: khera@onceler.kciLink.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20607: plugger fails to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: plugger fails to build State-Changed-From-To: suspended->closed State-Changed-By: ade State-Changed-When: Tue Oct 10 10:57:47 PDT 2000 State-Changed-Why: After an initial flurry of emails, things have gone remarkably quiet on this one. Maintainer has indiciated that he no longer uses the port so I've reverted maintainership to "ports@FreeBSD.org" In addition, until some enterprising person comes along and figures out how to ELF-ify this, the port has been marked BROKEN_ELF http://www.freebsd.org/cgi/query-pr.cgi?pr=20607 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 11:20:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA8E837B66F for ; Tue, 10 Oct 2000 11:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29224; Tue, 10 Oct 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E20CB37B503; Tue, 10 Oct 2000 11:19:04 -0700 (PDT) Message-Id: <20001010181904.E20CB37B503@hub.freebsd.org> Date: Tue, 10 Oct 2000 11:19:04 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21895: Update port: mail/qpopper to 3.1 (fix ports/21800) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21895 >Category: ports >Synopsis: Update port: mail/qpopper to 3.1 (fix ports/21800) >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 Oct 10 11:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 3.1 This PR supersedes ports/21800. >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/qpopper/Makefile mail/qpopper/Makefile --- /usr/ports/mail/qpopper/Makefile Fri Oct 6 22:58:31 2000 +++ mail/qpopper/Makefile Wed Oct 11 00:16:22 2000 @@ -1,4 +1,4 @@ -# New ports collection makefile for: qpopper 3.1.b5 +# New ports collection makefile for: qpopper # Date created: Di 18 Jul 2000 22:36:34 CEST # Whom: alex # @@ -6,43 +6,38 @@ # PORTNAME= qpopper -PORTVERSION= 3.1.f1 +PORTVERSION= 3.1 CATEGORIES= mail -MASTER_SITES= ftp://ftp.qualcomm.com/eudora/servers/unix/popper/beta/ \ - ftp://ftp.gmxuk.net/pub/qpopper/beta/ \ - ftp://sunsite.doc.ic.ac.uk/Mirrors/ftp.qualcomm.com/eudora/servers/unix/popper/beta/ \ - ftp://ftp.kracked.com/pub/qpopper/beta/ -DISTNAME= ${PORTNAME}${PORTVERSION:S/.f/fc/} +MASTER_SITES= ftp://ftp.qualcomm.com/eudora/servers/unix/popper/ \ + ftp://ftp.gmxuk.net/pub/qpopper/ \ + ftp://sunsite.doc.ic.ac.uk/Mirrors/ftp.qualcomm.com/eudora/servers/unix/popper/ \ + ftp://ftp.kracked.com/pub/qpopper/ +DISTNAME= ${PORTNAME}${PORTVERSION} -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-apop=${PREFIX}/etc/qpopper/pop.auth - -O_DEFS= -DSETPROCTITLE -DKEEP_TEMP_DROP -DBSD44_DBM -DBIND43 \ - -DBULLDB -DNONAUTHFILE='\"/etc/ftpusers\"' -P_LIBS+= -lmd -lutil +CONFIGURE_ENV= LIBS="-lmd -lutil" +CONFIGURE_ARGS= --enable-apop=${PREFIX}/etc/qpopper/pop.auth \ + --enable-nonauth-file=/etc/ftpusers \ + --enable-bulldb --enable-keep-temp-drop # Set FULL_POPD_DEBUG for debug-mode. See also -d option to popper .if defined(FULL_POPD_DEBUG) CONFIGURE_ARGS+=--enable-debugging .endif -CONFIGURE_ENV= LIBS="${P_LIBS}" O_DEFS="${O_DEFS}" - MAN8= popauth.8 qpopper.8 post-patch: - ${PERL} -pi -e 's:!!PREFIX!!:${PREFIX}$$1:g' ${WRKSRC}/man/* + @${PERL} -pi -e "s|!!PREFIX!!|${PREFIX}|g" ${WRKSRC}/man/* do-install: - cd ${WRKSRC} && \ - ${INSTALL_PROGRAM} popper/popauth ${PREFIX}/bin/ && \ - ${INSTALL_PROGRAM} popper/popper ${PREFIX}/libexec/qpopper && \ - ${INSTALL_MAN} man/popauth.8 ${PREFIX}/man/man8/ && \ - ${INSTALL_MAN} man/popper.8 ${PREFIX}/man/man8/qpopper.8 - -post-install: + ${INSTALL_PROGRAM} ${WRKSRC}/popper/popauth ${PREFIX}/bin/popauth + ${LN} -sf popauth ${PREFIX}/bin/apopauth + ${INSTALL_PROGRAM} ${WRKSRC}/popper/popper ${PREFIX}/libexec/qpopper + ${INSTALL_MAN} ${WRKSRC}/man/popauth.8 ${PREFIX}/man/man8/popauth.8 + ${INSTALL_MAN} ${WRKSRC}/man/popper.8 ${PREFIX}/man/man8/qpopper.8 @${SED} -e "s:/usr/local:${PREFIX}:" ${PKGMESSAGE} .include diff -urN /usr/ports/mail/qpopper/distinfo mail/qpopper/distinfo --- /usr/ports/mail/qpopper/distinfo Fri Oct 6 03:07:00 2000 +++ mail/qpopper/distinfo Wed Oct 11 00:17:04 2000 @@ -1 +1 @@ -MD5 (qpopper3.1fc1.tar.gz) = 358fe47fbf8dfa0354bc01b60ca6c6ec +MD5 (qpopper3.1.tar.gz) = 1d4c39dd333099bd49923801ec6bfdb1 diff -urN /usr/ports/mail/qpopper/pkg-plist mail/qpopper/pkg-plist --- /usr/ports/mail/qpopper/pkg-plist Fri Oct 6 03:07:01 2000 +++ mail/qpopper/pkg-plist Wed Oct 11 00:17:25 2000 @@ -1,4 +1,6 @@ bin/popauth +@unexec rm -f %D/bin/apopauth +@exec ln -sf popauth %D/bin/apopauth libexec/qpopper @dirrm etc/qpopper @exec mkdir -p %D/etc/qpopper && chown pop.daemon %D/etc/qpopper && chmod 700 %D/etc/qpopper >Release-Note: >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 Oct 10 11:20:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4F9537B66D for ; Tue, 10 Oct 2000 11:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29215; Tue, 10 Oct 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C4E8837B502; Tue, 10 Oct 2000 11:18:12 -0700 (PDT) Message-Id: <20001010181812.C4E8837B502@hub.freebsd.org> Date: Tue, 10 Oct 2000 11:18:12 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21894: Update port: biology/ortep3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21894 >Category: ports >Synopsis: Update port: biology/ortep3 >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 Oct 10 11:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: It seems ports/21608 was not processed correctly as I intended. Following patch is needed for fixing. >How-To-Repeat: >Fix: diff -urN /usr/ports/biology/ortep3/Makefile biology/ortep3/Makefile --- /usr/ports/biology/ortep3/Makefile Wed Oct 11 02:04:31 2000 +++ biology/ortep3/Makefile Wed Oct 11 02:10:00 2000 @@ -22,31 +22,33 @@ WRKSRC= ${WRKDIR}/ortep/src +MAKE_ARGS= FFLAGS="${FFLAGS}" LFLAGS="${LFLAGS}" + +.if defined(WITH_PGPLOT) +EXTRA_PATCHES= ${FILESDIR}/extra-patch-aa +LFLAGS= -L${LOCALBASE}/lib -lpgplot -L${X11BASE}/lib -lX11 +.endif + post-extract: ${MV} ${WRKSRC}/ortep.f ${WRKSRC}/ortep.f-1.0 ${CP} ${DISTDIR}/ortep.f ${WRKSRC}/ortep.f -pre-patch: +pre-build: ${CP} ${FILESDIR}/Makefile.ortep3 ${WRKSRC}/Makefile -.if defined(USEPGPLOT) - cd ${WRKSRC} && ${PATCH} < ${FILESDIR}/extra-patch-aa -.endif - -pre-install: - ${MKDIR} ${PREFIX}/share/doc/ortep3 - ${MKDIR} ${PREFIX}/share/doc/ortep3/examples - ${MKDIR} ${PREFIX}/share/doc/ortep3/man - ${MKDIR} ${PREFIX}/share/doc/ortep3/src do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ortep3 ${PREFIX}/bin - ${INSTALL_DATA} ${WRKDIR}/ortep/examples/* \ - ${PREFIX}/share/doc/ortep3/examples - ${INSTALL_DATA} ${WRKDIR}/ortep/man/* \ - ${PREFIX}/share/doc/ortep3/man - ${INSTALL_DATA} ${WRKDIR}/ortep/src/000readme.txt \ - ${PREFIX}/share/doc/ortep3/src - ${INSTALL_DATA} ${WRKDIR}/ortep/README.1st \ - ${PREFIX}/share/doc/ortep3 + @${MKDIR} ${PREFIX}/share/doc/ortep3 + ${INSTALL_DATA} ${WRKSRC}/../README.1st \ + ${PREFIX}/share/doc/ortep3 + @${MKDIR} ${PREFIX}/share/doc/ortep3/examples + ${INSTALL_DATA} ${WRKSRC}/../examples/* \ + ${PREFIX}/share/doc/ortep3/examples + @${MKDIR} ${PREFIX}/share/doc/ortep3/man + ${INSTALL_DATA} ${WRKSRC}/../man/* \ + ${PREFIX}/share/doc/ortep3/man + @${MKDIR} ${PREFIX}/share/doc/ortep3/src + ${INSTALL_DATA} ${WRKSRC}/000readme.txt \ + ${PREFIX}/share/doc/ortep3/src .include >Release-Note: >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 Oct 10 11:21:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hurlame.pdl.cs.cmu.edu (HURLAME.PDL.CS.CMU.EDU [128.2.189.78]) by hub.freebsd.org (Postfix) with ESMTP id 5437537B503 for ; Tue, 10 Oct 2000 11:21:18 -0700 (PDT) Received: (from magus@localhost) by hurlame.pdl.cs.cmu.edu (8.11.0/8.11.0) id e9AIL9s46256; Tue, 10 Oct 2000 14:21:09 -0400 (EDT) (envelope-from magus) To: ports@freebsd.org Subject: adding '-gnome' and '-gtk' to package names From: Nat Lanza Date: 10 Oct 2000 14:21:08 -0400 Message-ID: Lines: 24 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is this really necessary? I noticed this change when I updated my ports tree, and frankly I hate it. The toolkits and libraries that a package uses shouldn't get tacked onto the package name; should we also have sawfish-gnome-gtk-xlib-libc-0.31.1? Also, it breaks pkg_version, which is really annoying: # pkg_version -v [ elided ] sawfish-gnome-0.31.1 ? unknown in index [ elided ] xscreensaver-gtk-3.24 ? unknown in index Please consider backing out this change. Thanks. --nat -- nat lanza --------------------- research programmer, parallel data lab, cmu scs magus@cs.cmu.edu -------------------------------- http://www.cs.cmu.edu/~magus/ there are no whole truths; all truths are half-truths -- alfred north whitehead To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 11:29:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F31D737B502; Tue, 10 Oct 2000 11:29:23 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA32602; Tue, 10 Oct 2000 11:29:23 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 10 Oct 2000 11:29:23 -0700 (PDT) From: Message-Id: <200010101829.LAA32602@freefall.freebsd.org> To: tkato@prontomail.ne.jp, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21894: Update port: biology/ortep3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/ortep3 State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 10 11:28:44 PDT 2000 State-Changed-Why: Sorry I made a mistake converting your patches to the new ports layout. Committed, Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21894 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 11:32:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 11E1137B502; Tue, 10 Oct 2000 11:32:13 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id DAA08063; Wed, 11 Oct 2000 03:31:32 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9AIV0M44646; Wed, 11 Oct 2000 03:31:01 +0900 (JST) Date: Wed, 11 Oct 2000 03:31:00 +0900 Message-ID: <86em1oeefv.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: yasuf@bsdclub.org Cc: asami@freebsd.org, leeym@bsd.ce.ntu.edu.tw, kevlo@freebsd.org, ade@freebsd.org, reg@freebsd.org, ports@freebsd.org Subject: Re: New order check done In-Reply-To: In your message of "Wed, 11 Oct 2000 02:30:36 +0900" <20001011023036X.yasuf@bsdclub.org> References: <200010092150.e99LokA95039@silvia.hip.berkeley.edu> <86og0twic9.wl@archon.local.idaemons.org> <20001011023036X.yasuf@bsdclub.org> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Wed, 11 Oct 2000 02:30:36 +0900, Yasuhiro Fukuma wrote: > I haven't tested it, but it seems this patch has a problem when > USE_IMLIB is defined. Ruby/GTK's configure script takes the name of > gtk-config _or_ imlib-config as the argument, whether it uses Imlib. Oh, thanks for catching it. :) > I'll fix it ASAP, so please give a moment... No problem. You can send your patch directly to me as soon as it's done, and at any time afterwards. By the way, do you have any info on the new Ruby/GTK release which is supposed to support Ruby 1.6? It's been delayed for a while. ;) -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 11:44: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [205.252.34.9]) by hub.freebsd.org (Postfix) with ESMTP id 5B2E937B503; Tue, 10 Oct 2000 11:43:58 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [205.252.34.3]) by yertle.kciLink.com (Postfix) with ESMTP id 3A93A2E443; Tue, 10 Oct 2000 14:43:53 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.0/8.11.0) id e9AIhrk62840; Tue, 10 Oct 2000 14:43:53 -0400 (EDT) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14819.25449.41708.577090@onceler.kciLink.com> Date: Tue, 10 Oct 2000 14:43:53 -0400 (EDT) To: Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20607: plugger fails to build In-Reply-To: <200010101759.KAA19952@freefall.freebsd.org> References: <200010101759.KAA19952@freefall.freebsd.org> X-Mailer: VM 6.72 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "a" == ade writes: a> Synopsis: plugger fails to build a> State-Changed-From-To: suspended->closed a> State-Changed-By: ade a> State-Changed-When: Tue Oct 10 10:57:47 PDT 2000 a> State-Changed-Why: a> After an initial flurry of emails, things have gone remarkably quiet a> on this one. Maintainer has indiciated that he no longer uses the a> port so I've reverted maintainership to "ports@FreeBSD.org" a> In addition, until some enterprising person comes along and figures a> out how to ELF-ify this, the port has been marked BROKEN_ELF It seems that if you somehow get /usr/lib/aout/c++rt0.o from FreeBSD 2.2.8, you can build this port. Creating the c++rt0.o file on 4.x system seems not possible from sources. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 12: 4:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id ADA5C37B503; Tue, 10 Oct 2000 12:04:51 -0700 (PDT) Received: from dwcjr (unknown [216.118.21.147]) by leviathan.inethouston.com (Postfix) with ESMTP id A88B5177E07; Tue, 10 Oct 2000 14:06:57 -0500 (CDT) Message-ID: <02a401c032ed$3dd856c0$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Cc: Subject: FreeBSD Port: isc-dhcp3-3.0.b2.6 Date: Tue, 10 Oct 2000 14:06:49 -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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What is the correct way to startup this process at boot time, right now I'm doing it in rc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 12:50: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4436937B66D for ; Tue, 10 Oct 2000 12:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA77540; Tue, 10 Oct 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fly.lglobus.ru (fly.lglobus.ru [195.34.224.130]) by hub.freebsd.org (Postfix) with ESMTP id EA13937B66E for ; Tue, 10 Oct 2000 12:49:07 -0700 (PDT) Received: (from rover@localhost) by fly.lglobus.ru (8.9.3/8.9.3) id XAA04310; Tue, 10 Oct 2000 23:50:28 +0400 (MSD) (envelope-from rover) Message-Id: <200010101950.XAA04310@fly.lglobus.ru> Date: Tue, 10 Oct 2000 23:50:28 +0400 (MSD) From: "Oleg V. Volkov" Reply-To: "Oleg V. Volkov" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21897: bsd.ports.mk's fetch-recursive-list target ignores FETCH_CMD Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21897 >Category: ports >Synopsis: bsd.ports.mk's fetch-recursive-list target ignores FETCH_CMD >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 Oct 10 12:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Oleg V. Volkov >Release: FreeBSD 3.2-STABLE i386 >Organization: -=/ SR 13 /=- >Environment: Fresh ports. >Description: See synopsis. >How-To-Repeat: cd into any port directory and try $ make fetch-list FETCH_CMD=foobar and $ make fetch-recursive-list FETCH_CMD=foobar See the difference. >Fix: Didn't checked yet. If somebody won't fix that in few days, i'll try it myself. >Release-Note: >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 Oct 10 13:14:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 1CFD737B66D; Tue, 10 Oct 2000 13:14:09 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id DA1A118FC; Tue, 10 Oct 2000 15:14:14 -0500 (EST) Date: Tue, 10 Oct 2000 15:14:14 -0500 From: Will Andrews To: trini0 Cc: will@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: qt22-2.2.0 Message-ID: <20001010151414.Y1067@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , trini0 , will@FreeBSD.org, ports@FreeBSD.org References: <39E33455.64BD8643@optonline.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E33455.64BD8643@optonline.com>; from trini0@optonline.net on Tue, Oct 10, 2000 at 11:23:01AM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 10, 2000 at 11:23:01AM -0400, trini0 wrote: > I've been trying to > install ksetiwatch on my system running FreeBSD 4.1 R to accompany KDE > 1.94 & seti@home. It cannot be setup because a dependant qt2.2.0 is not > installed on the system. What is installed is 2.1 beta 2. I tried > reinstalling qt2.2 from the ports and Im getting the same error. Is > this supposed to be like this? > Thanks > Please reply to my email because Im not subscribed to the ports list, > thanx.......:) You need to clean your Qt 2.x installations completely before installing Qt 2.2.0. And IIRC I don't think KSetiWatch depends on QT 2.x but rather QT 1.x (which you CAN install at the same time as QT 2.x). -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 14:41:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id CBA6F37B66C for ; Tue, 10 Oct 2000 14:41:51 -0700 (PDT) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id QAA12587 for ; Tue, 10 Oct 2000 16:41:46 -0500 (CDT) (envelope-from jeff-ml@mountin.net) Received: from dial-65.max1.wa.cyberlynk.net(207.227.118.65) by peak.mountin.net via smap (V1.3) id sma012585; Tue Oct 10 16:41:21 2000 Message-Id: <4.3.2.20001010153914.00bc3c10@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Tue, 10 Oct 2000 16:41:21 -0500 To: ports@FreeBSD.org From: "Jeffrey J. Mountin" Subject: port change oddities Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hey all, Just a few things to point out after all the changes that I noticed during a CVSup, which didn't take that long with a pre-modified tree circa 4.1.1-R. There were only a few files that I couldn't guess where they would end up, so just left them. The following ports are missing a Makefile and am not sure if this is by design or not: graphics/gyvefigs/ graphics/gyvegui/ graphics/gyvekernel/ math/rng/ misc/gweather/ misc/gyvescm/ net/dnscache/ x11/gtik/ x11-toolkits/gtk10/ x11-toolkits/qt21/ Not sure why but the following were deleted: lang/snobol/README.html security/seahorse/README.html sysutils/obliterate/README.html Also noticed pkg/* files that had an upper case substring (other than PLIST) were converted to lower case. Not sure if by design or as a matter of expedience, but here is the list: ./graphics/gimp-manual-html/pkg-PLIST_HTML ./graphics/gimp-manual-html/pkg-PLIST_PDF ./graphics/gimp-manual-html/pkg-PLIST_PS ./lang/modula-3-lib/pkg-PLIST.noX11 ./lang/modula-3/pkg-PLIST.noX11 ./lang/python+ipv6/pkg-PLIST.Tools ./lang/python-beta/pkg-PLIST.Tools ./lang/python/pkg-PLIST.Tools ./lang/python15/pkg-PLIST.Tools ./security/heimdal/pkg-PLIST.KRB4 ./security/heimdal/pkg-PLIST.X11 ./security/ssh/pkg-PLIST.X11 ./sysutils/nut/pkg-PLIST.CGI ./sysutils/nut/pkg-PLIST.DOC ./textproc/ispell/pkg-PLIST.AM ./textproc/ispell/pkg-PLIST.BR ./textproc/ispell/pkg-PLIST.BRITISH ./textproc/ispell/pkg-PLIST.DEALT ./textproc/ispell/pkg-PLIST.DENEU ./textproc/ispell/pkg-PLIST.FR ./textproc/ispell/pkg-PLIST.NO ./textproc/ispell/pkg-PLIST.SE In most case I doubt this matters, but "noX11" looks better than "nox11" IMO. Considering these and other oddities that had to be addressed it was one hell of an effort. Along with all the past work, not sure the collection would be the same should the Wraith be haunting elsewhere. Not to slight the others that have made great efforts to streamline the collections functionality. Would have gotten to this sooner, but was bitten by the ahc bug in -stable. Ah yes, the lists do not include non-English ports and if there is still an issue with synchroniztion, cvsup8 was used. Time to rebuild everything... Jeff Mountin - jeff@mountin.net Systems/Network Administrator FreeBSD - the power to serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 16:48:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4CF837B66E; Tue, 10 Oct 2000 16:48:16 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA64696; Tue, 10 Oct 2000 16:48:16 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 10 Oct 2000 16:48:16 -0700 (PDT) From: Message-Id: <200010102348.QAA64696@freefall.freebsd.org> To: osa@FreeBSD.org.ru, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20642: new port : gigabase-2.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port : gigabase-2.14 State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 10 16:47:40 PDT 2000 State-Changed-Why: The port already exists. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=20642 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 16:55:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1568237B66E; Tue, 10 Oct 2000 16:55:15 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA67513; Tue, 10 Oct 2000 16:55:15 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Tue, 10 Oct 2000 16:55:15 -0700 (PDT) From: Message-Id: <200010102355.QAA67513@freefall.freebsd.org> To: jeh@freebsd.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21747: Port Update: devel/portlint to allow PORTREVESION & PORTEPOCH Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: devel/portlint to allow PORTREVESION & PORTEPOCH State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Oct 10 16:54:56 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21747 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 17: 0:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE16837B503; Tue, 10 Oct 2000 17:00:34 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA69191; Tue, 10 Oct 2000 17:00:34 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 10 Oct 2000 17:00:34 -0700 (PDT) From: Message-Id: <200010110000.RAA69191@freefall.freebsd.org> To: dan@freebsddiary.org, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20850: security/portsentry patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: security/portsentry patch State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 10 17:00:15 PDT 2000 State-Changed-Why: Seems to already be committed http://www.freebsd.org/cgi/query-pr.cgi?pr=20850 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 17: 0:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E20F37B66C; Tue, 10 Oct 2000 17:00:46 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA69315; Tue, 10 Oct 2000 17:00:46 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 10 Oct 2000 17:00:46 -0700 (PDT) From: Message-Id: <200010110000.RAA69315@freefall.freebsd.org> To: dan@freebsddiary.org, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20856: portsentry Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: portsentry State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 10 17:00:15 PDT 2000 State-Changed-Why: Seems to already be committed http://www.freebsd.org/cgi/query-pr.cgi?pr=20850 State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 10 17:00:15 PDT 2000 State-Changed-Why: Seems to already be committed http://www.freebsd.org/cgi/query-pr.cgi?pr=20856 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 17: 8:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-201-199-as.acessonet.com.br (200-227-201-199-as.acessonet.com.br [200.227.201.199]) by hub.freebsd.org (Postfix) with ESMTP id 2515537B66D for ; Tue, 10 Oct 2000 17:08:48 -0700 (PDT) Received: (qmail 534 invoked by uid 1001); 11 Oct 2000 00:08:50 -0000 Date: Tue, 10 Oct 2000 19:23:24 -0200 To: Satoshi Asami Subject: Re: *_WRKSRC Message-ID: <20001010192324.A321@Fedaykin.here> References: <200010100134.e9A1YLV98774@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200010100134.e9A1YLV98774@silvia.hip.berkeley.edu>; from asami@FreeBSD.ORG on Mon, Oct 09, 2000 at 06:33:59PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Well, I submitted the original CONFIGURE_WRKSRC I submitted the original CONFIGURE_WRKSRC patch and this one is more complete. Way to go. Just one doubt, isn't having both BUILD_WRKSRC and WRKSRC excessive? Though, nice for RISCs statement: one way or all ways. The only case I could think of was to clean the patch file paths: build from WRKSRC/a and patch from WRKSRC, yet we have PATCH_WRKSRC for that. No problem though. Just a thought. :) On Mon, Oct 09, 2000 at 06:33:59PM -0700, Satoshi Asami wrote: > What do people think about the following (submitted by DavidO, > reworked slightly by me). Basically it adds PATCH_WRKSRC, > BUILD_WRKSRC and INSTALL_WRKSRC alongside CONFIGURE_WRKSRC to deal > with oddball ports that want different directories. > > It also extends the use of CONFIGURE_WRKSRC to include all > configure-related actions. I don't think this breaks anything but I'm > not sure. It does seem like this way is cleaner though. > > I'm not sure if patch-libtool should use PATCH_WRKSRC or > CONFIGURE_WRKSRC. :) > > Satoshi > ------- > Index: bsd.port.mk > =================================================================== > RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v > retrieving revision 1.355 > diff -u -r1.355 bsd.port.mk > --- bsd.port.mk 2000/10/08 11:43:54 1.355 > +++ bsd.port.mk 2000/10/10 01:28:35 > @@ -384,6 +394,7 @@ > # The patches specified by this variable will be > # applied after the normal distribution patches but > # before those in ${PATCHDIR}. > +# PATCH_WRKSRC - Directory to apply patches in (default: ${WRKSRC}). > # > # For configure: > # > @@ -409,6 +420,7 @@ > # For build and install: > # > # ALL_TARGET - Default target for sub-make in build stage (default: all). > +# BUILD_WRKSRC - Directory to do build in (default: ${WRKSRC}). > # MAKE_ENV - Additional environment vars passed to sub-make in build > # and install stages (default: see below). > # MAKE_ARGS - Any extra arguments to sub-make in build and install > @@ -418,6 +430,7 @@ > # > # INSTALL_TARGET - Default target for sub-make in install stage > # (default: install). > +# INSTALL_WRKSRC - Directory to install from (default: ${WRKSRC}). > # NO_MTREE - If set, will not invoke mtree from bsd.port.mk from > # the "install" target. > # MTREE_FILE - The name of the mtree file (default: /etc/mtree/BSD.x11.dist > @@ -704,6 +717,11 @@ > WRKSRC?= ${WRKDIR}/${DISTNAME} > .endif > > +PATCH_WRKSRC?= ${WRKSRC} > +CONFIGURE_WRKSRC?= ${WRKSRC} > +BUILD_WRKSRC?= ${WRKSRC} > +INSTALL_WRKSRC?=${WRKSRC} > + > PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} > > CONFIGURE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} > @@ -933,12 +957,12 @@ > PATCH_DIST_STRIP?= -p0 > .if defined(PATCH_DEBUG) > PATCH_DEBUG_TMP= yes > -PATCH_ARGS?= -d ${WRKSRC} -E ${PATCH_STRIP} > -PATCH_DIST_ARGS?= -d ${WRKSRC} -E ${PATCH_DIST_STRIP} > +PATCH_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_STRIP} > +PATCH_DIST_ARGS?= -d ${PATCH_WRKSRC} -E ${PATCH_DIST_STRIP} > .else > PATCH_DEBUG_TMP= no > -PATCH_ARGS?= -d ${WRKSRC} --forward --quiet -E ${PATCH_STRIP} > -PATCH_DIST_ARGS?= -d ${WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP} > +PATCH_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_STRIP} > +PATCH_DIST_ARGS?= -d ${PATCH_WRKSRC} --forward --quiet -E ${PATCH_DIST_STRIP} > .endif > .if defined(BATCH) > PATCH_ARGS+= --batch > @@ -1250,7 +1277,6 @@ > .undef HAS_CONFIGURE > .endif > > -CONFIGURE_WRKSRC?= ${WRKSRC} > CONFIGURE_SCRIPT?= configure > CONFIGURE_TARGET?= ${MACHINE_ARCH}--freebsd${OSREL} > CONFIGURE_LOG?= config.log > @@ -1784,10 +1811,10 @@ > .if !target(do-configure) > do-configure: > .if defined(USE_AUTOMAKE) > - @(cd ${WRKSRC} && ${AUTOMAKE}) > + @(cd ${CONFIGURE_WRKSRC} && ${AUTOMAKE}) > .endif > .if defined(USE_AUTOCONF) > - @(cd ${WRKSRC} && ${AUTOCONF}) > + @(cd ${CONFIGURE_WRKSRC} && ${AUTOCONF}) > .endif > @if [ -f ${SCRIPTDIR}/configure ]; then \ > cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ > @@ -1814,7 +1841,7 @@ > ${PERL5} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS} > .endif > .if defined(USE_IMAKE) > - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF}) > + @(cd ${CONFIGURE_WRKSRC}; ${SETENV} ${MAKE_ENV} ${XMKMF}) > .endif > .endif > > @@ -1823,9 +1850,9 @@ > .if !target(do-build) > do-build: > .if defined(USE_GMAKE) > - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) > + @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) > .else > - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) > + @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) > .endif > .endif > > @@ -1834,14 +1861,14 @@ > .if !target(do-install) > do-install: > .if defined(USE_GMAKE) > - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) > + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) > .if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES) > - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) > + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) > .endif > .else defined(USE_GMAKE) > - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) > + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) > .if defined(USE_IMAKE) && !defined(NO_INSTALL_MANPAGES) > - @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) > + @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install.man) > .endif > .endif > .endif > @@ -2186,7 +2221,7 @@ > exit 1); \ > fi; \ > LIBTOOLDIR=`${WHICH} ${LIBTOOL} | ${SED} -e 's^/bin/libtool^/share/libtool^'` || ${LOCALBASE}/share/libtool; \ > - cd ${WRKSRC}; \ > + cd ${PATCH_WRKSRC}; \ > for file in ${LIBTOOLFILES}; do \ > ${CP} $$file $$file.tmp; \ > ${SED} -e "s^\$$ac_aux_dir/ltconfig^$${LIBTOOLDIR}/ltconfig^g" \ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > -- Mario S. F. Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 17:25:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lavender.sanpei.org (nat06.st.keio.ac.jp [131.113.17.16]) by hub.freebsd.org (Postfix) with ESMTP id CFEF437B66C for ; Tue, 10 Oct 2000 17:25:50 -0700 (PDT) Received: (from sanpei@localhost) by lavender.sanpei.org (8.11.0/3.7W) id e9B0PO605044; Wed, 11 Oct 2000 09:25:24 +0900 (JST) Message-Id: <200010110025.e9B0PO605044@lavender.sanpei.org> To: jeremy@external.org Cc: walter@pelissero.org, ports@FreeBSD.org From: sanpei@FreeBSD.org Subject: Re: xmovie 1.5.2 for FreeBSD In-Reply-To: Your message of "Tue, 10 Oct 2000 12:57:28 -0500" References: <20001010125728.A1592@external.org> X-Mailer: Mew version 1.70 on Emacs 19.34.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Wed, 11 Oct 2000 09:25:19 +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> I've seen only a 1.3.1_1. I would be disappointed to see a 1.5.2.1, >> because I've looked carefully before investing my weekend in this >> port. >> >> I don't know if I'm willing to make an "official" port. As I pointed >> out in my previous message that patch corrects bugs present even in >> the Linux version. The author has been informed and I expect him to >> come up with a new release soon (possibly including the FreeBSD port). >> >> A port from that relese will be much smaller and cleaner. >> > >If you can build a native xmovie I think that would be preferable than using >the Linuxulator which the current (1.5.2.1) xmovie port does. I'm currently maintainer of graphics/xmovie. I created xmovie-1.5.2.1 port but using Linuxemulator. I'm glad to use FreeBSD native version. Do you(Walter C. Pelissero) become maintainer for xmovie? --- MIHIRA, Sanpei Yoshiro Yokohama, Japan. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 17:32:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DAF437B502; Tue, 10 Oct 2000 17:32:29 -0700 (PDT) Received: from indigo.external.org (c1118643-a.chmpgn1.il.home.com [24.181.130.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38C7D6E2FD7; Tue, 10 Oct 2000 17:32:21 -0700 (PDT) Received: (from jeremy@localhost) by indigo.external.org (8.9.3/8.9.3) id TAA05753; Tue, 10 Oct 2000 19:31:05 -0500 (CDT) (envelope-from jeremy) Date: Tue, 10 Oct 2000 19:31:04 -0500 From: Jeremy Shaffner To: sanpei@FreeBSD.org Cc: walter@pelissero.org, ports@FreeBSD.org Subject: Re: xmovie 1.5.2 for FreeBSD Message-ID: <20001010193104.A4918@external.org> References: <20001010125728.A1592@external.org> <200010110025.e9B0PO605044@lavender.sanpei.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <200010110025.e9B0PO605044@lavender.sanpei.org>; from sanpei@FreeBSD.org on Wed, Oct 11, 2000 at 09:25:19AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 11, 2000 at 09:25:19AM +0900, sanpei@FreeBSD.org wrote: > >If you can build a native xmovie I think that would be preferable than using > >the Linuxulator which the current (1.5.2.1) xmovie port does. > > I'm currently maintainer of graphics/xmovie. I created > xmovie-1.5.2.1 port but using Linuxemulator. I'm glad to use FreeBSD > native version. > Do you(Walter C. Pelissero) become maintainer for xmovie? > --- > MIHIRA, Sanpei Yoshiro > Yokohama, Japan. There's no reason why you can't continue to be the maintainer. If you don't want it anymore, I'll take it. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 17:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 198C337B66E for ; Tue, 10 Oct 2000 17:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA83754; Tue, 10 Oct 2000 17:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from subnet.sub.net (subnet.sub.net [212.227.14.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CDD437B66C for ; Tue, 10 Oct 2000 17:31:21 -0700 (PDT) Received: from lyxys.ka.sub.org (uucp@localhost) by subnet.sub.net (8.8.8/8.8.8/1.2subnet-linux) with bsmtp id CAA12975 for FreeBSD-gnats-submit@freebsd.org; Wed, 11 Oct 2000 02:31:17 +0200 Received: from localhost (1221 bytes) by lyxys.ka.sub.org via sendmail with P:stdio/R:smart_host/T:inet_uusmtp (sender: ) (ident using unix) id for ; Wed, 11 Oct 2000 02:29:03 +0200 (CEST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Aug-23) Message-Id: Date: Wed, 11 Oct 2000 02:29:03 +0200 (CEST) From: wolfgang@lyxys.ka.sub.org Reply-To: wolfgang@lyxys.ka.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21900: smail port suggests overwriting of sendmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21900 >Category: ports >Synopsis: smail port suggests overwriting of sendmail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 10 17:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wolfgang Zenker >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD 4.* >Description: The make procedure for the smail port (/usr/ports/mail/smail) outputs a suggestion to the user to enter "make replace" to replace sendmail on the system. A "make replace" actually does replace /usr/sbin/sendmail, which is nowadays a symlink to mailwrapper. The right action would be to replace the /etc/mail/mailer.conf with a version pointing to smail, at least at systems using mailwrapper (FreeBSD >= 4.x ?). >How-To-Repeat: cd /usr/ports/mail/smail make install make replace >Fix: Change Makefile to replace /etc/mail/mailer.conf instead of /usr/sbin/sendmail on calling "make replace", if the former exists. >Release-Note: >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 Oct 10 18:20:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 555EA37B502 for ; Tue, 10 Oct 2000 18:20:51 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id DAA73527; Wed, 11 Oct 2000 03:20:39 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9B1KED41123; Tue, 10 Oct 2000 18:20:14 -0700 (PDT) (envelope-from reg) Date: Tue, 10 Oct 2000 18:20:14 -0700 From: Jeremy Lea To: Nat Lanza Cc: ports@FreeBSD.ORG Subject: Re: adding '-gnome' and '-gtk' to package names Message-ID: <20001010182014.R30468@shale.csir.co.za> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from magus@cs.cmu.edu on Tue, Oct 10, 2000 at 02:21:08PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, Oct 10, 2000 at 02:21:08PM -0400, Nat Lanza wrote: > Also, it breaks pkg_version, which is really annoying: > > # pkg_version -v > [ elided ] > sawfish-gnome-0.31.1 ? unknown in index > [ elided ] > xscreensaver-gtk-3.24 ? unknown in index > > Please consider backing out this change. No. These are very important. They tell you when optional support has been added for a port. As for pkg_version, the current solution is to add slave makefiles for all of the various option based ports (not just the GNOME/GTK+ ones, but also the i18n ones, the mysql ones, the x11 ones...). A more offical route would be to remove the -'s from all of the ports which are not supposed to have them in their names (there are a bunch, and have pkg_version only compare the bit after the first - and before the second (one only before the second if the first does not exist), with the version number tacked on the end. For now - define WITHOUT_ALL in /etc/make.conf and you won't see any problems. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 18:47:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hurlame.pdl.cs.cmu.edu (HURLAME.PDL.CS.CMU.EDU [128.2.189.78]) by hub.freebsd.org (Postfix) with ESMTP id 0DC9937B66C; Tue, 10 Oct 2000 18:47:25 -0700 (PDT) Received: (from magus@localhost) by hurlame.pdl.cs.cmu.edu (8.11.0/8.11.0) id e9B1lL146831; Tue, 10 Oct 2000 21:47:21 -0400 (EDT) (envelope-from magus) To: Jeremy Lea Cc: ports@FreeBSD.ORG Subject: Re: adding '-gnome' and '-gtk' to package names References: <20001010182014.R30468@shale.csir.co.za> From: Nat Lanza Date: 10 Oct 2000 21:47:21 -0400 In-Reply-To: Jeremy Lea's message of "Tue, 10 Oct 2000 18:20:14 -0700" Message-ID: Lines: 35 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Lea writes: > No. These are very important. They tell you when optional support has > been added for a port. While I agree that being able to tell which optional support has been added for a port, I think the package's name is entirely the wrong place to store this information. The name's too overloaded -- to list the files installed by the 'foo' port, you need to know exactly which version of the foo package is installed, which revision of the port it is, and now which optional features were built. Sure, you can get that by grepping through the output of pkg_info, but that's an ugly hack. If I want to know what optional features are installed for the port foo, which is cleaner? 'pkg_info foo', or 'pkg_info | grep foo' edited and fed to pkg_info again? Storing arbitrary package metadata in /var/db/pkg is easy, and can be done in a backwards-compatible way; why not do that instead of storing the data in the package's name? > For now - define WITHOUT_ALL in /etc/make.conf and you won't see any > problems. When you say "won't see any problems", what do you mean? Will I get gnome support in sawfish and xmms without the package name changing, or will they be built without any optional features? --nat -- nat lanza --------------------- research programmer, parallel data lab, cmu scs magus@cs.cmu.edu -------------------------------- http://www.cs.cmu.edu/~magus/ there are no whole truths; all truths are half-truths -- alfred north whitehead To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 18:50:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87F0C37B66D for ; Tue, 10 Oct 2000 18:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA08472; Tue, 10 Oct 2000 18:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp2.port.ru (mx2.port.ru [194.67.23.33]) by hub.freebsd.org (Postfix) with ESMTP id C119237B502 for ; Tue, 10 Oct 2000 18:47:36 -0700 (PDT) Received: from adsl-141-154-12-16.bellatlantic.net ([141.154.12.16] helo=kan.dnsalias.net) by smtp2.port.ru with esmtp (Exim 3.14 #30) id 13jAzT-0003KR-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 11 Oct 2000 05:47:32 +0400 Received: (from kan@localhost) by kan.dnsalias.net (8.11.0/8.11.0) id e9B1lTS43280; Tue, 10 Oct 2000 21:47:29 -0400 (EDT) (envelope-from kan) Message-Id: <200010110147.e9B1lTS43280@kan.dnsalias.net> Date: Tue, 10 Oct 2000 21:47:29 -0400 (EDT) From: kabaev@mail.ru Reply-To: ak03@gte.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21901: Add support for MTRRs into utah-glx port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21901 >Category: ports >Synopsis: Port MTRR support from XFree86-4 to utah-glx >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 Oct 10 18:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alexander N. Kabaev >Release: FreeBSD 5.0-CURRENT i386 >Organization: Verizon Laboratories Inc. >Environment: 5.0-CURRENT, should not on 4.x-STABLE as well >Description: MTRR setting code has been lifted from XFree86-4 bsd_video.c and added to the utah-glx hw_mtrr.c file Changed configure.in slightly to allow detection of MTRR interface on FreeBSD >How-To-Repeat: N/A >Fix: Index: files/patch-af =================================================================== RCS file: /home/ncvs/ports/graphics/utah-glx/files/patch-af,v retrieving revision 1.1 diff -u -r1.1 patch-af --- files/patch-af 2000/06/26 13:45:28 1.1 +++ files/patch-af 2000/10/10 05:08:04 @@ -1,5 +1,30 @@ ---- configure.in.orig Fri Jun 23 12:23:13 2000 -+++ configure.in Fri Jun 23 12:30:06 2000 +--- configure.in.orig Thu Aug 24 09:53:45 2000 ++++ configure.in Mon Oct 9 21:39:56 2000 +@@ -846,19 +846,19 @@ + AC_HEADER_STDC + AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h unistd.h floatingpoint.h \ + sys/types.h sys/mman.h sys/perm.h asm/sigcontext.h) +-AC_CHECK_HEADER(asm/mtrr.h, ++AC_CHECK_HEADER(sys/memrange.h, + [ + if test "$enable_mtrr" = "no" + then + echo "disabling mtrr (manual override)" + cflags="$cflags -DNO_MTRR" + else +- dnl For some reason, some files are incomplete ++ dnl For some reason, some files are incomplete + dnl Verify the validity of the file here +- AC_MSG_CHECKING(validity of asm/mtrr.h) ++ AC_MSG_CHECKING(validity of sys/memrange.h) + AC_EGREP_CPP([GLX_maGiC_VALID],[ +-#include +-#ifdef MTRRIOC_ADD_ENTRY ++#include ++#ifdef MDF_WRITECOMBINE + GLX_maGiC_VALID + #endif + ], @@ -879,7 +879,7 @@ ]) Index: files/patch-ag =================================================================== RCS file: patch-ag diff -N patch-ag --- /dev/null Tue Oct 10 14:53:47 2000 +++ patch-ag Mon Oct 9 21:44:15 2000 @@ -0,0 +1,364 @@ +--- servGL/hwglx/common/hw_mtrr.c.orig Mon Oct 9 21:42:30 2000 ++++ servGL/hwglx/common/hw_mtrr.c Mon Oct 9 21:42:55 2000 +@@ -1,4 +1,3 @@ +- + #include + #include + #include +@@ -7,13 +6,15 @@ + #include + #include + #include ++#include + + #include "glx_symbols.h" + #include "hwlog.h" + +- + #ifndef NO_MTRR + ++#ifdef linux ++ + #define MTRR_NEED_STRINGS + #include + #include +@@ -237,6 +238,339 @@ + sentry.base, sentry.size ); + } + } ++ ++#endif ++ ++#if defined(__FreeBSD__) || defined(__NetBSD__) ++ ++#ifndef __NetBSD__ ++#include ++#else ++#include "memrange.h" ++#endif ++#define X_MTRR_ID "XFree86" ++ ++typedef struct x_RangeRec { ++ struct mem_range_desc mrd; ++ int wasWC; ++ struct x_RangeRec * next; ++} RangeRec, *RangePtr; ++ ++static RangePtr savedRangeList = NULL; ++static int devMemFd = -1; ++ ++/* ++ * getAllRanges returns the full list of memory ranges with attributes set. ++ */ ++ ++static struct mem_range_desc * ++getAllRanges(int *nmr) ++{ ++ struct mem_range_desc *mrd; ++ struct mem_range_op mro; ++ ++ /* ++ * Find how many ranges there are. If this fails, then the kernel ++ * probably doesn't have MTRR *support. ++ */ ++ mro.mo_arg[0] = 0; ++ if (ioctl(devMemFd, MEMRANGE_GET, &mro)) ++ return NULL; ++ *nmr = mro.mo_arg[0]; ++ mrd = (struct mem_range_desc *)xalloc(*nmr * sizeof(struct mem_range_desc)); ++ mro.mo_arg[0] = *nmr; ++ mro.mo_desc = mrd; ++ if (ioctl(devMemFd, MEMRANGE_GET, &mro)) { ++ xfree(mrd); ++ return NULL; ++ } ++ return mrd; ++} ++ ++static void ++freeRangeList(RangePtr range) ++{ ++ RangePtr rp; ++ ++ while (range) { ++ rp = range; ++ range = rp->next; ++ xfree(rp); ++ } ++} ++ ++static RangePtr ++dupRangeList(RangePtr list) ++{ ++ RangePtr new = NULL, rp, p; ++ ++ rp = list; ++ while (rp) { ++ p = (RangePtr)xalloc(sizeof(RangeRec)); ++ *p = *rp; ++ p->next = new; ++ new = p; ++ rp = rp->next; ++ } ++ return new; ++} ++ ++static RangePtr ++sortRangeList(RangePtr list) ++{ ++ RangePtr rp1, rp2, copy, sorted = NULL, minp, prev, minprev; ++ unsigned long minBase; ++ ++ /* Sort by base address */ ++ rp1 = copy = dupRangeList(list); ++ while (rp1) { ++ minBase = rp1->mrd.mr_base; ++ minp = rp1; ++ minprev = NULL; ++ prev = rp1; ++ rp2 = rp1->next; ++ while (rp2) { ++ if (rp2->mrd.mr_base < minBase) { ++ minBase = rp2->mrd.mr_base; ++ minp = rp2; ++ minprev = prev; ++ } ++ prev = rp2; ++ rp2 = rp2->next; ++ } ++ if (minprev) { ++ minprev->next = minp->next; ++ rp1 = copy; ++ } else { ++ rp1 = minp->next; ++ } ++ minp->next = sorted; ++ sorted = minp; ++ } ++ return sorted; ++} ++ ++/* ++ * findRanges returns a list of ranges that overlap the specified range. ++ */ ++ ++static void ++findRanges(unsigned long base, unsigned long size, RangePtr *ucp, RangePtr *wcp) ++{ ++ struct mem_range_desc *mrd; ++ int nmr, i; ++ RangePtr rp, *p; ++ ++ if (!(mrd = getAllRanges(&nmr))) ++ return; ++ ++ for (i = 0; i < nmr; i++) { ++ if ((mrd[i].mr_flags & MDF_ACTIVE) && ++ mrd[i].mr_base < base + size && ++ mrd[i].mr_base + mrd[i].mr_len > base) { ++ if (mrd[i].mr_flags & MDF_WRITECOMBINE) ++ p = wcp; ++ else if (mrd[i].mr_flags & MDF_UNCACHEABLE) ++ p = ucp; ++ else ++ continue; ++ rp = (RangePtr)xalloc(sizeof(RangeRec)); ++ rp->mrd = mrd[i]; ++ rp->next = *p; ++ *p = rp; ++ } ++ } ++ xfree(mrd); ++} ++ ++/* ++ * This checks if the existing overlapping ranges fully cover the requested ++ * range. Is this overkill? ++ */ ++ ++static int ++fullCoverage(unsigned long base, unsigned long size, RangePtr overlap) ++{ ++ RangePtr rp1, sorted = NULL; ++ unsigned long end; ++ ++ sorted = sortRangeList(overlap); ++ /* Look for gaps */ ++ rp1 = sorted; ++ end = base + size; ++ while (rp1) { ++ if (rp1->mrd.mr_base > base) { ++ freeRangeList(sorted); ++ return FALSE; ++ } else { ++ base = rp1->mrd.mr_base + rp1->mrd.mr_len; ++ } ++ if (base >= end) { ++ freeRangeList(sorted); ++ return 1; ++ } ++ rp1 = rp1->next; ++ } ++ freeRangeList(sorted); ++ return 0; ++} ++ ++static RangePtr ++addWC(unsigned long base, unsigned long size) ++{ ++ RangePtr uc = NULL, wc = NULL, retlist = NULL; ++ struct mem_range_desc mrd; ++ struct mem_range_op mro; ++ ++ findRanges(base, size, &uc, &wc); ++ ++ /* See of the full range is already WC */ ++ if (!uc && fullCoverage(base, size, wc)) { ++ hwMsg(1, "Write-combining range (0x%lx,0x%lx) was already set\n", ++ base, size); ++ return NULL; ++ } ++ ++ /* Otherwise, try to add the new range */ ++ mrd.mr_base = base; ++ mrd.mr_len = size; ++ strcpy(mrd.mr_owner, X_MTRR_ID); ++ mrd.mr_flags = MDF_WRITECOMBINE; ++ mro.mo_desc = &mrd; ++ mro.mo_arg[0] = MEMRANGE_SET_UPDATE; ++ if (ioctl(devMemFd, MEMRANGE_SET, &mro)) { ++ hwError("Failed to set write-combining range " ++ "(0x%lx,0x%lx)\n", base, size); ++ return NULL; ++ } else { ++ hwMsg(1, "Write-combining range (0x%lx,0x%lx)\n", base, size); ++ retlist = (RangePtr)xalloc(sizeof(RangeRec)); ++ retlist->mrd = mrd; ++ retlist->wasWC = FALSE; ++ retlist->next = NULL; ++ return retlist; ++ } ++} ++ ++static void ++undoWC(RangePtr rp) ++{ ++ struct mem_range_op mro; ++ int failed; ++ ++ while (rp) { ++ hwMsg(1,"Undo for (0x%lx,0x%lx), %d\n", ++ (unsigned long)rp->mrd.mr_base, ++ (unsigned long)rp->mrd.mr_len, rp->wasWC); ++ failed = FALSE; ++ if (rp->wasWC) { ++ mro.mo_arg[0] = MEMRANGE_SET_UPDATE; ++ rp->mrd.mr_flags = MDF_WRITECOMBINE; ++ strcpy(rp->mrd.mr_owner, "unknown"); ++ } else { ++ mro.mo_arg[0] = MEMRANGE_SET_REMOVE; ++ } ++ mro.mo_desc = &rp->mrd; ++ ++ if (ioctl(devMemFd, MEMRANGE_SET, &mro)) { ++ if (!rp->wasWC) { ++ mro.mo_arg[0] = MEMRANGE_SET_UPDATE; ++ rp->mrd.mr_flags = MDF_UNCACHEABLE; ++ strcpy(rp->mrd.mr_owner, "unknown"); ++ if (ioctl(devMemFd, MEMRANGE_SET, &mro)) ++ failed = TRUE; ++ } else ++ failed = TRUE; ++ } ++ if (failed) { ++ hwError("Failed to restore MTRR range (0x%lx,0x%lx)\n", ++ (unsigned long)rp->mrd.mr_base, ++ (unsigned long)rp->mrd.mr_len); ++ } ++ rp = rp->next; ++ } ++} ++ ++static int ++cleanMTRR() ++{ ++ struct mem_range_desc *mrd; ++ struct mem_range_op mro; ++ int nmr, i; ++ ++ /* This shouldn't happen */ ++ if (devMemFd < 0) ++ return FALSE; ++ ++ if (!(mrd = getAllRanges(&nmr))) ++ return FALSE; ++ ++ for (i = 0; i < nmr; i++) { ++ if (strcmp(mrd[i].mr_owner, X_MTRR_ID) == 0 && ++ (mrd[i].mr_flags & MDF_ACTIVE)) { ++ hwMsg( 1,"Clean for (0x%lx,0x%lx)\n", ++ (unsigned long)mrd[i].mr_base, ++ (unsigned long)mrd[i].mr_len); ++ if (mrd[i].mr_flags & MDF_FIXACTIVE) { ++ mro.mo_arg[0] = MEMRANGE_SET_UPDATE; ++ mrd[i].mr_flags = MDF_UNCACHEABLE; ++ } else { ++ mro.mo_arg[0] = MEMRANGE_SET_REMOVE; ++ } ++ mro.mo_desc = mrd + i; ++ ioctl(devMemFd, MEMRANGE_SET, &mro); ++ } ++ } ++ xfree(mrd); ++ return TRUE; ++} ++ ++static void CloseMTRR( void ) ++{ ++ undoWC(savedRangeList); ++ close(devMemFd); ++} ++ ++static void OpenMTRR( void ) ++{ ++ if ( ( devMemFd = open( "/dev/mem", O_RDWR, 0 ) ) == -1 ) ++ { ++ hwError( "Error opening /dev/mem: %s\n", strerror( errno ) ); ++ hwError( "MTRR not enabled\n" ); ++ return; ++ } ++ ++ if ( !cleanMTRR() ) { ++ close(devMemFd); ++ devMemFd = -1; ++ return; ++ } ++ ++ atexit( CloseMTRR ); ++} ++ ++void SetWriteCombining( long physical, int bytes ) ++{ ++ RangePtr rp; ++ ++ if ( devMemFd < 0 ) { ++ OpenMTRR(); ++ } ++ ++ if ( devMemFd < 0 ) { ++ return; ++ } ++ ++ rp = addWC(physical, bytes); ++ ++ if ( NULL != rp ) { ++ rp->next = savedRangeList; ++ savedRangeList = rp; ++ } ++} ++ ++ ++#endif /* end of BSD MTRR support */ + + /* + * FlushWriteCombining Index: files/patch-ah =================================================================== RCS file: patch-ah diff -N patch-ah --- /dev/null Tue Oct 10 14:53:47 2000 +++ patch-ah Mon Oct 9 21:49:06 2000 @@ -0,0 +1,20 @@ +--- servGL/hwglx/mga/mgadirect.c.orig Mon Oct 9 21:47:35 2000 ++++ servGL/hwglx/mga/mgadirect.c Mon Oct 9 21:48:18 2000 +@@ -62,17 +62,6 @@ + #include "glx_clients.h" + #include "glx_init.h" + +-#ifndef NO_MTRR +-#define MTRR_NEED_STRINGS +-#include +-#include +-#include +-#include +-#include +-int mtrr; +-void mgaCloseMTRR(); +-#endif +- + #include "xf86_OSproc.h" + + >Release-Note: >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 Oct 10 18:54:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id 7591937B503 for ; Tue, 10 Oct 2000 18:54:40 -0700 (PDT) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id UAA13436 for ; Tue, 10 Oct 2000 20:54:39 -0500 (CDT) (envelope-from jeff-ml@mountin.net) Received: from dial-74.max1.wa.cyberlynk.net(207.227.118.74) by peak.mountin.net via smap (V1.3) id sma013434; Tue Oct 10 20:54:19 2000 Message-Id: <4.3.2.20001010195748.022caa50@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Tue, 10 Oct 2000 20:54:21 -0500 To: ports@FreeBSD.ORG From: "Jeffrey J. Mountin" Subject: Re: port change oddities In-Reply-To: <4.3.2.20001010153914.00bc3c10@207.227.119.2> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 04:41 PM 10/10/00 -0500, Jeffrey J. Mountin forgot something: >The following ports are missing a Makefile and am not sure if this is by >design or not: > >graphics/gyvefigs/ >graphics/gyvegui/ >graphics/gyvekernel/ >math/rng/ >misc/gweather/ >misc/gyvescm/ >net/dnscache/ >x11/gtik/ >x11-toolkits/gtk10/ >x11-toolkits/qt21/ http://www.freebsd.org/cgi/ports.cgi Doesn't list some of these (didn't check all). Searching for removed ports seems to be broken. Change fallout? Haven't used this in a while, but do like the new tabular layout for the "Changes" link. There is also a typo - "an other" is one word. Also think the 3 occurrences of "print" should be "prints" if you want to be picky, but then "will print" may be more correct. ;) Ah, cvsweb tells a different story (checked them all): gyve* are dead (if not gone) mg was subsumed "rng is part of py-numeric now" according to ports/math/Makefile gweather is part of gnome-applets dnscache was repo-copied to djbdns gtik also now part of gnome-applets and the last two are toast One of 3 answered.... >Not sure why but the following were deleted: > >lang/snobol/README.html >security/seahorse/README.html >sysutils/obliterate/README.html Generated automagically, but nuked due to Attic entries. Two of 3, but cvsweb doesn't seem to have the answer. 8-) Jeff Mountin - jeff@mountin.net Systems/Network Administrator FreeBSD - the power to serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 20:10:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F8A637B66D for ; Tue, 10 Oct 2000 20:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA37271; Tue, 10 Oct 2000 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id EEC2137B66C for ; Tue, 10 Oct 2000 20:09:45 -0700 (PDT) Received: (qmail 13373319 invoked from network); 11 Oct 2000 03:09:43 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 11 Oct 2000 03:09:43 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9B39fU92249; Wed, 11 Oct 2000 05:09:41 +0200 (CEST) (envelope-from root) Message-Id: <200010110309.e9B39fU92249@gits.dyndns.org> Date: Wed, 11 Oct 2000 05:09:41 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21902: New port: textproc/dico - 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21902 >Category: ports >Synopsis: New port: textproc/dico - 1.1 >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 Oct 10 20:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: A French dictionary containing over 100,000 elements. These include common nouns, verbs, adjectives, conjugations and plurals. It also includes post codes. The package features a fast spell checking program. The documentation is in FRENCH (no English) but it should be fairly obvious how to use it. >How-To-Repeat: n/a >Fix: # 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: # # textproc/dico # textproc/dico/Makefile # textproc/dico/files # textproc/dico/files/patch-Makefile.am # textproc/dico/files/patch-lexique-Makefile.am # textproc/dico/files/patch-lexique-version.dic # textproc/dico/files/patch-manuel-Makefile.am # textproc/dico/files/patch-configure.in # textproc/dico/files/patch-sources-dico.c # textproc/dico/files/patch-sources-Makefile.am # textproc/dico/pkg-comment # textproc/dico/pkg-descr # textproc/dico/pkg-plist # textproc/dico/distinfo # echo c - textproc/dico mkdir -p textproc/dico > /dev/null 2>&1 echo x - textproc/dico/Makefile sed 's/^X//' >textproc/dico/Makefile << 'END-of-textproc/dico/Makefile' X# New ports collection makefile for: dico X# Date created: 11 October 2000 X# Whom: Cyrille Lefevre X# X# $FreeBSD$ X# X XPORTNAME= dico XPORTVERSION= 1.1 XCATEGORIES= textproc XMASTER_SITES= http://www.montefiore.ulg.ac.be/~geuzaine/BRONNE/WWW/ftp/ X# ftp://ftp.supelec.fr/lsi/pub/security/ X# have dico.tar.gz which fail because of EXTRACT_SUFX XDISTNAME= le_dico XEXTRACT_SUFX= .tgz X XMAINTAINER= clefevre@citeweb.net X XNO_WRKSUBDIR= true XPATCH_STRIP= -p1 XUSE_AUTOMAKE= true XAUTOMAKE= automake --add-missing --foreign --include-deps XACLOCAL= aclocal XMAN1= dico.1 X Xpost-patch: X @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' ${WRKSRC}/sources/dico.c X Xpre-configure: X @cd ${WRKSRC} && ${ACLOCAL} X X.include END-of-textproc/dico/Makefile echo c - textproc/dico/files mkdir -p textproc/dico/files > /dev/null 2>&1 echo x - textproc/dico/files/patch-Makefile.am sed 's/^X//' >textproc/dico/files/patch-Makefile.am << 'END-of-textproc/dico/files/patch-Makefile.am' X--- old/Makefile.am Thu Jan 1 01:00:00 1970 X+++ new/Makefile.am Wed Oct 11 03:49:06 2000 X@@ -0,0 +1,4 @@ X+docdir = $(datadir)/doc/dico X+doc_DATA = README.TXT X+ X+SUBDIRS = sources lexique manuel END-of-textproc/dico/files/patch-Makefile.am echo x - textproc/dico/files/patch-lexique-Makefile.am sed 's/^X//' >textproc/dico/files/patch-lexique-Makefile.am << 'END-of-textproc/dico/files/patch-lexique-Makefile.am' X--- old/lexique/Makefile.am Thu Jan 1 01:00:00 1970 X+++ new/lexique/Makefile.am Wed Oct 11 04:40:58 2000 X@@ -0,0 +1,4 @@ X+pkgdata_DATA = a.dic b.dic c.dic d.dic e.dic f.dic g.dic h.dic \ X+ i.dic j.dic k.dic l.dic m.dic n.dic o.dic p.dic \ X+ q.dic r.dic s.dic t.dic u.dic v.dic w.dic x.dic \ X+ y.dic z.dic version.dic END-of-textproc/dico/files/patch-lexique-Makefile.am echo x - textproc/dico/files/patch-lexique-version.dic sed 's/^X//' >textproc/dico/files/patch-lexique-version.dic << 'END-of-textproc/dico/files/patch-lexique-version.dic' X--- old/lexique/version.dic Thu Jan 1 01:00:00 1970 X+++ new/lexique/version.dic Wed Oct 11 04:40:35 2000 X@@ -0,0 +1,6 @@ X+Derniere mise a jour: 21 Octobre 1992 X+Realisee par : Rene Cougnenc X+Jeu de caracteres : ISO 8859-1 ( 8 bits Latin-1) X+ X+ 94836 mots X++ 39072 communes de France END-of-textproc/dico/files/patch-lexique-version.dic echo x - textproc/dico/files/patch-manuel-Makefile.am sed 's/^X//' >textproc/dico/files/patch-manuel-Makefile.am << 'END-of-textproc/dico/files/patch-manuel-Makefile.am' X--- old/manuel/Makefile.am Thu Jan 1 01:00:00 1970 X+++ new/manuel/Makefile.am Wed Oct 11 03:46:58 2000 X@@ -0,0 +1,7 @@ X+docdir = $(datadir)/doc/dico X+doc_DATA = copying.doc X+ X+man_MANS = dico.1 X+ X+EXTRA_DISTS = install.doc.msdos manuel.txt msdos.doc readme.txt.msdos \ X+ unix.doc END-of-textproc/dico/files/patch-manuel-Makefile.am echo x - textproc/dico/files/patch-configure.in sed 's/^X//' >textproc/dico/files/patch-configure.in << 'END-of-textproc/dico/files/patch-configure.in' X--- old/configure.in Thu Jan 1 01:00:00 1970 X+++ new/configure.in Wed Oct 11 04:19:05 2000 X@@ -0,0 +1,4 @@ X+AC_INIT(sources/dico.c) X+AM_INIT_AUTOMAKE(dico, 1.1) X+AC_PROG_CC X+AC_OUTPUT([Makefile sources/Makefile lexique/Makefile manuel/Makefile]) END-of-textproc/dico/files/patch-configure.in echo x - textproc/dico/files/patch-sources-dico.c sed 's/^X//' >textproc/dico/files/patch-sources-dico.c << 'END-of-textproc/dico/files/patch-sources-dico.c' X--- old/sources/dico.c Thu Mar 27 14:57:57 1997 X+++ new/sources/dico.c Wed Oct 11 04:04:49 2000 X@@ -19,8 +19,8 @@ X | | X +-----------------------------------------------------------------------+ X */ X-#define LINUX X X+#ifndef __FreeBSD__ X #ifndef LINUX X #ifndef sony X #ifndef MSDOS X@@ -28,6 +28,7 @@ X #endif X #endif X #endif X+#endif X X #ifdef sony /* Sony News WorkStations */ X #define UNIX X@@ -42,6 +43,12 @@ X #define MYOS "LINUX" X #endif X X+#ifdef __FreeBSD__ /* FreeBSD Operating System */ X+#define UNIX X+#define ISO_CHARS X+#define MYOS "FreeBSD" X+#endif X+ X #ifdef MSDOS /* Systeme d'operation de disque */ X #define MYOS "MSDOS" /* Microsoft :-) */ X #endif X@@ -51,8 +58,11 @@ X #define ISO_TERM 3 X #define COMMENT_CHAR 35 /* '#' ligne de commentaire */ X X-#define DICT_PATH "/usr/local/lib/dico" /* path par defaut unix/dos */ X+#ifndef MSDOS X+#define DICT_PATH "!!PREFIX!!/share/dico" /* path par defaut unix/dos */ X+#else X #define DOS_PATH "lexique" /* path par defaut Dos uniquement */ X+#endif X #define DICT_EXT ".dic" /* extension des fichiers dicos */ X #define VERSION_FILE "version.dic" /* fichier texte version dico */ X X@@ -60,11 +70,13 @@ X #define OK 0 X #define MYVBUF 10240 /* pour setvbuf() eventuel */ X X+#ifndef __FreeBSD__ X #ifndef LINUX X #ifndef sony X #define MUST_HAVE_BUF /* Linux va moins vite avec setvbuf! */ X #endif X #endif X+#endif X X typedef unsigned char byte; X X@@ -147,7 +159,9 @@ X if(argv[1][0] =='-') /* option ligne commande?*/ X return options( argv[1][1] ); X X+#ifndef __FreeBSD__ X mybanner(); /* on dit bonjour... */ X+#endif X X while( --argc) /* Allez, roulez ! */ X { X@@ -157,7 +171,9 @@ X lookfor( argv[argc] ); X } X X+#ifndef __FreeBSD__ X fprintf(stderr,"\nTrouve %ld mot%s\n",count, count > 1 ? "s" :"" ); X+#endif X X return OK ; X } X@@ -369,7 +385,9 @@ X X StrLwr( pattern ); /* passe en minuscules comme le dico */ X car = equival (pattern[0]); X+#ifndef __FreeBSD__ X fprintf(stderr, "Recherche %s dans la lettre %c... \n\n", pattern, car) ; X+#endif X X sprintf(fname, "%s%s%c%s", dict_path, sep, pattern[0], DICT_EXT ) ; X X@@ -395,7 +413,11 @@ X if( fmatch(sbuf,pattern) ) X { X translate( buf ); /* gere terminaux.... */ X+#ifndef __FreeBSD__ X printf("\t%s\n", beautify(buf) ); X+#else X+ printf("%s\n", beautify(buf) ); X+#endif X count ++ ; X } X } X@@ -451,8 +473,11 @@ X if( fmatch(sbuf,pattern) ) X { X translate( buf ) ; X- buf[0] = ToUpper( buf[0] ) ; X+#ifndef __FreeBSD__ X printf("\t%s\n", beautify (buf) ); X+#else X+ printf("%s\n", beautify (buf) ); X+#endif X count ++ ; X } X } X@@ -474,7 +499,7 @@ X X mybanner() X { X-/* printf("\nDICO V %s (%s) - R.Cougnenc 1992\n\n", __Version__, MYOS);*/ X+ printf("\nDICO V %s (%s) - R.Cougnenc 1992\n\n", __Version__, MYOS); X } X /*--------------------------------------------------------------------------*/ X X@@ -526,7 +551,9 @@ X byte ville[50], code[6]; X byte *r = ville; X X+/* #ifndef __FreeBSD__ */ X *str = ToUpper ( *str ); /* Premiere lettre... */ X+/* #endif */ X X if( ! strchr( str, '\t') ) /* Cas du nom commun */ X { END-of-textproc/dico/files/patch-sources-dico.c echo x - textproc/dico/files/patch-sources-Makefile.am sed 's/^X//' >textproc/dico/files/patch-sources-Makefile.am << 'END-of-textproc/dico/files/patch-sources-Makefile.am' X--- old/sources/Makefile.am Thu Jan 1 01:00:00 1970 X+++ new/sources/Makefile.am Wed Oct 11 03:35:13 2000 X@@ -0,0 +1 @@ X+bin_PROGRAMS = dico END-of-textproc/dico/files/patch-sources-Makefile.am echo x - textproc/dico/pkg-comment sed 's/^X//' >textproc/dico/pkg-comment << 'END-of-textproc/dico/pkg-comment' XAn interactive dictionnary uniquely in french. END-of-textproc/dico/pkg-comment echo x - textproc/dico/pkg-descr sed 's/^X//' >textproc/dico/pkg-descr << 'END-of-textproc/dico/pkg-descr' X "Le Dico" est une premiere Francaise ! X XPlus de 100.000 elements comportant noms communs, verbes, Xadjectifs, conjugaisons et pluriels complexes, ainsi que les Xprincipaux CODES POSTAUX, FRANCAIS, soigneusement elabores par un Xcollectif d'utilisateurs de BBS Francais, et mis en DOMAINE XPUBLIC au format ASCII ACCENTUE dans la mesure du possible, avec Xsoit le jeu IBM pour MS/DOS, soit le jeu ISO 8859-1 pour les Xautres systemes. X XA French dictionary containing over 100,000 elements. These include Xcommon nouns, verbs, adjectives, conjugations and plurals. It also Xincludes post codes. The package features a fast spell checking Xprogram. The documentation is in FRENCH (no English) but it should Xbe fairly obvious how to use it. X XWWW: http://www.montefiore.ulg.ac.be/cgi-bin-ulg/DICO.html END-of-textproc/dico/pkg-descr echo x - textproc/dico/pkg-plist sed 's/^X//' >textproc/dico/pkg-plist << 'END-of-textproc/dico/pkg-plist' X@name dico-1.1 X@cwd /usr/local Xbin/dico Xshare/dico/a.dic Xshare/dico/b.dic Xshare/dico/c.dic Xshare/dico/d.dic Xshare/dico/e.dic Xshare/dico/f.dic Xshare/dico/g.dic Xshare/dico/h.dic Xshare/dico/i.dic Xshare/dico/j.dic Xshare/dico/k.dic Xshare/dico/l.dic Xshare/dico/m.dic Xshare/dico/n.dic Xshare/dico/o.dic Xshare/dico/p.dic Xshare/dico/q.dic Xshare/dico/r.dic Xshare/dico/s.dic Xshare/dico/t.dic Xshare/dico/u.dic Xshare/dico/v.dic Xshare/dico/version.dic Xshare/dico/w.dic Xshare/dico/x.dic Xshare/dico/y.dic Xshare/dico/z.dic X@dirrm share/dico Xshare/doc/dico/README.TXT Xshare/doc/dico/copying.doc X@dirrm share/doc/dico END-of-textproc/dico/pkg-plist echo x - textproc/dico/distinfo sed 's/^X//' >textproc/dico/distinfo << 'END-of-textproc/dico/distinfo' XMD5 (le_dico.tgz) = df18e084ee2468a0dfc371f752bdbad0 END-of-textproc/dico/distinfo exit >Release-Note: >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 Oct 10 20:17:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from norn.cm.nu (h24-64-232-13.cg.shawcable.net [24.64.232.13]) by hub.freebsd.org (Postfix) with ESMTP id 6AF0E37B503; Tue, 10 Oct 2000 20:17:56 -0700 (PDT) Received: by norn.cm.nu (Postfix, from userid 1000) id D1D79120; Tue, 10 Oct 2000 21:16:53 -0600 (MDT) Date: Tue, 10 Oct 2000 21:16:53 -0600 From: Chris Piazza To: Mike Meyer Cc: Nickolay Dudorov , ports@FreeBSD.org Subject: Re: video mpeg broken? Message-ID: <20001010211653.A35997@norn.cm.nu> References: <14819.55108.312169.132976@guru.mired.org> <200010110306.e9B36mK14819@wint.itfs.nsk.su> <14819.55941.832171.603489@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Mutt/1.2.5i-jp0 In-Reply-To: <14819.55941.832171.603489@guru.mired.org>; from mwm@mired.org on Tue, Oct 10, 2000 at 10:12:05PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 10, 2000 at 10:12:05PM -0500, Mike Meyer wrote: > Nickolay Dudorov writes: > > In article <14819.55108.312169.132976@guru.mired.org> you wrote: > > > It seems that something has broken plaympeg - at least for video. In > > > trying to play video back, I get a black window and no images. Audio > > > playback seems fine. This is something I don't do often, so I'm not > > > sure when it happened. > > I've seen this "black window" with plaympeg also. > > It sometimes help if I move the window - after that I can see > > the video. (My system - -current with XFree86-4.01 and > > Matrox MGA G200 AGP, SDL -1.1.4, SMPEG - 0.4.0). > > Well, that doesn't work here. The system is -current (as of Saturday), > XFree86-4.0.1, Diamond Viper 550, SDL-1.1.5, SMPEG-0.4.0. These messages are better suited to -ports. I've only seen this problem with 1.1.5, 1.1.4 works fine. It also affects smpeg-0.4.1. I haven't updated the port to that version yet because I can't tell if it works or not :-). -Chris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 20:18: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from monk.via.net (monk.via.net [209.81.2.10]) by hub.freebsd.org (Postfix) with ESMTP id 64DE237B66C for ; Tue, 10 Oct 2000 20:18:06 -0700 (PDT) Received: (from joe@localhost) by monk.via.net (8.11.0/8.11.0) id e9B3I5t73370 for ports@FreeBSD.org; Tue, 10 Oct 2000 20:18:05 -0700 (PDT) (envelope-from joe) From: Joe McGuckin Message-Id: <200010110318.e9B3I5t73370@monk.via.net> Date: Tue, 10 Oct 2000 20:18:04 -0700 (PDT) To: ports@FreeBSD.org Subject: ports/audio/grip problem X-Mailer: Ishmail 1.3.1-970608-bsdi MIME-Version: 1.0 Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How do I get GRIP to work with a SCSI cdrom? What's the name of the generic cdrom device - grip insists on knowing this. Thanks, Joe -- Joe McGuckin ViaNet Communications 994 San Antonio Road Palo Alto, CA 94303 Phone: 650-969-2203 Cell: 650-207-0372 Fax: 650-969-2124 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 20:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 264E337B66C for ; Tue, 10 Oct 2000 20:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA46751; Tue, 10 Oct 2000 20:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 5D79037B502 for ; Tue, 10 Oct 2000 20:38:22 -0700 (PDT) Received: (qmail 13730756 invoked from network); 11 Oct 2000 03:38:20 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 11 Oct 2000 03:38:20 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9B3cK092957; Wed, 11 Oct 2000 05:38:20 +0200 (CEST) (envelope-from root) Message-Id: <200010110338.e9B3cK092957@gits.dyndns.org> Date: Wed, 11 Oct 2000 05:38:20 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21903: bsd.ports.mk - automake/aclocal adds Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21903 >Category: ports >Synopsis: bsd.ports.mk - automake/aclocal adds >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: Tue Oct 10 20:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: this patch adds support for AUTOMAKE_ARGS and ACLOCAL before AUTOCONF in case of autogenerated Makefiles such as in dico-1.1 (new port just submited which follow the old way, of course :). >How-To-Repeat: the following lines : AUTOMAKE= automake --add-missing --foreign --include-deps ACLOCAL= aclocal pre-configure: @cd ${WRKSRC} && ${ACLOCAL} could simply be replaced by : USE_ACLOCAL= true AUTOMAKE_ARGS= --add-missing --foreign --include-deps which is more consise. >Fix: apply the following patch. Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.355 diff -u -r1.355 bsd.port.mk --- bsd.port.mk 2000/10/08 11:43:54 1.355 +++ bsd.port.mk 2000/10/11 03:25:52 @@ -139,6 +139,11 @@ # USE_AUTOMAKE - Says that the port uses automake. Implies USE_AUTOCONF. # AUTOMAKE - Set to path of GNU automake if not in $PATH (default: # automake). +# AUTOMAKE_ARGS - Any extra arguments to GNU automake in configure +# stages (default: none). +# USE_ACLOCAL - Says that the port uses autoconf. Implies USE_AUTOCONF. +# ACLOCAL - Set to path of GNU aclocal if not in $PATH (default: +# aclocal). # USE_AUTOCONF - Says that the port uses autoconf. Implies GNU_CONFIGURE. # AUTOCONF - Set to path of GNU autoconf if not in $PATH (default: # autoconf). @@ -750,6 +755,9 @@ USE_AUTOCONF= yes BUILD_DEPENDS+= automake:${PORTSDIR}/devel/automake .endif +.if defined(USE_ACLOCAL) +USE_AUTOCONF= yes +.endif .if defined(USE_AUTOCONF) GNU_CONFIGURE= yes BUILD_DEPENDS+= autoconf:${PORTSDIR}/devel/autoconf @@ -895,6 +903,7 @@ # Miscellaneous overridable commands: GMAKE?= gmake AUTOMAKE?= automake +ACLOCAL?= aclocal AUTOCONF?= autoconf LIBTOOL?= libtool XMKMF?= xmkmf -a @@ -1784,9 +1793,12 @@ .if !target(do-configure) do-configure: .if defined(USE_AUTOMAKE) - @(cd ${WRKSRC} && ${AUTOMAKE}) + @(cd ${WRKSRC} && ${AUTOMAKE} ${AUTOMAKE_ARGS}) .endif .if defined(USE_AUTOCONF) +.if defined(USE_ACLOCAL) + @(cd ${WRKSRC} && ${ACLOCAL}) +.endif @(cd ${WRKSRC} && ${AUTOCONF}) .endif @if [ -f ${SCRIPTDIR}/configure ]; then \ >Release-Note: >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 Oct 10 22:14:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hal9000.bsdonline.org (ffaxvawx3-4-047.cox.rr.com [24.168.203.47]) by hub.freebsd.org (Postfix) with ESMTP id D7A6A37B66C; Tue, 10 Oct 2000 22:14:29 -0700 (PDT) Received: by hal9000.bsdonline.org (Postfix, from userid 1001) id 688A41F89; Wed, 11 Oct 2000 01:14:23 -0400 (EDT) Date: Wed, 11 Oct 2000 01:14:23 -0400 From: Andrew J Caines To: freebsd-ports@freebsd.org Cc: FreeBSD Stable Subject: Syntax error in ports .mk files? (galeon pkg reg) Message-ID: <20001011011423.A26301@hal9000.bsdonline.org> Reply-To: Andrew J Caines Mail-Followup-To: freebsd-ports@freebsd.org, FreeBSD Stable Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: H.A.L. Plant X-Powered-by: FreeBSD 4.1.1-STABLE Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Folks, Ports cvsup'ed less than an hour ago. After several clean builds and installs with package registration, I build Galeon (/usr/ports/www/galeon) and on "make install" got the following errors during package registration: # make install [snip] ===> Registering installation for galeon-0.7.6 "/usr/ports/Mk/bsd.gnome.mk", line 265: Malformed conditional (!defined(HAVE_GNOME) || ${CONFIGURE_ARGS:S/--localstatedir=//} == ${CONFIGURE_ARGS}) "/usr/ports/Mk/bsd.port.mk", line 3008: if-less endif "/usr/ports/Mk/bsd.port.mk", line 3008: Need an operator make: fatal errors encountered -- cannot continue "/usr/ports/Mk/bsd.gnome.mk", line 265: Malformed conditional (!defined(HAVE_GNOME) || ${CONFIGURE_ARGS:S/--localstatedir=//} == ${CONFIGURE_ARGS}) "/usr/ports/Mk/bsd.port.mk", line 3008: if-less endif "/usr/ports/Mk/bsd.port.mk", line 3008: Need an operator make: fatal errors encountered -- cannot continue # make clean [snip] "/usr/ports/Mk/bsd.gnome.mk", line 265: Malformed conditional (!defined(HAVE_GNOME) || ${CONFIGURE_ARGS:S/--localstatedir=//} == ${CONFIGURE_ARGS}) "/usr/ports/Mk/bsd.port.mk", line 3008: if-less endif "/usr/ports/Mk/bsd.port.mk", line 3008: Need an operator make: fatal errors encountered -- cannot continue Let me know if I can help debug or fix this. If this is user error, please let me know what I missed. -Andrew- -- _______________________________________________________________________ | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@altavista.net | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 23:27:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 0554F37B66D; Tue, 10 Oct 2000 23:27:16 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id IAA74848; Wed, 11 Oct 2000 08:26:51 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9B6QMx77868; Tue, 10 Oct 2000 23:26:22 -0700 (PDT) (envelope-from reg) Date: Tue, 10 Oct 2000 23:26:22 -0700 From: Jeremy Lea To: Andrew J Caines Cc: freebsd-ports@FreeBSD.ORG, FreeBSD Stable Subject: Re: Syntax error in ports .mk files? (galeon pkg reg) Message-ID: <20001010232622.S30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Andrew J Caines , freebsd-ports@FreeBSD.ORG, FreeBSD Stable References: <20001011011423.A26301@hal9000.bsdonline.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001011011423.A26301@hal9000.bsdonline.org>; from A.J.Caines@altavista.net on Wed, Oct 11, 2000 at 01:14:23AM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, Oct 11, 2000 at 01:14:23AM -0400, Andrew J Caines wrote: > Let me know if I can help debug or fix this. If this is user error, please > let me know what I missed. Fixed. It was my error, since I rushed a commit for sobomax. Make sure you have bsd.gnome.mk 1.5. -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 23:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00F1337B502 for ; Tue, 10 Oct 2000 23:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA11742; Tue, 10 Oct 2000 23:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 10 Oct 2000 23:30:03 -0700 (PDT) Message-Id: <200010110630.XAA11742@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Doug Barton Subject: Re: ports/21882: xlock + Mesa + XFree 4 = problems Reply-To: Doug Barton Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21882; it has been noted by GNATS. From: Doug Barton To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/21882: xlock + Mesa + XFree 4 = problems Date: Tue, 10 Oct 2000 23:28:40 -0700 Turns out after testing that the newer versions of the X 4 and/or Mesa ports now do the right thing in terms of deciding which libs/includes to delete when Mesa is pkg_delete'd, so this PR can be closed. FYI, it turns out that libGLU is the only bit of Mesa that's missing from X 4 that xlock needs. Too bad they left that bit out, it would make life much easier. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 23:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 194E737B503 for ; Tue, 10 Oct 2000 23:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA11728; Tue, 10 Oct 2000 23:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nau.antar.bryansk.ru (ns2.bryansk.ru [195.239.214.80]) by hub.freebsd.org (Postfix) with ESMTP id 3C72637B503 for ; Tue, 10 Oct 2000 23:22:58 -0700 (PDT) Received: from zombie.antar.bryansk.ru (zombie.antar.bryansk.ru [195.239.214.68]) by nau.antar.bryansk.ru (8.9.3/8.9.1) with ESMTP id KAA81090 for ; Wed, 11 Oct 2000 10:22:38 +0400 (MSD) Received: (from kappa@localhost) by zombie.antar.bryansk.ru (8.11.0/8.11.0) id e9B6MvN68032; Wed, 11 Oct 2000 10:22:57 +0400 (MSD) (envelope-from kappa) Message-Id: <200010110622.e9B6MvN68032@zombie.antar.bryansk.ru> Date: Wed, 11 Oct 2000 10:22:57 +0400 (MSD) From: Alex Kapranoff Reply-To: kappa@zombie.antar.bryansk.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21905: ports/net/bpft suggests 'pseudo-device bpf' Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21905 >Category: ports >Synopsis: ports/net/bpft suggests 'pseudo-device bpf' >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: Tue Oct 10 23:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alex Kapranoff >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: ports/net/bpft >Description: pkg-descr suggests 'pseudo-device bpf 4' for FreeBSD 4.0 or later. While -CURRENT kernel configs use mere 'device bpf' for that purpose. >How-To-Repeat: >Fix: --- pkg-descr.orig Wed Oct 11 10:14:08 2000 +++ pkg-descr Wed Oct 11 10:15:19 2000 @@ -14,8 +14,12 @@ The number after bpfilter is the number of interfaces that can be examined simultaneously. See section 6.1 of the Handbook for details. -On FreeBSD 4.0 or later versions, use the following line instead: +On FreeBSD 4.x versions, use the following line instead: pseudo-device bpf 4 # Berkeley packet filter + +On FreeBSD 5.0 or later, use this: + +device bpf # Berkeley packet filter - oddbjorn >Release-Note: >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 Oct 10 23:38: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 9866137B66D for ; Tue, 10 Oct 2000 23:38:02 -0700 (PDT) Received: from gorean.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id XAA00989; Tue, 10 Oct 2000 23:37:59 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <39E40AC7.BC742B7F@gorean.org> Date: Tue, 10 Oct 2000 23:37:59 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT-100 i386) X-Accept-Language: en MIME-Version: 1.0 To: Akinori MUSHA Cc: freebsd-ports@FreeBSD.org Subject: Re: GL_CLIENT_ALL_ATTRIB_BITS or GL_ALL_CLIENT_ATTRIB_BITS? References: <86lmvxwgyn.wl@archon.local.idaemons.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Akinori MUSHA wrote: > > This seems to be a discrepancy between Mesa3 and XFree86 4.0's Mesa. > > http://bento.FreeBSD.org/errorlogs/4-latest/ruby-opengl-0.31_1.log > > Take a look at graphics/ruby-opengl's patch-ab. This patch wasn't > needed when Mesa3 was version 3.2 because it defined > GL_CLIENT_ALL_ATTRIB_BITS, but on version 3.2.1 it was changed to > GL_ALL_CLIENT_ATTRIB_BITS and I had to add the patch. > > Now, XFree86 4.0 is found to lack the latter one... I don't have > XFree86 4.0 installed on any of my boxen, so would someone please > check XFree86 4.0 and tell me if it has GL_CLIENT_ALL_ATTRIB_BITS, or > something other than that? > > If it has GL_CLIENT_ALL_ATTRIB_BITS, I could change the part to > something like this: > > #ifdef GL_CLIENT_ALL_ATTRIB_BITS > /* For Mesa 3.2 and XFree86 4.0 */ > rb_define_const(mOGL, "CLIENT_ALL_ATTRIB_BITS", INT2NUM(GL_CLIENT_ALL_ATTRIB_BITS)); > #endif > #ifdef GL_ALL_CLIENT_ATTRIB_BITS > /* For Mesa 3.2.1 */ > rb_define_const(mOGL, "CLIENT_ALL_ATTRIB_BITS", INT2NUM(GL_ALL_CLIENT_ATTRIB_BITS)); > #endif # grep _ATTRIB_BITS /usr/X11R6/include/GL/* /usr/X11R6/include/GL/gl.h:#define GL_ALL_ATTRIB_BITS 0x000FFFFF /usr/X11R6/include/GL/gl.h:#define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF That's on X 4. FYI, I was just playing around with xlock and its Mesa dependency. Unfortunately (as far as I can tell), the XFree developers decided to leave libGLU out of their built in Mesa stuff, and any useful Mesa GL app needs it, so you have to install Mesa on top of X 4 anyway. Very annoying. Let me know if you need me to test any patches, although I don't use ruby. In fact, I'm not even sure what it is. :) Doug -- "The dead cannot be seduced." - Kai, "Lexx" Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 23:38:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2FA437B66C; Tue, 10 Oct 2000 23:38:54 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA14648; Tue, 10 Oct 2000 23:38:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Tue, 10 Oct 2000 23:38:54 -0700 (PDT) From: Message-Id: <200010110638.XAA14648@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/21901: Port MTRR support from XFree86-4 to utah-glx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port MTRR support from XFree86-4 to utah-glx Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: sobomax Responsible-Changed-When: Tue Oct 10 23:37:52 PDT 2000 Responsible-Changed-Why: Utah-glx is mine. BTW, have you tried to get your patches into official utah-glx sources? http://www.freebsd.org/cgi/query-pr.cgi?pr=21901 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 23:45:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8DCE537B503 for ; Tue, 10 Oct 2000 23:45:35 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id JAA15791; Wed, 11 Oct 2000 09:45:11 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9B6jBF17086; Wed, 11 Oct 2000 09:45:11 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E40C74.6F55E33D@FreeBSD.org> Date: Wed, 11 Oct 2000 09:45:08 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Chris Piazza Cc: Mike Meyer , Nickolay Dudorov , ports@FreeBSD.org Subject: Re: video mpeg broken? References: <14819.55108.312169.132976@guru.mired.org> <200010110306.e9B36mK14819@wint.itfs.nsk.su> <14819.55941.832171.603489@guru.mired.org> <20001010211653.A35997@norn.cm.nu> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chris Piazza wrote: > On Tue, Oct 10, 2000 at 10:12:05PM -0500, Mike Meyer wrote: > > Nickolay Dudorov writes: > > > In article <14819.55108.312169.132976@guru.mired.org> you wrote: > > > > It seems that something has broken plaympeg - at least for video. In > > > > trying to play video back, I get a black window and no images. Audio > > > > playback seems fine. This is something I don't do often, so I'm not > > > > sure when it happened. > > > I've seen this "black window" with plaympeg also. > > > It sometimes help if I move the window - after that I can see > > > the video. (My system - -current with XFree86-4.01 and > > > Matrox MGA G200 AGP, SDL -1.1.4, SMPEG - 0.4.0). > > > > Well, that doesn't work here. The system is -current (as of Saturday), > > XFree86-4.0.1, Diamond Viper 550, SDL-1.1.5, SMPEG-0.4.0. > > These messages are better suited to -ports. I've only seen this > problem with 1.1.5, 1.1.4 works fine. It also affects smpeg-0.4.1. > I haven't updated the port to that version yet because I can't tell > if it works or not :-). No 0.4.1 doesn't work at all for couple of reasons, some of which I filtered out and submitted my patches/comments back to Loki. Sam told me that he put those fixes in smpeg cvs, so next version should work with FreeBSD again. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 10 23:53: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 6E11437B502; Tue, 10 Oct 2000 23:53:02 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id JAA15890; Wed, 11 Oct 2000 09:52:59 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9B6r0F17103; Wed, 11 Oct 2000 09:53:00 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E40E48.9A62DED1@FreeBSD.org> Date: Wed, 11 Oct 2000 09:52:56 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org, asami@FreeBSD.org, jdp@FreeBSD.org Subject: New ports layout slowed-down cvsup operation Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, I wonder if anyone noticed that new ports layout considerably slowed down cvsup operations over a slow links. I attribute it to the fact that my checkouts.cvs file inflated almost two-fold (from 3MB to 6MB) after the change, so probably this causing slowdown, as perhaps the amount of data to be transferred increased proportionally. So the questions to beloved cvs-meisters are: am I right and if so how we could cope with this problem. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 1:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A969137B66C for ; Wed, 11 Oct 2000 01:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA57974; Wed, 11 Oct 2000 01:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from des.follo.net (des.follo.net [195.204.143.216]) by hub.freebsd.org (Postfix) with ESMTP id A9D8137B503 for ; Wed, 11 Oct 2000 01:37:35 -0700 (PDT) Received: (from root@localhost) by des.follo.net (8.9.3/8.9.3) id KAA85197; Wed, 11 Oct 2000 10:37:34 +0200 (CEST) (envelope-from des) Message-Id: <200010110837.KAA85197@des.follo.net> Date: Wed, 11 Oct 2000 10:37:34 +0200 (CEST) From: Dag-Erling Smørgrav Reply-To: des@yes.no To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21907: x11-fonts/freefonts contains non-free fonts Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21907 >Category: ports >Synopsis: x11-fonts/freefonts contains non-free fonts >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 11 01:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dag-Erling Smørgrav >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: ports-current >Description: The x11-fonts/freefonts port contains at least one shareware font (Mazama), and at least one (Shohl-Fold) which may not be distributed or used by for- profit organizations without the author's explicit permission, yet this fact is not mentioned in LEGAL, and the name of the port strongly (and incorrectly) suggests that it consists only of free fonts. >How-To-Repeat: # porteasy -abu freefonts # less /usr/X11R6/lib/X11/fonts/freefonts/mazama.license # less /usr/X11R6/lib/X11/fonts/freefonts/shf_____.license >Fix: Mark the port as encumbered, or remove it from the ports tree. >Release-Note: >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 Oct 11 4:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BC2537B503 for ; Wed, 11 Oct 2000 04:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15266; Wed, 11 Oct 2000 04:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 11 Oct 2000 04:10:02 -0700 (PDT) Message-Id: <200010111110.EAA15266@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Park JongHwan Subject: Re: ports/21890: ports/net/tintin++ source not found on any mastersite Reply-To: Park JongHwan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21890; it has been noted by GNATS. From: Park JongHwan To: ats@first.gmd.de Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/21890: ports/net/tintin++ source not found on any mastersite Date: Wed, 11 Oct 2000 20:00:18 +0900 (KST) Sorry, I didn't checked mastersite after foxfair's commit. Please change MASTER_SITES to http://mail.newclear.net/tintin/download/ diff -urN ../net/tintin++/Makefile tintin++/Makefile --- ../net/tintin++/Makefile Wed Sep 27 04:50:28 2000 +++ tintin++/Makefile Wed Oct 11 19:45:24 2000 @@ -8,9 +8,7 @@ PORTNAME= tintin PORTVERSION= 1.5.9 CATEGORIES= net games -MASTER_SITES= ftp://ftp.walrus.com/pub/avatar/clients/ \ - ftp://ftp.cctpu.edu.ru/pub/comp/networking/mud/ \ - ftp://iclub.nsu.ru/pub/mud/clients/tintin++/ +MASTER_SITES= http://mail.newclear.net/tintin/download/ DISTNAME= tintin++v1.5pl9 MAINTAINER= jhp@cocoja.holywar.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 4:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23F3937B66D for ; Wed, 11 Oct 2000 04:10:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15282; Wed, 11 Oct 2000 04:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 11 Oct 2000 04:10:04 -0700 (PDT) Message-Id: <200010111110.EAA15282@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Faulhaber Subject: Re: ports/21905: ports/net/bpft suggests 'pseudo-device bpf' Reply-To: Chris Faulhaber Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21905; it has been noted by GNATS. From: Chris Faulhaber To: Alex Kapranoff Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/21905: ports/net/bpft suggests 'pseudo-device bpf' Date: Wed, 11 Oct 2000 07:04:08 -0400 On Wed, Oct 11, 2000 at 10:22:57AM +0400, Alex Kapranoff wrote: > > >Number: 21905 > >Category: ports > >Synopsis: ports/net/bpft suggests 'pseudo-device bpf' > > --- pkg-descr.orig Wed Oct 11 10:14:08 2000 > +++ pkg-descr Wed Oct 11 10:15:19 2000 > @@ -14,8 +14,12 @@ > The number after bpfilter is the number of interfaces that can be > examined simultaneously. See section 6.1 of the Handbook for details. > > -On FreeBSD 4.0 or later versions, use the following line instead: > +On FreeBSD 4.x versions, use the following line instead: > Great, except 4.x, like 5.x, does not need the trailing number. See bpf(4) and LINT. > pseudo-device bpf 4 # Berkeley packet filter > + > +On FreeBSD 5.0 or later, use this: > + > +device bpf # Berkeley packet filter > -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.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 Oct 11 6:22:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7708937B502; Wed, 11 Oct 2000 06:22:13 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA60755; Wed, 11 Oct 2000 06:22:13 -0700 (PDT) (envelope-from tg@FreeBSD.org) Date: Wed, 11 Oct 2000 06:22:13 -0700 (PDT) From: Message-Id: <200010111322.GAA60755@freefall.freebsd.org> To: DougB@gorean.org, tg@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21882: xlock + Mesa + XFree 4 = problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xlock + Mesa + XFree 4 = problems State-Changed-From-To: open->closed State-Changed-By: tg State-Changed-When: Wed Oct 11 06:20:38 PDT 2000 State-Changed-Why: Closed at originator's request. Problem seems to be fixed in current versions of the respective ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=21882 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 6:27:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hurlame.pdl.cs.cmu.edu (HURLAME.PDL.CS.CMU.EDU [128.2.189.78]) by hub.freebsd.org (Postfix) with ESMTP id 0241C37B66C; Wed, 11 Oct 2000 06:27:31 -0700 (PDT) Received: (from magus@localhost) by hurlame.pdl.cs.cmu.edu (8.11.0/8.11.0) id e9BDR9448027; Wed, 11 Oct 2000 09:27:09 -0400 (EDT) (envelope-from magus) To: Rasmus Kaj Cc: Jeremy Lea , ports@FreeBSD.ORG Subject: Re: adding '-gnome' and '-gtk' to package names References: <20001010182014.R30468@shale.csir.co.za> <84lmvvvkg7.fsf@frodo.sickla.raditex.se> From: Nat Lanza Date: 11 Oct 2000 09:27:09 -0400 In-Reply-To: Rasmus Kaj's message of "11 Oct 2000 10:41:28 +0200" Message-ID: Lines: 28 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Rasmus Kaj writes: > It would be nice if e.g. pkg_info -I foo would list foo-1.0, > foo-gtk-1.0, and foo-mysql-0.8 (with their comments). And it should > not be _to_ hard (but don't hold your breath waiting for patches from > me) to make pkg_info do just that, especially if we make sure there is > no "other" uses of dashes in package names (as Jeremy Lea said we > should). We wouldn't have to change the naming for that. Hmm. 'pkg_info -I' is a good idea, whether or not package options are stored in the package name. I'll try to get some time to put a patch together before I fly out to Monterey. > When you have a ftp directory of built packages (or a cdrom), you > better have some difference in the filenames if the packages are > different ... Good point. But does the name of the file holding a package need to map exactly to the name of the package? If 'foo-gtk-1.0.tgz' installed package foo-1.0 with the GTK+ extras, I don't think it'd be too bad. --nat -- nat lanza --------------------- research programmer, parallel data lab, cmu scs magus@cs.cmu.edu -------------------------------- http://www.cs.cmu.edu/~magus/ there are no whole truths; all truths are half-truths -- alfred north whitehead To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 6:33:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gate.cpmet.ufpel.tche.br (gate.cpmet.ufpel.tche.br [200.248.148.33]) by hub.freebsd.org (Postfix) with ESMTP id F255C37B502 for ; Wed, 11 Oct 2000 06:33:07 -0700 (PDT) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.9.3/8.9.3) with ESMTP id SAA01193 for ; Tue, 10 Oct 2000 18:55:03 GMT (envelope-from casantos@cpmet.ufpel.tche.br) X-Authentication-Warning: gate.cpmet.ufpel.tche.br: casantos owned process doing -bs Date: Tue, 10 Oct 2000 18:55:02 +0000 (GMT) From: Carlos A M dos Santos To: FreeBSD ports mailing list Subject: Unidata units library 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 Hello I'm trying to create a port for Unidata units library, based on the already-existing math/netcdf one. I'm having problems to generate a shared library because the configure script seems to ignore how to create one. Could someone please give me a hand? Thanks -- Carlos A. M. dos Santos Federal University of Pelotas Meteorological Research Center Av. Ildefonso Simoes Lopes 2791 Pelotas, RS, Brasil, CEP 96060-290 WWW: http://www.cpmet.ufpel.tche.br RENPAC (X.25): 153231641 Phone: +55 53 277-6767 FAX: +55 53 277-6722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 6:33:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gate.cpmet.ufpel.tche.br (gate.cpmet.ufpel.tche.br [200.248.148.33]) by hub.freebsd.org (Postfix) with ESMTP id ED86E37B66D for ; Wed, 11 Oct 2000 06:33:12 -0700 (PDT) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.9.3/8.9.3) with ESMTP id NAA01316 for ; Tue, 10 Oct 2000 13:32:01 GMT (envelope-from casantos@cpmet.ufpel.tche.br) X-Authentication-Warning: gate.cpmet.ufpel.tche.br: casantos owned process doing -bs Date: Tue, 10 Oct 2000 13:32:01 +0000 (GMT) From: Carlos A M dos Santos To: FreeBSD ports mailing list Subject: Script to genarate PLIST? 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 Hello Have someone written a script to generate a PLIST from an installation directory tree? I'd like to make something like % make install DESTDIR=/var/tmp/pkg-name % mk_plist /var/tmp/pkg-name > PLIST Thanks -- Carlos A. M. dos Santos Federal University of Pelotas Meteorological Research Center Av. Ildefonso Simoes Lopes 2791 Pelotas, RS, Brasil, CEP 96060-290 WWW: http://www.cpmet.ufpel.tche.br RENPAC (X.25): 153231641 Phone: +55 53 277-6767 FAX: +55 53 277-6722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 6:58:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 60CB037B503 for ; Wed, 11 Oct 2000 06:58:53 -0700 (PDT) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e9BDwPQ70222; Wed, 11 Oct 2000 09:58:25 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39E47200.7125F0BF@thehousleys.net> Date: Wed, 11 Oct 2000 09:58:24 -0400 From: James Housley X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Carlos A M dos Santos Cc: FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Carlos A M dos Santos wrote: > > Hello > > Have someone written a script to generate a PLIST from an installation > directory tree? I'd like to make something like > > % make install DESTDIR=/var/tmp/pkg-name > % mk_plist /var/tmp/pkg-name > PLIST > The porters handbook show how to do this. http://www.freebsd.org/porters-handbook/porting-autoplist.html However it could use some improvements. Jim -- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- microsoft: "where do you want to go today?" linux: "where do you want to go tomorrow?" BSD: "are you guys coming, or what?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 7: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75A8C37B66C for ; Wed, 11 Oct 2000 07:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73516; Wed, 11 Oct 2000 07:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from counter.bik-gmbh.de (counter.bik-gmbh.de [194.233.237.131]) by hub.freebsd.org (Postfix) with ESMTP id 92F7437B66D for ; Wed, 11 Oct 2000 06:50:15 -0700 (PDT) Received: (from cracauer@localhost) by counter.bik-gmbh.de (8.11.0/8.8.8) id e9BDo5e66024; Wed, 11 Oct 2000 15:50:05 +0200 (CEST) (envelope-from cracauer) Message-Id: <200010111350.e9BDo5e66024@counter.bik-gmbh.de> Date: Wed, 11 Oct 2000 15:50:05 +0200 (CEST) From: Martin Cracauer Reply-To: cracauer@counter.bik-gmbh.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21910: apache13-port module configure arguments do not work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21910 >Category: ports >Synopsis: The apache port has module-enabling CONFIGURE_ARGS - they don't work >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 11 07:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Martin Cracauer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: ports/www/apache13/Makefile has CONFIGURE_ARGS that should enable some modules. However, the current apache configure script has a bug that mod-enabling configure options are not processed when they appear late on the commandline (I did not bother to find out the exact conditions). Reordering CONFIGURE_ARGS to have the module-enabling ones earlier on the commandline make things work >How-To-Repeat: Install the port. It should enable module auth_db. Then do /usr/local/sbin/httpd -l which lists modules, you will see that auth_db is missing. >Fix: Workaround: reorder arguments like the appended diff. The maintainer should probably investigates the exact circumstances and report them back to the apache team. Thanks for your good work. Index: Makefile =================================================================== RCS file: /home/CVS-FreeBSD/ports/www/apache13/Makefile,v retrieving revision 1.82 diff -u -r1.82 Makefile --- Makefile 2000/08/22 03:41:03 1.82 +++ Makefile 2000/10/11 13:45:15 @@ -35,6 +35,9 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= \ + --enable-module=most \ + --enable-module=auth_db \ + --enable-module=proxy \ --prefix=${PREFIX} \ --server-gid=nogroup \ --with-perl=${PERL} \ @@ -42,8 +45,6 @@ --suexec-docroot=${PREFIX}/www/data \ --without-confadjust \ --enable-shared=remain \ - --enable-module=most \ - --enable-module=auth_db \ --disable-module=auth_dbm OPTIM= -DHARD_SERVER_LIMIT=512 \ >Release-Note: >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 Oct 11 7: 4:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 925F737B66C for ; Wed, 11 Oct 2000 07:04:03 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id RAA23896; Wed, 11 Oct 2000 17:03:37 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9BE3dF58995; Wed, 11 Oct 2000 17:03:39 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E47337.A085FD80@FreeBSD.org> Date: Wed, 11 Oct 2000 17:03:35 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: James Housley Cc: Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? References: <39E47200.7125F0BF@thehousleys.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org James Housley wrote: > Carlos A M dos Santos wrote: > > > > Hello > > > > Have someone written a script to generate a PLIST from an installation > > directory tree? I'd like to make something like > > > > % make install DESTDIR=/var/tmp/pkg-name > > % mk_plist /var/tmp/pkg-name > PLIST > > > The porters handbook show how to do this. > > http://www.freebsd.org/porters-handbook/porting-autoplist.html > > However it could use some improvements. I usually have the following in my .profile: alias uplist='find `make -V PREFIX` \( -type f -or -type l \) -cmin -10 | sort | sed "s|`make -V PREFIX`/||"' alias duplist='find `make -V PREFIX` -type d -cmin -10 | sort -r | sed "s|`make -V PREFIX`/|@dirrm |"' -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 7: 6: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by hub.freebsd.org (Postfix) with ESMTP id 4E31637B503; Wed, 11 Oct 2000 07:06:06 -0700 (PDT) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.0/8.11.0) id e9BE66559577; Wed, 11 Oct 2000 07:06:06 -0700 (PDT) (envelope-from bmah) Message-Id: <200010111406.e9BE66559577@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Jeremy Lea Cc: Nat Lanza , ports@FreeBSD.ORG Subject: Re: adding '-gnome' and '-gtk' to package names In-Reply-To: <20001010182014.R30468@shale.csir.co.za> References: <20001010182014.R30468@shale.csir.co.za> Comments: In-reply-to Jeremy Lea message dated "Tue, 10 Oct 2000 18:20:14 -0700." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-1438536511P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 11 Oct 2000 07:06:06 -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-1438536511P Content-Type: text/plain; charset=us-ascii If memory serves me right, Jeremy Lea wrote: > Hi, > > On Tue, Oct 10, 2000 at 02:21:08PM -0400, Nat Lanza wrote: > > Also, it breaks pkg_version, which is really annoying: > > > > # pkg_version -v > > [ elided ] > > sawfish-gnome-0.31.1 ? unknown in index > > [ elided ] > > xscreensaver-gtk-3.24 ? unknown in index > > > > Please consider backing out this change. > > No. These are very important. They tell you when optional support has > been added for a port. As for pkg_version, the current solution is to > add slave makefiles for all of the various option based ports (not just > the GNOME/GTK+ ones, but also the i18n ones, the mysql ones, the x11 > ones...). A more offical route would be to remove the -'s from all of > the ports which are not supposed to have them in their names (there are > a bunch, and have pkg_version only compare the bit after the first - and > before the second (one only before the second if the first does not > exist), with the version number tacked on the end. Coming in late on this discussion, I won't comment on the non-pkg_version related aspects of whatever this change was. However, sobomax and I have been working on some improvements to the ports infrastructure and pkg_version. Basically, sobomax proposed a way for installed packages to have a pointer back to their ports collection entry, and I made pkg_version take advantage of it for version number comparisons. This was intended to solve a couple of other problems, but I think it also gets rid of the one you folks have been discussing. asami is reviewing the changes. Cheers, Bruce. PS. You can follow this in the thread with headers that look like: Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] --==_Exmh_-1438536511P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE55HPN2MoxcVugUsMRAhs4AKC8VNtyDhugO1P5+2lqq+DOfR1HtQCg3ThB LxRpSe0JDyPDyUYj3TNHZ1k= =3wi7 -----END PGP SIGNATURE----- --==_Exmh_-1438536511P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 7: 6:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.42.130.87]) by hub.freebsd.org (Postfix) with ESMTP id 7892E37B503 for ; Wed, 11 Oct 2000 07:06:22 -0700 (PDT) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.10.1/8.9.2) with SMTP id e9BE5pD04729; Wed, 11 Oct 2000 10:05:51 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <001b01c0338c$545e2d30$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: "Carlos A M dos Santos" , "FreeBSD ports mailing list" References: Subject: Re: Script to genarate PLIST? Date: Wed, 11 Oct 2000 10:05:36 -0400 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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Have someone written a script to generate a PLIST from an installation > directory tree? I'd like to make something like > > % make install DESTDIR=/var/tmp/pkg-name > % mk_plist /var/tmp/pkg-name > PLIST See the porters-handbook, specifically, http://www.freebsd.org/porters-handbook/porting-autoplist.html. Be sure that you've done a 'make clean' in your port directory first! -- Matthew Emmerton GSI Computer Services +1 (800) 217 5409 (Canada) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 7: 8:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 104CE37B66D; Wed, 11 Oct 2000 07:08:49 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA78297; Wed, 11 Oct 2000 07:08:49 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 11 Oct 2000 07:08:49 -0700 (PDT) From: Message-Id: <200010111408.HAA78297@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21895: Update port: mail/qpopper to 3.1 (fix ports/21800) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/qpopper to 3.1 (fix ports/21800) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 11 07:08:34 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21895 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 7: 9:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBC5237B502; Wed, 11 Oct 2000 07:09:48 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA78719; Wed, 11 Oct 2000 07:09:48 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 11 Oct 2000 07:09:48 -0700 (PDT) From: Message-Id: <200010111409.HAA78719@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21800: Update port: mail/qpopper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/qpopper State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 11 07:09:01 PDT 2000 State-Changed-Why: ports/21895 supersedes it. http://www.freebsd.org/cgi/query-pr.cgi?pr=21800 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 7:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D2C637B503 for ; Wed, 11 Oct 2000 07:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA78805; Wed, 11 Oct 2000 07:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9DC8A37B503; Wed, 11 Oct 2000 07:03:43 -0700 (PDT) Message-Id: <20001011140343.9DC8A37B503@hub.freebsd.org> Date: Wed, 11 Oct 2000 07:03:43 -0700 (PDT) From: vstanescu@logicnet.ro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21911: apache crashes when using the php4 dso Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21911 >Category: ports >Synopsis: apache crashes when using the php4 dso >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 11 07:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Victor STANESCU >Release: 4.1.1-RELEASE >Organization: N/A >Environment: FreeBSD gate.logicnet.ro 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #2: Wed Oct 11 13:53:36 EEST 2000 root@gate.logicnet.ro:/usr/src/sys/compile/GATE i386 >Description: When installing the php4 module, apache is crashing at startup. I have tried the apache132+php4 installation both from the ports and by hand. The results where the same. The httpd program crashes with the following backtrace: #0 0x48128488 in tzset () from /usr/lib/libc.so.4 (gdb) backtrace #0 0x48128488 in tzset () from /usr/lib/libc.so.4 #1 0x4812859f in localtime () from /usr/lib/libc.so.4 #2 0x48128a59 in ctime () from /usr/lib/libc.so.4 #3 0x48143542 in .cerror () from /usr/lib/libc.so.4 #4 0x483ab5e5 in _thread_fd_lock_debug () from /usr/lib/libc_r.so.4 #5 0x483c66b5 in dup2 () from /usr/lib/libc_r.so.4 #6 0x480ea7e8 in freopen () from /usr/lib/libc.so.4 #7 0x806a013 in detach () #8 0x806b56b in standalone_main () #9 0x806bd6f in main () #10 0x804ec0d in _start () >How-To-Repeat: Install apache13 + mod_php4 from ports >Fix: >Release-Note: >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 Oct 11 7:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 580A537B66C for ; Wed, 11 Oct 2000 07:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA93267; Wed, 11 Oct 2000 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 11 Oct 2000 07:50:02 -0700 (PDT) Message-Id: <200010111450.HAA93267@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dominik Rothert Subject: Re: ports/21911: apache crashes when using the php4 dso Reply-To: Dominik Rothert Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21911; it has been noted by GNATS. From: Dominik Rothert To: vstanescu@logicnet.ro Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/21911: apache crashes when using the php4 dso Date: Wed, 11 Oct 2000 16:46:43 +0200 > >Synopsis: apache crashes when using the php4 dso [...] > >Release: 4.1.1-RELEASE > FreeBSD gate.logicnet.ro 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #2: Wed Oct 11 > 13:53:36 EEST 2000 root@gate.logicnet.ro:/usr/src/sys/compile/GATE i386 > >Description: > When installing the php4 module, apache is crashing at startup. > I have tried the apache132+php4 installation both from the ports and by hand. > The results where the same. I can't reproduce this on two systems, both running 4.1.1-STABLE. -Dominik -- /* Dominik Rothert | dr@astorit.com * * A S T O R I T | http://www.astorit.com/ * * Hohenzollernring 52 | fon +49-221-251440 * * 50672 Cologne, Germany | fax +49-221-251443 */:wq! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 10:35:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id 94FBA37B502; Wed, 11 Oct 2000 10:35:40 -0700 (PDT) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id KAA18075; Wed, 11 Oct 2000 10:35:39 -0700 (PDT) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.0/8.11.0) id e9BHZdW38867; Wed, 11 Oct 2000 10:35:39 -0700 (PDT) (envelope-from jdp) Date: Wed, 11 Oct 2000 10:35:39 -0700 (PDT) From: jdp@polstra.com Message-Id: <200010111735.e9BHZdW38867@vashon.polstra.com> To: ports@freebsd.org Reply-To: ports@freebsd.org Cc: sobomax@freebsd.org Subject: Re: New ports layout slowed-down cvsup operation In-Reply-To: <39E40E48.9A62DED1@FreeBSD.org> References: <39E40E48.9A62DED1@FreeBSD.org> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <39E40E48.9A62DED1@FreeBSD.org>, Maxim Sobolev wrote: > I wonder if anyone noticed that new ports layout considerably slowed > down cvsup operations over a slow links. I attribute it to the fact > that my checkouts.cvs file inflated almost two-fold (from 3MB to > 6MB) after the change, so probably this causing slowdown, as perhaps > the amount of data to be transferred increased proportionally. > > So the questions to beloved cvs-meisters are: am I right and if so > how we could cope with this problem. Yes, I think your diagnosis is correct. There is not much that can be done about it any time soon in the repository. The removed files and directories need to remain, or else people's cvs update operations will fail. You might be able to get your performance back by creating a "refuse" file with patterns that match the files and directories that are no longer used. See cvsup(1) and the FAQ at: http://www.polstra.com/projects/freeware/CVSup/ for more details on refuse files. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 10:55:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.af.airnet.ne.jp (mail.af.airnet.ne.jp [210.159.66.49]) by hub.freebsd.org (Postfix) with ESMTP id 0DA7C37B66C for ; Wed, 11 Oct 2000 10:55:28 -0700 (PDT) Received: from imura.af.airnet.ne.jp (tok280.airnet.ne.jp [210.159.89.24]) by mail.af.airnet.ne.jp (8.8.8/3.6W/06/13/98-AF.AIRNET.NE.JP) with ESMTP id CAA14564 for ; Thu, 12 Oct 2000 02:55:24 +0900 Posted-Date: Thu, 12 Oct 2000 02:55:17 +0900 (JST) To: ports@freebsd.org Subject: How about new variable LINUX_CROSS_BUILD to bsd.port.mk? From: "R. Imura" X-Mailer: Mew version 1.94b20 on Emacs 19.34 / Mule 2.3 =?iso-2022-jp?B?KBskQkt2RSYyVhsoQik=?= X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20001012025514V.imura@cs.titech.ac.jp> Date: Thu, 12 Oct 2000 02:55:14 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm a maintainer of www/linux-lesstif-ns, but I can't say this port's Makefile is good. So, I thought. How about this small patch? Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.355 diff -u -r1.355 bsd.port.mk --- bsd.port.mk 2000/10/08 11:43:54 1.355 +++ bsd.port.mk 2000/10/11 17:18:49 @@ -621,6 +621,10 @@ .else PREFIX?= ${LOCALBASE} .endif +.if defined(LINUX_CROSS_BUILD) +USE_LINUX= yes +PREFIX?= ${LOCALBASE} +.endif .if defined(USE_OPENSSL) .if ${OSVERSION} >= 400014 @@ -773,6 +777,13 @@ .if defined(USE_LINUX) RUN_DEPENDS+= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base +.endif + +.if defined(LINUX_CROSS_BUILD) +USE_GMAKE= yes +GMAKE= ${LINUXBASE}/usr/bin/make +BUILD_DEPENDS+= ${LINUXBASE}/usr/bin/cc:${PORTSDIR}/devel/linux_devtools +CONFIGURE_ENV+= MAKE=${GMAKE} ${LINUXBASE}/bin/bash .endif .if defined(REQUIRES_MOTIF) ==================== end of patch By this line, "+GMAKE= ${LINUXBASE}/usr/bin/make" all build tools(cc, ld, as...) will be work in the Linuxulator. By this line "+CONFIGURE_ENV+= MAKE=${GMAKE} ${LINUXBASE}/bin/bash" configure will be done by ${LINUXBASE}/bin/bash, so all command called from configure file will be work in the Linuxulator, too. I put this line "+USE_GMAKE= yes" after what usual USE_GMAKE do, so you can forget FreeBSD's world. (sorry for strange English) If *_WRKSRC patch is also applied, linux-lesstif-ns's Makefile will be tiny clean. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/linux-lesstif-ns/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 2000/10/02 15:44:13 1.3 +++ Makefile 2000/10/11 17:25:44 @@ -21,26 +21,19 @@ MAINTAINER= imura@FreeBSD.org -BUILD_DEPENDS= ${LINUXBASE}/usr/bin/cc:${PORTSDIR}/devel/linux_devtools - -USE_LINUX_PREFIX= yes +LINUX_CROSS_BUILD= yes +BUILD_WRKSRC= ${WRKSRC}/lib/Xm PREFIX= ${LINUXBASE}${X11BASE} HAS_CONFIGURE= yes CONFIGURE_ARGS= --host=${MACHINE_ARCH}--linux-gnu --enable-shared --enable-production \ --disable-build-20 --disable-debug --no-recursion \ --without-motif --disable-build-Xlt --disable-build-Xbae -GMAKE= ${LINUXBASE}/usr/bin/make - -do-build: - cd ${WRKSRC}/lib/Xm && ${GMAKE} do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/lib/Xm/.libs/libXm.so.1.0.2 \ + ${INSTALL_SCRIPT} ${BUILD_WRKSRC}/.libs/libXm.so.1.0.2 \ ${PREFIX}/lib/libXm-ns.so.1.0.2 ${LN} -sf libXm-ns.so.1.0.2 ${PREFIX}/lib/libXm.so.1 ${LN} -sf libXm.so.1 ${PREFIX}/lib/libXm.so ${LINUXBASE}/sbin/ldconfig .include - -CONFIGURE_ENV+= ${LINUXBASE}/bin/bash ==================== end of patch Any thought? - R. Imura To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 11:41:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freemail.bricsnet.com (freemail.bricsnet.com [209.146.217.45]) by hub.freebsd.org (Postfix) with ESMTP id 3F10837B66C for ; Wed, 11 Oct 2000 11:41:26 -0700 (PDT) Received: from cr592943a (host-51.toronto.bricsnet.com [209.146.217.51]) by freemail.bricsnet.com (8.11.0/8.11.0) with SMTP id e9BIfMa19421 for ; Wed, 11 Oct 2000 14:41:23 -0400 (EDT) (envelope-from mitayai@bricsnet.com) Reply-To: From: "Will Mitayai Keeso Rowe" To: "Ports@Freebsd. Org" Subject: msql port broken Date: Wed, 11 Oct 2000 14:44:14 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org not only ios the msql port broken, but it's horribly out of date. Perhaps it should be removed? Installation of mSQL-2 complete. ********* ** This is the commercial, production release of mSQL 2.0 ** Please see the README file in the top directory of the ** distribution for license information. ********* ===> Generating temporary packing list Installing /usr/local/etc/rc.d/msql2.sh startup file. install: /space/history/freebsd/ports/databases/msql/files/msql2d.sh: No such file or directory *** Error code 71 Stop in /space/history/freebsd/ports/databases/msql. --- Will Mitayai Keeso Rowe Contact Info: http://my.infotriever.com/mitayai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 11:41:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.af.airnet.ne.jp (mail.af.airnet.ne.jp [210.159.66.49]) by hub.freebsd.org (Postfix) with ESMTP id 4DC1D37B66D for ; Wed, 11 Oct 2000 11:41:27 -0700 (PDT) Received: from imura.af.airnet.ne.jp (tok280.airnet.ne.jp [210.159.89.24]) by mail.af.airnet.ne.jp (8.8.8/3.6W/06/13/98-AF.AIRNET.NE.JP) with ESMTP id DAA25364 for ; Thu, 12 Oct 2000 03:41:25 +0900 Posted-Date: Thu, 12 Oct 2000 03:40:42 +0900 (JST) To: ports@freebsd.org Subject: Re: How about new variable LINUX_CROSS_BUILD to bsd.port.mk? From: "R. Imura" In-Reply-To: <20001012025514V.imura@cs.titech.ac.jp> References: <20001012025514V.imura@cs.titech.ac.jp> X-Mailer: Mew version 1.94b20 on Emacs 19.34 / Mule 2.3 =?iso-2022-jp?B?KBskQkt2RSYyVhsoQik=?= X-Prom-Mew: Prom-Mew 1.93.4 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20001012034041U.imura@cs.titech.ac.jp> Date: Thu, 12 Oct 2000 03:40:41 +0900 X-Dispatcher: imput version 990401(IM113) Lines: 7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > So, I thought. > How about this small patch? I forgot to say. This patch surely helps people if he want's to create a cross-building port. - R. Imura To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 12:43: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8C5D37B68B for ; Wed, 11 Oct 2000 12:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA07309; Wed, 11 Oct 2000 12:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BE92C37B703; Wed, 11 Oct 2000 12:04:30 -0700 (PDT) Message-Id: <20001011190430.BE92C37B703@hub.freebsd.org> Date: Wed, 11 Oct 2000 12:04:30 -0700 (PDT) From: brian@hyperreal.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21917: rblsmtpd needs a patch to work with relays.mail-abuse.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21917 >Category: ports >Synopsis: rblsmtpd needs a patch to work with relays.mail-abuse.org >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 Oct 11 12:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brian Behlendorf >Release: 4.1.1 >Organization: >Environment: not relevant >Description: quoting from: http://www.cqc.com/~pacman/projects/rblsmtpd-rss/ Some time shortly after Aug 8 17:47:26 EST, the caretakers of relays.mail-abuse.org deleted all the TXT records from the zone, to make it smaller. As a result, rblsmtpd no longer believes there are any hosts listed there. This patch provides a new option to rblsmtpd that enables it to recognize A records, so the relaying scum may be blocked again. >How-To-Repeat: Mail sent to nelson-rss-test@crynwr.com will show whether you rblsmtpd instance is actually working or not. >Fix: Patch is @ the URL given. >Release-Note: >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 Oct 11 12:52:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03D9137B502; Wed, 11 Oct 2000 12:52:26 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA11702; Wed, 11 Oct 2000 12:52:26 -0700 (PDT) (envelope-from ache@FreeBSD.org) Date: Wed, 11 Oct 2000 12:52:26 -0700 (PDT) From: Message-Id: <200010111952.MAA11702@freefall.freebsd.org> To: cracauer@counter.bik-gmbh.de, ache@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21910: The apache port has module-enabling CONFIGURE_ARGS - they don't work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The apache port has module-enabling CONFIGURE_ARGS - they don't work State-Changed-From-To: open->closed State-Changed-By: ache State-Changed-When: Wed Oct 11 12:49:38 PDT 2000 State-Changed-Why: You should use 'LoadModule' instead. I plan to remove all static modules in near time. http://www.freebsd.org/cgi/query-pr.cgi?pr=21910 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 13:42: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from envy.geekhouse.net (envy.geekhouse.net [64.81.6.50]) by hub.freebsd.org (Postfix) with ESMTP id B77C337B503 for ; Wed, 11 Oct 2000 13:41:58 -0700 (PDT) Received: (from jim@localhost) by envy.geekhouse.net (8.11.1/8.11.1) id e9BKfux82023 for ports@FreeBSD.org; Wed, 11 Oct 2000 13:41:56 -0700 (PDT) (envelope-from jim) Date: Wed, 11 Oct 2000 13:41:55 -0700 From: Jim Mock To: ports@FreeBSD.org Subject: New GNOME hacks, etc. Message-ID: <20001011134155.A1323@envy.geekhouse.net> Reply-To: jim@lust.geekhouse.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.10i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've got a few questions about the new GNOME handling and stuff to go along with it, mainly the esound bits. I'll use the gaim port as an example, since I'm in the process of updating it. In the Makefile, there's WANT_GNOME and WANT_ESOUND both equal to yes. Down a little further, there's this: .if defined(HAVE_GNOME) USE_GNOME= yes CONFIGURE_ARGS+= --enable-gnome --enable-panel .else CONFIGURE_ARGS+= --disable-gnome .endif .if defined(HAVE_ESOUND) USE_ESOUND= yes CONFIGURE_ARGS+= --enable-esd .else CONFIGURE_ARGS+= --disable-esd .endif Here's where I see a problem. I didn't build with HAVE_ESOUND defined, but since it's installed on my system, it's using it anyway. I noticed it's doing the same thing with xmms (which is building as I type this), and IIRC, it does the same with GNOME. IMO, this is not a good thing. If I don't want to build something with GNOME or ESOUND and it's found on the system, the port is using it anyway. Am I missing something here? What do I need to do in order to build without that stuff? On a side note, I've had some not too happy people email me regarding the changes -- mainly talking about xchat/xchat-devel. Before it was only necessary to have gnomelibs installed, but now since the knob to build with the panel has been removed and it's part of the HAVE_GNOME definition, it builds *all* of GNOME. It seems a lot of people (including myself) would prefer just gnomelibs for the nicer icons, etc., but don't want all of GNOME installed. Just my, and others', $0.02. - jim -- jim mock work: jim@osd.bsdi.com | jim@FreeBSD.org http://soupnazi.org/ BSDi Open Source Div | http://bsdi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 14:14:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 8E48237B502 for ; Wed, 11 Oct 2000 14:14:22 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13jTCS-000E1X-00; Wed, 11 Oct 2000 16:14:08 -0500 Date: Wed, 11 Oct 2000 16:14:08 -0500 From: Ade Lovett To: Jim Mock Cc: ports@FreeBSD.org Subject: Re: New GNOME hacks, etc. Message-ID: <20001011161408.J48659@FreeBSD.org> References: <20001011134155.A1323@envy.geekhouse.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001011134155.A1323@envy.geekhouse.net>; from jim@lust.geekhouse.net on Wed, Oct 11, 2000 at 01:41:55PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 11, 2000 at 01:41:55PM -0700, Jim Mock wrote: > > [...] > > If I don't want to build something with GNOME or ESOUND and it's found > on the system, the port is using it anyway. Unless you specify WITH_ESOUND=no or WITH_GNOME=no, which will override the fact that it's present on your system. > On a side note, I've had some not too happy people email me regarding > the changes -- mainly talking about xchat/xchat-devel. Before it was > only necessary to have gnomelibs installed, but now since the knob to > build with the panel has been removed and it's part of the HAVE_GNOME > definition, it builds *all* of GNOME. That's more of an artefact of the changes from GNOME 1.0 to 1.2 than anything else. Compiling just up to x11/gnomelibs isn't particularly useful any more since even ports that just use gnomelibs tend to stick stuff in weird and wonderful places under ${PREFIX}/share/gnome/* which requires bringing in more of the GNOME system to allow things to properly clean up directories etc. One possible option is a GNOME mtree file, but don't expect it any time soon. Things will become slightly clearer in the 1.4 release (I hope), when I split the x11/gnome metaport into two -- one containing core functionality, the other containing "extra applications" that aren't necessarily required, but are likely to be useful if the end-user is becoming GNOMEish. At that point, apart from the components that make up the core functionality, there will be exactly one external dependency that GNOME ports will need. > It seems a lot of people > (including myself) would prefer just gnomelibs for the nicer icons, > etc., but don't want all of GNOME installed. With GNOME 1.0, x11/gnomelibs was enough for everything to work cleanly.. with 1.2 and above, you have to head all the way up to x11/gnomecore (which is by no means "all of GNOME"). -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.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 Oct 11 14:50:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D43C937B66E for ; Wed, 11 Oct 2000 14:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA56415; Wed, 11 Oct 2000 14:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id E855737B503 for ; Wed, 11 Oct 2000 14:42:20 -0700 (PDT) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (14644 bytes) by henoch.cc.fh-lippe.de via sendmail with P:esmtp/R:inet_hosts/T:smtp (sender: ) id for ; Wed, 11 Oct 2000 23:42:19 +0200 (MET DST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-17) Received: from door.lippe.de(thaddeus.cc.fh-lippe.de[193.16.112.190]) (14266 bytes) by spock.cc.fh-lippe.de via sendmail with P:smtp/R:smart_host/T:smtp (sender: ) id for ; Wed, 11 Oct 2000 23:42:16 +0200 (MET DST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-17) Received: from odie.lippe.de (root@odie.lippe.de [192.168.4.2]) by door.lippe.de (8.9.3/8.9.3) with ESMTP id WAA22036 for ; Wed, 11 Oct 2000 22:43:24 +0200 (CEST) (envelope-from lkoeller@lippe.de) Received: from odie.lippe.de (lkoeller@localhost [127.0.0.1]) by odie.lippe.de (8.9.3/8.9.3) with ESMTP id WAA34775 for ; Wed, 11 Oct 2000 22:43:24 +0200 (CEST) (envelope-from lkoeller@odie.lippe.de) Received: from odie.lippe.de (root@odie.lippe.de [192.168.4.2]) by door.lippe.de (8.9.3/8.9.3) with ESMTP id UAA19529 for ; Tue, 10 Oct 2000 20:49:14 +0200 (CEST) (envelope-from root@odie.lippe.de) Received: (from root@localhost) by odie.lippe.de (8.9.3/8.9.3) id UAA22883; Tue, 10 Oct 2000 20:49:13 +0200 (CEST) (envelope-from root) Message-Id: <200010101849.UAA22883@odie.lippe.de> Date: Tue, 10 Oct 2000 20:49:13 +0200 (CEST) From: lkoeller@cc.fh-lippe.de Reply-To: lkoeller@cc.fh-lippe.de To: FreeBSD-gnats-submit@freebsd.org Cc: lkoeller@cc.fh-lippe.de X-Send-Pr-Version: 3.2 Subject: ports/21919: Port update of grace to version 5.1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21919 >Category: ports >Synopsis: port update of grace to verion 5.1.2 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 11 14:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Charlie & >Release: FreeBSD 3.4-RELEASE i386 >Organization: Fachhochschule Lippe, Lemgo, Germany >Environment: FreeBSD 3.4-RELEASE i386 >Description: Update of the math/grace port to version 5.1.2. This is the second try to update grace, cause the first (5.1.1) wasn't commited due to a pdf3 hack. Now pdflib3 is in the ports and nothing speaks against the update of grace. I've tested the port with my own PHD-thesis and no porblems occured. Absolutely necessary is the update on XmHTML to version 1.1.7 (see my PR ports/21836). Grace uses a lot of libs, ldd gives for the linked binary: 65374 : ldd /usr/X11/bin/xmgrace /usr/X11/bin/xmgrace: libXmHTML.so.1 => /usr/X11R6/lib/libXmHTML.so.1 (0x280ff000) libXbae.so.4 => /usr/local/lib/libXbae.so.4 (0x28160000) libXm.so.2 => /usr/X11R6/lib/libXm.so.2 (0x2819c000) libXp.so.6 => /usr/X11R6/lib/libXp.so.6 (0x28331000) libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x28337000) libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x28344000) libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x28355000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x28393000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x2839d000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x28430000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x28438000) libnetcdf.so => /usr/local/lib/libnetcdf.so (0x2844c000) libfftw.so.2 => /usr/local/lib/libfftw.so.2 (0x2847a000) libt1.so.1 => /usr/local/lib/libt1.so.1 (0x284a9000) libpdf.so.3 => /usr/local/lib/libpdf.so.3 (0x284e4000) libtiff.so.4 => /usr/local/lib/libtiff.so.4 (0x28508000) libjpeg.so.9 => /usr/local/lib/libjpeg.so.9 (0x28547000) libpng.so.4 => /usr/local/lib/libpng.so.4 (0x28563000) libm.so.2 => /usr/lib/libm.so.2 (0x28580000) libc.so.3 => /usr/lib/libc.so.3 (0x2859b000) libz.so.2 => /usr/lib/libz.so.2 (0x2861c000) >How-To-Repeat: - >Fix: commit the diffs below to the current ports tree. I always get an error (rejected diff) for the Makefile, when testing it with patch -C < ..... Don't know why. diff -ruN grace.org/Makefile grace/Makefile --- grace.org/Makefile Thu Aug 3 11:25:37 2000 +++ grace/Makefile Tue Oct 10 20:17:13 2000 @@ -2,11 +2,11 @@ # Date created: Dec 28 1998 # Whom: Lars Koeller # -# $FreeBSD: ports/math/grace/Makefile,v 1.13 2000/08/03 09:25:37 asami Exp $ +# $FreeBSD: ports/math/grace/Makefile,v 1.11 2000/04/14 07:20:08 asami Exp $ # PORTNAME= grace -PORTVERSION= 5.0.3g +PORTVERSION= 5.1.2 CATEGORIES= math print # # You never know when and why this caotic team moves it to ../src/old/ :-) @@ -17,33 +17,30 @@ ftp://abragam.med.utoronto.ca/pub/mirrors/grace/src/old/ \ ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/grace/src/old/ \ ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/grace/src/ -DISTNAME= grace-5.0.3gamma MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE -BUILD_DEPENDS= ${X11BASE}/lib/libhlpclient.a:${PORTSDIR}/x11/libhelp LIB_DEPENDS= Xbae.7:${PORTSDIR}/x11-toolkits/xbae \ + Xpm.4:${PORTSDIR}/graphics/xpm \ netcdf.1:${PORTSDIR}/math/netcdf \ fftw.2:${PORTSDIR}/math/fftw \ - pdf.2:${PORTSDIR}/print/pdflib \ tiff.4:${PORTSDIR}/graphics/tiff \ jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.4:${PORTSDIR}/graphics/png \ - t1.1:${PORTSDIR}/devel/t1lib + png.3:${PORTSDIR}/graphics/png \ + t1.1:${PORTSDIR}/devel/t1lib \ + XmHTML.1:${PORTSDIR}/x11-toolkits/xmhtml \ + pdf.3:${PORTSDIR}/print/pdflib3 MAN1= grace.1 xmgrace.1 gracebat.1 grconvert.1 USE_X_PREFIX= YES -USE_XPM= yes USE_GMAKE= YES REQUIRES_MOTIF= YES HAS_CONFIGURE= YES CONFIGURE_ARGS= -prefix=${X11BASE} \ - --enable-extra-incpath=${X11BASE}/include/X11:${LOCALBASE}/include:${LOCALBASE}/include/gd \ - --enable-libhelp \ - --enable-extra-ldpath=${LOCALBASE}/lib \ - --enable-grace-home=${X11BASE}/lib/X11/grace \ - --enable-config=generic + --with-extra-incpath=${X11BASE}/include/X11:${LOCALBASE}/include \ + --with-extra-ldpath=${LOCALBASE}/lib \ + --enable-grace-home=${X11BASE}/lib/X11/grace ALL_TARGET= INSTALL_TARGET= install links @@ -54,6 +51,8 @@ ${RM} -f ${WRKSRC}/configure.input post-install: - ${LN} -s ${X11BASE}/lib/X11/grace/doc ${X11BASE}/share/doc/grace + if [ ! -e ${X11BASE}/share/doc/grace ]; then \ + ${LN} -s ${X11BASE}/lib/X11/grace/doc ${X11BASE}/share/doc/grace; \ + fi .include diff -ruN grace.org/files/freebsd grace/files/freebsd --- grace.org/files/freebsd Thu Mar 18 09:41:40 1999 +++ grace/files/freebsd Thu Jan 1 01:00:00 1970 @@ -1,27 +0,0 @@ -#**************************************** -#* Intel Linux with X11R6 and Motif 2.0 * -#**************************************** - -############################### -# Compiler -# -CC="gcc" -############################### - -############################### -# C flags -# -CFLAGS="-Wall -pedantic" -############################### - -############################### -# Misc optimization flags -# -OPTIMIZE="-O2" -############################### - -############################### -# Flags used for debugging -# -DEBUG="-g -O2" -############################### diff -ruN grace.org/files/md5 grace/files/md5 --- grace.org/files/md5 Fri Sep 10 18:39:13 1999 +++ grace/files/md5 Sun Oct 8 21:02:57 2000 @@ -1 +1 @@ -MD5 (grace-5.0.3gamma.tar.gz) = fe200b1fe353afa3cd0cb580ef9d2106 +MD5 (grace-5.1.2.tar.gz) = 3f630258a3572d9988aa6010a8167e39 diff -ruN grace.org/patches/patch-aa grace/patches/patch-aa --- grace.org/patches/patch-aa Fri Sep 10 18:39:13 1999 +++ grace/patches/patch-aa Mon Jul 31 21:10:07 2000 @@ -1,21 +1,7 @@ -*** configure.orig Sun Aug 22 12:11:35 1999 ---- configure Fri Sep 10 16:22:17 1999 +*** configure.orig Mon May 22 19:54:43 2000 +--- configure Mon May 22 19:54:47 2000 *************** -*** 1096,1106 **** - - if test "x${GCC}" = "xyes" - then -- case "${host}" in -- i?86-*-linux-*) CFLAGS="-m486 -malign-double $CFLAGS";; -- i?86-*) CFLAGS="-m486 $CFLAGS";; -- esac -- - echo $ac_n "checking "for gcc strength-reduce bug"""... $ac_c" 1>&6 - echo "configure:1106: checking "for gcc strength-reduce bug"" >&5 - if eval "test \"`echo '$''{'ac_cv_c_gcc_strength_bug'+set}'`\" = set"; then ---- 1096,1101 ---- -*************** -*** 1832,1838 **** +*** 2590,2596 **** # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' @@ -23,7 +9,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ---- 1827,1833 ---- +--- 2590,2596 ---- # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' @@ -31,10 +17,3 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -*************** -*** 8939,8942 **** - chmod +x $CONFIG_STATUS - rm -fr confdefs* $ac_clean_files - test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 -- ---- 8934,8936 ---- diff -ruN grace.org/patches/patch-ab grace/patches/patch-ab --- grace.org/patches/patch-ab Fri Sep 10 18:39:13 1999 +++ grace/patches/patch-ab Mon Jul 31 21:10:07 2000 @@ -1,8 +1,8 @@ -*** conf/Make.conf.in.org Fri Sep 10 09:32:03 1999 ---- conf/Make.conf.in Fri Sep 10 09:32:27 1999 +*** ac-tools/Make.conf.in.orig Mon May 22 19:57:32 2000 +--- ac-tools/Make.conf.in Mon May 22 19:57:36 2000 *************** -*** 93,98 **** ---- 93,99 ---- +*** 90,95 **** +--- 90,96 ---- # BSD install INSTALL=@INSTALL@ INSTALL_PROGRAM=@INSTALL_PROGRAM@ @@ -10,10 +10,3 @@ INSTALL_DATA=@INSTALL_DATA@ MKINSTALLDIRS=@MKINSTALLDIRS@ -*************** -*** 119,122 **** - - # HTML help viewer command - HELPVIEWER=@HELPVIEWER@ -- ---- 120,122 ---- diff -ruN grace.org/patches/patch-ac grace/patches/patch-ac --- grace.org/patches/patch-ac Fri Sep 10 18:39:13 1999 +++ grace/patches/patch-ac Mon Jul 31 21:10:07 2000 @@ -1,7 +1,7 @@ -*** examples/Makefile.org Fri Sep 10 09:25:47 1999 ---- examples/Makefile Fri Sep 10 09:25:57 1999 +*** examples/Makefile.orig Mon May 22 19:58:45 2000 +--- examples/Makefile Mon May 22 19:59:07 2000 *************** -*** 31,37 **** +*** 33,39 **** install : $(EXAMPLES) $(DOTEST) $(MKINSTALLDIRS) $(GRACE_HOME)/examples for i in $(EXAMPLES); do $(INSTALL_DATA) $$i $(GRACE_HOME)/examples; done @@ -9,7 +9,7 @@ links : dummy ---- 31,37 ---- +--- 33,39 ---- install : $(EXAMPLES) $(DOTEST) $(MKINSTALLDIRS) $(GRACE_HOME)/examples for i in $(EXAMPLES); do $(INSTALL_DATA) $$i $(GRACE_HOME)/examples; done diff -ruN grace.org/patches/patch-ad grace/patches/patch-ad --- grace.org/patches/patch-ad Fri Sep 10 18:39:13 1999 +++ grace/patches/patch-ad Mon Jul 31 21:10:07 2000 @@ -1,7 +1,7 @@ -*** doc/Makefile.orig Fri Aug 20 00:31:44 1999 ---- doc/Makefile Fri Sep 10 11:06:06 1999 +*** doc/Makefile.orig Mon May 22 20:00:24 2000 +--- doc/Makefile Mon May 22 20:00:51 2000 *************** -*** 66,72 **** +*** 78,84 **** $(MKINSTALLDIRS) $(PREFIX)/man $(MKINSTALLDIRS) $(PREFIX)/man/man1 cd $(PREFIX)/man/man1; \ @@ -9,7 +9,7 @@ tests : dummy ---- 66,72 ---- +--- 78,84 ---- $(MKINSTALLDIRS) $(PREFIX)/man $(MKINSTALLDIRS) $(PREFIX)/man/man1 cd $(PREFIX)/man/man1; \ diff -ruN grace.org/patches/patch-ae grace/patches/patch-ae --- grace.org/patches/patch-ae Fri Sep 10 18:39:13 1999 +++ grace/patches/patch-ae Thu Aug 3 21:25:46 2000 @@ -1,16 +1,13 @@ ---- conf/generic.orig Mon Mar 29 01:02:41 1999 -+++ conf/generic Fri Sep 10 16:10:36 1999 -@@ -17,11 +17,11 @@ - ############################### - # Misc optimization flags - # --OPTIMIZE="-O" -+#OPTIMIZE="-O" - ############################### - - ############################### - # Flags used for debugging - # --DEBUG="-g" -+#DEBUG="-g" - ############################### +*** src/pdfdrv.c.org Thu Apr 20 22:34:34 2000 +--- src/pdfdrv.c Thu Aug 3 21:23:05 2000 +*************** +*** 57,62 **** +--- 57,64 ---- + # include "motifinc.h" + #endif + ++ #define PDF_set_fillrule(handle, rule) PDF_set_parameter(handle, "fillrule", rule) ++ + static void pdf_error_handler(PDF *p, int type, const char* msg); + + static unsigned long page_scale; diff -ruN grace.org/pkg/PLIST grace/pkg/PLIST --- grace.org/pkg/PLIST Tue Feb 22 18:07:13 2000 +++ grace/pkg/PLIST Sat Aug 5 20:12:32 2000 @@ -28,7 +28,7 @@ lib/X11/grace/doc/grace.1 lib/X11/grace/doc/gracebat.1 lib/X11/grace/doc/grconvert.1 -lib/X11/grace/doc/mygraph.gif +lib/X11/grace/doc/mygraph.png lib/X11/grace/doc/nohelp.html lib/X11/grace/doc/philosophical-gnu-sm.jpg lib/X11/grace/doc/shiftdata.sh @@ -38,6 +38,7 @@ lib/X11/grace/examples/au.agr lib/X11/grace/examples/axes.agr lib/X11/grace/examples/bar.agr +lib/X11/grace/examples/boxplot.agr lib/X11/grace/examples/brw.dat lib/X11/grace/examples/chartebar.agr lib/X11/grace/examples/charts.agr @@ -52,14 +53,16 @@ lib/X11/grace/examples/log2.agr lib/X11/grace/examples/logistic.agr lib/X11/grace/examples/logistic.fit +lib/X11/grace/examples/logit.agr lib/X11/grace/examples/logtest.par lib/X11/grace/examples/manygraphs.agr lib/X11/grace/examples/mlo.dat -lib/X11/grace/examples/moresyms.agr lib/X11/grace/examples/motif.agr +lib/X11/grace/examples/pie.agr lib/X11/grace/examples/polar.agr lib/X11/grace/examples/props.agr lib/X11/grace/examples/regions.par +lib/X11/grace/examples/spectrum.agr lib/X11/grace/examples/stackedb.agr lib/X11/grace/examples/symslines.agr lib/X11/grace/examples/terr.agr @@ -74,12 +77,20 @@ lib/X11/grace/examples/tlog.agr lib/X11/grace/examples/tmc.c lib/X11/grace/examples/tstack.agr +lib/X11/grace/examples/txttrans.agr lib/X11/grace/examples/txyr.agr lib/X11/grace/examples/typeset.agr +lib/X11/grace/examples/vmap.agr +lib/X11/grace/examples/xysize.agr lib/X11/grace/examples/xyz.agr lib/X11/grace/fonts/FontDataBase lib/X11/grace/fonts/enc/IsoLatin1.enc lib/X11/grace/fonts/enc/IsoLatin2.enc +lib/X11/grace/fonts/enc/IsoLatin9.enc +lib/X11/grace/fonts/enc/MacRoman.enc +lib/X11/grace/fonts/enc/PDFDoc.enc +lib/X11/grace/fonts/enc/PSLatin1.enc +lib/X11/grace/fonts/enc/WinAnsi.enc lib/X11/grace/fonts/type1/d050000l.afm lib/X11/grace/fonts/type1/d050000l.pfb lib/X11/grace/fonts/type1/n019003l.afm diff -ruN grace.org/scripts/configure grace/scripts/configure --- grace.org/scripts/configure Thu Mar 18 09:41:40 1999 +++ grace/scripts/configure Thu Jan 1 01:00:00 1970 @@ -1,3 +0,0 @@ -#! /bin/sh - -cp ${FILESDIR}/freebsd ${WRKSRC}/conf/freebsd >Release-Note: >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 Oct 11 14:53:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 1218A37B502; Wed, 11 Oct 2000 14:53:07 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id XAA79792; Wed, 11 Oct 2000 23:52:55 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9BLqSg82711; Wed, 11 Oct 2000 14:52:28 -0700 (PDT) (envelope-from reg) Date: Wed, 11 Oct 2000 14:52:28 -0700 From: Jeremy Lea To: Ade Lovett Cc: Jim Mock , ports@FreeBSD.ORG Subject: Re: New GNOME hacks, etc. Message-ID: <20001011145228.U30468@shale.csir.co.za> References: <20001011134155.A1323@envy.geekhouse.net> <20001011161408.J48659@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001011161408.J48659@FreeBSD.org>; from ade@FreeBSD.ORG on Wed, Oct 11, 2000 at 04:14:08PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, Oct 11, 2000 at 04:14:08PM -0500, Ade Lovett wrote: > On Wed, Oct 11, 2000 at 01:41:55PM -0700, Jim Mock wrote: > > > > [...] > > > > If I don't want to build something with GNOME or ESOUND and it's found > > on the system, the port is using it anyway. > > Unless you specify WITH_ESOUND=no or WITH_GNOME=no, which will > override the fact that it's present on your system. Actually, 'make -DWITHOUT_ESOUND -DWITHOUT_GNOME'. Satoshi specifically requested that all varaibles one be tested for defined/!defined. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.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 Oct 11 14:55:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 6C83F37B503; Wed, 11 Oct 2000 14:55:47 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13jTqj-000E5R-00; Wed, 11 Oct 2000 16:55:45 -0500 Date: Wed, 11 Oct 2000 16:55:45 -0500 From: Ade Lovett To: Jeremy Lea Cc: Jim Mock , ports@FreeBSD.ORG Subject: Re: New GNOME hacks, etc. Message-ID: <20001011165545.K48659@FreeBSD.org> References: <20001011134155.A1323@envy.geekhouse.net> <20001011161408.J48659@FreeBSD.org> <20001011145228.U30468@shale.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001011145228.U30468@shale.csir.co.za>; from reg@FreeBSD.ORG on Wed, Oct 11, 2000 at 02:52:28PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 11, 2000 at 02:52:28PM -0700, Jeremy Lea wrote: > Actually, 'make -DWITHOUT_ESOUND -DWITHOUT_GNOME'. Satoshi specifically > requested that all varaibles one be tested for defined/!defined. Gah, I knew I missed something. Anyway, I think the key point here is that (a) the "extra" package building errors and (b) the migration to bsd.gnome.mk have shown to a wider audience that x11/gnomelibs is now generally not enough for a GNOME application. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.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 Oct 11 15:50:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BB4337B66E for ; Wed, 11 Oct 2000 15:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA78075; Wed, 11 Oct 2000 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from relay-1.ziplink.net (relay-1.ziplink.net [206.15.170.62]) by hub.freebsd.org (Postfix) with ESMTP id 204F937B502; Wed, 11 Oct 2000 15:44:36 -0700 (PDT) Received: from aldan.algebra.com (bronx-ip-1-111.dynamic.ziplink.net [205.208.96.111]) by relay-1.ziplink.net (8.10.2/8.10.2) with ESMTP id e9BMiNn07883; Wed, 11 Oct 2000 18:44:23 -0400 (EDT) Received: (from mi@localhost) by aldan.algebra.com (8.11.0/8.11.0) id e9BMhjI00630; Wed, 11 Oct 2000 18:43:45 -0400 (EDT) (envelope-from mi) Message-Id: <200010112243.e9BMhjI00630@aldan.algebra.com> Date: Wed, 11 Oct 2000 18:43:45 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: kris@freebsd.org, dirk@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21920: port of openssl-0.9.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21920 >Category: ports >Synopsis: port of openssl-0.9.6 >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: Wed Oct 11 15:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: From my point of view, the major flaw of the existing port is, that it does not build on FreeBSD-2.2.x, but that's probably because I still maintain one server that runs that :) The attached patches offer the following improvements (besides using the freshly released new version 0.9.6): . use assembler-implementation of ciphers when possible. This mostly improves x86, but there is one such thing for Alpha, and, according the author, it speeds up the cipher by a factor of 2... . build the binaries and libraries the bsd way -- through bsd.*.mk. This enables parallelized build (-j 2) and ensures a smooth build on older systems (2.2.8) . do not use rsaref/RSAglue. It is my understanding, that those are no longer needed. Because this port may be of interest even on 4.x and 5.x -- since our version of OpenSSL is older, I commented out the FORBIDDEN part. >How-To-Repeat: >Fix: --- Makefile Sun Oct 8 06:22:52 2000 +++ Makefile Wed Oct 11 17:57:56 2000 @@ -8,4 +8,3 @@ PORTNAME= openssl -PORTVERSION= 0.9.5a -PORTREVISION= 1 +PORTVERSION= 0.9.6 CATEGORIES= security devel @@ -18,19 +17,15 @@ MAINTAINER= dirk@FreeBSD.org +PORTREVISION= 1 + .include -.if ${OSVERSION} >= 400014 -FORBIDDEN= "OpenSSL is already in the base system" -.endif -.if ${PORTOBJFORMAT} == "aout" -NOSHARED= yes -.endif +#.if ${OSVERSION} >= 400014 +#FORBIDDEN= "OpenSSL is already in the base system" +#.endif USE_PERL5= yes -.if defined(NOSHARED) -PLIST= ${PKGDIR}/pkg-plist.noshared -.else -ALL_TARGET= freebsd-shared all -SHLIBVER= 1 -MAKE_ENV+= SHLIBVER=${SHLIBVER} INSTALLS_SHLIB= yes -.endif +MAKE_ENV+= SHLIBVER=${SHLIBVER} FILESDIR=${FILESDIR} \ + "MAN1=${MAN1}" "MAN3=${MAN3}" "MAN5=${MAN5}" \ + "MAN7=${MAN7}" "MKDIR=${MKDIR}" "MANPREFIX=${MANPREFIX}" \ + "INSTALL_MAN=${INSTALL_MAN}" PERL=${PERL} @@ -41,3 +36,3 @@ MAN1= CA.pl.1 asn1parse.1 ca.1 ciphers. rsa.1 s_client.1 s_server.1 sess_id.1 smime.1 speed.1 \ - spkac.1 verify.1 version.1 x509.1 + spkac.1 verify.1 version.1 x509.1 rsautl.1 MAN3= BN_CTX_new.3 BN_CTX_start.3 BN_add.3 BN_add_word.3 \ @@ -67,3 +62,20 @@ MAN3= BN_CTX_new.3 BN_CTX_start.3 BN_ad err.3 hmac.3 lh_stats.3 lhash.3 md5.3 mdc2.3 rand.3 rc4.3 \ - ripemd.3 rsa.3 sha.3 ssl.3 threads.3 + ripemd.3 rsa.3 sha.3 ssl.3 threads.3 \ + BIO_ctrl.3 BIO_f_base64.3 BIO_f_buffer.3 \ + BIO_f_cipher.3 BIO_f_md.3 BIO_f_null.3 BIO_f_ssl.3 \ + BIO_find_type.3 BIO_new.3 BIO_new_bio_pair.3 \ + BIO_push.3 BIO_read.3 BIO_s_accept.3 BIO_s_bio.3 \ + BIO_s_connect.3 BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3 \ + BIO_s_null.3 BIO_s_socket.3 BIO_set_callback.3 \ + BIO_should_retry.3 bio.3 evp.3 SSL_CIPHER_get_name.3 \ + SSL_CTX_free.3 SSL_CTX_new.3 SSL_CTX_set_cipher_list.3 \ + SSL_CTX_set_ssl_version.3 SSL_SESSION_free.3 \ + SSL_accept.3 SSL_clear.3 SSL_connect.3 SSL_free.3 \ + SSL_get_ciphers.3 SSL_get_current_cipher.3 \ + SSL_get_fd.3 SSL_get_peer_cert_chain.3 \ + SSL_get_peer_certificate.3 SSL_get_rbio.3 \ + SSL_get_session.3 SSL_get_verify_result.3 \ + SSL_library_init.3 SSL_new.3 SSL_pending.3 SSL_read.3 \ + SSL_set_bio.3 SSL_set_fd.3 SSL_set_session.3 \ + SSL_set_verify_result.3 SSL_shutdown.3 SSL_write.3 MAN5= config.5 @@ -72,14 +84,16 @@ MAN7= des_modes.7 do-configure: - @cd ${WRKSRC} \ - && ${SETENV} CC="${CC}" CFLAGS="${CFLAGS}" PERL="${PERL}" \ - ./config --prefix=${PREFIX} --openssldir=${PREFIX}/openssl \ - -L${PREFIX}/lib + for d in crypto ssl apps doc; do \ + ${RM} -f ${WRKSRC}/$$d/Makefile; \ + ${CP} -p ${FILESDIR}/$$d.Makefile ${WRKSRC}/$$d/Makefile; \ + done + ${RM} -f ${WRKSRC}/Makefile + ${CP} -p ${FILESDIR}/top.Makefile ${WRKSRC}/Makefile post-install: -.if !defined(NOSHARED) -.for i in libcrypto libssl - @${INSTALL_DATA} ${WRKSRC}/$i.so.${SHLIBVER} ${PREFIX}/lib - @${LN} -sf $i.so.${SHLIBVER} ${PREFIX}/lib/$i.so -.endfor -.endif + ${MKDIR} ${PREFIX}/include/openssl + ${INSTALL_DATA} ${WRKSRC}/include/openssl/*.h ${PREFIX}/include/openssl + ${INSTALL_SCRIPT} ${WRKSRC}/apps/CA.sh ${WRKSRC}/apps/CA.pl \ + ${WRKSRC}/apps/der_chop ${PREFIX}/openssl/misc/ + ${INSTALL_DATA} ${WRKSRC}/apps/openssl.cnf \ + ${PREFIX}/openssl/openssl.cnf.sample .if !defined(NOPORTDOCS) --- distinfo Sun Apr 16 08:24:42 2000 +++ distinfo Tue Oct 10 16:30:39 2000 @@ -1 +1 @@ -MD5 (openssl-0.9.5a.tar.gz) = 8fcb6a8ba511ec8b54b95f267ef52cf0 +MD5 (openssl-0.9.6.tar.gz) = 4b407ab005b3846ec542eb8305823bca --- files/LIBSRC.mk Wed Dec 31 19:00:00 1969 +++ files/LIBSRC.mk Tue Oct 10 17:36:25 2000 @@ -0,0 +1,4 @@ +.include "${TARGET}" + +echo: + @echo ${LIBSRC} --- files/apps.Makefile Wed Dec 31 19:00:00 1969 +++ files/apps.Makefile Wed Oct 11 12:51:41 2000 @@ -0,0 +1,20 @@ +BINDIR=${PREFIX}/bin +CFLAGS+=-I${.CURDIR}/../include -DMONOLITH +LDADD= -L${.CURDIR}/../ssl -lssl -L${.CURDIR}/../crypto -lcrypto + +PROG= openssl +NOMAN=man pages are separated + +A_SRC=apps.c +S_SRC= s_cb.c s_socket.c +RAND_SRC=app_rand.c + +SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c \ + errstr.c ca.c pkcs7.c crl2p7.c crl.c \ + rsa.c rsautl.c dsa.c dsaparam.c dhparam.c \ + x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \ + s_time.c $(A_SRC) $(S_SRC) $(RAND_SRC) version.c sess_id.c \ + ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c \ + ${PROG}.c + +.include --- files/crypto.Makefile Wed Dec 31 19:00:00 1969 +++ files/crypto.Makefile Wed Oct 11 17:15:57 2000 @@ -0,0 +1,100 @@ +LIBDIR=${PREFIX}/lib # where to install + +CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../include + +NOMAN= man pages are separated + +SDIRS= md2 md4 md5 sha mdc2 hmac ripemd \ + des rc2 rc4 rc5 idea bf cast \ + bn rsa dsa dh dso \ + buffer bio stack lhash rand err objects \ + evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp + +LIB= crypto +SRCS= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c \ + cpt_err.c ebcdic.c + +cversion.o cversion.So cversion.so: buildinf.h + +buildinf.h: + ( echo "#ifndef MK1MF_BUILD"; \ + echo " /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */"; \ + echo " #define CFLAGS \"$(CC) $(CFLAGS)\""; \ + echo " #define PLATFORM \"$(PLATFORM)\""; \ + echo " #define DATE \"`date`\""; \ + echo "#endif" ) >buildinf.h + +# It appears, there are binary level incompatibilites compared to 0.9.5a +SHLIB_MAJOR=2 +SHLIB_MINOR=0 +#INTERNALLIB=don't care for a static version +NOPROFILE=don't care for the profile version + +# read all of the sub-Makefiles to get their LIBSRC lists: +.for d in ${SDIRS} +LIBSRC!= ${MAKE} -j 1 -f ${FILESDIR}/LIBSRC.mk TARGET=$d/Makefile.ssl echo +.PATH: $d + +SRCS:= ${SRCS} ${LIBSRC} +.endfor + +# Most of the rest of this file tries to replace the C-versions of some +# ciphers with their assemly replacements. Most of the replacements are +# available for 586 and 686 CPUs only, but there is one for Alpha too. +# The [56]86 ones will only be triggered if i[56]86 is somewhere in the +# CFLAGS. I compile things with ``-mcpu=i686 -march=i686''... +# See the various asm subdirectories under crypto for authors comments +# and the expected performance improvements. -mi +i686:="${CFLAGS:M*i686} ${CFLAGS:M*pentiumpro}" +i586:="${CFLAGS:M*i586} ${CFLAGS:M*pentium}" + +.if ${i686} == " " +BF_ASM=686 +.elif ${i586} == " " +BF_ASM=586 +.endif + +.if ${MACHINE_ARCH} == "alpha" +BN_ASM=alpha +.endif + +.ifdef(BF_ASM) +CFLAGS+= -DMD5_ASM -DRMD160_ASM -DSHA1_ASM +ASMS= bf-${BF_ASM} rmd-586 sha1-586 md5-586 cast-586 crypt586 \ + rc4-586 rc5-586 +BN_ASM=586 +.if ${BF_ASM} == "i686" +ASMS+= des686 +.else +ASMS+= des-586 +.endif + +.for f in bf_cbc bf_enc des_enc fcrypt_b c_enc rc5_enc rc4_enc +# do not compile this files -- we will use the asm-replacements: +SRCS:= ${SRCS:N$f.c} +.endfor + +SRCS+= ${ASMS:S/$/.s/} +.PATH: ${.CURDIR}/bf/asm ${.CURDIR}/sha/asm ${.CURDIR}/ripemd/asm \ + ${.CURDIR}/md5/asm ${.CURDIR}/cast/asm ${.CURDIR}/des/asm \ + ${.CURDIR}/rc4/asm ${.CURDIR}/rc5/asm +.endif + +.ifdef(BN_ASM) +.PATH: ${.CURDIR}/bn/asm +ASMS+= bn-${BN_ASM} co-${BN_ASM} +SRCS:= ${SRCS:Nbn_asm.c} # do not compile this file... +.endif + +.if ${PORTOBJFORMAT} == "aout" +bin=a.out +.else +bin=elf +.endif + +.for a in ${ASMS} +$a.s: $a.pl + (cd `dirname ${.ALLSRC}` && ${PERL} $a.pl ${bin}) > $a.s +.endfor + +.include --- files/doc.Makefile Wed Dec 31 19:00:00 1969 +++ files/doc.Makefile Wed Oct 11 17:53:15 2000 @@ -0,0 +1,14 @@ +.PATH: ${.CURDIR}/apps ${.CURDIR}/crypto ${.CURDIR}/ssl + +all: ${MAN1} ${MAN3} ${MAN5} ${MAN7} + +.SUFFIXES: .pod .1 .3 .5 .7 + +.pod.1 .pod.3 .pod.5 .pod.7: + pod2man $> > $@ + +install: ${MAN1} ${MAN3} ${MAN5} ${MAN7} +.for i in 1 3 5 7 + ${MKDIR} -p ${MANPREFIX}/man/man$i + ${INSTALL_MAN} ${MAN$i} ${MANPREFIX}/man/man$i +.endfor --- files/patch-ab Sun Nov 7 17:19:48 1999 +++ files/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,33 +0,0 @@ ---- Makefile.org.orig Sun Aug 8 12:29:52 1999 -+++ Makefile.org Sun Nov 7 18:33:37 1999 -@@ -164,7 +164,7 @@ - ONEDIRS=out tmp - EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS - WDIRS= windows --LIBS= libcrypto.a libssl.a -+LIBS= libcrypto.a libssl.a libRSAglue.a - - GENERAL= Makefile - BASENAME= openssl -@@ -187,6 +187,21 @@ - do \ - (cd $$i && echo "making all in $$i..." && \ - $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \ -+ done; -+ -+freebsd-shared: -+ for i in ${SHLIBDIRS}; do \ -+ rm -f lib$$i.a lib$$i.so \ -+ lib$$i.so.${SHLIBVER}; \ -+ ${MAKE} CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='-fPIC ${CFLAG}' SDIRS='${SDIRS}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' DIRS=$$i clean all || exit 1; \ -+ ( set -x; ${CC} -shared -o lib$$i.so.${SHLIBVER} \ -+ -Wl,-S,-soname=lib$$i.so.${SHLIBVER} \ -+ -Wl,--whole-archive lib$$i.a ) || exit 1; \ -+ rm -f lib$$i.a; (cd $$i ; ${MAKE} clean) || exit 1 ;\ -+ done; -+ @set -x; \ -+ for i in ${SHLIBDIRS}; do \ -+ ln -s lib$$i.so.${SHLIBVER} lib$$i.so; \ - done; - - linux-shared: --- files/patch-ac Sun Apr 16 08:24:43 2000 +++ files/patch-ac Wed Dec 31 19:00:00 1969 @@ -1,22 +0,0 @@ ---- Configure.orig Mon Mar 27 23:28:10 2000 -+++ Configure Sat Apr 15 13:30:38 2000 -@@ -243,7 +243,7 @@ - "alpha-gcc","gcc:-O3::(unknown)::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_UNROLL DES_RISC1:asm/alpha.o::", - "alpha-cc", "cc:-std1 -tune host -O4 -readonly_strings::(unknown)::SIXTY_FOUR_BIT_LONG RC4_CHUNK:asm/alpha.o::", - "alpha164-cc", "cc:-std1 -tune host -fast -readonly_strings::(unknown)::SIXTY_FOUR_BIT_LONG RC4_CHUNK:asm/alpha.o::", --"FreeBSD-alpha","gcc:-DTERMIOS -O3 -fomit-frame-pointer::(unknown)::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC2:::", -+"FreeBSD-alpha","$ENV{CC}:-DTERMIOS $ENV{CFLAGS}::(unknown)::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC2:::", - - #### Alpha Linux with GNU C and Compaq C setups - # Special notes: -@@ -277,8 +277,8 @@ - "NetBSD-sparc", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -mv8 -Wall -DB_ENDIAN::(unknown)::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL:::", - "NetBSD-m68", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -Wall -DB_ENDIAN::(unknown)::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL:::", - "NetBSD-x86", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -m486 -Wall::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:", --"FreeBSD-elf", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", --"FreeBSD", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", -+"FreeBSD-elf", "$ENV{CC}:-DTERMIOS -DL_ENDIAN $ENV{CFLAGS}::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", -+"FreeBSD", "$ENV{CC}:-DTERMIOS -DL_ENDIAN $ENV{CFLAGS}::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}", - "bsdi-gcc", "gcc:-O3 -ffast-math -DL_ENDIAN -DPERL5 -m486::(unknown)::RSA_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_bsdi_asm}", - "bsdi-elf-gcc", "gcc:-DPERL5 -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", - "nextstep", "cc:-O -Wall::(unknown)::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:::", --- files/patch-ad Sat Jan 2 15:38:55 1999 +++ files/patch-ad Tue Oct 10 18:15:35 2000 @@ -1,2 +1,2 @@ ---- crypto/md5/md5.c.orig Thu Apr 9 07:59:29 1998 +--- crypto/md5/md5.c Thu Apr 9 07:59:29 1998 +++ crypto/md5/md5.c Sun Dec 27 18:44:33 1998 --- files/patch-ag Wed Jan 20 07:44:04 1999 +++ files/patch-ag Tue Oct 10 20:49:58 2000 @@ -1,11 +1,7 @@ ---- apps/dgst.c.orig Mon Dec 21 20:00:13 1998 -+++ apps/dgst.c Tue Jan 19 16:16:38 1999 -@@ -187,7 +187,7 @@ - err++; - continue; +--- apps/dgst.c Thu Sep 21 05:23:15 2000 ++++ apps/dgst.c Tue Oct 10 20:48:57 2000 +@@ -320,3 +320,3 @@ } -- printf("%s(%s)= ",name,argv[i]); -+ printf("%s (%s) = ",name,argv[i]); - do_fp(buf,inp,separator); - BIO_reset(bmd); - } +- if(!out_bin) BIO_printf(out, "%s(%s)= ",name,argv[i]); ++ if(!out_bin) BIO_printf(out, "%s (%s)= ",name,argv[i]); + do_fp(out, buf,inp,separator, out_bin, sigkey, --- files/patch-ah Sun Apr 16 08:24:43 2000 +++ files/patch-ah Wed Dec 31 19:00:00 1969 @@ -1,53 +0,0 @@ ---- config.orig Tue Mar 14 00:52:44 2000 -+++ config Sat Apr 15 14:18:03 2000 -@@ -311,50 +311,6 @@ - esac - done - --# figure out if gcc is available and if so we use it otherwise --# we fallback to whatever cc does on the system --GCCVER=`(gcc --version) 2>/dev/null` --if [ "$GCCVER" != "" ]; then -- CC=gcc -- # then strip off whatever prefix Cygnus prepends the number with... -- GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'` -- # peak single digit before and after first dot, e.g. 2.95.1 gives 29 -- GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'` --else -- CC=cc --fi -- --if [ "$SYSTEM" = "SunOS" ]; then -- # check for WorkShop C, expected output is "cc: blah-blah C x.x" -- CCVER=`(cc -V 2>&1) 2>/dev/null | \ -- egrep -e '^cc: .* C [0-9]\.[0-9]' | \ -- sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'` -- CCVER=${CCVER:-0} -- if [ $CCVER -gt 40 ]; then -- CC=cc # overrides gcc!!! -- if [ $CCVER -eq 50 ]; then -- echo "WARNING! Detected WorkShop C 5.0. Do make sure you have" -- echo " patch #107357-01 or later applied." -- sleep 5 -- fi -- elif [ "$CC" = "cc" -a $CCVER -gt 0 ]; then -- CC=sc3 -- fi --fi -- --if [ "${SYSTEM}-${MACHINE}" = "Linux-alpha" ]; then -- # check for Compaq C, expected output is "blah-blah C Vx.x" -- CCCVER=`(ccc -V 2>&1) 2>/dev/null | \ -- egrep -e '.* C V[0-9]\.[0-9]' | \ -- sed 's/.* C V\([0-9]\)\.\([0-9]\).*/\1\2/'` -- CCCVER=${CCCVER:-0} -- if [ $CCCVER -gt 60 ]; then -- CC=ccc # overrides gcc!!! well, ccc outperforms inoticeably -- # only on hash routines and des, otherwise gcc (2.95) -- # keeps along rather tight... -- fi --fi -- - GCCVER=${GCCVER:-0} - CCVER=${CCVER:-0} - --- files/patch-ak Wed Jun 2 03:30:47 1999 +++ files/patch-ak Wed Dec 31 19:00:00 1969 @@ -1,13 +0,0 @@ ---- apps/Makefile.ssl.orig Sun May 23 14:36:09 1999 -+++ apps/Makefile.ssl Fri May 28 22:29:19 1999 -@@ -101,8 +101,8 @@ - cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i; \ - chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \ - done -- @cp openssl.cnf $(INSTALL_PREFIX)$(OPENSSLDIR); \ -- chmod 644 $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf -+ @cp openssl.cnf $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf.sample; \ -+ chmod 644 $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf.sample - - tags: - ctags $(SRC) --- files/patch-ba Wed Dec 31 19:00:00 1969 +++ files/patch-ba Wed Oct 11 11:53:34 2000 @@ -0,0 +1,14 @@ +--- tools/Makefile Mon Sep 11 08:49:18 2000 ++++ tools/Makefile Wed Oct 11 11:34:54 2000 +@@ -10,4 +10,4 @@ + INSTALL_PREFIX= +-OPENSSLDIR= /usr/local/ssl +-INSTALLTOP=/usr/local/ssl ++OPENSSLDIR= ${PREFIX}/openssl ++INSTALLTOP= ${PREFIX} + MAKE= make -f Makefile.ssl +@@ -26,2 +26,4 @@ + install: ++ ${MKDIR} $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ ++ $(INSTALL_PREFIX)$(OPENSSLDIR)/misc + @for i in $(APPS) ; \ --- files/patch-bb Wed Dec 31 19:00:00 1969 +++ files/patch-bb Wed Oct 11 15:50:23 2000 @@ -0,0 +1,12 @@ +Without this patching, the generated assembly code chokes our cpp +with "unterminated string" :-) -mi +--- crypto/perlasm/x86asm.pl Mon Mar 13 18:54:34 2000 ++++ crypto/perlasm/x86asm.pl Wed Oct 11 13:49:10 2000 +@@ -52 +52 @@ +-&comment("Don't even think of reading this code"); ++&comment("Do not even think of reading this code"); +--- crypto/des/asm/des686.pl Mon Dec 21 05:55:05 1998 ++++ crypto/des/asm/des686.pl Wed Oct 11 15:49:15 2000 +@@ -36 +36 @@ +-&comment("Don't even think of reading this code"); ++&comment("Do not even think of reading this code"); --- files/ssl.Makefile Wed Dec 31 19:00:00 1969 +++ files/ssl.Makefile Wed Oct 11 17:15:47 2000 @@ -0,0 +1,23 @@ +NOMAN= man pages are separated +LIBDIR=${PREFIX}/lib +LIB= ssl +SRCS= \ + s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \ + s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ + s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c s23_pkt.c \ + t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ + ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ + ssl_ciph.c ssl_stat.c ssl_rsa.c \ + ssl_asn1.c ssl_txt.c ssl_algs.c \ + bio_ssl.c ssl_err.c + +LDADD= -L${.CURDIR}/../crypto -lcrypto +CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../include + +# It appears, there are binary level incompatibilites compared to 0.9.5a +SHLIB_MAJOR=2 +SHLIB_MINOR=0 +#INTERNALLIB=don't need a static version +NOPROFILE=don't care for a profile version + +.include --- files/top.Makefile Wed Dec 31 19:00:00 1969 +++ files/top.Makefile Wed Oct 11 12:49:18 2000 @@ -0,0 +1,6 @@ +SUBDIR= crypto ssl apps doc tools +PREFIX?=/usr/local + +.MAKEFLAGS: -j 2 PREFIX=${PREFIX} + +.include --- pkg-plist Fri Jun 16 04:48:20 2000 +++ pkg-plist Wed Oct 11 17:14:41 2000 @@ -52,9 +52,8 @@ include/openssl/x509_vfy.h include/openssl/x509v3.h -lib/libRSAglue.a lib/libcrypto.a lib/libcrypto.so -lib/libcrypto.so.1 +lib/libcrypto.so.2 lib/libssl.a lib/libssl.so -lib/libssl.so.1 +lib/libssl.so.2 openssl/misc/CA.pl --- pkg-plist.noshared Tue Apr 25 18:16:24 2000 +++ pkg-plist.noshared Wed Dec 31 19:00:00 1969 @@ -1,76 +0,0 @@ -bin/c_rehash -bin/openssl -include/openssl/asn1.h -include/openssl/asn1_mac.h -include/openssl/bio.h -include/openssl/blowfish.h -include/openssl/bn.h -include/openssl/buffer.h -include/openssl/cast.h -include/openssl/comp.h -include/openssl/conf.h -include/openssl/crypto.h -include/openssl/des.h -include/openssl/dh.h -include/openssl/dsa.h -include/openssl/e_os.h -include/openssl/e_os2.h -include/openssl/ebcdic.h -include/openssl/err.h -include/openssl/evp.h -include/openssl/hmac.h -include/openssl/idea.h -include/openssl/lhash.h -include/openssl/md2.h -include/openssl/md5.h -include/openssl/mdc2.h -include/openssl/objects.h -include/openssl/opensslconf.h -include/openssl/opensslv.h -include/openssl/pem.h -include/openssl/pem2.h -include/openssl/pkcs12.h -include/openssl/pkcs7.h -include/openssl/rand.h -include/openssl/rc2.h -include/openssl/rc4.h -include/openssl/rc5.h -include/openssl/ripemd.h -include/openssl/rsa.h -include/openssl/safestack.h -include/openssl/sha.h -include/openssl/ssl.h -include/openssl/ssl2.h -include/openssl/ssl23.h -include/openssl/ssl3.h -include/openssl/stack.h -include/openssl/tls1.h -include/openssl/tmdiff.h -include/openssl/txt_db.h -include/openssl/x509.h -include/openssl/x509_vfy.h -include/openssl/x509v3.h -lib/libRSAglue.a -lib/libcrypto.a -lib/libssl.a -openssl/misc/CA.pl -openssl/misc/CA.sh -openssl/misc/c_hash -openssl/misc/c_info -openssl/misc/c_issuer -openssl/misc/c_name -openssl/misc/der_chop -openssl/openssl.cnf.sample -share/doc/openssl/openssl.txt -@dirrm include/openssl -@dirrm openssl/certs -@dirrm openssl/lib -@dirrm openssl/man/man1 -@dirrm openssl/man/man3 -@dirrm openssl/man/man5 -@dirrm openssl/man/man7 -@dirrm openssl/man -@dirrm openssl/misc -@dirrm openssl/private -@dirrm openssl -@dirrm share/doc/openssl >Release-Note: >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 Oct 11 17:10:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from alpo.whistle.com (s206m1.whistle.com [207.76.206.1]) by hub.freebsd.org (Postfix) with ESMTP id C4E7C37B66C; Wed, 11 Oct 2000 17:10:15 -0700 (PDT) Received: from whistle.com (aspen.whistle.com [207.76.205.71]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id RAA02157; Wed, 11 Oct 2000 17:00:07 -0700 (PDT) Message-ID: <39E4FF06.659A41A8@whistle.com> Date: Wed, 11 Oct 2000 17:00:07 -0700 From: Erik Salander X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.1.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Cc: billf@freebsd.org Subject: ucd-snmp port? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org We mirrored FreeBSD's port tree this AM and I refreshed my ports directory but I'm getting these errors building ucd-snmp: Error: your port uses an old layout. Please update it to match this bsd.port.mk. *** Error code 1 Stop in /usr/ports/net/ucd-snmp. *** Error code 1 Stop in /usr/ports/net/ucd-snmp. *** Error code 1 Stop in /usr/ports/net/ucd-snmp. *** Error code 1 Stop in /usr/ports/net/ucd-snmp. *** Error code 1 Stop in /usr/ports/net/ucd-snmp. Thanks for any advice. Erik To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 17:23:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 02E6437B502; Wed, 11 Oct 2000 17:23:48 -0700 (PDT) Received: by peitho.fxp.org (Postfix, from userid 1501) id DC9DB1360D; Wed, 11 Oct 2000 20:23:51 -0400 (EDT) Date: Wed, 11 Oct 2000 20:23:51 -0400 From: Chris Faulhaber To: Erik Salander Cc: ports@freebsd.org, billf@freebsd.org Subject: Re: ucd-snmp port? Message-ID: <20001011202351.A28352@peitho.fxp.org> References: <39E4FF06.659A41A8@whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E4FF06.659A41A8@whistle.com>; from erik@whistle.com on Wed, Oct 11, 2000 at 05:00:07PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 11, 2000 at 05:00:07PM -0700, Erik Salander wrote: > > We mirrored FreeBSD's port tree this AM and I refreshed my ports > directory but I'm getting these errors building ucd-snmp: > > Error: your port uses an old layout. Please update it to match this > bsd.port.mk. > *** Error code 1 > Assuming you are using CVSup, are you updating ports-all. If not, are you updating ports-base (which will update bsd.port.mk and the other files in ports/Mk)? -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.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 Oct 11 17:42:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41C5937B503; Wed, 11 Oct 2000 17:42:54 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA21041; Wed, 11 Oct 2000 17:42:54 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Wed, 11 Oct 2000 17:42:54 -0700 (PDT) From: Message-Id: <200010120042.RAA21041@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, jfitz@FreeBSD.org Subject: Re: ports/21787: Update port: net/mrtg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/mrtg Responsible-Changed-From-To: freebsd-ports->jfitz@FreeBSD.org Responsible-Changed-By: jeh Responsible-Changed-When: Wed Oct 11 17:42:01 PDT 2000 Responsible-Changed-Why: Over to MAINTAINER http://www.freebsd.org/cgi/query-pr.cgi?pr=21787 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 20: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86C6F37B502 for ; Wed, 11 Oct 2000 20:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA69824; Wed, 11 Oct 2000 20:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 11 Oct 2000 20:00:05 -0700 (PDT) Message-Id: <200010120300.UAA69824@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "James E. Housley" Subject: Re: ports/20668: new port: databases/db3 (Berkeley DB rev.3) Reply-To: "James E. Housley" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20668; it has been noted by GNATS. From: "James E. Housley" To: freebsd-gnats-submit@FreeBSD.org, osa@FreeBSD.org.ru Cc: Subject: Re: ports/20668: new port: databases/db3 (Berkeley DB rev.3) Date: Wed, 11 Oct 2000 22:50:45 -0400 How is this different from the existing ports/databases/db3 port? Should this just be closed? Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 20:22:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 100C537B503; Wed, 11 Oct 2000 20:22:56 -0700 (PDT) Received: from gorean.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id UAA09906; Wed, 11 Oct 2000 20:22:26 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <39E52E72.212AABAD@gorean.org> Date: Wed, 11 Oct 2000 20:22:26 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT-100 i386) X-Accept-Language: en MIME-Version: 1.0 To: Chris Faulhaber Cc: Erik Salander , ports@freebsd.org, billf@freebsd.org Subject: Re: ucd-snmp port? References: <39E4FF06.659A41A8@whistle.com> <20001011202351.A28352@peitho.fxp.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chris Faulhaber wrote: > > On Wed, Oct 11, 2000 at 05:00:07PM -0700, Erik Salander wrote: > > > > We mirrored FreeBSD's port tree this AM and I refreshed my ports > > directory but I'm getting these errors building ucd-snmp: > > > > Error: your port uses an old layout. Please update it to match this > > bsd.port.mk. > > *** Error code 1 > > > > Assuming you are using CVSup, are you updating ports-all. If not, are > you updating ports-base (which will update bsd.port.mk and the other > files in ports/Mk)? I've had this happen several times now with ports that I had customized. cvsup only removes files it knows about, and only deletes directories if they are empty. Chances are you have a patches or pkg directory in that port directory. Worst case scenario, delete the whole port directory and re-cvsup. HTH, Doug -- "The dead cannot be seduced." - Kai, "Lexx" Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 20:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A76037B502 for ; Wed, 11 Oct 2000 20:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA84551; Wed, 11 Oct 2000 20:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 11 Oct 2000 20:40:03 -0700 (PDT) Message-Id: <200010120340.UAA84551@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Cyrille Lefevre Subject: Re: ports/21884: New port: misc/sh-utils - 2.0 Reply-To: Cyrille Lefevre Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21884; it has been noted by GNATS. From: Cyrille Lefevre To: freebsd-gnats-submit@FreeBSD.org, clefevre@citeweb.net Cc: Subject: Re: ports/21884: New port: misc/sh-utils - 2.0 Date: Thu, 12 Oct 2000 05:31:59 +0200 oops, I forgot the following lines in the Makefile of this new port : ----- Y2K= http://www.gnu.org/software/year2000.html XLIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext ----- before GNU_CONFIGURE and ----- post-install: install-info ${PREFIX}/info/gcal.info ${PREFIX}/info/dir ----- before .include also, the "Version required:" comment is no more needed. sorry about that, I was tired when I made this port ! Cyrille. -- home:mailto:clefevre@citeweb.net work:mailto:Cyrille.Lefevre@edf.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 20:57:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A816A37B502; Wed, 11 Oct 2000 20:57:19 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA90351; Wed, 11 Oct 2000 20:57:19 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Wed, 11 Oct 2000 20:57:19 -0700 (PDT) From: Message-Id: <200010120357.UAA90351@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21884: New port: misc/sh-utils - 2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: misc/sh-utils - 2.0 Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Wed Oct 11 20:55:42 PDT 2000 Responsible-Changed-Why: I'll look at this (wish I'd had gcal handy on Monday--I went to the post office on Columbus Day). http://www.freebsd.org/cgi/query-pr.cgi?pr=21884 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 21: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D81137B66C for ; Wed, 11 Oct 2000 21:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA91196; Wed, 11 Oct 2000 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 4130337B503 for ; Wed, 11 Oct 2000 20:59:59 -0700 (PDT) Received: (qmail 57649 invoked from network); 12 Oct 2000 03:59:57 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 12 Oct 2000 03:59:57 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9C3xvl38408; Thu, 12 Oct 2000 05:59:57 +0200 (CEST) (envelope-from root) Message-Id: <200010120359.e9C3xvl38408@gits.dyndns.org> Date: Thu, 12 Oct 2000 05:59:57 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21921: New port: deskutils/gcal - 3.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21921 >Category: ports >Synopsis: New port: deskutils/gcal - 3.01 >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 Oct 11 21:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: The GNU Gregorian calendar program, a program for calculating and printing calendars. >How-To-Repeat: n/a >Fix: # 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: # # deskutils/gcal # deskutils/gcal/pkg-plist # deskutils/gcal/pkg-descr # deskutils/gcal/pkg-comment # deskutils/gcal/distinfo # deskutils/gcal/Makefile # echo c - deskutils/gcal mkdir -p deskutils/gcal > /dev/null 2>&1 echo x - deskutils/gcal/pkg-plist sed 's/^X//' >deskutils/gcal/pkg-plist << 'END-of-deskutils/gcal/pkg-plist' Xbin/gcal Xbin/gcal2txt Xbin/tcal Xbin/txt2gcal X@unexec install-info --delete %D/info/gcal.info %D/info/dir Xinfo/gcal.info Xinfo/gcal.info-1 Xinfo/gcal.info-10 Xinfo/gcal.info-11 Xinfo/gcal.info-12 Xinfo/gcal.info-13 Xinfo/gcal.info-14 Xinfo/gcal.info-2 Xinfo/gcal.info-3 Xinfo/gcal.info-4 Xinfo/gcal.info-5 Xinfo/gcal.info-6 Xinfo/gcal.info-7 Xinfo/gcal.info-8 Xinfo/gcal.info-9 X@exec install-info %D/info/gcal.info %D/info/dir Xshare/locale/de/LC_MESSAGES/gcal.mo Xshare/locale/fr/LC_MESSAGES/gcal.mo Xshare/locale/nl/LC_MESSAGES/gcal.mo Xshare/locale/pl/LC_MESSAGES/gcal.mo Xshare/locale/ru/LC_MESSAGES/gcal.mo Xshare/locale/sv/LC_MESSAGES/gcal.mo Xshare/gcal/misc/daily/daily X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/daily/daily.awk Xshare/gcal/misc/daily/daily.pl Xshare/gcal/misc/daily/daily.rc Xshare/gcal/misc/ddiff/ddiff X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/ddiff/ddiffdrv Xshare/gcal/misc/ddiff/ddiff1.awk Xshare/gcal/misc/ddiff/ddiff1.pl Xshare/gcal/misc/ddiff/ddiff2.awk Xshare/gcal/misc/ddiff/ddiff2.pl Xshare/gcal/misc/ddiff/ddiffdrv.awk Xshare/gcal/misc/ddiff/ddiffdrv.pl Xshare/gcal/misc/ddiff/zone.tab Xshare/gcal/misc/dst/dst X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/dst/dst.awk Xshare/gcal/misc/dst/dst.pl Xshare/gcal/misc/gcalltx/gcalltx X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/gcalltx/gcalltx.pl Xshare/gcal/misc/gcalltx/gcalltx.sed Xshare/gcal/misc/moon/moon X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/mrms/mrms X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/mrms/mrms.awk Xshare/gcal/misc/mrms/mrms.pl Xshare/gcal/misc/mrms/mrms.rc Xshare/gcal/misc/srss/srss X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/srss/srss.awk Xshare/gcal/misc/srss/srss.pl Xshare/gcal/misc/srss/srss.rc Xshare/gcal/misc/wloc/wlocdrv X@exec ln -fs %D/%F %D/bin/gcal-%f X@unexec rm -f %D/bin/gcal-%f Xshare/gcal/misc/wloc/wlocdrv1.awk Xshare/gcal/misc/wloc/wlocdrv1.pl Xshare/gcal/misc/wloc/wlocdrv2.awk Xshare/gcal/misc/wloc/wlocdrv2.pl Xshare/gcal/misc/wloc/zone.tab Xshare/gcal/misc/README Xshare/gcal/misc/gcalmagic.add Xshare/gcal/scripts/cal2gcal.awk Xshare/gcal/scripts/cal2gcal.pl Xshare/gcal/scripts/ct2gcal.awk Xshare/gcal/scripts/ct2gcal.pl Xshare/gcal/scripts/old2v220.awk Xshare/gcal/scripts/old2v220.pl Xshare/gcal/scripts/v2x2v300.awk Xshare/gcal/scripts/v2x2v300.pl Xshare/gcal/calendar.birth Xshare/gcal/calendar.chris Xshare/gcal/calendar.compu Xshare/gcal/calendar.histo Xshare/gcal/calendar.holid Xshare/gcal/calendar.judai Xshare/gcal/calendar.music Xshare/gcal/calendar.ushol Xshare/gcal/ancient Xshare/gcal/can_holiday Xshare/gcal/celtic Xshare/gcal/computing Xshare/gcal/events Xshare/gcal/events1 Xshare/gcal/events2 Xshare/gcal/events3 Xshare/gcal/events4 Xshare/gcal/events5 Xshare/gcal/events6 Xshare/gcal/gdead Xshare/gcal/hawaii Xshare/gcal/literature Xshare/gcal/lives Xshare/gcal/sfo Xshare/gcal/lives1 Xshare/gcal/lives2 Xshare/gcal/lives3 Xshare/gcal/lives4 Xshare/gcal/lives5 Xshare/gcal/lives6 Xshare/gcal/lotr Xshare/gcal/movies Xshare/gcal/music Xshare/gcal/radio Xshare/gcal/space Xshare/gcal/sports Xshare/gcal/television Xshare/gcal/usa_holiday Xshare/gcal/usa_other Xshare/gcal/usa_states Xshare/gcal/witchcraft Xshare/gcal/world Xshare/gcal/CREDITS.dates Xshare/gcal/README.dates Xshare/gcal/README Xshare/gcal/ansipic.rc Xshare/gcal/birthday.rc Xshare/gcal/bkk.rc Xshare/gcal/de-mdata.rc Xshare/gcal/de-sdata.rc Xshare/gcal/mdata.rc Xshare/gcal/meteoric.rc Xshare/gcal/ms.rc Xshare/gcal/sdata.rc Xshare/gcal/sun-moon.rc Xshare/gcal/textpic.rc Xshare/gcal/wloc.rc Xshare/gcal/wtt1.rc Xshare/gcal/wtt2.rc Xshare/gcal/wtt3.rc X@dirrm share/gcal/misc/daily X@dirrm share/gcal/misc/ddiff X@dirrm share/gcal/misc/dst X@dirrm share/gcal/misc/gcalltx X@dirrm share/gcal/misc/moon X@dirrm share/gcal/misc/mrms X@dirrm share/gcal/misc/srss X@dirrm share/gcal/misc/wloc X@dirrm share/gcal/misc X@dirrm share/gcal/scripts X@dirrm share/gcal END-of-deskutils/gcal/pkg-plist echo x - deskutils/gcal/pkg-descr sed 's/^X//' >deskutils/gcal/pkg-descr << 'END-of-deskutils/gcal/pkg-descr' XThe GNU Gregorian calendar program. Gcal is a program for calculating Xand printing calendars. Gcal displays hybrid and proleptic Julian Xand Gregorian calendar sheets, respectively, for one month, three Xmonths or a whole year. It also displays eternal holiday lists Xfor many countries around the globe, and features a very powerful Xcreation of fixed date lists that can be used for reminding purposes. XGcal can calculate various astronomical data and times of the Sun Xand the Moon for at pleasure any location, precisely enough for Xmost civil purposes. Gcal supports some other calendar systems, Xfor example the Chinese and Japanese calendar, the Hebrew calendar Xand the civil Islamic calendar, too. X XNote that this port will install these utilities with a `g' prefix, Xeg., gdate, gexpr, gtest, but the texinfo documentation will refer to Xthese utilities without the `g' prefix. X XWWW: http://www.gnu.org/software/gcal/gcal.html END-of-deskutils/gcal/pkg-descr echo x - deskutils/gcal/pkg-comment sed 's/^X//' >deskutils/gcal/pkg-comment << 'END-of-deskutils/gcal/pkg-comment' XThe GNU Gregorian calendar program. END-of-deskutils/gcal/pkg-comment echo x - deskutils/gcal/distinfo sed 's/^X//' >deskutils/gcal/distinfo << 'END-of-deskutils/gcal/distinfo' XMD5 (gcal-3.01.tar.gz) = 65f3394653829fd77f6862045112ad4f END-of-deskutils/gcal/distinfo echo x - deskutils/gcal/Makefile sed 's/^X//' >deskutils/gcal/Makefile << 'END-of-deskutils/gcal/Makefile' X# New ports collection makefile for: gcal X# Date created: 12 October 2000 X# Whom: Cyrille Lefevre X# X# $FreeBSD$ X# X XPORTNAME= gcal XPORTVERSION= 3.01 XCATEGORIES= deskutils XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= gcal X XMAINTAINER= ports@freebsd.org X XLIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext X XY2K= http://www.gnu.org/software/year2000.html X XGNU_CONFIGURE= yes X XMAN1= gcal.1 gcal2txt.1 tcal.1 txt2gcal.1 X Xpost-install: X install-info ${PREFIX}/info/gcal.info ${PREFIX}/info/dir X X.include END-of-deskutils/gcal/Makefile exit >Release-Note: >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 Oct 11 21:10:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6C9037B66C for ; Wed, 11 Oct 2000 21:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95793; Wed, 11 Oct 2000 21:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 5820B37B502 for ; Wed, 11 Oct 2000 21:03:28 -0700 (PDT) Received: (qmail 52219 invoked from network); 12 Oct 2000 04:03:27 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 12 Oct 2000 04:03:27 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9C43Pw38544; Thu, 12 Oct 2000 06:03:25 +0200 (CEST) (envelope-from root) Message-Id: <200010120403.e9C43Pw38544@gits.dyndns.org> Date: Thu, 12 Oct 2000 06:03:25 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21922: New port: devel/gengetopt - 2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21922 >Category: ports >Synopsis: New port: devel/gengetopt - 2.1 >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 Oct 11 21:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: The GNU Gengetopt generates a C function which parses command line arguments. >How-To-Repeat: n/a >Fix: # 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: # # devel/gengetopt/pkg-plist # devel/gengetopt/pkg-descr # devel/gengetopt/pkg-comment # devel/gengetopt/distinfo # devel/gengetopt/Makefile # echo x - devel/gengetopt/pkg-plist sed 's/^X//' >devel/gengetopt/pkg-plist << 'END-of-devel/gengetopt/pkg-plist' Xbin/gengetopt Xshare/doc/gengetopt/examples/sample1.ggo Xshare/doc/gengetopt/examples/sample2.ggo Xshare/doc/gengetopt/examples/main1.cc Xshare/doc/gengetopt/examples/main2.c Xshare/doc/gengetopt/examples/cmdline1.c Xshare/doc/gengetopt/examples/cmdline1.h Xshare/doc/gengetopt/examples/cmdline2.c Xshare/doc/gengetopt/examples/cmdline2.h Xshare/doc/gengetopt/gengetopt.html Xshare/doc/gengetopt/cmdline1.c.html Xshare/doc/gengetopt/man_getopt.html Xshare/doc/gengetopt/no_getopt_long.txt Xshare/doc/gengetopt/ChangeLog Xshare/doc/gengetopt/COPYING Xshare/doc/gengetopt/NEWS Xshare/doc/gengetopt/THANKS Xshare/doc/gengetopt/INSTALL Xshare/doc/gengetopt/README Xshare/doc/gengetopt/LICENSE Xshare/gengetopt/getopt.h Xshare/gengetopt/getopt.c Xshare/gengetopt/getopt1.c X@dirrm share/doc/gengetopt/examples X@dirrm share/doc/gengetopt X@dirrm share/gengetopt END-of-devel/gengetopt/pkg-plist echo x - devel/gengetopt/pkg-descr sed 's/^X//' >devel/gengetopt/pkg-descr << 'END-of-devel/gengetopt/pkg-descr' XThis program generate a C function that uses getopt_long function to parse Xthe command line options, validate them and fill a struct. X XThus your program can now handle options such as: X Xmyprog --input foo.c -o foo.o --no-tabs -i 100 *.class X XAnd both long options (those that start with --) and short options (start Xwith - and consist of only one character) can be handled. For standards Xabout short and long options you may want to take a look at the GNU Coding XStandards. X XWWW: http://www.gnu.org/software/gengetopt/gengetopt.html END-of-devel/gengetopt/pkg-descr echo x - devel/gengetopt/pkg-comment sed 's/^X//' >devel/gengetopt/pkg-comment << 'END-of-devel/gengetopt/pkg-comment' XThe GNU Gengetopt generates a C function which parses command line arguments. END-of-devel/gengetopt/pkg-comment echo x - devel/gengetopt/distinfo sed 's/^X//' >devel/gengetopt/distinfo << 'END-of-devel/gengetopt/distinfo' XMD5 (gengetopt-2.1.tar.gz) = 6281f425c0f24536bdbe340450481ec2 END-of-devel/gengetopt/distinfo echo x - devel/gengetopt/Makefile sed 's/^X//' >devel/gengetopt/Makefile << 'END-of-devel/gengetopt/Makefile' X# New ports collection makefile for: gengetopt X# Date created: 12 October 2000 X# Whom: Cyrille Lefevre X# X# $FreeBSD$ X# X XPORTNAME= gengetopt XPORTVERSION= 2.1 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= gengetopt X XMAINTAINER= ports@freebsd.org X XY2K= http://www.gnu.org/software/year2000.html X XGNU_CONFIGURE= yes X XMAN1= gengetopt.1 X X.include END-of-devel/gengetopt/Makefile exit >Release-Note: >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 Oct 11 21:10:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F30C037B66E for ; Wed, 11 Oct 2000 21:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA95802; Wed, 11 Oct 2000 21:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 65FB737B502 for ; Wed, 11 Oct 2000 21:05:36 -0700 (PDT) Received: (qmail 14159115 invoked from network); 12 Oct 2000 04:05:34 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 12 Oct 2000 04:05:34 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9C45Yf38660; Thu, 12 Oct 2000 06:05:34 +0200 (CEST) (envelope-from root) Message-Id: <200010120405.e9C45Yf38660@gits.dyndns.org> Date: Thu, 12 Oct 2000 06:05:34 +0200 (CEST) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21923: New port: lang/gforth - 0.5.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21923 >Category: ports >Synopsis: New port: lang/gforth - 0.5.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: Wed Oct 11 21:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.1-STABLE FreeBSD 4.1-STABLE #3: Sat Sep 23 10:20:30 CEST 2000 root@gits:/disk2/4.0-stable/src/sys/compile/CUSTOM i386 >Description: GNU Forth, a fast and portable Forth system. >How-To-Repeat: n/a >Fix: # 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: # # lang/gforth # lang/gforth/distinfo # lang/gforth/pkg-descr # lang/gforth/pkg-comment # lang/gforth/pkg-plist # lang/gforth/Makefile # echo c - lang/gforth mkdir -p lang/gforth > /dev/null 2>&1 echo x - lang/gforth/distinfo sed 's/^X//' >lang/gforth/distinfo << 'END-of-lang/gforth/distinfo' XMD5 (gforth-0.5.0.tar.gz) = db16b64e9d63934bc4455e9b2aebbe13 END-of-lang/gforth/distinfo echo x - lang/gforth/pkg-descr sed 's/^X//' >lang/gforth/pkg-descr << 'END-of-lang/gforth/pkg-descr' XGforth is a fast and portable implementation of the ANS Forth Xlanguage. It works nicely with the Emacs editor, offers some nice Xfeatures such as input completion and history and a powerful locals Xfacility, and it even has a manual. Gforth employs traditional Ximplementation techniques: its inner innerpreter is indirect or Xdirect threaded. X XWWW: http://www.gnu.org/software/gforth/gforth.html END-of-lang/gforth/pkg-descr echo x - lang/gforth/pkg-comment sed 's/^X//' >lang/gforth/pkg-comment << 'END-of-lang/gforth/pkg-comment' XGNU Forth, a fast and portable Forth system. END-of-lang/gforth/pkg-comment echo x - lang/gforth/pkg-plist sed 's/^X//' >lang/gforth/pkg-plist << 'END-of-lang/gforth/pkg-plist' Xbin/gforth-0.5.0 X@exec ln -fs %f %B/gforth X@unexec rm -f %B/gforth Xbin/gforth-fast-0.5.0 X@exec ln -fs %f %B/gforth-fast X@unexec rm -f %B/gforth-fast Xbin/gforthmi-0.5.0 X@exec ln -fs %f %B/gforthmi X@unexec rm -f %B/gforthmi X@unexec install-info --delete %D/info/gforth.info %D/info/dir Xinfo/gforth.info Xinfo/gforth.info-1 Xinfo/gforth.info-10 Xinfo/gforth.info-11 Xinfo/gforth.info-12 Xinfo/gforth.info-13 Xinfo/gforth.info-14 Xinfo/gforth.info-2 Xinfo/gforth.info-3 Xinfo/gforth.info-4 Xinfo/gforth.info-5 Xinfo/gforth.info-6 Xinfo/gforth.info-7 Xinfo/gforth.info-8 Xinfo/gforth.info-9 X@exec install-info %D/info/gforth.info %D/info/dir Xlib/gforth/0.5.0/gforth-ditc Xlib/gforth/0.5.0/gforth.fi Xshare/emacs/site-lisp/gforth.el Xshare/gforth/0.5.0/ekey.fs Xshare/gforth/0.5.0/kernel/aliases0.fs Xshare/gforth/0.5.0/kernel/aliases.fs Xshare/gforth/0.5.0/kernel/args.fs Xshare/gforth/0.5.0/kernel/cbr.fs Xshare/gforth/0.5.0/kernel/cloop.fs Xshare/gforth/0.5.0/kernel/cond.fs Xshare/gforth/0.5.0/kernel/cond-old.fs Xshare/gforth/0.5.0/kernel/errore.fs Xshare/gforth/0.5.0/kernel/files.fs Xshare/gforth/0.5.0/kernel/require.fs Xshare/gforth/0.5.0/kernel/paths.fs Xshare/gforth/0.5.0/kernel/kernel.fs Xshare/gforth/0.5.0/kernel/main.fs Xshare/gforth/0.5.0/kernel/prim0.fs Xshare/gforth/0.5.0/kernel/quotes.fs Xshare/gforth/0.5.0/kernel/tools.fs Xshare/gforth/0.5.0/kernel/toolsext.fs Xshare/gforth/0.5.0/kernel/vars.fs Xshare/gforth/0.5.0/kernel/accept.fs Xshare/gforth/0.5.0/kernel/basics.fs Xshare/gforth/0.5.0/kernel/int.fs Xshare/gforth/0.5.0/kernel/comp.fs Xshare/gforth/0.5.0/kernel/io.fs Xshare/gforth/0.5.0/kernel/license.fs Xshare/gforth/0.5.0/kernel/nio.fs Xshare/gforth/0.5.0/kernel/saccept.fs Xshare/gforth/0.5.0/kernel/doers.fs Xshare/gforth/0.5.0/kernel/getdoers.fs Xshare/gforth/0.5.0/kernel/pass.fs Xshare/gforth/0.5.0/doc/makedoc.fs Xshare/gforth/0.5.0/asm/README Xshare/gforth/0.5.0/asm/bitmask.fs Xshare/gforth/0.5.0/asm/numref.fs Xshare/gforth/0.5.0/asm/basic.fs Xshare/gforth/0.5.0/asm/generic.fs Xshare/gforth/0.5.0/asm/target.fs Xshare/gforth/0.5.0/ec/README Xshare/gforth/0.5.0/ec/mirror.fs Xshare/gforth/0.5.0/ec/shex.fs Xshare/gforth/0.5.0/ec/builttag.fs Xshare/gforth/0.5.0/ec/dotx.fs Xshare/gforth/0.5.0/ec/nesting.fs Xshare/gforth/0.5.0/test/tester.fs Xshare/gforth/0.5.0/test/coretest.fs Xshare/gforth/0.5.0/test/postpone.fs Xshare/gforth/0.5.0/test/dbltest.fs Xshare/gforth/0.5.0/test/other.fs Xshare/gforth/0.5.0/test/checkans.fs Xshare/gforth/0.5.0/compat/README Xshare/gforth/0.5.0/compat/anslocal.fs Xshare/gforth/0.5.0/compat/assert.fs Xshare/gforth/0.5.0/compat/control.fs Xshare/gforth/0.5.0/compat/defer.fs Xshare/gforth/0.5.0/compat/exception.fs Xshare/gforth/0.5.0/compat/loops.fs Xshare/gforth/0.5.0/compat/required.fs Xshare/gforth/0.5.0/compat/struct.fs Xshare/gforth/0.5.0/compat/vocabulary.fs Xshare/gforth/0.5.0/arch/mips/asm.fs Xshare/gforth/0.5.0/arch/mips/disasm.fs Xshare/gforth/0.5.0/arch/mips/insts.fs Xshare/gforth/0.5.0/arch/386/asm.fs Xshare/gforth/0.5.0/arch/386/disasm.fs Xshare/gforth/0.5.0/arch/alpha/asm.fs Xshare/gforth/0.5.0/arch/alpha/disasm.fs Xshare/gforth/0.5.0/mach16b.fs Xshare/gforth/0.5.0/mach16l.fs Xshare/gforth/0.5.0/mach32b.fs Xshare/gforth/0.5.0/mach32l.fs Xshare/gforth/0.5.0/mach64b.fs Xshare/gforth/0.5.0/mach64l.fs Xshare/gforth/0.5.0/machpc.fs Xshare/gforth/0.5.0/chains.fs Xshare/gforth/0.5.0/cross.fs Xshare/gforth/0.5.0/search.fs Xshare/gforth/0.5.0/assert.fs Xshare/gforth/0.5.0/backtrac.fs Xshare/gforth/0.5.0/blocked.fb Xshare/gforth/0.5.0/blocks.fs Xshare/gforth/0.5.0/bufio.fs Xshare/gforth/0.5.0/debug.fs Xshare/gforth/0.5.0/debugs.fs Xshare/gforth/0.5.0/savesys.fs Xshare/gforth/0.5.0/environ.fs Xshare/gforth/0.5.0/errors.fs Xshare/gforth/0.5.0/exboot.fs Xshare/gforth/0.5.0/except.fs Xshare/gforth/0.5.0/extend.fs Xshare/gforth/0.5.0/float.fs Xshare/gforth/0.5.0/glocals.fs Xshare/gforth/0.5.0/hash.fs Xshare/gforth/0.5.0/history.fs Xshare/gforth/0.5.0/intcomp.fs Xshare/gforth/0.5.0/locals.fs Xshare/gforth/0.5.0/look.fs Xshare/gforth/0.5.0/see.fs Xshare/gforth/0.5.0/see-ext.fs Xshare/gforth/0.5.0/source.fs Xshare/gforth/0.5.0/startup.fs Xshare/gforth/0.5.0/struct.fs Xshare/gforth/0.5.0/stuff.fs Xshare/gforth/0.5.0/tasker.fs Xshare/gforth/0.5.0/termsize.fs Xshare/gforth/0.5.0/vt100.fs Xshare/gforth/0.5.0/vt100key.fs Xshare/gforth/0.5.0/wordinfo.fs Xshare/gforth/0.5.0/ans-report.fs Xshare/gforth/0.5.0/ansi.fs Xshare/gforth/0.5.0/answords.fs Xshare/gforth/0.5.0/code.fs Xshare/gforth/0.5.0/colorize.fs Xshare/gforth/0.5.0/comp-i.fs Xshare/gforth/0.5.0/doskey.fs Xshare/gforth/0.5.0/ds2texi.fs Xshare/gforth/0.5.0/envos.fs Xshare/gforth/0.5.0/envos.dos Xshare/gforth/0.5.0/envos.os2 Xshare/gforth/0.5.0/etags.fs Xshare/gforth/0.5.0/filedump.fs Xshare/gforth/0.5.0/fi2c.fs Xshare/gforth/0.5.0/glosgen.fs Xshare/gforth/0.5.0/gray.fs Xshare/gforth/0.5.0/httpd.fs Xshare/gforth/0.5.0/make-app.fs Xshare/gforth/0.5.0/more.fs Xshare/gforth/0.5.0/other.fs Xshare/gforth/0.5.0/prims2x.fs Xshare/gforth/0.5.0/random.fs Xshare/gforth/0.5.0/table.fs Xshare/gforth/0.5.0/string.fs Xshare/gforth/0.5.0/tt.fs Xshare/gforth/0.5.0/sokoban.fs Xshare/gforth/0.5.0/unbuffer.fs Xshare/gforth/0.5.0/wordsets.fs Xshare/gforth/0.5.0/bubble.fs Xshare/gforth/0.5.0/siev.fs Xshare/gforth/0.5.0/matrix.fs Xshare/gforth/0.5.0/fib.fs Xshare/gforth/0.5.0/oof.fs Xshare/gforth/0.5.0/oofsampl.fs Xshare/gforth/0.5.0/objects.fs Xshare/gforth/0.5.0/objexamp.fs Xshare/gforth/0.5.0/mini-oof.fs Xshare/gforth/0.5.0/moof-exm.fs Xshare/gforth/0.5.0/moofglos.fs Xshare/gforth/0.5.0/add.fs Xshare/gforth/0.5.0/lib.fs Xshare/gforth/0.5.0/sieve.fs Xshare/gforth/0.5.0/prim Xshare/gforth/0.5.0/kernl32l.fi Xshare/gforth/0.5.0/TAGS Xshare/gforth/site-forth/siteinit.fs X@dirrm lib/gforth/0.5.0 X@dirrm lib/gforth X@dirrm share/gforth/0.5.0/kernel X@dirrm share/gforth/0.5.0/doc X@dirrm share/gforth/0.5.0/asm X@dirrm share/gforth/0.5.0/ec X@dirrm share/gforth/0.5.0/test X@dirrm share/gforth/0.5.0/compat X@dirrm share/gforth/0.5.0/arch/mips X@dirrm share/gforth/0.5.0/arch/386 X@dirrm share/gforth/0.5.0/arch/alpha X@dirrm share/gforth/0.5.0/arch X@dirrm share/gforth/0.5.0 X@dirrm share/gforth/site-forth X@dirrm share/gforth END-of-lang/gforth/pkg-plist echo x - lang/gforth/Makefile sed 's/^X//' >lang/gforth/Makefile << 'END-of-lang/gforth/Makefile' X# New ports collection makefile for: gforth X# Date created: 12 October 2000 X# Whom: Cyrille Lefevre X# X# $FreeBSD$ X# X XPORTNAME= gforth XPORTVERSION= 0.5.0 XCATEGORIES= lang XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= gforth X XMAINTAINER= ports@freebsd.org X XY2K= http://www.gnu.org/software/year2000.html X XCFLAGS= #none XSTRIP= #none X XGNU_CONFIGURE= yes X XMAN1= gforth.1 X Xpost-install: X install-info ${PREFIX}/info/gforth.info ${PREFIX}/info/dir X X.include END-of-lang/gforth/Makefile exit >Release-Note: >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 Oct 11 21:17: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8EE137B502; Wed, 11 Oct 2000 21:17:01 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA98300; Wed, 11 Oct 2000 21:17:01 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Wed, 11 Oct 2000 21:17:01 -0700 (PDT) From: Message-Id: <200010120417.VAA98300@freefall.freebsd.org> To: clefevre@citeweb.net, trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21921: New port: deskutils/gcal - 3.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: deskutils/gcal - 3.01 State-Changed-From-To: open->feedback State-Changed-By: trevor State-Changed-When: Wed Oct 11 21:14:22 PDT 2000 State-Changed-Why: Your proposed sh-utils port (PR 21884) installs the info page for gcal. I suggest that gcal and its info page both be installed by the same port. Have you any comment? Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Wed Oct 11 21:14:22 PDT 2000 Responsible-Changed-Why: I'm working on PR 21884. http://www.freebsd.org/cgi/query-pr.cgi?pr=21921 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 11 22: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B493137B66C for ; Wed, 11 Oct 2000 22:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA12442; Wed, 11 Oct 2000 22:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 0FE8137B502 for ; Wed, 11 Oct 2000 21:50:45 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e9C4nnY18613 for ; Thu, 12 Oct 2000 06:49:49 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e9C4lsC23693; Thu, 12 Oct 2000 06:47:54 +0200 (CEST) (envelope-from dm) Message-Id: <200010120447.e9C4lsC23693@home.dinoex.sub.org> Date: Thu, 12 Oct 2000 06:47:54 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21924: audio/lame with gtk broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21924 >Category: ports >Synopsis: audio/lame with gtk broken >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Oct 11 22:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: currrent ports tree, Oct 10 20:49 gtk12 installed >Description: the port fails to install as the makefile does not find a target. >How-To-Repeat: try to install ===> Extracting for lame-gtk-3.70 >Fix: add a do-install rule like in ports/audio/lame/Makefile,v 1.12 do-install: @( cd ${WRKSRC}; ${INSTALL_PROGRAM} lame ${PREFIX}/bin ) @( cd ${WRKSRC}; ${INSTALL_MAN} doc/man/lame.1 \ ${PREFIX}/man/man1 ) >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for dist10.tar.gz. >> Checksum OK for lame3.70.patch.gz. ===> lame-gtk-3.70 depends on executable: gmake - found ===> lame-gtk-3.70 depends on shared library: glib12.3 - found ===> lame-gtk-3.70 depends on shared library: gtk12.2 - found ===> Patching for lame-gtk-3.70 ===> Applying distribution patches for lame-gtk-3.70 ===> Applying FreeBSD patches for lame-gtk-3.70 ===> Configuring for lame-gtk-3.70 ===> Building for lame-gtk-3.70 /bin/sh -ec 'cc -M -DHAVEMPGLIB -DLAMEPARSE -DNDEBUG -D__NO_MATH_INLINES -pipe -DLAMESNDFILE -DHAVEGTK `/usr/X11R6/bin/gtk12-config --cflags` -DBRHIST mpglib/main.c | sed '\''s;mpglib/main.o;& mpglib/main.d;g'\'' > mpglib/main.d' [....] ===> Installing for lame-gtk-3.70 ===> lame-gtk-3.70 depends on shared library: glib12.3 - found ===> lame-gtk-3.70 depends on shared library: gtk12.2 - found gmake: *** No rule to make target `install'. Stop. *** Error code 2 Stop in /src/ports/audio/lame. *** Error code 1 Stop in /src/ports/audio/lame. *** Error code 1 Stop in /src/ports/audio/lame. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 0:20: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D08937B503 for ; Thu, 12 Oct 2000 00:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA68941; Thu, 12 Oct 2000 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 12 Oct 2000 00:20:02 -0700 (PDT) Message-Id: <200010120720.AAA68941@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Victor STANESCU Subject: Re: ports/21911: apache crashes when using the php4 dso Reply-To: Victor STANESCU Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21911; it has been noted by GNATS. From: Victor STANESCU To: freebsd-gnats-submit@FreeBSD.org, vstanescu@logicnet.ro Cc: Subject: Re: ports/21911: apache crashes when using the php4 dso Date: Thu, 12 Oct 2000 10:18:37 +0300 I cannot understand what happened in fact, but the problem seems to be related to the mysql server The server was not compiled from ports, but it was working fine (tested a lot with large databases). When i reinstalled the server from the ports, everything was fine. -- Victor STANESCU - network administrator LOGIC Telecom - Bucharest, ROMANIA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 0:40:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6538B37B503; Thu, 12 Oct 2000 00:40:38 -0700 (PDT) Received: (from reg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA75846; Thu, 12 Oct 2000 00:40:38 -0700 (PDT) (envelope-from reg@FreeBSD.org) Date: Thu, 12 Oct 2000 00:40:38 -0700 (PDT) From: Message-Id: <200010120740.AAA75846@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, reg@FreeBSD.org, freebsd-ports@FreeBSD.org, reg@FreeBSD.org Subject: Re: ports/21924: audio/lame with gtk broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: audio/lame with gtk broken State-Changed-From-To: open->closed State-Changed-By: reg State-Changed-When: Thu Oct 12 00:39:59 PDT 2000 State-Changed-Why: Fixed. Responsible-Changed-From-To: freebsd-ports->reg Responsible-Changed-By: reg Responsible-Changed-When: Thu Oct 12 00:39:59 PDT 2000 Responsible-Changed-Why: My breakage. http://www.freebsd.org/cgi/query-pr.cgi?pr=21924 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 2: 6:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from diamond.gpad.ac.ru (diamond.gpad.ac.ru [193.233.9.65]) by hub.freebsd.org (Postfix) with ESMTP id 0938D37B66C; Thu, 12 Oct 2000 02:06:16 -0700 (PDT) Received: from cavia.landau.ac.ru (cavia.landau.ac.ru [193.233.9.17]) by diamond.gpad.ac.ru (8.9.1/8.9.1) with ESMTP id NAA17957; Thu, 12 Oct 2000 13:06:01 +0400 (MSD) Received: (from dima@localhost) by cavia.landau.ac.ru (8.11.0/8.11.0) id e9C95Ju00544; Thu, 12 Oct 2000 13:05:19 +0400 (MSD) (envelope-from dima) Date: Thu, 12 Oct 2000 13:05:19 +0400 From: Dmitry Sivachenko To: jeh@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21787: Update port: net/mrtg Message-ID: <20001012130519.A294@netserv1.chg.ru> References: <200010120042.RAA21041@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200010120042.RAA21041@freefall.freebsd.org>; from jeh@FreeBSD.ORG on Wed, Oct 11, 2000 at 05:42:54PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 11, 2000 at 05:42:54PM -0700, jeh@FreeBSD.ORG wrote: > Synopsis: Update port: net/mrtg > > Responsible-Changed-From-To: freebsd-ports->jfitz@FreeBSD.org ^^^^^^^^^^^^^^^^^ Hmm... I don't think it's a good idea. jfitz@FreeBSD.org is a 'dead' maintainer. I saw no commits from him for more that a year. Please revert this back to freebsd-ports. May be someone else will find a time to update this port. Probably jfitz should be removed from all MAINTAINER variables. --dima > Responsible-Changed-By: jeh > Responsible-Changed-When: Wed Oct 11 17:42:01 PDT 2000 > Responsible-Changed-Why: > Over to MAINTAINER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 2:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C61B437B503 for ; Thu, 12 Oct 2000 02:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA08546; Thu, 12 Oct 2000 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CD8A237B502; Thu, 12 Oct 2000 02:09:12 -0700 (PDT) Message-Id: <20001012090912.CD8A237B502@hub.freebsd.org> Date: Thu, 12 Oct 2000 02:09:12 -0700 (PDT) From: wkho@staff.sina.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21927: Error installing openssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21927 >Category: ports >Synopsis: Error installing openssl >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 12 02:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wing >Release: 4.1 >Organization: Sina >Environment: FreeBSD tmp.sina.com.hk 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Mar 20 22:50:22 GMT 2000 root@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 >Description: I failto install lynx-ssl onto the system. Message asking me to include openssl library is a must. Therefore, I tried to install openssl, but fail as well. Below is the error message while installing the openssl. tmp# pwd /usr/ports/security/openssl tmp# ls -l total 6 -rw-r--r-- 1 root wheel 1904 Jan 29 2000 Makefile -rw-r--r-- 1 root wheel 800 Mar 21 2000 README.html drwxr-xr-x 2 root wheel 512 Sep 26 12:21 files drwxr-xr-x 2 root wheel 512 Sep 26 12:21 patches drwxr-xr-x 2 root wheel 512 Sep 26 12:21 pkg tmp# make ===> openssl-0.9.4 is forbidden: OpenSSL is already in the base system. Is any way to uninstall the openssl from the machine first ? >How-To-Repeat: >Fix: >Release-Note: >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 Oct 12 3: 1:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 017AA37B502 for ; Thu, 12 Oct 2000 03:01:27 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13jf9t-000POI-00; Thu, 12 Oct 2000 12:00:17 +0200 Date: Thu, 12 Oct 2000 12:00:17 +0200 From: Johann Visagie To: James Housley Cc: Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? Message-ID: <20001012120017.A97048@fling.sanbi.ac.za> References: <39E47200.7125F0BF@thehousleys.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E47200.7125F0BF@thehousleys.net>; from jim@thehousleys.net on Wed, Oct 11, 2000 at 09:58:24AM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org James Housley on 2000-10-11 (Wed) at 09:58:24 -0400: > > The porters handbook show how to do this. > > http://www.freebsd.org/porters-handbook/porting-autoplist.html > > However it could use some improvements. Specifically, I'd pipe the find command that adds the files to $PLIST through sort(1) first (cuts down the size of future diff files), and the output of the find that adds the directories to $PLIST through "sort -r" (pretty much ensures the directories are removed in a sane order when deinstalling). Hmm, and add something to remove man pages from $PLIST, I suppose. :-) Let me see what I can do... -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 3: 1:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sun262.hai.iec.co.il (sun262.hai.iec.co.il [138.134.2.62]) by hub.freebsd.org (Postfix) with ESMTP id 24A6037B502 for ; Thu, 12 Oct 2000 03:01:51 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by sun262.hai.iec.co.il (Postfix) with ESMTP id 1FADA7070 for ; Thu, 12 Oct 2000 12:01:41 +0200 (IST) Date: Thu, 12 Oct 2000 12:01:41 +0200 (IST) From: Roman Shterenzon X-Sender: roman@sun262.hai.iec.co.il To: freebsd-ports@freebsd.org Subject: ports/20837 Message-ID: Organization: Xpert UNIX Systems Ltd. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, It's almost two months in the PR, have anyone looked at it? Do I have to change something to get it committed? Anyone? --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 3:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37EC737B66C for ; Thu, 12 Oct 2000 03:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA29774; Thu, 12 Oct 2000 03:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B6FA637B502; Thu, 12 Oct 2000 03:06:25 -0700 (PDT) Message-Id: <20001012100625.B6FA637B502@hub.freebsd.org> Date: Thu, 12 Oct 2000 03:06:25 -0700 (PDT) From: nobu@tech.isac.co.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21928: update request ports/misc/fd. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21928 >Category: ports >Synopsis: update request ports/misc/fd. >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 Oct 12 03:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nobuhiro Yasutomi >Release: FreeBSD 4.1.1-RELEASE >Organization: ISAC, Inc. >Environment: FreeBSD libru.tech.isac.co.jp 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Sun Oct 8 21:05:56 JST 2000 nobu@libru.tech.isac.co.jp:/usr/src/sys/compile/LIBRU i386 >Description: original auther revice the code. Then followup ported version. >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/fd/Makefile fd/Makefile --- /usr/ports/misc/fd/Makefile Sat Jul 8 03:44:44 2000 +++ fd/Makefile Thu Oct 12 18:55:24 2000 @@ -6,9 +6,9 @@ # PORTNAME= fd -PORTVERSION= 1.03l +PORTVERSION= 1.03o CATEGORIES= misc -MASTER_SITES= ftp://ftp.ics.es.osaka-u.ac.jp/pub/FDclone/ \ +MASTER_SITES= http://hp.vector.co.jp/authors/VA012337/soft/fd/ \ ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= steve DISTNAME= FD-${PORTVERSION} diff -urN /usr/ports/misc/fd/files/md5 fd/files/md5 --- /usr/ports/misc/fd/files/md5 Fri Dec 24 01:20:05 1999 +++ fd/files/md5 Thu Oct 12 18:55:35 2000 @@ -1 +1 @@ -MD5 (FD-1.03l.tar.gz) = 290d37e37945a98829ddc59fc7fa3fed +MD5 (FD-1.03o.tar.gz) = 8913c225ff3fdeafd2d7c418c759a7ef diff -urN /usr/ports/misc/fd/patches/patch-aa fd/patches/patch-aa --- /usr/ports/misc/fd/patches/patch-aa Fri Sep 19 21:51:33 1997 +++ fd/patches/patch-aa Thu Oct 12 18:56:55 2000 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Tue Sep 16 00:00:15 1997 -+++ Makefile.in Fri Sep 19 21:42:41 1997 +--- Makefile.in.orig Thu Oct 12 18:55:53 2000 ++++ Makefile.in Thu Oct 12 18:56:31 2000 @@ -3,7 +3,7 @@ # TITLE = FD- -PREFIX = /usr/local +PREFIX ?= /usr/local + MANSEC = 1 TOPDIR = $(PREFIX) BINDIR = $(TOPDIR)/bin - MANDIR = $(TOPDIR)/man__LANGDIR__/man$(MANSEC) >Release-Note: >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 Oct 12 3:15:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from knight.cons.org (knight.cons.org [194.233.237.86]) by hub.freebsd.org (Postfix) with ESMTP id 4DE9D37B503; Thu, 12 Oct 2000 03:15:30 -0700 (PDT) Received: (from cracauer@localhost) by knight.cons.org (8.9.3/8.9.3) id MAA04330; Thu, 12 Oct 2000 12:15:27 +0200 (CEST) Date: Thu, 12 Oct 2000 12:15:27 +0200 From: Martin Cracauer To: ache@FreeBSD.org Cc: cracauer@counter.bik-gmbh.de, freebsd-ports@FreeBSD.org Subject: Re: ports/21910: The apache port has module-enabling CONFIGURE_ARGS - they don't work Message-ID: <20001012121526.B3885@cons.org> References: <200010111952.MAA11702@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010111952.MAA11702@freefall.freebsd.org>; from ache@FreeBSD.org on Wed, Oct 11, 2000 at 12:52:26PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In <200010111952.MAA11702@freefall.freebsd.org>, ache@FreeBSD.org wrote: > Synopsis: The apache port has module-enabling CONFIGURE_ARGS - they don't work > > State-Changed-From-To: open->closed > State-Changed-By: ache > State-Changed-When: Wed Oct 11 12:49:38 PDT 2000 > State-Changed-Why: > You should use 'LoadModule' instead. I plan to remove all static modules in > near time. Fine for me. However, you should remove the CONFIGURE_ARGUMENTS that don't affect configure and confuse the hell out of the user. Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer/ BSD User Group Hamburg, Germany http://www.bsdhh.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 3:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FCE837B503 for ; Thu, 12 Oct 2000 03:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA43273; Thu, 12 Oct 2000 03:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 12 Oct 2000 03:50:02 -0700 (PDT) Message-Id: <200010121050.DAA43273@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Takeshi Hiyama Subject: Re: ports/21640: Update: games/xeji Reply-To: Takeshi Hiyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21640; it has been noted by GNATS. From: Takeshi Hiyama To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/21640: Update: games/xeji Date: Thu, 12 Oct 2000 19:48:06 +0900 This is a multi-part message in MIME format. --------------20E26A5066AEC6ECD2238C10 Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit This is path for NEWLAYOUT --------------20E26A5066AEC6ECD2238C10 Content-Type: text/plain; charset=iso-2022-jp; name="xeji.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xeji.patch" diff -ruN xeji.orig/Makefile xeji/Makefile --- xeji.orig/Makefile Thu Oct 12 19:42:05 2000 +++ xeji/Makefile Thu Oct 12 19:43:03 2000 @@ -7,6 +7,7 @@ PORTNAME= xeji PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://yindy1.aist-nara.ac.jp/~tetu-s/sofken/software/ DISTNAME= ${PORTNAME}${PORTVERSION} diff -ruN xeji.orig/files/patch-ab xeji/files/patch-ab --- xeji.orig/files/patch-ab Thu Oct 12 19:42:05 2000 +++ xeji/files/patch-ab Thu Oct 12 19:44:02 2000 @@ -1,5 +1,5 @@ ---- Imakefile.orig Sun Oct 10 14:55:09 1999 -+++ Imakefile Sun Oct 10 14:55:29 1999 +--- Imakefile.orig Sun May 15 15:34:42 1994 ++++ Imakefile Thu Oct 12 19:43:34 2000 @@ -1,7 +1,7 @@ LOCAL_LIBRARIES = -lXpm -lXext -lX11 -lm SRCS = xeji.c @@ -9,4 +9,5 @@ +CC ?= gcc +CFLAGS += -O2 -DXPM CDEBUGFLAGS = - ComplexProgramTarget(xeji) +-ComplexProgramTarget(xeji) ++ComplexProgramTargetNoMan(xeji) --------------20E26A5066AEC6ECD2238C10-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 3:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8499737B66C for ; Thu, 12 Oct 2000 03:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA43284; Thu, 12 Oct 2000 03:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 12 Oct 2000 03:50:03 -0700 (PDT) Message-Id: <200010121050.DAA43284@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Takeshi Hiyama Subject: Re: ports/21638: Update: games/xlifegame Reply-To: Takeshi Hiyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21638; it has been noted by GNATS. From: Takeshi Hiyama To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/21638: Update: games/xlifegame Date: Thu, 12 Oct 2000 19:49:10 +0900 This is a multi-part message in MIME format. --------------5F15107D400D8774A9CF71B3 Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit This is patch for NEWLAYOUT --------------5F15107D400D8774A9CF71B3 Content-Type: text/plain; charset=iso-2022-jp; name="xlifegame.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xlifegame.patch" diff -ruN xlifegame.orig/Makefile xlifegame/Makefile --- xlifegame.orig/Makefile Thu Oct 12 19:38:45 2000 +++ xlifegame/Makefile Thu Oct 12 19:39:00 2000 @@ -6,7 +6,7 @@ # PORTNAME= xlifegame -PORTVERSION= 1.11 +PORTVERSION= 1.13 CATEGORIES= games MASTER_SITES= http://puma.cis.ibaraki.ac.jp/pub/X11/ \ http://nadja.cis.ibaraki.ac.jp/pub/X11/ diff -ruN xlifegame.orig/distinfo xlifegame/distinfo --- xlifegame.orig/distinfo Thu Oct 12 19:38:45 2000 +++ xlifegame/distinfo Thu Oct 12 19:39:25 2000 @@ -1 +1 @@ -MD5 (xlifegame-1.11.tar.gz) = e55c46a1e97c51ffd3f80da08b33c8b6 +MD5 (xlifegame-1.13.tar.gz) = 49093da812ae7bd7863c4bc8b6c35aef --------------5F15107D400D8774A9CF71B3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 4:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEDAE37B503 for ; Thu, 12 Oct 2000 04:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA53688; Thu, 12 Oct 2000 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nadja.cis.ibaraki.ac.jp (nadja.cis.ibaraki.ac.jp [157.80.87.69]) by hub.freebsd.org (Postfix) with ESMTP id 1E36B37B502 for ; Thu, 12 Oct 2000 04:07:46 -0700 (PDT) Received: (from th@localhost) by nadja.cis.ibaraki.ac.jp (8.11.1/8.11.1) id e9CB7iZ37530; Thu, 12 Oct 2000 20:07:44 +0900 (JST) (envelope-from th) Message-Id: <200010121107.e9CB7iZ37530@nadja.cis.ibaraki.ac.jp> Date: Thu, 12 Oct 2000 20:07:44 +0900 (JST) From: th@cis.ibaraki.ac.jp Reply-To: th@cis.ibaraki.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21930: Update: astro/seti_applet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21930 >Category: ports >Synopsis: Update: astro/seti_applet >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 Oct 12 04:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: HIYAMA Takeshi >Release: FreeBSD 4.0-STABLE i386 >Organization: Dept. of Comp. & Info. Sci.s, Ibaraki University >Environment: >Description: update seti_applet fromversion 0.3.0 to 0.3.2 >How-To-Repeat: >Fix: diff -urN seti_applet.orig/Makefile seti_applet/Makefile --- seti_applet.orig/Makefile Thu Oct 12 16:31:00 2000 +++ seti_applet/Makefile Thu Oct 12 16:35:40 2000 @@ -2,11 +2,11 @@ # Date Created: 1 Jul 2000 # Whom: HIYAMA Takeshi # -# $FreeBSD: ports/astro/seti_applet/Makefile,v 1.3 2000/10/05 07:10:20 reg Exp $ +# $FreeBSD: ports/astro/seti_applet/Makefile,v 1.2 2000/07/13 10:58:19 sobomax Exp $ # PORTNAME= seti_applet -PORTVERSION= 0.3.0 +PORTVERSION= 0.3.2 CATEGORIES= astro gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/} @@ -19,17 +19,18 @@ USE_X_PREFIX= yes USE_GNOME= yes USE_LIBTOOL= yes +CONFIGURE_ARGS= --datadir=${PREFIX}/share/gnome CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" pre-patch: @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' + s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' post-install: - @${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g" ${PKGMESSAGE} + ${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g" ${PKGMESSAGE} .include diff -urN seti_applet.orig/distinfo seti_applet/distinfo --- seti_applet.orig/distinfo Thu Oct 12 16:31:00 2000 +++ seti_applet/distinfo Thu Oct 12 16:25:11 2000 @@ -1 +1 @@ -MD5 (seti_applet-0.3.0.tar.gz) = 2802618a2b37a8b1540c16b0aa0dfbbf +MD5 (seti_applet-0.3.2.tar.gz) = 5811a1d41d596eb9ae17ae37568a3a7c diff -urN seti_applet.orig/files/patch-aa seti_applet/files/patch-aa --- seti_applet.orig/files/patch-aa Thu Oct 12 16:31:00 2000 +++ seti_applet/files/patch-aa Tue Oct 3 11:57:02 2000 @@ -1,24 +1,24 @@ ---- src/seti_applet.c.orig Wed Jul 19 07:18:22 2000 -+++ src/seti_applet.c Wed Jul 19 07:19:05 2000 -@@ -1352,7 +1352,7 @@ - g_free ( sa.setidir ); +--- src/seti_applet.c.orig Tue Oct 3 11:05:06 2000 ++++ src/seti_applet.c Tue Oct 3 11:06:23 2000 +@@ -1442,7 +1442,7 @@ + g_free ( sa.seti_dir ); } gnome_config_push_prefix ( path ); -- sa.setidir = gnome_config_get_string ( "setiapplet/setidir=/usr/local/seti" ); -+ sa.setidir = gnome_config_get_string ( "setiapplet/setidir=/var/db/setiathome" ); - sa.updateinterval = gnome_config_get_int ( "setiapplet/updateinterval=3" ); - sa.fileupdateinterval = gnome_config_get_int ( "setiapplet/fileupdateinterval=120" ); - sa.showcpu = gnome_config_get_int ( "setiapplet/showcpu=1" ); -@@ -1370,10 +1370,10 @@ - g_free ( sa.extraparams ); +- sa.seti_dir = gnome_config_get_string ( "setiapplet/setidir=/usr/local/seti" ); ++ sa.seti_dir = gnome_config_get_string ( "setiapplet/setidir=/var/db/setiathome" ); + sa.update_interval = gnome_config_get_int ( "setiapplet/updateinterval=3" ); + sa.file_update_interval = gnome_config_get_int ( "setiapplet/fileupdateinterval=120" ); + +@@ -1460,10 +1460,10 @@ + g_free ( sa.extra_params ); } - sa.extraparams = gnome_config_get_string ( "setiapplet/extraparams="); -- sa.separateexedir = gnome_config_get_int ( "setiapplet/separateexedir=0" ); -+ sa.separateexedir = gnome_config_get_int ( "setiapplet/separateexedir=1" ); - if ( sa.separateexedir == TRUE ) + sa.extra_params = gnome_config_get_string ( "setiapplet/extraparams="); +- sa.separate_exe_dir = gnome_config_get_int ( "setiapplet/separateexedir=0" ); ++ sa.separate_exe_dir = gnome_config_get_int ( "setiapplet/separateexedir=1" ); + if ( sa.separate_exe_dir == TRUE ) { -- sa.setiexedir = gnome_config_get_string ( "setiapplet/setiexedir" ); -+ sa.setiexedir = gnome_config_get_string ( "setiapplet/setiexedir=/usr/local/bin" ); +- sa.seti_exe_dir = gnome_config_get_string ( "setiapplet/setiexedir" ); ++ sa.seti_exe_dir = gnome_config_get_string ( "setiapplet/setiexedir=/usr/local/bin" ); } - sa.launchonstart = gnome_config_get_int ( "setiapplet/launchonstart=0" ); + sa.launch_on_start = gnome_config_get_int ( "setiapplet/launchonstart=0" ); gnome_config_pop_prefix(); diff -urN seti_applet.orig/files/patch-ad seti_applet/files/patch-ad --- seti_applet.orig/files/patch-ad Thu Jan 1 09:00:00 1970 +++ seti_applet/files/patch-ad Thu Oct 12 16:30:19 2000 @@ -0,0 +1,10 @@ +--- src/seti_control.c.orig Thu Oct 12 16:29:42 2000 ++++ src/seti_control.c Thu Oct 12 16:29:53 2000 +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + + #include + #include >Release-Note: >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 Oct 12 4:34:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 81FD337B503 for ; Thu, 12 Oct 2000 04:34:24 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13jgcj-0002tz-00; Thu, 12 Oct 2000 13:34:09 +0200 Date: Thu, 12 Oct 2000 13:34:08 +0200 From: Johann Visagie To: Carlos A M dos Santos Cc: ports@freebsd.org Subject: Re: Script to genarate PLIST? Message-ID: <20001012133408.A10314@fling.sanbi.ac.za> References: <39E47200.7125F0BF@thehousleys.net> <20001012120017.A97048@fling.sanbi.ac.za> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001012120017.A97048@fling.sanbi.ac.za>; from wjv@cityip.co.za on Thu, Oct 12, 2000 at 12:00:17PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --mojUlQ0s9EVzWg2t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I wrote on 2000-10-12 (Thu) at 12:00:17 +0200: > > Specifically, I'd pipe the find command that adds the files to $PLIST through > sort(1) first (cuts down the size of future diff files), and the output of > the find that adds the directories to $PLIST through "sort -r" (pretty much > ensures the directories are removed in a sane order when deinstalling). > > Hmm, and add something to remove man pages from $PLIST, I suppose. :-) Let > me see what I can do... Attached, a quick & dirty script to do the above. Pretty much copied from the Porter's Handbook except for the bit to remove the man pages. Caution: non-foolproof, no sanity checks, use at own risk, etc. -- Johann --mojUlQ0s9EVzWg2t Content-Type: application/x-sh Content-Disposition: attachment; filename="makeplist.sh" #!/bin/sh # # makeplist.sh # - Automated package list creation script for FreeBSD. # - Closely based on Chapter 17 of the FreeBSD Porter's Handbook. # - Must be executed from within the port's directory. # - Caution: This isn't foolproof, so take care. PATH=/sbin:/bin:/usr/bin ### Set some variables ### curdir=`pwd` # Assume we're in the port's dir portname=`basename $curdir` plist=`make -V PLIST`.new # Output file becomes ${PLIST}.new olddirs=/var/tmp/OLD-DIRS # Create a whitespace-separated list of the port's manpages manpages= for section in 1 2 3 4 5 6 7 8 9 L N; do manpages="$manpages `make -V MAN$section`" done # Build a string from the manpage list to be used in find(1) later findstring= if [ "X$manpages" != X"" ]; then for manpage in $manpages; do findstring=$findstring" -name ${manpage}.gz" done findstring=`echo $findstring | sed -e 's/\(.\) -name/\1 -o -name/g'` findstring='-a ! ( '$findstring' )' fi ### Clean up garbage from previous runs ### if [ -d /var/tmp/$portname ]; then echo "==> Removing existing /var/tmp/$portname" rm -rf /var/tmp/$portname fi if [ -f $olddirs ]; then echo "==> Removing existing $olddirs" rm -f $olddirs fi ### Create the tree under /var/tmp, and install to it ### echo "==> Creating tree in /var/tmp/$portname" mkdir /var/tmp/$portname mtree -U -f /etc/mtree/BSD.local.dist -d -e -p /var/tmp/$portname > /dev/null echo "==> Doing a make depends" make depends PREFIX=/var/tmp/$portname echo "==> Creating $olddirs" (cd /var/tmp/$portname && find * -type d) > $olddirs echo "==> Doing make install to /var/tmp/$portname" make install PREFIX=/var/tmp/$portname ### Create the new ${PLIST} echo "==> Creating `basename $plist`" (cd /var/tmp/$portname && find * \! -type d $findstring ) | sort > $plist (cd /var/tmp/$portname && find * -type d) | comm -13 $olddirs - | \ sed -e 's#^#@dirrm #' | sort -r >> $plist ### Clean up ### echo "==> Deinstalling and cleaning up" make deinstall if [ -d /var/tmp/$portname ]; then rm -rf /var/tmp/$portname fi rm -f $olddirs echo "==> Done: New package list is `basename $plist`" --mojUlQ0s9EVzWg2t-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 5:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6472937B66C; Thu, 12 Oct 2000 05:20:05 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA78281; Thu, 12 Oct 2000 05:20:05 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Thu, 12 Oct 2000 05:20:05 -0700 (PDT) From: Message-Id: <200010121220.FAA78281@freefall.freebsd.org> To: roman@xpert.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20837: new port: palm/palmpower - disassembler + other tools Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: palm/palmpower - disassembler + other tools State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Thu Oct 12 05:19:27 PDT 2000 State-Changed-Why: Committed, Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=20837 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 5:20:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80EB237B66E for ; Thu, 12 Oct 2000 05:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA78247; Thu, 12 Oct 2000 05:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3E2A637B502; Thu, 12 Oct 2000 05:18:24 -0700 (PDT) Message-Id: <20001012121824.3E2A637B502@hub.freebsd.org> Date: Thu, 12 Oct 2000 05:18:24 -0700 (PDT) From: mzaki@e-mail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21931: New port: fastDNAml: famous molecular biology tool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21931 >Category: ports >Synopsis: New port: fastDNAml: famous molecular biology tool >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 Oct 12 05:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Motomichi Matsuzaki >Release: current >Organization: >Environment: >Description: fastDNAml is a program for estimating maximum likelihood phylogenetic trees from nucleotide sequences. This is a famous tool for molecular biology . >How-To-Repeat: >Fix: # 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: # # biol/fastdnaml # biol/fastdnaml/Makefile # biol/fastdnaml/distinfo # biol/fastdnaml/pkg-comment # biol/fastdnaml/pkg-descr # biol/fastdnaml/pkg-plist # echo c - biol/fastdnaml mkdir -p biol/fastdnaml > /dev/null 2>&1 echo x - biol/fastdnaml/Makefile sed 's/^X//' >biol/fastdnaml/Makefile << 'END-of-biol/fastdnaml/Makefile' X# New ports collection makefile for: fastDNAml X# Date created: 12 Oct 2000 X# Whom: Motomichi Matsuzaki X# X# $FreeBSD$ X# X XPORTNAME= fastdnaml XPORTVERSION= 1.2.2 XCATEGORIES= biology XMASTER_SITES= http://geta.life.uiuc.edu:80/~gary/programs/fastDNAml/ XDISTNAME= fastDNAml_${PORTVERSION} X XMAINTAINER= mzaki@e-mail.ne.jp X Xdo-build: X @(cd ${WRKSRC}/source; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/source/fastDNAml ${PREFIX}/bin X ${MKDIR} ${PREFIX}/bin/${PORTNAME} X ${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/bin/${PORTNAME} X Xpost-install: X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} X ${INSTALL_MAN} ${WRKSRC}/docs/*.txt ${PREFIX}/share/doc/${PORTNAME} X.endif X X.include END-of-biol/fastdnaml/Makefile echo x - biol/fastdnaml/distinfo sed 's/^X//' >biol/fastdnaml/distinfo << 'END-of-biol/fastdnaml/distinfo' XMD5 (fastDNAml_1.2.2.tar.gz) = dd9c737e0f433879500391d0e229f763 END-of-biol/fastdnaml/distinfo echo x - biol/fastdnaml/pkg-comment sed 's/^X//' >biol/fastdnaml/pkg-comment << 'END-of-biol/fastdnaml/pkg-comment' XThe faster variant of DNAML, makes phylogenetic trees using maximum likelihood END-of-biol/fastdnaml/pkg-comment echo x - biol/fastdnaml/pkg-descr sed 's/^X//' >biol/fastdnaml/pkg-descr << 'END-of-biol/fastdnaml/pkg-descr' XfastDNAml is a program for estimating maximum likelihood phylogenetic trees Xfrom nucleotide sequences. X XWWW: http://geta.life.uiuc.edu/~gary/programs/fastDNAml.html X XfastDNAml is an attempt to solve the same problem as Joseph Felsenstein's XDNAML, but to do so faster and using less memory, so that larger trees and/or Xmore bootstrap replicates become tractable. Much of fastDNAml is merely a Xrecoding of the PHYLIP 3.3 DNAML program from PASCAL to C. X XFor Felsenstein's phylogenetic analysis softwares, including the latest Xversions of DNAML, visit the PHYLIP Home Page: X http://evolution.genetics.washington.edu/phylip.html X XWhen publishing work that based on results from fastDNAml please cite: X X Felsenstein, J. 1981. Evolutionary trees from DNA sequences: X A maximum likelihood approach. J. Mol. Evol. 17: 368-376. X X Olsen, G. J., Matsuda, H., Hagstrom, R., and Overbeek, R. 1994. X fastDNAml: A tool for construction of phylogenetic trees of DNA X sequences using maximum likelihood. Comput. Appl. Biosci. 10: 41-48. END-of-biol/fastdnaml/pkg-descr echo x - biol/fastdnaml/pkg-plist sed 's/^X//' >biol/fastdnaml/pkg-plist << 'END-of-biol/fastdnaml/pkg-plist' Xbin/fastDNAml Xbin/fastdnaml/ae2dnaml Xbin/fastdnaml/bootstrap Xbin/fastdnaml/categories Xbin/fastdnaml/categories_file Xbin/fastdnaml/checkpoint_summary Xbin/fastdnaml/clean_checkpoints Xbin/fastdnaml/clean_jumbles Xbin/fastdnaml/dnaml_progress Xbin/fastdnaml/fastDNAml_boot Xbin/fastdnaml/fastDNAml_loop Xbin/fastdnaml/frequencies Xbin/fastdnaml/global Xbin/fastdnaml/iterate_rates Xbin/fastdnaml/jumble Xbin/fastdnaml/min_info Xbin/fastdnaml/n_categories Xbin/fastdnaml/n_files Xbin/fastdnaml/out.PID Xbin/fastdnaml/outgroup Xbin/fastdnaml/printdata Xbin/fastdnaml/quickadd Xbin/fastdnaml/restart Xbin/fastdnaml/scores Xbin/fastdnaml/transition Xbin/fastdnaml/treefile Xbin/fastdnaml/treefile2prolog Xbin/fastdnaml/trees2NEXUS Xbin/fastdnaml/trees2prolog Xbin/fastdnaml/userlengths Xbin/fastdnaml/usertree Xbin/fastdnaml/usertrees Xbin/fastdnaml/weights Xbin/fastdnaml/weights_categories Xshare/doc/fastdnaml/fastDNAml_doc_1.2.txt Xshare/doc/fastdnaml/fastDNAml_scripts.txt X@dirrm bin/fastdnaml X@dirrm share/doc/fastdnaml END-of-biol/fastdnaml/pkg-plist exit >Release-Note: >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 Oct 12 5:31:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9789137B502; Thu, 12 Oct 2000 05:31:44 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA82577; Thu, 12 Oct 2000 05:31:44 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Thu, 12 Oct 2000 05:31:44 -0700 (PDT) From: Message-Id: <200010121231.FAA82577@freefall.freebsd.org> To: mzaki@e-mail.ne.jp, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21931: New port: fastDNAml: famous molecular biology tool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: fastDNAml: famous molecular biology tool State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Thu Oct 12 05:31:29 PDT 2000 State-Changed-Why: Committed, Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21931 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 6:27:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id B536337B502 for ; Thu, 12 Oct 2000 06:27:19 -0700 (PDT) Received: (from ache@localhost) by nagual.pp.ru (8.11.1/8.11.1) id e9CDR1R03790; Thu, 12 Oct 2000 17:27:01 +0400 (MSD) (envelope-from ache) Date: Thu, 12 Oct 2000 17:26:59 +0400 From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= To: Martin Cracauer Cc: cracauer@counter.bik-gmbh.de, freebsd-ports@FreeBSD.org Subject: Re: ports/21910: The apache port has module-enabling CONFIGURE_ARGS - they don't work Message-ID: <20001012172659.B3729@nagual.pp.ru> References: <200010111952.MAA11702@freefall.freebsd.org> <20001012121526.B3885@cons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001012121526.B3885@cons.org>; from cracauer@cons.org on Thu, Oct 12, 2000 at 12:15:27PM +0200 Organization: Biomechanoid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 12:15:27PM +0200, Martin Cracauer wrote: > In <200010111952.MAA11702@freefall.freebsd.org>, ache@FreeBSD.org wrote: > > Synopsis: The apache port has module-enabling CONFIGURE_ARGS - they don't work > > > > State-Changed-From-To: open->closed > > State-Changed-By: ache > > State-Changed-When: Wed Oct 11 12:49:38 PDT 2000 > > State-Changed-Why: > > You should use 'LoadModule' instead. I plan to remove all static modules in > > near time. > > Fine for me. However, you should remove the CONFIGURE_ARGUMENTS that > don't affect configure and confuse the hell out of the user. See recent apache13 commit -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 6:34:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9967237B502; Thu, 12 Oct 2000 06:34:42 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA05993; Thu, 12 Oct 2000 06:34:42 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Date: Thu, 12 Oct 2000 06:34:42 -0700 (PDT) From: Message-Id: <200010121334.GAA05993@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21923: New port: lang/gforth - 0.5.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: lang/gforth - 0.5.0 Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: lioux Responsible-Changed-When: Thu Oct 12 06:33:57 PDT 2000 Responsible-Changed-Why: iI'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21923 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 6:40: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ACB2137B66D for ; Thu, 12 Oct 2000 06:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA07824; Thu, 12 Oct 2000 06:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sun262.hai.iec.co.il (sun262.hai.iec.co.il [138.134.2.62]) by hub.freebsd.org (Postfix) with ESMTP id C34D837B66C for ; Thu, 12 Oct 2000 06:31:16 -0700 (PDT) Received: by sun262.hai.iec.co.il (Postfix, from userid 11138) id 2C5887070; Thu, 12 Oct 2000 15:31:11 +0200 (IST) Message-Id: <20001012133111.2C5887070@sun262.hai.iec.co.il> Date: Thu, 12 Oct 2000 15:31:11 +0200 (IST) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21933: NEW port: security/hping Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21933 >Category: ports >Synopsis: NEW PORT: security/hping >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 Oct 12 06:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-RELEASE >Organization: >Environment: >Description: From pkg-descr: hping2 is a network tool able to send custom ICMP/UDP/TCP packets and to display target replies like ping do with ICMP replies. hping2 handle fragmentation, arbitrary packet body and size and can be used in order to transfer files under supported protocols. Using hping2 you are able at least to perform the following jobs: - Test firewall rules - [spoofed] port scanning - Test net performance using different protocols, packet size, TOS (type of service) and fragmentation. - Path MTU discovery - Files transfering even between really fascist firewall rules. - Traceroute like under different protocols. - Firewalk like usage. - Remote OS fingerprint. - TCP/IP stack auditing. - A lot of others. WWW: http://www.kyuzz.org/antirez/hping/ >How-To-Repeat: >Fix: # 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: # # hping # hping/files # hping/files/patch-aa # hping/files/patch-ab # hping/files/patch-ac # hping/Makefile # hping/pkg-comment # hping/pkg-plist # hping/pkg-descr # hping/distinfo # echo c - hping mkdir -p hping > /dev/null 2>&1 echo c - hping/files mkdir -p hping/files > /dev/null 2>&1 echo x - hping/files/patch-aa sed 's/^X//' >hping/files/patch-aa << 'END-of-hping/files/patch-aa' X--- configure.orig Thu Jul 6 20:06:10 2000 X+++ configure Thu Oct 5 15:33:45 2000 X@@ -65,8 +65,8 @@ X ;; X *"--force-libpcap") X FORCE_LIBPCAP="-DFORCE_LIBPCAP" X- PCAP="PCAP=libpcap/libpcap.a" X- PCAP_INCLUDE="-I./libpcap" X+ PCAP="PCAP=-lpcap" X+ PCAP_INCLUDE="" X ;; X *"--dont-use-proc") X HAVE_PROC="" X@@ -92,7 +92,7 @@ X -e s/@FORCE_LIBPCAP@/"$FORCE_LIBPCAP"/g \ X -e s/@HAVE_PROC@/"$HAVE_PROC"/g \ X -e s^@PCAP@^"$PCAP"^g \ X- -e s^@PCAP_INCLUDE@^"$PCAP_INCLUDE$"^g \ X+ -e s^@PCAP_INCLUDE@^"$PCAP_INCLUDE"^g \ X -e s^@MANPATH@^"$INSTALL_MANPATH"^g \ X > Makefile X END-of-hping/files/patch-aa echo x - hping/files/patch-ab sed 's/^X//' >hping/files/patch-ab << 'END-of-hping/files/patch-ab' X--- Makefile.in.orig Thu Oct 5 15:22:25 2000 X+++ Makefile.in Thu Oct 5 15:25:28 2000 X@@ -6,8 +6,8 @@ X # $date: Sun Jul 25 17:56:15 MET DST 1999$ X # $rev: 3$ X X-CC= gcc X-CCOPT= -O2 -Wall @PCAP_INCLUDE@ X+CC?= gcc X+CCOPT= $(CFLAGS) -Wall @PCAP_INCLUDE@ X DEBUG= -g X #uncomment the following if you need libpcap based build under linux X #(not raccomanded) END-of-hping/files/patch-ab echo x - hping/files/patch-ac sed 's/^X//' >hping/files/patch-ac << 'END-of-hping/files/patch-ac' X--- getlhs.c.orig Thu Oct 5 15:26:31 2000 X+++ getlhs.c Thu Oct 5 15:26:26 2000 X@@ -73,6 +73,7 @@ X else if ( strstr(ifname, "eth") /* ? */ X || strstr(ifname, "ed") X || strstr(ifname, "ne") X+ || strstr(ifname, "xe") /* Xircom */ X || strstr(ifname, "xl") /* 3com */ X || strstr(ifname, "vx") /* 3com (older model) */ X || strstr(ifname, "ep") /* 3com 3c589 */ END-of-hping/files/patch-ac echo x - hping/Makefile sed 's/^X//' >hping/Makefile << 'END-of-hping/Makefile' X# New ports collection makefile for: hping X# Date Created: 5 Oct 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= hping XPORTVERSION= 2b54 XCATEGORIES= security net XMASTER_SITES= http://www.kyuzz.org/antirez/hping2-src/ XDISTNAME= hping2-beta54 X XMAINTAINER= roman@xpert.com X XGNU_CONFIGURE= yes XCONFIGURE_ARGS+= --force-libpcap X XMAN8= hping.8 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/hping2 ${PREFIX}/sbin/hping X ${INSTALL_MAN} ${WRKSRC}/docs/hping2.8 ${PREFIX}/man/man8/hping.8 X X.include END-of-hping/Makefile echo x - hping/pkg-comment sed 's/^X//' >hping/pkg-comment << 'END-of-hping/pkg-comment' XNetwork auditing tool END-of-hping/pkg-comment echo x - hping/pkg-plist sed 's/^X//' >hping/pkg-plist << 'END-of-hping/pkg-plist' Xsbin/hping END-of-hping/pkg-plist echo x - hping/pkg-descr sed 's/^X//' >hping/pkg-descr << 'END-of-hping/pkg-descr' Xhping2 is a network tool able to send custom ICMP/UDP/TCP Xpackets and to display target replies like ping do with XICMP replies. hping2 handle fragmentation, arbitrary packet Xbody and size and can be used in order to transfer files Xunder supported protocols. Using hping2 you are able at Xleast to perform the following jobs: X X - Test firewall rules X - [spoofed] port scanning X - Test net performance using different protocols, X packet size, TOS (type of service) and fragmentation. X - Path MTU discovery X - Files transfering even between really fascist firewall rules. X - Traceroute like under different protocols. X - Firewalk like usage. X - Remote OS fingerprint. X - TCP/IP stack auditing. X - A lot of others. X XWWW: http://www.kyuzz.org/antirez/hping/ X X-- Roman Shterenzon END-of-hping/pkg-descr echo x - hping/distinfo sed 's/^X//' >hping/distinfo << 'END-of-hping/distinfo' XMD5 (hping2-beta54.tar.gz) = 703f2102b948f214d59d89b41bca9923 END-of-hping/distinfo exit >Release-Note: >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 Oct 12 6:40:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id DB84C37B66C; Thu, 12 Oct 2000 06:40:23 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA07941; Thu, 12 Oct 2000 16:40:07 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9CDeAF05448; Thu, 12 Oct 2000 16:40:10 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E5BF39.1CDAFD41@FreeBSD.org> Date: Thu, 12 Oct 2000 16:40:09 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: asami@FreeBSD.org, ports@FreeBSD.org Subject: makesum target creates files/ directory Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi PW and all, I wonder if it's a desired behaviour or just artefact, but `makesum' bsd.port.mk target creates files/ directory if it doesn't exist, wich doesn't required anymore after files/md5->distinfo move. Therefore I propose to remove corresponding bits from the bsd.port.mk. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 7:16:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by hub.freebsd.org (Postfix) with ESMTP id C529837B66D; Thu, 12 Oct 2000 07:16:38 -0700 (PDT) Received: from waterblue.imgsrc.co.jp (localhost [127.0.0.1]) by waterblue.imgsrc.co.jp (8.11.0/8.11.0) with ESMTP id e9CEGZG04507; Thu, 12 Oct 2000 23:16:36 +0900 (JST) Date: Thu, 12 Oct 2000 23:16:35 +0900 Message-ID: <7mhf6i9mbg.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: dirk@FreeBSD.org Cc: Ports Team Subject: textproc/expat port User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Dirk, What do you think about updating textproc/expat to sourceforge hosted version ( http://expat.sourceforge.net )? Or should we make separated port (like as textproc/expat-devel)? # sourceforge version expat is required by p5-XML-Parser-2.30. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 7:24:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mx1.hcvlny.cv.net (mx1.hcvlny.cv.net [167.206.112.76]) by hub.freebsd.org (Postfix) with ESMTP id 1FC8037B674; Thu, 12 Oct 2000 07:24:09 -0700 (PDT) Received: from s1.optonline.net (s1.optonline.net [167.206.112.6]) by mx1.hcvlny.cv.net (8.10.2/8.10.2) with ESMTP id e9CEO2006882; Thu, 12 Oct 2000 10:24:03 -0400 (EDT) Received: from optonline.com (ool-18bd8597.dyn.optonline.net [24.189.133.151]) by s1.optonline.net (8.10.2/8.10.2) with ESMTP id e9CEO2x09653; Thu, 12 Oct 2000 10:24:02 -0400 (EDT) Message-ID: <39E5C982.841570B4@optonline.com> Date: Thu, 12 Oct 2000 10:24:02 -0400 From: trini0 X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 4.1-RELEASE i386) MIME-Version: 1.0 To: will@freebsd.org, ports@freebsd.org Subject: Re: FreeBSD Port: qt22-2.2.0 References: <39E33455.64BD8643@optonline.com> <20001010151414.Y1067@puck.firepipe.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote: > On Tue, Oct 10, 2000 at 11:23:01AM -0400, trini0 wrote: > > I've been trying to > > install ksetiwatch on my system running FreeBSD 4.1 R to accompany KDE > > 1.94 & seti@home. It cannot be setup because a dependant qt2.2.0 is not > > installed on the system. What is installed is 2.1 beta 2. I tried > > reinstalling qt2.2 from the ports and Im getting the same error. Is > > this supposed to be like this? > > Thanks > > Please reply to my email because Im not subscribed to the ports list, > > thanx.......:) > > You need to clean your Qt 2.x installations completely before installing > Qt 2.2.0. And IIRC I don't think KSetiWatch depends on QT 2.x but > rather QT 1.x (which you CAN install at the same time as QT 2.x). > > -- > Will Andrews - Physics Computer Network wench > The Universal Answer to All Problems - "It has something to do with physics." > -- Comic on door of Room 240, Physics Building, Purdue University Well, the new version does require qt2.2 to support KDE2 and the new seti@home client ver3. Here is what I did. I went to qt145, qt21 & qt22 ports directories and make deinstall. qt21 didn't know how, I guess it wasn't on the system, but the other two uninstalled and I ran make clean on both ports. I made install on qt2.2.0, and started the configure script that comes with ksetiwatch, and it still reports qt being ver 2.1 beta 2. Did I do what you said wrong? Where are the files kept for qt so that I might physically delete them. Thanks trini0 Please reply to my email as Im not subscribed to the -ports list....maybe I should:) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 8:31:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B397037B66C; Thu, 12 Oct 2000 08:31:37 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA49061; Thu, 12 Oct 2000 08:31:37 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Thu, 12 Oct 2000 08:31:37 -0700 (PDT) From: Message-Id: <200010121531.IAA49061@freefall.freebsd.org> To: nobu@tech.isac.co.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21928: update request ports/misc/fd. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update request ports/misc/fd. State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Oct 12 08:31:16 PDT 2000 State-Changed-Why: Commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21928 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 8:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F281737B503 for ; Thu, 12 Oct 2000 08:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA51887; Thu, 12 Oct 2000 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 12 Oct 2000 08:40:02 -0700 (PDT) Message-Id: <200010121540.IAA51887@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Johann Visagie Subject: Re: ports/21345: ports/biology/molden has a checksum error Reply-To: Johann Visagie Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21345; it has been noted by GNATS. From: Johann Visagie To: ats@first.gmd.de Cc: freebsd-gnats-submit@FreeBSD.org, rmiya@cc.hirosaki-u.ac.jp Subject: Re: ports/21345: ports/biology/molden has a checksum error Date: Thu, 12 Oct 2000 17:31:10 +0200 This seems to fix it: -- Johann diff -ruN molden.bak/distinfo molden/distinfo --- molden.bak/distinfo Wed Jun 7 18:59:45 2000 +++ molden/distinfo Thu Oct 12 17:06:27 2000 @@ -1,2 +1,2 @@ -MD5 (molden3.6.tar.Z) = 637c1359c5dbdaeea688084d2bf0f6d0 -MD5 (molden3.6-freebsd) = c27c7e0b7e4ca0dca533ad1c1455f9cb +MD5 (molden3.6.tar.Z) = aa5250dabd9b94bb9f9d7e19b6f3d16b +MD5 (molden3.6-freebsd) = 6c0b10b7ad5f64534c9f0d2410f0c4c2 diff -ruN molden.bak/pkg-plist molden/pkg-plist --- molden.bak/pkg-plist Wed Jun 7 18:59:47 2000 +++ molden/pkg-plist Thu Oct 12 17:14:25 2000 @@ -10,6 +10,7 @@ share/molden/test/complex2.out share/molden/test/esp.test share/molden/test/esp.txt +share/molden/test/esp.xyz share/molden/test/fragment share/molden/test/gamess_uk.freq share/molden/test/gamess_uk.input To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 8:47:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA4C737B503; Thu, 12 Oct 2000 08:47:38 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA54603; Thu, 12 Oct 2000 08:47:38 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Thu, 12 Oct 2000 08:47:38 -0700 (PDT) From: Message-Id: <200010121547.IAA54603@freefall.freebsd.org> To: th@cis.ibaraki.ac.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21930: Update: astro/seti_applet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: astro/seti_applet State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Oct 12 08:47:22 PDT 2000 State-Changed-Why: Commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21930 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1C1E37B66C for ; Thu, 12 Oct 2000 09:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA74566; Thu, 12 Oct 2000 09:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 1FEC237B502 for ; Thu, 12 Oct 2000 09:30:56 -0700 (PDT) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13jlFv-0006Ig-00; Thu, 12 Oct 2000 18:30:55 +0200 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e9CFfWr04309; Thu, 12 Oct 2000 17:41:32 +0200 (CEST) (envelope-from naddy) Message-Id: <200010121541.e9CFfWr04309@kemoauc.mips.inka.de> Date: Thu, 12 Oct 2000 17:41:32 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21936: makesum target creates "files" directory Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21936 >Category: ports >Synopsis: makesum target creates "files" directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 12 09:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: >Description: The "makesum" target in bsd.port.mk still creates ${FILESDIR} ("files") although that directory isn't used for the checksum file anymore now that ${MD5_FILE} has moved from "files/md5" to "distinfo". >How-To-Repeat: >Fix: --- /usr/ports/Mk/bsd.port.mk Mon Oct 9 00:34:36 2000 +++ bsd.port.mk Thu Oct 12 17:37:37 2000 @@ -2351,7 +2351,6 @@ .if !target(makesum) makesum: @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} fetch NO_CHECKSUM=yes - @${MKDIR} ${FILESDIR} @if [ -f ${MD5_FILE} ]; then ${RM} -f ${MD5_FILE}; fi @(cd ${DISTDIR}; \ for file in ${_CKSUMFILES}; do \ >Release-Note: >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 Oct 12 9:45:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E513A37B66C; Thu, 12 Oct 2000 09:45:31 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76544; Thu, 12 Oct 2000 09:45:31 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Thu, 12 Oct 2000 09:45:31 -0700 (PDT) From: Message-Id: <200010121645.JAA76544@freefall.freebsd.org> To: khera@kciLink.com, jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21912: seahorse port deletes README.html file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: seahorse port deletes README.html file State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Thu Oct 12 09:43:04 PDT 2000 State-Changed-Why: README.html's are deleted due to someone accidentally adding them when their respective ports were added to the tree, then cvs rm'ing them. In these cases, they are treated like any other file in the ports-tree that has been deleted. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Oct 12 09:43:04 PDT 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21912 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:46: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00A8A37B502; Thu, 12 Oct 2000 09:46:02 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76828; Thu, 12 Oct 2000 09:46:02 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Thu, 12 Oct 2000 09:46:02 -0700 (PDT) From: Message-Id: <200010121646.JAA76828@freefall.freebsd.org> To: khera@kciLink.com, jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21913: sysutils/obliterate deletes README.html file on cvsup Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysutils/obliterate deletes README.html file on cvsup State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Thu Oct 12 09:45:40 PDT 2000 State-Changed-Why: README.html's are deleted due to someone accidentally adding them when their respective ports were added to the tree, then cvs rm'ing them. In these cases, they are treated like any other file in the ports-tree that has been deleted. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Oct 12 09:45:40 PDT 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=21913 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:48:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBC0E37B502; Thu, 12 Oct 2000 09:48:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA77710; Thu, 12 Oct 2000 09:48:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:48:13 -0700 (PDT) From: Message-Id: <200010121648.JAA77710@freefall.freebsd.org> To: manyperl@SDF.lonestar.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21140: Many perl port. Hard to find pearls. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Many perl port. Hard to find pearls. State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 09:46:20 PDT 2000 State-Changed-Why: There will never be a /usr/ports/perl5 -- perl ports are put in the ports tree in their appropriate locations (mail, deskutils, etc..) http://www.freebsd.org/cgi/query-pr.cgi?pr=21140 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:49:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17DF837B502; Thu, 12 Oct 2000 09:49:50 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA78368; Thu, 12 Oct 2000 09:49:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:49:50 -0700 (PDT) From: Message-Id: <200010121649.JAA78368@freefall.freebsd.org> To: marka@drugs.dv.isc.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21465: nmh-1.0.4: multiple simultaneous "inc"s step on each other Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: nmh-1.0.4: multiple simultaneous "inc"s step on each other State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 09:49:06 PDT 2000 State-Changed-Why: This is an nmh issue, rather than a problem with the FreeBSD port. Please contact the authors at nmh-workers@mhost.com for a resolution. http://www.freebsd.org/cgi/query-pr.cgi?pr=21465 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:50: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [205.252.34.9]) by hub.freebsd.org (Postfix) with ESMTP id 752D437B502; Thu, 12 Oct 2000 09:50:00 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [205.252.34.3]) by yertle.kciLink.com (Postfix) with ESMTP id F3A6B2E44C; Thu, 12 Oct 2000 12:49:59 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id e9CGo3C90202; Thu, 12 Oct 2000 12:50:03 -0400 (EDT) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14821.60347.155689.349812@onceler.kciLink.com> Date: Thu, 12 Oct 2000 12:50:03 -0400 (EDT) To: Cc: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21913: sysutils/obliterate deletes README.html file on cvsup In-Reply-To: <200010121646.JAA76828@freefall.freebsd.org> References: <200010121646.JAA76828@freefall.freebsd.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "j" == jedgar writes: j> Synopsis: sysutils/obliterate deletes README.html file on cvsup j> State-Changed-From-To: open->closed j> State-Changed-By: jedgar j> State-Changed-When: Thu Oct 12 09:45:40 PDT 2000 j> State-Changed-Why: j> README.html's are deleted due to someone accidentally adding them when j> their respective ports were added to the tree, then cvs rm'ing them. j> In these cases, they are treated like any other file in the ports-tree j> that has been deleted. Yes, but is the CVS tree cleaned up so that it doesn't happen the next time I cvsup? Other ports had this problem in the past and it was cleared up in the CVS tree. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:50:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD54437B503; Thu, 12 Oct 2000 09:50:20 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA78622; Thu, 12 Oct 2000 09:50:20 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:50:20 -0700 (PDT) From: Message-Id: <200010121650.JAA78622@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21466: port xpaint-2.5.7 won't make install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port xpaint-2.5.7 won't make install Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 09:50:07 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21466 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:51:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 44C4837B66E; Thu, 12 Oct 2000 09:51:30 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA79090; Thu, 12 Oct 2000 09:51:30 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:51:30 -0700 (PDT) From: Message-Id: <200010121651.JAA79090@freefall.freebsd.org> To: vstanescu@logicnet.ro, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21911: apache crashes when using the php4 dso Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: apache crashes when using the php4 dso State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 09:50:51 PDT 2000 State-Changed-Why: Submitter reports that the problem went away when the non-port mysql server was replaced with one from ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=21911 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:52:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A58E237B503; Thu, 12 Oct 2000 09:52:55 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA79663; Thu, 12 Oct 2000 09:52:55 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:52:55 -0700 (PDT) From: Message-Id: <200010121652.JAA79663@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/21927: Error installing openssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Error installing openssl Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 09:52:12 PDT 2000 Responsible-Changed-Why: Over to openssl maintainer, though my guess is that the submitter does not have an up-to-date ports tree and/or the crypto package installed on their system. http://www.freebsd.org/cgi/query-pr.cgi?pr=21927 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:54: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 333E637B671; Thu, 12 Oct 2000 09:53:56 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA80078; Thu, 12 Oct 2000 09:53:56 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:53:56 -0700 (PDT) From: Message-Id: <200010121653.JAA80078@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, peter@FreeBSD.org Subject: Re: kern/9163: [patch] squid does not join a multicast group without primary interface Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] squid does not join a multicast group without primary interface Responsible-Changed-From-To: freebsd-ports->peter Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 09:53:42 PDT 2000 Responsible-Changed-Why: Over to squid maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=9163 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:54:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1897F37B66D; Thu, 12 Oct 2000 09:54:46 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA80443; Thu, 12 Oct 2000 09:54:46 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:54:46 -0700 (PDT) From: Message-Id: <200010121654.JAA80443@freefall.freebsd.org> To: osa@FreeBSD.org.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20668: new port: databases/db3 (Berkeley DB rev.3) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: databases/db3 (Berkeley DB rev.3) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 09:54:29 PDT 2000 State-Changed-Why: We already have a databases/db3 port. Thanks anyway! http://www.freebsd.org/cgi/query-pr.cgi?pr=20668 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:54:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 9C04B37B67E; Thu, 12 Oct 2000 09:54:48 -0700 (PDT) Received: by peitho.fxp.org (Postfix, from userid 1501) id 558D11360E; Thu, 12 Oct 2000 12:54:48 -0400 (EDT) Date: Thu, 12 Oct 2000 12:54:48 -0400 From: Chris Faulhaber To: Vivek Khera Cc: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21913: sysutils/obliterate deletes README.html file on cvsup Message-ID: <20001012125447.C31321@peitho.fxp.org> Mail-Followup-To: Chris Faulhaber , Vivek Khera , jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org References: <200010121646.JAA76828@freefall.freebsd.org> <14821.60347.155689.349812@onceler.kciLink.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14821.60347.155689.349812@onceler.kciLink.com>; from khera@kciLink.com on Thu, Oct 12, 2000 at 12:50:03PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 12:50:03PM -0400, Vivek Khera wrote: > >>>>> "j" == jedgar writes: > > j> Synopsis: sysutils/obliterate deletes README.html file on cvsup > j> State-Changed-From-To: open->closed > j> State-Changed-By: jedgar > j> State-Changed-When: Thu Oct 12 09:45:40 PDT 2000 > j> State-Changed-Why: > j> README.html's are deleted due to someone accidentally adding them when > j> their respective ports were added to the tree, then cvs rm'ing them. > j> In these cases, they are treated like any other file in the ports-tree > j> that has been deleted. > > Yes, but is the CVS tree cleaned up so that it doesn't happen the next > time I cvsup? Other ports had this problem in the past and it was > cleared up in the CVS tree. > You will have to talk to the CVS meisters about their cleaning schedule for an exact answer. -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:55:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D66837B503; Thu, 12 Oct 2000 09:55:20 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA80712; Thu, 12 Oct 2000 09:55:20 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:55:20 -0700 (PDT) From: Message-Id: <200010121655.JAA80712@freefall.freebsd.org> To: osa@FreeBSD.org.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20759: new port: databases/db3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: databases/db3 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 09:55:09 PDT 2000 State-Changed-Why: We already have a databases/db3 port. Thanks anyway! http://www.freebsd.org/cgi/query-pr.cgi?pr=20759 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:56: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8B8B37B672; Thu, 12 Oct 2000 09:55:57 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA81064; Thu, 12 Oct 2000 09:55:57 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:55:57 -0700 (PDT) From: Message-Id: <200010121655.JAA81064@freefall.freebsd.org> To: osa@FreeBSD.org.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20762: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 09:55:33 PDT 2000 State-Changed-Why: Yet another databases/db3 submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=20762 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 9:58:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21EE137B502; Thu, 12 Oct 2000 09:58:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA82078; Thu, 12 Oct 2000 09:58:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 09:58:35 -0700 (PDT) From: Message-Id: <200010121658.JAA82078@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: ports/21936: makesum target creates "files" directory Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: makesum target creates "files" directory Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 09:58:15 PDT 2000 Responsible-Changed-Why: Ports Wraith takes care of bsd.port.mk http://www.freebsd.org/cgi/query-pr.cgi?pr=21936 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10: 3:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0B2E37B503; Thu, 12 Oct 2000 10:03:09 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA84195; Thu, 12 Oct 2000 10:03:09 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:03:09 -0700 (PDT) From: Message-Id: <200010121703.KAA84195@freefall.freebsd.org> To: O.Hodson@cs.ucl.ac.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21322: ports/mbone/rat update to support newpcm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/mbone/rat update to support newpcm State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Thu Oct 12 10:02:28 PDT 2000 State-Changed-Why: Please supply an update to the port using diff(1) rather than a complete new port, as described in the Handbook, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21322 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10: 4:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4199937B502; Thu, 12 Oct 2000 10:04:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA85054; Thu, 12 Oct 2000 10:04:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:04:35 -0700 (PDT) From: Message-Id: <200010121704.KAA85054@freefall.freebsd.org> To: O.Hodson@cs.ucl.ac.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21330: Update port: mbone/rat for newpcm mixer and duplex probing Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mbone/rat for newpcm mixer and duplex probing State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Thu Oct 12 10:03:35 PDT 2000 State-Changed-Why: Again, please supply an update to the port using diff(1). This also appears to be a duplicate of ports/21322, please confirm which one is the active one. http://www.freebsd.org/cgi/query-pr.cgi?pr=21330 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10: 7:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FA3237B502; Thu, 12 Oct 2000 10:07:28 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA88125; Thu, 12 Oct 2000 10:07:28 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:07:28 -0700 (PDT) From: Message-Id: <200010121707.KAA88125@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, bmah@FreeBSD.org Subject: Re: ports/21437: port update to correct mail/exmh2 support of security/pgp5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update to correct mail/exmh2 support of security/pgp5 Responsible-Changed-From-To: freebsd-ports->bmah Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:07:15 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21437 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:11: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D39BA37B502; Thu, 12 Oct 2000 10:11:05 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA89442; Thu, 12 Oct 2000 10:11:05 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:11:05 -0700 (PDT) From: Message-Id: <200010121711.KAA89442@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: misc/21486: fetchmail KPOP does not work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fetchmail KPOP does not work Responsible-Changed-From-To: freebsd-ports->freebsd-bugs Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:10:27 PDT 2000 Responsible-Changed-Why: Not a ports issue. See the audit-trail for a fix, requiring a one line addition to /etc/services http://www.freebsd.org/cgi/query-pr.cgi?pr=21486 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC25B37B502; Thu, 12 Oct 2000 10:20:01 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA92467; Thu, 12 Oct 2000 10:20:01 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:20:01 -0700 (PDT) From: Message-Id: <200010121720.KAA92467@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, marcel@FreeBSD.org Subject: Re: ports/21554: linux_base-6.1 incorrectly enables NIS by default Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: linux_base-6.1 incorrectly enables NIS by default Responsible-Changed-From-To: freebsd-ports->marcel Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:19:53 PDT 2000 Responsible-Changed-Why: Over to maintaine http://www.freebsd.org/cgi/query-pr.cgi?pr=21554 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:21:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7026337B503; Thu, 12 Oct 2000 10:21:46 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA93180; Thu, 12 Oct 2000 10:21:46 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:21:46 -0700 (PDT) From: Message-Id: <200010121721.KAA93180@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jmz@FreeBSD.org Subject: Re: ports/21718: XFree86-4 (4.0.1) server does not start for Mach64 based video adapter Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XFree86-4 (4.0.1) server does not start for Mach64 based video adapter Responsible-Changed-From-To: freebsd-ports->jmz Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:21:35 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21718 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:22:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19D8537B502; Thu, 12 Oct 2000 10:22:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA93380; Thu, 12 Oct 2000 10:22:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:22:13 -0700 (PDT) From: Message-Id: <200010121722.KAA93380@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jdp@FreeBSD.org Subject: Re: ports/21727: port pm3-base-1.1.5 cannot find source code files Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port pm3-base-1.1.5 cannot find source code files Responsible-Changed-From-To: freebsd-ports->jdp Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:22:05 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21727 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:22:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B50837B66D; Thu, 12 Oct 2000 10:22:54 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA93703; Thu, 12 Oct 2000 10:22:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:22:54 -0700 (PDT) From: Message-Id: <200010121722.KAA93703@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, peter@FreeBSD.org Subject: Re: ports/21756: errors in Squid-2.3.4's configure prevent ipf configuration Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: errors in Squid-2.3.4's configure prevent ipf configuration Responsible-Changed-From-To: freebsd-ports->peter Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:22:43 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21756 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:23:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B59F137B502; Thu, 12 Oct 2000 10:23:39 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA94052; Thu, 12 Oct 2000 10:23:39 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:23:39 -0700 (PDT) From: Message-Id: <200010121723.KAA94052@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, peter@FreeBSD.org Subject: Re: ports/21761: Re: errors in Squid-2.3.4's configure prevent ipf configuration Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: errors in Squid-2.3.4's configure prevent ipf configuration Responsible-Changed-From-To: freebsd-ports->peter Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:23:03 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21761 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:26:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B1DF37B502; Thu, 12 Oct 2000 10:26:42 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA95281; Thu, 12 Oct 2000 10:26:42 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:26:42 -0700 (PDT) From: Message-Id: <200010121726.KAA95281@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, andreas@FreeBSD.org Subject: Re: ports/21784: further improving the PostgreSQL port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: further improving the PostgreSQL port Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:24:17 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21784 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:27:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 110BC37B503; Thu, 12 Oct 2000 10:27:27 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA95596; Thu, 12 Oct 2000 10:27:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:27:27 -0700 (PDT) From: Message-Id: <200010121727.KAA95596@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/21835: ports/security/pgp problems with new format Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/security/pgp problems with new format Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 10:27:19 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21835 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:33: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A982037B503; Thu, 12 Oct 2000 10:33:06 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA97561; Thu, 12 Oct 2000 10:33:06 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:33:06 -0700 (PDT) From: Message-Id: <200010121733.KAA97561@freefall.freebsd.org> To: patseal@hyperhost.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21858: www ports interface bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: www ports interface bug State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Thu Oct 12 10:29:09 PDT 2000 State-Changed-Why: I've just checked http://www.freebsd.org/ports/misc.html and biblereader is there. Almost certainly due to a little lag between the ports tree and the www interface. http://www.freebsd.org/cgi/query-pr.cgi?pr=21858 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:33:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp.prokk.net (smtp.prokk.net [194.42.198.25]) by hub.freebsd.org (Postfix) with ESMTP id 6018137B502; Thu, 12 Oct 2000 10:33:02 -0700 (PDT) Received: from green (user2.prokk.net [194.42.198.102]) by smtp.prokk.net (8.11.1/8.11.1) with SMTP id e9CHWm234672; Thu, 12 Oct 2000 20:32:51 +0300 (EEST) Message-ID: <000801c03472$992aa9c0$66c62ac2@green> From: ".. green .." To: Cc: Subject: FreeBSD Port: mod_php-4.0.2 Date: Thu, 12 Oct 2000 20:33:53 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi ! i need mod_php-4.0.3 ! plz can you write me where i can download it ? how long i must wait ? thanx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:42:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bells.cs.ucl.ac.uk (bells.cs.ucl.ac.uk [128.16.5.31]) by hub.freebsd.org (Postfix) with SMTP id A44F737B502; Thu, 12 Oct 2000 10:42:48 -0700 (PDT) Received: from sonic.cs.ucl.ac.uk by bells.cs.ucl.ac.uk with local SMTP id ; Thu, 12 Oct 2000 18:42:14 +0100 From: Orion Hodson X-Organisation: University College London, CS Dept. X-Phone: +44 (0)20 7679 3704 To: ade Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21322: ports/mbone/rat update to support newpcm In-reply-to: Your message of "Thu, 12 Oct 2000 10:03:09 PDT." <200010121703.KAA84195@freefall.freebsd.org> Date: Thu, 12 Oct 2000 18:42:14 +0100 Message-ID: <9967.971372534@cs.ucl.ac.uk> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org <200010121703.KAA84195@freefall.freebsd.org>ade writes: > Synopsis: ports/mbone/rat update to support newpcm > > State-Changed-From-To: open->feedback > State-Changed-By: ade > State-Changed-When: Thu Oct 12 10:02:28 PDT 2000 > State-Changed-Why: > Please supply an update to the port using diff(1) rather than a > complete new port, as described in the Handbook, thanks! pr21322 and pr21330 can be deleted. They are superseded by pr21333. Apologies for not diffing and for the multiple submissions. I didn't get acks for 21322 or 21330, which I think comes from my failure to read the send-pr editing instructions properly. If I'd realized they were in the system I would have said to zap them sooner. I appreciate you are busy and have more important things to do. - o. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:43:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 071B637B503; Thu, 12 Oct 2000 10:43:43 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA01240; Thu, 12 Oct 2000 10:43:43 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:43:43 -0700 (PDT) From: Message-Id: <200010121743.KAA01240@freefall.freebsd.org> To: mi@aldan.algebra.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14991: new port: devel/tcl-trf - Tcl Data transformations (Tcl-Trf) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: devel/tcl-trf - Tcl Data transformations (Tcl-Trf) State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 10:43:29 PDT 2000 State-Changed-Why: Timeout (2 months) in feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=14991 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:45:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C4E2E37B503; Thu, 12 Oct 2000 10:45:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA01776; Thu, 12 Oct 2000 10:45:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:45:13 -0700 (PDT) From: Message-Id: <200010121745.KAA01776@freefall.freebsd.org> To: mi@aldan.algebra.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17693: new port: www/linux-djvuplugin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: www/linux-djvuplugin State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 10:44:25 PDT 2000 State-Changed-Why: Timeout (2+ months) in analyzed http://www.freebsd.org/cgi/query-pr.cgi?pr=17693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:46:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2000637B502; Thu, 12 Oct 2000 10:46:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA02187; Thu, 12 Oct 2000 10:46:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:46:11 -0700 (PDT) From: Message-Id: <200010121746.KAA02187@freefall.freebsd.org> To: sam@inf.enst.fr, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18652: New port: devel/libnspr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: devel/libnspr State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 10:45:59 PDT 2000 State-Changed-Why: Timeout (2 months) in feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=18652 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:48:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8A5437B503; Thu, 12 Oct 2000 10:48:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA03236; Thu, 12 Oct 2000 10:48:38 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:48:38 -0700 (PDT) From: Message-Id: <200010121748.KAA03236@freefall.freebsd.org> To: O.Hodson@cs.ucl.ac.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21322: ports/mbone/rat update to support newpcm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/mbone/rat update to support newpcm State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 10:48:17 PDT 2000 State-Changed-Why: Superceded by ports/21333 http://www.freebsd.org/cgi/query-pr.cgi?pr=21322 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:49:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DB7C37B503; Thu, 12 Oct 2000 10:49:10 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA03475; Thu, 12 Oct 2000 10:49:10 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 10:49:10 -0700 (PDT) From: Message-Id: <200010121749.KAA03475@freefall.freebsd.org> To: O.Hodson@cs.ucl.ac.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21330: Update port: mbone/rat for newpcm mixer and duplex probing Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mbone/rat for newpcm mixer and duplex probing State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 10:48:45 PDT 2000 State-Changed-Why: Superceded by ports/21333 http://www.freebsd.org/cgi/query-pr.cgi?pr=21330 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:49:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id C952137B66C; Thu, 12 Oct 2000 10:49:43 -0700 (PDT) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e9CHmtQ85473; Thu, 12 Oct 2000 13:48:55 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39E5F986.4D619F8A@thehousleys.net> Date: Thu, 12 Oct 2000 13:48:54 -0400 From: James Housley X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ".. green .." Cc: dirk@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: mod_php-4.0.2 References: <000801c03472$992aa9c0$66c62ac2@green> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ".. green .." wrote: > > hi ! > i need mod_php-4.0.3 ! > plz can you write me where i can download it ? > how long i must wait ? > I was committed about 7 hours ago (Thu Oct 12 9:48 UTC) Jim -- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- The wise man built his network upon Un*x. The foolish man built his network upon Windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 10:53:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from proxy1.it.stsj.seagate.com (gw1.seagate.com [204.160.183.12]) by hub.freebsd.org (Postfix) with ESMTP id A7DA937B66C; Thu, 12 Oct 2000 10:53:05 -0700 (PDT) Received: (from smap) by proxy1.it.stsj.seagate.com id RAA21441; Wed, 11 Oct 2000 17:48:56 GMT From: Gunnar.H.Reichert@seagate.com Received: from unknown(192.168.109.16) by proxy1.it.stsj.seagate.com via smap (V5.0) id xma020642; Wed, 11 Oct 00 17:47:55 GMT Received: from sv-gw1.stsv.seagate.com (sv-gw1.stsv.seagate.com [134.204.14.95]) by auth0.it.stsj.seagate.com with ESMTP id RAA24418; Wed, 11 Oct 2000 17:47:54 GMT Subject: Online Ports Listing To: www@freebsd.org Cc: ports@freebsd.org Date: Wed, 11 Oct 2000 10:47:52 -0700 Message-ID: X-MIMETrack: Serialize by Router on SV-GW1/Seagate Internet(Release 5.0.2a (Intl)|23 November 1999) at 10/11/2000 10:47:55 AM MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Whenever I click on "Sources" for a particular port I get a page saying "Sorry, did not find the sources for ports/foo/bar" This is true for all ports. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 11:32:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [205.252.34.9]) by hub.freebsd.org (Postfix) with ESMTP id 3DEAA37B682; Thu, 12 Oct 2000 11:32:24 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [205.252.34.3]) by yertle.kciLink.com (Postfix) with ESMTP id 502942E44B; Thu, 12 Oct 2000 14:32:20 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id e9CIWKT66689; Thu, 12 Oct 2000 14:32:20 -0400 (EDT) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14822.944.440041.256906@onceler.kciLink.com> Date: Thu, 12 Oct 2000 14:32:16 -0400 (EDT) To: "Akinori MUSHA" Cc: freebsd-ports@FreeBSD.org, ak@freenet.co.uk, freebsd-emulation@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel In-Reply-To: <86itr5dzyu.wl@daemon.local.idaemons.org> References: <200009160902.CAA78123@freefall.freebsd.org> <14814.12057.18444.238865@onceler.kciLink.com> <86itr5dzyu.wl@daemon.local.idaemons.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "AM" == Akinori MUSHA writes: AM> I thought you meant vmware2 since someone assigned your PR to me to AM> handle. I'm sorry I cannot be of much help, but please contact AM> ak@freenet.co.uk, the vmware 1.x port maintainer, who must have an AM> environment to test your patch. Also you may want to consult AM> freebsd-emulation to find testers. (both CC'ed) Ok... I figured out how to make vmware1 work on FreeBSD. Ugly hack follows. 1) cd /usr/ports/vmware; make install 2) cd ../vmware2; make 3) pushd /usr/local/lib/vmware/lib/modules; rm *.ko; popd 4) cp work/vmware-distrib/vmmon-only/*.ko /usr/local/lib/vmware/lib/modules 5) cp work/vmware.sh /usr/local/etc/vmware.sh Now it works. Basically, you need the kernel modules from the newer VMware. The ones that come from the vmware1 port lock up the FreeBSD 4.1 kernel. I don't know how to automate this process. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-301-545-6996 GPG & MIME spoken here http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 11:48:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 5332F37B502; Thu, 12 Oct 2000 11:48:53 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 046681C72; Thu, 12 Oct 2000 14:48:53 -0400 (EDT) Date: Thu, 12 Oct 2000 14:48:52 -0400 From: Bill Fumerola To: Dmitry Sivachenko Cc: jeh@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/21787: Update port: net/mrtg Message-ID: <20001012144852.F37870@jade.chc-chimes.com> References: <200010120042.RAA21041@freefall.freebsd.org> <20001012130519.A294@netserv1.chg.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20001012130519.A294@netserv1.chg.ru>; from dima@Chg.RU on Thu, Oct 12, 2000 at 01:05:19PM +0400 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 01:05:19PM +0400, Dmitry Sivachenko wrote: > > Responsible-Changed-From-To: freebsd-ports->jfitz@FreeBSD.org > ^^^^^^^^^^^^^^^^^ > > Hmm... I don't think it's a good idea. > jfitz@FreeBSD.org is a 'dead' maintainer. > I saw no commits from him for more that a year. Well, I think he was at USENIX, so he's at least a ghost. :-> In any event, that should have read, 'freebsd-ports->jfitz', the @FreeBSD.org is implied in our GNATS system and mixing the two results in two different weekly reminders being sent (one to jfitz for all of his PRs, one to jfitz@FreeBSD.org for all of his PRs). -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 11:56:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 28C5237B502 for ; Thu, 12 Oct 2000 11:56:37 -0700 (PDT) Received: (qmail 14455231 invoked from network); 12 Oct 2000 18:56:35 -0000 Received: from r227m167.cybercable.tm.fr (HELO gits.dyndns.org) ([195.132.227.167]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 12 Oct 2000 18:56:35 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e9CIuXE44441; Thu, 12 Oct 2000 20:56:33 +0200 (CEST) (envelope-from root) From: Cyrille Lefevre Message-Id: <200010121856.e9CIuXE44441@gits.dyndns.org> Subject: Re: ports/21921: New port: deskutils/gcal - 3.01 In-Reply-To: <200010120417.VAA98300@freefall.freebsd.org> "from trevor@FreeBSD.org at Oct 11, 2000 09:17:01 pm" To: trevor@FreeBSD.org Date: Thu, 12 Oct 2000 20:56:32 +0200 (CEST) Cc: freebsd-ports@FreeBSD.org Reply-To: clefevre@citeweb.net Organization: ACME X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org trevor@FreeBSD.org wrote: > Synopsis: New port: deskutils/gcal - 3.01 > > State-Changed-From-To: open->feedback > State-Changed-By: trevor > State-Changed-When: Wed Oct 11 21:14:22 PDT 2000 > State-Changed-Why: > Your proposed sh-utils port (PR 21884) installs the info page for > gcal. I suggest that gcal and its info page both be installed by > the same port. Have you any comment? typo error from my own in the audit-trail of sh-utils (PR 21884). read sh-utils.info and not gcal.info. sorry (again). Cyrille. -- Cyrille Lefevre 12, Rue de Bizerte 75017 Paris tel/fax: +33 (0)1 45 22 83 85 home: mailto:clefevre@citeweb.net work: mailto:Cyrille.Lefevre@edf.fr icq: mailto:17089123@pager.icq.com http://wwp.icq.com/17089123 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 12: 0:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id AAA1437B503 for ; Thu, 12 Oct 2000 12:00:22 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9CIv5q23318; Thu, 12 Oct 2000 14:57:05 -0400 (EDT) Date: Thu, 12 Oct 2000 14:57:05 -0400 (EDT) From: Trevor Johnson To: Johann Visagie Cc: James Housley , Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? In-Reply-To: <20001012120017.A97048@fling.sanbi.ac.za> 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 Johann Visagie wrote: > James Housley on 2000-10-11 (Wed) at 09:58:24 -0400: > > > > The porters handbook show how to do this. > > > > http://www.freebsd.org/porters-handbook/porting-autoplist.html > > > > However it could use some improvements. > > Specifically, I'd pipe the find command that adds the files to $PLIST through > sort(1) first (cuts down the size of future diff files), Yes. I hadn't noticed that was missing from the Handbook. > and the output of > the find that adds the directories to $PLIST through "sort -r" (pretty much > ensures the directories are removed in a sane order when deinstalling). Instead of sort -r, using the -d option will also work. The example in the Handbook fails on uninstallation when there is more than one level of directories. The output of find -d is sorted in alphabetical order. So long as you stick with one or the other, your updates won't cause bloat. I'd like to correct this part of the Handbook--does anyone have objections to me mentioning both methods? > Hmm, and add something to remove man pages from $PLIST, I suppose. :-) Let > me see what I can do... A pass through "grep -vw man" should give a close approximation. Then you'll want to generate the MAN lines. Here's what I've come up with (contains tabs and a long line): #!/bin/sh echo -n ""; for i in l n 1 2 3 4 5 6 7 8 9; do echo -n MAN$i; echo -n "= "; for j in `find /usr/local/man/*$i /usr/local/lib/perl*/*/man/*$i /usr/X11R6/man/*$i -mtime 1 -type f`; do echo -n `basename $j | cut -f1 -d\. `; echo " \\" echo -n " "; done echo done Maxim Sobolev mentioned some options for find that look like they'll match more recent files. The output of my script looks something like: MANl= MANn= append \ array \ bgerror \ binary \ break \ case \ [...] menubar \ palette \ scrollbar \ packagens \ chooseDirectory \ MAN1= tclsh \ wish \ MAN2= MAN3= Alloc \ Async \ Concat \ AllowExc \ [...] GetHINSTANCE \ HWNDToWindow \ AddOption \ MAN4= MAN5= MAN6= MAN7= MAN8= MAN9= -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 12: 7:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 6971A37B502 for ; Thu, 12 Oct 2000 12:07:18 -0700 (PDT) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e9CJ1hQ86337; Thu, 12 Oct 2000 15:01:43 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39E60A95.E4750B45@thehousleys.net> Date: Thu, 12 Oct 2000 15:01:41 -0400 From: James Housley X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Trevor Johnson Cc: Johann Visagie , Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trevor Johnson wrote: > > A pass through "grep -vw man" should give a close approximation. Then grep -vw "share/man" might be safer. Jim -- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- The wise man built his network upon Un*x. The foolish man built his network upon Windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 12: 8:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 2E63237B503 for ; Thu, 12 Oct 2000 12:08:26 -0700 (PDT) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e9CJ2xQ86356; Thu, 12 Oct 2000 15:02:59 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39E60AE2.A963AB29@thehousleys.net> Date: Thu, 12 Oct 2000 15:02:58 -0400 From: James Housley X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Trevor Johnson Cc: Johann Visagie , Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trevor Johnson wrote: > > A pass through "grep -vw man" should give a close approximation. Then Actually "grep -vw man/man". Sorry Jim -- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- The wise man built his network upon Un*x. The foolish man built his network upon Windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 12:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08C2237B66D for ; Thu, 12 Oct 2000 12:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA35162; Thu, 12 Oct 2000 12:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wproxy3.nctu.edu.tw (wproxy3.NCTU.edu.tw [140.113.54.3]) by hub.freebsd.org (Postfix) with ESMTP id 910D337B503 for ; Thu, 12 Oct 2000 12:08:32 -0700 (PDT) Received: from Terry.Dorm8.NCTU.edu.tw (Terry.dorm8.NCTU.edu.tw [140.113.93.99]) by wproxy3.nctu.edu.tw (8.10.1/8.10.1) with ESMTP id e9CJ7ca86690 for ; Fri, 13 Oct 2000 03:07:38 +0800 (CST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.11.0/8.11.0) id e9CJ6EC04955; Fri, 13 Oct 2000 03:06:14 +0800 (CST) (envelope-from ijliao) Message-Id: <200010121906.e9CJ6EC04955@Terry.Dorm8.NCTU.edu.tw> Date: Fri, 13 Oct 2000 03:06:14 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@terry.dragon2.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21937: update ports : net/mrtg to 2.9.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21937 >Category: ports >Synopsis: update ports : net/mrtg to 2.9.1 >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: Thu Oct 12 12:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 5.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm8.NCTU.edu.tw 5.0-CURRENT FreeBSD 5.0-CURRENT #15: Fri Sep 22 03:28:29 CST 2000 root@Terry.Dorm8.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: update mrtg from 2.8.12 to 2.9.1 >How-To-Repeat: diff -ruN /usr/ports/net/mrtg/Makefile mrtg/Makefile --- /usr/ports/net/mrtg/Makefile Thu Jun 8 02:48:31 2000 +++ mrtg/Makefile Fri Oct 13 02:59:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= mrtg -PORTVERSION= 2.8.12 +PORTVERSION= 2.9.1 CATEGORIES= net MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/pub/ diff -ruN /usr/ports/net/mrtg/distinfo mrtg/distinfo --- /usr/ports/net/mrtg/distinfo Sun Feb 13 05:45:53 2000 +++ mrtg/distinfo Fri Oct 13 03:01:46 2000 @@ -1 +1 @@ -MD5 (mrtg-2.8.12.tar.gz) = 1279ae12c85c458cb5b3111fe5e01341 +MD5 (mrtg-2.9.1.tar.gz) = 78cb2e57d98ce1d16a240ad97100bd8f >Fix: >Release-Note: >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 Oct 12 12:17:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 5B18537B502 for ; Thu, 12 Oct 2000 12:17:35 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9CJEvg23901; Thu, 12 Oct 2000 15:14:57 -0400 (EDT) Date: Thu, 12 Oct 2000 15:14:57 -0400 (EDT) From: Trevor Johnson To: James Housley Cc: Johann Visagie , Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? In-Reply-To: <39E60AE2.A963AB29@thehousleys.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 James Housley wrote: > Trevor Johnson wrote: > > > > A pass through "grep -vw man" should give a close approximation. Then > > Actually "grep -vw man/man". Sorry This doesn't work, because grep's -w option matches whole words, and your expression won't match something like man/man1, which we want to match. Your expression won't match cat pages, but mine will. A few packages come with only cat pages, and no source. I don't know how those should be treated. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 12:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 868B137B503 for ; Thu, 12 Oct 2000 12:20:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA38529; Thu, 12 Oct 2000 12:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 12 Oct 2000 12:20:04 -0700 (PDT) Message-Id: <200010121920.MAA38529@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: arpwatch@ee.lbl.gov Subject: Re: ports/19047: net/arpwatch patched to use tmpfile() instead of mk Reply-To: arpwatch@ee.lbl.gov Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/19047; it has been noted by GNATS. From: arpwatch@ee.lbl.gov To: mi@privatelabs.com, Maxim Sobolev Cc: FreeBSD-gnats-submit@FreeBSD.org, arpwatch@ee.lbl.gov Subject: Re: ports/19047: net/arpwatch patched to use tmpfile() instead of mk Date: Thu, 12 Oct 2000 12:10:48 PDT It looks like this bug report has already been closed out but I thought I'd let everyone know that the latest release of arpwatch: ftp://ftp.ee.lbl.gov/arpwatch.tar.gz uses mkstemp(). Craig To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 12:27:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id D98EC37B503 for ; Thu, 12 Oct 2000 12:27:44 -0700 (PDT) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e9CJMDQ86581; Thu, 12 Oct 2000 15:22:13 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39E60F64.6796971F@thehousleys.net> Date: Thu, 12 Oct 2000 15:22:12 -0400 From: James Housley X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Trevor Johnson Cc: Johann Visagie , Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trevor Johnson wrote: > > James Housley wrote: > > > Trevor Johnson wrote: > > > > > > A pass through "grep -vw man" should give a close approximation. Then > > > > Actually "grep -vw man/man". Sorry > > This doesn't work, because grep's -w option matches whole words, and your > expression won't match something like man/man1, which we want to match. > You are right of course. I was just worried about man being used elsewhere. I suppose there is the possiblity of, very small, of false matches. These whoever will be made into MAN entries, so they would show up. Jim -- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- The wise man built his network upon Un*x. The foolish man built his network upon Windows. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 13:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B9A237B66D for ; Thu, 12 Oct 2000 13:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA70776; Thu, 12 Oct 2000 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id BA53537B502 for ; Thu, 12 Oct 2000 13:47:44 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e9CKkvD15095 for ; Thu, 12 Oct 2000 22:46:57 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e9CKi8v25563; Thu, 12 Oct 2000 22:44:08 +0200 (CEST) (envelope-from dm) Message-Id: <200010122044.e9CKi8v25563@home.dinoex.sub.org> Date: Thu, 12 Oct 2000 22:44:08 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21938: fix news/fidogate (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21938 >Category: ports >Synopsis: fix news/fidogate (by maintainer) >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 Oct 12 13:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: ifmail, fidogate >Description: URL for master site has changed. >How-To-Repeat: >Fix: apply this patches diff fidogate/Makefile fidogate-4.4.1/Makefile --- fidogate/Makefile Mon Oct 9 07:42:51 2000 +++ fidogate-4.4.1/Makefile Mon Oct 9 07:46:28 2000 @@ -8,10 +8,10 @@ PORTNAME= fidogate PORTVERSION= 4.4.1 CATEGORIES= news mail -MASTER_SITES= ftp://ftp.fido.de/pub/fidogate/ \ - ftp://ftp.gwdg.de/pub/linux/fido/fidogate/ \ +MASTER_SITES= ftp://ftp.fidogate.org/pub/fidogate/ \ ftp://ftp.fu-berlin.de/unix/news/fidogate/ \ - ${MASTER_SITE_SUNSITE} + http://www.fidogate.org/pub/fidogate/ + MASTER_SITE_SUBDIR= system/fido MAINTAINER= dirk.meyer@dinoex.sub.org diff fidogate/pkg-descr fidogate-4.4.1/pkg-descr --- fidogate/pkg-descr Mon Oct 9 07:42:51 2000 +++ fidogate-4.4.1/pkg-descr Sun Oct 8 22:23:09 2000 @@ -5,3 +5,4 @@ * Fido Areafix/Filefix WWW: http://www.fidogate.org/ +FTP: ftp://ftp.fidogate.org/pub/fidogate/ >Release-Note: >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 Oct 12 14: 0: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A601037B66C for ; Thu, 12 Oct 2000 14:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA74069; Thu, 12 Oct 2000 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 1136737B503 for ; Thu, 12 Oct 2000 13:56:42 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e9CKtvD15643 for ; Thu, 12 Oct 2000 22:55:58 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e9CKt8B26482; Thu, 12 Oct 2000 22:55:08 +0200 (CEST) (envelope-from dm) Message-Id: <200010122055.e9CKt8B26482@home.dinoex.sub.org> Date: Thu, 12 Oct 2000 22:55:08 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21939: Fix emulators/frodo (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21939 >Category: ports >Synopsis: Fix emulators/frodo (by maintainer) >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 Oct 12 14:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: X11, tcl/tk 8.2 >Description: Mastersites changed to physical location. Add second Site. >How-To-Repeat: >Fix: apply the patches diff frodo/Makefile frodo-4.1a/Makefile --- frodo/Makefile Tue Sep 5 08:35:37 2000 +++ frodo-4.1a/Makefile Thu Oct 12 22:52:54 2000 @@ -8,7 +8,8 @@ PORTNAME= frodo PORTVERSION= 4.1a CATEGORIES= emulators tk82 -MASTER_SITES= ftp://metalab.unc.edu/pub/micro/commodore/crossplatform/emulators/unix/ +MASTER_SITES= ftp://metalab.unc.edu/pub/micro/commodore/crossplatform/emulators/Frodo/ \ + ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/Frodo/ \ DISTNAME= FrodoV4_1a.Src MAINTAINER= dirk.meyer@dinoex.sub.org >Release-Note: >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 Oct 12 14: 4:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F16F37B502; Thu, 12 Oct 2000 14:04:32 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA75679; Thu, 12 Oct 2000 14:04:32 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:04:32 -0700 (PDT) From: Message-Id: <200010122104.OAA75679@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21938: fix news/fidogate (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix news/fidogate (by maintainer) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:04:21 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21938 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14: 6: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7556C37B502; Thu, 12 Oct 2000 14:06:00 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77902; Thu, 12 Oct 2000 14:06:00 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:06:00 -0700 (PDT) From: Message-Id: <200010122106.OAA77902@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21939: Fix emulators/frodo (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix emulators/frodo (by maintainer) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:05:50 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21939 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14: 7:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E81B37B502; Thu, 12 Oct 2000 14:07:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78490; Thu, 12 Oct 2000 14:07:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:07:33 -0700 (PDT) From: Message-Id: <200010122107.OAA78490@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/21920: port of openssl-0.9.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port of openssl-0.9.6 Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:07:24 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21920 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:12:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D34537B502; Thu, 12 Oct 2000 14:12:38 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA80182; Thu, 12 Oct 2000 14:12:37 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:12:37 -0700 (PDT) From: Message-Id: <200010122112.OAA80182@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: ports/21903: bsd.ports.mk - automake/aclocal adds Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bsd.ports.mk - automake/aclocal adds Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:12:27 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21903 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:13:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3859537B66C; Thu, 12 Oct 2000 14:13:20 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA80473; Thu, 12 Oct 2000 14:13:20 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:13:20 -0700 (PDT) From: Message-Id: <200010122113.OAA80473@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, torstenb@FreeBSD.org Subject: Re: ports/21900: smail port suggests overwriting of sendmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: smail port suggests overwriting of sendmail Responsible-Changed-From-To: freebsd-ports->torstenb Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:13:09 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21900 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:13:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4D3D37B503; Thu, 12 Oct 2000 14:13:50 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA80706; Thu, 12 Oct 2000 14:13:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:13:50 -0700 (PDT) From: Message-Id: <200010122113.OAA80706@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: ports/21897: bsd.ports.mk's fetch-recursive-list target ignores FETCH_CMD Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bsd.ports.mk's fetch-recursive-list target ignores FETCH_CMD Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:13:40 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21897 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:16:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68FEE37B503; Thu, 12 Oct 2000 14:16:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA81794; Thu, 12 Oct 2000 14:16:41 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:16:41 -0700 (PDT) From: Message-Id: <200010122116.OAA81794@freefall.freebsd.org> To: ats@first.gmd.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21890: ports/net/tintin++ source not found on any mastersite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/net/tintin++ source not found on any mastersite State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:16:31 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21890 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:18:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 10DA237B503; Thu, 12 Oct 2000 14:18:27 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA82548; Thu, 12 Oct 2000 14:18:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:18:27 -0700 (PDT) From: Message-Id: <200010122118.OAA82548@freefall.freebsd.org> To: dsh@wizard.vlink.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21889: update comms/qico to 0.48 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update comms/qico to 0.48 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:18:16 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21889 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:21:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FFE737B66C; Thu, 12 Oct 2000 14:21:40 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA83722; Thu, 12 Oct 2000 14:21:40 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:21:40 -0700 (PDT) From: Message-Id: <200010122121.OAA83722@freefall.freebsd.org> To: goran.lowkrantz@ismobile.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21867: Update doxygen from 1.1.0 to 1.2.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update doxygen from 1.1.0 to 1.2.2 State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Thu Oct 12 14:19:15 PDT 2000 State-Changed-Why: Simply updating PORTVERSION in the Makefile is not enough to update the port - it is also necessary to submit updates for distinfo for the new MD5 checksum, verify that no patches need to be altered, deleted or added, and that the pkg-plist doesn't need any changes. In addition, you should ideally run submissions by the port maintainer first, and then indicate in the PR whether the maintainer approves or was unreachable. http://www.freebsd.org/cgi/query-pr.cgi?pr=21867 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:22:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CBE737B66C; Thu, 12 Oct 2000 14:22:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA84093; Thu, 12 Oct 2000 14:22:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:22:35 -0700 (PDT) From: Message-Id: <200010122122.OAA84093@freefall.freebsd.org> To: goran.lowkrantz@ismobile.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21867: Update doxygen from 1.1.0 to 1.2.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update doxygen from 1.1.0 to 1.2.2 State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:21:48 PDT 2000 State-Changed-Why: Sigh. I botched that one. I meant to close this PR on account of total lack of useful content. http://www.freebsd.org/cgi/query-pr.cgi?pr=21867 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:25:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A788E37B502; Thu, 12 Oct 2000 14:25:47 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85358; Thu, 12 Oct 2000 14:25:47 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:25:47 -0700 (PDT) From: Message-Id: <200010122125.OAA85358@freefall.freebsd.org> To: sec@ice.42.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21829: Update port: audio/libsidplay (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/libsidplay (by maintainer) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:25:38 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21829 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:26:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5915D37B66D; Thu, 12 Oct 2000 14:26:24 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85638; Thu, 12 Oct 2000 14:26:24 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:26:24 -0700 (PDT) From: Message-Id: <200010122126.OAA85638@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, torstenb@FreeBSD.org Subject: Re: ports/21819: mail/postfix port update to pl09 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mail/postfix port update to pl09 Responsible-Changed-From-To: freebsd-ports->torstenb Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:26:11 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21819 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:27:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B1FF37B503; Thu, 12 Oct 2000 14:27:27 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA86011; Thu, 12 Oct 2000 14:27:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:27:27 -0700 (PDT) From: Message-Id: <200010122127.OAA86011@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: misc/21801: Update port: misc/rpm to 3.0.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/rpm to 3.0.6 Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:27:17 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21801 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:27:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27C2137B502; Thu, 12 Oct 2000 14:27:56 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA86232; Thu, 12 Oct 2000 14:27:56 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:27:56 -0700 (PDT) From: Message-Id: <200010122127.OAA86232@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21799: Update port: graphics/xpaint to 2.6.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/xpaint to 2.6.1 Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:27:41 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21799 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:28:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7208437B502; Thu, 12 Oct 2000 14:28:24 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA86424; Thu, 12 Oct 2000 14:28:24 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:28:24 -0700 (PDT) From: Message-Id: <200010122128.OAA86424@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/21798: Update port: graphics/gtksee Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gtksee Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:28:13 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21798 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:28:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 58CCC37B502 for ; Thu, 12 Oct 2000 14:28:27 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id e9CLSPn26261 for ; Thu, 12 Oct 2000 15:28:26 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id PAA72178 for ; Thu, 12 Oct 2000 15:28:25 -0600 (MDT) Message-Id: <200010122128.PAA72178@harmony.village.org> To: ports@freebsd.org Subject: LOCALBASE vs PREFIX Date: Thu, 12 Oct 2000 15:28:25 -0600 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK. I have a question. I did the following and it failed: setenv PREFIX /fs/gerbils sudo mkdir $PREFIX cd /usr/ports/x11-toolkits/gtk12 make all install It appears that the gtk12 makefile is using LOCALBASE rather than PREFIX to find things. If I set LOCALBASE and PREFIX in the above sequence, it works. So, is there a bug here? Or am I misunderstanding what PREFIX is for? Reading bsd.port.mk, LOCALBASE is in a section that says it should rarely, if ever, be set. Is this one of those rare times? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:28:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1163937B503; Thu, 12 Oct 2000 14:28:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA86598; Thu, 12 Oct 2000 14:28:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:28:49 -0700 (PDT) From: Message-Id: <200010122128.OAA86598@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/21797: Update port: graphics/gqview to 0.9.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gqview to 0.9.1 Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:28:35 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21797 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:29:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CC2837B502; Thu, 12 Oct 2000 14:29:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA86763; Thu, 12 Oct 2000 14:29:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:29:13 -0700 (PDT) From: Message-Id: <200010122129.OAA86763@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21576: Update port: graphics/gnofract4d to 1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gnofract4d to 1.3 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:28:57 PDT 2000 State-Changed-Why: Superceded by ports/21796 http://www.freebsd.org/cgi/query-pr.cgi?pr=21576 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:30:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id DD62937B502; Thu, 12 Oct 2000 14:30:21 -0700 (PDT) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id QAA22850; Thu, 12 Oct 2000 16:30:19 -0500 (CDT) (envelope-from jeff-ml@mountin.net) Received: from dial-105.max1.wa.cyberlynk.net(207.227.118.105) by peak.mountin.net via smap (V1.3) id sma022848; Thu Oct 12 16:30:09 2000 Message-Id: <4.3.2.20001012162534.00db4340@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Thu, 12 Oct 2000 16:30:15 -0500 To: Vivek Khera , From: "Jeffrey J. Mountin" Subject: Re: ports/21913: sysutils/obliterate deletes README.html file on cvsup Cc: gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-Reply-To: <14821.60347.155689.349812@onceler.kciLink.com> References: <200010121646.JAA76828@freefall.freebsd.org> <200010121646.JAA76828@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 12:50 PM 10/12/00 -0400, Vivek Khera wrote: > >>>>> "j" == jedgar writes: > >j> Synopsis: sysutils/obliterate deletes README.html file on cvsup >j> State-Changed-From-To: open->closed >j> State-Changed-By: jedgar >j> State-Changed-When: Thu Oct 12 09:45:40 PDT 2000 >j> State-Changed-Why: >j> README.html's are deleted due to someone accidentally adding them when >j> their respective ports were added to the tree, then cvs rm'ing them. >j> In these cases, they are treated like any other file in the ports-tree >j> that has been deleted. > >Yes, but is the CVS tree cleaned up so that it doesn't happen the next >time I cvsup? Other ports had this problem in the past and it was >cleared up in the CVS tree. This is one of 3 readme's that will be nuked when you cvsup: lang/snobol/README.html security/seahorse/README.html sysutils/obliterate/README.html I'd suggest adding a refuse to your config until the Attic is cleaned, which may be a while. Unless someone can "fix" it sooner. Jeff Mountin - jeff@mountin.net Systems/Network Administrator FreeBSD - the power to serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:31:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 496DA37B503; Thu, 12 Oct 2000 14:31:51 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA87729; Thu, 12 Oct 2000 14:31:51 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:31:51 -0700 (PDT) From: Message-Id: <200010122131.OAA87729@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21796: Update port: graphics/gnofract4d to 1.3 (fix ports/21576) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gnofract4d to 1.3 (fix ports/21576) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:31:42 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21796 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:34:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5937B37B502; Thu, 12 Oct 2000 14:34:12 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA88641; Thu, 12 Oct 2000 14:34:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:34:12 -0700 (PDT) From: Message-Id: <200010122134.OAA88641@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21795: Update port: graphics/cqcam to 0.90p11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/cqcam to 0.90p11 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:33:58 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21795 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:35:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F91B37B502; Thu, 12 Oct 2000 14:35:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA89325; Thu, 12 Oct 2000 14:35:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:35:48 -0700 (PDT) From: Message-Id: <200010122135.OAA89325@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21794: Update port: ftp/ftpq to 1.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ftp/ftpq to 1.00 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:35:36 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21794 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:36:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B80BB37B503; Thu, 12 Oct 2000 14:36:10 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA89534; Thu, 12 Oct 2000 14:36:10 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:36:10 -0700 (PDT) From: Message-Id: <200010122136.OAA89534@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/21793: Update port: editors/dedit to 0.6.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: editors/dedit to 0.6.2 Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:35:59 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21793 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:40:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BE8E37B503; Thu, 12 Oct 2000 14:40:42 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA91137; Thu, 12 Oct 2000 14:40:42 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:40:42 -0700 (PDT) From: Message-Id: <200010122140.OAA91137@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nsayer@FreeBSD.org Subject: Re: ports/21770: ca-root.crt might be better in /etc/ssl/cert.pem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ca-root.crt might be better in /etc/ssl/cert.pem Responsible-Changed-From-To: freebsd-ports->nsayer Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:40:31 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21770 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:42:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C37F37B66D; Thu, 12 Oct 2000 14:42:53 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA91937; Thu, 12 Oct 2000 14:42:53 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:42:53 -0700 (PDT) From: Message-Id: <200010122142.OAA91937@freefall.freebsd.org> To: jamie@jamiesdomain.org.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21745: Update Port: audio/cd2mp3 Latest release of cd2mp3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: audio/cd2mp3 Latest release of cd2mp3 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:42:22 PDT 2000 State-Changed-Why: Submitter needs to re-read the porting handbook. Three times. http://www.freebsd.org/cgi/query-pr.cgi?pr=21745 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:43:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17EBC37B503; Thu, 12 Oct 2000 14:43:16 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92152; Thu, 12 Oct 2000 14:43:16 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:43:16 -0700 (PDT) From: Message-Id: <200010122143.OAA92152@freefall.freebsd.org> To: jamie@jamiesdomain.org.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21746: Ports update: audio/cd2mp3 Update to cd2mp3 new release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ports update: audio/cd2mp3 Update to cd2mp3 new release State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:43:06 PDT 2000 State-Changed-Why: Submitter needs to re-read the porting handbook. Three times. http://www.freebsd.org/cgi/query-pr.cgi?pr=21746 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:44:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 066C537B503; Thu, 12 Oct 2000 14:44:25 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92565; Thu, 12 Oct 2000 14:44:25 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:44:25 -0700 (PDT) From: Message-Id: <200010122144.OAA92565@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/21749: Update port: audio/cd2mp3 Update to cd2mp3 new release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/cd2mp3 Update to cd2mp3 new release Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:43:20 PDT 2000 Responsible-Changed-Why: Looks like will was having fun with this one. Here's a gentle *prod* http://www.freebsd.org/cgi/query-pr.cgi?pr=21749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:45:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E194337B502; Thu, 12 Oct 2000 14:45:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93100; Thu, 12 Oct 2000 14:45:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:45:52 -0700 (PDT) From: Message-Id: <200010122145.OAA93100@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21575: Update port: graphics/ImageMagick to 5.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/ImageMagick to 5.2.4 Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:45:41 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21575 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:46:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 203A437B502 for ; Thu, 12 Oct 2000 14:46:29 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca44-118.ix.netcom.com [209.111.212.246]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id RAA22180; Thu, 12 Oct 2000 17:46:26 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9CLkOr10106; Thu, 12 Oct 2000 14:46:24 -0700 (PDT) (envelope-from asami) To: Warner Losh Cc: ports@freebsd.org Subject: Re: LOCALBASE vs PREFIX References: <200010122128.PAA72178@harmony.village.org> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 12 Oct 2000 14:46:21 -0700 In-Reply-To: Warner Losh's message of "Thu, 12 Oct 2000 15:28:25 -0600" Message-ID: Lines: 49 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Warner Losh * OK. I have a question. I did the following and it failed: * * setenv PREFIX /fs/gerbils * sudo mkdir $PREFIX * cd /usr/ports/x11-toolkits/gtk12 * make all install * * * * It appears that the gtk12 makefile is using LOCALBASE rather than * PREFIX to find things. * * If I set LOCALBASE and PREFIX in the above sequence, it works. * * So, is there a bug here? Or am I misunderstanding what PREFIX is for? * Reading bsd.port.mk, LOCALBASE is in a section that says it should * rarely, if ever, be set. Is this one of those rare times? PREFIX is in that section too. :) That section is telling porters that these variables are not set in most ports' Makefiles. For debugging purposes, it's a different story. As for your original question, PREFIX is "where *this* port installs things" is it says in bsd.port.mk. The rest of the world still go to LOCALBASE, X11BASE etc. It is known that some stuff will need everything to be in the same tree, and just setting PREFIX will not work. In some cases, you just need to set LOCALBASE or X11BASE as well, and the compilation will work. Yet some others require you recompile the dependencies with LOCALBASE or X11BASE defined to the new value. I know, this world is not really PREFIX-clean even after all the tests. It's a well-known secret that the -p flag of pkg_add is somewhere between "useless" and "downright dangerous for novices". But to really fix the problem, we need to force all ports into separate PREFIXes and require that they work even if they are installed elsewhere. This means something like GNU stowage (real files in separate hierarchy per port, symlink tree from PREFIX) and much more rigorous testing. Of course, this layout will have other benefits such as ease of switching between multiple versions. Are people willing to go for it? If so, I can produce some prototype code in a few weeks. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:49:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 65CCF37B503 for ; Thu, 12 Oct 2000 14:49:13 -0700 (PDT) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id XAA13486; Thu, 12 Oct 2000 23:49:06 +0200 (CEST) (envelope-from ibex) Date: Thu, 12 Oct 2000 23:49:06 +0200 From: Dirk Froemberg To: Jun Kuriyama Cc: Ports Team Subject: Re: textproc/expat port Message-ID: <20001012234906.A13294@physik.TU-Berlin.DE> References: <7mhf6i9mbg.wl@waterblue.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <7mhf6i9mbg.wl@waterblue.imgsrc.co.jp>; from kuriyama@imgsrc.co.jp on Thu, Oct 12, 2000 at 11:16:35PM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Jun! On Thu, Oct 12, 2000 at 11:16:35PM +0900, Jun Kuriyama wrote: > What do you think about updating textproc/expat to sourceforge hosted > version ( http://expat.sourceforge.net )? Or should we make separated > port (like as textproc/expat-devel)? > > # sourceforge version expat is required by p5-XML-Parser-2.30. If you like you can upgrade the expat port. Furthermore you can overtake maintainership of expat if you like. Before you commit an upgrade you should make sure that the new version of expat works with mod_php3, mod_php4 and ruby-xmlparser... Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:49:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E46E37B502; Thu, 12 Oct 2000 14:49:53 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA94449; Thu, 12 Oct 2000 14:49:53 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:49:53 -0700 (PDT) From: Message-Id: <200010122149.OAA94449@freefall.freebsd.org> To: jamie@jamiesdomain.org.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21620: Update port: audio/cd2mp3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/cd2mp3 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:49:22 PDT 2000 State-Changed-Why: Another botched audio/cd2mp3 update.. I think that's the last of them. http://www.freebsd.org/cgi/query-pr.cgi?pr=21620 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:51:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEC2B37B502; Thu, 12 Oct 2000 14:51:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA95243; Thu, 12 Oct 2000 14:51:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:51:48 -0700 (PDT) From: Message-Id: <200010122151.OAA95243@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: ports/21668: Update x11-wm/enlightenment Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update x11-wm/enlightenment Responsible-Changed-From-To: freebsd-ports->vanilla Responsible-Changed-By: ade Responsible-Changed-When: Thu Oct 12 14:51:34 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21668 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 14:52:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62B1137B66C; Thu, 12 Oct 2000 14:52:54 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA95651; Thu, 12 Oct 2000 14:52:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 12 Oct 2000 14:52:54 -0700 (PDT) From: Message-Id: <200010122152.OAA95651@freefall.freebsd.org> To: pfeifer@dbai.tuwien.ac.at, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21687: rpm port is out-dated (2.5.6 instead of 3.0/4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rpm port is out-dated (2.5.6 instead of 3.0/4.0) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Oct 12 14:52:10 PDT 2000 State-Changed-Why: Maintainer has another PR (with patches, even) to bring misc/rpm up to version 3.0 - I'm sure it will be committed soon. http://www.freebsd.org/cgi/query-pr.cgi?pr=21687 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 15:18:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 03D8D37B502; Thu, 12 Oct 2000 15:18:55 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id e9CMIrn26621; Thu, 12 Oct 2000 16:18:53 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id QAA72839; Thu, 12 Oct 2000 16:18:53 -0600 (MDT) Message-Id: <200010122218.QAA72839@harmony.village.org> To: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Subject: Re: LOCALBASE vs PREFIX Cc: ports@freebsd.org In-reply-to: Your message of "12 Oct 2000 14:46:21 PDT." References: <200010122128.PAA72178@harmony.village.org> Date: Thu, 12 Oct 2000 16:18:52 -0600 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Satoshi - Ports Wraith - Asami writes: : But to really fix the problem, we need to force all ports into : separate PREFIXes and require that they work even if they are : installed elsewhere. This means something like GNU stowage (real : files in separate hierarchy per port, symlink tree from PREFIX) and : much more rigorous testing. : : Of course, this layout will have other benefits such as ease of : switching between multiple versions. Are people willing to go for it? : If so, I can produce some prototype code in a few weeks. We (Timing Solutions) like to have a setup that looks like the following. We were going to see about producing some code, but aren't sure how easy/hard it will be. /software/dist/${SW}-${VER}/ we then make symbolic links from /software/dist/${SW} to /software/dist/${SW}-${VER} for that software that we want to be the default. We also have symbolic links in /software/{bin,lib,share,etc} to the specific version when we "install" them. We were thinking of having symbolic links from the /software/dist/${SW}-${VER}/{bin,lib,etc} to those packages that the port depends upon. Once we had that, building would be easy. I know this is somewhat fractured. It sounds somewhat like what you've talking about. We'd be interested in at least havnig the ability to do this. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 15:32:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 61E7E37B66C for ; Thu, 12 Oct 2000 15:32:30 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13jqti-000Fy7-00; Thu, 12 Oct 2000 17:32:22 -0500 Date: Thu, 12 Oct 2000 17:32:22 -0500 From: Ade Lovett To: Warner Losh Cc: ports@freebsd.org Subject: Re: LOCALBASE vs PREFIX Message-ID: <20001012173222.B48659@FreeBSD.org> References: <200010122128.PAA72178@harmony.village.org> <200010122218.QAA72839@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010122218.QAA72839@harmony.village.org>; from imp@village.org on Thu, Oct 12, 2000 at 04:18:52PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 04:18:52PM -0600, Warner Losh wrote: > We (Timing Solutions) like to have a setup that looks like the > following. We were going to see about producing some code, but aren't > sure how easy/hard it will be. > > /software/dist/${SW}-${VER}/ > > we then make symbolic links from /software/dist/${SW} to > /software/dist/${SW}-${VER} for that software that we want to be the > default. We also have symbolic links in /software/{bin,lib,share,etc} > to the specific version when we "install" them. Some random thoughts.. Do you have separate locations for "/usr/X11R6" and "/usr/local", or does everything go under /software/{bin,...} ie: is there a distinction between ${LOCALBASE} and ${X11BASE} If we're looking at some kind of stowage system, this might be the ideal time to actually stop installing *anything* in /usr/{X11R6,local}, and do a s?/software/?/usr/packages/? for the FreeBSD version of Warner's suggestion - I never really understood why X went in its own hierarchy, and using /usr/packages would free up /usr/local for truly _local_ stuff. One question, though.. in this scheme of things, where I have a package "foo" with a shared library "bar.so.2", where do I depend on it? 1. The actual location: /software/dist/foo-x.y/lib/libbar.so.2 2. The first linked location: /software/dist/foo/lib/libbar.so.2 3. The linked location in the "real" tree: /software/lib/libbar.so.2 ?? Can we leverage this to also have explicit inter-package version dependencies by virtue of the foo -> foo-x.y link? -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 15:40:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id E8A2937B66C; Thu, 12 Oct 2000 15:40:32 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id e9CMeVn26707; Thu, 12 Oct 2000 16:40:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id QAA73016; Thu, 12 Oct 2000 16:40:31 -0600 (MDT) Message-Id: <200010122240.QAA73016@harmony.village.org> To: Ade Lovett Subject: Re: LOCALBASE vs PREFIX Cc: ports@FreeBSD.org In-reply-to: Your message of "Thu, 12 Oct 2000 17:32:22 CDT." <20001012173222.B48659@FreeBSD.org> References: <20001012173222.B48659@FreeBSD.org> <200010122128.PAA72178@harmony.village.org> <200010122218.QAA72839@harmony.village.org> Date: Thu, 12 Oct 2000 16:40:31 -0600 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20001012173222.B48659@FreeBSD.org> Ade Lovett writes: : Do you have separate locations for "/usr/X11R6" and "/usr/local", : or does everything go under /software/{bin,...} Generally we try to put everything in /software/... : ie: is there a distinction between ${LOCALBASE} and ${X11BASE} No. Sometimes we'll put things in their traditional place. I do this for things that I want on my system (/software is a grotty amd map for the many different types of machines that we support here) for performance reasons. I also so this when I'm "lazy" and don't want to jump through the 4 pages of instructions needed to make this happen with the current ports collection. : If we're looking at some kind of stowage system, this might be : the ideal time to actually stop installing *anything* in : /usr/{X11R6,local}, and do a s?/software/?/usr/packages/? for : the FreeBSD version of Warner's suggestion - I never really : understood why X went in its own hierarchy, and using /usr/packages : would free up /usr/local for truly _local_ stuff. that might not be a bad idea. It might not be a good idea either. I'd like to be able to install into /usr/local for my personal stuff since I have 3 systems and don't need the complexity that we need at work (4 different FreeBSD versions, 2 different linux versions and 1 solaris version). : One question, though.. in this scheme of things, where I have : a package "foo" with a shared library "bar.so.2", where do I : depend on it? : : 1. The actual location: : /software/dist/foo-x.y/lib/libbar.so.2 : : 2. The first linked location: : /software/dist/foo/lib/libbar.so.2 : : 3. The linked location in the "real" tree: : /software/lib/libbar.so.2 : : ?? We place it in 1 and link to it in 1 as well. That way when the default changes you don't screw things up. I don't know if the concept of default is a good one, but that's what we've done here. : Can we leverage this to also have explicit inter-package version : dependencies by virtue of the foo -> foo-x.y link? I don't know. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 16:21:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id 25F2537B503 for ; Thu, 12 Oct 2000 16:21:09 -0700 (PDT) Received: from localhost (bandix@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id TAA45415 for ; Thu, 12 Oct 2000 19:22:04 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Thu, 12 Oct 2000 19:22:04 -0400 (EDT) From: "Brandon D. Valentine" To: ports@freebsd.org Subject: make distclean error 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 [Not on -ports, Cc: accordingly.] After installing ports/editors/vim6, I ran make distclean and received the following: reef# make distclean ===> Cleaning for vim-6.0h ===> Deleting distfiles for vim-6.0h rmdir: /usr/ports/distfiles/vim: Directory not empty *** Error code 1 (ignored) It appears the ports tree is confused about how to deal with multiple distfiles in a directory. Here is the relevant directory listing: reef# ls /usr/ports/distfiles/vim vim-6.0h-rt.tar.gz vim-6.0h-src.tar.gz I am unsure whether anywhere is aware of this behavior or cares. I don't have time to work up patches to the Makefiles right now but if nobody takes it up I'll put it on my todo-in-copious-freetime list. -- Brandon D. Valentine "Few things are harder to put up with than the annoyance of a good example." -- Mark Twain, Pudd'nhead Wilson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 16:30: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5D4F37B502 for ; Thu, 12 Oct 2000 16:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA31538; Thu, 12 Oct 2000 16:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 12 Oct 2000 16:30:02 -0700 (PDT) Message-Id: <200010122330.QAA31538@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Cyrille Lefevre Subject: Re: ports/21902: New port: textproc/dico - 1.1 Reply-To: Cyrille Lefevre Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21902; it has been noted by GNATS. From: Cyrille Lefevre To: freebsd-gnats-submit@FreeBSD.org, clefevre@citeweb.net Cc: Subject: Re: ports/21902: New port: textproc/dico - 1.1 Date: Fri, 13 Oct 2000 01:26:36 +0200 I've just discover the french category which seems to be better than the textproc category for this port. Cyrille. -- home: mailto:clefevre@citeweb.net work: mailto:Cyrille.Lefevre@edf.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 17:50:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC0AF37B66D for ; Thu, 12 Oct 2000 17:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA59514; Thu, 12 Oct 2000 17:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ns.itga.com.au (ns.itga.com.au [202.53.40.210]) by hub.freebsd.org (Postfix) with ESMTP id ACFB237B502 for ; Thu, 12 Oct 2000 17:46:49 -0700 (PDT) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns.itga.com.au (8.9.3/8.9.3) with ESMTP id LAA05003; Fri, 13 Oct 2000 11:46:42 +1100 (EST) (envelope-from gnb@itga.com.au) Received: from hellcat.itga.com.au (hellcat.itga.com.au [192.168.71.163]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id LAA26749; Fri, 13 Oct 2000 11:46:40 +1100 (EST) Received: (from gnb@localhost) by hellcat.itga.com.au (8.11.0/8.9.3) id e9D0kdl53938; Fri, 13 Oct 2000 11:46:39 +1100 (EST) (envelope-from gnb@itga.com.au) Message-Id: <200010130046.e9D0kdl53938@hellcat.itga.com.au> Date: Fri, 13 Oct 2000 11:46:39 +1100 (EST) From: gnb@itga.com.au To: FreeBSD-gnats-submit@freebsd.org Cc: dscheidt@enteract.com X-Send-Pr-Version: 3.2 Subject: ports/21942: [Patch] port update: nethack3 3.3.0 -> 3.3.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21942 >Category: ports >Synopsis: Update nethack3 port to 3.3.1 >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 Oct 12 17:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gregory Bond >Release: FreeBSD 4.1-STABLE i386 >Organization: ITG Australia Limited >Environment: Any FreeBSD version; nethack3 port >Description: Nethack3 port is currently 3.3.0 which has a number of bugs. Latest version is 3.3.1. >How-To-Repeat: Run nethack & use V command! >Fix: Following diffs to the port files (made after the port restructure was done!) The file "files/patch-ab" is no longer neded and should be "cvs delete"d (dunno how to represent this with patch!) (This is my first attempt at port hacking so I may be way off base here - tips and feedback appreciated) And don't c-diffs of c-diff files look wierd! Index: Makefile =================================================================== RCS file: /usr/ncvs/ports/games/nethack3/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 2000/08/03 09:23:49 1.26 +++ Makefile 2000/10/13 00:40:39 @@ -6,10 +6,15 @@ # PORTNAME= nethack -PORTVERSION= 3.3.0 +PORTVERSION= 3.3.1 +PORTVERSION2= 331 CATEGORIES= games -MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/src/ \ +MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh${PORTVERSION2}/src/ \ ${MASTER_SITE_GNU} +EXTRACT_SUFX= .tgz +DISTNAME= ${PORTNAME}-${PORTVERSION2} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + MASTER_SITE_SUBDIR= nethack MAINTAINER= dscheidt@enteract.com Index: distinfo =================================================================== RCS file: /usr/ncvs/ports/games/nethack3/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 2000/01/24 05:40:42 1.6 +++ distinfo 2000/10/12 07:02:46 @@ -1 +1 @@ -MD5 (nethack-3.3.0.tar.gz) = cf9f4039408321f39c3ef733455cb73a +MD5 (nethack-331.tgz) = d0600ce4698c80e5ad1f917ded1c36d2 Index: files/patch-aa =================================================================== RCS file: /usr/ncvs/ports/games/nethack3/files/patch-aa,v retrieving revision 1.2 diff -u -r1.2 patch-aa --- files/patch-aa 2000/08/02 16:38:07 1.2 +++ files/patch-aa 2000/10/12 22:57:58 @@ -1,15 +1,15 @@ ---- ./include/config.h.orig Sat Dec 11 00:20:49 1999 -+++ ./include/config.h Sun Dec 12 20:28:09 1999 +--- ./include/config.h.orig Sat Jul 22 11:13:51 2000 ++++ ./include/config.h Fri Oct 13 09:31:24 2000 @@ -43,7 +43,7 @@ * Some combinations make no sense. See the installation document. */ #define TTY_GRAPHICS /* good old tty based graphics */ --/* #define X11_GRAPHICS */ /* X11 interface */ -+#define X11_GRAPHICS /* X11 interface */ +-/* #define X11_GRAPHICS */ /* X11 interface */ ++#define X11_GRAPHICS /* X11 interface */ /* #define QT_GRAPHICS */ /* Qt interface */ + /* #define GNOME_GRAPHICS */ /* Gnome interface */ - /* -@@ -92,7 +92,7 @@ +@@ -110,7 +110,7 @@ * would allow: * xpmtoppm x11tiles_big.xpm */ @@ -18,7 +18,7 @@ # ifdef USE_XPM # define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.xpm) */ # endif -@@ -133,11 +133,11 @@ +@@ -151,11 +151,11 @@ #ifdef UNIX /* path and file name extension for compression program */ @@ -34,7 +34,7 @@ #endif #ifndef COMPRESS -@@ -168,7 +168,7 @@ +@@ -186,7 +186,7 @@ * otherwise it will be the current directory. */ # ifndef HACKDIR Index: files/patch-ac =================================================================== RCS file: /usr/ncvs/ports/games/nethack3/files/patch-ac,v retrieving revision 1.3 diff -u -r1.3 patch-ac --- files/patch-ac 2000/08/02 16:38:07 1.3 +++ files/patch-ac 2000/10/12 23:07:43 @@ -1,15 +1,15 @@ ---- include/unixconf.h.orig Sat Dec 11 14:20:51 1999 -+++ include/unixconf.h Sat Jul 29 06:58:37 2000 -@@ -45,7 +45,7 @@ - /* #define AIX_31 */ /* In AIX 3.1 (IBM RS/6000) use BSD ioctl's to gain +--- ./include/unixconf.h.orig Mon Jul 17 11:03:51 2000 ++++ ./include/unixconf.h Fri Oct 13 10:06:57 2000 +@@ -47,7 +47,7 @@ * job control (note that AIX is SYSV otherwise) * Also define this for AIX 3.2 */ + -#define TERMINFO /* uses terminfo rather than termcap */ +/* #define TERMINFO */ /* uses terminfo rather than termcap */ /* Should be defined for most SYSV, SVR4 (including * Solaris 2+), HPUX, and Linux systems. In * particular, it should NOT be defined for the UNIXPC -@@ -135,7 +135,7 @@ +@@ -143,7 +143,7 @@ * A stat system call is done on the mailbox every MAILCKFREQ moves. */ Index: files/patch-ad =================================================================== RCS file: /usr/ncvs/ports/games/nethack3/files/patch-ad,v retrieving revision 1.3 diff -u -r1.3 patch-ad --- files/patch-ad 2000/01/24 05:40:44 1.3 +++ files/patch-ad 2000/10/12 23:11:07 @@ -1,20 +1,20 @@ ---- ./sys/unix/Makefile.src.orig Sat Dec 11 00:21:05 1999 -+++ ./sys/unix/Makefile.src Sun Dec 12 20:27:50 1999 -@@ -132,8 +132,8 @@ +--- ./sys/unix/Makefile.src.orig Sat Aug 5 20:52:57 2000 ++++ ./sys/unix/Makefile.src Fri Oct 13 10:10:21 2000 +@@ -144,8 +144,8 @@ # flags for debugging: # CFLAGS = -g -I../include -CFLAGS = -O -I../include --LFLAGS = +-LFLAGS = +CFLAGS += -O -I../include -I${X11BASE}/include -+LFLAGS = -L${X11BASE}/lib ++LFLAGS = -L${X11BASE}/lib - # Only used for Qt interface (other interfaces are standard C) - CXXFLAGS = -g $(CFLAGS) -I. -I$(QTDIR)/include -@@ -165,8 +165,8 @@ + # The Qt and Be window systems are written in C++, while the rest of + # NetHack is standard C. If using Qt, uncomment the LD line here to get +@@ -203,8 +203,8 @@ # - # + # -WINSRC = $(WINTTYSRC) -WINOBJ = $(WINTTYOBJ) +WINSRC = $(WINTTYSRC) $(WINX11SRC) @@ -22,7 +22,7 @@ # on some systems the termcap library is in -ltermcap or -lcurses # on 386 Xenix, the -ltermlib tputs() seems not to work; use -lcurses instead -@@ -186,7 +186,7 @@ +@@ -224,7 +224,7 @@ # # libraries for X11 # If USE_XPM is defined in config.h, you will also need -lXpm here. @@ -31,16 +31,16 @@ # WINX11LIB = -lXaw -lXmu -lXt -lX11 # WINX11LIB = -lXaw -lXmu -lXext -lXt -lXpm -lX11 -lm # WINX11LIB = -lXaw -lXmu -lXpm -lXext -lXt -lX11 -lSM -lICE -lm # BSD/OS 2.0 -@@ -199,7 +199,7 @@ - # - # +@@ -244,7 +244,7 @@ + # libraries for BeOS + WINBELIB = -lbe -WINLIB = $(WINTTYLIB) +WINLIB = $(WINTTYLIB) $(WINX11LIB) # any other strange libraries your system needs (for Sysunix only -- the more # specialized targets should already be right) -@@ -223,7 +223,7 @@ +@@ -271,7 +271,7 @@ # IRIX 4.0.x needs -lsun if NIS (YP) is being used for passwd file lookup # LIBS = -lsun # Index: files/patch-ae =================================================================== RCS file: /usr/ncvs/ports/games/nethack3/files/patch-ae,v retrieving revision 1.2 diff -u -r1.2 patch-ae --- files/patch-ae 2000/01/24 05:40:44 1.2 +++ files/patch-ae 2000/10/12 23:50:54 @@ -1,11 +1,12 @@ ---- ./sys/unix/Makefile.top.orig Sat Dec 11 05:21:05 1999 -+++ ./sys/unix/Makefile.top Mon Dec 13 11:51:27 1999 -@@ -14,17 +14,16 @@ +--- ./sys/unix/Makefile.top.orig Tue Jul 4 10:42:05 2000 ++++ ./sys/unix/Makefile.top Fri Oct 13 10:13:50 2000 +@@ -14,18 +14,17 @@ # MAKE = make # make NetHack -PREFIX = /usr GAME = nethack + # GAME = nethack.prg GAMEUID = games -GAMEGRP = bin +GAMEGRP = games @@ -21,27 +22,16 @@ +DIRPERM = 0775 # GAMEDIR also appears in config.h as "HACKDIR". - # -@@ -33,8 +32,8 @@ + # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR +@@ -35,9 +34,9 @@ # therefore there should not be anything in GAMEDIR that you want to keep # (if there is, you'll have to do the installation by hand or modify the # instructions) -GAMEDIR = $(PREFIX)/games/lib/$(GAME)dir --SHELLDIR = $(PREFIX)/games +GAMEDIR = $(PREFIX)/share/$(GAME) + VARDIR = $(GAMEDIR) +-SHELLDIR = $(PREFIX)/games +SHELLDIR = $(PREFIX)/bin # per discussion in Install.X11 and Install.Qt VARDATND = -@@ -184,9 +183,9 @@ - - install: $(GAME) $(VARDAT) dungeon spec_levs - # set up the directories -- -mkdir $(SHELLDIR) -+ -mkdir -p $(SHELLDIR) - -rm -rf $(GAMEDIR) -- -mkdir $(GAMEDIR) $(GAMEDIR)/save -+ -mkdir -p $(GAMEDIR) $(GAMEDIR)/save - -$(CHOWN) $(GAMEUID) $(GAMEDIR) $(GAMEDIR)/save - $(CHGRP) $(GAMEGRP) $(GAMEDIR) $(GAMEDIR)/save - chmod $(DIRPERM) $(GAMEDIR) $(GAMEDIR)/save >Release-Note: >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 Oct 12 18: 8: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 3F67837B66C for ; Thu, 12 Oct 2000 18:07:59 -0700 (PDT) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e9D17u702338; Thu, 12 Oct 2000 20:07:56 -0500 (CDT) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id e9D17iA92274; Thu, 12 Oct 2000 20:07:44 -0500 (CDT) (envelope-from steve) Date: Thu, 12 Oct 2000 20:07:39 -0500 From: Steve Price To: "Brandon D. Valentine" Cc: ports@FreeBSD.ORG Subject: Re: make distclean error Message-ID: <20001012200739.D81676@bonsai.knology.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from bandix@looksharp.net on Thu, Oct 12, 2000 at 07:22:04PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 07:22:04PM -0400, Brandon D. Valentine wrote: # [Not on -ports, Cc: accordingly.] # # After installing ports/editors/vim6, I ran make distclean and received # the following: # # reef# make distclean # ===> Cleaning for vim-6.0h # ===> Deleting distfiles for vim-6.0h # rmdir: /usr/ports/distfiles/vim: Directory not empty # *** Error code 1 (ignored) Something like the following patch should work. The second part is probably not necessary but makes it consistent with the rest of the similar targets. -steve Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.355 diff -u -r1.355 bsd.port.mk --- bsd.port.mk 2000/10/08 11:43:54 1.355 +++ bsd.port.mk 2000/10/13 00:59:27 @@ -2284,7 +2284,7 @@ done; \ fi) .if defined(DIST_SUBDIR) - -@${RMDIR} ${_DISTDIR} + -@${RMDIR} ${_DISTDIR} >/dev/null 2>&1 || ${TRUE} .endif .endif @@ -2301,7 +2301,7 @@ done; \ fi .if defined(DIST_SUBDIR) - @${ECHO} "${RMDIR} ${_DISTDIR} 2>/dev/null" + @${ECHO} "${RMDIR} ${_DISTDIR} 2>/dev/null || ${TRUE}" .endif .endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 19: 5: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9629E37B503; Thu, 12 Oct 2000 19:04:59 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA86531; Thu, 12 Oct 2000 19:04:59 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Thu, 12 Oct 2000 19:04:59 -0700 (PDT) From: Message-Id: <200010130204.TAA86531@freefall.freebsd.org> To: ijliao@terry.dragon2.net, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21937: update ports : net/mrtg to 2.9.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports : net/mrtg to 2.9.1 State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Thu Oct 12 19:04:39 PDT 2000 State-Changed-Why: Merged into 21787 Committed, Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21937 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 19:10:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C498E37B66D for ; Thu, 12 Oct 2000 19:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA89690; Thu, 12 Oct 2000 19:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.fix.no (totem.fix.no [213.142.66.130]) by hub.freebsd.org (Postfix) with ESMTP id 9917437B66D for ; Thu, 12 Oct 2000 19:03:26 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id B18593CAF; Fri, 13 Oct 2000 04:10:47 +0200 (CEST) Message-Id: <20001013021047.B18593CAF@totem.fix.no> Date: Fri, 13 Oct 2000 04:10:47 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21944: Update of ports: security/nessus* Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21944 >Category: ports >Synopsis: Update of ports: security/nessus* >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 Oct 12 19:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 4.1-STABLE i386 >Organization: Fluxpod Information eXchange >Environment: FreeBSD eggsilo.localnet 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Aug 28 10:23:12 CEST 2000 root@:/usr/src/sys/compile/EGGSILO i386 >Description: Updates the ports to version 1.0.5. >How-To-Repeat: >Fix: diff -Nur nessus.old/Makefile nessus/Makefile --- nessus.old/Makefile Thu Oct 5 08:42:24 2000 +++ nessus/Makefile Fri Oct 13 03:46:23 2000 @@ -6,25 +6,24 @@ # PORTNAME= nessus -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://cvs.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.sekure.net/pub/nessus/nessus-${NESSUS_REV}/src/ -DISTNAME= nessus-core-1.0.4 +MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://cvs.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ +DISTNAME= nessus-core-${PORTVERSION} MAINTAINER= anders@fix.no LIB_DEPENDS= nasl.1:${PORTSDIR}/security/nessus-libnasl -NESSUS_REV= ${DISTNAME:S/nessus-core-//g} - DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-core @@ -36,9 +35,9 @@ MAN8= nessusd.8 nessus-adduser.8 post-install: - @${ECHO} "==========================================================" - @${ECHO} "Be sure to erase your old ${PREFIX}/etc/nessus!" - @${ECHO} "The syntax of nessusd.users and nessusd.rules has changed!" - @${ECHO} "==========================================================" + @${ECHO} "================================================================================" + @${ECHO} "Use ${PREFIX}/sbin/update/nessus-update-plugins to update your plugin" + @${ECHO} "collection." + @${ECHO} "================================================================================" .include diff -Nur nessus.old/distinfo nessus/distinfo --- nessus.old/distinfo Sat Sep 9 14:51:20 2000 +++ nessus/distinfo Fri Oct 13 02:26:11 2000 @@ -1 +1 @@ -MD5 (nessus/nessus-core-1.0.4.tar.gz) = b6d66f613b3c45526195df9e0087dd63 +MD5 (nessus/nessus-core-1.0.5.tar.gz) = e5636b91642588c4bff8c69b582e3e01 diff -Nur nessus-libnasl.old/Makefile nessus-libnasl/Makefile --- nessus-libnasl.old/Makefile Sat Sep 9 14:51:25 2000 +++ nessus-libnasl/Makefile Fri Oct 13 03:44:33 2000 @@ -6,27 +6,23 @@ # PORTNAME= nessus-libnasl -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://cvs.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.sekure.net/pub/nessus/nessus-${NESSUS_REV}/src/ -DISTNAME= libnasl-1.0.4 - -PATCH_SITES= ${MASTER_SITES} -PATCHFILES= libnasl-patch-1 +MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://cvs.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ +DISTNAME= libnasl-${PORTVERSION} MAINTAINER= anders@fix.no LIB_DEPENDS= nessus.1:${PORTSDIR}/security/nessus-libraries - -NESSUS_REV= ${DISTNAME:S/libnasl-//g} DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/libnasl diff -Nur nessus-libnasl.old/distinfo nessus-libnasl/distinfo --- nessus-libnasl.old/distinfo Sat Sep 9 14:51:27 2000 +++ nessus-libnasl/distinfo Fri Oct 13 03:51:03 2000 @@ -1,2 +1 @@ -MD5 (nessus/libnasl-1.0.4.tar.gz) = 3a91b6d6a42b8b73124990a13bbd0da2 -MD5 (nessus/libnasl-patch-1) = a5588935d8d656de4ac3b95e8d3484ea +MD5 (nessus/libnasl-1.0.5.tar.gz) = cd64d77103817b562e0c4e8a77b8856e diff -Nur nessus-libraries.old/Makefile nessus-libraries/Makefile --- nessus-libraries.old/Makefile Sat Sep 9 14:51:36 2000 +++ nessus-libraries/Makefile Fri Oct 13 02:25:03 2000 @@ -6,21 +6,20 @@ # PORTNAME= nessus-libraries -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://cvs.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.sekure.net/pub/nessus/nessus-${NESSUS_REV}/src/ +MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://cvs.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ MAINTAINER= anders@fix.no - -NESSUS_REV= ${DISTNAME:S/nessus-libraries-//g} DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-libraries diff -Nur nessus-libraries.old/distinfo nessus-libraries/distinfo --- nessus-libraries.old/distinfo Sat Sep 9 14:51:39 2000 +++ nessus-libraries/distinfo Fri Oct 13 01:38:30 2000 @@ -1 +1 @@ -MD5 (nessus/nessus-libraries-1.0.4.tar.gz) = 1fe60e282532c6018ed402a275903c15 +MD5 (nessus/nessus-libraries-1.0.5.tar.gz) = f34c510ab6e05119b3d6cf66558adb7d diff -Nur nessus-plugins.old/Makefile nessus-plugins/Makefile --- nessus-plugins.old/Makefile Sat Sep 9 14:51:46 2000 +++ nessus-plugins/Makefile Fri Oct 13 02:25:33 2000 @@ -6,25 +6,25 @@ # PORTNAME= nessus-plugins -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 +PORTREVISION= 1 CATEGORIES= security -MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://cvs.nessus.org/pub/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.chg.ru/pub/security/nessus/nessus-${NESSUS_REV}/src/ \ - ftp://ftp.sekure.net/pub/nessus/nessus-${NESSUS_REV}/src/ +MASTER_SITES= ftp://ftp.cis.fed.gov/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://cvs.nessus.org/pub/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + http://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.esiea.fr/pub/mirrors/nessus/nessus-${PORTVERSION}/src/ \ + ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.chg.ru/pub/security/nessus/nessus-${PORTVERSION}/src/ \ + ftp://ftp.sekure.net/pub/nessus/nessus-${PORTVERSION}/src/ MAINTAINER= anders@fix.no BUILD_DEPENDS= ${LOCALBASE}/include/nessus/config.h:${PORTSDIR}/security/nessus \ ${LOCALBASE}/bin/nmap:${PORTSDIR}/security/nmap -RUN_DEPENDS= nmap:${PORTSDIR}/security/nmap - -NESSUS_REV= ${DISTNAME:S/nessus-plugins-//g} +RUN_DEPENDS= nmap:${PORTSDIR}/security/nmap \ + lynx:${PORTSDIR}/www/lynx DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-plugins diff -Nur nessus-plugins.old/distinfo nessus-plugins/distinfo --- nessus-plugins.old/distinfo Sat Sep 9 14:51:48 2000 +++ nessus-plugins/distinfo Fri Oct 13 01:52:43 2000 @@ -1 +1 @@ -MD5 (nessus/nessus-plugins-1.0.4.tar.gz) = dc6a2758761428f3bf66d0a06806d66a +MD5 (nessus/nessus-plugins-1.0.5.tar.gz) = a805e3195d52353beffb74900052ddaa diff -Nur nessus-plugins.old/pkg-plist nessus-plugins/pkg-plist --- nessus-plugins.old/pkg-plist Sat Sep 9 14:51:53 2000 +++ nessus-plugins/pkg-plist Fri Oct 13 02:12:19 2000 @@ -1,5 +1,4 @@ bin/nessus-build -sbin/nessus-update-plugins etc/nessus/accounts.txt etc/nessus/queso.conf lib/nessus/plugins/ColdFusion.nasl @@ -27,6 +26,7 @@ lib/nessus/plugins/an_httpd_cgis.nasl lib/nessus/plugins/analogx.nasl lib/nessus/plugins/analogx_dos.nasl +lib/nessus/plugins/analogx_traversal.nasl lib/nessus/plugins/annex_dos.nasl lib/nessus/plugins/apache_slash.nasl lib/nessus/plugins/apache_source_asp.nasl @@ -38,9 +38,11 @@ lib/nessus/plugins/auth_enabled.nasl lib/nessus/plugins/axent_raptor_dos.nasl lib/nessus/plugins/axis.nasl +lib/nessus/plugins/axis_camera.nasl lib/nessus/plugins/backorifice1.nasl lib/nessus/plugins/bb-hist.nasl lib/nessus/plugins/bb-hostsvc.nasl +lib/nessus/plugins/bboard.nasl lib/nessus/plugins/bftelnet.nasl lib/nessus/plugins/bigconf.nasl lib/nessus/plugins/bind_bof.nes @@ -53,6 +55,7 @@ lib/nessus/plugins/ca_unicenter_file_transfer_service.nasl lib/nessus/plugins/ca_unicenter_transport_service.nasl lib/nessus/plugins/cachemgr_cgi.nasl +lib/nessus/plugins/calendar.nasl lib/nessus/plugins/campas.nasl lib/nessus/plugins/cassandra_nntp_dos.nasl lib/nessus/plugins/cdk.nasl @@ -89,6 +92,7 @@ lib/nessus/plugins/dragon_telnet.nasl lib/nessus/plugins/dumpenv.nasl lib/nessus/plugins/echo.nasl +lib/nessus/plugins/eftp_dos.nasl lib/nessus/plugins/eicon_modem_dos.nasl lib/nessus/plugins/eserv.nasl lib/nessus/plugins/eviewer.nasl @@ -109,6 +113,7 @@ lib/nessus/plugins/fp_htimage.nasl lib/nessus/plugins/frontpage.nasl lib/nessus/plugins/frontpage_authors.nasl +lib/nessus/plugins/frontpage_dos.nasl lib/nessus/plugins/frontpage_dvwssr.nasl lib/nessus/plugins/frontpage_shtml.nasl lib/nessus/plugins/ftp_anonymous.nasl @@ -124,6 +129,7 @@ lib/nessus/plugins/ftp_realpath.nasl lib/nessus/plugins/ftp_root.nasl lib/nessus/plugins/ftp_servu_dos.nasl +lib/nessus/plugins/ftp_servu_dos2.nasl lib/nessus/plugins/ftp_site_exec.nasl lib/nessus/plugins/ftp_write_dirs.nes lib/nessus/plugins/ftpgate.nasl @@ -142,9 +148,12 @@ lib/nessus/plugins/hotsync.nasl lib/nessus/plugins/hp_printer_display.nasl lib/nessus/plugins/hp_remote_print.nasl +lib/nessus/plugins/hpux_ftpd.nasl lib/nessus/plugins/htdig.nasl +lib/nessus/plugins/htgrep.nasl lib/nessus/plugins/htmlscript.nasl lib/nessus/plugins/htsearch_location.nasl +lib/nessus/plugins/http_methods.nasl lib/nessus/plugins/http_version.nasl lib/nessus/plugins/httpd_nobody.nasl lib/nessus/plugins/hyperbomb.nasl @@ -157,6 +166,7 @@ lib/nessus/plugins/icmp_timestamp.nasl lib/nessus/plugins/icq_crash.nasl lib/nessus/plugins/idq_dll.nasl +lib/nessus/plugins/iis_anything_idq.nasl lib/nessus/plugins/iis_authentification_manager.nasl lib/nessus/plugins/iis_buffer_overflow.nasl lib/nessus/plugins/iis_crash.nasl @@ -169,6 +179,7 @@ lib/nessus/plugins/iis_scripts.nasl lib/nessus/plugins/iisadmin.nasl lib/nessus/plugins/imagemap.nasl +lib/nessus/plugins/imail_host_overflow.nasl lib/nessus/plugins/imail_imapd_overflow.nasl lib/nessus/plugins/imail_imonitor_overflow.nasl lib/nessus/plugins/imap_overflow.nasl @@ -214,6 +225,7 @@ lib/nessus/plugins/mstream_agent.nasl lib/nessus/plugins/mstream_handler.nasl lib/nessus/plugins/multicsp_detect.nasl +lib/nessus/plugins/multihtml.nasl lib/nessus/plugins/mysql_bad_password.nasl lib/nessus/plugins/mysql_unpassworded.nasl lib/nessus/plugins/nai_webshield_info.nasl @@ -222,6 +234,7 @@ lib/nessus/plugins/ncl_items.nasl lib/nessus/plugins/nessus_detect.nasl lib/nessus/plugins/nestea.nasl +lib/nessus/plugins/netauth.nasl lib/nessus/plugins/netbeans.nasl lib/nessus/plugins/netbios_name_get.nasl lib/nessus/plugins/netbus.nasl @@ -254,13 +267,17 @@ lib/nessus/plugins/oshare.nasl lib/nessus/plugins/ows_bin_cgi.nasl lib/nessus/plugins/ows_overflow.nasl +lib/nessus/plugins/pam_smb.nasl lib/nessus/plugins/passwordless_cayman_router.nasl lib/nessus/plugins/passwordless_hp_printer.nasl +lib/nessus/plugins/perl_browseable.nasl lib/nessus/plugins/perl_cgi.nasl lib/nessus/plugins/pfdipaly.nasl +lib/nessus/plugins/pftp.nasl lib/nessus/plugins/pgpnet_detect.nasl lib/nessus/plugins/phf.nasl lib/nessus/plugins/php.nasl +lib/nessus/plugins/php_file_upload.nasl lib/nessus/plugins/php_overflow.nasl lib/nessus/plugins/pimp.nasl lib/nessus/plugins/ping_host.nasl @@ -345,6 +362,7 @@ lib/nessus/plugins/rsh_users.nasl lib/nessus/plugins/sambar_cgi.nasl lib/nessus/plugins/sambar_mailit.nasl +lib/nessus/plugins/sambar_search_cgi.nasl lib/nessus/plugins/sambar_sendmail.nasl lib/nessus/plugins/sambar_sysadmin.nasl lib/nessus/plugins/sawmill.nasl @@ -355,6 +373,7 @@ lib/nessus/plugins/sendmail_redirection.nasl lib/nessus/plugins/shaft.nasl lib/nessus/plugins/shells.nasl +lib/nessus/plugins/shiva_default_pass.nasl lib/nessus/plugins/showmount.nasl lib/nessus/plugins/siteUserMod.nasl lib/nessus/plugins/slmail.nasl @@ -373,6 +392,11 @@ lib/nessus/plugins/smb_nt_ms00-029.nasl lib/nessus/plugins/smb_nt_ms00-036.nasl lib/nessus/plugins/smb_nt_ms00-047.nasl +lib/nessus/plugins/smb_nt_ms00-052.nasl +lib/nessus/plugins/smb_nt_ms00-053.nasl +lib/nessus/plugins/smb_nt_ms00-062.nasl +lib/nessus/plugins/smb_nt_ms00-065.nasl +lib/nessus/plugins/smb_nt_ms00-066.nasl lib/nessus/plugins/smb_reg_autologon.nasl lib/nessus/plugins/smb_reg_hklm.nasl lib/nessus/plugins/smb_reg_missing_winreg.nasl @@ -407,7 +431,9 @@ lib/nessus/plugins/stream.nasl lib/nessus/plugins/subseven.nasl lib/nessus/plugins/sunkill.nasl +lib/nessus/plugins/suse_cgi_bin_sdb.nasl lib/nessus/plugins/swat_detect.nasl +lib/nessus/plugins/swc_overflow.nasl lib/nessus/plugins/sygate_remote_control.nasl lib/nessus/plugins/systat.nasl lib/nessus/plugins/tcp_chorusing.nasl @@ -425,6 +451,8 @@ lib/nessus/plugins/tomcat_admin.nasl lib/nessus/plugins/tomcat_snoop.nasl lib/nessus/plugins/traceroute.nasl +lib/nessus/plugins/translate_f.nasl +lib/nessus/plugins/trinity.nasl lib/nessus/plugins/trinoo.nasl lib/nessus/plugins/unicast_dos.nasl lib/nessus/plugins/upload_cgi.nasl @@ -442,6 +470,7 @@ lib/nessus/plugins/web_traversal.nasl lib/nessus/plugins/webactive_log.nasl lib/nessus/plugins/webcart.nasl +lib/nessus/plugins/webdav.nasl lib/nessus/plugins/webdist.nasl lib/nessus/plugins/webfind.nasl lib/nessus/plugins/webgais.nasl @@ -453,11 +482,11 @@ lib/nessus/plugins/websitepro_overflow.nasl lib/nessus/plugins/webspeed.nasl lib/nessus/plugins/wftp.nasl +lib/nessus/plugins/wftp_241_dos.nasl lib/nessus/plugins/wftp_dos.nasl lib/nessus/plugins/whois_raw.nasl lib/nessus/plugins/win_trinoo.nasl lib/nessus/plugins/windmail.nasl -lib/nessus/plugins/windows_detect.nasl lib/nessus/plugins/wingate.nasl lib/nessus/plugins/wingate_denial.nasl lib/nessus/plugins/wingate_user.nasl @@ -470,18 +499,21 @@ lib/nessus/plugins/wu_ftpd_overflow.nasl lib/nessus/plugins/wu_ftpd_site_exec.nasl lib/nessus/plugins/wu_ftpd_site_newer.nasl +lib/nessus/plugins/www_too_long_auth.nasl lib/nessus/plugins/www_too_long_url.nasl lib/nessus/plugins/wwwboardpwd.nasl lib/nessus/plugins/xitami_overflow.nasl lib/nessus/plugins/xtramail_control.nasl lib/nessus/plugins/xtramail_helo.nasl lib/nessus/plugins/xtramail_pop_overflow.nasl +lib/nessus/plugins/yabb.nasl lib/nessus/plugins/yahoo_dos.nasl lib/nessus/plugins/zeus.nasl lib/nessus/plugins/zope.nasl lib/nessus/plugins_factory/Makefile lib/nessus/plugins_factory/libtool lib/nessus/plugins_factory/nessus.tmpl +sbin/nessus-update-plugins @dirrm lib/nessus/plugins_factory @dirrm lib/nessus/plugins @dirrm lib/nessus/reports >Release-Note: >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 Oct 12 19:13: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5264437B66C; Thu, 12 Oct 2000 19:13:04 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA90793; Thu, 12 Oct 2000 19:13:04 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Thu, 12 Oct 2000 19:13:04 -0700 (PDT) From: Message-Id: <200010130213.TAA90793@freefall.freebsd.org> To: osa@FreeBSD.org.ru, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20727: new port: databases/db3 (Berkeley DB revision 3) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: databases/db3 (Berkeley DB revision 3) State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Thu Oct 12 19:12:36 PDT 2000 State-Changed-Why: Port already exists http://www.freebsd.org/cgi/query-pr.cgi?pr=20727 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 19:17:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 7681237B503 for ; Thu, 12 Oct 2000 19:17:13 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e9D2HDM26497 for ports@freebsd.org; Thu, 12 Oct 2000 19:17:13 -0700 (PDT) Date: Thu, 12 Oct 2000 19:17:13 -0700 From: Alfred Perlstein To: ports@freebsd.org Subject: making concurrant builds safe. Message-ID: <20001012191713.E272@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If anyone has time, I had a nifty idea to protect concurrant building of ports: It might make sense to use the lockf(1) utility to make sure that two ports that started to build at the same time and had the same dependancy don't attempt to build the same dependancy at the same time? I think a simple lockf on the makefile would be enough to support that. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 20:21:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id A85EC37B66C; Thu, 12 Oct 2000 20:21:16 -0700 (PDT) Received: from localhost (bandix@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id XAA47133; Thu, 12 Oct 2000 23:22:13 -0400 (EDT) (envelope-from bandix@looksharp.net) Date: Thu, 12 Oct 2000 23:22:12 -0400 (EDT) From: "Brandon D. Valentine" To: Scott Dodson Cc: ports@freebsd.org, FreeBSD-STABLE Subject: Re: Minor problem with new ports setup In-Reply-To: <20001012231442.A22710@beoclu-01.phy.gasou.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 Thu, 12 Oct 2000, Scott Dodson wrote: >The new ports config has a problem with all the README.html files. >They all point to pkg/DESCR for a description, but the new location is >pkg-DESCR. I didn't know the correct place to address this, so I >posted it here, where should I have posted this? > >-scott [Please wrap at 72 characters] You should have posted it to freebsd-ports. I've forwarded it for you. =) BTW, if you read the mailing list charters you'll get a better picture of where to post what. They're in the handbook in the mailing list section. -- Brandon D. Valentine "Few things are harder to put up with than the annoyance of a good example." -- Mark Twain, Pudd'nhead Wilson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 20:48:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dt051n37.san.rr.com (dt051n37.san.rr.com [204.210.32.55]) by hub.freebsd.org (Postfix) with ESMTP id 8594537B502; Thu, 12 Oct 2000 20:48:21 -0700 (PDT) Received: from gorean.org (Studded@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id UAA22828; Thu, 12 Oct 2000 20:48:20 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <39E68603.5AC4275C@gorean.org> Date: Thu, 12 Oct 2000 20:48:19 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT-100 i386) X-Accept-Language: en MIME-Version: 1.0 To: Ade Lovett Cc: Warner Losh , ports@FreeBSD.org Subject: Re: LOCALBASE vs PREFIX References: <200010122128.PAA72178@harmony.village.org> <200010122218.QAA72839@harmony.village.org> <20001012173222.B48659@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 Ade Lovett wrote: > Do you have separate locations for "/usr/X11R6" and "/usr/local", > or does everything go under /software/{bin,...} If we're designing a new system from scratch, I'd like to put in a vote for getting ${X11BASE} out of /usr. Personally I would like to see everything in /usr/local. I was playing around with some plans the other day to try and make a system where most everything was mounted read only and finally threw my hands up. Doug -- "The dead cannot be seduced." - Kai, "Lexx" Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 21: 2:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 30C8937B66C for ; Thu, 12 Oct 2000 21:02:07 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13jw2f-000GM3-00; Thu, 12 Oct 2000 23:01:57 -0500 Date: Thu, 12 Oct 2000 23:01:56 -0500 From: Ade Lovett To: Doug Barton Cc: ports@FreeBSD.org Subject: Re: LOCALBASE vs PREFIX Message-ID: <20001012230156.A62778@FreeBSD.org> References: <200010122128.PAA72178@harmony.village.org> <200010122218.QAA72839@harmony.village.org> <20001012173222.B48659@FreeBSD.org> <39E68603.5AC4275C@gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E68603.5AC4275C@gorean.org>; from DougB@gorean.org on Thu, Oct 12, 2000 at 08:48:19PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 08:48:19PM -0700, Doug Barton wrote: > If we're designing a new system from scratch, I'd like to put in a vote > for getting ${X11BASE} out of /usr. Personally I would like to see > everything in /usr/local. I was playing around with some plans the other > day to try and make a system where most everything was mounted read only > and finally threw my hands up. To be honest, if we come out of this with nothing but a plan to kill having two locations to put stuff, wherever that place may be (/usr/local, /usr/packages, /usr/FreeBSD, etc..) then I believe we will have scored a big plus. Large programs (environments, even) such as GNOME and KDE really go a long way to showing up the /usr/{X11R6,local} anachronism for what it is. It should go. Replacing it with a full stowage system that works would be ideal. Just having everything in /usr/packages/... would be a major step forward, imo. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 23:34:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mx6.port.ru (mx6.port.ru [194.67.23.42]) by hub.freebsd.org (Postfix) with ESMTP id 3DE6837B502 for ; Thu, 12 Oct 2000 23:34:23 -0700 (PDT) Received: from f10.int ([10.0.0.78] helo=f10.mail.ru) by mx6.port.ru with esmtp (Exim 3.14 #30) id 13jyQA-000Hdz-00 for freebsd-ports@freebsd.org; Fri, 13 Oct 2000 10:34:22 +0400 Received: from mail by f10.mail.ru with local (Exim 3.14 #30) id 13jyQA-0004Bv-00 for freebsd-ports@freebsd.org; Fri, 13 Oct 2000 10:34:22 +0400 Received: from [194.67.81.106] by koi.mail.port.ru with HTTP; Fri, 13 Oct 2000 06:34:22 +0000 (GMT) From: "Andrey Novikov" To: freebsd-ports@freebsd.org Subject: KDE 2pre broken? Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: unknown via proxy [194.67.81.106] Reply-To: "Andrey Novikov" Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Message-Id: Date: Fri, 13 Oct 2000 10:34:22 +0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! Last evening I've built KDE 2pre (1.94) from ports, installed it and it falls into core on startup. Then I tried to install it as a package - it started up successfuly but most of the configuration utilities could not start and most items in menu had four instances and logout didn't work at all. That's all I could find during last evening. Is it not working only for me or it's just ok? I'm on 4.1.1-STABLE with XFree86-4 built from ports. I think it's too bad for prerelease version :(((( Andrey Novikov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 12 23:53: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ratogi.arc.nasa.gov (ratogi.arc.nasa.gov [128.102.132.244]) by hub.freebsd.org (Postfix) with ESMTP id 1C8B237B503; Thu, 12 Oct 2000 23:53:01 -0700 (PDT) Received: from localhost (ratogi@localhost) by ratogi.arc.nasa.gov (8.11.0/8.11.0) with ESMTP id e9D6mva29322; Thu, 12 Oct 2000 23:48:58 -0700 (PDT) (envelope-from ratogi@eecs.berkeley.edu) X-Authentication-Warning: ratogi.arc.nasa.gov: ratogi owned process doing -bs Date: Thu, 12 Oct 2000 23:48:57 -0700 (PDT) From: Ray Gilstrap X-Sender: ratogi@ratogi.arc.nasa.gov To: Scott Dodson Cc: "Brandon D. Valentine" , ports@FreeBSD.ORG, FreeBSD-STABLE Subject: Re: Minor problem with new ports setup 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 'make readmes' at the top of the ports tree (or within a category) will fix this globally (or within the category). If you'd rather not wait for all that to finish, you can fix it on a case-by-case basis by doing 'make readme' (singular) in a particular port's directory. Ray == RAY GILSTRAP ====================================================== UC Berkeley Electrical Engineering/ ratogi@eecs.berkeley.edu NASA Research and Education Network http://www.ratogi.net ====================================================================== On Thu, 12 Oct 2000, Brandon D. Valentine wrote: : On Thu, 12 Oct 2000, Scott Dodson wrote: : : >The new ports config has a problem with all the README.html files. : >They all point to pkg/DESCR for a description, but the new location is : >pkg-DESCR. I didn't know the correct place to address this, so I : >posted it here, where should I have posted this? : > : >-scott : : [Please wrap at 72 characters] : : You should have posted it to freebsd-ports. I've forwarded it for you. : =) : : BTW, if you read the mailing list charters you'll get a better picture : of where to post what. They're in the handbook in the mailing list : section. : : -- : Brandon D. Valentine : "Few things are harder to put up with than the annoyance of a : good example." -- Mark Twain, Pudd'nhead Wilson : : : : To Unsubscribe: send mail to majordomo@FreeBSD.org : with "unsubscribe freebsd-stable" 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 Fri Oct 13 0:31:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from enigma.whacky.net (enigma.whacky.net [194.109.204.120]) by hub.freebsd.org (Postfix) with ESMTP id DD13837B502; Fri, 13 Oct 2000 00:31:55 -0700 (PDT) Received: (from stephanb@localhost) by enigma.whacky.net (8.11.0/8.9.3) id e9D7Vos55917; Fri, 13 Oct 2000 09:31:50 +0200 (CEST) (envelope-from stephanb) Date: Fri, 13 Oct 2000 09:31:50 +0200 From: Stephan van Beerschoten To: Scott Dodson Cc: freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Minor problem with new ports setup Message-ID: <20001013093149.A55842@enigma.whacky.net> References: <20001012231442.A22710@beoclu-01.phy.gasou.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001012231442.A22710@beoclu-01.phy.gasou.edu>; from sdodson@phy.gasou.edu on Thu, Oct 12, 2000 at 11:14:42PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 12 Oct 2000, Scott Dodson wrote: > The new ports config has a problem with all the README.html files. They all point to pkg/DESCR for a description, but the new location is pkg-DESCR. I didn't know the correct place to address this, so I posted it here, where should I have posted this? > There is a FreeBSD-ports mailinglist for these kinds of information. I've cc'ed them (I am not on the list myself) so they should get the message too now :) -Steve -- Stephan van Beerschoten stephanb@whacky.net PGP fingerprint: 4557 9761 B212 FB4C 778D 3529 C42A 2D27 "When the counter reaches zero: RUN!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 1:34:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id DA49437B66C for ; Fri, 13 Oct 2000 01:34:31 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13k0FN-000Nl6-00; Fri, 13 Oct 2000 10:31:21 +0200 Date: Fri, 13 Oct 2000 10:31:20 +0200 From: Johann Visagie To: Trevor Johnson Cc: James Housley , Carlos A M dos Santos , FreeBSD ports mailing list Subject: Re: Script to genarate PLIST? Message-ID: <20001013103120.G89714@fling.sanbi.ac.za> References: <20001012120017.A97048@fling.sanbi.ac.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from trevor@jpj.net on Thu, Oct 12, 2000 at 02:57:05PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Trevor Johnson on 2000-10-12 (Thu) at 14:57:05 -0400: > > > and the output of > > the find that adds the directories to $PLIST through "sort -r" (pretty much > > ensures the directories are removed in a sane order when deinstalling). > > Instead of sort -r, using the -d option will also work. Hmm, you're right, so it does. Cool. :) > > Hmm, and add something to remove man pages from $PLIST, I suppose. :-) > > Let me see what I can do... > > A pass through "grep -vw man" should give a close approximation. Then > you'll want to generate the MAN lines. Here's what I've come up with > (contains tabs and a long line): [ etc. ] Hrm, this is probably a more general approach than the one I took in my script, which assumes that the MAN
variables in Makefile are already correctly specified. Maybe all of this should be consolidated into a single script for ports/Tools/scripts ? -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 2: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BF3D037B66D for ; Fri, 13 Oct 2000 02:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA38979; Fri, 13 Oct 2000 02:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ws106.nomadiclab.com (ws99.nomadiclab.com [195.165.196.99]) by hub.freebsd.org (Postfix) with ESMTP id 2321E37B502 for ; Fri, 13 Oct 2000 01:57:06 -0700 (PDT) Received: from ws125.nomadiclab.com (ws125.nomadiclab.com [195.165.196.125]) by ws106.nomadiclab.com (Postfix) with ESMTP id 8ABB272501 for ; Fri, 13 Oct 2000 11:56:59 +0300 (EEST) Received: (from martti@localhost) by ws125.nomadiclab.com (8.11.0/8.9.3) id e9D8ux102034; Fri, 13 Oct 2000 11:56:59 +0300 (EEST) (envelope-from martti@nomadiclab.com) Message-Id: <200010130856.e9D8ux102034@ws125.nomadiclab.com> Date: Fri, 13 Oct 2000 11:56:59 +0300 (EEST) From: martti.kuparinen@ericsson.com Reply-To: martti.kuparinen@ericsson.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21949: [PATCH] p5-IMAP-Admin upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21949 >Category: ports >Synopsis: [PATCH] p5-IMAP-Admin upgrade >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 Oct 13 02:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: Oy L M Ericsson Ab >Environment: >Description: Update p5-IMAP-Admin to version 1.3.7. New features: - subscribe/unsubscribe - rename - h_delete (hiearchical delete) >How-To-Repeat: >Fix: diff -ru /usr/ports/mail/p5-IMAP-Admin/Makefile p5-IMAP-Admin/Makefile --- /usr/ports/mail/p5-IMAP-Admin/Makefile Mon Jul 10 09:01:28 2000 +++ p5-IMAP-Admin/Makefile Fri Oct 13 11:50:31 2000 @@ -6,7 +6,7 @@ # PORTNAME= IMAP-Admin -PORTVERSION= 1.2.5 +PORTVERSION= 1.3.7 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= IMAP diff -ru /usr/ports/mail/p5-IMAP-Admin/distinfo p5-IMAP-Admin/distinfo --- /usr/ports/mail/p5-IMAP-Admin/distinfo Fri Jul 7 22:25:24 2000 +++ p5-IMAP-Admin/distinfo Fri Oct 13 11:50:57 2000 @@ -1 +1 @@ -MD5 (IMAP-Admin-1.2.5.tar.gz) = 064d70d184e7e78f364dc3d7f1859ba3 +MD5 (IMAP-Admin-1.3.7.tar.gz) = 920f8be83a79bf93186245e83daddb45 >Release-Note: >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 Oct 13 2:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF73537B66F for ; Fri, 13 Oct 2000 02:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA54009; Fri, 13 Oct 2000 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id BBA1437B502 for ; Fri, 13 Oct 2000 02:36:34 -0700 (PDT) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id NAA87490; Fri, 13 Oct 2000 13:36:29 +0400 (MSD) (envelope-from dima) Message-Id: <200010130936.NAA87490@chg.ru> Date: Fri, 13 Oct 2000 13:36:29 +0400 (MSD) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21950: Update port: www/calamaris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21950 >Category: ports >Synopsis: Update port: www/calamaris >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 Oct 13 02:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -Nur calamaris.old/Makefile calamaris/Makefile --- calamaris.old/Makefile Mon Apr 10 07:13:01 2000 +++ calamaris/Makefile Fri Oct 13 13:33:47 2000 @@ -6,9 +6,9 @@ # PORTNAME= calamaris -PORTVERSION= 2.29 +PORTVERSION= 2.39 CATEGORIES= www textproc -MASTER_SITES= http://calamaris.cord.de/ \ +MASTER_SITES= http://cord.de/tools/squid/calamaris/ \ ftp://ftp.gpad.ac.ru/pub/FreeBSD/distfiles/ MAINTAINER= dima@Chg.RU @@ -18,9 +18,7 @@ MAN1= calamaris.1 post-patch: - @ ${MV} ${WRKSRC}/calamaris ${WRKSRC}/calamaris.pre_sed - @ ${SED} -e 's#/usr/bin/perl#${PERL5}#' ${WRKSRC}/calamaris.pre_sed \ - > ${WRKSRC}/calamaris + @ ${PERL} -pi -e 's#/usr/bin/perl#${PERL5}#' ${WRKSRC}/calamaris do-install: @ ${INSTALL_MAN} ${WRKSRC}/calamaris.1 ${PREFIX}/man/man1/calamaris.1 diff -Nur calamaris.old/distinfo calamaris/distinfo --- calamaris.old/distinfo Wed Dec 29 18:23:43 1999 +++ calamaris/distinfo Fri Oct 13 13:32:37 2000 @@ -1 +1 @@ -MD5 (calamaris-2.29.tar.gz) = baf74552c3ea4025cdfae5e85b8797e7 +MD5 (calamaris-2.39.tar.gz) = 4397ecb20c4dbbedc30e4fd58e80c499 diff -Nur calamaris.old/pkg-descr calamaris/pkg-descr --- calamaris.old/pkg-descr Mon May 3 08:40:16 1999 +++ calamaris/pkg-descr Fri Oct 13 13:31:59 2000 @@ -3,4 +3,4 @@ and outgoing requests, second and Top-level destinations, content-types and performance. -WWW: http://Calamaris.Cord.de/ +WWW: http://Cord.de/tools/squid/calamaris/ >Release-Note: >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 Oct 13 2:48: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id A4AEE37B503 for ; Fri, 13 Oct 2000 02:48:01 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id LAA95079 for ; Fri, 13 Oct 2000 11:47:17 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e9D9jW217191 for freebsd-ports@FreeBSD.org; Fri, 13 Oct 2000 02:45:32 -0700 (PDT) (envelope-from reg) Date: Fri, 13 Oct 2000 02:45:31 -0700 From: Jeremy Lea To: freebsd-ports@FreeBSD.org Subject: Hopefully bsd.gnome.mk working... Message-ID: <20001013024531.X30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , freebsd-ports@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, I've finnished sweeping through the ports I touched, and hopefully they now all build without error on bento. If I touched your port, and it still has a build error, then it's either something which existed before, or a problem which I can't recreate. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 3: 0: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7307A37B66D for ; Fri, 13 Oct 2000 03:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA60668; Fri, 13 Oct 2000 03:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1F98A37B503; Fri, 13 Oct 2000 02:52:08 -0700 (PDT) Message-Id: <20001013095208.1F98A37B503@hub.freebsd.org> Date: Fri, 13 Oct 2000 02:52:08 -0700 (PDT) From: m-kawata@cd.jp.nec.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21951: ports/databases/db3: cannot configure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21951 >Category: ports >Synopsis: ports/databases/db3: cannot configure >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 13 03:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kawata Masahiko >Release: FreeBSD-4.1R >Organization: >Environment: FreeBSD aiko 4.1-RELEASE FreeBSD 4.1-RELEASE #14: Wed Oct 4 08:17:12 GMT 2000 m.kawata@aiko:/usr/src/sys/compile/RA20 i386 >Description: In original source of db-3.1.17.tar.gz, configure script dist/configure has permition 555. This port needs to modify configure script for libtool in , but it's failed to overwrite modified configure script. >How-To-Repeat: 'make configure', or simply 'make' in ports/databases/db3 %make configure ===> Extracting for db3-3.1.17 >Fix: patch ports/databases/db3/Makefile --- Makefile.orig Fri Sep 22 16:48:50 2000 +++ Makefile Fri Oct 13 08:28:59 2000 @@ -32,4 +32,7 @@ pre-patch: @${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/${CONFIGURE_SCRIPT} +pre-configure: + @${CHMOD} 755 ${WRKSRC}/${CONFIGURE_SCRIPT} + .include >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for db-3.1.17.tar.gz. ===> db3-3.1.17 depends on executable: libtool - found ===> Patching for db3-3.1.17 ===> Applying FreeBSD patches for db3-3.1.17 ===> Configuring for db3-3.1.17 cannot create ../dist/configure: permission denied To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 3:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3118237B66E for ; Fri, 13 Oct 2000 03:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA78436; Fri, 13 Oct 2000 03:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from srodberg-host149.dsl.visi.com (srodberg-host149.dsl.visi.com [208.42.48.149]) by hub.freebsd.org (Postfix) with ESMTP id 12E7C37B66C for ; Fri, 13 Oct 2000 03:41:37 -0700 (PDT) Received: (from eagle@localhost) by srodberg-host149.dsl.visi.com (8.11.1/8.11.0) id e9DAfai43666; Fri, 13 Oct 2000 05:41:36 -0500 (CDT) (envelope-from eagle) Message-Id: <200010131041.e9DAfai43666@srodberg-host149.dsl.visi.com> Date: Fri, 13 Oct 2000 05:41:36 -0500 (CDT) From: eagle@srodberg-host149.dsl.visi.com Reply-To: srodberg@visi.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21952: make readmes in ports is broke Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21952 >Category: ports >Synopsis: make readmes in ports is broke >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 13 03:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Rodberg >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: FreeBSD 4.1.1-STABLE with current ports tree. >Description: Doing a 'make readmes' in the ports tree has all the descriptions in the README.html's as (no description) >How-To-Repeat: install the newest ports tree, and do a make readmes. >Fix: *** /usr/ports/Mk/bsd.port.subdir.mk.orig Fri Oct 13 05:29:09 2000 --- /usr/ports/Mk/bsd.port.subdir.mk Fri Oct 13 05:31:41 2000 *************** *** 210,217 **** .else @echo -n ''"`cd ${entry}; make package-name | ${HTMLIFY}`: " >> $@.tmp .endif ! .if exists(${entry}/pkg/COMMENT) ! @${HTMLIFY} ${entry}/pkg/COMMENT >> $@.tmp .else @echo "(no description)" >> $@.tmp .endif --- 210,217 ---- .else @echo -n ''"`cd ${entry}; make package-name | ${HTMLIFY}`: " >> $@.tmp .endif ! .if exists(${entry}/pkg-comment) ! @${HTMLIFY} ${entry}/pkg-comment >> $@.tmp .else @echo "(no description)" >> $@.tmp .endif >Release-Note: >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 Oct 13 4: 0:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA4CE37B502; Fri, 13 Oct 2000 04:00:40 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA82794; Fri, 13 Oct 2000 04:00:40 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Fri, 13 Oct 2000 04:00:40 -0700 (PDT) From: Message-Id: <200010131100.EAA82794@freefall.freebsd.org> To: ats@first.gmd.de, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21345: ports/biology/molden has a checksum error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/biology/molden has a checksum error State-Changed-From-To: feedback->closed State-Changed-By: jeh State-Changed-When: Fri Oct 13 03:59:49 PDT 2000 State-Changed-Why: Still no visable feedback from MAINTAINER Also bumped PORTREVISION http://www.freebsd.org/cgi/query-pr.cgi?pr=21345 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 5:10:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAA8537B503 for ; Fri, 13 Oct 2000 05:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10072; Fri, 13 Oct 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nadja.cis.ibaraki.ac.jp (nadja.cis.ibaraki.ac.jp [157.80.87.69]) by hub.freebsd.org (Postfix) with ESMTP id 7CAAA37B502 for ; Fri, 13 Oct 2000 05:07:13 -0700 (PDT) Received: (from th@localhost) by nadja.cis.ibaraki.ac.jp (8.11.1/8.11.1) id e9DC77856667; Fri, 13 Oct 2000 21:07:07 +0900 (JST) (envelope-from th) Message-Id: <200010131207.e9DC77856667@nadja.cis.ibaraki.ac.jp> Date: Fri, 13 Oct 2000 21:07:07 +0900 (JST) From: th@cis.ibaraki.ac.jp Reply-To: th@cis.ibaraki.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21953: New port: astro/SETISupport Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21953 >Category: ports >Synopsis: New port: astro/SETISupport >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 Oct 13 05:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: HIYAMA Takeshi >Release: FreeBSD 4.0-STABLE i386 >Organization: Dept. of Comp. & Info. Sci.s, Ibaraki University >Environment: >Description: JAVA application that shows current state of seti@home client >How-To-Repeat: >Fix: # 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: # # SETIsupport/ # SETIsupport/files # SETIsupport/files/SETISupport.sh # SETIsupport/Makefile # SETIsupport/pkg-comment # SETIsupport/pkg-descr # SETIsupport/pkg-plist # SETIsupport/distinfo # SETIsupport/pkg-message # echo c - SETIsupport/ mkdir -p SETIsupport/ > /dev/null 2>&1 echo c - SETIsupport/files mkdir -p SETIsupport/files > /dev/null 2>&1 echo x - SETIsupport/files/SETISupport.sh sed 's/^X//' >SETIsupport/files/SETISupport.sh << 'END-of-SETIsupport/files/SETISupport.sh' X#!/bin/sh X# X XCLASSPATH=${CLASSPATH}:/usr/local/share/java/SETISupport/SETISupport.jar Xexport CLASSPATH X Xif [ ! -d ${SETISUPPORT_WRKDIR:=${HOME}/.SETISupport} ]; then X mkdir ${SETISUPPORT_WRKDIR} Xfi Xcd ${SETISUPPORT_WRKDIR} Xexec /usr/local/bin/javavm SETISupport $@ END-of-SETIsupport/files/SETISupport.sh echo x - SETIsupport/Makefile sed 's/^X//' >SETIsupport/Makefile << 'END-of-SETIsupport/Makefile' X# New ports collection makefile for: SETISupport X# Date Created: 1 Jul 2000 X# Whom: HIYAMA Takeshi X# X# $FreeBSD$ X# X XPORTNAME= SETISupport XPORTVERSION= 0.74 XCATEGORIES= astro java XMASTER_SITES= http://members5.cool.ne.jp/%7Egrgr56/SETITest/ XDISTNAME= ${PORTNAME} XEXTRACT_SUFX= .jar XEXTRACT_ONLY= X XMAINTAINER= th@cis.ibaraki.ac.jp X XRUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ X ${LOCALBASE}/etc/javavms:${PORTSDIR}/java/jre \ X setiathome:${PORTSDIR}/astro/setiathome X XUSE_XLIB= yes XNO_BUILD= yes X Xdo-install: X @${MKDIR} ${PREFIX}/share/java/SETISupport X @${INSTALL_DATA} ${DISTDIR}/SETISupport.jar ${PREFIX}/share/java/SETISupport X @${INSTALL_SCRIPT} ${FILESDIR}/SETISupport.sh ${PREFIX}/bin/SETISupport Xpost-install: X @${CAT} ${PKGMESSAGE} X X.include END-of-SETIsupport/Makefile echo x - SETIsupport/pkg-comment sed 's/^X//' >SETIsupport/pkg-comment << 'END-of-SETIsupport/pkg-comment' XJAVA application that shows current state of seti@home client END-of-SETIsupport/pkg-comment echo x - SETIsupport/pkg-descr sed 's/^X//' >SETIsupport/pkg-descr << 'END-of-SETIsupport/pkg-descr' XThis is a JAVA application that shows the current state Xof you're seti@home client graphically. XIt will show the details of data currently analyzing, Xand which direction the data came from. X XWWW: http://member.nifty.ne.jp/GOtsubo/contents/SETISupport/edownload.html END-of-SETIsupport/pkg-descr echo x - SETIsupport/pkg-plist sed 's/^X//' >SETIsupport/pkg-plist << 'END-of-SETIsupport/pkg-plist' Xbin/SETISupport Xshare/java/SETISupport/SETISupport.jar X@dirrm share/java/SETISupport END-of-SETIsupport/pkg-plist echo x - SETIsupport/distinfo sed 's/^X//' >SETIsupport/distinfo << 'END-of-SETIsupport/distinfo' XMD5 (SETISupport.jar) = 236f2dc4aed526bca1db57e2846f858b END-of-SETIsupport/distinfo echo x - SETIsupport/pkg-message sed 's/^X//' >SETIsupport/pkg-message << 'END-of-SETIsupport/pkg-message' XIt will create a working directory ${HOME}/.SETISupport XIf you don't like this working directory, Xplease set environment variable "SETISUPPORT_WRKDIR" to the directory you like. X XFor Example, if you want working directory to be /var/db/setiathome , X setenv SETISUPPORT_WRKDIR /var/db/setiathome X for csh or tcsh X export SETISUPPORT_WRKDIR=/var/db/setiathome X for sh or bash X XMaybe you want set this to the working directory setiathome, Xbut don't forget that you need write permission for working directory. XIf you installed setiathome from ports or package, Xsetiathome's working directory is owned by nobody. END-of-SETIsupport/pkg-message exit >Release-Note: >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 Oct 13 5:20:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E14C37B66D for ; Fri, 13 Oct 2000 05:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA13588; Fri, 13 Oct 2000 05:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 7D48E37B66E for ; Fri, 13 Oct 2000 05:11:51 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13k3ga-00038M-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 13 Oct 2000 14:11:40 +0200 Message-Id: Date: Fri, 13 Oct 2000 14:11:40 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21954: Port update: biology/p5-bioperl (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21954 >Category: ports >Synopsis: Port update: biology/p5-bioperl (maintainer) >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 Oct 13 05:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 3.5-STABLE i386 >Organization: Electric Genetics >Environment: >Description: - Update port biology/p5-bioperl from 0.6.1 to 0.6.2 (significant bugfix release) - Update Makefile to make use of PERL_CONFIGURE - Alphabetise $PLIST, as well as MAN3 in Makefile - General cleaning up of Makefile - Tested on 3.5-STABLE and 5.0-CURRENT >How-To-Repeat: >Fix: diff -ruN p5-bioperl.bak/Makefile p5-bioperl/Makefile --- p5-bioperl.bak/Makefile Fri Oct 13 13:57:18 2000 +++ p5-bioperl/Makefile Fri Oct 13 13:52:43 2000 @@ -6,7 +6,7 @@ # PORTNAME= bioperl -PORTVERSION= 0.6.1 +PORTVERSION= 0.6.2 CATEGORIES= biology perl5 MASTER_SITES= ftp://bio.perl.org/pub/DIST/ \ http://bio.perl.org/Core/Latest/ \ @@ -17,108 +17,67 @@ MAINTAINER= johann@egenetics.com -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Ace.pm:${PORTSDIR}/biology/p5-AcePerl - -USE_PERL5= YES - -EXT_WRKSRC= ${WRKDIR}/bioperl-ext-06 - -MAN3= Bio::Tools::CodonTable.3 \ - Bio::PrimarySeq.3 \ - Bio::Tools::SeqStats.3 \ - Bio::SimpleAlign.3 \ - Bio::Search::Processor::Fasta.3 \ - Bio::Root::Xref.3 \ - Bio::Annotation::DBLink.3 \ - Bio::SeqIO::swiss.3 \ - Bio::Annotation::Comment.3 \ - Bio::Tools::Sim4::Results.3 \ - Bio::Annotation::Reference.3 \ - Bio::SeqIO::pir.3 \ - Bio::Search::Hit::Fasta.3 \ - Bio::Tools::SeqAnal.3 \ - Bio::Annotation.3 \ - Bio::Tools::Blast::HTML.3 \ - Bio::Tools::HMMER::Results.3 \ - Bio::SeqIO::scf.3 \ - Bio::SeqIO::genbank.3 \ - Bio::Root::RootI.3 \ - Bio::Tools::SeqWords.3 \ - Bio::Root::Global.3 \ - Bio::Tools::pSW.3 \ - Bio::SeqIO::raw.3 \ - Bio::Tools::Blast::HSP.3 \ - bioperl.3 \ - Bio::RangeI.3 \ - Bio::Search::Processor.3 \ - Bio::Root::Object.3 \ - Bio::Tools::WWW.3 \ - Bio::PrimarySeqI.3 \ - Bio::Index::Abstract.3 \ - Bio::DB::Ace.3 \ - Bio::SeqFeature::Generic.3 \ - Bio::DB::SeqI.3 \ - Bio::Root::Vector.3 \ - Bio::Seq.3 \ - Bio::Range.3 \ - Bio::UnivAln.3 \ - Bio::Tools::Blast::Run::Webblast.3 \ - Bio::SeqIO::gcg.3 \ - biodesign.3 \ - Bio::Tools::RestrictionEnzyme.3 \ - Bio::DB::RandomAccessI.3 \ - biostart.3 \ - Bio::Tools::Sim4::Exon.3 \ - Bio::Search::Hit::HitI.3 \ - bioback.3 \ - Bio::Tools::HMMER::Domain.3 \ - Bio::SeqIO::FTHelper.3 \ - Bio::Root::IOManager.3 \ - Bio::LocatableSeq.3 \ - Bio::Index::AbstractSeq.3 \ - Bio::Tools::Fasta.3 \ - Bio::Tools::Blast::Sbjct.3 \ - Bio::Tools::IUPAC.3 \ - Bio::SeqIO.3 \ - Bio::SeqIO::MultiFile.3 \ - Bio::Tools::AlignFactory.3 \ - Bio::SeqIO::fasta.3 \ - Bio::SeqFeature::FeaturePair.3 \ - Bio::DB::GenBank.3 \ - Bio::SeqI.3 \ - Bio::Tools::Blast.3 \ - Bio::Tools::HMMER::Set.3 \ - Bio::SeqFeatureI.3 \ - Bio::SearchDist.3 \ - Bio::Tools::Sigcleave.3 \ - Bio::Search::Result::ResultI.3 \ - Bio::Root::Utilities.3 \ - Bio::Root::Err.3 \ - Bio::Search::Result::Fasta.3 \ - Bio::Tools::SeqPattern.3 \ +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/HTTP/Request/Common.pm:${PORTSDIR}/www/p5-libwww \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Ace.pm:${PORTSDIR}/biology/p5-AcePerl \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/IO/Scalar.pm:${PORTSDIR}/devel/p5-IO-stringy + +PERL_CONFIGURE= YES + +MAN3= Bio::Annotation.3 Bio::Annotation::Comment.3 \ + Bio::Annotation::DBLink.3 Bio::Annotation::Reference.3 \ + Bio::DB::Ace.3 Bio::DB::GenBank.3 Bio::DB::GenPept.3 \ + Bio::DB::RandomAccessI.3 Bio::DB::SeqI.3 \ + Bio::Index::Abstract.3 Bio::Index::AbstractSeq.3 \ + Bio::Index::EMBL.3 Bio::Index::Fasta.3 \ + Bio::Index::SwissPfam.3 Bio::LocatableSeq.3 \ + Bio::PrimarySeq.3 Bio::PrimarySeqI.3 Bio::Range.3 \ + Bio::RangeI.3 Bio::Root::Err.3 Bio::Root::Global.3 \ + Bio::Root::IOManager.3 Bio::Root::Object.3 \ + Bio::Root::RootI.3 Bio::Root::Utilities.3 \ + Bio::Root::Vector.3 Bio::Root::Xref.3 \ + Bio::Search::Hit::Fasta.3 Bio::Search::Hit::HitI.3 \ + Bio::Search::Processor.3 Bio::Search::Processor::Fasta.3 \ Bio::Search::Processor::ProcessorI.3 \ - Bio::Index::EMBL.3 \ - Bio::Species.3 \ + Bio::Search::Result::Fasta.3 \ + Bio::Search::Result::ResultI.3 Bio::SearchDist.3 \ + Bio::Seq.3 Bio::SeqFeature::FeaturePair.3 \ + Bio::SeqFeature::Generic.3 Bio::SeqFeatureI.3 Bio::SeqI.3 \ + Bio::SeqIO.3 Bio::SeqIO::FTHelper.3 \ + Bio::SeqIO::MultiFile.3 Bio::SeqIO::embl.3 \ + Bio::SeqIO::fasta.3 Bio::SeqIO::gcg.3 \ + Bio::SeqIO::genbank.3 Bio::SeqIO::pir.3 Bio::SeqIO::raw.3 \ + Bio::SeqIO::scf.3 Bio::SeqIO::swiss.3 Bio::SimpleAlign.3 \ + Bio::Species.3 Bio::Tools::AlignFactory.3 \ + Bio::Tools::Blast.3 Bio::Tools::Blast::HSP.3 \ + Bio::Tools::Blast::HTML.3 \ Bio::Tools::Blast::Run::LocalBlast.3 \ - Bio::SeqIO::embl.3 \ - Bio::Index::SwissPfam.3 \ - Bio::DB::GenPept.3 \ - Bio::Index::Fasta.3 - + Bio::Tools::Blast::Run::Webblast.3 \ + Bio::Tools::Blast::Sbjct.3 Bio::Tools::CodonTable.3 \ + Bio::Tools::Fasta.3 Bio::Tools::HMMER::Domain.3 \ + Bio::Tools::HMMER::Results.3 Bio::Tools::HMMER::Set.3 \ + Bio::Tools::IUPAC.3 Bio::Tools::RestrictionEnzyme.3 \ + Bio::Tools::SeqAnal.3 Bio::Tools::SeqPattern.3 \ + Bio::Tools::SeqStats.3 Bio::Tools::SeqWords.3 \ + Bio::Tools::Sigcleave.3 Bio::Tools::WWW.3 \ + Bio::Tools::pSW.3 Bio::UnivAln.3 \ + bioback.3 biodesign.3 bioperl.3 biostart.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -do-configure: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL) - @(cd ${EXT_WRKSRC}/Bio/Ext/Align; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL) - -do-build: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) - @(cd ${EXT_WRKSRC}/Bio/Ext/Align; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) - -do-install: - @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) - @(cd ${EXT_WRKSRC}/Bio/Ext/Align; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) +EXT_WRKSRC= ${WRKDIR}/bioperl-ext-06/Bio/Ext/Align + +post-configure: + @ (cd ${EXT_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} \ + ${PERL5} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) + +post-build: + @ (cd ${EXT_WRKSRC} && \ + ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) + +post-install: + @ (cd ${EXT_WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ + ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .include diff -ruN p5-bioperl.bak/distinfo p5-bioperl/distinfo --- p5-bioperl.bak/distinfo Fri Oct 13 13:57:18 2000 +++ p5-bioperl/distinfo Fri Oct 13 12:38:14 2000 @@ -1,2 +1,2 @@ -MD5 (bioperl-0.6.1.tar.gz) = e3506188027a94ea87443389a78c2fdc +MD5 (bioperl-0.6.2.tar.gz) = 26330f4f0c1e08a4f5cbcbe8b05b72f1 MD5 (bioperl-ext-0.6.tar.gz) = 5bf87e0cf94d3d41fabbfd209971d240 diff -ruN p5-bioperl.bak/pkg-plist p5-bioperl/pkg-plist --- p5-bioperl.bak/pkg-plist Fri Oct 13 13:57:18 2000 +++ p5-bioperl/pkg-plist Fri Oct 13 13:23:21 2000 @@ -1,109 +1,108 @@ -lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/GenBank.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/SeqI.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bio/Ext/Align.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/.packlist +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/.packlist +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/Align.bs +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/Align.so +lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation/Comment.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation/DBLink.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation/Reference.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/Ace.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/RandomAccessI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/GenBank.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/GenPept.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/RandomAccessI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/DB/SeqI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/Abstract.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/AbstractSeq.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/EMBL.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/Fasta.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/SwissPfam.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/LocatableSeq.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/PrimarySeq.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/PrimarySeqI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Range.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/RangeI.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Err.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/RootI.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Global.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Xref.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/IOManager.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Object.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Vector.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/RootI.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Utilities.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/IOManager.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/RangeI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/UnivAln.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Vector.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Root/Xref.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Hit/Fasta.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Hit/HitI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor/Fasta.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor/ProcessorI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Result/Fasta.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Result/ResultI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SearchDist.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Seq.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeature/FeaturePair.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeature/Generic.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeatureI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/genbank.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqI.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/FTHelper.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/raw.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/MultiFile.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/embl.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/scf.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/gcg.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/swiss.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/fasta.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/gcg.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/genbank.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/pir.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/MultiFile.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Sim4/Results.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Sim4/Exon.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/IUPAC.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/CodonTable.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/raw.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/scf.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO/swiss.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/SimpleAlign.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Species.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/AlignFactory.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/Makefile.PL -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/postclient.pl -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/LocalBlast.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/Webblast.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/CHANGES lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/HSP.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Sbjct.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/README lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/HTML.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/pSW.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqPattern.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/README +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/LocalBlast.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/Makefile.PL +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/Webblast.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run/postclient.pl +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Sbjct.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/CodonTable.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Fasta.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/WWW.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/HMMER/Domain.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/HMMER/Results.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/HMMER/Set.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/HMMER/Domain.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Sigcleave.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqWords.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqStats.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqAnal.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/IUPAC.pm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/RestrictionEnzyme.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SearchDist.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Hit/HitI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Hit/Fasta.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor/Fasta.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor/ProcessorI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Result/ResultI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Result/Fasta.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Seq.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/PrimarySeqI.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Range.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SimpleAlign.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/EMBL.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/AbstractSeq.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/Fasta.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/Abstract.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Index/SwissPfam.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Species.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/PrimarySeq.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/LocatableSeq.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation/Comment.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation/Reference.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation/DBLink.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeature/FeaturePair.pm -lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeature/Generic.pm -lib/perl5/site_perl/%%PERL_VER%%/bioperl.pod +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqAnal.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqPattern.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqStats.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/SeqWords.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Sigcleave.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/WWW.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/pSW.pm +lib/perl5/site_perl/%%PERL_VER%%/Bio/UnivAln.pm lib/perl5/site_perl/%%PERL_VER%%/bioback.pod lib/perl5/site_perl/%%PERL_VER%%/biodesign.pod +lib/perl5/site_perl/%%PERL_VER%%/bioperl.pod lib/perl5/site_perl/%%PERL_VER%%/biostart.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/Align.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/Align.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bio/Ext/Align.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/DB -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Root -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Sim4 +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/HMMER @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast/Run @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/Blast -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools/HMMER @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Tools -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Hit -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqIO +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeature @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Result +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Processor +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Search/Hit @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Search +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Root @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Index +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/DB @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/Annotation -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio/SeqFeature @dirrm lib/perl5/site_perl/%%PERL_VER%%/Bio -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align/ +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext/Align @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio/Ext @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Bio +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bio/Ext +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Bio >Release-Note: >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 Oct 13 5:44:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1242837B502; Fri, 13 Oct 2000 05:44:53 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA21867; Fri, 13 Oct 2000 05:44:53 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Fri, 13 Oct 2000 05:44:53 -0700 (PDT) From: Message-Id: <200010131244.FAA21867@freefall.freebsd.org> To: johann@egenetics.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21954: Port update: biology/p5-bioperl (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: biology/p5-bioperl (maintainer) State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Fri Oct 13 05:44:36 PDT 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21954 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 6:46: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 929A437B66C; Fri, 13 Oct 2000 06:46:05 -0700 (PDT) Received: from localhost (scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) with ESMTP id GAA45757; Fri, 13 Oct 2000 06:46:04 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Date: Fri, 13 Oct 2000 06:46:04 -0700 (PDT) From: Joseph Scott X-Sender: scottj@pebkac.owp.csus.edu To: Ade Lovett Cc: Doug Barton , ports@FreeBSD.ORG Subject: Re: LOCALBASE vs PREFIX In-Reply-To: <20001012230156.A62778@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 On Thu, 12 Oct 2000, Ade Lovett wrote: > On Thu, Oct 12, 2000 at 08:48:19PM -0700, Doug Barton wrote: > > If we're designing a new system from scratch, I'd like to put in a vote > > for getting ${X11BASE} out of /usr. Personally I would like to see > > everything in /usr/local. I was playing around with some plans the other > > day to try and make a system where most everything was mounted read only > > and finally threw my hands up. > > To be honest, if we come out of this with nothing but a plan to > kill having two locations to put stuff, wherever that place may be > (/usr/local, /usr/packages, /usr/FreeBSD, etc..) then I believe we > will have scored a big plus. > > Large programs (environments, even) such as GNOME and KDE really go > a long way to showing up the /usr/{X11R6,local} anachronism for what > it is. It should go. Replacing it with a full stowage system > that works would be ideal. Just having everything in /usr/packages/... > would be a major step forward, imo. If you are looking for votes, I'm firmly for the /usr/(pkg|package) instead of /usr/local for ports/packages. I've been following this thread, but I'm still not sure about where to put the X stuff. On the one hand X kind of feels like it's in the base system because when doing a fresh install you can select it without installing the ports collection or going through the packages menu. On the other hand if you do an upgrade to an existing system that's done via the ports system (usually). I guess one idea I had would be to keep /usr/X11R6 but not installing any thing but the X distro to it, forcing everything else (including ports of gui programs) into $PREFIX. One thing that bothers me from time to time is figuring out where a port got installed to. If it's something for X sometimes it goes into /usr/X11R6 other times it goes into /usr/local. It would be nice if I could count on all port apps beside X itself to install into $PREFIX, instead of $PREFIX or $X11BASE. Perhaps even make $X11BASE = $PREFIX/X11R6 ???? --- Joseph Scott joseph.scott@owp.csus.edu The Office Of Water Programs - CSU Sacramento To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 7:33:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from columbus.cris.net (columbus.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id 25E8E37B503; Fri, 13 Oct 2000 07:33:01 -0700 (PDT) Received: from ark.cris.net (root@ark.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id RAA89135; Fri, 13 Oct 2000 17:32:14 +0300 (EEST) Received: (from phantom@localhost) by ark.cris.net (8.9.3/8.9.3) id RAA58566; Fri, 13 Oct 2000 17:32:52 +0300 (EEST) (envelope-from phantom) Date: Fri, 13 Oct 2000 17:32:52 +0300 From: Alexey Zelkin To: Gunnar.H.Reichert@seagate.com Cc: www@FreeBSD.ORG, ports@FreeBSD.ORG, fenner@FreeBSD.ORG, wosch@FreeBSD.ORG Subject: Re: Online Ports Listing Message-ID: <20001013173252.A58312@ark.cris.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from Gunnar.H.Reichert@seagate.com on Wed, Oct 11, 2000 at 10:47:52AM -0700 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, Correct. The reason is that http://www.FreeBSD.org/cgi/pds.cgi broken, due to following error message: "/home/fenner/Mk/bsd.port.mk", line 606: Need an operator "/home/fenner/Mk/bsd.port.mk", line 657: Need an operator "/home/fenner/Mk/bsd.port.mk", line 658: Need an operator "/home/fenner/Mk/bsd.port.mk", line 739: if-less endif "/home/fenner/Mk/bsd.port.mk", line 739: Need an operator make: fatal errors encountered -- cannot continue Bill, can you fix this ? (looks like "cvs up" related conflict problem) On Wed, Oct 11, 2000 at 10:47:52AM -0700, Gunnar.H.Reichert@seagate.com wrote: > Whenever I click on "Sources" for a particular port I get a page saying > > "Sorry, did not find the sources for ports/foo/bar" > > This is true for all ports. Thank you for report ! -- /* Alexey Zelkin && phantom@cris.net */ /* Tavric National University && phantom@FreeBSD.org */ /* Sysadmin/Developer && phantom@sms.umc.com.ua */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 8:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0CB2A37B670 for ; Fri, 13 Oct 2000 08:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA78133; Fri, 13 Oct 2000 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131]) by hub.freebsd.org (Postfix) with ESMTP id EE87E37B66F for ; Fri, 13 Oct 2000 08:03:24 -0700 (PDT) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by goliath.siemens.de (8.11.0/8.11.0) with ESMTP id e9DF3Nq07878 for ; Fri, 13 Oct 2000 17:03:23 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail2.siemens.de (8.11.0/8.11.0) with ESMTP id e9DF3MG08721 for ; Fri, 13 Oct 2000 17:03:22 +0200 (MET DST) Received: (from localhost) by curry.mchp.siemens.de (8.11.1/8.11.1) id e9DF3Mb73609 for FreeBSD-gnats-submit@freebsd.org; Fri, 13 Oct 2000 17:03:22 +0200 (CEST) Message-Id: <200010131503.e9DF3Mk48055@curry.mchp.siemens.de> Date: Fri, 13 Oct 2000 17:03:22 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21957: [PATCH] optionally do not open TCP port in xfstt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21957 >Category: ports >Synopsis: [PATCH] optionally do not open TCP port in xfstt >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: Fri Oct 13 08:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: All systems using the xfstt port >Description: When using xfstt there is always a TCP port created to serve clients. When running xfstt only to serve the localhost you don't need (and probably don't want) this since it communicates perfectly over unix domain sockets. >How-To-Repeat: run xfstt and then "netstat -a -f inet" and find the line with port 7101 >Fix: The path below adds an option --notcp. I haven't updated the manpage (only the --help output) but can do so if desired. It fits perfectly in x11-servers/Xfstt/files/patch-ae Note: I have sent this suggestion to sjc@debian.org who is listed as being responsible for xfstt in the distfile. I have also sent it to the maintainer but both didn't respond. Anyway, I have now made this PR since others might be interested in it or even someone likes to commit it to the ports tree. --- xfstt.cpp.ORI Tue Sep 26 15:57:32 2000 +++ xfstt.cpp Tue Sep 26 16:26:22 2000 @@ -73,6 +73,7 @@ char* fontdir = TTFONTDIR; char* cachedir = TTCACHEDIR; int defaultres = 0; +int NoTCP = 0; uid_t newuid = (uid_t)(-2); gid_t newgid = (uid_t)(-2); @@ -95,6 +96,7 @@ printf( "\t--sync put ttf-fonts in \"%s\" in database\n", fontdir); printf( "\t--gslist print ghostscript style ttf fontlist\n "); printf( "\t--port change port number from default 7101\n"); + printf( "\t--notcp don't open TCP socket, use unix domain only\n"); printf( "\t--dir use other font directory than "TTFONTDIR"\n"); printf( "\t--cache use other font cache directory than "TTCACHEDIR"\n"); printf( "\t--res force default resolution to this value\n"); @@ -654,7 +656,7 @@ listen( sd_unix, 1); // only one connection } - if( !sd_inet) { + if( !NoTCP && !sd_inet) { // prepare inet connection sd_inet = socket( PF_INET, SOCK_STREAM, IPPROTO_TCP); @@ -670,7 +672,8 @@ fd_set sdlist; FD_ZERO( &sdlist); FD_SET( sd_unix, &sdlist); - FD_SET( sd_inet, &sdlist); + if( !NoTCP ) + FD_SET( sd_inet, &sdlist); int maxsd = (sd_inet > sd_unix) ? sd_inet : sd_unix; select( maxsd+1, &sdlist, 0L, 0L, 0L); @@ -678,7 +681,7 @@ unsigned int saLength = sizeof(struct sockaddr); if( FD_ISSET( sd_unix, &sdlist)) sd = accept( sd_unix, (struct sockaddr*)&s_unix, &saLength); - else if( FD_ISSET( sd_inet, &sdlist)) + else if( !NoTCP && FD_ISSET( sd_inet, &sdlist)) sd = accept( sd_inet, (struct sockaddr*)&s_inet, &saLength); dprintf2( "accept( saLength = %d) = %d\n", saLength, sd); @@ -1606,6 +1609,8 @@ inetdConnection = 1; } else if( !strcmp( argv[i], "--multi")) { multiConnection = 1; + } else if( !strcmp( argv[i], "--notcp")) { + NoTCP = 1; } else if( !strcmp( argv[i], "--once")) { multiConnection = 0; } else if( !strcmp( argv[i], "--unstrap")) { >Release-Note: >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 Oct 13 8:20:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6507137B66E for ; Fri, 13 Oct 2000 08:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA81572; Fri, 13 Oct 2000 08:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from relay-1.ziplink.net (relay-1.ziplink.net [206.15.170.62]) by hub.freebsd.org (Postfix) with ESMTP id 10B0137B66C for ; Fri, 13 Oct 2000 08:17:42 -0700 (PDT) Received: from aldan.algebra.com (bronx-ip-2-97.dynamic.ziplink.net [205.208.97.97]) by relay-1.ziplink.net (8.10.2/8.10.2) with ESMTP id e9DFHRh14314; Fri, 13 Oct 2000 11:17:28 -0400 (EDT) Received: (from root@localhost) by aldan.algebra.com (8.11.0/8.11.0) id e9DFHOl44007; Fri, 13 Oct 2000 11:17:24 -0400 (EDT) (envelope-from mi) Message-Id: <200010131517.e9DFHOl44007@aldan.algebra.com> Date: Fri, 13 Oct 2000 11:17:24 -0400 (EDT) From: root@aldan.algebra.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: tarkhil@over.ru X-Send-Pr-Version: 3.2 Subject: ports/21958: NEW PORT www/neon -- an HTTP and WebDAV client library Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21958 >Category: ports >Synopsis: NEW PORT www/neon -- an HTTP and WebDAV client library >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 13 08:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: This is an HTTP and WebDAV client library for Unix systems, with a C interface. Note, that the newer versions of the www/cadaver need neon library. My major interest in it is that it offers access to https DAV resources... >How-To-Repeat: >Fix: # 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: # # neon # neon/pkg-plist # neon/pkg-descr # neon/pkg-comment # neon/distinfo # neon/Makefile # neon/files # neon/files/patch-aa # echo c - neon mkdir -p neon > /dev/null 2>&1 echo x - neon/pkg-plist sed 's/^X//' >neon/pkg-plist << 'END-of-neon/pkg-plist' Xbin/neon-config Xbin/nget Xbin/nserver X%%GUI%%bin/nbrowse Xlib/libneon.so.7 Xlib/libneon.so Xlib/libneon.a Xinclude/neon/http_request.h Xinclude/neon/http_utils.h Xinclude/neon/uri.h Xinclude/neon/nsocket.h Xinclude/neon/http_basic.h Xinclude/neon/dav_basic.h Xinclude/neon/dav_207.h Xinclude/neon/dav_props.h Xinclude/neon/hip_xml.h Xinclude/neon/dates.h Xinclude/neon/string_utils.h Xinclude/neon/http_cookies.h Xinclude/neon/neon_defs.h Xinclude/neon/neon_config.h Xinclude/neon/dav_locks.h Xinclude/neon/ne_alloc.h Xinclude/neon/neon_md5.h Xinclude/neon/neon_i18n.h X%%DOCS%%share/doc/neon/using-neon.txt X%%DOCS%%@dirrm share/doc/neon X@dirrm include/neon END-of-neon/pkg-plist echo x - neon/pkg-descr sed 's/^X//' >neon/pkg-descr << 'END-of-neon/pkg-descr' XNeon is an HTTP and WebDAV client library for Unix systems, with a C Xinterface. Featuring: X X . High-level interface to HTTP and WebDAV methods X (PUT, GET, HEAD etc) X . Low-level interface to HTTP request handling, to allow X implementing new methods easily. X . HTTP/1.1 and HTTP/1.0 persistent connections X . RFC2617 basic and digest authentication X (including auth-int, md5-sess) X . Proxy support (including basic/digest authentication) X . Generic WebDAV 207 XML response handling mechanism X . XML parsing using the expat or libxml parsers X . Easy generation of error messages from 207 error responses X . WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL X . WebDAV metadata support: set and remove properties, query X any set of properties (PROPPATCH/PROPFIND). X XWWW: http://www.webdav.org/neon/ END-of-neon/pkg-descr echo x - neon/pkg-comment sed 's/^X//' >neon/pkg-comment << 'END-of-neon/pkg-comment' Xan HTTP and WebDAV client library for Unix systems, with a C interface END-of-neon/pkg-comment echo x - neon/distinfo sed 's/^X//' >neon/distinfo << 'END-of-neon/distinfo' XMD5 (neon-0.7.5.tar.gz) = e4a6e97403fee476f2416cb7aeb0be26 END-of-neon/distinfo echo x - neon/Makefile sed 's/^X//' >neon/Makefile << 'END-of-neon/Makefile' X# New ports collection makefile for: neon X# Date created: 13 October 2000 X# Whom: Mikhail Teterin X# X# $FreeBSD$ X# X XPORTNAME= neon XPORTVERSION= 0.7.5 XCATEGORIES= www XMASTER_SITES= http://www.webdav.org/neon/ X XMAINTAINER= mi@aldan.algebra.com X XLIB_DEPENDS= expat:${PORTSDIR}/textproc/expat \ X xml:${PORTSDIR}/textproc/libxml X X.ifndef NO_OPENSSL XUSE_OPENSSL= yes X.endif X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} --with-expat=${PREFIX}/include/xml \ X --with-extra-libs=${PREFIX}/lib X XALL_TARGET= all examples XINSTALL_TARGET= install install-examples X X.ifdef WITH_NBROWSE XLIB_DEPENDS+= glade:${PORTSDIR}/devel/libglade XCONFIGURE_ARGS+=--with-libglade-config=${PREFIX}/bin/libglade-config \ X --with-gnome=${X11BASE} \ X --enable-gnome-examples XCONFIGURE_ENV+= GTK_CONFIG="${X11BASE}/bin/gtk12-config" XALL_TARGET+= nbrowse XPLIST_SUB+= GUI='' X.else XPLIST_SUB+= GUI='@comment ' X Xpost-extract: X # You can also build a GUI-sample application by doing: X # make -DWITH_NBROWSE X # It is disabled by default, because the author thinks X # it is BUGGY and because it requires libglade and GNOME. X.endif X X.ifndef NOPORTDOCS Xpost-install: X ${MKDIR} ${PREFIX}/share/doc/neon X ${INSTALL_DATA} ${WRKSRC}/doc/using-neon.txt ${PREFIX}/share/doc/neon XPLIST_SUB+= DOCS='' X.else XPLIST_SUB+= DOCS='@comment ' X.endif X X.include END-of-neon/Makefile echo c - neon/files mkdir -p neon/files > /dev/null 2>&1 echo x - neon/files/patch-aa sed 's/^X//' >neon/files/patch-aa << 'END-of-neon/files/patch-aa' X--- example/nbrowse/main.c Sun Jul 16 15:58:00 2000 X+++ example/nbrowse/main.c Fri Oct 13 10:32:01 2000 X@@ -50,3 +50,4 @@ X #include X-#include X+#define xmalloc malloc X+#define xstrdup strdup X END-of-neon/files/patch-aa exit >Release-Note: >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 Oct 13 8:58:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail-blue.research.att.com (mail-blue.research.att.com [135.207.30.102]) by hub.freebsd.org (Postfix) with ESMTP id 50B1937B66C; Fri, 13 Oct 2000 08:58:47 -0700 (PDT) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-blue.research.att.com (Postfix) with ESMTP id 252054CE26; Fri, 13 Oct 2000 11:58:46 -0400 (EDT) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id LAA08159; Fri, 13 Oct 2000 11:58:45 -0400 (EDT) Received: (from fenner@localhost) by windsor.research.att.com (8.8.8+Sun/8.8.5) id IAA12885; Fri, 13 Oct 2000 08:58:44 -0700 (PDT) Message-Id: <200010131558.IAA12885@windsor.research.att.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII To: phantom@ark.cris.net Subject: Re: Online Ports Listing Cc: gunnar.h.reichert@seagate.com, www@freebsd.org, ports@freebsd.org, fenner@freebsd.org, wosch@freebsd.org References: <20001013173252.A58312@ark.cris.net> Date: Fri, 13 Oct 2000 08:58:44 -0700 From: Bill Fenner Versions: dmail (solaris) 2.2g/makemail 2.9a Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Fixed. I'm mostly at a loss to explain why cvs update said there were conflicts, since the only modifications were at the end and the conflicts were in the middle,but it was easy enough to fix so now it's fixed =) Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 9:14:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9B55537B66F; Fri, 13 Oct 2000 09:11:59 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id e9DGDrm03824; Fri, 13 Oct 2000 19:13:57 +0300 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9DGBpU52600; Fri, 13 Oct 2000 19:11:51 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E73443.848834FE@FreeBSD.org> Date: Fri, 13 Oct 2000 19:11:48 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: java@FreeBSD.org, ports@FreeBSD.org, Kees Jan Koster , nate@FreeBSD.org Subject: Native JDK1.2.2 port Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, I would like to inform you that I created skeleton for building native jdk1.2.2 and put it into official ports collection (java/jdk12-beta). This port is expected to make building/installation of jdk significantly easier, so the user would only need to d/l appropriate files (jdk sources from Sun and FreeBSD patchset), put it into usual place and do make install. I will appreciate any comments/patches/suggestions etc. about this port. Also it would be nice if someone will insert appropriate news entry onto FreeBSD Java pages, as well as update appropriate building instructions. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 9:24:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 38D8E37B66C; Fri, 13 Oct 2000 09:24:26 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA01307; Fri, 13 Oct 2000 10:24:23 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA08053; Fri, 13 Oct 2000 10:24:22 -0600 (MDT) (envelope-from nate) Date: Fri, 13 Oct 2000 10:24:22 -0600 (MDT) Message-Id: <200010131624.KAA08053@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Maxim Sobolev Cc: java@FreeBSD.org, ports@FreeBSD.org, Kees Jan Koster , nate@FreeBSD.org Subject: Re: Native JDK1.2.2 port In-Reply-To: <39E73443.848834FE@FreeBSD.org> References: <39E73443.848834FE@FreeBSD.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I would like to inform you that I created skeleton for building native > jdk1.2.2 and put it into official ports collection (java/jdk12-beta). Thanks! > Also it would be nice if someone will insert appropriate news entry > onto FreeBSD Java pages, as well as update appropriate building > instructions. That would be Patrick's ball. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 9:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82BD437B66D for ; Fri, 13 Oct 2000 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA14200; Fri, 13 Oct 2000 09:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id EED5337B673 for ; Fri, 13 Oct 2000 09:42:10 -0700 (PDT) Received: by ada.eu.org (Postfix, from userid 10) id 7D848191B4; Fri, 13 Oct 2000 18:41:47 +0200 (CEST) Received: by trillian.enst.fr (Postfix, from userid 1000) id CF6AC15C; Fri, 13 Oct 2000 18:41:35 +0200 (CEST) Message-Id: <20001013164135.CF6AC15C@trillian.enst.fr> Date: Fri, 13 Oct 2000 18:41:35 +0200 (CEST) From: sam@inf.enst.fr Reply-To: sam@inf.enst.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21959: Port update: net/adasockets Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21959 >Category: ports >Synopsis: Port update: net/adasockets >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 Oct 13 09:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 4.1-STABLE i386 >Organization: TELECOM Paris >Environment: >Description: 0.1.10 -> 0.1.11 >How-To-Repeat: >Fix: Apply the following patch to /usr/ports/net (-p0): --- adasockets/Makefile.orig Fri Oct 13 18:36:35 2000 +++ adasockets/Makefile Fri Oct 13 18:36:45 2000 @@ -6,7 +6,7 @@ # PORTNAME= adasockets -PORTVERSION= 0.1.10 +PORTVERSION= 0.1.11 CATEGORIES= net MASTER_SITES= http://www.infres.enst.fr/ANC/ --- adasockets/distinfo.orig Fri Oct 13 18:36:39 2000 +++ adasockets/distinfo Fri Oct 13 18:36:48 2000 @@ -1 +1 @@ -MD5 (adasockets-0.1.10.tar.gz) = 03070b3278a222d1a50a9aa9e3db8ae0 +MD5 (adasockets-0.1.11.tar.gz) = d252f082305c0568475834c0457df78e >Release-Note: >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 Oct 13 10:50: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns.internet.dk (ns.internet.dk [194.19.140.1]) by hub.freebsd.org (Postfix) with ESMTP id D5D4C37B502; Fri, 13 Oct 2000 10:49:55 -0700 (PDT) Received: (from uucp@localhost) by ns.internet.dk (8.9.3/8.9.3) with UUCP id TAA91011; Fri, 13 Oct 2000 19:49:54 +0200 (CEST) (envelope-from leifn@neland.dk) Received: from localhost (localhost [127.0.0.1]) by arnold.neland.dk (8.11.0/8.11.0) with ESMTP id e9DHWlG28377; Fri, 13 Oct 2000 19:32:48 +0200 (CEST) (envelope-from leifn@neland.dk) Date: Fri, 13 Oct 2000 19:32:46 +0200 (CEST) From: Leif Neland To: freebsd-ports@freebsd.org, freebsd-stable@freebsd.org Subject: Ports won't build on stable 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 cc in email, I usually run and read current, but this is on a production machine. Not sure if this is a -stable or -ports question, so here goes: I just did a make world on a 4.1.1. I also have a fresh ports tree. When I try to make a port (I tried 4 different under archivers, and xlockmore) I get this message: Error: your port uses an old layout. Please update it to match this bsd.port.mk According to UPGRADING, the port tree should work again. I haven't made a cvsup on ports/all, I have used the example/port-supfile and removed the foreign languages. Leif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 10:55:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from oscar.cprost.sfu.ca (oscar.cprost.sfu.ca [192.75.242.157]) by hub.freebsd.org (Postfix) with ESMTP id 348B237B502 for ; Fri, 13 Oct 2000 10:55:50 -0700 (PDT) Received: from localhost (cchan@localhost) by oscar.cprost.sfu.ca (8.9.3/8.9.2) with ESMTP id KAA21736 for ; Fri, 13 Oct 2000 10:55:44 -0700 (PDT) (envelope-from cchan@oscar.cprost.sfu.ca) Date: Fri, 13 Oct 2000 10:55:44 -0700 (PDT) From: Christopher Chan To: freebsd-ports@FreeBSD.ORG Subject: subscribe 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 subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 11:34:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from spiral.inspiral.net (spiral.inspiral.net [194.204.49.249]) by hub.freebsd.org (Postfix) with ESMTP id 7391E37B670; Fri, 13 Oct 2000 11:34:46 -0700 (PDT) Received: from imho (imho.inspiral.net [192.168.1.7]) by spiral.inspiral.net (8.9.3/8.9.3) with ESMTP id UAA55178; Fri, 13 Oct 2000 20:34:38 +0200 (EET) (envelope-from mauri@inspiral.net) From: "Lauri Laupmaa" Organization: Inspiral.Net To: stable@freebsd.org Date: Fri, 13 Oct 2000 20:34:35 +0200 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: picobsd & TV application Cc: ports@freebsd.org Message-ID: <39E771DB.3396.4AA4027@localhost> X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I wonder if it is possible to make one-floppy-television using picobsd and some non-X tv application ? I have bt-848 based hauppauge TV-card. ideas/suggestions ? TIA Lauri _____________ Lauri Laupmaa +3725013369 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 11:45:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id EF0FC37B503; Fri, 13 Oct 2000 11:44:58 -0700 (PDT) Received: by peitho.fxp.org (Postfix, from userid 1501) id 57EDE1360E; Fri, 13 Oct 2000 14:44:59 -0400 (EDT) Date: Fri, 13 Oct 2000 14:44:59 -0400 From: Chris Faulhaber To: Lauri Laupmaa Cc: stable@freebsd.org, ports@freebsd.org Subject: Re: picobsd & TV application Message-ID: <20001013144458.B35446@peitho.fxp.org> References: <39E771DB.3396.4AA4027@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E771DB.3396.4AA4027@localhost>; from mauri@inspiral.net on Fri, Oct 13, 2000 at 08:34:35PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 13, 2000 at 08:34:35PM +0200, Lauri Laupmaa wrote: > Hi > > I wonder if it is possible to make one-floppy-television using > picobsd and some non-X tv application ? > > I have bt-848 based hauppauge TV-card. > > ideas/suggestions ? > svgalib has been ported and is in the ports tree. In addition, there is a console TV application using svgalib under linux. Perhaps it too could be ported... -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 12: 2:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id DF60937B503 for ; Fri, 13 Oct 2000 12:02:12 -0700 (PDT) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id PAA85110; Fri, 13 Oct 2000 15:01:25 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Fri, 13 Oct 2000 15:01:25 -0400 (EDT) From: Brett Taylor To: Szilveszter Adam Cc: Leif Neland , freebsd-ports@freebsd.org Subject: Re: Ports won't build on stable In-Reply-To: <20001013200730.B17168@petra.hos.u-szeged.hu> 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 (this belongs on -ports, not -stable, so I've redirected) On Fri, 13 Oct 2000, Szilveszter Adam wrote: > On Fri, Oct 13, 2000 at 07:32:46PM +0200, Leif Neland wrote: > > I just did a make world on a 4.1.1. > > I also have a fresh ports tree. > > > > When I try to make a port (I tried 4 different under archivers, and > > xlockmore) I get this message: > > > > Error: your port uses an old layout. Please update it to match this > > bsd.port.mk The ports tree works but.... CVS will not touch things it didn't create so if you originally unpacked the tarball'ed ports tree, CVS won't be able to remove the pkg and patches directories. If you remove these your ports will build again. cd /usr/ports && rm -rf */*/pkg/ && rm -rf */*/patches/ I believe this is the problem anyway. If this doesn't work, let us know. > The problem is, the ports infrastructure itself needs updating. Leave > the category ports-base in in any case, when you cvsup next time. I don't know if this will help - I have ports-all (which gets ports-base) and had the same problem. Brett ***************************************************** Dr. Brett Taylor brett@peloton.runet.edu * Dept of Chem and Physics * Curie 39A (540) 831-6147 * ***************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 12:32:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBCA437B672 for ; Fri, 13 Oct 2000 12:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39525; Fri, 13 Oct 2000 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Dreamer.Dorm13.NCTU.edu.tw (Dreamer.dorm13.NCTU.edu.tw [140.113.140.120]) by hub.freebsd.org (Postfix) with ESMTP id 4AA6B37B503 for ; Fri, 13 Oct 2000 12:20:33 -0700 (PDT) Received: (from ymtseng@localhost) by Dreamer.Dorm13.NCTU.edu.tw (8.11.0/8.11.0) id e9DI41619596; Sat, 14 Oct 2000 02:04:01 +0800 (CST) (envelope-from ymtseng) Message-Id: <200010131804.e9DI41619596@Dreamer.Dorm13.NCTU.edu.tw> Date: Sat, 14 Oct 2000 02:04:01 +0800 (CST) From: ymtseng@csie.nctu.edu.tw Reply-To: ymtseng@csie.nctu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21960: Update ports:www/lynx-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21960 >Category: ports >Synopsis: Update ports:www/lynx-current >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 Oct 13 12:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yu-Min Tseng >Release: FreeBSD 4.1.1-STABLE i386 >Organization: NCTU CSIE >Environment: FreeBSD 4.1.1-STABLE i386 >Description: Add zh_TW.Big5 message file. >How-To-Repeat: Nothing to repeat. >Fix: diff -ruN lynx-current/files/patch-po_zh_TW_Big5_po /tmp/lynx-current/files/patch-po_zh_TW_Big5_po --- lynx-current/files/patch-po_zh_TW_Big5_po Thu Jan 1 08:00:00 1970 +++ /tmp/lynx-current/files/patch-po_zh_TW_Big5_po Sat Oct 14 01:56:20 2000 @@ -0,0 +1,5745 @@ +--- po/zh_TW.Big5.po.orig Sat Oct 14 01:51:42 2000 ++++ po/zh_TW.Big5.po Sat Oct 14 01:52:43 2000 +@@ -0,0 +1,5742 @@ ++# lynx 2.8.4 dev 9 ++# Copyright (C) 2000 Free Software Foundation, Inc. ++# Jing-Jong Shyue , 2000. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: lynx 2.8.4 dev 9\n" ++"POT-Creation-Date: 2000-04-22 12:04-0400\n" ++"PO-Revision-Date: 2000-10-12 16:00+0800\n" ++"Last-Translator: Yu-Min Tseng \n" ++"Language-Team: Traditional Chinese\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=big5\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#. ****************************************************************** ++#. * The following definitions are for status line prompts, messages, or ++#. * warnings issued by Lynx during program execution. You can modify ++#. * them to make them more appropriate for your site. We recommend that ++#. * you extend these definitions to other languages using the gettext ++#. * library. There are also scattered uses of 'gettext()' throughout the ++#. * Lynx source, covering all but those messages which (a) are used for ++#. * debugging (CTRACE) or (b) are constants used in interaction with ++#. * other programs. ++#. * ++#. * Links to collections of alternate definitions, developed by the Lynx ++#. * User Community, are maintained in Lynx links: ++#. * ++#. * http://www.trill-home.com/lynx.html ++#. * ++#. * See ABOUT-NLS and po/readme for details and location of contributed ++#. * translations. When no translation is available, the English default is ++#. * used. ++#. ++#: LYMessages.c:29 ++#, c-format ++msgid "Alert!: %s" ++msgstr "ĵ§i!: %s" ++ ++#: LYMessages.c:30 ++msgid "Welcome" ++msgstr "Åwªï¥úÁ{" ++ ++#: LYMessages.c:31 LYMessages.c:32 ++msgid "Are you sure you want to quit?" ++msgstr "±z½T©w­nÂ÷¶}¶Ü?" ++ ++#: LYMessages.c:34 LYMessages.c:35 ++msgid "Really exit from Lynx?" ++msgstr "¯uªº­n±q Lynx Â÷¶}¶Ü?" ++ ++#: LYMessages.c:37 ++msgid "Connection interrupted." ++msgstr "³s±µ¤¤Â_." ++ ++#: LYMessages.c:38 ++msgid "Data transfer interrupted." ++msgstr "¸ê®Æ¶Ç¿é¤¤Â_." ++ ++#: LYMessages.c:39 ++msgid "Cancelled!!!" ++msgstr "¨ú®ø!!!" ++ ++#: LYMessages.c:40 ++msgid "Cancelling!" ++msgstr "¨ú®ø¤¤!" ++ ++#: LYMessages.c:41 ++msgid "Excellent!!!" ++msgstr "«Ü¦n!!!" ++ ++#: LYMessages.c:42 ++msgid "OK" ++msgstr "¦n" ++ ++#: LYMessages.c:43 ++msgid "Done!" ++msgstr "§¹¦¨!" ++ ++#: LYMessages.c:44 ++msgid "Bad request!" ++msgstr "¿ù»~ªº­n¨D!" ++ ++#: LYMessages.c:45 ++msgid "previous" ++msgstr "«e¤@­¶" ++ ++#: LYMessages.c:46 ++msgid "next screen" ++msgstr "¤U¤@­¶" ++ ++#: LYMessages.c:47 ++msgid "HELP!" ++msgstr "¨D§U!" ++ ++#: LYMessages.c:48 ++msgid ", help on " ++msgstr ", ¨D§U©ó" ++ ++#. #define HELP ++#: LYMessages.c:50 ++msgid "" ++"Commands: Use arrow keys to move, '?' for help, 'q' to quit, '<-' to go back." ++msgstr "«ü¥O: ¨Ï¥Î¤è¦VÁä¨Ó²¾°Ê, '?' ¨ú±o»¡©ú, 'q' Â÷¶}, '<-' ¦^«e¤@­¶." ++ ++#. #define MOREHELP ++#: LYMessages.c:52 ++msgid "" ++"-- press space for more, use arrow keys to move, '?' for help, 'q' to quit." ++msgstr "-- «ö¤UªÅ¥ÕÁä¥H¬Ý¨ì§ó¦h, ¨Ï¥Î¤è¦VÁä¨Ó²¾°Ê, '?' ¨ú±o»¡©ú, 'q' Â÷¶}." ++ ++#: LYMessages.c:53 ++msgid "-- press space for next page --" ++msgstr "-- «ö¤UªÅ¥ÕÁä¥H¬Ý¤U¤@­¶ --" ++ ++#: LYMessages.c:54 ++msgid "URL too long" ++msgstr "URL ¤Óªø" ++ ++#. Inactive input fields, messages used with -tna option - kw ++#. #define FORM_LINK_TEXT_MESSAGE_INA ++#: LYMessages.c:60 ++msgid "(Text entry field) Inactive. Press to activate." ++msgstr "(¤å¦r¿é¤JÄæ¦ì)¥¼±Ò¥Î. «ö¤U ¥H±Ò¥Î." ++ ++#. #define FORM_LINK_TEXTAREA_MESSAGE_INA ++#: LYMessages.c:62 ++msgid "(Textarea) Inactive. Press to activate." ++msgstr "(¤å¦r°Ï°ì)¥¼±Ò¥Î, «ö¤U ¥H±Ò¥Î." ++ ++#. #define FORM_LINK_TEXTAREA_MESSAGE_INA_E ++#: LYMessages.c:64 ++#, c-format ++msgid "(Textarea) Inactive. Press to activate (%s for editor)." ++msgstr "(¤å¦r°Ï°ì)¥¼±Ò¥Î. «ö¤U ¥H±Ò¥Î (%s ¥H½s¿è)." ++ ++#. #define FORM_LINK_TEXT_SUBMIT_MESSAGE_INA ++#: LYMessages.c:66 ++msgid "(Form field) Inactive. Use to edit." ++msgstr "(ªí³æÄæ¦ì)¥¼±Ò¥Î. «ö¤U ¨Ó½s¿è." ++ ++#. #define FORM_TEXT_SUBMIT_MESSAGE_INA_X ++#: LYMessages.c:68 ++#, c-format ++msgid "" ++"(Form field) Inactive. Use to edit (%s to submit with no cache)." ++msgstr "(ªí³æÄæ¦ì)¥¼±Ò¥Î. «ö¤U ¨Ó½s¿è ( %s °e¥X¦Ó¤£§Ö¨ú)." ++ ++#. #define FORM_TEXT_RESUBMIT_MESSAGE_INA ++#: LYMessages.c:70 ++msgid "" ++"(Form field) Inactive. Press to edit, press twice to " ++"submit." ++msgstr "(ªí³æÄæ¦ì)¥¼±Ò¥Î, «ö¤U ¨Ó½s¿è; «ö¤U ¤G¦¸¥H°e¥X. " ++ ++#. #define FORM_TEXT_SUBMIT_MAILTO_MSG_INA ++#: LYMessages.c:72 ++msgid "(mailto form field) Inactive. Press to change." ++msgstr "(¶l±Hªí³æÄæ¦ì)¥¼±Ò¥Î. «ö¤U ¨Ó§ïÅÜ." ++ ++#. #define FORM_LINK_PASSWORD_MESSAGE_INA ++#: LYMessages.c:74 ++msgid "(Password entry field) Inactive. Press to activate." ++msgstr "(±K½X¿é¤JÄæ¦ì)¥¼±Ò¥Î. «ö¤U ¥H±Ò¥Î." ++ ++#. #define FORM_LINK_FILE_UNM_MSG ++#: LYMessages.c:77 ++msgid "" ++"UNMODIFIABLE file entry field. Use UP or DOWN arrows or tab to move off." ++msgstr "¤£¥iÅܧóªºÀɮ׿é¤JÄæ¦ì. ¨Ï¥Î¤W/¤UÁä©Î ¨ÓÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_FILE_MESSAGE ++#: LYMessages.c:79 ++msgid "" ++"(File entry field) Enter filename. Use UP or DOWN arrows or tab to move off." ++msgstr "(Àɮ׿é¤JÄæ¦ì) ¿é¤JÀɦW. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXT_MESSAGE ++#: LYMessages.c:81 ++msgid "" ++"(Text entry field) Enter text. Use UP or DOWN arrows or tab to move off." ++msgstr "(¤å¦r¿é¤JÄæ¦ì) ¿é¤J¤å¦r. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXTAREA_MESSAGE ++#: LYMessages.c:83 ++msgid "(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off." ++msgstr "(¤å¦r°Ï°ì) ¿é¤J¤å¦r. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXTAREA_MESSAGE_E ++#: LYMessages.c:85 ++#, c-format ++msgid "" ++"(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off (%s for editor)." ++msgstr "(¤å¦r°Ï°ì) ¿é¤J¤å¦r. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì (%s ½s¿è)." ++ ++#. #define FORM_LINK_TEXT_UNM_MSG ++#: LYMessages.c:87 ++msgid "" ++"UNMODIFIABLE form text field. Use UP or DOWN arrows or tab to move off." ++msgstr "¤£¥iÅܧ󪺪í³æ¤å¦rÄæ¦ì. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXT_SUBMIT_MESSAGE ++#: LYMessages.c:89 ++msgid "(Form field) Enter text. Use to submit." ++msgstr "(ªí³æÄæ¦ì) ¿é¤J¤å¦r. «ö¤U ¥H°e¥X." ++ ++#. #define FORM_LINK_TEXT_SUBMIT_MESSAGE_X ++#: LYMessages.c:91 ++#, c-format ++msgid "(Form field) Enter text. Use to submit (%s for no cache)." ++msgstr "(ªí³æÄæ¦ì) ¿é¤J¤å¦r. «ö¤U ¥H°e¥X (%s ¨ú®ø§Ö¨ú)." ++ ++#. #define FORM_LINK_TEXT_RESUBMIT_MESSAGE ++#: LYMessages.c:93 ++msgid "" ++"(Form field) Enter text. Use to submit, arrows or tab to move off." ++msgstr "(ªí³æÄæ¦ì) ¿é¤J¤å¦r. «ö¤U ¥H°e¥X, ¤è¦VÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXT_SUBMIT_UNM_MSG ++#: LYMessages.c:95 ++msgid "UNMODIFIABLE form field. Use UP or DOWN arrows or tab to move off." ++msgstr "¤£¥iÅܧ󪺪í³æÄæ¦ì. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXT_SUBMIT_MAILTO_MSG ++#: LYMessages.c:97 ++msgid "" ++"(mailto form field) Enter text. Use to submit, arrows to move off." ++msgstr "(¶l±Hªí³æÄæ¦ì) ¿é¤J¤å¦r. «ö¤U ¥H°e¥X, ¤è¦VÁä¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_TEXT_SUBMIT_MAILTO_DIS_MSG ++#: LYMessages.c:99 ++msgid "(mailto form field) Mail is disallowed so you cannot submit." ++msgstr "(¶l±Hªí³æÄæ¦ì) ¶l¥ó¤£³Q¤¹³\\, ©Ò¥H±z¤£¯à°e¥X." ++ ++#. #define FORM_LINK_PASSWORD_MESSAGE ++#: LYMessages.c:101 ++msgid "" ++"(Password entry field) Enter text. Use UP or DOWN arrows or tab to move off." ++msgstr "(±K½X¿é¤JÄæ¦ì) ¿é¤J¤å¦r. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_PASSWORD_UNM_MSG ++#: LYMessages.c:103 ++msgid "UNMODIFIABLE form password. Use UP or DOWN arrows or tab to move off." ++msgstr "¤£¥iÅܧ󪺱K½Xªí³æ. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_CHECKBOX_MESSAGE ++#: LYMessages.c:105 ++msgid "(Checkbox Field) Use right-arrow or to toggle." ++msgstr "(Àˬd¤è¶ôÄæ¦ì) ¨Ï¥Î¥kÁä©Î ¨Ó¤Á´«¿ï¾Ü." ++ ++#. #define FORM_LINK_CHECKBOX_UNM_MSG ++#: LYMessages.c:107 ++msgid "UNMODIFIABLE form checkbox. Use UP or DOWN arrows or tab to move off." ++msgstr "¤£¥iÅܧóªºÀˬd¤è¶ôªí³æ. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_RADIO_MESSAGE ++#: LYMessages.c:109 ++msgid "(Radio Button) Use right-arrow or to toggle." ++msgstr "(¶ê¶s) ¨Ï¥Î¥k¶¡©Î ¨Ó¤Á´«¿ï¾Ü." ++ ++#. #define FORM_LINK_RADIO_UNM_MSG ++#: LYMessages.c:111 ++msgid "" ++"UNMODIFIABLE form radio button. Use UP or DOWN arrows or tab to move off." ++msgstr "¤£¥iÅܧ󪺶ê¶sªí³æ. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_SUBMIT_PREFIX ++#: LYMessages.c:113 ++msgid "Submit ('x' for no cache) to " ++msgstr "°e¥X ('x' ¥H¨ú®ø§Ö¨ú) ¨ì " ++ ++#. #define FORM_LINK_RESUBMIT_PREFIX ++#: LYMessages.c:115 ++msgid "Submit to " ++msgstr "°e¥X¨ì " ++ ++#. #define FORM_LINK_SUBMIT_MESSAGE ++#: LYMessages.c:117 ++msgid "" ++"(Form submit button) Use right-arrow or to submit ('x' for no " ++"cache)." ++msgstr "(ªí³æ°e¥X«ö¶s) ¨Ï¥Î¥k¶¡©Î ¨Ó°e¥X ('x' ¨ú®ø§Ö¨ú)." ++ ++#. #define FORM_LINK_RESUBMIT_MESSAGE ++#: LYMessages.c:119 ++msgid "(Form submit button) Use right-arrow or to submit." ++msgstr "(ªí³æ°e¥X«ö¶s) ¨Ï¥Î¥kÁä©Î ¥H°e¥X." ++ ++#. #define FORM_LINK_SUBMIT_DIS_MSG ++#: LYMessages.c:121 ++msgid "DISABLED form submit button. Use UP or DOWN arrows or tab to move off." ++msgstr "¨ú®øªí³æ°e¥X«ö¶s. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_SUBMIT_MAILTO_PREFIX ++#: LYMessages.c:123 ++msgid "Submit mailto form to " ++msgstr "°e¥X¶l¥óªí³æ¨ì " ++ ++#. #define FORM_LINK_SUBMIT_MAILTO_MSG ++#: LYMessages.c:125 ++msgid "(mailto form submit button) Use right-arrow or to submit." ++msgstr "(¶l±Hªí³æ°e¥X«ö¶s) «ö¤U¥kÁä©Î ¥H°e¥X." ++ ++#. #define FORM_LINK_SUBMIT_MAILTO_DIS_MSG ++#: LYMessages.c:127 ++msgid "(mailto form submit button) Mail is disallowed so you cannot submit." ++msgstr "(¶l±Hªí³æ°e¥X«ö¶s) ¶l¥ó¤£³Q¤¹³\\, ©Ò¥H±z¤£¯à°e¥X." ++ ++#. #define FORM_LINK_RESET_MESSAGE ++#: LYMessages.c:129 ++msgid "" ++"(Form reset button) Use right-arrow or to reset form to defaults." ++msgstr "(ªí³æ­«³]«ö¶s) «ö¤U¥kÁä©Î ¥H­«³]ªí³æ¬°¹w³]­È." ++ ++#. #define FORM_LINK_RESET_DIS_MSG ++#: LYMessages.c:131 ++msgid "DISABLED form reset button. Use UP or DOWN arrows or tab to move off." ++msgstr "Ãö³¬ªí³æ­«³]«ö¶s. ¨Ï¥Î¤W/¤UÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define FORM_LINK_OPTION_LIST_MESSAGE ++#: LYMessages.c:133 ++msgid "" ++"(Option list) Hit return and use arrow keys and return to select option." ++msgstr "(¿ï¶µ¦Cªí) «ö¤U ¨Ã¨Ï¥Î¤è¦VÁä¥H¿ï¾Ü¿ï¶µ." ++ ++#. #define CHOICE_LIST_MESSAGE ++#: LYMessages.c:135 ++msgid "" ++"(Choice list) Hit return and use arrow keys and return to select option." ++msgstr "(¿ï¾Ü¦Cªí) «ö¤U ¨Ã¨Ï¥Î¤è¦V½u¥H¿ï¾Ü¿ï¶µ." ++ ++#. #define FORM_LINK_OPTION_LIST_UNM_MSG ++#: LYMessages.c:137 ++msgid "UNMODIFIABLE option list. Use return or arrow keys to review or leave." ++msgstr "¤£¥iÅܧ󪺿ﶵ¦Cªí. ¨Ï¥Î ©Î¤è¦VÁä¨ÓÀ˵ø©ÎÂ÷¶}." ++ ++#. #define CHOICE_LIST_UNM_MSG ++#: LYMessages.c:139 ++msgid "UNMODIFIABLE choice list. Use return or arrow keys to review or leave." ++msgstr "¤£¥iÅܧ󪺿ï¾Ü¦Cªí. ¨Ï¥Î ©Î¤è¦VÁä¨ÓÀ˵ø©ÎÂ÷¶}." ++ ++#: LYMessages.c:140 ++msgid "Submitting form..." ++msgstr "°e¥Xªí³æ¤¤..." ++ ++#: LYMessages.c:141 ++msgid "Resetting form..." ++msgstr "­«³]ªí³æ¤¤..." ++ ++#. #define RELOADING_FORM ++#: LYMessages.c:143 ++msgid "Reloading document. Any form entries will be lost!" ++msgstr "­«Åª¤å¥ó¤¤. ©Ò¦³ªí³æ¸ê®Æ³£·|®ø¥¢!" ++ ++#: LYMessages.c:144 ++#, c-format ++msgid "Warning: Cannot transcode form data to charset %s!" ++msgstr "ĵ§i: µLªkÂà´«ªí³æ¸ê®Æ¦¨¦r¤¸¶° %s!" ++ ++#. #define NORMAL_LINK_MESSAGE ++#: LYMessages.c:147 ++msgid "(NORMAL LINK) Use right-arrow or to activate." ++msgstr "(¤@¯ë³sµ²) ¨Ï¥Î¥kÁä©Î ¥H¶i¤J." ++ ++#: LYMessages.c:148 ++msgid "The resource requested is not available at this time." ++msgstr "­n¨Dªº¸ê·½²{¦b¤£¦s¦b." ++ ++#: LYMessages.c:149 ++msgid "Enter Lynx keystroke command: " ++msgstr "¿é¤J Lynx Áä½L©R¥O: " ++ ++#: LYMessages.c:150 ++msgid "Looking up " ++msgstr "§ä´M¤¤ " ++ ++#: LYMessages.c:151 ++#, c-format ++msgid "Getting %s" ++msgstr "%s ¨ú±o¤¤" ++ ++#: LYMessages.c:152 ++#, c-format ++msgid "Skipping %s" ++msgstr "%s ©ñ±ó¤¤" ++ ++#: LYMessages.c:153 ++#, c-format ++msgid "Using %s" ++msgstr "%s ¨Ï¥Î¤¤" ++ ++#: LYMessages.c:154 ++#, c-format ++msgid "Illegal URL: %s" ++msgstr "¤£¦Xªkªº URL: %s" ++ ++#: LYMessages.c:155 ++#, c-format ++msgid "Badly formed address %s" ++msgstr "¿ù»~ªº¦ì§}§Î¦¡ %s" ++ ++#: LYMessages.c:156 ++#, c-format ++msgid "URL: %s" ++msgstr "URL: %s" ++ ++#: LYMessages.c:157 ++msgid "Unable to access WWW file!!!" ++msgstr "µLªk¦s¨ú WWW ÀÉ®×!!!" ++ ++#: LYMessages.c:158 ++#, c-format ++msgid "This is a searchable index. Use %s to search." ++msgstr "³o¬O¤@­Ó¥i·j´Mªº¯Á¤Þ. ¨Ï¥Î %s ¨Ó·j´M." ++ ++#. #define WWW_INDEX_MORE_MESSAGE ++#: LYMessages.c:160 ++#, c-format ++msgid "--More-- This is a searchable index. Use %s to search." ++msgstr "--§ó¦h-- ³o¬O¤@­Ó¥i·j´Mªº¯Á¤Þ. ¨Ï¥Î %s ¨Ó·j´M." ++ ++#: LYMessages.c:161 ++msgid "You have entered an invalid link number." ++msgstr "±z¿é¤J¤F¤@­Ó¤£¦s¦bªº³sµ²¸¹½X." ++ ++#. #define SOURCE_HELP ++#: LYMessages.c:163 ++msgid "" ++"Currently viewing document source. Press '\\' to return to rendered version." ++msgstr "¥Ø«e¥¿À˵ø¤å¥ó­ì©l½X¤¤. «ö¤U '\\' ¥H¦^¨ì§e²{¼Ò¦¡." ++ ++#. #define NOVICE_LINE_ONE ++#: LYMessages.c:165 ++msgid "" ++" Arrow keys: Up and Down to move. Right to follow a link; Left to go back. " ++" \n" ++msgstr " ¤è¦VÁä: ¤W/¤U Áä¥Î¥H²¾°Ê; ¥kÁä¥Î¥H¶i¤J³sµ²; ¥ªÁä¥Î¥H¦^¨ì«e­¶.\n" ++ ++#. #define NOVICE_LINE_TWO ++#: LYMessages.c:167 ++msgid "" ++" H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list " ++"\n" ++msgstr "" ++" H) »¡©ú O) ¿ï¶µ P) ¦C¦L G) ¨ì M) ¥Dµe­± Q) Â÷¶} / ·j´M [delete] ¾ú¥v¦Cªí " ++"\n" ++ ++#. #define NOVICE_LINE_TWO_A ++#: LYMessages.c:169 ++msgid "" ++" O)ther cmds H)elp K)eymap G)oto P)rint M)ain screen o)ptions Q)uit " ++"\n" ++msgstr "" ++" O) ¨ä¥L©R¥O H) »¡©ú K) «öÁä¹ïÀ³ G) ²¾¨ì P) ¦C¦L M) ¥Dµe­± o) ¿ï¶µ Q) Â÷¶} " ++"\n" ++ ++#. #define NOVICE_LINE_TWO_B ++#: LYMessages.c:171 ++msgid "" ++" O)ther cmds B)ack E)dit D)ownload ^R)eload ^W)ipe screen search doc: / " ++"\n" ++msgstr "" ++" O) ¨ä¥L©R¥O B) ©¹¦^ E) ½s¿è D) ¤U¸ü ^R) ­«Åª ^W) ²M°£µe­± / ·j´M¤å¦r " ++"\n" ++ ++#. #define NOVICE_LINE_TWO_C ++#: LYMessages.c:173 ++msgid "" ++"O)ther cmds C)omment History: Bookmarks: V)iew, A)dd, R)emove " ++"\n" ++msgstr "" ++" O) ¨ä¥L©R¥O C) µù¸Ñ ¾ú¥v V) À˵ø®ÑÅÒ A) ¼W¥[®ÑÅÒ R) ²¾°£®ÑÅÒ " ++"\n" ++ ++#. #define FORM_NOVICELINE_ONE ++#: LYMessages.c:175 ++msgid "" ++" Enter text into the field by typing on the keyboard " ++msgstr "" ++" ±qÁä½L¿é¤J¥H¿é¤J¤å¦r¨ìÄæ¦ì¤¤ " ++ ++#. #define FORM_NOVICELINE_TWO ++#: LYMessages.c:177 ++msgid "" ++" Ctrl-U to delete all text in field, [Backspace] to delete a character " ++msgstr "" ++" Ctrl-U ¥H§R°£Äæ¦ì¤¤ªº©Ò¦³¤å¦r, [Backspace] ¥H§R°£¤@­Ó¦r¤¸ " ++ ++#. #define FORM_NOVICELINE_TWO_DELBL ++#: LYMessages.c:179 ++msgid "" ++" Ctrl-U to delete text in field, [Backspace] to delete a character " ++msgstr "" ++" Ctrl-U ¥H§R°£Äæ¦ì¤¤ªº©Ò¦³¤å¦r, [Backspace] ¥H§R°£¤@­Ó¦r¤¸ " ++ ++#. #define FORM_NOVICELINE_TWO_VAR ++#: LYMessages.c:181 ++#, c-format ++msgid "" ++" %s to delete all text in field, [Backspace] to delete a character " ++msgstr "" ++" %s ¥H§R°£Äæ¦ì¤¤©Ò¦³ªº¤å¦r, [Backspace] ¥H§R°£¤@­Ó¦r¤¸ " ++ ++#. #define FORM_NOVICELINE_TWO_DELBL_VAR ++#: LYMessages.c:183 ++#, c-format ++msgid " %s to delete text in field, [Backspace] to delete a character " ++msgstr "" ++" %s ¥H§R°£Äæ¦ì¤¤©Ò¦³ªº¤å¦r, [Backspace] ¥H§R°£¤@­Ó¦r¤¸ " ++ ++#. mailto ++#: LYMessages.c:186 ++msgid "Malformed mailto form submission! Cancelled!" ++msgstr "²§±`ªº¶l±Hªí³æ³Q°e¥X! ¨ú®ø!" ++ ++#: LYMessages.c:187 ++msgid "Warning! Control codes in mail address replaced by ?" ++msgstr "ĵ§i! ¦b¶l±H¦ì§}¤¤ªº±±¨î½X³Q´«¦¨ ?" ++ ++#: LYMessages.c:188 ++msgid "Mail disallowed! Cannot submit." ++msgstr "¤£¤¹³\\ªº¶l¥ó! µLªk°e¥X." ++ ++#: LYMessages.c:189 ++msgid "Mailto form submission failed!" ++msgstr "¶l±Hªí³æ°e¥X¥¢±Ñ!" ++ ++#: LYMessages.c:190 ++msgid "Mailto form submission Cancelled!!!" ++msgstr "¶l±Hªí³æ°e¥X³Q¨ú®ø!!!" ++ ++#: LYMessages.c:191 ++msgid "Sending form content..." ++msgstr "°e¥Xªí³æ¤º®e..." ++ ++#: LYMessages.c:192 ++msgid "No email address is present in mailto URL!" ++msgstr "¦b¶l±H URL ¤¤¨S¦³¹q¤l¶l¥ó¦ì§}!" ++ ++#. #define MAILTO_URL_TEMPOPEN_FAILED ++#: LYMessages.c:194 ++msgid "Unable to open temporary file for mailto URL!" ++msgstr "µLªk¶}±Ò¶l±H©Ò»Ý­nªº¼È¦sÀÉ!" ++ ++#: LYMessages.c:195 ++msgid "Comment request cancelled!!!" ++msgstr "µù¸Ñ­n¨D³Q¨ú®ø!!!" ++ ++#. #define INC_ORIG_MSG_PROMPT ++#: LYMessages.c:197 ++msgid "Do you wish to include the original message?" ++msgstr "±z§Æ±æ¤Þ¥Î­ì©l°T®§¶Ü?" ++ ++#. #define INC_PREPARSED_MSG_PROMPT ++#: LYMessages.c:199 ++msgid "Do you wish to include the preparsed source?" ++msgstr "±z§Æ±æ¤Þ¥Î¹w³]ªº¨Ó·½¶Ü?" ++ ++#. #define SPAWNING_EDITOR_FOR_MAIL ++#: LYMessages.c:201 ++msgid "Spawning your selected editor to edit mail message" ++msgstr "±Ò°Ê±z©Ò¿ï¾Üªº½s¿è¾¹¥H½s¿è¶l¥ó°T®§¤¤..." ++ ++#. #define ERROR_SPAWNING_EDITOR ++#: LYMessages.c:203 ++msgid "Error spawning editor, check your editor definition in the options menu" ++msgstr "½s¿è¾¹±Ò°Ê¿ù»~, ½Ð¦b¿ï¶µ¿ï³æ¤¤Àˬd±zªº½s¿è¾¹©w¸q" ++ ++#: LYMessages.c:204 ++msgid "Send this comment?" ++msgstr "¬O§_°e¥Xµù¸Ñ?" ++ ++#: LYMessages.c:205 ++msgid "Send this message?" ++msgstr "¬O§_°e¥X°T®§?" ++ ++#: LYMessages.c:206 ++msgid "Sending your message..." ++msgstr "°e¥X±zªº°T®§¤¤..." ++ ++#: LYMessages.c:207 ++msgid "Sending your comment:" ++msgstr "°e¥X±zªºµù¸Ñ: " ++ ++#. textarea ++#: LYMessages.c:210 ++msgid "Not in a TEXTAREA; cannot use external editor." ++msgstr "¤£¬O¤@­Ó¤å¦r°Ï°ì; µLªk¨Ï¥Î¥~³¡½s¿è¾¹." ++ ++#: LYMessages.c:211 ++msgid "Not in a TEXTAREA; cannot use command." ++msgstr "¤£¦b¤å¦r°Ï°ì¤¤; µLªk¨Ï¥Î«ü¥O." ++ ++#: LYMessages.c:214 ++msgid "file: ACTIONs are disallowed!" ++msgstr "ÀÉ®×: °Ê§@¤£³Q¤¹³\\!" ++ ++#. #define FILE_SERVED_LINKS_DISALLOWED ++#: LYMessages.c:216 ++msgid "file: URLs via served links are disallowed!" ++msgstr "ÀÉ®×: ¸g¥Ñ¦øªA¾¹ªº URL ³sµ²¤£³Q¤¹³\\!" ++ ++#: LYMessages.c:217 ++msgid "Access to local files denied." ++msgstr "¦s¨ú¥»¦aºÝÀɮ׳Q©Ú." ++ ++#: LYMessages.c:218 ++msgid "file: URLs via bookmarks are disallowed!" ++msgstr "ÀÉ®×: ¸g¥Ñ®ÑÅÒªº URL ¤£³Q¤¹³\\!" ++ ++#. #define SPECIAL_VIA_EXTERNAL_DISALLOWED ++#: LYMessages.c:220 ++msgid "This special URL is not allowed in external documents!" ++msgstr "«ü©wªº URL ¤£³Q¥~³¡¤å¥ó¤¹³\\!" ++ ++#: LYMessages.c:221 ++msgid "Press to return to Lynx." ++msgstr "«ö¤U ¥H¦^¨ì Lynx." ++ ++#. #define SPAWNING_MSG ++#: LYMessages.c:224 ++msgid "Spawning DCL subprocess. Use 'logout' to return to Lynx.\n" ++msgstr "±Ò°Ê DCL ¤lµ{§Ç. ¨Ï¥Î 'logout' ¥H¦^¨ì Lynx.\n" ++ ++#. #define SPAWNING_MSG ++#: LYMessages.c:228 ++msgid "Type EXIT to return to Lynx.\n" ++msgstr "¿é¤J 'exit' ¥H¦^¨ì Lynx.\n" ++ ++#. #define SPAWNING_MSG ++#: LYMessages.c:231 ++msgid "Spawning your default shell. Use 'exit' to return to Lynx.\n" ++msgstr "±Ò°Ê±zªº¹w³] shell. ¨Ï¥Î 'exit' ¥H¦^¨ì Lynx.\n" ++ ++#: LYMessages.c:234 ++msgid "Spawning is currently disabled." ++msgstr "±Ò°Ê¨ä¥Lµ{¦¡ªº¥\\¯à¥Ø«e³QÃö³¬." ++ ++#: LYMessages.c:235 ++msgid "The 'd'ownload command is currently disabled." ++msgstr "'d' ¤U¸ü«ü¥O¥Ø«e³QÃö³¬" ++ ++#: LYMessages.c:236 ++msgid "You cannot download an input field." ++msgstr "±z¤£¯à¤U¸ü¤@­Ó¿é¤JÄæ¦ì." ++ ++#: LYMessages.c:237 ++msgid "Form has a mailto action! Cannot download." ++msgstr "ªí³æ¦³¶l±H©R¥O°Ê§@! ¤£¯à¤U¸ü." ++ ++#: LYMessages.c:238 ++msgid "You cannot download a mailto: link." ++msgstr "±z¤£¯à¤U¸ü¤@­Ó¶l±H³sµ²." ++ ++#: LYMessages.c:239 ++msgid "You cannot download cookies." ++msgstr "±z¤£¯à¤U¸ü cookies." ++ ++#: LYMessages.c:240 ++msgid "You cannot download a printing option." ++msgstr "±z¤£¯à¤U¸ü¤@­Ó¦C¦L¿ï¶µ." ++ ++#: LYMessages.c:241 ++msgid "You cannot download an upload option." ++msgstr "±z¤£¯à¤U¸ü¤@­Ó¤W¶Ç¿ï¶µ." ++ ++#: LYMessages.c:242 ++msgid "You cannot download an permit option." ++msgstr "±z¤£¯à¤U¸ü¤@­Ó¤¹³\\¿ï¶µ." ++ ++#: LYMessages.c:243 ++msgid "This special URL cannot be downloaded!" ++msgstr "«ü©wªº URL ¤£¯à³Q¤U¸ü!" ++ ++#: LYMessages.c:244 ++msgid "Nothing to download." ++msgstr "¨S¦³ªF¦è¥i¨Ñ¤U¸ü." ++ ++#: LYMessages.c:245 ++msgid "Trace ON!" ++msgstr "°lÂܱҰÊ!" ++ ++#: LYMessages.c:246 ++msgid "Trace OFF!" ++msgstr "°lÂÜÃö³¬!" ++ ++#. #define CLICKABLE_IMAGES_ON ++#: LYMessages.c:248 ++msgid "Links will be included for all images! Reloading..." ++msgstr "³sµ²±N¥]¬A©Ò¦³¼v¹³! ­«·s¸ü¤J¤¤..." ++ ++#. #define CLICKABLE_IMAGES_OFF ++#: LYMessages.c:250 ++msgid "Standard image handling restored! Reloading..." ++msgstr "´_­ì¼Ð·Çªº¼v¹³±±¨î! ­«·s¸ü¤J¤¤..." ++ ++#. #define PSEUDO_INLINE_ALTS_ON ++#: LYMessages.c:252 ++msgid "" ++"Pseudo_ALTs will be inserted for inlines without ALT strings! Reloading..." ++msgstr "µêÀÀªº ALR ·|³Q´¡¤J¨ì©Ò¦³¨S¦³ ALT ªº¦æ¤º¤Þ¤J¤¤! ­«·s¸ü¤J¤¤..." ++ ++#. #define PSEUDO_INLINE_ALTS_OFF ++#: LYMessages.c:254 ++msgid "Inlines without an ALT string specified will be ignored! Reloading..." ++msgstr "¨S¦³ ALT ªº¦æ¤º¤Þ¤J³Q«ü©w¦¨©¿²¤! ­«·s¸ü¤J¤¤..." ++ ++#: LYMessages.c:255 ++msgid "Raw 8-bit or CJK mode toggled OFF! Reloading..." ++msgstr "­ì©lªº 8 ¦ì¤¸©Î CJK ¼Ò¦¡Ãö³¬! ­«·s¸ü¤J¤¤..." ++ ++#: LYMessages.c:256 ++msgid "Raw 8-bit or CJK mode toggled ON! Reloading..." ++msgstr "­ì©lªº 8 ¦ì¤¸©Î CJK ¼Ò¦¡±Ò°Ê! ­«·s¸ü¤J¤¤..." ++ ++#. #define HEAD_D_L_OR_CANCEL ++#: LYMessages.c:258 ++msgid "Send HEAD request for D)ocument or L)ink, or C)ancel? (d,l,c): " ++msgstr "¹ï D) ¤å¥ó L) ³sµ² C) ¨ú®ø °e¥X¼ÐÀY­n¨D¶Ü? (d,l,c): " ++ ++#. #define HEAD_D_OR_CANCEL ++#: LYMessages.c:260 ++msgid "Send HEAD request for D)ocument, or C)ancel? (d,c): " ++msgstr "¹ï D) ¤å¥ó C) ¨ú®ø °e¥X¼ÐÀY­n¨D¶Ü? (d,c): " ++ ++#: LYMessages.c:261 ++msgid "Sorry, the document is not an http URL." ++msgstr "©êºp, ³o­Ó¤å¥ó¤£¬O¤@­Ó HTTP URL." ++ ++#: LYMessages.c:262 ++msgid "Sorry, the link is not an http URL." ++msgstr "©êºp, ³o­Ó³sµ²¤£¬O¤@­Ó HTTP URL." ++ ++#: LYMessages.c:263 ++msgid "Sorry, the ACTION for this form is disabled." ++msgstr "©êºp, µ¹³o­Óªí³æªº°Ê§@³QÃö³¬¤F." ++ ++#. #define FORM_ACTION_NOT_HTTP_URL ++#: LYMessages.c:265 ++msgid "Sorry, the ACTION for this form is not an http URL." ++msgstr "©êºp, µ¹³o­Óªí³æªº°Ê§@¤£¬O¤@­Ó HTTP URL." ++ ++#: LYMessages.c:266 ++msgid "Not an http URL or form ACTION!" ++msgstr "¤£¬O¤@­Ó HTTP URL ©Î¬Oªí³æ°Ê§@!" ++ ++#: LYMessages.c:267 ++msgid "This special URL cannot be a form ACTION!" ++msgstr "«ü©wªº URL ¤£¯à°µ¬°ªí³æ°Ê§@!" ++ ++#: LYMessages.c:268 ++msgid "URL is not in starting realm!" ++msgstr "URL ¤£¦b¶}©l½d³ò¤¤!" ++ ++#: LYMessages.c:269 ++msgid "News posting is disabled!" ++msgstr "·s»D±i¶K³QÃö³¬!" ++ ++#: LYMessages.c:270 ++msgid "File management support is disabled!" ++msgstr "Àɮ׺޲z¤ä´©³QÃö³¬!" ++ ++#: LYMessages.c:271 ++msgid "No jump file is currently available." ++msgstr "¥Ø«e¨S¦³¸õÅDÀɮצs¦b." ++ ++#: LYMessages.c:272 ++msgid "Jump to (use '?' for list): " ++msgstr "¸õ¨ì (¨Ï¥Î '?' ¥H¨ú±o¦Cªí):" ++ ++#: LYMessages.c:273 ++msgid "Jumping to a shortcut URL is disallowed!" ++msgstr "¸õ¨ì URL ªº±¶®|¤£³Q¤¹³\\!" ++ ++#: LYMessages.c:274 ++msgid "Random URL is disallowed! Use a shortcut." ++msgstr "¥ô·Nªº URL ¬O¤£³Q¤¹³\\ªº! ¨Ï¥Î±¶®|." ++ ++#: LYMessages.c:275 ++msgid "No random URLs have been used thus far." ++msgstr "¨S¦³¥ô¦ó URL ¥i¥H¥Î¦b³o»ò»·." ++ ++#: LYMessages.c:276 ++msgid "Bookmark features are currently disabled." ++msgstr "®ÑÅÒ¥\\¯à¥Ø«e³QÃö³¬." ++ ++#: LYMessages.c:277 ++msgid "Execution via bookmarks is disabled." ++msgstr "¸g¥Ñ®ÑÅÒ°õ¦æ¥Ø«e³QÃö³¬." ++ ++#. #define BOOKMARK_FILE_NOT_DEFINED ++#: LYMessages.c:279 ++#, c-format ++msgid "Bookmark file is not defined. Use %s to see options." ++msgstr "®ÑÅÒÀÉ®×¥¼³Q©w¸q. ¨Ï¥Î %s ¨ÓÀ˵ø¿ï¶µ." ++ ++#. #define NO_TEMP_FOR_HOTLIST ++#: LYMessages.c:281 ++msgid "Unable to open tempfile for X Mosaic hotlist conversion." ++msgstr "µLªk¶}±Ò¼È¦sÀÉ¥H¨Ñ X Mosaic ¥D¾÷¦CªíÂà´«." ++ ++#: LYMessages.c:282 ++msgid "ERROR - unable to open bookmark file." ++msgstr "¿ù»~ - µLªk¶}±Ò®ÑÅÒÀÉ®×." ++ ++#. #define BOOKMARK_OPEN_FAILED_FOR_DEL ++#: LYMessages.c:284 ++msgid "Unable to open bookmark file for deletion of link." ++msgstr "µLªk¶}±Ò®ÑÅÒÀÉ®×¥H§R°£³sµ²." ++ ++#. #define BOOKSCRA_OPEN_FAILED_FOR_DEL ++#: LYMessages.c:286 ++msgid "Unable to open scratch file for deletion of link." ++msgstr "µLªk¶}±Ò°_©lÀÉ¥H§R°£³sµ²." ++ ++#: LYMessages.c:288 ++msgid "Error renaming scratch file." ++msgstr "Åܧó°_©lÀɦW¿ù»~." ++ ++#: LYMessages.c:290 ++msgid "Error renaming temporary file." ++msgstr "Åܧó¼È¦sÀɦW¿ù»~!" ++ ++#. #define BOOKTEMP_COPY_FAIL ++#: LYMessages.c:292 ++msgid "Unable to copy temporary file for deletion of link." ++msgstr "µLªk½Æ»s¼È¦sÀÉ¥H§R°£³sµ²." ++ ++#. #define BOOKTEMP_REOPEN_FAIL_FOR_DEL ++#: LYMessages.c:294 ++msgid "Unable to reopen temporary file for deletion of link." ++msgstr "µLªk­«·s¶}±Ò¼È¦sÀÉ¥H§R°£³sµ²." ++ ++#. #define BOOKMARK_LINK_NOT_ONE_LINE ++#: LYMessages.c:297 ++msgid "Link is not by itself all on one line in bookmark file." ++msgstr "³sµ²¥»Å餣¦b®ÑÅÒÀɪº¦P¤@¦æ¤¤." ++ ++#: LYMessages.c:298 ++msgid "Bookmark deletion failed." ++msgstr "®ÑÅÒ§R°£¥¢±Ñ" ++ ++#. #define BOOKMARKS_NOT_TRAVERSED ++#: LYMessages.c:300 ++msgid "Bookmark files cannot be traversed (only http URLs)." ++msgstr "®ÑÅÒÀÉ®×µLªk³Q²¾°Ê (¥u¦³ HTTP URL)." ++ ++#. #define BOOKMARKS_NOT_OPEN ++#: LYMessages.c:302 ++msgid "Unable to open bookmark file, use 'a' to save a link first" ++msgstr "µLªk¶}±Ò®ÑÅÒÀÉ®×, ½Ð¥ý¨Ï¥Î 'a' ¥HÀx¦s¤@­Ó³sµ²" ++ ++#: LYMessages.c:303 ++msgid "There are no links in this bookmark file!" ++msgstr "®ÑÅÒÀɤ¤¨S¦³³sµ²!" ++ ++#. #define BOOK_D_L_OR_CANCEL ++#: LYMessages.c:305 ++msgid "Save D)ocument or L)ink to bookmark file or C)ancel? (d,l,c): " ++msgstr "Àx¦s D) ¤å¥ó ©Î L) ³sµ² ¨ì®ÑÅÒÀɤ¤©Î C) ¨ú®ø? (d,l,c): " ++ ++#: LYMessages.c:306 ++msgid "Save D)ocument to bookmark file or C)ancel? (d,c): " ++msgstr "Àx¦s D) ¤å¥ó ¨ì®ÑÅÒÀɤ¤©Î C) ¨ú®ø? (d,c): " ++ ++#: LYMessages.c:307 ++msgid "Save L)ink to bookmark file or C)ancel? (l,c): " ++msgstr "Àx¦s L) ³sµ² ¨ì®ÑÅÒÀɤ¤©Î C) ¨ú®ø? (l,c): " ++ ++#. #define NOBOOK_POST_FORM ++#: LYMessages.c:309 ++msgid "Documents from forms with POST content cannot be saved as bookmarks." ++msgstr "¥Ñªí³æ'±i¶K'±o¨ìªº¤å¥ó¤£¯à³Q·í§@®ÑÅÒÀx¦s." ++ ++#: LYMessages.c:310 ++msgid "Cannot save form fields/links" ++msgstr "µLªkÀx¦sªí³æ Äæ¦ì/³sµ²" ++ ++#. #define NOBOOK_HSML ++#: LYMessages.c:312 ++msgid "History, showinfo, menu and list files cannot be saved as bookmarks." ++msgstr "¾ú¥v/¸ê°Tªí/¿ï³æ/¦CªíÀÉ ¤£¯à³Q·í§@®ÑÅÒÀx¦s" ++ ++#. #define CONFIRM_BOOKMARK_DELETE ++#: LYMessages.c:314 ++msgid "Do you really want to delete this link from your bookmark file?" ++msgstr "±z½T©w­n±q®ÑÅÒ¤¤§R°£³sµ²¶Ü?" ++ ++#: LYMessages.c:315 ++msgid "Malformed address." ++msgstr "¿ù»~ªº¦ì§}." ++ ++#. #define HISTORICAL_ON_MINIMAL_OFF ++#: LYMessages.c:317 ++msgid "Historical comment parsing ON (Minimal is overridden)!" ++msgstr "¾ú¥vµù¸Ñ¤ÀªR±Ò°Ê (³Ì¤p¤ÀªR³Q§í¨î)!" ++ ++#. #define HISTORICAL_OFF_MINIMAL_ON ++#: LYMessages.c:319 ++msgid "Historical comment parsing OFF (Minimal is in effect)!" ++msgstr "¾ú¥vµù¸Ñ¤ÀªRÃö³¬ (³Ì¤p¤ÀªR¦³®Ä)!" ++ ++#. #define HISTORICAL_ON_VALID_OFF ++#: LYMessages.c:321 ++msgid "Historical comment parsing ON (Valid is overridden)!" ++msgstr "¾ú¥vµù¸Ñ¤ÀªR±Ò°Ê (¦³®Ä«×ªº§í¨î)!" ++ ++#. #define HISTORICAL_OFF_VALID_ON ++#: LYMessages.c:323 ++msgid "Historical comment parsing OFF (Valid is in effect)!" ++msgstr "¾ú¥vµù¸Ñ¤ÀªRÃö³¬ (¦³®Ú¾Úªº¦³®Ä)!" ++ ++#. #define MINIMAL_ON_IN_EFFECT ++#: LYMessages.c:325 ++msgid "Minimal comment parsing ON (and in effect)!" ++msgstr "³Ì¤pµù¸Ñ¤ÀªR±Ò°Ê (¦³®Ä)!" ++ ++#. #define MINIMAL_OFF_VALID_ON ++#: LYMessages.c:327 ++msgid "Minimal comment parsing OFF (Valid is in effect)!" ++msgstr "³Ì¤pµù¸Ñ¤ÀªRÃö³¬ (¦³®Ú¾Úªº¦³®Ä)!" ++ ++#. #define MINIMAL_ON_BUT_HISTORICAL ++#: LYMessages.c:329 ++msgid "Minimal comment parsing ON (but Historical is in effect)!" ++msgstr "³Ì¤pµù¸Ñ¤ÀªR±Ò°Ê (¦ý¾ú¥v¤ÀªR¦³®Ä)!" ++ ++#. #define MINIMAL_OFF_HISTORICAL_ON ++#: LYMessages.c:331 ++msgid "Minimal comment parsing OFF (Historical is in effect)!" ++msgstr "³Ì¤pµù¸Ñ¤ÀªRÃö³¬ (¾ú¥v¤ÀªR¦³®Ä)!" ++ ++#: LYMessages.c:332 ++msgid "Soft double-quote parsing ON!" ++msgstr "³n©ÊÂù¤Þ¸¹¤ÀªR±Ò°Ê!" ++ ++#: LYMessages.c:333 ++msgid "Soft double-quote parsing OFF!" ++msgstr "³n©ÊÂù¤Þ¸¹¤ÀªRÃö³¬!" ++ ++#: LYMessages.c:334 ++msgid "Now using TagSoup parsing of HTML." ++msgstr "¥Ø«e¨Ï¥Î¹ï HTML ¶i¦æ TagSoup ¤ÀªR." ++ ++#: LYMessages.c:335 ++msgid "Now using SortaSGML parsing of HTML!" ++msgstr "¥Ø«e¨Ï¥Î¹ï HTML ¶i¦æ SortaSGML ¤ÀªR!" ++ ++#: LYMessages.c:336 ++msgid "You are already at the end of this document." ++msgstr "±z¤w¸g¦b¤å¥óªºµ²§ô¦ì¸m." ++ ++#: LYMessages.c:337 ++msgid "You are already at the beginning of this document." ++msgstr "±z¤w¸g¦b¤å¥óªº¶}ÀY¦ì¸m." ++ ++#: LYMessages.c:338 ++#, c-format ++msgid "You are already at page %d of this document." ++msgstr "±z¤w¸g¦b¤å¥óªº²Ä %d ­¶." ++ ++#: LYMessages.c:339 ++#, c-format ++msgid "Link number %d already is current." ++msgstr "¥Ø«e¤w¦b³sµ²½s¸¹ %d." ++ ++#: LYMessages.c:340 ++msgid "You are already at the first document" ++msgstr "±z¤w¸g¦b²Ä¤@­Ó¤å¥ó" ++ ++#: LYMessages.c:341 ++msgid "There are no links above this line of the document." ++msgstr "¦b³o¦æ¥H¤Wªº¤å¥ó¨S¦³³sµ²¤F." ++ ++#: LYMessages.c:342 ++msgid "There are no links below this line of the document." ++msgstr "¦b³o¦æ¥H¤Uªº¤å¥ó¨S¦³³sµ²¤F." ++ ++#. #define MAXLEN_REACHED_DEL_OR_MOV ++#: LYMessages.c:344 ++msgid "Maximum length reached! Delete text or move off field." ++msgstr "¨ì¹F³Ì¤jªø«×! §R°£¤å¦r©ÎÂ÷¶}¥»Äæ¦ì." ++ ++#. #define NOT_ON_SUBMIT_OR_LINK ++#: LYMessages.c:346 ++msgid "You are not on a form submission button or normal link." ++msgstr "±z¤£¦bªí³æ°e¥X«ö¶s©Î¤@¯ë³sµ²¤W." ++ ++#. #define NEED_CHECKED_RADIO_BUTTON ++#: LYMessages.c:348 ++msgid "One radio button must be checked at all times!" ++msgstr "¦Ü¤Ö­n¼Ð°O¤@­Ó¶ê¶s!" ++ ++#: LYMessages.c:349 ++msgid "No submit button for this form, submit single text field?" ++msgstr "³o­Óªí³æ¨S¦³°e¥X«ö¶s, ¬O§_°e¥X³æ¤@¤å¦rÄæ¦ì?" ++ ++#: LYMessages.c:350 ++msgid "Do you want to go back to the previous document?" ++msgstr "±z­n¦^¨ì«e¤@¥÷¤å¥ó¤¤¶Ü?" ++ ++#: LYMessages.c:351 ++msgid "Use arrows or tab to move off of field." ++msgstr "¨Ï¥Î¤è¦VÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#. #define ENTER_TEXT_ARROWS_OR_TAB ++#: LYMessages.c:353 ++msgid "Enter text. Use arrows or tab to move off of field." ++msgstr "¿é¤J¤å¦r. ¨Ï¥Î¤è¦VÁä©Î ¥HÂ÷¶}Äæ¦ì." ++ ++#: LYMessages.c:354 ++msgid "** Bad HTML!! No form action defined. **" ++msgstr "** ¿ù»~ªº HTML!! ¨S¦³©w¸qªí³æ°Ê§@. **" ++ ++#: LYMessages.c:355 ++msgid "Bad HTML!! Unable to create popup window!" ++msgstr "¿ù»~ªº HTML!! µLªk«Ø¥ß¸õ¥Xµøµ¡!" ++ ++#: LYMessages.c:356 ++msgid "Unable to create popup window!" ++msgstr "µLªk«Ø¥ß¸õ¥Xµøµ¡!" ++ ++#: LYMessages.c:357 ++msgid "Goto a random URL is disallowed!" ++msgstr "²¾¨ì¥ô·Nªº URL ¬O¤£³Q¤¹³\\ªº!" ++ ++#: LYMessages.c:358 ++msgid "Goto a non-http URL is disallowed!" ++msgstr "²¾¨ì«D HTTP ªº URL ¬O¤£³Q¤¹³\\ªº!" ++ ++#: LYMessages.c:359 ++msgid "You are not allowed to goto \"cso:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"cso:\" URL" ++ ++#: LYMessages.c:360 ++msgid "You are not allowed to goto \"file:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"file:\" URL" ++ ++#: LYMessages.c:361 ++msgid "You are not allowed to goto \"finger:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"finger:\" URL" ++ ++#: LYMessages.c:362 ++msgid "You are not allowed to goto \"ftp:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"ftp:\" URL" ++ ++#: LYMessages.c:363 ++msgid "You are not allowed to goto \"gopher:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"gopher:\" URL" ++ ++#: LYMessages.c:364 ++msgid "You are not allowed to goto \"http:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"http:\" URL" ++ ++#: LYMessages.c:365 ++msgid "You are not allowed to goto \"https:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"https:\" URL" ++ ++#: LYMessages.c:366 ++msgid "You are not allowed to goto \"lynxcgi:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"lynxcgi:\" URL" ++ ++#: LYMessages.c:367 ++msgid "You are not allowed to goto \"lynxexec:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"lynxexec:\" URL" ++ ++#: LYMessages.c:368 ++msgid "You are not allowed to goto \"lynxprog:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"lynxprog:\" URL" ++ ++#: LYMessages.c:369 ++msgid "You are not allowed to goto \"mailto:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"mailto:\" URL" ++ ++#: LYMessages.c:370 ++msgid "You are not allowed to goto \"news:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"news:\" URL" ++ ++#: LYMessages.c:371 ++msgid "You are not allowed to goto \"nntp:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"nntp:\" URL" ++ ++#: LYMessages.c:372 ++msgid "You are not allowed to goto \"rlogin:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"rlogin:\" URL" ++ ++#: LYMessages.c:373 ++msgid "You are not allowed to goto \"snews:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"snews:\" URL" ++ ++#: LYMessages.c:374 ++msgid "You are not allowed to goto \"telnet:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"telnet:\" URL" ++ ++#: LYMessages.c:375 ++msgid "You are not allowed to goto \"tn3270:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"tn3270:\" URL" ++ ++#: LYMessages.c:376 ++msgid "You are not allowed to goto \"wais:\" URLs" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì \"wais:\" URL" ++ ++#: LYMessages.c:377 ++msgid "This special URL is not allowed as a goto!" ++msgstr "±z¤£³Q¤¹³\\²¾¨ì«ü©wªº URL!" ++ ++#: LYMessages.c:378 ++msgid "URL to open: " ++msgstr "­n¶}±Òªº URL: " ++ ++#: LYMessages.c:379 ++msgid "Edit the current Goto URL: " ++msgstr "½s¿è¥Ø«eªº'²¾¨ì' URL: " ++ ++#: LYMessages.c:380 ++msgid "Edit the previous Goto URL: " ++msgstr "½s¿è«e­±ªº'²¾¨ì' URL: " ++ ++#: LYMessages.c:381 ++msgid "Edit a previous Goto URL: " ++msgstr "½s¿è«e¤@­Ó'²¾¨ì' URL: " ++ ++#: LYMessages.c:382 ++msgid "Current document has POST data." ++msgstr "¥Ø«eªº¤å¥ó¦³'±i¶K'¸ê®Æ." ++ ++#: LYMessages.c:383 ++msgid "Edit this document's URL: " ++msgstr "½s¿è³o­Ó¤å¥óªº URL: " ++ ++#: LYMessages.c:384 ++msgid "Edit the current link's URL: " ++msgstr "½s¿è¥Ø«e³sµ²ªº URL: " ++ ++#: LYMessages.c:385 ++msgid "You cannot edit File Management URLs" ++msgstr "±z¤£¯à½s¿èÀɮ׺޲z URL" ++ ++#: LYMessages.c:386 ++msgid "Enter a database query: " ++msgstr "¿é¤J¸ê®Æ®w¬d¸ß: " ++ ++#: LYMessages.c:387 ++msgid "Enter a whereis query: " ++msgstr "¿é¤J whereis ¬d¸ß: " ++ ++#: LYMessages.c:388 ++msgid "Edit the current query: " ++msgstr "½s¿è¥Ø«eªº¬d¸ß: " ++ ++#: LYMessages.c:389 ++msgid "Edit the previous query: " ++msgstr "½s¿è¤§«eªº¬d¸ß: " ++ ++#: LYMessages.c:390 ++msgid "Edit a previous query: " ++msgstr "½s¿è«e¤@­Ó¬d¸ß: " ++ ++#. #define USE_C_R_TO_RESUB_CUR_QUERY ++#: LYMessages.c:392 ++msgid "Use Control-R to resubmit the current query." ++msgstr "¨Ï¥Î Control-R ¥H­«·s°e¥X¥Ø«eªº¬d¸ß." ++ ++#: LYMessages.c:393 ++msgid "Edit the current shortcut: " ++msgstr "½s¿è¥Ø«eªº±¶®|: " ++ ++#: LYMessages.c:394 ++msgid "Edit the previous shortcut: " ++msgstr "½s¿è¤§«eªº±¶®|: " ++ ++#: LYMessages.c:395 ++msgid "Edit a previous shortcut: " ++msgstr "½s¿è«e¤@­Ó±¶®|: " ++ ++#: LYMessages.c:396 ++#, c-format ++msgid "Key '%c' is not mapped to a jump file!" ++msgstr "«öÁä '%c' ¨S¦³¹ïÀ³¨ì¤@­Ó¸õÅDÀÉ®×!" ++ ++#: LYMessages.c:397 ++msgid "Cannot locate jump file!" ++msgstr "§ä¤£¨ì¸õÅDÀÉ!" ++ ++#: LYMessages.c:398 ++msgid "Cannot open jump file!" ++msgstr "µLªk¶}±Ò¸õÅDÀÉ!" ++ ++#: LYMessages.c:399 ++msgid "Error reading jump file!" ++msgstr "Ū¨ú¸õÅDÀɮɵo¥Í¿ù»~!" ++ ++#: LYMessages.c:400 ++msgid "Out of memory reading jump file!" ++msgstr "Ū¨ú¸õÅDÀɮɰO¾ÐÅ餣¨¬!" ++ ++#: LYMessages.c:401 ++msgid "Out of memory reading jump table!" ++msgstr "Ū¨ú¸õÅDªí®É°O¾ÐÅ餣¨¬!" ++ ++#: LYMessages.c:402 ++msgid "No index is currently available." ++msgstr "¥Ø«e¨S¦³¥i¥Îªº¯Á¤Þ." ++ ++#. #define CONFIRM_MAIN_SCREEN ++#: LYMessages.c:404 ++msgid "Do you really want to go to the Main screen?" ++msgstr "±z¯uªº­n¸õ¨ì¥Dµe­±¶Ü?" ++ ++#: LYMessages.c:405 ++msgid "You are already at main screen!" ++msgstr "±z¤w¸g¦b¥Dµe­±!" ++ ++#. #define NOT_ISINDEX ++#: LYMessages.c:407 ++msgid "" ++"Not a searchable indexed document -- press '/' to search for a text string" ++msgstr "¤£¬O¤@­Ó¥i·j´Mªº¯Á¤Þ¤å¥ó -- «ö¤U '/' ¥H§ä´M¤å¦r¦r¦ê" ++ ++#. #define NO_OWNER ++#: LYMessages.c:409 ++msgid "No owner is defined for this file so you cannot send a comment" ++msgstr "³o­ÓÀɮרS¦³©w¸q¾Ö¦³ªÌ, ©Ò¥H±z¥i¥H°e¥X¤@­Óµù¸Ñ" ++ ++#: LYMessages.c:410 ++#, c-format ++msgid "No owner is defined. Use %s?" ++msgstr "¨S¦³©w¸q¾Ö¦³ªÌ, ¨Ï¥Î %s ¶Ü?" ++ ++#: LYMessages.c:411 ++msgid "Do you wish to send a comment?" ++msgstr "±z­n°e¥X¤@­Óµù¸Ñ¶Ü?" ++ ++#: LYMessages.c:412 ++msgid "Mail is disallowed so you cannot send a comment" ++msgstr "¶l¥ó¤£³Q¤¹³\\, ©Ò¥H±z¤£¯à°e¥Xµù¸Ñ" ++ ++#: LYMessages.c:413 ++msgid "The 'e'dit command is currently disabled." ++msgstr "½s¿è«ü¥O¥Ø«e³QÃö³¬." ++ ++#: LYMessages.c:414 ++msgid "External editing is currently disabled." ++msgstr "¥~³¡½s¿è¥Ø«e³QÃö³¬." ++ ++#: LYMessages.c:415 ++msgid "System error - failure to get status." ++msgstr "¨t²Î¿ù»~ - µLªk¨ú±oª¬ºA." ++ ++#: LYMessages.c:416 ++msgid "No editor is defined!" ++msgstr "¥¼©w¸q½s¿è¾¹!" ++ ++#: LYMessages.c:417 ++msgid "The 'p'rint command is currently disabled." ++msgstr "¦C¦L«ü¥O¥Ø«e³QÃö³¬." ++ ++#: LYMessages.c:418 ++msgid "Document has no Toolbar links or Banner." ++msgstr "¤å¥ó¨S¦³¤u¨ã¦C©Î¼ÐÀY." ++ ++#: LYMessages.c:419 ++msgid "Unable to open traversal file." ++msgstr "µLªk¶}±Ò²¾°ÊÀÉ®×." ++ ++#: LYMessages.c:420 ++msgid "Unable to open traversal found file." ++msgstr "µLªk¶}±Ò²¾°Ê§ä´MÀÉ®×." ++ ++#: LYMessages.c:421 ++msgid "Unable to open reject file." ++msgstr "µLªk¶}±Ò©Úµ´ÀÉ®×." ++ ++#: LYMessages.c:422 ++msgid "Unable to open traversal errors output file" ++msgstr "µLªk¶}±Ò²¾°Ê¿ù»~¿é¥XÀÉ" ++ ++#: LYMessages.c:423 ++msgid "TRAVERSAL WAS INTERRUPTED" ++msgstr "²¾°Ê³Q¤¤Â_" ++ ++#: LYMessages.c:424 ++msgid "Follow link (or goto link or page) number: " ++msgstr "¸òÀH³sµ² (©Î²¾¨ì³sµ²©Î­¶) ¼Æ: " ++ ++#: LYMessages.c:425 ++msgid "Select option (or page) number: " ++msgstr "¿ï¾Ü¿ï¶µ (©Î­¶) ¼Æ: " ++ ++#: LYMessages.c:426 ++msgid "Option choice (or page) number: " ++msgstr "¿ï¶µ¿ï¾Ü (©Î­¶) ¼Æ: " ++ ++#: LYMessages.c:427 ++#, c-format ++msgid "Option number %d already is current." ++msgstr "¤w¸g¦b²Ä $d ­Ó¿ï¶µ" ++ ++#: LYMessages.c:428 ++#, c-format ++msgid "Choice number %d already is current." ++msgstr "¤w¸g¦b²Ä %d ­Ó¿ï¾Ü" ++ ++#. #define ALREADY_AT_OPTION_END ++#: LYMessages.c:430 ++msgid "You are already at the end of this option list." ++msgstr "±z¤w¸g¦b¿ï¶µ¦Cªíªº©³ºÝ." ++ ++#. #define ALREADY_AT_CHOICE_END ++#: LYMessages.c:432 ++msgid "You are already at the end of this choice list." ++msgstr "±z¤w¸g¦b¿ï¾Ü¦Cªíªº©³ºÝ." ++ ++#. #define ALREADY_AT_OPTION_BEGIN ++#: LYMessages.c:434 ++msgid "You are already at the beginning of this option list." ++msgstr "±z¤w¸g¦b¿ï¶µ¦Cªíªº¶}ÀY." ++ ++#. #define ALREADY_AT_CHOICE_BEGIN ++#: LYMessages.c:436 ++msgid "You are already at the beginning of this choice list." ++msgstr "±z¤w¸g¦b¿ï¾Ü¦Cªíªº¶}ÀY." ++ ++#. #define ALREADY_AT_OPTION_PAGE ++#: LYMessages.c:438 ++#, c-format ++msgid "You are already at page %d of this option list." ++msgstr "±z¤w¸g¦b¿ï¶µ¦Cªíªº²Ä %d ­¶." ++ ++#. #define ALREADY_AT_CHOICE_PAGE ++#: LYMessages.c:440 ++#, c-format ++msgid "You are already at page %d of this choice list." ++msgstr "±z¤w¸g¦b¿ï¾Ü¦Cªíªº²Ä %d ­¶." ++ ++#: LYMessages.c:441 ++msgid "You have entered an invalid option number." ++msgstr "±z¿é¤J¤F¿ù»~ªº¿ï¶µ¸¹½X." ++ ++#: LYMessages.c:442 ++msgid "You have entered an invalid choice number." ++msgstr "±z¿é¤J¤F¿ù»~ªº¿ï¾Ü¸¹½X." ++ ++#: LYMessages.c:443 ++msgid "** Bad HTML!! Use -trace to diagnose. **" ++msgstr "** ¿ù»~ªº HTML!! ¨Ï¥Î -trace ¨Ó¶EÂ_. **" ++ ++#: LYMessages.c:444 ++msgid "Give name of file to save in" ++msgstr "­nÀx¦sÀɮתº¦WºÙ" ++ ++#: LYMessages.c:445 ++msgid "Can't save data to file -- please run WWW locally" ++msgstr "µLªk¸ê®Æ¦s¨ìÀɮפ¤ -- ½Ð¦b¥»¦aºÝ°õ¦æ WWW" ++ ++#: LYMessages.c:446 ++msgid "Can't open temporary file!" ++msgstr "µLªk¶}±Ò¼È¦sÀÉ®×!" ++ ++#: LYMessages.c:447 ++msgid "Can't open output file! Cancelling!" ++msgstr "µLªk¶}±Ò¿é¥XÀÉ®×! ©ñ±ó¤¤!" ++ ++#: LYMessages.c:448 ++msgid "Execution is disabled." ++msgstr "°õ¦æ³QÃö³¬." ++ ++#. #define EXECUTION_DISABLED_FOR_FILE ++#: LYMessages.c:450 ++#, c-format ++msgid "Execution is not enabled for this file. See the Options menu (use %s)." ++msgstr "°õ¦æ¥Ø«e¥¼³Q±Ò°Ê. ½Ð°Ñ·Ó¿ï¶µ¥Ø¿ý (¨Ï¥Î %s)." ++ ++#. #define EXECUTION_NOT_COMPILED ++#: LYMessages.c:452 ++msgid "Execution capabilities are not compiled into this version." ++msgstr "°õ¦æ¯à¤O¥¼³Q½sĶ¨ì¦¹¤@ª©¥»¤¤." ++ ++#: LYMessages.c:453 ++msgid "This file cannot be displayed on this terminal." ++msgstr "³o­ÓÀÉ®×µLªk¦b³o­Ó²×ºÝ¾÷Åã¥Ü." ++ ++#. #define CANNOT_DISPLAY_FILE_D_OR_C ++#: LYMessages.c:455 ++msgid "This file cannot be displayed on this terminal: D)ownload, or C)ancel" ++msgstr "³o­ÓÀÉ®×µLªk¦b³o­Ó²×ºÝ¾÷Åã¥Ü: D) ¤U¸ü, C) ©ñ±ó" ++ ++#: LYMessages.c:456 ++#, c-format ++msgid "%s D)ownload, or C)ancel" ++msgstr "%s D) ¤U¸ü C) ©ñ±ó" ++ ++#: LYMessages.c:457 ++msgid "Cancelling file." ++msgstr "©ñ±óÀɮפ¤." ++ ++#: LYMessages.c:458 ++msgid "Retrieving file. - PLEASE WAIT -" ++msgstr "±µ¦¬Àɮפ¤. - ½Ðµy­Ô -" ++ ++#: LYMessages.c:459 ++msgid "Enter a filename: " ++msgstr "½Ð¿é¤JÀɦW: " ++ ++#: LYMessages.c:460 ++msgid "Edit the previous filename: " ++msgstr "½s¿è¤§«eªºÀɦW: " ++ ++#: LYMessages.c:461 ++msgid "Edit a previous filename: " ++msgstr "½s¿è«e¤@­ÓÀɦW: " ++ ++#: LYMessages.c:462 ++msgid "Enter a new filename: " ++msgstr "¿é¤J·sªºÀɦW: " ++ ++#: LYMessages.c:463 ++msgid "File name may not begin with a dot." ++msgstr "ÀɦW¤£¯à¥H'.'°µ¬°¶}ÀY." ++ ++#: LYMessages.c:465 ++msgid "File exists. Create higher version?" ++msgstr "Àɮפw¸g¦s¦b. «Ø¥ß¸û·sªºª©¥»?" ++ ++#: LYMessages.c:467 ++msgid "File exists. Overwrite?" ++msgstr "Àɮפw¸g¦s¦b. ¬O§_»\\¼g?" ++ ++#: LYMessages.c:469 ++msgid "Cannot write to file." ++msgstr "µLªk¼g¤JÀÉ®×." ++ ++#: LYMessages.c:470 ++msgid "ERROR! - download command is misconfigured." ++msgstr "¿ù»~!! - ¤U¸ü«ü¥O²ÕºA¿ù»~." ++ ++#: LYMessages.c:471 ++msgid "Unable to download file." ++msgstr "µLªk¤U¸üÀÉ®×." ++ ++#: LYMessages.c:472 ++msgid "Reading directory..." ++msgstr "Ū¨ú¸ô®|¤¤..." ++ ++#: LYMessages.c:473 ++msgid "Building directory listing..." ++msgstr "«Ø¥ß¸ô®|¦Cªí¤¤..." ++ ++#: LYMessages.c:474 ++msgid "Saving..." ++msgstr "Àx¦s¤¤..." ++ ++#: LYMessages.c:475 ++#, c-format ++msgid "Could not edit file '%s'." ++msgstr "µLªk½s¿èÀÉ®× '%s'." ++ ++#: LYMessages.c:476 ++msgid "Unable to access document!" ++msgstr "µLªk¦s¨ú¤å¥ó!" ++ ++#: LYMessages.c:477 ++msgid "Could not access file." ++msgstr "µLªk¦s¨úÀÉ®×." ++ ++#: LYMessages.c:478 ++msgid "Could not access directory." ++msgstr "µLªk¦s¨ú¸ô®|." ++ ++#: LYMessages.c:479 ++msgid "Could not load data." ++msgstr "µLªk¸ü¤J¸ê®Æ." ++ ++#. #define CANNOT_EDIT_REMOTE_FILES ++#: LYMessages.c:481 ++msgid "Lynx cannot currently (e)dit remote WWW files." ++msgstr "Lynx ¥Ø«e¤£¯à½s¿è»·ºÝ WWW ÀÉ®×." ++ ++#. #define CANNOT_EDIT_FIELD ++#: LYMessages.c:483 ++msgid "This field cannot be (e)dited with an external editor." ++msgstr "³o­ÓÄæ¦ì¤£¯à³Q¥~³¡½s¿è¾¹½s¿è." ++ ++#: LYMessages.c:484 ++msgid "Bad rule" ++msgstr "¿ù»~ªº³W«h" ++ ++#: LYMessages.c:485 ++msgid "Insufficient operands:" ++msgstr "¤£¨¬ªº¾Þ§@¤l:" ++ ++#: LYMessages.c:486 ++msgid "You are not authorized to edit this file." ++msgstr "±z¥¼³Q±ÂÅv½s¿è¦¹ÀÉ®×." ++ ++#: LYMessages.c:487 ++msgid "Title: " ++msgstr "¼ÐÃD: " ++ ++#: LYMessages.c:488 ++msgid "Subject: " ++msgstr "¥DÃD: " ++ ++#: LYMessages.c:489 ++msgid "Username: " ++msgstr "¨Ï¥ÎªÌ¦WºÙ: " ++ ++#: LYMessages.c:490 ++msgid "Password: " ++msgstr "±K½X: " ++ ++#: LYMessages.c:491 ++msgid "lynx: Username and Password required!!!" ++msgstr "lynx: »Ý­n¨Ï¥ÎªÌ¦WºÙ»P±K½X!!!" ++ ++#: LYMessages.c:492 ++msgid "lynx: Password required!!!" ++msgstr "lynx: »Ý­n±K½X!!!" ++ ++#: LYMessages.c:493 ++msgid "Clear all authorization info for this session?" ++msgstr "²M°£³o­Ó¤u§@´Á¶¡ªº»{ÃÒ¸ê°T¶Ü?" ++ ++#: LYMessages.c:494 ++msgid "Authorization info cleared." ++msgstr "»{ÃÒ¸ê°T¤w²M°£." ++ ++#: LYMessages.c:495 ++msgid "Authorization failed. Retry?" ++msgstr "»{ÃÒ¥¢±Ñ. ¬O§_­«¸Õ?" ++ ++#: LYMessages.c:496 ++msgid "cgi support has been disabled." ++msgstr "cgi ¤ä´©¤w³QÃö³¬." ++ ++#. #define CGI_NOT_COMPILED ++#: LYMessages.c:498 ++msgid "Lynxcgi capabilities are not compiled into this version." ++msgstr "lynxcgi ¬Û®e¯à¤O¥¼³Q½sĶ¨ì¦¹¤@ª©¥»¤¤." ++ ++#: LYMessages.c:499 ++#, c-format ++msgid "Sorry, no known way of converting %s to %s." ++msgstr "©êºp, ¤£ª¾¹D¦p¦ó§â %s Âà´«¦¨ %s." ++ ++#: LYMessages.c:500 ++msgid "Unable to set up connection." ++msgstr "µLªk³]©w³s±µ." ++ ++#: LYMessages.c:501 ++msgid "Unable to make connection" ++msgstr "µLªk«Ø¥ß³s±µ" ++ ++#. #define MALFORMED_EXEC_REQUEST ++#: LYMessages.c:503 ++msgid "Executable link rejected due to malformed request." ++msgstr "¦]¬°²§±`ªº­n¨D, °õ¦æ³sµ²³Q©Ú." ++ ++#. #define BADCHAR_IN_EXEC_LINK ++#: LYMessages.c:505 ++#, c-format ++msgid "Executable link rejected due to `%c' character." ++msgstr "¦]¬° '%c' ¦r¤¸, °õ¦æ³sµ²³Q©Ú." ++ ++#. #define RELPATH_IN_EXEC_LINK ++#: LYMessages.c:507 ++msgid "Executable link rejected due to relative path string ('../')." ++msgstr "¦]¬°¬Û¹ï¸ô®| ('../'), °õ¦æ³sµ²³Q©Ú." ++ ++#. #define BADLOCPATH_IN_EXEC_LINK ++#: LYMessages.c:509 ++msgid "Executable link rejected due to location or path." ++msgstr "¦]¬°¸ô®|©Î¦ì¸m, °õ¦æ³sµ²³Q©Ú." ++ ++#: LYMessages.c:510 ++msgid "Mail access is disabled!" ++msgstr "¶l¥ó¦s¨ú³QÃö³¬!" ++ ++#. #define ACCESS_ONLY_LOCALHOST ++#: LYMessages.c:512 ++msgid "Only files and servers on the local host can be accessed." ++msgstr "¥u¦³¦b¥»¦aºÝªºÀÉ®×»P¦øªA¾¹¥i¥H³Q¦s¨ú." ++ ++#: LYMessages.c:513 ++msgid "Telnet access is disabled!" ++msgstr "Telnet ¦s¨ú³QÃö³¬!" ++ ++#. #define TELNET_PORT_SPECS_DISABLED ++#: LYMessages.c:515 ++msgid "Telnet port specifications are disabled." ++msgstr "«ü©w Telnet ³q°T°ð³QÃö³¬." ++ ++#: LYMessages.c:516 ++msgid "USENET news access is disabled!" ++msgstr "USENET ·s»D¦s¨ú³QÃö³¬!" ++ ++#: LYMessages.c:517 ++msgid "Rlogin access is disabled!" ++msgstr "Rlogin ¦s¨ú³QÃö³¬!" ++ ++#: LYMessages.c:518 ++msgid "Ftp access is disabled!" ++msgstr "FTP ¦s¨ú³QÃö³¬!" ++ ++#: LYMessages.c:519 ++msgid "There are no references from this document." ++msgstr "³o­Ó¤å¥ó¨S¦³°Ñ¦Ò¸ê®Æ." ++ ++#: LYMessages.c:520 ++msgid "There are only hidden links from this document." ++msgstr "³o­Ó¤å¥ó¤¤¥u¦³ÁôÂ꺳sµ²." ++ ++#: LYMessages.c:522 ++msgid "Unable to open command file." ++msgstr "µLªk¶}±Ò«ü¥OÀÉ." ++ ++#: LYMessages.c:524 ++msgid "News Post Cancelled!!!" ++msgstr "·s»D±i¶K³Q¨ú®ø!!!" ++ ++#. #define SPAWNING_EDITOR_FOR_NEWS ++#: LYMessages.c:526 ++msgid "Spawning your selected editor to edit news message" ++msgstr "±Ò°Ê±z¿ï¾Üªº½s¿è¾¹¥H½s¿è·s°T®§" ++ ++#: LYMessages.c:527 ++msgid "Post this message?" ++msgstr "¬O§_±i¶K°T®§?" ++ ++#: LYMessages.c:528 ++#, c-format ++msgid "Append '%s'?" ++msgstr "ªþ¥[¨ì '%s' ¶Ü?" ++ ++#: LYMessages.c:529 ++msgid "Posting to newsgroup(s)..." ++msgstr "±i¶K¨ì·s»D¸s²Õ¤¤..." ++ ++#: LYMessages.c:531 ++msgid "*** You have unread mail. ***" ++msgstr "*** ±z¦³¥¼Åªªº¶l¥ó. ***" ++ ++#: LYMessages.c:533 ++msgid "*** You have mail. ***" ++msgstr "*** ±z¦³¶l¥ó. ***" ++ ++#: LYMessages.c:535 ++msgid "*** You have new mail. ***" ++msgstr "*** ±z¦³·s¶l¥ó. ***" ++ ++#: LYMessages.c:536 ++msgid "File insert cancelled!!!" ++msgstr "ÀÉ®×´¡¤J³Q¨ú®ø!!!" ++ ++#: LYMessages.c:537 ++msgid "Not enough memory for file!" ++msgstr "¨S¦³¨¬°÷ªº°O¾ÐÅé¨ÑÀɮרϥÎ!" ++ ++#: LYMessages.c:538 ++msgid "Can't open file for reading." ++msgstr "µLªk¶}±ÒÀÉ®×¥H¨ÑŪ¨ú." ++ ++#: LYMessages.c:539 ++msgid "File does not exist." ++msgstr "Àɮפ£¦s¦b." ++ ++#: LYMessages.c:540 ++msgid "File does not exist - reenter or cancel:" ++msgstr "Àɮפ£¦s¦b - ­«·s¿é¤J©Î¨ú®ø:" ++ ++#: LYMessages.c:541 ++msgid "File is not readable." ++msgstr "Àɮ׬O¤£¥iŪªº." ++ ++#: LYMessages.c:542 ++msgid "File is not readable - reenter or cancel:" ++msgstr "Àɮ׬O¤£¥iŪªº - ­«·s¿é¤J©Î¨ú®ø:" ++ ++#: LYMessages.c:543 ++msgid "Nothing to insert - file is 0-length." ++msgstr "¨S¦³ªF¦è¥i´¡¤J - Àɮפj¤p¬° 0." ++ ++#: LYMessages.c:544 ++msgid "Save request cancelled!!!" ++msgstr "Àx¦s­n¨D³Q¨ú®ø!!!" ++ ++#: LYMessages.c:545 ++msgid "Mail request cancelled!!!" ++msgstr "¶l¥ó­n¨D³Q¨ú®ø!!!" ++ ++#. #define CONFIRM_MAIL_SOURCE_PREPARSED ++#: LYMessages.c:547 ++msgid "Viewing preparsed source. Are you sure you want to mail it?" ++msgstr "¥¿À˵ø³B²z¹Lªº¨Ó·½ÀÉ. ±z¬O§_·Q±H¥X?" ++ ++#: LYMessages.c:548 ++msgid "Please wait..." ++msgstr "½Ðµy­Ô..." ++ ++#: LYMessages.c:549 ++msgid "Mailing file. Please wait..." ++msgstr "¶l±HÀɮפ¤. ½Ðµy­Ô..." ++ ++#: LYMessages.c:550 ++msgid "ERROR - Unable to mail file" ++msgstr "¿ù»~ - µLªk±H¥XÀÉ®×" ++ ++#. #define CONFIRM_LONG_SCREEN_PRINT ++#: LYMessages.c:552 ++#, c-format ++msgid "File is %d screens long. Are you sure you want to print?" ++msgstr "Àɮתø«×¬° %d ­Óµe­±ªø. ±z½T©w­n¦L¥X¶Ü?" ++ ++#: LYMessages.c:553 ++msgid "Print request cancelled!!!" ++msgstr "¦C¦L­n¨D³Q¨ú®ø!!!" ++ ++#: LYMessages.c:554 ++msgid "Press to begin: " ++msgstr "«ö¤U ¥H¶}©l: " ++ ++#: LYMessages.c:555 ++msgid "Press to finish: " ++msgstr "«ö¤U ¥Hµ²§ô: " ++ ++#. #define CONFIRM_LONG_PAGE_PRINT ++#: LYMessages.c:557 ++#, c-format ++msgid "File is %d pages long. Are you sure you want to print?" ++msgstr "Àɮצ@ %d ­¶. ±z½T©w­n¦L¥X¶Ü?" ++ ++#. #define CHECK_PRINTER ++#: LYMessages.c:559 ++msgid "Be sure your printer is on-line. Press to start printing:" ++msgstr "½Ð½T©w±zªº¦Lªí¾÷¥H³s½u. «ö¤U ¥H¶}©l¦C¦L:" ++ ++#: LYMessages.c:560 ++msgid "ERROR - Unable to allocate file space!!!" ++msgstr "¿ù»~ - µLªk°t¸mÀɮתŶ¡!!!" ++ ++#: LYMessages.c:561 ++msgid "Unable to open tempfile" ++msgstr "µLªk¶}±Ò¼È¦sÀÉ" ++ ++#: LYMessages.c:562 ++msgid "Unable to open print options file" ++msgstr "µLªk¶}±Ò¦C¦L¿ï¶µÀÉ" ++ ++#: LYMessages.c:563 ++msgid "Printing file. Please wait..." ++msgstr "¦C¦LÀɮפ¤. ½Ðµy­Ô..." ++ ++#: LYMessages.c:564 ++msgid "Please enter a valid internet mail address: " ++msgstr "½Ð¿é¤J¤@­Ó¦Xªkªº¹q¤l¶l¥ó¦ì§}: " ++ ++#: LYMessages.c:565 ++msgid "ERROR! - printer is misconfigured!" ++msgstr "¿ù»~! - ¦Lªí¾÷²ÕºA¿ù»~!" ++ ++#: LYMessages.c:566 ++msgid "Image map from POST response not available!" ++msgstr "±q'±i¶K'¦^À³ªº¼v¹³¦a¹Ï¤£¦s¦b!" ++ ++#: LYMessages.c:567 ++msgid "Misdirected client-side image MAP request!" ++msgstr "«È¤áºÝ¼v¹³¦a¹Ï­n¨D«ü¦V¿ù»~!" ++ ++#: LYMessages.c:568 ++msgid "Client-side image MAP is not accessible!" ++msgstr "«È¤áºÝ¼v¹³¦a¹ÏµLªk¦s¨ú!" ++ ++#: LYMessages.c:569 ++msgid "No client-side image MAPs are available!" ++msgstr "«È¤áºÝ¼v¹³¦a¹Ï¤£¦s¦b!" ++ ++#: LYMessages.c:570 ++msgid "Client-side image MAP is not available!" ++msgstr "«È¤áºÝ¼v¹³¦a¹Ï¤£¦s¦b!" ++ ++#. #define OPTION_SCREEN_NEEDS_24 ++#: LYMessages.c:573 ++msgid "Screen height must be at least 24 lines for the Options menu!" ++msgstr "¿ï¶µ¿ï³æ¤¤ªº¿Ã¹õ°ª«×¦Ü¤Ö­n 24 ¦æ!" ++ ++#. #define OPTION_SCREEN_NEEDS_23 ++#: LYMessages.c:575 ++msgid "Screen height must be at least 23 lines for the Options menu!" ++msgstr "¿ï¶µ¿ï³æ¤¤ªº¿Ã¹õ°ª«×¦Ü¤Ö­n 23 ¦æ!" ++ ++#. #define OPTION_SCREEN_NEEDS_22 ++#: LYMessages.c:577 ++msgid "Screen height must be at least 22 lines for the Options menu!" ++msgstr "¿ï¶µ¿ï³æ¤¤ªº¿Ã¹õ°ª«×¦Ü¤Ö­n 22 ¦æ!" ++ ++#: LYMessages.c:579 ++msgid "That key requires Advanced User mode." ++msgstr "³o­Ó«öÁä»Ý­n¨Ï¥Î¶i¶¥¨Ï¥ÎªÌ¼Ò¦¡." ++ ++#: LYMessages.c:580 ++#, c-format ++msgid "Content-type: %s" ++msgstr "¤º®eºØÃþ: %s" ++ ++#: LYMessages.c:581 ++msgid "Command: " ++msgstr "«ü¥O: " ++ ++#: LYMessages.c:582 ++msgid " Version " ++msgstr " ª©¥» " ++ ++#: LYMessages.c:583 ++msgid " first" ++msgstr " ²Ä¤@" ++ ++#: LYMessages.c:584 ++msgid ", guessing..." ++msgstr ", ²q´ú¤¤..." ++ ++#: LYMessages.c:585 ++msgid "Permissions for " ++msgstr "¤¹³\\©ó " ++ ++#: LYMessages.c:586 ++msgid "Select " ++msgstr "¿ï¾Ü " ++ ++#: LYMessages.c:587 ++msgid "capital letter" ++msgstr "¤j¼g¦r¥À" ++ ++#: LYMessages.c:588 ++msgid " of option line," ++msgstr " ¿ï¶µ¦æ, " ++ ++#: LYMessages.c:589 ++msgid " to save," ++msgstr " Àx¦s," ++ ++#: LYMessages.c:590 ++msgid " to " ++msgstr " ¨ì " ++ ++#: LYMessages.c:591 ++msgid " or " ++msgstr " ©Î " ++ ++#: LYMessages.c:592 ++msgid " index" ++msgstr " ¯Á¤Þ" ++ ++#: LYMessages.c:593 ++msgid " to return to Lynx." ++msgstr " ¥H¦^¨ì Lynx." ++ ++#: LYMessages.c:594 ++msgid "Accept Changes" ++msgstr "±µ¨ü§ïÅÜ" ++ ++#: LYMessages.c:595 ++msgid "Reset Changes" ++msgstr "­«³]§ïÅÜ" ++ ++#: LYMessages.c:596 ++msgid "Left Arrow cancels changes" ++msgstr "«ö¥ªÁä¥H¨ú®ø§ïÅÜ" ++ ++#: LYMessages.c:597 ++msgid "Save options to disk" ++msgstr "Àx¦s¿ï¶µ¨ìºÏ¤ù" ++ ++#: LYMessages.c:598 ++msgid "Hit RETURN to accept entered data." ++msgstr "«ö¤U ¥H±µ¨ü¿é¤J¸ê®Æ." ++ ++#. #define ACCEPT_DATA_OR_DEFAULT ++#: LYMessages.c:600 ++msgid "Hit RETURN to accept entered data. Delete data to invoke the default." ++msgstr "«ö¤U ¥H±µ¨ü¿é¤J¸ê®Æ. §R°£¸ê®Æ¥H¦^´_¹w³]­È." ++ ++#: LYMessages.c:601 ++msgid "Value accepted!" ++msgstr "¼Æ­È¤w±µ¨ü!" ++ ++#. #define VALUE_ACCEPTED_WARNING_X ++#: LYMessages.c:603 ++msgid "Value accepted! -- WARNING: Lynx is configured for XWINDOWS!" ++msgstr "¼Æ­È¤w±µ¨ü! -- ĵ§i: Lynx ²ÕºAµ¹ XWINDOWS!" ++ ++#. #define VALUE_ACCEPTED_WARNING_NONX ++#: LYMessages.c:605 ++msgid "Value accepted! -- WARNING: Lynx is NOT configured for XWINDOWS!" ++msgstr "¼Æ­È¤w±µ¨ü! -- ĵ§i: Lynx ¥¼²ÕºAµ¹ XWINDOWS!" ++ ++#: LYMessages.c:606 ++msgid "You are not allowed to change which editor to use!" ++msgstr "±z¤£¤¹³\\Åܧó­n¥Îªº½s¿è¾¹!" ++ ++#: LYMessages.c:607 ++msgid "Failed to set DISPLAY variable!" ++msgstr "³]©wÅã¥ÜÅܼƥ¢±Ñ!" ++ ++#: LYMessages.c:608 ++msgid "Failed to clear DISPLAY variable!" ++msgstr "²M°£Åã¥ÜÅܼƥ¢±Ñ!" ++ ++#. #define BOOKMARK_CHANGE_DISALLOWED ++#: LYMessages.c:610 ++msgid "You are not allowed to change the bookmark file!" ++msgstr "±z¤£¤¹³\\Åܧó®ÑÅÒÀÉ®×!" ++ ++#: LYMessages.c:611 ++msgid "Terminal does not support color" ++msgstr "²×ºÝ¾÷¤£¤ä´©±m¦â" ++ ++#: LYMessages.c:612 ++#, c-format ++msgid "Your '%s' terminal does not support color." ++msgstr "±zªº '%s' ²×ºÝ¾÷¤£¤ä´©±m¦â." ++ ++#: LYMessages.c:613 ++msgid "Access to dot files is disabled!" ++msgstr "¦s¨ú¥H'.'¶}ÀYªºÀÉ®×¥\\¯à³QÃö³¬!" ++ ++#. #define UA_NO_LYNX_WARNING ++#: LYMessages.c:615 ++msgid "User-Agent string does not contain \"Lynx\" or \"L_y_n_x\"" ++msgstr "¨Ï¥ÎªÌ¥N²z¤H¦r¦ê¤£¥]¬A \"Lynx\" ©Î \"L_y_n_x\"" ++ ++#. #define UA_PLEASE_USE_LYNX ++#: LYMessages.c:617 ++msgid "" ++"Use \"L_y_n_x\" or \"Lynx\" in User-Agent, or it looks like intentional " ++"deception!" ++msgstr "" ++"¦b¨Ï¥ÎªÌ¥N²z¤H¤¤¨Ï¥Î \"L_y_n_x\" ©Î \"Lynx\" , §_«h¥L±N¬Ý°_¨Ó¹³¬O¤º³¡´y­z!" ++ ++#. #define UA_CHANGE_DISABLED ++#: LYMessages.c:619 ++msgid "Changing of the User-Agent string is disabled!" ++msgstr "§ïÅܨϥΪ̥N²z¤H¦r¦ê³QÃö³¬!" ++ ++#. #define CHANGE_OF_SETTING_DISALLOWED ++#: LYMessages.c:621 ++msgid "You are not allowed to change this setting." ++msgstr "±z¤£³Q¤¹³\\Åܧó³o­Ó³]©w." ++ ++#: LYMessages.c:622 ++msgid "Saving Options..." ++msgstr "Àx¦s¿ï¶µ¤¤..." ++ ++#: LYMessages.c:623 ++msgid "Options saved!" ++msgstr "¿ï¶µ¤wÀx¦s!" ++ ++#: LYMessages.c:624 ++msgid "Unable to save Options!" ++msgstr "µLªkÀx¦s¿ï¶µ!" ++ ++#: LYMessages.c:625 ++msgid " 'r' to return to Lynx " ++msgstr " «ö¤U 'r' ¤w¦^¨ì Lynx " ++ ++#: LYMessages.c:626 ++msgid " '>' to save, or 'r' to return to Lynx " ++msgstr " «ö¤U '>' ¥HÀx¦s, ©Î 'r' ¥H¦^¨ì Lynx " ++ ++#. #define ANY_KEY_CHANGE_RET_ACCEPT ++#: LYMessages.c:628 ++msgid "Hit any key to change value; RETURN to accept." ++msgstr "«ö¤U¥ô·NÁä¥HÅܧó¼Æ­È; ¥H±µ¨ü." ++ ++#: LYMessages.c:629 ++msgid "Error uncompressing temporary file!" ++msgstr "¸ÑÀ£ÁY¼È¦sÀɮɵo¥Í¿ù»~!" ++ ++#: LYMessages.c:630 ++msgid "Unsupported URL scheme!" ++msgstr "¤£¤ä´©ªº URL ³]­p!" ++ ++#: LYMessages.c:631 ++msgid "Unsupported data: URL! Use SHOWINFO, for now." ++msgstr "¤£¤ä´©ªº¸ê®Æ: URL! ¼È®É¨Ï¥Î SHOWINFO." ++ ++#: LYMessages.c:632 ++msgid "Redirection limit of 10 URL's reached." ++msgstr "¨ì¹F URL ­«¾É¦V¼Æ¥Ø·¥­­ 10" ++ ++#: LYMessages.c:633 ++msgid "Illegal redirection URL received from server!" ++msgstr "±q¦øªA¾¹±µ¦¬¤£¦Xªkªº­«¾É¦V URL!" ++ ++#. #define SERVER_ASKED_FOR_REDIRECTION ++#: LYMessages.c:635 ++#, c-format ++msgid "Server asked for %d redirection of POST content to" ++msgstr "¦øªA¾¹­n¨D±N POST ¤º®e­«¾É¦V¨ì %d" ++ ++#: LYMessages.c:638 ++msgid "P)roceed, use G)ET or C)ancel " ++msgstr "P) °õ¦æ, G) ¨Ï¥Î GET, C) ¨ú®ø " ++ ++#: LYMessages.c:639 ++msgid "P)roceed, or C)ancel " ++msgstr "P) °õ¦æ, C) ¨ú®ø " ++ ++#. #define ADVANCED_POST_GET_REDIRECT ++#: LYMessages.c:641 ++msgid "Redirection of POST content. P)roceed, see U)RL, use G)ET or C)ancel" ++msgstr "­«¾É¦V POST ¤º®e. P) °õ¦æ, U) À˵ø URL, G) ¨Ï¥Î GET, C) ¨ú®ø" ++ ++#. #define ADVANCED_POST_REDIRECT ++#: LYMessages.c:643 ++msgid "Redirection of POST content. P)roceed, see U)RL, or C)ancel" ++msgstr "­«¾É¦V POST ¤º®e. P) °õ¦æ, U) À˵ø URL, C) ¨ú®ø" ++ ++#. #define CONFIRM_POST_RESUBMISSION ++#: LYMessages.c:645 ++msgid "Document from Form with POST content. Resubmit?" ++msgstr "¤å¥ó¨Ó¦Û POST ¤º®eªºªí³æ. ¬O§_­«·s°e¥X?" ++ ++#. #define CONFIRM_POST_RESUBMISSION_TO ++#: LYMessages.c:647 ++#, c-format ++msgid "Resubmit POST content to %s ?" ++msgstr "¬O§_­«·s°e¥X POST ¤º®e¨ì %s ?" ++ ++#. #define CONFIRM_POST_LIST_RELOAD ++#: LYMessages.c:649 ++#, c-format ++msgid "List from document with POST data. Reload %s ?" ++msgstr "§Q¥Î POST ¤º®e¥H¦C¥X¤å¥ó. ¬O§_­«·s¸ü¤J %s ?" ++ ++#. #define CONFIRM_POST_DOC_HEAD ++#: LYMessages.c:651 ++msgid "Document from POST action, HEAD may not be understood. Proceed?" ++msgstr "¤å¦r¨Ó¦Û POST °Ê§@, ¼ÐÀY¥i¯àµLªk³Q¤F¸Ñ. ¬O§_°õ¦æ?" ++ ++#. #define CONFIRM_POST_LINK_HEAD ++#: LYMessages.c:653 ++msgid "Form submit action is POST, HEAD may not be understood. Proceed?" ++msgstr "ªí³æ°e¥X°Ê§@¬O POST, ¼ÐÀY¥i¯àµLªk³Q¤F¸Ñ. ¬O§_°õ¦æ?" ++ ++#: LYMessages.c:654 ++msgid "Proceed without a username and password?" ++msgstr "¤£¨Ï¥Î¨Ï¥ÎªÌ¦WºÙ»P±K½X¨ÃÄ~Äò°õ¦æ?" ++ ++#: LYMessages.c:655 ++#, c-format ++msgid "Proceed (%s)?" ++msgstr "°õ¦æ (%s)?" ++ ++#: LYMessages.c:656 ++msgid "Cannot POST to this host." ++msgstr "µLªk POST ¨ì³o­Ó¥D¾÷." ++ ++#: LYMessages.c:657 ++msgid "POST not supported for this URL - ignoring POST data!" ++msgstr "³o­Ó URL ¤£¤ä´© POST °Ê§@ - ©¿²¤ POST ¸ê®Æ!" ++ ++#: LYMessages.c:658 ++msgid "Discarding POST data..." ++msgstr "¥á±ó POST ¸ê®Æ¤¤..." ++ ++#: LYMessages.c:659 ++msgid "Document will not be reloaded!" ++msgstr "¤å¥ó±N¤£³Q­«Åª!" ++ ++#: LYMessages.c:660 ++msgid "Location: " ++msgstr "¦ì¸m: " ++ ++#: LYMessages.c:661 ++#, c-format ++msgid "'%s' not found!" ++msgstr "§ä¤£¨ì '%s'!" ++ ++#: LYMessages.c:662 ++msgid "Default Bookmark File" ++msgstr "¹w³]ªº®ÑÅÒÀÉ®×" ++ ++#: LYMessages.c:663 ++msgid "Screen too small! (8x35 min)" ++msgstr "¿Ã¹õ¤Ó¤p! (¦Ü¤Ö­n 8x35)" ++ ++#: LYMessages.c:664 ++msgid "Select destination or ^G to Cancel: " ++msgstr "¿ï¾Ü¥Ø¼Ð©Î ^G ¥H©ñ±ó: " ++ ++#. #define MULTIBOOKMARKS_SELECT ++#: LYMessages.c:666 ++msgid "Select subbookmark, '=' for menu, or ^G to cancel: " ++msgstr "¿ï¾Ü¤l®ÑÅÒ, '=' ¥HÀ˵ø¥Ø¿ý, ^G ¥H©ñ±ó: " ++ ++#. #define MULTIBOOKMARKS_SELF ++#: LYMessages.c:668 ++msgid "Reproduce L)ink in this bookmark file or C)ancel? (l,c): " ++msgstr "L) ½Æ»s³sµ²¨ì®ÑÅÒÀɤ¤ C) ©ñ±ó? (l,c): " ++ ++#: LYMessages.c:669 ++msgid "Multiple bookmark support is not available." ++msgstr "¦h­«®ÑÅҤ䴩¤£¦s¦b." ++ ++#: LYMessages.c:670 ++#, c-format ++msgid " Select Bookmark (screen %d of %d)" ++msgstr "¿ï¾Ü®ÑÅÒ (µe­± %d ¤§ %d)" ++ ++#: LYMessages.c:671 ++msgid " Select Bookmark" ++msgstr " ¿ï¾Ü®ÑÅÒ" ++ ++#. #define MULTIBOOKMARKS_EHEAD_MASK ++#: LYMessages.c:673 ++#, c-format ++msgid "Editing Bookmark DESCRIPTION and FILEPATH (%d of 2)" ++msgstr "½s¿è®ÑÅÒ»¡©ú»PÀɮ׸ô®| (%d ¤§ 2)" ++ ++#. #define MULTIBOOKMARKS_EHEAD ++#: LYMessages.c:675 ++msgid " Editing Bookmark DESCRIPTION and FILEPATH" ++msgstr " ½s¿è®ÑÅÒ»¡©ú»PÀɮ׸ô®|" ++ ++#: LYMessages.c:676 ++msgid "Letter: " ++msgstr "¦r¥À: " ++ ++#. #define USE_PATH_OFF_HOME ++#: LYMessages.c:679 ++msgid "Use a filepath off your login directory in SHELL syntax!" ++msgstr "¨Ï¥Î SHELL »yªk¥H«ü©w¤£ÄÝ©óµn¤J¥Ø¿ýÀɮ׸ô®|!" ++ ++#: LYMessages.c:681 ++msgid "Use a filepath off your home directory!" ++msgstr "¨Ï¥Î¤£ÄÝ©ó±z®a¥Ø¿ýªºÀɮ׸ô®|!" ++ ++#. #define MAXLINKS_REACHED ++#: LYMessages.c:684 ++msgid "Maximum links per page exceeded! Use half-page or two-line scrolling." ++msgstr "¶W¹L¨C­¶³Ì¤j³sµ²¼Æ¥Ø! ¨Ï¥Î'¥b­¶'©Î'Âù¦æ'±²°Ê." ++ ++#. #define MAXHIST_REACHED ++#: LYMessages.c:686 ++msgid "History List maximum reached! Document not pushed." ++msgstr "¨ì¹F³Ì¤j¾ú¥v¦Cªí¼Æ! ¤å¥ó¥¼±ÆÀ½." ++ ++#: LYMessages.c:687 ++msgid "No previously visited links available!" ++msgstr "¨S¦³¤§«eÂsÄý¹Lªº³sµ²¦s¦b!" ++ ++#: LYMessages.c:688 ++msgid "Memory exhausted! Program aborted!" ++msgstr "°O¾ÐÅ餣¨¬! µ{¦¡©ñ±ó°õ¦æ!" ++ ++#: LYMessages.c:689 ++msgid "Memory exhausted! Aborting..." ++msgstr "°O¾ÐÅ餣¨¬! ©ñ±ó¤¤..." ++ ++#: LYMessages.c:690 ++msgid "Not enough memory!" ++msgstr "°O¾ÐÅ餣¨¬!" ++ ++#: LYMessages.c:691 ++msgid "Directory/File Manager not available" ++msgstr "¸ô®|/ÀÉ®× ºÞ²z­û¤£¦s¦b" ++ ++#: LYMessages.c:692 ++msgid "HREF in BASE tag is not an absolute URL." ++msgstr "¦b°ò¥»¼ÐÅÒ¤¤ªº HREF ¤£¬Oµ´¹ïªº URL." ++ ++#: LYMessages.c:693 ++msgid "Location URL is not absolute." ++msgstr "URL ¦ì¸m¤£¬Oµ´¹ïªº." ++ ++#: LYMessages.c:694 ++msgid "Refresh URL is not absolute." ++msgstr "­«·sŪ¨ú URL ¤£¬Oµ´¹ïªº." ++ ++#. #define SENDING_MESSAGE_WITH_BODY_TO ++#: LYMessages.c:696 ++msgid "" ++"You are sending a message with body to:\n" ++" " ++msgstr "" ++"±z¥¿°e¥X¤@­Ó°T®§¨ì:\n" ++" " ++ ++#: LYMessages.c:697 ++msgid "" ++"You are sending a comment to:\n" ++" " ++msgstr "" ++"±z¥¿°e¥X¤@­Óµù¸Ñ¨ì:\n" ++" " ++ ++#: LYMessages.c:698 ++msgid "" ++"\n" ++" With copy to:\n" ++" " ++msgstr "" ++"\n" ++" »P°Æ¥»¨ì:\n" ++" " ++ ++#: LYMessages.c:699 ++msgid "" ++"\n" ++" With copies to:\n" ++" " ++msgstr "" ++"\n" ++" »P°Æ¥»¨ì:\n" ++" " ++ ++#. #define CTRL_G_TO_CANCEL_SEND ++#: LYMessages.c:701 ++msgid "" ++"\n" ++"\n" ++"Use Ctrl-G to cancel if you do not want to send a message\n" ++msgstr "" ++"\n" ++"\n" ++"¦pªG±z¤£·Q°e¥X°T®§, «ö¤U Ctrl-G ¥H¨ú®ø\n" ++ ++#. #define ENTER_NAME_OR_BLANK ++#: LYMessages.c:703 ++msgid "" ++"\n" ++" Please enter your name, or leave it blank to remain anonymous\n" ++msgstr "" ++"\n" ++" ½Ð¿é¤J±zªº©m¦W, ©Î¯d¥Õ¥H°Î¦WªÌ±H¥X\n" ++ ++#. #define ENTER_MAIL_ADDRESS_OR_OTHER ++#: LYMessages.c:705 ++msgid "" ++"\n" ++" Please enter a mail address or some other\n" ++msgstr "" ++"\n" ++" ½Ð¿é¤J¶l¥ó¦ì§}©Î¨ä¥L\n" ++ ++#. #define MEANS_TO_CONTACT_FOR_RESPONSE ++#: LYMessages.c:707 ++msgid " means to contact you, if you desire a response.\n" ++msgstr " ±zªºÁpµ¸¤è¦¡, ¦pªG±z§Æ±æ¦¬¨ì¦^À³.\n" ++ ++#: LYMessages.c:708 ++msgid "" ++"\n" ++" Please enter a subject line.\n" ++msgstr "" ++"\n" ++" ½Ð¿é¤J¤@­Ó¥DÃD¦æ.\n" ++ ++#. #define ENTER_ADDRESS_FOR_CC ++#: LYMessages.c:710 ++msgid "" ++"\n" ++" Enter a mail address for a CC of your message.\n" ++msgstr "" ++"\n" ++" ¿é¤J¶l¥ó¦ì§}¥H«K°Æ¥»§Û°e±zªº°T®§.\n" ++ ++#: LYMessages.c:711 ++msgid " (Leave blank if you don't want a copy.)\n" ++msgstr " (¦pªG±z¤£»Ý­n°Æ¥»½Ð¯d¤UªÅ¥Õ.)\n" ++ ++#: LYMessages.c:712 ++msgid "" ++"\n" ++" Please review the message body:\n" ++"\n" ++msgstr "" ++"\n" ++" ½Ð­«·sÀ˵ø±zªº°T®§¥»Åé:\n" ++"\n" ++ ++#: LYMessages.c:713 ++msgid "" ++"\n" ++"Press RETURN to continue: " ++msgstr "" ++"\n" ++"«ö¤U ¥HÄ~Äò: " ++ ++#: LYMessages.c:714 ++msgid "" ++"\n" ++"Press RETURN to clean up: " ++msgstr "" ++"\n" ++"«ö¤U ¥H²M°£: " ++ ++#: LYMessages.c:715 ++msgid " Use Control-U to erase the default.\n" ++msgstr " «ö¤U Ctrl-U ¥H²M°£¹w³]­È.\n" ++ ++#: LYMessages.c:716 ++msgid "" ++"\n" ++" Please enter your message below." ++msgstr "" ++"\n" ++" ½Ð¦b¤U­±¿é¤J±zªº°T®§." ++ ++#. #define ENTER_PERIOD_WHEN_DONE_A ++#: LYMessages.c:718 src/LYNews.c:396 ++msgid "" ++"\n" ++" When you are done, press enter and put a single period (.)" ++msgstr "" ++"\n" ++" ¦b±z§¹¦¨«á, «ö¤U ¨Ã©ñ¸m¤@­ÓÂI '.'" ++ ++#. #define ENTER_PERIOD_WHEN_DONE_B ++#: LYMessages.c:720 src/LYNews.c:397 ++msgid "" ++"\n" ++" on a line and press enter again." ++msgstr "" ++"\n" ++" ¦b¤@¦æ¨Ã¦A¦¸«ö¤U ." ++ ++#. Cookies messages ++#. #define ADVANCED_COOKIE_CONFIRMATION ++#: LYMessages.c:724 ++#, c-format ++msgid "%s cookie: %.*s=%.*s Allow? (Y/N/Always/neVer)" ++msgstr "%s cookie: ¬O§_¤¹³\\ %.*s=%.*s (Y/N/A¥Ã»·/V¨M¤£)" ++ ++#. #define INVALID_COOKIE_DOMAIN_CONFIRMATION ++#: LYMessages.c:726 ++#, c-format ++msgid "Accept invalid cookie domain=%s for '%s'?" ++msgstr "±µ¨ü¨Ó¦Û %s ªº¿ù»~ cookie '%s' ¶Ü?" ++ ++#. #define INVALID_COOKIE_PATH_CONFIRMATION ++#: LYMessages.c:728 ++#, c-format ++msgid "Accept invalid cookie path=%s as a prefix of '%s'?" ++msgstr "±µ¨ü¸ô®|¬° %s ªº¿ù»~ cookie §@¬° '%s' ªº«e¸m¶Ü?" ++ ++#: LYMessages.c:729 ++msgid "Allowing this cookie." ++msgstr "¤¹³\\³o­Ó cookie." ++ ++#: LYMessages.c:730 ++msgid "Rejecting this cookie." ++msgstr "©Úµ´³o­Ó cookie." ++ ++#: LYMessages.c:731 ++msgid "The Cookie Jar is empty." ++msgstr "cookie ®w¬OªÅªº." ++ ++#. #define ACTIVATE_TO_GOBBLE ++#: LYMessages.c:733 ++msgid "Activate links to gobble up cookies or entire domains," ++msgstr "±Ò°Ê³sµ²¥H§¹¾ã±µ¨ü cookie ©Î§¹¾ãªººô°ì, " ++ ++#: LYMessages.c:734 ++msgid "or to change a domain's 'allow' setting." ++msgstr "©Î§ïÅܺô°ìªº'±µ¨ü'³]©w." ++ ++#: LYMessages.c:735 ++msgid "(Cookies never allowed.)" ++msgstr "(¥Ã»·¤£±µ¨ü cookie.)" ++ ++#: LYMessages.c:736 ++msgid "(Cookies always allowed.)" ++msgstr "(¥Ã»·±µ¨ü cookie.)" ++ ++#: LYMessages.c:737 ++msgid "(Cookies allowed via prompt.)" ++msgstr "(¨Ì¾Ú´£¥Ü±µ¨ü cookie)" ++ ++#: LYMessages.c:738 ++msgid "(Persistent Cookies.)" ++msgstr "(cookie «ùÄò¦s¦b.)" ++ ++#: LYMessages.c:739 ++msgid "(No title.)" ++msgstr "(µL¼ÐÃD.)" ++ ++#: LYMessages.c:740 ++msgid "(No name.)" ++msgstr "(µL¦WºÙ.)" ++ ++#: LYMessages.c:741 ++msgid "(No value.)" ++msgstr "(µL¼Æ­È.)" ++ ++#: LYMessages.c:742 ++msgid "None" ++msgstr "µL" ++ ++#: LYMessages.c:743 ++msgid "(End of session.)" ++msgstr "(¶¥¬q§@·~µ²§ô.)" ++ ++#: LYMessages.c:744 ++msgid "Delete this cookie?" ++msgstr "¬O§_§R°£³o­Ó cookie?" ++ ++#: LYMessages.c:745 ++msgid "The cookie has been eaten!" ++msgstr "³o­Ó cookie ¤w³Q¦¬¦^!" ++ ++#: LYMessages.c:746 ++msgid "Delete this empty domain?" ++msgstr "§R°£³o­ÓªÅ¥Õºô°ì¶Ü?" ++ ++#: LYMessages.c:747 ++msgid "The domain has been eaten!" ++msgstr "³o­Óºô°ì¤w³Q¦¬¦^!" ++ ++#. #define DELETE_COOKIES_SET_ALLOW_OR_CANCEL ++#: LYMessages.c:749 ++msgid "" ++"D)elete domain's cookies, set allow A)lways/P)rompt/neV)er, or C)ancel? " ++msgstr "" ++"D)§R°£ºô°ìªº cookie, ³]©w¤¹³\\¤è¦¡¬° A)¥Ã»·, P)¨Ì¾Ú´£¥Ü, V) ¨M¤£, C)©ñ±ó? " ++ ++#. #define DELETE_DOMAIN_SET_ALLOW_OR_CANCEL ++#: LYMessages.c:751 ++msgid "D)elete domain, set allow A)lways/P)rompt/neV)er, or C)ancel? " ++msgstr "D)§R°£ºô°ì, ³]©w¤¹³\\¤è¦¡¬° A)¥Ã»·, P)¨Ì¾Ú´£¥Ü, V) ¨M¤£, C)©ñ±ó? " ++ ++#: LYMessages.c:752 ++msgid "All cookies in the domain have been eaten!" ++msgstr "³o­Óºô°ìªº©Ò¦³ cookie ³£³Q¦¬¦^¤F!" ++ ++#: LYMessages.c:753 ++#, c-format ++msgid "'A'lways allowing from domain '%s'." ++msgstr "A) ¥Ã»·±µ¨ü¨Ó¦Ûºô°ì '%s' ªº cookie." ++ ++#: LYMessages.c:754 ++#, c-format ++msgid "ne'V'er allowing from domain '%s'." ++msgstr "V) ¨M¤£±µ¨ü¨Ó¦Ûºô°ì '%s' ªº cookie." ++ ++#: LYMessages.c:755 ++#, c-format ++msgid "'P'rompting to allow from domain '%s'." ++msgstr "P) ¨Ì¾Ú´£¥Ü±µ¨ü¨Ó¦Ûºô°ì '%s' ªº cookie." ++ ++#: LYMessages.c:756 ++msgid "Delete all cookies in this domain?" ++msgstr "¬O§_§R°£³o­Óºô°ìªº©Ò¦³ cookie?" ++ ++#: LYMessages.c:757 ++msgid "All of the cookies in the jar have been eaten!" ++msgstr "¦b³o­Ó cookie ®w¤¤ªº cookie ³£³Q¦¬¦^¤F!" ++ ++#: LYMessages.c:759 ++msgid "Port 19 not permitted in URLs." ++msgstr "³q°T°ð 19 ¤£³Q URL ¤¹³\\." ++ ++#: LYMessages.c:760 ++msgid "Port 25 not permitted in URLs." ++msgstr "³q°T°ð 25 ¤£³Q URL ¤¹³\\." ++ ++#: LYMessages.c:761 ++#, c-format ++msgid "Port %lu not permitted in URLs." ++msgstr "³q°T°ð %lu ¤£³Q URL ¤¹³\\." ++ ++#: LYMessages.c:762 ++msgid "URL has a bad port field." ++msgstr "URL ¦³¿ù»~ªº³q°T°ðÄæ¦ì." ++ ++#: LYMessages.c:763 ++msgid "Maximum nesting of HTML elements exceeded." ++msgstr "¶W¹L³Ì¤jªº HTML ¤¸¯À©ñ¸m." ++ ++#: LYMessages.c:764 ++msgid "Bad partial reference! Stripping lead dots." ++msgstr "¿ù»~ªº­ì©l°Ñ·Ó! °£¥h¶}ÀYªº '.'." ++ ++#: LYMessages.c:765 ++msgid "Trace Log open failed. Trace off!" ++msgstr "°lÂܬö¿ý¶}±Ò¥¢±Ñ. Ãö³¬°lÂÜ!" ++ ++#: LYMessages.c:766 ++msgid "Lynx Trace Log" ++msgstr "Lynx °lÂܬö¿ý" ++ ++#: LYMessages.c:767 ++msgid "No trace log has been started for this session." ++msgstr "³o­Ó¤u§@¶¥¬q¨S¦³±Ò°Ê°lÂܬö¿ý." ++ ++#. #define MAX_TEMPCOUNT_REACHED ++#: LYMessages.c:769 ++msgid "The maximum temporary file count has been reached!" ++msgstr "¨ì¹F³Ì¤j¼È¦sÀÉ­p¼Æ!" ++ ++#. #define FORM_VALUE_TOO_LONG ++#: LYMessages.c:771 ++msgid "Form field value exceeds buffer length! Trim the tail." ++msgstr "ªí³æÄæ¦ì¼Æ­È¶W¹L¼È¦s¾¹ªø«×! ­×°Å§ÀºÝ." ++ ++#. #define FORM_TAIL_COMBINED_WITH_HEAD ++#: LYMessages.c:773 ++msgid "Modified tail combined with head of form field value." ++msgstr "Åܧ󪺧ÀºÝ»Pªí³æÄæ¦ì¼Æ­Èªº¶}ÀY¦X¨Ö." ++ ++#. HTFile.c ++#: LYMessages.c:776 ++msgid "Directory" ++msgstr "¸ô®|" ++ ++#: LYMessages.c:777 ++msgid "Directory browsing is not allowed." ++msgstr "¤£¤¹³\\ÂsÄý¸ô®|." ++ ++#: LYMessages.c:778 ++msgid "Selective access is not enabled for this directory" ++msgstr "³o­Ó¸ô®|ªº¿ï¾Ü­Æ¦s¨ú¥¼³Q±Ò°Ê" ++ ++#: LYMessages.c:779 ++msgid "Multiformat: directory scan failed." ++msgstr "¦h­«®æ¦¡: ±½´y¸ô®|¥¢±Ñ." ++ ++#: LYMessages.c:780 ++msgid "This directory is not readable." ++msgstr "³o­Ó¸ô®|¬O¤£¥iŪªº." ++ ++#: LYMessages.c:781 ++msgid "Can't access requested file." ++msgstr "µLªk¦s¨ú­n¨DªºÀÉ®×." ++ ++#: LYMessages.c:782 ++msgid "Could not find suitable representation for transmission." ++msgstr "§ä¤£¨ì¾A¦Xªº¯S¼x¥H¨Ñ¶Ç¿é." ++ ++#: LYMessages.c:783 ++msgid "Could not open file for decompression!" ++msgstr "µLªk¶}±ÒÀÉ®×¥H¸ÑÀ£ÁY!" ++ ++#: LYMessages.c:784 ++msgid "Files:" ++msgstr "ÀÉ®×:" ++ ++#: LYMessages.c:785 ++msgid "Subdirectories:" ++msgstr "¦¸¸ô®|:" ++ ++#: LYMessages.c:786 ++msgid " directory" ++msgstr " ¸ô®|" ++ ++#: LYMessages.c:787 ++msgid "Up to " ++msgstr "¤W²¾¨ì " ++ ++#: LYMessages.c:788 ++msgid "Current directory is " ++msgstr "¥Ø«eªº¸ô®|¬O " ++ ++#. HTGopher.c ++#: LYMessages.c:791 ++msgid "No response from server!" ++msgstr "¦øªA¾¹¨S¦³¦^À³!" ++ ++#: LYMessages.c:792 ++msgid "CSO index" ++msgstr "CSO ¯Á¤Þ" ++ ++#: LYMessages.c:793 ++msgid "" ++"\n" ++"This is a searchable index of a CSO database.\n" ++msgstr "" ++"\n" ++"³o¬O¤@­Ó¥i·j´Mªº CSO ¸ê®Æ®w¯Á¤Þ.\n" ++ ++#: LYMessages.c:794 ++msgid "CSO Search Results" ++msgstr "CSO ·j´M´Mµ²ªG" ++ ++#: LYMessages.c:795 ++#, c-format ++msgid "Seek fail on %s\n" ++msgstr "¦b %s ·j´M¥¢±Ñ\n" ++ ++#: LYMessages.c:796 ++msgid "" ++"\n" ++"Press the 's' key and enter search keywords.\n" ++msgstr "" ++"\n" ++"«ö¤U 's' Áä¥H¿é¤J·j´MÃöÁä¦r.\n" ++ ++#: LYMessages.c:797 ++msgid "" ++"\n" ++"This is a searchable Gopher index.\n" ++msgstr "" ++"\n" ++"³o¬O¤@­Ó¥i·j´Mªº Gopher ¯Á¤Þ.\n" ++ ++#: LYMessages.c:798 ++msgid "Gopher index" ++msgstr "Gopher ¯Á¤Þ" ++ ++#: LYMessages.c:799 ++msgid "Gopher Menu" ++msgstr "Gopher ¿ï³æ" ++ ++#: LYMessages.c:800 ++msgid " Search Results" ++msgstr " ·j´Mµ²ªG" ++ ++#: LYMessages.c:801 ++msgid "Sending CSO/PH request." ++msgstr "°e¥X CSO/PH ­n¨D¤¤." ++ ++#: LYMessages.c:802 ++msgid "Sending Gopher request." ++msgstr "°e¥X Gopher ­n¨D¤¤." ++ ++#: LYMessages.c:803 ++msgid "CSO/PH request sent; waiting for response." ++msgstr "CSO/PH ­n¨D¤w°e¥X; µ¥«Ý¦^À³¤¤." ++ ++#: LYMessages.c:804 ++msgid "Gopher request sent; waiting for response." ++msgstr "Gopher ­n¨D¤w°e¥X; µ¥«Ý¦^À³¤¤." ++ ++#: LYMessages.c:805 ++msgid "" ++"\n" ++"Please enter search keywords.\n" ++msgstr "" ++"\n" ++"½Ð¿é¤J·j´MÃöÁä¦r.\n" ++ ++#: LYMessages.c:806 ++msgid "" ++"\n" ++"The keywords that you enter will allow you to search on a" ++msgstr "" ++"\n" ++"±z©Ò¿é¤JªºÃöÁä¦r±N¤¹³\\±z¦b¸ê®Æ®w¤¤·j´M" ++ ++#: LYMessages.c:807 ++msgid " person's name in the database.\n" ++msgstr "¤@­Ó¤Hªº©m¦W.\n" ++ ++#. HTNews.c ++#: LYMessages.c:810 ++msgid "Connection closed ???" ++msgstr "³sµ²¤wÃö³¬???" ++ ++#: LYMessages.c:811 ++msgid "Cannot open temporary file for news POST." ++msgstr "µLªk¶}±Ò±i¶K·s»D©Ò»Ýªº¼È¦sÀÉ." ++ ++#: LYMessages.c:812 ++msgid "This client does not contain support for posting to news with SSL." ++msgstr "³o­Ó«È¤áºÝ¤£¥]§t¥H SSL ±i¶K·s»Dªº¤ä´©." ++ ++#. HTStyle.c ++#: LYMessages.c:815 ++#, c-format ++msgid "Style %d `%s' SGML:%s. Font %s %.1f point.\n" ++msgstr "Ãþ«¬ %d '%s' SGML:%s. ¦r«¬ %s %.1f ÂI.\n" ++ ++#: LYMessages.c:816 ++#, c-format ++msgid "\tIndents: first=%.0f others=%.0f, Height=%.1f Desc=%.1f\n" ++msgstr "\tÁY±Æ: ²Ä¤@­Ó=%.0f ¨ä¥L=%.0f, °ª«×=%.1f ­l¥Í=%.1f\n" ++ ++#: LYMessages.c:817 ++#, c-format ++msgid "\tAlign=%d, %d tabs. (%.0f before, %.0f after)\n" ++msgstr "\t¹ï»ô=%d, %d ­Ó©w¦ìÂI. (¤§«e¬° %.0f, ¤§«á¬° %.0f)\n" ++ ++#: LYMessages.c:818 ++#, c-format ++msgid "\t\tTab kind=%d at %.0f\n" ++msgstr "\t\t©w¦ìÂI Ãþ«¬=%d ¦b %.0f\n" ++ ++#. HTTP.c ++#: LYMessages.c:821 ++msgid "Can't proceed without a username and password." ++msgstr "µLªk¦b¯Ê¥F¨Ï¥ÎªÌ»P±K½Xªºª¬ªp¤U³B²z." ++ ++#: LYMessages.c:822 ++msgid "Can't retry with authorization! Contact the server's WebMaster." ++msgstr "µLªk¦b»Ý­n»{ÃÒªºª¬ªp¤U­«¸Õ! Ápµ¸¦øªA¾¹ªººÞ²zªÌ." ++ ++#: LYMessages.c:823 ++msgid "Can't retry with proxy authorization! Contact the server's WebMaster." ++msgstr "µLªk³z¹L¥N²z¦øªA¾¹­«¸Õ»{ÃÒ! Ápµ¸¦øªA¾¹ªººÞ²zªÌ." ++ ++#: LYMessages.c:824 ++msgid "Retrying with proxy authorization information." ++msgstr "¥N²z¦øªA¾¹»{ÃÒ¸ê°T­«¸Õ¤¤." ++ ++#. HTWAIS.c ++#: LYMessages.c:827 ++msgid "HTWAIS: Return message too large." ++msgstr "HTWAIS: ¦^ÂаT®§¤Óªø." ++ ++#: LYMessages.c:828 ++msgid "Enter WAIS query: " ++msgstr "¿é¤J WAIS ¬d¸ß: " ++ ++#. Miscellaneous status ++#: LYMessages.c:831 ++msgid "Retrying as HTTP0 request." ++msgstr "¥H HTTP0 ­n¨D­«¸Õ¤¤." ++ ++#: LYMessages.c:832 ++#, c-format ++msgid "Transferred %d bytes" ++msgstr "¤w¶Ç¿é %d ¦ì¤¸²Õ" ++ ++#: LYMessages.c:833 ++msgid "Data transfer complete" ++msgstr "¸ê®Æ¶Ç¿é§¹¦¨" ++ ++#: LYMessages.c:834 ++#, c-format ++msgid "Error processing line %d of %s\n" ++msgstr "¿ù»~³B²z¦b²Ä %d ¦æ (%s ¤¤)\n" ++ ++#. Lynx internal page titles ++#: LYMessages.c:837 ++msgid "Address List Page" ++msgstr "¦a§}¦Cªí­¶" ++ ++#: LYMessages.c:838 ++msgid "Bookmark file" ++msgstr "®ÑÅÒÀÉ" ++ ++#: LYMessages.c:839 ++msgid "Configuration Definitions" ++msgstr "²ÕºA©w¸q" ++ ++#: LYMessages.c:840 ++msgid "Cookie Jar" ++msgstr "Cookie ®w" ++ ++#: LYMessages.c:841 ++msgid "Current Key Map" ++msgstr "¥Ø«eªº«öÁä¹ïÀ³" ++ ++#: LYMessages.c:842 ++msgid "File Management Options" ++msgstr "Àɮ׺޲z¿ï¶µ" ++ ++#: LYMessages.c:843 ++msgid "Download Options" ++msgstr "¤U¸ü¿ï¶µ" ++ ++#: LYMessages.c:844 ++msgid "History Page" ++msgstr "¾ú¥v­¶" ++ ++#: LYMessages.c:845 ++msgid "List Page" ++msgstr "¦Cªí­¶" ++ ++#: LYMessages.c:846 ++msgid "Lynx.cfg Information" ++msgstr "Lynx.cfg ¸ê°T" ++ ++#: LYMessages.c:847 ++msgid "Converted Mosaic Hotlist" ++msgstr "Âà´«ªº Mosaic ¥D¾÷¦Cªí" ++ ++#: LYMessages.c:848 ++msgid "Options Menu" ++msgstr "¿ï¶µ¿ï³æ" ++ ++#: LYMessages.c:849 ++msgid "File Permission Options" ++msgstr "ÀÉ®×Åv­­¿ï¶µ" ++ ++#: LYMessages.c:850 ++msgid "Printing Options" ++msgstr "¦C¦L¿ï¶µ" ++ ++#: LYMessages.c:851 ++msgid "Information about the current document" ++msgstr "Ãö©ó¥Ø«e¤å¥óªº¸ê°T" ++ ++#: LYMessages.c:852 ++msgid "Your recent statusline messages" ++msgstr "±z³Ìªñªºª¬ºA¦æ°T®§" ++ ++#: LYMessages.c:853 ++msgid "Upload Options" ++msgstr "¤W¶Ç¿ï¶µ" ++ ++#: LYMessages.c:854 ++msgid "Visited Links Page" ++msgstr "ÂsÄý¹Lªº³sµ²­¶" ++ ++#. CONFIG_DEF_TITLE subtitles ++#: LYMessages.c:857 ++msgid "See also" ++msgstr "½Ð°Ñ·Ó" ++ ++#: LYMessages.c:858 ++msgid "your" ++msgstr "±zªº" ++ ++#: LYMessages.c:859 ++msgid "for runtime options" ++msgstr "°õ¦æ´Á¶¡¿ï¶µ" ++ ++#: LYMessages.c:860 ++msgid "compile time options" ++msgstr "½sĶ®É¿ï¶µ" ++ ++#: LYMessages.c:861 ++msgid "latest release" ++msgstr "³Ì·sªºª©¥»" ++ ++#: LYMessages.c:862 ++msgid "development version" ++msgstr "µo®i¤¤ªºª©¥»" ++ ++#. #define AUTOCONF_CONFIG_CACHE ++#: LYMessages.c:864 ++msgid "" ++"The following data were derived during the automatic configuration/build\n" ++"process of this copy of Lynx. When reporting a bug, please include a copy\n" ++"of this page." ++msgstr "" ++"¤U­±ªº¸ê®Æ¬O¦b¦Û°Ê ²ÕºA³]©w/«Ø¥ß ³o­Óª©¥»ªº Lynx ®É²£¥Íªº.\n" ++"¦^³ø¯äÂήɽЦP®Éªþ¤W³o¥÷¸ê®Æ.\n" ++" " ++ ++#. #define AUTOCONF_LYNXCFG_H ++#: LYMessages.c:868 ++msgid "" ++"The following data were used as automatically-configured compile-time\n" ++"definitions when this copy of Lynx was built." ++msgstr "" ++"¤U­±ªº¸ê®Æ¬O¦b«Ø¥ß³o­Óª©¥»ªº Lynx ®É¦Û°Ê²ÕºA»P½sĶªº©w¸q\n" ++" " ++ ++#. #define DIRED_NOVICELINE ++#: LYMessages.c:873 ++msgid "" ++" C)reate D)ownload E)dit F)ull menu M)odify R)emove T)ag U)pload " ++"\n" ++msgstr "" ++" C) «Ø¥ß D) ¤U¸ü E) ½s¿è F) §¹¾ã¿ï³æ M) Åܧó R) ²¾°£ T) ¼Ð°O U) ¤W¶Ç " ++"\n" ++ ++#: LYMessages.c:874 ++msgid "Failed to obtain status of current link!" ++msgstr "¨ú±o¥Ø«e³sµ²ªºª¬ªp¥¢±Ñ!" ++ ++#. #define INVALID_PERMIT_URL ++#: LYMessages.c:877 ++msgid "Special URL only valid from current File Permission menu!" ++msgstr "«ü©wªº URL »P¦b¥Ø«eªºÀÉ®×Åv­­¿ï³æ¤¤¦³®Ä!" ++ ++#: LYMessages.c:881 ++msgid "External support is currently disabled." ++msgstr "¥~³¡¤ä´©¥Ø«e³QÃö³¬" ++ ++#: WWW/Library/Implementation/HTAABrow.c:648 ++#, c-format ++msgid "Username for '%s' at %s '%s%s':" ++msgstr "µ¹ '%s' ¦b %s '%s%s' ªº¨Ï¥ÎªÌ¦WºÙ:" ++ ++#: WWW/Library/Implementation/HTAABrow.c:915 ++msgid "" ++"This client doesn't know how to compose proxy authorization information for " ++"scheme" ++msgstr "³o­Ó«È¤áºÝµ{¦¡¤£ª¾¹D¦p¦ó²£¥Í¥N²z¦øªA¾¹»{ÃÒ¸ê°Tªºªí³æ " ++ ++#: WWW/Library/Implementation/HTAABrow.c:990 ++msgid "" ++"This client doesn't know how to compose authorization information for scheme" ++msgstr "³o­Ó«È¤áºÝµ{¦¡¤£ª¾¹D¦p¦ó²£¥Í¥N²z¦øªA¾¹»{ÃÒ¸ê°Tªºªí³æ" ++ ++#: WWW/Library/Implementation/HTAABrow.c:1098 ++#, c-format ++msgid "Invalid header '%s%s%s%s%s'" ++msgstr "¿ù»~ªº¼ÐÀY '%s%s%s%s%s'" ++ ++#: WWW/Library/Implementation/HTAABrow.c:1202 ++msgid "Proxy authorization required -- retrying" ++msgstr "»Ý­n¥N²z¦øªA¾¹»{ÃÒ -- ­«¸Õ¤¤" ++ ++#: WWW/Library/Implementation/HTAABrow.c:1261 ++msgid "Access without authorization denied -- retrying" ++msgstr "¥¼»{ÃÒªº¦s¨ú³Q©Ú -- ­«¸Õ¤¤" ++ ++#: WWW/Library/Implementation/HTAccess.c:683 ++msgid "Access forbidden by rule" ++msgstr "¨Ì¾Ú³W«h¦Ó¸T¤î¦s¨ú" ++ ++#: WWW/Library/Implementation/HTAccess.c:785 ++msgid "Document with POST content not found in cache. Resubmit?" ++msgstr "¤w'±i¶K'¤º®e²£¥Íªº¤å¥ó¤£¦b§Ö¨ú¤¤. ¬O§_­«·s°e¥X?" ++ ++#: WWW/Library/Implementation/HTAccess.c:1026 src/GridText.c:8348 ++msgid "Loading incomplete." ++msgstr "¸ü¤J¥¼§¹¦¨." ++ ++#: WWW/Library/Implementation/HTAccess.c:1056 ++msgid "" ++"**** HTAccess: socket or file number returned by obsolete load routine!\n" ++msgstr "**** HTAccess: ¥Ñ¼o±óªº¸ü¤Jµ{§Ç¶Ç¦^ªº socket ©ÎÀɮ׸¹½X!\n" ++ ++#: WWW/Library/Implementation/HTAccess.c:1058 ++msgid "" ++"**** HTAccess: Internal software error. Please mail lynx-dev@sig.net!\n" ++msgstr "**** HTAccess: ¤º³¡³nÅé¿ù»~. ½Ð¶l±Hµ¹ lynx-dev@sig.net!\n" ++ ++#: WWW/Library/Implementation/HTAccess.c:1059 ++#, c-format ++msgid "**** HTAccess: Status returned was: %d\n" ++msgstr "**** HTAccess: ª¬ºA¶Ç¦^­È¬O: %d\n" ++ ++#. ++#. * hack: if we fail in HTAccess.c ++#. * avoid duplicating URL, oh. ++#. ++#: WWW/Library/Implementation/HTAccess.c:1065 src/LYMainLoop.c:7542 ++msgid "Can't Access" ++msgstr "µLªk¦s¨ú" ++ ++#: WWW/Library/Implementation/HTAccess.c:1073 ++msgid "Unable to access document." ++msgstr "µLªk¦s¨ú¤å¥ó." ++ ++#: WWW/Library/Implementation/HTFTP.c:766 ++#, c-format ++msgid "Enter password for user %s@%s:" ++msgstr "½Ð¿é¤J¨Ï¥ÎªÌ %s@%s ªº±K½X:" ++ ++#: WWW/Library/Implementation/HTFTP.c:794 ++msgid "Unable to connect to FTP host." ++msgstr "µLªk³s±µ¨ì FTP ¥D¾÷." ++ ++#: WWW/Library/Implementation/HTFTP.c:1052 ++msgid "close master socket" ++msgstr "Ãö³¬¥D­n socket" ++ ++#: WWW/Library/Implementation/HTFTP.c:1092 ++msgid "socket for master socket" ++msgstr "master socket ªº socket" ++ ++#. ++#. ** It's a symbolic link, does the user care about ++#. ** knowing if it is symbolic? I think so since ++#. ** it might be a directory. ++#. ++#: WWW/Library/Implementation/HTFTP.c:1540 ++#: WWW/Library/Implementation/HTFTP.c:2160 ++msgid "Symbolic Link" ++msgstr "²Å¸¹³sµ²" ++ ++#: WWW/Library/Implementation/HTFTP.c:2521 ++msgid "Receiving FTP directory." ++msgstr "±µ¦¬ FTP ¸ô®|¤¤." ++ ++#: WWW/Library/Implementation/HTFTP.c:2664 ++#, c-format ++msgid "Transferred %d bytes (%5d)" ++msgstr "¤w¶Ç°e %d ¦ì¤¸²Õ (%5d)" ++ ++#: WWW/Library/Implementation/HTFTP.c:2926 ++msgid "connect for data" ++msgstr "¶i¦æ¸ê®Æ³sµ²" ++ ++#: WWW/Library/Implementation/HTFTP.c:3520 ++msgid "Receiving FTP file." ++msgstr "±µ¦¬ FTP Àɮפ¤." ++ ++#: WWW/Library/Implementation/HTFinger.c:275 ++msgid "Could not set up finger connection." ++msgstr "µLªk«Ø¥ß finger ³sµ²." ++ ++#: WWW/Library/Implementation/HTFinger.c:320 ++msgid "Could not load data (no sitename in finger URL)" ++msgstr "µLªk¸ü¤J¸ê®Æ (¦b finger URL ¤¤¨S¦³¥D¾÷¦WºÙ)" ++ ++#: WWW/Library/Implementation/HTFinger.c:328 ++msgid "Invalid port number - will only use port 79!" ++msgstr "¿ù»~ªº³q°T°ð¸¹ - ±N¥u¨Ï¥Î³q°T°ð 79!" ++ ++#: WWW/Library/Implementation/HTFinger.c:396 ++msgid "Could not access finger host." ++msgstr "µLªk¦s¨ú finger ¥D¾÷." ++ ++#: WWW/Library/Implementation/HTFinger.c:407 ++msgid "No response from finger server." ++msgstr "finger ¥D¾÷¨S¦³¦^À³." ++ ++#: WWW/Library/Implementation/HTNews.c:360 ++#, c-format ++msgid "Username for news host '%s':" ++msgstr "·s»D¥D¾÷ '%s' ªº¨Ï¥ÎªÌ¦WºÙ:" ++ ++#: WWW/Library/Implementation/HTNews.c:414 ++msgid "Change username?" ++msgstr "¬O§_§ïÅܨϥΪ̦WºÙ?" ++ ++#: WWW/Library/Implementation/HTNews.c:418 ++msgid "Username:" ++msgstr "¨Ï¥ÎªÌ¦WºÙ:" ++ ++#: WWW/Library/Implementation/HTNews.c:442 ++#, c-format ++msgid "Password for news host '%s':" ++msgstr "·s»D¥D¾÷ '%s' ªº±K½X:" ++ ++#: WWW/Library/Implementation/HTNews.c:526 ++msgid "Change password?" ++msgstr "¬O§_§ïÅܱK½X?" ++ ++#: WWW/Library/Implementation/HTNews.c:1697 ++#, c-format ++msgid "No matches for: %s" ++msgstr "¤£²Å¦Xªº %s" ++ ++#: WWW/Library/Implementation/HTNews.c:1750 ++msgid "" ++"\n" ++"No articles in this group.\n" ++msgstr "" ++"\n" ++"¦b³o­Ó¸s²Õ¤¤¨S¦³¤å³¹.\n" ++ ++#: WWW/Library/Implementation/HTNews.c:1763 ++msgid "" ++"\n" ++"No articles in this range.\n" ++msgstr "" ++"\n" ++"¦b³o­Ó½d³ò¤¤¨S¦³¤å³¹.\n" ++ ++#. ++#. ** Set window title. ++#. ++#: WWW/Library/Implementation/HTNews.c:1776 ++#, c-format ++msgid "%s, Articles %d-%d" ++msgstr "%s, ¤å³¹ %d-%d" ++ ++#: WWW/Library/Implementation/HTNews.c:1798 ++msgid "Earlier articles" ++msgstr "¸û¦­ªº¤å³¹" ++ ++#: WWW/Library/Implementation/HTNews.c:1811 ++#, c-format ++msgid "" ++"\n" ++"There are about %d articles currently available in %s, IDs as follows:\n" ++"\n" ++msgstr "" ++"\n" ++"¥Ø«e¨S¦³Ãö©ó %d ªº¤å³¹¦b %s ¤¤, ID ¦p¤U:\n" ++"\n" ++ ++#: WWW/Library/Implementation/HTNews.c:1871 ++msgid "All available articles in " ++msgstr "©Ò¦³ªº¤å³¹¦b " ++ ++#: WWW/Library/Implementation/HTNews.c:2087 ++msgid "Later articles" ++msgstr "¸û±ßªº¤å³¹" ++ ++#: WWW/Library/Implementation/HTNews.c:2111 ++msgid "Post to " ++msgstr "±i¶K¨ì " ++ ++#: WWW/Library/Implementation/HTNews.c:2290 ++msgid "This client does not contain support for SNEWS URLs." ++msgstr "³o­Ó«È¤áºÝ¤£¥]§t SNEWS URL ªº¤ä´©." ++ ++#: WWW/Library/Implementation/HTNews.c:2497 ++msgid "No target for raw text!" ++msgstr "¹ï­ì¥Í¸ê®Æ¨S¦³¥Ø¼Ð!" ++ ++#: WWW/Library/Implementation/HTNews.c:2527 ++msgid "Connecting to NewsHost ..." ++msgstr "³s±µ¨ì·s»D¥D¾÷¤¤ ..." ++ ++#: WWW/Library/Implementation/HTNews.c:2561 ++#, c-format ++msgid "Could not access %s." ++msgstr "µLªk¦s¨ú %s." ++ ++#: WWW/Library/Implementation/HTNews.c:2613 ++#, c-format ++msgid "Can't read news info. News host %.20s responded: %.200s" ++msgstr "µLªkŪ¨ú·s»D¸ê°T. ·s»D¥D¾÷ %.20s ¦^À³: %.200s" ++ ++#: WWW/Library/Implementation/HTNews.c:2617 ++#, c-format ++msgid "Can't read news info, empty response from host %s" ++msgstr "µLªkŪ¨ú·s»D¸ê°T, ±q¥D¾÷ %s ±o¨ìªÅ¥Õ¦^À³" ++ ++#. ++#. ** List available newsgroups. - FM ++#. ++#: WWW/Library/Implementation/HTNews.c:2821 ++msgid "Reading list of available newsgroups." ++msgstr "Ū¨ú¦s¦bªº·s»D¸s²Õ¦Cªí¤¤." ++ ++#: WWW/Library/Implementation/HTNews.c:2843 ++msgid "Reading list of articles in newsgroup." ++msgstr "Ū¨ú·s»D¸s²Õ¤¤ªº¤å³¹¦Cªí¤¤." ++ ++#. ++#. ** Get an article from a news group. - FM ++#. ++#: WWW/Library/Implementation/HTNews.c:2849 ++msgid "Reading news article." ++msgstr "Ū¨ú·s»D¤å³¹¤¤." ++ ++#: WWW/Library/Implementation/HTNews.c:2879 ++msgid "Sorry, could not load requested news." ++msgstr "©êºp, µLªk¸ü¤J­n¨Dªº·s»D." ++ ++#: WWW/Library/Implementation/HTTCP.c:1215 ++msgid "Address has invalid port" ++msgstr "¦ì§}¦³¿ù»~ªº³q°T°ð" ++ ++#: WWW/Library/Implementation/HTTCP.c:1316 ++msgid "Address length looks invalid" ++msgstr "¦ì§}ªø«×¬Ý°_¨Ó¦³¿ù»~" ++ ++#. Not HTProgress, so warning won't be overwritten ++#. * immediately; but not HTAlert, because typically ++#. * there will be other alerts from the callers. - kw ++#. ++#: WWW/Library/Implementation/HTTCP.c:1484 ++#: WWW/Library/Implementation/HTTelnet.c:103 ++#, c-format ++msgid "Invalid hostname %s" ++msgstr "¿ù»~ªº¥D¾÷¦WºÙ %s" ++ ++#: WWW/Library/Implementation/HTTCP.c:1487 ++#, c-format ++msgid "Unable to locate remote host %s." ++msgstr "µLªk§ä¨ì»·ºÝ¥D¾÷ %s." ++ ++#: WWW/Library/Implementation/HTTCP.c:1497 ++#, c-format ++msgid "Making %s connection to %s" ++msgstr "«Ø¥ß %s ³sµ²¨ì %s ¤¤" ++ ++#: WWW/Library/Implementation/HTTCP.c:1507 ++msgid "socket failed." ++msgstr "´¡®y¥¢±Ñ." ++ ++#: WWW/Library/Implementation/HTTCP.c:1526 ++msgid "Could not make connection non-blocking." ++msgstr "µLªk«Ø¥ß«D°Ï¶ô³sµ²." ++ ++#: WWW/Library/Implementation/HTTCP.c:1583 ++msgid "Connection failed (too many retries)." ++msgstr "³sµ²¥¢±Ñ (­«¸Õ¦¸¼Æ¹L¦h)." ++ ++#: WWW/Library/Implementation/HTTCP.c:1746 ++msgid "Could not restore socket to blocking." ++msgstr "µLªk­«Åª´¡®y¥Hªý¾×" ++ ++#: WWW/Library/Implementation/HTTCP.c:1808 ++msgid "Socket read failed for 180,000 tries." ++msgstr "¦b 180,000 ¦¸­«¸Õ¤¤´¡®y¥¢±Ñ." ++ ++#: WWW/Library/Implementation/HTTP.c:344 ++msgid "This client does not contain support for HTTPS URLs." ++msgstr "³o­Ó«È¤áºÝ¤£¥]§t HTTPS URL ªº¤ä´©." ++ ++#: WWW/Library/Implementation/HTTP.c:368 ++msgid "Unable to connect to remote host." ++msgstr "µLªk³s±µ¨ì»·ºÝ¥D¾÷." ++ ++#: WWW/Library/Implementation/HTTP.c:785 ++msgid "Sending HTTP request." ++msgstr "°e¥X HTTP ­n¨D¤¤." ++ ++#: WWW/Library/Implementation/HTTP.c:819 ++msgid "Unexpected network write error; connection aborted." ++msgstr "«D¹w´Áªººô¸ô¼g¤J¿ù»~; ©ñ±ó³sµ²." ++ ++#: WWW/Library/Implementation/HTTP.c:825 ++msgid "HTTP request sent; waiting for response." ++msgstr "HTTP ­n¨D¤w°e¥X; µ¥­Ô¦^À³¤¤." ++ ++#: WWW/Library/Implementation/HTTP.c:889 ++msgid "Unexpected network read error; connection aborted." ++msgstr "«D¹w´Áªººô¸ôŪ¨ú¿ù»~; ©ñ±ó³sµ²." ++ ++#. ++#. ** HTTP/1.1 Informational statuses. ++#. ** 100 Continue. ++#. ** 101 Switching Protocols. ++#. ** > 101 is unknown. ++#. ** We should never get these, and they have only ++#. ** the status line and possibly other headers, ++#. ** so we'll deal with them by showing the full ++#. ** header to the user as text/plain. - FM ++#. ++#: WWW/Library/Implementation/HTTP.c:1085 ++msgid "Got unexpected Informational Status." ++msgstr "±o¨ì«D¹w´Áªº¸ê°Tª¬ºA." ++ ++#. ++#. * Reset Content. The server has fulfilled the ++#. * request but nothing is returned and we should ++#. * reset any form content. We'll instruct the ++#. * user to do that, and restore the current ++#. * document. - FM ++#. ++#: WWW/Library/Implementation/HTTP.c:1120 ++msgid "Request fulfilled. Reset Content." ++msgstr "­n¨D§¹¦¨. ­«³]¤º®e." ++ ++#. Not Modified ++#. ++#. * We didn't send an "If-Modified-Since" header, ++#. * so this status is inappropriate. We'll deal ++#. * with it by showing the full header to the user ++#. * as text/plain. - FM ++#. ++#: WWW/Library/Implementation/HTTP.c:1210 ++msgid "Got unexpected 304 Not Modified status." ++msgstr "±o¨ì«D¹w´Áªº 304 «DÅܧ󪬺A." ++ ++#: WWW/Library/Implementation/HTTP.c:1277 ++msgid "Redirection of POST content requires user approval." ++msgstr "±N'±i¶K'¤º®e§É¾É¦V»Ý­n¨Ï¥ÎªÌªº¦P·N." ++ ++#: WWW/Library/Implementation/HTTP.c:1292 ++msgid "Have POST content. Treating Permanent Redirection as Temporary.\n" ++msgstr "±o¨ì'±i¶K'¤º®e. ±Nªø´Áªº­«¾É¦Vµø¬°¼È®Éªº.\n" ++ ++#: WWW/Library/Implementation/HTTP.c:1337 ++msgid "Retrying with access authorization information." ++msgstr "­«¸Õ¸òÀHªº»{ÃÒ¸ê®Æ." ++ ++#: WWW/Library/Implementation/HTTP.c:1342 ++msgid "Show the 401 message body?" ++msgstr "¬O§_Åã¥Ü 401 °T®§¥»Åé?" ++ ++#: WWW/Library/Implementation/HTTP.c:1387 ++msgid "Show the 407 message body?" ++msgstr "¬O§_Åã¥Ü 407 °T®§¥»Åé?" ++ ++#. ++#. ** Bad or unknown server_status number. ++#. ** Take a chance and hope there is ++#. ** something to display. - FM ++#. ++#: WWW/Library/Implementation/HTTP.c:1492 ++msgid "Unknown status reply from server!" ++msgstr "¨Ó¦Û¦øªA¾¹ªº¥¼ª¾ª¬ºA¦^À³!" ++ ++#: WWW/Library/Implementation/HTTelnet.c:101 ++#, c-format ++msgid "remote %s session:" ++msgstr "»·ºÝ %s ¤u§@¶¥¬q:" ++ ++#: WWW/Library/Implementation/HTWAIS.c:164 ++msgid "Could not connect to WAIS server." ++msgstr "µLªk³s½u¨ì WAIS ¦øªA¾¹." ++ ++#: WWW/Library/Implementation/HTWAIS.c:173 ++msgid "Could not open WAIS connection for reading." ++msgstr "µLªk¶}±Ò WAIS ³sµ²¥H¨ÑŪ¨ú." ++ ++#: WWW/Library/Implementation/HTWAIS.c:197 ++msgid "Diagnostic code is " ++msgstr "¶EÂ_½X¬° " ++ ++#: WWW/Library/Implementation/HTWAIS.c:466 ++msgid "Index " ++msgstr "¯Á¤Þ " ++ ++#: WWW/Library/Implementation/HTWAIS.c:470 ++#, c-format ++msgid " contains the following %d item%s relevant to \"" ++msgstr " ¥]§t¸òÀHªº %d ¶µ¥Ø %s ´î®z¨ì \"" ++ ++#: WWW/Library/Implementation/HTWAIS.c:478 ++msgid "The first figure after each entry is its relative score, " ++msgstr "¦b¨C¤@±ø¿é¥X¤¤ªº²Ä¤@­Ó¹Ï¥Ü¥Lªº¬Û¹ï¤À¼Æ, " ++ ++#: WWW/Library/Implementation/HTWAIS.c:479 ++msgid "the second is the number of lines in the item." ++msgstr "²Ä¤G­Ó¬O¶µ¥Ø¤¤ªº¦æ¼Æ." ++ ++#: WWW/Library/Implementation/HTWAIS.c:520 ++msgid " (bad file name)" ++msgstr " (¿ù»~ªºÀɦW)" ++ ++#: WWW/Library/Implementation/HTWAIS.c:545 ++msgid "(bad doc id)" ++msgstr "(¿ù»~ªº¤å¥ó id)" ++ ++#: WWW/Library/Implementation/HTWAIS.c:561 ++msgid "(Short Header record, can't display)" ++msgstr "(µuªº¼ÐÀY¬ö¿ý, µLªkÅã¥Ü)" ++ ++#: WWW/Library/Implementation/HTWAIS.c:568 ++msgid "" ++"\n" ++"Long Header record, can't display\n" ++msgstr "" ++"\n" ++"ªøªº¼ÐÀY¬ö¿ý, µLªkÅã¥Ü\n" ++ ++#: WWW/Library/Implementation/HTWAIS.c:575 ++msgid "" ++"\n" ++"Text record\n" ++msgstr "" ++"\n" ++"¤å¦r¬ö¿ý\n" ++ ++#: WWW/Library/Implementation/HTWAIS.c:584 ++msgid "" ++"\n" ++"Headline record, can't display\n" ++msgstr "" ++"\n" ++"¼ÐÃD¬ö¿ý, µLªkÅã¥Ü\n" ++ ++#: WWW/Library/Implementation/HTWAIS.c:592 ++msgid "" ++"\n" ++"Code record, can't display\n" ++msgstr "" ++"\n" ++"½s½X¬ö¿ý, µLªkÅã¥Ü\n" ++ ++#: WWW/Library/Implementation/HTWAIS.c:696 ++msgid "Syntax error in WAIS URL" ++msgstr "¦b WAIS URL ªº»yªk¿ù»~" ++ ++#: WWW/Library/Implementation/HTWAIS.c:768 ++msgid " (WAIS Index)" ++msgstr " (WAIS ¯Á¤Þ)" ++ ++#: WWW/Library/Implementation/HTWAIS.c:775 ++msgid "WAIS Index: " ++msgstr "WAIS ¯Á¤Þ:" ++ ++#: WWW/Library/Implementation/HTWAIS.c:781 ++msgid "This is a link for searching the " ++msgstr "³o­Ó³sµ²¥Î¥H·j´M" ++ ++#: WWW/Library/Implementation/HTWAIS.c:785 ++msgid " WAIS Index.\n" ++msgstr " WAIS ¯Á¤Þ.\n" ++ ++#: WWW/Library/Implementation/HTWAIS.c:812 ++msgid "" ++"\n" ++"Enter the 's'earch command and then specify search words.\n" ++msgstr "" ++"\n" ++"¿é¤J s) ·j´M «ü¥O»P¯S©wªº·j´M¤å¦r.\n" ++ ++#: WWW/Library/Implementation/HTWAIS.c:834 ++msgid " (in " ++msgstr " (¦b " ++ ++#: WWW/Library/Implementation/HTWAIS.c:843 ++msgid "WAIS Search of \"" ++msgstr "WAIS ·j´M \"" ++ ++#: WWW/Library/Implementation/HTWAIS.c:847 ++msgid "\" in: " ++msgstr "\" ¦b: " ++ ++#: WWW/Library/Implementation/HTWAIS.c:862 ++msgid "HTWAIS: Request too large." ++msgstr "HTWAIS: ­n¨D¤Óªø." ++ ++#: WWW/Library/Implementation/HTWAIS.c:871 ++msgid "Searching WAIS database..." ++msgstr "¦b WAIS ¸ê®Æ®w·j´M¤¤..." ++ ++#: WWW/Library/Implementation/HTWAIS.c:881 ++msgid "Search interrupted." ++msgstr "·j´M¤¤Â_." ++ ++#: WWW/Library/Implementation/HTWAIS.c:931 ++msgid "Can't convert format of WAIS document" ++msgstr "µLªkÂà´« WAIS ¤å¥ó®æ¦¡" ++ ++#: WWW/Library/Implementation/HTWAIS.c:975 ++msgid "HTWAIS: Request too long." ++msgstr "HTWAIS: ­n¨D¤Óªø." ++ ++#. ++#. ** Actually do the transaction given by request_message. ++#. ++#: WWW/Library/Implementation/HTWAIS.c:989 ++msgid "Fetching WAIS document..." ++msgstr "±a¦^ WAIS ¤å¥ó¤¤..." ++ ++#. display_search_response(target, retrieval_response, ++#. wais_database, keywords); ++#: WWW/Library/Implementation/HTWAIS.c:1028 ++msgid "No text was returned!\n" ++msgstr "¨S¦³¤å¦r³Q¶Ç¦^!\n" ++ ++#: WWW/Library/Implementation/HTWSRC.c:289 ++msgid " NOT GIVEN in source file; " ++msgstr " ¤£¬Oµ¹©wªº¨Ó·½ÀÉ®×; " ++ ++#: WWW/Library/Implementation/HTWSRC.c:313 ++msgid " WAIS source file" ++msgstr " WAIS ¨Ó·½ÀÉ" ++ ++#: WWW/Library/Implementation/HTWSRC.c:320 ++msgid " description" ++msgstr " ´y­z" ++ ++#: WWW/Library/Implementation/HTWSRC.c:330 ++msgid "Access links" ++msgstr "¦s¨ú³sµ²" ++ ++#: WWW/Library/Implementation/HTWSRC.c:347 ++msgid "Direct access" ++msgstr "¸ô®|¦s¨ú" ++ ++#. * Proxy will be used if defined, so let user know that - FM * ++#: WWW/Library/Implementation/HTWSRC.c:350 ++msgid " (or via proxy server, if defined)" ++msgstr " (©Î¸g¥Ñ¥N²z¦øªA¾¹, ¦pªG¤w©w¸q)" ++ ++#: WWW/Library/Implementation/HTWSRC.c:365 ++msgid "Maintainer" ++msgstr "ºûÅ@ªÌ" ++ ++#: WWW/Library/Implementation/HTWSRC.c:373 ++msgid "Host" ++msgstr "¥D¾÷" ++ ++#: src/GridText.c:623 ++msgid "Memory exhausted, display interrupted!" ++msgstr "°O¾ÐÅ餣¨¬, Åã¥Ü¤¤Â_!" ++ ++#: src/GridText.c:628 ++msgid "Memory exhausted, will interrupt transfer!" ++msgstr "°O¾ÐÅ餣¨¬, ±N¤¤Â_¶Ç¿é!" ++ ++#: src/GridText.c:3520 ++msgid " *** MEMORY EXHAUSTED ***" ++msgstr " *** °O¾ÐÅ餣¨¬ ***" ++ ++#: src/GridText.c:5982 src/GridText.c:5989 src/LYList.c:258 ++msgid "unknown field or link" ++msgstr "¥¼ª¾ªºÄæ¦ì©Î³sµ²" ++ ++#: src/GridText.c:5998 ++msgid "text entry field" ++msgstr "¤å¦r¿é¤JÄæ¦ì" ++ ++#: src/GridText.c:6001 ++msgid "password entry field" ++msgstr "±K½X¿é¤JÄæ¦ì" ++ ++#: src/GridText.c:6004 ++msgid "checkbox" ++msgstr "Àˬd¤è¶ô" ++ ++#: src/GridText.c:6007 ++msgid "radio button" ++msgstr "¿ï¾Ü¶ê¶s" ++ ++#: src/GridText.c:6010 ++msgid "submit button" ++msgstr "°e¥X«ö¶s" ++ ++#: src/GridText.c:6013 ++msgid "reset button" ++msgstr "­«³]«ö¶s" ++ ++#: src/GridText.c:6016 ++msgid "popup menu" ++msgstr "¸õ¥X¿ï³æ" ++ ++#: src/GridText.c:6019 ++msgid "hidden form field" ++msgstr "ÁôÂêí³æÄæ¦ì" ++ ++#: src/GridText.c:6022 ++msgid "text entry area" ++msgstr "¤å¦r¿é¤J°Ï°ì" ++ ++#: src/GridText.c:6025 ++msgid "range entry field" ++msgstr "½d³ò¿é¤J°Ï°ì" ++ ++#: src/GridText.c:6028 ++msgid "file entry field" ++msgstr "Àɮ׿é¤J°Ï°ì" ++ ++#: src/GridText.c:6031 ++msgid "text-submit field" ++msgstr "¤å¦r°e¥XÄæ¦ì" ++ ++#: src/GridText.c:6034 ++msgid "image-submit button" ++msgstr "¼v¹³°e¥XÄæ¦ì" ++ ++#: src/GridText.c:6037 ++msgid "keygen field" ++msgstr "ÂêÆ_²£¥ÍÄæ¦ì" ++ ++#: src/GridText.c:6040 ++msgid "unknown form field" ++msgstr "¥¼ª¾ªºªí³æÄæ¦ì" ++ ++#: src/GridText.c:11050 ++#, c-format ++msgid "Submitting %s" ++msgstr "°e¥X %s ¤¤" ++ ++#: src/GridText.c:12373 ++msgid "Editor killed by signal" ++msgstr "½s¿è¾¹³Q«H¸¹±þ±¼" ++ ++#: src/GridText.c:12375 ++#, c-format ++msgid "Editor returned with error status, %s" ++msgstr "½s¿è¾¹¶Ç¦^¿ù»~ª¬ºA, %s" ++ ++#: src/GridText.c:12376 ++msgid "reason unknown." ++msgstr "­ì¦]¤£²»." ++ ++#. don't show previous state ++#: src/GridText.c:12472 ++msgid "Wrap lines to fit displayed area?" ++msgstr "¬O§_´«¦æ¥H²Å¦XÅã¥Ü°Ï°ì?" ++ ++#: src/GridText.c:12524 ++msgid "Very long lines have been wrapped!" ++msgstr "¤Óªøªº¦æ³Q´«¦æ!" ++ ++#: src/GridText.c:12977 ++msgid "Very long lines have been truncated!" ++msgstr "¤Óªøªº¦æ³Q¤ÁÂ_!" ++ ++#: src/HTAlert.c:140 src/HTAlert.c:342 src/LYShowInfo.c:287 ++msgid "bytes" ++msgstr "¦ì¤¸²Õ" ++ ++#: src/HTAlert.c:141 src/HTAlert.c:346 ++msgid "KB" ++msgstr "KB" ++ ++#: src/HTAlert.c:290 ++#, c-format ++msgid "Read %s of %s of data" ++msgstr "Ū¨ú %s ¤§ %s ªº¸ê®Æ" ++ ++#: src/HTAlert.c:292 ++#, c-format ++msgid "Read %s of data" ++msgstr "Ū¨ú %s ªº¸ê®Æ" ++ ++#: src/HTAlert.c:294 ++#, c-format ++msgid ", %s/sec" ++msgstr ", %s/sec" ++ ++#: src/HTAlert.c:296 ++#, c-format ++msgid " (stalled for %ld sec)" ++msgstr " (¥¢³t¤F %ld ¬í)" ++ ++#: src/HTAlert.c:298 ++#, c-format ++msgid ", ETA %ld sec" ++msgstr ", ¹w­p %ld ¬í§¹¦¨" ++ ++#: src/HTAlert.c:301 src/HTAlert.c:363 ++msgid " (Press 'z' to abort)" ++msgstr " («ö¤U 'z' ¥H©ñ±ó)" ++ ++#: src/HTAlert.c:353 ++#, c-format ++msgid "Read %ld of %ld %s of data" ++msgstr "Ū¨ú %ld ¤§ %ld %s ªº¸ê®Æ" ++ ++#: src/HTAlert.c:355 ++#, c-format ++msgid "Read %ld %s of data" ++msgstr "Ū¨ú %ld %s ªº¸ê®Æ" ++ ++#: src/HTAlert.c:358 ++#, c-format ++msgid ", %ld %s/sec." ++msgstr ", %ld %s/sec." ++ ++#. Meta-note: don't move the following note from its place right ++#. in front of the first gettext(). As it is now, it should ++#. automatically appear in generated lynx.pot files. - kw ++#. ++#. NOTE TO TRANSLATORS: If you provide a translation for "yes", lynx ++#. * will take the first byte of the translation as a positive response ++#. * to Yes/No questions. If you provide a translation for "no", lynx ++#. * will take the first byte of the translation as a negative response ++#. * to Yes/No questions. For both, lynx will also try to show the ++#. * first byte in the prompt as a character, instead of (y) or (n), ++#. * respectively. This will not work right for multibyte charsets! ++#. * Don't translate "yes" and "no" for CJK character sets (or translate ++#. * them to "yes" and "no"). For a translation using UTF-8, don't ++#. * translate if the translation would begin with anything but a 7-bit ++#. * (US_ASCII) character. That also means do not translate if the ++#. * translation would begin with anything but a 7-bit character, if ++#. * you use a single-byte character encoding (a charset like ISO-8859-n) ++#. * but anticipate that the message catalog may be used re-encoded in ++#. * UTF-8 form. ++#. * For translations using other character sets, you may also wish to ++#. * leave "yes" and "no" untranslated, if using (y) and (n) is the ++#. * preferred behavior. ++#. * Lynx will also accept y Y n N as responses unless there is a conflict ++#. * with the first letter of the "yes" or "no" translation. ++#. ++#: src/HTAlert.c:420 ++msgid "yes" ++msgstr "yes" ++ ++#: src/HTAlert.c:421 ++msgid "no" ++msgstr "no" ++ ++#: src/HTML.c:6407 ++msgid "Description:" ++msgstr "´y­z:" ++ ++#: src/HTML.c:6412 ++msgid "(none)" ++msgstr "(µL)" ++ ++#: src/HTML.c:6416 ++msgid "Filepath:" ++msgstr "Àɮ׸ô®|:" ++ ++#: src/HTML.c:6421 ++msgid "(unknown)" ++msgstr "(¥¼ª¾)" ++ ++#: src/HTML.c:7855 ++msgid "Document has only hidden links. Use the 'l'ist command." ++msgstr "¤å¥ó¥u¦³ÁôÂósµ². ¨Ï¥Î l) ¦C¥X ©R¥O." ++ ++#: src/HTML.c:8433 ++msgid "Source cache error - disk full?" ++msgstr "¨Ó·½§Ö¨ú¿ù»~ - ºÏºÐ¤wº¡?" ++ ++#: src/HTML.c:8446 ++msgid "Source cache error - not enough memory!" ++msgstr "¨Ó·½ÂX¨ú¿ù»~ - °O¾ÐÅ餣¨¬!" ++ ++#: src/LYBookmark.c:155 ++msgid "" ++" This file is an HTML representation of the X Mosaic hotlist file.\n" ++" Outdated or invalid links may be removed by using the\n" ++" remove bookmark command, it is usually the 'R' key but may have\n" ++" been remapped by you or your system administrator." ++msgstr "" ++" ³o­ÓÀɮ׬O X Mosaic ¥D¾÷¦Cªíªº HTML ½Æ»s.\n" ++" ¹L´Áªº©Î¿ù»~ªº³sµ²¥i¥H§Q¥Î²¾°£®ÑÅÒ«ü¥O²¾°£, \n" ++" ³q±` 'R' Áä¬O³o­Ó©R¥O.\n" ++" ¦ý¥i¯à³Q±z©Î±zªº¨t²ÎºÞ²zªÌ­«·s¹ïÀ³." ++ ++#: src/LYBookmark.c:371 ++msgid "" ++" You can delete links by the 'R' key
\n" ++"
    \n" ++msgstr "" ++" ±z¥i¥H§Q¥Î 'R' Áä¥H§R°£³sµ²
    \n" ++"
      \n" ++ ++#: src/LYBookmark.c:374 ++msgid "" ++" You can delete links using the remove bookmark command. It is usually\n" ++" the 'R' key but may have been remapped by you or your system\n" ++" administrator." ++msgstr "" ++" ¥i¥H§Q¥Î²¾°£®ÑÅÒ«ü¥O²¾°£³sµ².\n" ++" ³q±` 'R' Áä¬O³o­Ó©R¥O.\n" ++" ¦ý¥i¯à³Q±z©Î±zªº¨t²ÎºÞ²zªÌ­«·s¹ïÀ³." ++ ++#: src/LYBookmark.c:378 ++msgid "" ++" This file also may be edited with a standard text editor to delete\n" ++" outdated or invalid links, or to change their order." ++msgstr "" ++" ³o­ÓÀɮפ]¥i¥H¥Î¤@¯ëªº¤å¦r½s¿è¾¹¥H\n" ++" §R°£¹L®É©Î¿ù»~ªº³sµ², ©Î§ïÅܱƦC¶¶§Ç." ++ ++#: src/LYBookmark.c:381 ++msgid "" ++"Note: if you edit this file manually\n" ++" you should not change the format within the lines\n" ++" or add other HTML markup.\n" ++" Make sure any bookmark link is saved as a single line." ++msgstr "" ++" µù: ¦pªG±z·Q­n¤â°Ê½s¿è³o­ÓÀÉ®×\n" ++" ±z¤£¯à§ïÅܨC¤@¦æªº®æ¦¡\n" ++" ©Î¼W­×¨ä¥Lªº HTML ¼ÐÅÒ.\n" ++" ½T«O¨C¤@­Ó®ÑÅÒ³s±µ³£³Q¦s¦¨³æ¿Wªº¤@¦æ." ++ ++#: src/LYBookmark.c:672 ++#, c-format ++msgid "File may be recoverable from %s during this session" ++msgstr "¦b³o­Ó¤u§@¶¥¬q¤¤, ÀÉ®×¥i¥H±q %s ³QÁÙ­ì" ++ ++#. ++#. * Neither the path as given nor any components examined by ++#. * backing up were stat()able. - kw ++#. ++#: src/LYCgi.c:235 ++msgid "Unable to access cgi script" ++msgstr "µLªk¦s¨ú cgi script" ++ ++#: src/LYCgi.c:653 src/LYCgi.c:656 ++msgid "Good Advice" ++msgstr "¦n«Øij" ++ ++#: src/LYCgi.c:659 ++msgid "An excellent http server for VMS is available via" ++msgstr "¤@­Ó«Ü¦nªº VMS http ¦øªA¾¹¤w¸g¦s¦b¸g¥Ñ" ++ ++#: src/LYCgi.c:666 ++msgid "this link" ++msgstr "³o­Ó³sµ²" ++ ++#: src/LYCgi.c:670 ++msgid "It provides state of the art CGI script support.\n" ++msgstr "¥L´£¨Ñ¤F art CGI script ªºª¬ºA.\n" ++ ++#: src/LYClean.c:108 ++msgid "Exiting via interrupt:" ++msgstr "¸g¥Ñ¤¤Â_Â÷¶}:" ++ ++#. not used any more - kw ++#: src/LYCookie.c:2225 ++msgid "(From Cookie Jar)" ++msgstr "(±q cookie ®w)" ++ ++#: src/LYCookie.c:2651 ++msgid "(from a previous session)" ++msgstr "(±q«e¤@­Ó¤u§@¶¥¬q)" ++ ++#: src/LYCookie.c:2711 ++msgid "Maximum Gobble Date:" ++msgstr "³Ì¤jªº±µ¨ü¤é´Á:" ++ ++#: src/LYCookie.c:2756 ++msgid "Internal" ++msgstr "¤º³¡ªº" ++ ++#: src/LYCookie.c:2757 ++msgid "cookie_domain_flag_set error, aborting program" ++msgstr "cookie_domain_flag_set ¿ù»~, ©ñ±óµ{¦¡¤¤" ++ ++#: src/LYCurses.c:795 ++msgid "Terminal initialisation failed - unknown terminal type?" ++msgstr "²×ºÝ¾÷ªì©l¤Æ¿ù»~ - ¥¼ª¾ªº²×ºÝ¾÷Ãþ«¬?" ++ ++#: src/LYCurses.c:1102 ++msgid "Terminal =" ++msgstr "²×ºÝ¾÷ =" ++ ++#: src/LYCurses.c:1107 ++msgid "You must use a vt100, 200, etc. terminal with this program." ++msgstr "±z¥²¶·¨Ï¥Î¤@­Ó vt100, 200, µ¥²×ºÝ¾÷¥H¨Ï¥Î³o­Óµ{¦¡." ++ ++#: src/LYCurses.c:1185 ++msgid "Your Terminal type is unknown!" ++msgstr "±zªº²×ºÝ¾÷Ãþ«¬¬O¥¼ª¾ªº!" ++ ++#: src/LYCurses.c:1186 ++msgid "Enter a terminal type:" ++msgstr "¿é¤J¤@­Ó²×ºÝ¾÷Ãþ«¬:" ++ ++#: src/LYCurses.c:1199 ++msgid "TERMINAL TYPE IS SET TO" ++msgstr "²×ºÝ¾÷Ãþ«¬³]©w¦¨" ++ ++#: src/LYCurses.c:1505 ++#, c-format ++msgid "" ++"\n" ++"A Fatal error has occurred in %s Ver. %s\n" ++msgstr "" ++"\n" ++"­P©Rªº¿ù»~µo¥Í¦b %s ª©¥» %s\n" ++ ++#: src/LYCurses.c:1507 ++msgid "" ++"\n" ++"Please notify your system administrator to confirm a bug, and if\n" ++"confirmed, to notify the lynx-dev list. Bug reports should have concise\n" ++"descriptions of the command and/or URL which causes the problem, the\n" ++"operating system name with version number, the TCPIP implementation, the\n" ++"TRACEBACK if it can be captured, and any other relevant information.\n" ++msgstr "" ++"\n" ++"½Ð³qª¾±zªº¨t²ÎºÞ²zªÌ¥H½T»{³o­Ó¯äÂÎ, ¦pªG½T»{½Ð³qª¾ lynx-dev ¦Cªí.\n" ++"¯äÂΦ^³øÀ³¸Ó­n¦³Â²³æªº¾Þ§@±Ô­z»P/©Î³y¦¨³o­Ó¿ù»~ªº URL,\n" ++"§@·~¨t²Î¦W¦¨»Pª©¥»§Ç¸¹, TCPIP ³]©w¸ê°T,\n" ++"TRACEBACK ÀÉ®× (¦pªG¥i¥H®·®»), »P¨ä¥L¦¸­n¸ê°T.\n" ++"\n" ++ ++#: src/LYDownload.c:526 ++msgid "Downloaded link:" ++msgstr "¤w¤U¸üªº³sµ²:" ++ ++#: src/LYDownload.c:531 ++msgid "Suggested file name:" ++msgstr "«ØijªºÀɮצWºÙ:" ++ ++#: src/LYDownload.c:536 ++msgid "Standard download options:" ++msgstr "·Ï·Çªº¤U¸ü°Ñ¼Æ:" ++ ++#: src/LYDownload.c:537 ++msgid "Download options:" ++msgstr "¤U¸ü°Ñ¼Æ:" ++ ++#: src/LYDownload.c:551 ++msgid "Save to disk" ++msgstr "¦s¨ìºÏºÐ" ++ ++#: src/LYDownload.c:553 ++msgid "Save to disk disabled." ++msgstr "¦s¨ìºÏºÐ³QÃö³¬." ++ ++#: src/LYDownload.c:557 src/LYPrint.c:1349 ++msgid "Local additions:" ++msgstr "¥»¦aºÝªþ¥[:" ++ ++#: src/LYDownload.c:566 src/LYUpload.c:230 ++msgid "No Name Given" ++msgstr "¨S¦³µ¹¤©¦WºÙ" ++ ++#: src/LYHistory.c:515 ++msgid "You selected:" ++msgstr "±zªº¿ï¾Ü:" ++ ++#: src/LYHistory.c:539 src/LYHistory.c:787 ++msgid "(no address)" ++msgstr "(¨S¦³¦a§})" ++ ++#: src/LYHistory.c:543 ++msgid " (internal)" ++msgstr " (¤º³¡ªº)" ++ ++#: src/LYHistory.c:545 ++msgid " (was internal)" ++msgstr " (¬O¤º³¡ªº)" ++ ++#: src/LYHistory.c:643 ++msgid " (From History)" ++msgstr " (¨Ó¦Û¾ú¥v)" ++ ++#: src/LYHistory.c:707 ++msgid "You visited (POSTs, bookmark, menu and list files excluded):" ++msgstr "±zÂsÄý¤F (±i¶K, ®ÑÅÒ, ¥Ø¿ý »P ¦C¥XªºÀɮױư£):" ++ ++#: src/LYHistory.c:1006 ++msgid "(No messages yet)" ++msgstr "(¥Ø«e¨S¦³°T®§)" ++ ++#: src/LYLeaks.c:78 ++msgid "Invalid pointer detected." ++msgstr "°»´ú¨ì¿ù»~ªº«ü¥Ü¾¹." ++ ++#: src/LYLeaks.c:80 src/LYLeaks.c:117 ++msgid "Pointer:" ++msgstr "«ü¥Ü¾¹:" ++ ++#: src/LYLeaks.c:91 src/LYLeaks.c:98 src/LYLeaks.c:136 ++msgid "FileName:" ++msgstr "ÀɮצWºÙ:" ++ ++#: src/LYLeaks.c:94 src/LYLeaks.c:101 src/LYLeaks.c:139 src/LYLeaks.c:150 ++msgid "LineCount:" ++msgstr "Á`¦æ¼Æ:" ++ ++#: src/LYLeaks.c:115 ++msgid "Memory leak detected." ++msgstr "°»´ú¨ì°O¾ÐÅéº|¥¢." ++ ++#: src/LYLeaks.c:120 ++msgid "Contains:" ++msgstr "¥]§t:" ++ ++#: src/LYLeaks.c:133 ++msgid "ByteSize:" ++msgstr "¦ì¤¸²Õ¤j¤p:" ++ ++#: src/LYLeaks.c:147 ++msgid "realloced:" ++msgstr "­«·s°t¸m:" ++ ++#: src/LYLeaks.c:170 ++msgid "Total memory leakage this run:" ++msgstr "³o¦¸°õ¦æªºÁ`°O¾ÐÅéº|¥¢:" ++ ++#: src/LYList.c:91 ++msgid "References in " ++msgstr "°Ñ¦Ò¸ê®Æ¦b" ++ ++#: src/LYList.c:92 ++msgid "this document:" ++msgstr "³o­Ó¤å¥ó:" ++ ++#: src/LYList.c:98 ++msgid "Visible links:" ++msgstr "¥i¨£ªº³sµ²:" ++ ++#: src/LYList.c:199 src/LYList.c:319 ++msgid "Hidden links:" ++msgstr "ÁôÂ꺳sµ²:" ++ ++#: src/LYList.c:267 ++msgid "References" ++msgstr "°Ñ¦Ò¸ê®Æ" ++ ++#: src/LYList.c:269 ++msgid "Visible links" ++msgstr "¥i¨£ªº³sµ²" ++ ++#: src/LYLocal.c:287 ++#, c-format ++msgid "Unable to get status of '%s'." ++msgstr "µLªk¨ú±o '%s' ªºª¬ºA." ++ ++#: src/LYLocal.c:321 ++msgid "The selected item is not a file or a directory! Request ignored." ++msgstr "¿ï¾Üªº¶µ¥Ø¤£¬OÀɮשθô®|! ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:358 ++#, c-format ++msgid "move %s to %s" ++msgstr "²¾°Ê %s ¨ì %s" ++ ++#: src/LYLocal.c:380 ++msgid "There is already a directory with that name! Request ignored." ++msgstr "¤w¸g¦³¤@­Ó¸ô®|¦³¬Û¦Pªº¦WºÙ! ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:382 ++msgid "There is already a file with that name! Request ignored." ++msgstr "¤w¸g¦³¤@­ÓÀɮצ³¬Û¦Pªº¦WºÙ! ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:384 ++msgid "The specified name is already in use! Request ignored." ++msgstr "­n¨Dªº¦WºÙ¤w¦b¨Ï¥Î¤¤! ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:395 ++msgid "Destination has different owner! Request denied." ++msgstr "¥Ø¼ÐÄݩ󤣦Pªº¨Ï¥ÎªÌ! ­n¨D³Q©Úµ´." ++ ++#: src/LYLocal.c:398 ++msgid "Destination is not a valid directory! Request denied." ++msgstr "¥Ø¼Ð¤£¬O¤@­Ó¦³®Äªº¸ô®|! ­n¨D³Q©Úµ´." ++ ++#: src/LYLocal.c:421 ++msgid "Remove all tagged files and directories?" ++msgstr "¬O§_²¾°£©Ò¦³³Q¼Ð°OªºÀÉ®×»P¸ô®|?" ++ ++#: src/LYLocal.c:442 ++#, c-format ++msgid "remove %s" ++msgstr "²¾°£ %s" ++ ++#: src/LYLocal.c:485 ++msgid "Enter new location for tagged items: " ++msgstr "¿é¤J³Q¼Ð°O¶µ¥Øªº·s¦ì¸m: " ++ ++#: src/LYLocal.c:554 ++msgid "Path too long" ++msgstr "¸ô®|¤Óªø" ++ ++#: src/LYLocal.c:585 ++msgid "Source and destination are the same location - request ignored!" ++msgstr "¨Ó·½»P¥Ø¼Ð¦b¬Û¦Pªº¦ì¸m - ­n¨D³Q©¿²¤!" ++ ++#: src/LYLocal.c:643 ++msgid "Enter new name for directory: " ++msgstr "¿é¤J¸ô®|ªº·s¦WºÙ: " ++ ++#: src/LYLocal.c:645 ++msgid "Enter new name for file: " ++msgstr "¿é¤JÀɮתº·s¦WºÙ: " ++ ++#: src/LYLocal.c:656 ++msgid "Illegal character (path-separator) found! Request ignored." ++msgstr "§ä¨ì¤£¦Xªkªº¦r¤¸ (¸ô®|¤À¹j)! ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:705 ++msgid "Enter new location for directory: " ++msgstr "¿é¤J¸ô®|ªº·s¦ì¸m: " ++ ++#: src/LYLocal.c:707 ++msgid "Enter new location for file: " ++msgstr "¿é¤JÀɮתº·s¦ì¸m: " ++ ++#: src/LYLocal.c:732 ++msgid "Unexpected failure - unable to find trailing path separator" ++msgstr "¥¼¹w´Áªº¥¢±Ñ - µLªk§ä¨ì§ÀºÝªº¸ô®|¤À¹j" ++ ++#: src/LYLocal.c:752 ++msgid "Source and destination are the same location! Request ignored!" ++msgstr "¨Ó·½»P¥Ø¼Ð¦b¬Û¦Pªº¦ì¸m - ­n¨D³Q©¿²¤!" ++ ++#: src/LYLocal.c:799 ++msgid "Modify name, location, or permission (n, l, or p): " ++msgstr "­×§ï¦WºÙ, ¦ì¸m, ©ÎÅv­­ (n, l, p): " ++ ++#: src/LYLocal.c:801 ++msgid "Modify name or location (n or l): " ++msgstr "­×§ï¦WºÙ©Î¦ì¸m (n, l): " ++ ++#. ++#. * Code for changing ownership needed here. ++#. ++#: src/LYLocal.c:831 ++msgid "This feature not yet implemented!" ++msgstr "³o­Ó¥\\¯à¥¼³Q¹ê§@¥X¨Ó!" ++ ++#: src/LYLocal.c:849 ++msgid "Enter name of file to create: " ++msgstr "¿é¤J«Ø¥ßÀɮתº¦WºÙ: " ++ ++#: src/LYLocal.c:859 src/LYLocal.c:908 ++msgid "Illegal redirection \"//\" found! Request ignored." ++msgstr "§ä¨ì¤£¦Xªkªº­«¾É¦V \"//\"! ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:874 ++#, c-format ++msgid "create %s" ++msgstr "«Ø¥ß %s" ++ ++#: src/LYLocal.c:898 ++msgid "Enter name for new directory: " ++msgstr "¿é¤J·s¸ô®|ªº¦WºÙ: " ++ ++#: src/LYLocal.c:950 ++msgid "Create file or directory (f or d): " ++msgstr "«Ø¥ßÀɮשθô®| (f, d): " ++ ++#: src/LYLocal.c:992 ++#, c-format ++msgid "Remove '%s' and all of its contents?" ++msgstr "¬O§_­n²¾°£ '%s' »P©Ò¦³ªº¤º®e?" ++ ++#: src/LYLocal.c:995 ++msgid "Remove directory and all of its contents?" ++msgstr "¬O§_­n²¾°£¸ô®|»P©Ò¦³ªº¤º®e?" ++ ++#: src/LYLocal.c:999 ++#, c-format ++msgid "Remove file '%s'?" ++msgstr "¬O§_²¾°£ÀÉ®× '%s'?" ++ ++#: src/LYLocal.c:1001 ++msgid "Remove file?" ++msgstr "¬O§_²¾°£ÀÉ®×?" ++ ++#: src/LYLocal.c:1006 ++#, c-format ++msgid "Remove symbolic link '%s'?" ++msgstr "¬O§_²¾°£²Å¸¹³sµ² '%s'?" ++ ++#: src/LYLocal.c:1008 ++msgid "Remove symbolic link?" ++msgstr "¬O§_²¾°£²Å¸¹³sµ²?" ++ ++#: src/LYLocal.c:1104 ++msgid "Sorry, don't know how to permit non-UNIX files yet." ++msgstr "©êºp, ¥Ø«eÁÙ¤£ª¾¹D¦p¦ó³B²z«D UNIX ÀÉ®×Åv­­." ++ ++#: src/LYLocal.c:1134 ++msgid "Unable to open permit options file" ++msgstr "µLªk¶}±ÒÅv­­¿ï¶µÀÉ®×" ++ ++#: src/LYLocal.c:1161 ++msgid "Specify permissions below:" ++msgstr "¦b¤U­±«ü©w«ü¥OÅv­­:" ++ ++#: src/LYLocal.c:1162 src/LYShowInfo.c:165 ++msgid "Owner:" ++msgstr "¾Ö¦³ªÌ:" ++ ++#: src/LYLocal.c:1178 ++msgid "Group" ++msgstr "¸s²Õ" ++ ++#: src/LYLocal.c:1194 ++msgid "Others:" ++msgstr "¨ä¥L¤H:" ++ ++#: src/LYLocal.c:1212 ++msgid "form to permit" ++msgstr "Åv­­ªí³æ" ++ ++#: src/LYLocal.c:1314 ++msgid "Invalid mode format." ++msgstr "¿ù»~ªº¼Ò¦¡®æ¦¡." ++ ++#: src/LYLocal.c:1318 ++msgid "Invalid syntax format." ++msgstr "¿ù»~ªº»yªk®æ¦¡." ++ ++#: src/LYLocal.c:1492 ++msgid "NULL URL pointer" ++msgstr "ªÅ¥Õªº URL «ü¼Ð¾¹" ++ ++#: src/LYLocal.c:1582 ++msgid "Warning! UUDecoded file will exist in the directory you started Lynx." ++msgstr "ĵ§i! UUDecode ÀÉ®×±N·|¥X²{¦b±z±Ò°Ê Lynx ªº¸ô®|." ++ ++#: src/LYLocal.c:1694 ++#, c-format ++msgid "Executing %s " ++msgstr "°õ¦æ %s ¤¤ " ++ ++#: src/LYLocal.c:1697 ++msgid "Executing system command. This might take a while." ++msgstr "°õ¦æ¨t²Î©R¥O. ³o¥i¯à­nªá¤@ÂI®É¶¡." ++ ++#: src/LYLocal.c:1742 ++msgid "Unable to open file management menu file." ++msgstr "µLªk¶}±ÒÀɮ׺޲z¿ï³æÀÉ®×." ++ ++#: src/LYLocal.c:1773 ++msgid "Current directory:" ++msgstr "¥Ø«eªº¸ô®|:" ++ ++#: src/LYLocal.c:1776 src/LYLocal.c:1794 ++msgid "Current selection:" ++msgstr "¥Ø«eªº¿ï¾Ü:" ++ ++#: src/LYLocal.c:1780 ++msgid "Nothing currently selected." ++msgstr "¥Ø«e¨S¦³¿ï¾Ü¥ô¦óªF¦è." ++ ++#: src/LYLocal.c:1795 ++msgid "tagged item:" ++msgstr "¼Ð°Oªº¶µ¥Ø:" ++ ++#: src/LYLocal.c:1795 ++msgid "tagged items:" ++msgstr "¼Ð°Oªº¶µ¥Ø:" ++ ++#: src/LYLocal.c:1894 src/LYLocal.c:1905 ++msgid "Illegal filename; request ignored." ++msgstr "¤£¦XªkªºÀɦW; ­n¨D³Q©¿²¤." ++ ++#: src/LYLocal.c:2048 ++msgid "The selected item is not a directory! Request ignored." ++msgstr "¿ï¾Üªº¶µ¥Ø¤£¬O¤@­Ó¸ô®|! ­n¨D³Q©¿²¤." ++ ++#. directory not writable ++#: src/LYLocal.c:2052 ++msgid "Install in the selected directory not permitted." ++msgstr "¦w¸Ë¨ì¿ï¾Üªº¸ô®|¤£³Q¤¹³\\." ++ ++#: src/LYLocal.c:2057 ++msgid "Just a moment, ..." ++msgstr "µ¥¤@·|¨à, ..." ++ ++#: src/LYLocal.c:2074 ++msgid "Error buiding install args" ++msgstr "«Ø¥ß¦w¸Ë°Ñ¼Æµo¥Í¿ù»~" ++ ++#: src/LYLocal.c:2089 src/LYLocal.c:2121 ++#, c-format ++msgid "Source and target are the same: %s" ++msgstr "¨Ó·½»P¥Ø¼Ð¬Û¦P: %s" ++ ++#: src/LYLocal.c:2099 src/LYLocal.c:2131 ++#, c-format ++msgid "Already in target directory: %s" ++msgstr "¤w¸g¦b¥Ø¼Ð¸ô®|: %s" ++ ++#: src/LYLocal.c:2149 ++msgid "Installation complete" ++msgstr "¦w¸Ë§¹¦¨" ++ ++#: src/LYLocal.c:2338 ++msgid "Temporary URL or list would be too long." ++msgstr "¼È¦sªº URL ©Î¦Cªí¤Óªø." ++ ++#: src/LYLocal.c:2405 ++#, c-format ++msgid "Unable to %s due to system error!" ++msgstr "¦]¬°¨t²Î¿ù»~, ©Ò¥HµLªk¨ì %s!" ++ ++#. error return ++#: src/LYLocal.c:2434 ++#, c-format ++msgid "Probable failure to %s due to system error!" ++msgstr "¦]¬°¨t²Î¿ù»~, ©Ò¥H¥i¯à¥¢±Ñ¨ì %s!" ++ ++#: src/LYMail.c:866 ++#, c-format ++msgid "The link %s :?: %s \n" ++msgstr "³sµ² %s :?: %s \n" ++ ++#: src/LYMail.c:868 ++#, c-format ++msgid "called \"%s\"\n" ++msgstr "©I¥s \"%s\"\n" ++ ++#: src/LYMail.c:869 ++#, c-format ++msgid "in the file \"%s\" called \"%s\"\n" ++msgstr "¦bÀÉ®× \"%s\" ©I¥s \"%s\"\n" ++ ++#: src/LYMail.c:870 ++msgid "was requested but was not available." ++msgstr "³Q­n¨D¦ý¤£¦s¦b." ++ ++#: src/LYMail.c:871 ++msgid "Thought you might want to know." ++msgstr "±z¥i¯à·Qª¾¹D." ++ ++#: src/LYMail.c:873 ++msgid "This message was automatically generated by" ++msgstr "³o­Ó°T®§¬O¦Û°Ê²£¥Íªº, ¸g¥Ñ" ++ ++#: src/LYMail.c:874 ++#, c-format ++msgid "Lynx ver. %s" ++msgstr "Lynx ª©¥» %s" ++ ++#: src/LYMail.c:1472 ++msgid "Personal_name: " ++msgstr "­Ó¤H¦WºÙ: " ++ ++#: src/LYMail.c:1474 ++msgid "X_Personal_name: " ++msgstr "X ­Ó¤H¦WºÙ: " ++ ++#: src/LYMail.c:1477 ++msgid "Personal Name: " ++msgstr "­Ó¤H¦WºÙ: " ++ ++#: src/LYMain.c:848 ++msgid "No Winsock found, sorry." ++msgstr "§ä¤£¨ì Winsock, ©êºp." ++ ++#: src/LYMain.c:1033 ++msgid "You MUST define a valid TMP or TEMP area!\n" ++msgstr "±z¥²¶·©w¸q¤@­Ó¦³®Äªº TMP ©Î TEMP °Ï°ì!\n" ++ ++#: src/LYMain.c:1440 ++#, c-format ++msgid "" ++"\n" ++"Configuration file %s is not available.\n" ++"\n" ++msgstr "" ++"\n" ++"²ÕºAÀÉ %s ¤£¦s¦b.\n" ++"\n" ++ ++#: src/LYMain.c:1456 ++msgid "" ++"\n" ++"Lynx character sets not declared.\n" ++"\n" ++msgstr "" ++"\n" ++"Lynx ¦r¤¸¶°¥¼«Å§i.\n" ++"\n" ++ ++#: src/LYMain.c:1480 ++msgid "" ++"\n" ++"Lynx edit map not declared.\n" ++"\n" ++msgstr "" ++"\n" ++"Lynx ½s¿è¦a¹Ï¥¼«Å§i.\n" ++"\n" ++ ++#: src/LYMain.c:1509 ++#, c-format ++msgid "" ++"\n" ++"Lynx file %s is not available.\n" ++"\n" ++msgstr "" ++"\n" ++"Lynx ÀÉ®× %s ¤£¦s¦b.\n" ++"\n" ++ ++#: src/LYMain.c:1714 ++msgid "Warning:" ++msgstr "ĵ§i:" ++ ++#: src/LYMain.c:2266 ++msgid "persistent cookies state will be changed in next session only." ++msgstr "«ùÄòªº cookie ¥u·|¦A¤U¤@­Ó¤u§@¶¥¬q³Q§ïÅÜ." ++ ++#: src/LYMain.c:2545 ++#, c-format ++msgid "Lynx: ignoring unrecognized charset=%s\n" ++msgstr "Lynx: ©¿²¤¤£©úªº¦r¤¸¶° %s\n" ++ ++#: src/LYMain.c:3031 ++#, c-format ++msgid "" ++"\n" ++"%s Version %s (%.*s)\n" ++msgstr "" ++"\n" ++"%s ª©¥» %s (%.*s)\n" ++ ++#: src/LYMain.c:3043 ++#, c-format ++msgid "Built on %s %s %s\n" ++msgstr "«Ø¥ß©ó %s %s %s\n" ++ ++#: src/LYMain.c:3047 ++msgid "" ++"Copyrights held by the University of Kansas, CERN, and other contributors.\n" ++msgstr "" ++"Copyrights held by the University of Kansas, CERN, and other contributors.\n" ++ ++#: src/LYMain.c:3049 ++msgid "Distributed under the GNU General Public License.\n" ++msgstr "Distributed under the GNU General Public License.\n" ++ ++#: src/LYMain.c:3051 ++msgid "" ++"See http://lynx.browser.org/ and the online help for more information.\n" ++"\n" ++msgstr "" ++"°Ñ·Ó http://lynx.browser.org/ »P½u¤W»¡©ú¥H¨ú±o§ó¦h¸ê°T.\n" ++"\n" ++ ++#: src/LYMain.c:3728 ++#, c-format ++msgid "USAGE: %s [options] [file]\n" ++msgstr "¥Îªk: %s [¿ï¶µ] [ÀÉ®×]\n" ++ ++#: src/LYMain.c:3729 ++msgid "Options are:\n" ++msgstr "¿ï¶µ¬°:\n" ++ ++#: src/LYMain.c:3966 ++#, c-format ++msgid "%s: Invalid Option: %s\n" ++msgstr "%s ¿ù»~ªº¿ï¶µ: %s\n" ++ ++#: src/LYMainLoop.c:463 ++#, c-format ++msgid "Internal error: Invalid mouse link %d!" ++msgstr "¤º³¡¿ù»~: ¿ù»~ªº·Æ¹«³sµ² %d!" ++ ++#. ++#. * Make a name for this new URL. ++#. ++#: src/LYMainLoop.c:618 ++msgid "A URL specified by the user" ++msgstr "¨Ï¥ÎªÌ«ü©wªº URL" ++ ++#: src/LYMainLoop.c:1106 ++msgid "Enctype multipart/form-data not yet supported! Cannot submit." ++msgstr "½s½X¤è¦¡ ¦h­«¤å¥ó/ªí³æ¸ê®Æ ©|¥¼¤ä´©! µLªk°e¥X." ++ ++#. ++#. * Make a name for this help file. ++#. ++#: src/LYMainLoop.c:3053 ++msgid "Help Screen" ++msgstr "»¡©úµe­±" ++ ++#: src/LYMainLoop.c:3194 ++msgid "System Index" ++msgstr "¨t²Î¯Á¤Þ" ++ ++#: src/LYMainLoop.c:3580 src/LYMainLoop.c:5133 ++msgid "Entry into main screen" ++msgstr "¶i¤J¥Dµe­±" ++ ++#: src/LYMainLoop.c:4155 ++msgid "charset for this document specified explicitly, sorry..." ++msgstr "³o­Ó¤å¥óªº¦r¤¸¶°«ü©w¨Ã¤£²M·¡, ©êºp..." ++ ++#: src/LYMainLoop.c:6085 ++msgid "Reparsing document under current settings..." ++msgstr "¥H¥Ø«eªº³]©w­×¸É¤å¥ó...." ++ ++#: src/LYMainLoop.c:6373 src/LYMainLoop.c:6377 ++#, c-format ++msgid "Fatal error - could not open output file %s\n" ++msgstr "­P©R¿ù»~ - µLªk¶}±Ò¿é¥XÀÉ®× %s\n" ++ ++#: src/LYMainLoop.c:7419 src/LYMainLoop.c:7600 ++msgid "-index-" ++msgstr "-¯Á¤Þ-" ++ ++#: src/LYMainLoop.c:7461 ++msgid "Inactive text input, activate to edit (e.g., press ENTER)" ++msgstr "°±¥Î¤å¦r¿é¤J, ±Ò°Ê¥H½s¿è (¨Ò¦p«ö¤U )" ++ ++#: src/LYMainLoop.c:7537 ++msgid "lynx: Can't access startfile" ++msgstr "lynx: µLªk¦s¨ú°_©lÀÉ" ++ ++#: src/LYMainLoop.c:7550 ++msgid "lynx: Start file could not be found or is not text/html or text/plain" ++msgstr "lynx: §ä¤£¨ì°_©lÀɩΰ_©lÀɤ£¬O HTML ¤å¦rÀɩί¤å¦rÀÉ" ++ ++#: src/LYMainLoop.c:7551 ++msgid " Exiting..." ++msgstr " Â÷¶}¤¤..." ++ ++#: src/LYMainLoop.c:7594 ++msgid "-more-" ++msgstr "-§ó¦h-" ++ ++#. Enable scrolling. ++#: src/LYNews.c:203 ++msgid "You will be posting to:" ++msgstr "±z±N·|³Q±i¶K¨ì:" ++ ++#. ++#. * Get the mail address for the From header, ++#. * offering personal_mail_address as default. ++#. ++#: src/LYNews.c:212 ++msgid "" ++"\n" ++"\n" ++" Please provide your mail address for the From: header\n" ++msgstr "" ++"\n" ++"\n" ++" ½Ð´£¨Ñ±zªº¶l¥ó¦ì¸m¥H©ñ¸m©ó'±H¥ó¤H'¼ÐÀY\n" ++ ++#. ++#. * Get the Subject header, offering the current ++#. * document's title as the default if this is a ++#. * followup rather than a new post. - FM ++#. ++#: src/LYNews.c:230 ++msgid "" ++"\n" ++"\n" ++" Please provide or edit the Subject: header\n" ++msgstr "" ++"\n" ++"\n" ++" ½Ð´£¨Ñ©Î½s¿è'¥DÃD'¼ÐÀY\n" ++ ++#: src/LYNews.c:322 ++msgid "" ++"\n" ++"\n" ++" Please provide or edit the Organization: header\n" ++msgstr "" ++"\n" ++"\n" ++" ½Ð´£¨Ñ©Î½s¿è'²Õ´'¼ÐÀY\n" ++ ++#. ++#. * Use the built in line editior. ++#. ++#: src/LYNews.c:395 ++msgid "" ++"\n" ++"\n" ++" Please enter your message below." ++msgstr "" ++"\n" ++"\n" ++" ½Ð¦b¤U­±¿é¤J±zªº°T®§." ++ ++#: src/LYNews.c:441 ++msgid "Message has no original text!" ++msgstr "°T®§¨S¦³­ì©l¤å¦r!" ++ ++#: src/LYOptions.c:702 ++msgid "review/edit B)ookmarks files" ++msgstr "Àˬd/½s¿è B) ®ÑÅÒ ÀÉ®×" ++ ++#: src/LYOptions.c:704 ++msgid "B)ookmark file: " ++msgstr "B) ®ÑÅÒ ÀÉ®×: " ++ ++#: src/LYOptions.c:2390 ++msgid "Left mouse button or return to select, arrow keys to scroll." ++msgstr "¨Ï¥Î·Æ¹«¥ªÁä©Î ¥H¿ï¾Ü, ¤è¦VÁä¥H±²°Ê." ++ ++#: src/LYOptions.c:3592 src/LYOptions.c:3616 ++#, c-format ++msgid "Use %s to invoke the Options menu!" ++msgstr "¨Ï¥Î %s ¥H¶i¤J¿ï¶µ¥Ø¿ý!" ++ ++#: src/LYOptions.c:4224 ++msgid "General Preferences" ++msgstr "¤@¯ë°¾¦n³]©w" ++ ++#. *************************************************************** ++#. User Mode: SELECT ++#: src/LYOptions.c:4228 ++msgid "User mode" ++msgstr "¨Ï¥ÎªÌ¼Ò¦¡" ++ ++#. Editor: INPUT ++#: src/LYOptions.c:4234 ++msgid "Editor" ++msgstr "½s¿è¾¹" ++ ++#. Search Type: SELECT ++#: src/LYOptions.c:4239 ++msgid "Type of Search" ++msgstr "·j´MÃþ«¬" ++ ++#. Cookies: SELECT ++#. @@@ This is inconsistent - LYAcceptAllCookies gets saved to RC file ++#. but LYSetCookies doesn't! ++#: src/LYOptions.c:4247 ++msgid "Cookies" ++msgstr "Cookies" ++ ++#: src/LYOptions.c:4261 ++msgid "Keyboard Input" ++msgstr "Áä½L¿é¤J" ++ ++#. *************************************************************** ++#. Keypad Mode: SELECT ++#: src/LYOptions.c:4265 ++msgid "Keypad mode" ++msgstr "¼Æ¦r½L¼Ò¦¡" ++ ++#. Emacs keys: ON/OFF ++#: src/LYOptions.c:4271 ++msgid "Emacs keys" ++msgstr "Emacs «öÁä" ++ ++#. VI Keys: ON/OFF ++#: src/LYOptions.c:4277 ++msgid "VI keys" ++msgstr "VI «öÁä" ++ ++#. ++#. * Display and Character Set ++#. ++#: src/LYOptions.c:4309 ++msgid "Display and Character Set" ++msgstr "Åã¥Ü»P¦r¤¸¶°" ++ ++#. *************************************************************** ++#. Display Character Set: SELECT ++#: src/LYOptions.c:4313 ++msgid "Display character set" ++msgstr "Åã¥Ü¦r¤¸¶°" ++ ++#: src/LYOptions.c:4343 ++msgid "Assumed document character set" ++msgstr "³]©w¤å¥ó¦r¤¸¶°" ++ ++#. ++#. * Since CJK people hardly mixed with other world ++#. * we split the header to make it more readable: ++#. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others. ++#. ++#: src/LYOptions.c:4363 ++msgid "CJK mode" ++msgstr "CJK ¼Ò¦¡" ++ ++#: src/LYOptions.c:4365 ++msgid "Raw 8-bit" ++msgstr "­ì¥Í 8 ¦ì¤¸" ++ ++#. X Display: INPUT ++#: src/LYOptions.c:4373 ++msgid "X Display" ++msgstr "X Åã¥Ü" ++ ++#. ++#. * Document Appearance ++#. ++#: src/LYOptions.c:4379 ++msgid "Document Appearance" ++msgstr "¤å¥ó¥~Æ[" ++ ++#: src/LYOptions.c:4385 ++msgid "Show color" ++msgstr "Åã¥ÜÃC¦â" ++ ++#. Show cursor: ON/OFF ++#: src/LYOptions.c:4409 ++msgid "Show cursor" ++msgstr "Åã¥Ü´å¼Ð" ++ ++#. Select Popups: ON/OFF ++#: src/LYOptions.c:4415 ++msgid "Popups for select fields" ++msgstr "¸õ¥X¿ï¾ÜÄæ¦ì" ++ ++#. HTML error recovery: SELECT ++#: src/LYOptions.c:4422 ++msgid "HTML error recovery" ++msgstr "HTML ¿ù»~¦^´_" ++ ++#. Show Images: SELECT ++#: src/LYOptions.c:4429 ++msgid "Show images" ++msgstr "Åã¥Ü¼v¹³" ++ ++#. Verbose Images: ON/OFF ++#: src/LYOptions.c:4443 ++msgid "Verbose images" ++msgstr "ªí¹F¼v¹³¤è¦¡" ++ ++#. ++#. * Headers Transferred to Remote Servers ++#. ++#: src/LYOptions.c:4451 ++msgid "Headers Transferred to Remote Servers" ++msgstr "¶Ç¿é¨ì»·ºÝ¦øªA¾¹ªº¼ÐÀY" ++ ++#. *************************************************************** ++#. Mail Address: INPUT ++#: src/LYOptions.c:4455 ++msgid "Personal mail address" ++msgstr "­Ó¤H¶l¥ó¦ì§}" ++ ++#. Preferred Document Character Set: INPUT ++#: src/LYOptions.c:4460 ++msgid "Preferred document character set" ++msgstr "Àu¥ýªº¤å¥ó¦r¤¸¶°" ++ ++#. Preferred Document Language: INPUT ++#: src/LYOptions.c:4465 ++msgid "Preferred document language" ++msgstr "Àu¥ýªº¤å¥ó»y¨¥" ++ ++#: src/LYOptions.c:4471 ++msgid "User-Agent header" ++msgstr "¨Ï¥ÎªÌ¥N²z¤H¼ÐÀY" ++ ++#. ++#. * Listing and Accessing Files ++#. ++#: src/LYOptions.c:4479 ++msgid "Listing and Accessing Files" ++msgstr "¦C¥X¤¤»P¦s¨ú¤¤ªºÀÉ®×" ++ ++#. *************************************************************** ++#. FTP sort: SELECT ++#: src/LYOptions.c:4483 ++msgid "FTP sort criteria" ++msgstr "FTP ±Æ¦C°ò·Ç" ++ ++#. Local Directory Sort: SELECT ++#: src/LYOptions.c:4490 ++msgid "Local directory sort criteria" ++msgstr "¥»¦aºÝ¸ô®|±Æ¦C°ò·Ç" ++ ++#: src/LYOptions.c:4498 ++msgid "Show dot files" ++msgstr "Åã©l¥H'.'¶}ÀYªºÀÉ®×" ++ ++#: src/LYOptions.c:4506 ++msgid "Execution links" ++msgstr "°õ¦æ³sµ²" ++ ++#. ++#. * Special Files and Screens ++#. ++#: src/LYOptions.c:4527 ++msgid "Special Files and Screens" ++msgstr "«ü©wÀÉ®×»Pµe­±" ++ ++#: src/LYOptions.c:4532 ++msgid "Multi-bookmarks" ++msgstr "¦h­«®ÑÅÒ" ++ ++#: src/LYOptions.c:4548 ++msgid "Review/edit Bookmarks files" ++msgstr "Àˬd/½s¿è ®ÑÅÒÀÉ®×" ++ ++#: src/LYOptions.c:4550 ++msgid "Goto multi-bookmark menu" ++msgstr "²¾¨ì¦h­«®ÑÅҥؿý" ++ ++#: src/LYOptions.c:4552 ++msgid "Bookmarks file" ++msgstr "®ÑÅÒÀÉ®×" ++ ++#. Visited Pages: SELECT ++#: src/LYOptions.c:4558 ++msgid "Visited Pages" ++msgstr "À˵ø¹Lªººô­¶" ++ ++#: src/LYPrint.c:789 ++msgid "Sending" ++msgstr "°e¥X¤¤" ++ ++#: src/LYPrint.c:970 ++msgid " Print job complete.\n" ++msgstr " ¦C¦L¤u§@§¹²¦.\n" ++ ++#: src/LYPrint.c:1307 ++msgid "Document:" ++msgstr "¤å¥ó:" ++ ++#: src/LYPrint.c:1308 ++msgid "Number of lines:" ++msgstr "¦æ¼Æ:" ++ ++#: src/LYPrint.c:1309 ++msgid "Number of pages:" ++msgstr "­¶¼Æ:" ++ ++#: src/LYPrint.c:1310 ++msgid "pages" ++msgstr "­¶" ++ ++#: src/LYPrint.c:1310 ++msgid "page" ++msgstr "­¶" ++ ++#: src/LYPrint.c:1311 ++msgid "(approximately)" ++msgstr "(¦ô­p­È)" ++ ++#: src/LYPrint.c:1316 ++msgid "Some print functions have been disabled!" ++msgstr "³¡¤Àªº¦C¦L¥\\¯à³QÃö³¬!" ++ ++#: src/LYPrint.c:1320 ++msgid "Standard print options:" ++msgstr "¼Ð·Ç¦C¦L¿ï¶µ:" ++ ++#: src/LYPrint.c:1321 ++msgid "Print options:" ++msgstr "¦C¦L¿ï¶µ:" ++ ++#: src/LYPrint.c:1327 ++msgid "Save to a local file" ++msgstr "Àx¦s¨ì¥»¦aÀÉ®×" ++ ++#: src/LYPrint.c:1329 ++msgid "Save to disk disabled" ++msgstr "Àx¦s¨ìºÏºÐ³QÃö³¬" ++ ++#: src/LYPrint.c:1335 ++msgid "Mail the file" ++msgstr "±H¥X¦¹ÀÉ®×" ++ ++#: src/LYPrint.c:1341 ++msgid "Print to the screen" ++msgstr "¦L¨ìµe­±" ++ ++#: src/LYPrint.c:1345 ++msgid "Print out on a printer attached to your vt100 terminal" ++msgstr "¦L¨ì¦Lªí¾÷¨Ãªþ¥[¨ì±zªº vt100 ²×ºÝ¾÷" ++ ++#: src/LYReadCFG.c:399 ++msgid "" ++"Syntax Error parsing COLOR in configuration file:\n" ++"The line must be of the form:\n" ++"COLOR:INTEGER:FOREGROUND:BACKGROUND\n" ++"\n" ++"Here FOREGROUND and BACKGROUND must be one of:\n" ++"The special strings 'nocolor' or 'default', or\n" ++msgstr "" ++"²ÕºAÀɤ¤ªºÃC¦â»yªk¤ÀªR¿ù»~:\n" ++"¨C¤@¦æ¥²¶·¬O¤U­±ªº§Î¦¡:\n" ++"ÃC¦â:¾ã¼Æ:«e´º:­I´º\n" ++"\n" ++"«e´º»P­I´º¥²¶·¬O¤U¦C¤§¤@:\n" ++"'nocolor' ©Î 'default', ©Î\n" ++ ++#: src/LYReadCFG.c:412 ++msgid "Offending line:" ++msgstr "¹H¤Ïªº¦æ¸¹:" ++ ++#: src/LYReadCFG.c:741 ++#, c-format ++msgid "key remapping of %s to %s for %s failed\n" ++msgstr "«öÁä %s ­«¹ïÀ³¦¨ %s µ¹ %s ¥¢±Ñ\n" ++ ++#: src/LYReadCFG.c:748 ++#, c-format ++msgid "key remapping of %s to %s failed\n" ++msgstr "«öÁä %s ­«¹ïÀ³¦¨ %s ¥¢±Ñ\n" ++ ++#: src/LYReadCFG.c:769 ++#, c-format ++msgid "invalid line-editor selection %s for key %s, selecting all\n" ++msgstr "¿ù»~ªº¦æ½s¿è¿ï¾Ü %s µ¹«öÁä %s, ¿ï¾Ü¥þ³¡\n" ++ ++#: src/LYReadCFG.c:796 src/LYReadCFG.c:809 ++#, c-format ++msgid "" ++"setting of line-editor binding for key %s (0x%x) to 0x%x for %s failed\n" ++msgstr "³]©w¦æ½s¿èÁpôµ¹«öÁä %s (0x%x) ¦¨ 0x%x µ¹ %s ¥¢±Ñ\n" ++ ++#: src/LYReadCFG.c:814 ++#, c-format ++msgid "setting of line-editor binding for key %s (0x%x) for %s failed\n" ++msgstr "³]©w¦æ½s¿è³sµ²µ¹«öÁä %s (0x%x) µ¹ %s ¥¢±Ñ\n" ++ ++#: src/LYReadCFG.c:919 ++#, c-format ++msgid "Lynx: cannot start, CERN rules file %s is not available\n" ++msgstr "Lynx: µLªk±Ò°Ê, CERN ³W«hÀÉ®× %s ¤£¦s¦b\n" ++ ++#: src/LYReadCFG.c:921 ++msgid "(no name)" ++msgstr "(µL¦WºÙ)" ++ ++#: src/LYReadCFG.c:1693 ++#, c-format ++msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n" ++msgstr "¦h©ó %d ­Ó lynx.cfg ³Q¤Þ¤J -- ¥i¯à¬O¤@­Ó°j°é?!?\n" ++ ++#: src/LYReadCFG.c:1695 ++#, c-format ++msgid "Last attempted include was '%s',\n" ++msgstr "³Ì«á³Q¤Þ¤Jªº¬O '%s',\n" ++ ++#: src/LYReadCFG.c:1696 ++#, c-format ++msgid "included from '%s'.\n" ++msgstr "±q '%s' ¤Þ¤J.\n" ++ ++#: src/LYReadCFG.c:2197 src/LYReadCFG.c:2210 src/LYReadCFG.c:2246 ++msgid "The following is read from your lynx.cfg file." ++msgstr "¤U­±¬O±q±zªº lynx.cfg ÀÉ®×Ū¥Xªº." ++ ++#: src/LYReadCFG.c:2198 src/LYReadCFG.c:2211 ++msgid "Please read the distribution" ++msgstr "½Ð¾\\Ū³o­Ó distribution" ++ ++#: src/LYReadCFG.c:2204 src/LYReadCFG.c:2214 ++msgid "for more comments." ++msgstr "»P§ó¦h«Øij." ++ ++#: src/LYReadCFG.c:2228 ++msgid "RELOAD THE CHANGES" ++msgstr "­«·s¸ü¤JÅܧó" ++ ++#: src/LYReadCFG.c:2237 ++msgid "Your primary configuration" ++msgstr "±zªº¥D­n²ÕºA" ++ ++#: src/LYShowInfo.c:98 ++msgid "Directory that you are currently viewing" ++msgstr "±z¥¿À˵øªº¸ô®|" ++ ++#: src/LYShowInfo.c:101 ++msgid "Name:" ++msgstr "¦WºÙ:" ++ ++#: src/LYShowInfo.c:104 ++msgid "URL:" ++msgstr "URL:" ++ ++#: src/LYShowInfo.c:115 ++msgid "Directory that you have currently selected" ++msgstr "±z¥Ø«e¿ï¾Üªº¸ô®|" ++ ++#: src/LYShowInfo.c:118 ++msgid "File that you have currently selected" ++msgstr "±z¥Ø«e¿ï¾ÜªºÀÉ®×" ++ ++#: src/LYShowInfo.c:122 ++msgid "Symbolic link that you have currently selected" ++msgstr "±z¥Ø«e¿ï¾Üªº²Å¸¹³sµ²" ++ ++#: src/LYShowInfo.c:126 ++msgid "Item that you have currently selected" ++msgstr "±z¥Ø«e¿ï¾Üªº¶µ¥Ø" ++ ++#: src/LYShowInfo.c:128 ++msgid "Full name:" ++msgstr "¥þ¦W:" ++ ++#: src/LYShowInfo.c:137 ++msgid "Unable to follow link" ++msgstr "µLªk¸òÀH³sµ²" ++ ++#: src/LYShowInfo.c:139 ++msgid "Points to file:" ++msgstr "«ü¦V¨ìÀÉ®×:" ++ ++#: src/LYShowInfo.c:144 ++msgid "Name of owner:" ++msgstr "¾Ö¦³ªÌ:" ++ ++#: src/LYShowInfo.c:147 ++msgid "Group name:" ++msgstr "¾Ö¦³¸s²Õ:" ++ ++#: src/LYShowInfo.c:150 ++msgid "File size:" ++msgstr "Àɮפj¤p:" ++ ++#: src/LYShowInfo.c:156 ++msgid "Creation date:" ++msgstr "«Ø¥ß®É¶¡:" ++ ++#: src/LYShowInfo.c:159 ++msgid "Last modified:" ++msgstr "³Ì«á­×§ï®É¶¡:" ++ ++#: src/LYShowInfo.c:162 ++msgid "Last accessed:" ++msgstr "³Ì«á¦s¨ú®É¶¡:" ++ ++#: src/LYShowInfo.c:164 ++msgid "Access Permissions" ++msgstr "¦s¨úÅv­­" ++ ++#: src/LYShowInfo.c:230 ++msgid "File that you are currently viewing" ++msgstr "±z¥Ø«eÂsÄýªºÀÉ®×" ++ ++#: src/LYShowInfo.c:235 src/LYShowInfo.c:344 ++msgid "Linkname:" ++msgstr "³sµ²¦WºÙ:" ++ ++#: src/LYShowInfo.c:248 src/LYShowInfo.c:260 ++msgid "Charset:" ++msgstr "¦r¤¸¶°:" ++ ++#: src/LYShowInfo.c:266 ++msgid "Server:" ++msgstr "¦øªA¾¹:" ++ ++#: src/LYShowInfo.c:269 ++msgid "Date:" ++msgstr "¤é´Á:" ++ ++#: src/LYShowInfo.c:272 ++msgid "Last Mod:" ++msgstr "³Ì«á­×§ï¤é´Á:" ++ ++#: src/LYShowInfo.c:278 ++msgid " Expires:" ++msgstr " ¹O´Á:" ++ ++#: src/LYShowInfo.c:282 ++msgid "Cache-Control:" ++msgstr "§Ö¨ú±±¨î:" ++ ++#: src/LYShowInfo.c:286 ++msgid "Content-Length:" ++msgstr "¤º®eªø«×:" ++ ++#: src/LYShowInfo.c:291 ++msgid "Language:" ++msgstr "»y¨¥:" ++ ++#: src/LYShowInfo.c:298 ++msgid "Post Data:" ++msgstr "±i¶K¸ê®Æ:" ++ ++#: src/LYShowInfo.c:300 ++msgid "Post Content Type:" ++msgstr "±i¶K¤º®eÃþ§O:" ++ ++#: src/LYShowInfo.c:309 ++msgid "Owner(s):" ++msgstr "¾Ö¦³ªÌ:" ++ ++#: src/LYShowInfo.c:312 ++msgid "size:" ++msgstr "¤j¤p:" ++ ++#: src/LYShowInfo.c:312 ++msgid "lines" ++msgstr "¦æ¼Æ" ++ ++#: src/LYShowInfo.c:315 ++msgid "mode:" ++msgstr "¼Ò¦¡:" ++ ++#: src/LYShowInfo.c:317 ++msgid "forms mode" ++msgstr "ªí³æ¼Ò¦¡" ++ ++#: src/LYShowInfo.c:319 ++msgid "source" ++msgstr "¨Ó·½" ++ ++#: src/LYShowInfo.c:319 ++msgid "normal" ++msgstr "¤@¯ë" ++ ++#: src/LYShowInfo.c:320 ++msgid ", safe" ++msgstr ", ¦w¥þ" ++ ++#: src/LYShowInfo.c:321 ++msgid ", via internal link" ++msgstr ", ¨Ó¦Û¤º³¡³sµ²" ++ ++#: src/LYShowInfo.c:327 ++msgid ", no-cache" ++msgstr ", ¤£§Ö¨ú" ++ ++#: src/LYShowInfo.c:329 ++msgid ", ISMAP script" ++msgstr ", ISMAP ©R¥O½Z" ++ ++#: src/LYShowInfo.c:331 ++msgid ", bookmark file" ++msgstr ", ®ÑÅÒÀÉ" ++ ++#: src/LYShowInfo.c:340 ++msgid "Link that you currently have selected" ++msgstr "±z¥Ø«e¿ï¾Üªº³sµ²" ++ ++#: src/LYShowInfo.c:353 ++msgid "Method:" ++msgstr "¤èªk:" ++ ++#: src/LYShowInfo.c:358 ++msgid "Enctype:" ++msgstr "½s½X¤è¦¡:" ++ ++#: src/LYShowInfo.c:370 ++msgid "(Form field)" ++msgstr "(ªí³æÄæ¦ì)" ++ ++#: src/LYShowInfo.c:385 ++msgid "No Links on the current page" ++msgstr "³o¤@­¶¨S¦³³sµ²" ++ ++#: src/LYStyle.c:196 ++#, c-format ++msgid "" ++"Syntax Error parsing style in lss file:\n" ++"[%s]\n" ++"The line must be of the form:\n" ++"OBJECT:MONO:COLOR (ie em:bold:brightblue:white)\n" ++"where OBJECT is one of EM,STRONG,B,I,U,BLINK etc.\n" ++"\n" ++msgstr "" ++" lss Àɤ¤ªº»yªk¤ÀªR¿ù»~:\n" ++"[%s]\n" ++"¨C¤@¦æ¥²¶·¬O¤U­±ªº§Î¦¡:\n" ++"ª«¥ó:MONO:COLOR (¨Ò¦p em:bold:brightblue:white)\n" ++"¦¹³Bª«¥ó¥²¶·¬O EM,STRONG,B,I,U,BLINK µ¥¨ä¤¤¤§¤@.\n" ++"\n" ++ ++#: src/LYTraversal.c:107 ++msgid "here is a list of the history stack so that you may rebuild" ++msgstr "³o¨à¬O¾ú¥v°ïÅ|ªº¦Cªí, ©Ò¥H±z¥i¥H­«·s«Ø¥ß" ++ ++#: src/LYUpload.c:79 ++msgid "ERROR! - upload command is misconfigured" ++msgstr "¿ù»~! - ¤W¶Ç«ü¥O²ÕºA¿ù»~" ++ ++#: src/LYUpload.c:101 ++msgid "Illegal redirection \"../\" found! Request ignored." ++msgstr "§ä¨ì¤£¦Xªkªº­«¾É¦V \"../\"! ­n¨D³Q©¿²¤." ++ ++#: src/LYUpload.c:104 ++msgid "Illegal character \"/\" found! Request ignored." ++msgstr "§ä¨ì¤£¦Xªkªº¦r¤¸ \"/\"! ­n¨D³Q©¿²¤." ++ ++#: src/LYUpload.c:107 ++msgid "Illegal redirection using \"~\" found! Request ignored." ++msgstr "§ä¨ì¤£¦Xªkªº­«¾É¦V¨Ï¥Î \"`\"! ­n¨D³Q©¿²¤." ++ ++#: src/LYUpload.c:169 ++msgid "Unable to upload file." ++msgstr "µLªk¤W¶ÇÀÉ®×." ++ ++#: src/LYUpload.c:220 ++msgid "Upload To:" ++msgstr "¤W¶Ç¨ì:" ++ ++#: src/LYUpload.c:221 ++msgid "Upload options:" ++msgstr "¤W¶Ç¿ï¶µ:" ++ ++#: src/LYUtils.c:3052 ++msgid "Unexpected access protocol for this URL scheme." ++msgstr "³o­Ó URL ¨Ï¥Î¤F¥¼¹w´Áªº¦s¨ú¨ó©w." ++ ++#: src/LYUtils.c:4173 ++msgid "No restrictions set.\n" ++msgstr "¨S¦³­­¨î³]©w.\n" ++ ++#: src/LYUtils.c:4176 ++msgid "Restrictions set:\n" ++msgstr "­­¨î³]©w:\n" ++ ++#: src/LYUtils.c:5520 ++msgid "Ignoring invalid HOME" ++msgstr "©¿²¤¿ù»~ªº®a¥Ø¿ý" ++ ++#. ++#. * Header. ++#. ++#: src/LYrcFile.c:608 ++msgid "" ++"Lynx User Defaults File\n" ++"\n" ++"This file contains options saved from the Lynx Options Screen (normally\n" ++"with the '>' key). There is normally no need to edit this file manually,\n" ++"since the defaults here can be controlled from the Options Screen, and the\n" ++"next time options are saved from the Options Screen this file will be\n" ++"completely rewritten. You have been warned...\n" ++"If you are looking for the general configuration file - it is normally\n" ++"called lynx.cfg, and it has different content and a different format.\n" ++"It is not this file.\n" ++msgstr "" ++"Lynx ¨Ï¥ÎªÌ¹w³]ÀÉ\n" ++"\n" ++"³o­ÓÀÉ®×¥]§t¤F Lynx ¿ï¶µ¥Ø¿ýµe­±ÂêÀx¦sªº¿ï¶µ (³q±`¦³ '>' «öÁä.\n" ++"¬JµM³o¨Ç¹w³]­È¬O¥Ñ¿ï¶µµe­±©Ò±±¨î, ±z³q±`¤£»Ý­n¤â°Ê½s¿è³o­ÓÀÉ®×.\n" ++"¦Ó¥B¤U¦¸±z¥Ñ¿ï¶µ¿ï·íÀx¦s¦¹¤@Àɮ׮ɳo­ÓÀÉ®×·|³Q§¹¥þ­«¼g.\n" ++"±z¤w¸g³Qĵ§i¹L¤F...\n" ++"\n" ++"¦pªG±z¬O¦A§ä´M¤@­Ó¤@¯ëªº²ÕºAÀÉ - ³q±`¥s°µ lynx.cfg,\n" ++"¥L¦³¤£¦Pªº¤º®e»P¤£¦Pªº®æ¦¡.\n" ++"µ´¤£¬O³oªºÀÉ®×.\n" ++ ++#. ++#. * File editor ++#. ++#: src/LYrcFile.c:625 ++msgid "" ++"file_editor specifies the editor to be invoked when editing local files\n" ++"or sending mail. If no editor is specified, then file editing is disabled\n" ++"unless it is activated from the command line, and the built-in line editor\n" ++"will be used for sending mail.\n" ++msgstr "" ++"file_editor «ü©w­n¥Î©ó½s¿è¥»¦aºÝÀɮשαH¥X¶l¥ó®É©Ò¥Îªº½s¿è¾¹.\n" ++"¦pªG¨S¦³«ü©w½s¿è¾¹, «hÀÉ®×½s¿è¯à¤O±N³QÃö³¬°£«D¥Ñ©R¥O¦æ±Ò°Ê.\n" ++"¦Ó¥B¤º«Øªº¦æ½s¿è¾¹±N·|³Q¥Î©ó½s¿è¶l¥ó.\n" ++"\n" ++ ++#. ++#. * Default bookmark file. ++#. ++#: src/LYrcFile.c:636 ++msgid "" ++"bookmark_file specifies the name and location of the default bookmark\n" ++"file into which the user can paste links for easy access at a later\n" ++"date.\n" ++msgstr "" ++"bookmark_file «ü©w¹w³]®ÑÅÒÀɮתº¦WºÙ»P¦ì¸m.\n" ++"¦b³o¨à±z¥i¥H©ñ¸m³sµ²¥H«K¤é«á¦s¨ú\n" ++"\n" ++ ++#. ++#. * Multiple (sub)bookmark support settings. ++#. ++#: src/LYrcFile.c:646 ++msgid "" ++"If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n" ++"been defined (see below), then all bookmark operations will first\n" ++"prompt the user to select an active sub-bookmark file. If the default\n" ++"Lynx bookmark_file is defined (see above), it will be used as the\n" ++"default selection. When this option is set to \"advanced\", and the\n" ++"user mode is advanced, the 'v'iew bookmark command will invoke a\n" ++"statusline prompt instead of the menu seen in novice and intermediate\n" ++"user modes. When this option is set to \"standard\", the menu will be\n" ++"presented regardless of user mode.\n" ++msgstr "" ++"¦pªG sub_bookmarks ³QÃö³¬¦¨ \"off\", ¦Ó©w¸q¤F¤@­Ó¦h­«ªº®ÑÅÒÀÉ (¬Ý¤U­±),\n" ++"«h®ÑÅÒªº°Ê§@±N·|¥ý­n¨D¨Ï¥ÎªÌ¿ï¾Ü¤@­Ó¤l®ÑÅÒÀÉ®×.\n" ++"¦pªG¹w³]ªº Lynx ®ÑÅÒÀɤw³Q©w¸q (¬Ý«e­±), ¥L±N¦¨¬°¹w³]ªº¿ï¾Ü.\n" ++"\n" ++"·í³o­Ó¿ï¶µ³]¦¨¶i¶¥ \"adcanced\", ¥B¨Ï¥ÎªÌ¼Ò¦¡¬°¶i¶¥,\n" ++"V) À˵ø®ÑÅÒ «ü¥O±N¥Î¦bª¬ºA¦æ´£¥Ü¦Ó¤£¦p¦P¨ä¥L¼Ò¦¡¯ë¦b¿ï³æ.\n" ++"\n" ++"·í³o­Ó¿ï¶µ³]¦¨¼Ð·Ç \"standard\", ¿ï·í±N¥X²{¦b©Ò¦³¨Ï¥ÎªÌ¼Ò¦¡.\n" ++"\n" ++ ++#. ++#. * Multiple (sub)bookmark definitions and descriptions. ++#. ++#: src/LYrcFile.c:665 ++msgid "" ++"The following allow you to define sub-bookmark files and descriptions.\n" ++"The format is multi_bookmark=,\n" ++"Up to 26 bookmark files (for the English capital letters) are allowed.\n" ++"We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n" ++msgstr "" ++"¤U­±¤¹³\\±z³]©w¤l®ÑÅÒÀÉ®×»P´y­z.\n" ++"®æ¦¡¬O multi_bookmark<¤j¼g¦r¥À>=<ÀɦW>,<´y­z>\n" ++"³Ì¦h¥i¥H©w¸q 26 ­Ó®ÑÅÒÀÉ (­^¤å¤j¼g¦r¥À).\n" ++"§Ú­Ì¥Ñ \"multi_bookmarkB\" ¶}©l, ¦]¬° 'A' ¬O¹w³]ªº (¬Ý«e­±).\n" ++ ++#. ++#. * FTP/file sorting method. ++#. ++#: src/LYrcFile.c:685 ++msgid "" ++"The file_sorting_method specifies which value to sort on when viewing\n" ++"file lists such as FTP directories. The options are:\n" ++" BY_FILENAME -- sorts on the name of the file\n" ++" BY_TYPE -- sorts on the type of the file\n" ++" BY_SIZE -- sorts on the size of the file\n" ++" BY_DATE -- sorts on the date of the file\n" ++msgstr "" ++"file_sorting_method «ü©wÀ˵ø FTP Àɮ׮ɪº±Æ¦C¤è¦¡\n" ++"¿ï¶µ¬°:\n" ++" BY_FILENAME -- ¨Ì¾ÚÀɮצWºÙ\n" ++" BY_TYPE -- ¨Ì¾ÚÀɮ׺ØÃþ\n" ++" BY_SIZE -- ¨Ì¾ÚÀɮפj¤p\n" ++" BY_DATE -- ¨Ì¾ÚÀɮפé´Á\n" ++ ++#. ++#. * Personal mail address. ++#. ++#: src/LYrcFile.c:699 ++msgid "" ++"personal_mail_address specifies your personal mail address. The\n" ++"address will be sent during HTTP file transfers for authorization and\n" ++"logging purposes, and for mailed comments.\n" ++"If you do not want this information given out, set the NO_FROM_HEADER\n" ++"to TRUE in lynx.cfg, or use the -nofrom command line switch. You also\n" ++"could leave this field blank, but then you won't have it included in\n" ++"your mailed comments.\n" ++msgstr "" ++"personal_mail_address «ü©w±z­Ó¤Hªº¶l¥ó¦ì§}.\n" ++"³o­Ó¦ì§}±N·|¦b HTTP Àɮ׶ǿé®É¥Î©ó»{ÃÒ»Pµn¤J.\n" ++"¦P®É¤]¥Î©ó¶l±H·N¨£.\n" ++"¦pªG±z¤£§Æ±æ´£¨Ñ³o­Ó¸ê°T, ½Ð¦b lynx.cfg ¤¤³]©w NO_FROM_HEADER ¬°¯u,\n" ++"©Î¨Ï¥Î -nofrom «ü¥O¦æ¶}Ãö.\n" ++"±z¤]¥i¥H±N³oÄæ¯d¤UªÅ¥Õ, ¦ý±z±N¤£¯à±N¥L¤Þ¤J±zªº¶l¥ó·N¨£¤¤.\n" ++"\n" ++ ++#. ++#. * Searching type. ++#. ++#: src/LYrcFile.c:714 ++msgid "" ++"If case_sensitive_searching is \"on\" then when the user invokes a search\n" ++"using the 's' or '/' keys, the search performed will be case sensitive\n" ++"instead of case INsensitive. The default is usually \"off\".\n" ++msgstr "" ++"¦pªG case_sensitive_searching ³]©w¬° \"on\", ·í±z¥H 's' ©Î '/' ®×¸û·j´M®É,\n" ++"·j´M¤è¦¡±N¬°¤j¤p¼g¤£¦P¦Ó¤£¬O±N¤j¤p¼gµø¬°¬Û¦P.\n" ++"¹w³]­È³q±`¬O \"off\".\n" ++ ++#. ++#. * Character set. ++#. ++#: src/LYrcFile.c:724 ++msgid "" ++"The character_set definition controls the representation of 8 bit\n" ++"characters for your terminal. If 8 bit characters do not show up\n" ++"correctly on your screen you may try changing to a different 8 bit\n" ++"set or using the 7 bit character approximations.\n" ++"Current valid characters sets are:\n" ++msgstr "" ++"character_set ©w¸q±±¨î 8 ¦ì¤¸¦r¤¸¦b±z²×ºÝ¾÷¤WªºÅã¥Ü.\n" ++"¦pªG 8 ¦ì¤¸¦r¤¸¨S¦³¦b±zªºµe­±¤W¥¿½TÅã¥Üªº¸Ü,\n" ++"±z¥i¥H¸ÕµÛ¥Î¤£¦Pªº 8 ¦ì¤¸¦r¶°©Î¥Î 7 ¦ì¤¸¦r¶°¥H±o¨ìªñ¦ü¤å¦r.\n" ++"\n" ++"¥Ø«e¥i¥Îªº¦r¤¸¶°¬°:\n" ++ ++#. ++#. * Preferred language. ++#. ++#: src/LYrcFile.c:739 ++msgid "" ++"preferred_language specifies the language in MIME notation (e.g., en,\n" ++"fr, may be a comma-separated list in decreasing preference)\n" ++"which Lynx will indicate you prefer in requests to http servers.\n" ++"If a file in that language is available, the server will send it.\n" ++"Otherwise, the server will send the file in it's default language.\n" ++msgstr "" ++"preferred_language «ü©w¦b MIME ¼Ð°O¤¤ªº»y¨¥ (¨Ò¦p en, fr\n" ++"¥²¶·­n¥H³r¸¹¤À¹j­°§C³ß¦nµ{«×ªº¦Cªí)\n" ++"Lynx ·|±N±z©Ò°¾¦nªº»y¨¥­n¨D°eµ¹¦øªA¾¹.\n" ++"¦pªG¦³²Å¦X°¾¦nªºÀɮצs¦b, ¦øªA¾¹±N°e¥X¥L.\n" ++"§_«h¦øªA¾¹·|°e¥X¹w³]ªº»y¨¥.\n" ++ ++#. ++#. * Preferred charset. ++#. ++#: src/LYrcFile.c:751 ++msgid "" ++"preferred_charset specifies the character set in MIME notation (e.g.,\n" ++"ISO-8859-2, ISO-8859-5) which Lynx will indicate you prefer in requests\n" ++"to http servers using an Accept-Charset header. The value should NOT\n" ++"include ISO-8859-1 or US-ASCII, since those values are always assumed\n" ++"by default. May be a comma-separated list.\n" ++"If a file in that character set is available, the server will send it.\n" ++"If no Accept-Charset header is present, the default is that any\n" ++"character set is acceptable. If an Accept-Charset header is present,\n" ++"and if the server cannot send a response which is acceptable\n" ++"according to the Accept-Charset header, then the server SHOULD send\n" ++"an error response, though the sending of an unacceptable response\n" ++"is also allowed.\n" ++msgstr "" ++"preferred_charset «ü©w¦b MIME ¼Ð°O¤¤ªº¦r¶° (¨Ò¦p \n" ++"ISO-8859-2, ISO-8859-5, ¨Ã¥H³r¸¹¤À¹j¤§)\n" ++"\n" ++"Lynx ·|±N±zªº°¾¦n¥H Accept-Charset ¼ÐÀY°eµ¹¦øªA¾¹.\n" ++"³o­Ó¼Æ­È¤£À³¸Ó¥]§t ISO-8859-1 ©Î US-ASCII, ¦]¬°³o¬O¤@¯ëªº¹w³]­È\n" ++"\n" ++"¦pªG¦³²Å¦X°¾¦nªºÀɮצs¦b, ¦øªA¾¹±N°e¥X¥¦.\n" ++"¦pªG¨S¦³ Accept-Charset ¼ÐÀY¦s¦b, ¹w³]¬O±µ¨ü¥ô¦ó¦r¶°.\n" ++"¦pªG¦³ Accept-Charset ¼ÐÀY¦s¦b, ¦Ó¦øªA¾¹¨S¦³¬Û®e¦r¶°ªºÀÉ®×¥i°e¥X,\n" ++"«h¦øªA¾¹À³¸Ó·|°e¥X¤@­Ó¿ù»~°T®§.\n" ++"§Y¨Ï°e¥X¤@­ÓµLªk±µ¨üªº¦^À³¤]¬O³Q¤¹³\\ªº.\n" ++"\n" ++"\n" ++ ++#: src/LYrcFile.c:772 ++msgid "" ++"show_color specifies how to set the color mode at startup. A value of\n" ++"\"never\" will force color mode off (treat the terminal as monochrome)\n" ++"at startup even if the terminal appears to be color capable. A value of\n" ++"\"always\" will force color mode on even if the terminal appears to be\n" ++"monochrome, if this is supported by the library used to build lynx.\n" ++"A value of \"default\" will yield the behavior of assuming\n" ++"a monochrome terminal unless color capability is inferred at startup\n" ++"based on the terminal type, or the -color command line switch is used, or\n" ++"the COLORTERM environment variable is set. The default behavior always is\n" ++"used in anonymous accounts or if the \"option_save\" restriction is set.\n" ++"The effect of the saved value can be overridden via\n" ++"the -color and -nocolor command line switches.\n" ++"The mode set at startup can be changed via the \"show color\" option in\n" ++"the 'o'ptions menu. If the option settings are saved, the \"on\" and\n" ++"\"off\" \"show color\" settings will be treated as \"default\".\n" ++msgstr "" ++"show_color «ü©w¦b°_©l®É¦p¦ó³]©wÃC¦â¼Ò¦¡.\n" ++"\"never\" ³o­Ó¼Æ­È±N·|±j¨îÃö³¬ÃC¦â¼Ò¦¡ (§â²×ºÝ¾÷·í§@¶Â¥Õªº),\n" ++"§Y¨Ï²×ºÝ¾÷¬Ý¨Ó¥i¥H¨Ï¥Î±m¦â.\n" ++"\"always\" ³o­Ó¼Æ­È±N·|±j¨î¨Ï¥ÎÃC¦â¼Ò¦¡ (§â²×ºÝ¾÷·í§@±m¦âªº),\n" ++"§Y¨Ï²×ºÝ¾÷¬Ý¨Ó¥i¥H¬O¶Â¥Õªº.\n" ++"\"default\" ±N·|Åý¨B¦¨¶Â¥Õªº°£«D¦b±Ò°Ê®É¨Ì¾Ú²×ºÝ¾÷Ãþ«¬©Î -color ©R¥O¦æ°Ñ¼Æ\n" ++"©Î COLORTERM Àô¹Ò°Ñ¼Æªº©w¸q¥i¥H±À½×¥X±m¦âªº¤ä´©\n" ++"\n" ++"¹w³]ªº¤è¦¡³q±`¬O¨Ï¥Î°Î¦WªÌªº±b¸¹©Î¬O·í \"option_save\" ­­¨îªº³]©w.\n" ++"³o¨Ï±oÀx¦s­È¥i¥H³Q -color »P -nocolor ©R¥O¦C°Ñ¼Æ»\\¼g.\n" ++"\n" ++"±Ò°Ê®Éªº¼Ò¦¡³]©w¥i¥H³Q O) ¿ï¶µ¿ï³æ ¤¤ªº \"Åã¥ÜÃC¦â\" §ïÅÜ.\n" ++"\n" ++"¦pªG³o­Ó¿ï¶µ³QÀx¦s, «h \"on\", \"off\", \"Åã¥ÜÃC¦â\" ³]©w\n" ++"·|³Q·í¦¨ \"default\" ³B²z.\n" ++ ++#. ++#. * VI keys. ++#. ++#: src/LYrcFile.c:798 ++msgid "" ++"If vi_keys is set to \"on\", then the normal VI movement keys:\n" ++" j = down k = up\n" ++" h = left l = right\n" ++"will be enabled. These keys are only lower case.\n" ++"Capital 'H', 'J' and 'K will still activate help, jump shortcuts,\n" ++"and the keymap display, respectively.\n" ++msgstr "" ++"¦pªG vi_keys ³]©w¦¨ \"on\", «h¤@¯ëªº VI ²¾°Ê«öÁä:\n" ++" j = ¤U k = ¤W\n" ++" h = ¥ª l = ¥k\n" ++"±N³Q±Ò°Ê. ³o¨Ç«öÁä¥u¯à¨Ï¥Î¤p¼g¦r¥À.\n" ++"¤j¼gªº 'H', 'J' »P 'K ­Ó§O±N·|±Ò°Ê»¡©ú­¶, ¸õ¨ì±¶®|, »PÅã¥Ü«öÁä¹ïÀ³.\n" ++"\n" ++ ++#. ++#. * EMACS keys. ++#. ++#: src/LYrcFile.c:811 ++msgid "" ++"If emacs_keys is to \"on\" then the normal EMACS movement keys:\n" ++" ^N = down ^P = up\n" ++" ^B = left ^F = right\n" ++"will be enabled.\n" ++msgstr "" ++"¦pªG emacs_keys ³]©w¦¨ \"on\" «h¤@¯ëªº EMACS ²¾°Ê«öÁä:\n" ++" ^N = ¤U ^P = ¤W\n" ++" ^B = ¥ª ^F = ¥k\n" ++"±N³Q±Ò°Ê.\n" ++ ++#. ++#. * Show dot files. ++#. ++#: src/LYrcFile.c:822 ++msgid "" ++"show_dotfiles specifies that the directory listing should include\n" ++"\"hidden\" (dot) files/directories. If set \"on\", this will be\n" ++"honored only if enabled via userdefs.h and/or lynx.cfg, and not\n" ++"restricted via a command line switch. If display of hidden files\n" ++"is disabled, creation of such files via Lynx also is disabled.\n" ++msgstr "" ++"show_doifiles «ü©w¸ô®|¦Cªí¬O§_Åã¥ÜÁôÂà (ÂI) ÀÉ®×»P¸ô®|.\n" ++"¦pªG³]¦¨ \"on\", °£«D¸g¥Ñ userdefs.h »P/©Î lynx.cfg ¥B¤£³Q©R¥O¦C°Ñ¼Æ\n" ++"Ãö³¬®É¤~¦³§@¥Î.\n" ++"\n" ++"¦pªGÅã¥ÜÁôÂÃÀɪº¯à¤O³QÃö³¬, «h¸g¥Ñ Lynx «Ø¥ßÁôÂÃÀɪº¯à¤O¤]±N³QÃö³¬.\n" ++ ++#. ++#. * Select popups. ++#. ++#: src/LYrcFile.c:834 ++msgid "" ++"select_popups specifies whether the OPTIONs in a SELECT block which\n" ++"lacks a MULTIPLE attribute are presented as a vertical list of radio\n" ++"buttons or via a popup menu. Note that if the MULTIPLE attribute is\n" ++"present in the SELECT start tag, Lynx always will create a vertical list\n" ++"of checkboxes for the OPTIONs. A value of \"on\" will set popup menus\n" ++"as the default while a value of \"off\" will set use of radio boxes.\n" ++"The default can be overridden via the -popup command line toggle.\n" ++msgstr "" ++"select_popups «ü©w¤£½×¬O¦b¿ï¾Ü°Ï¶ô¤¤ªº¿ï¶µ©Î¶ê¶s¦Cªí¤¤ªº¸õ¥X¿ï³æ.\n" ++"\n" ++"ª`·N¦pªG¦h­«ªºÄÝ©Ê¥X²{¦b¿ï¾Ü¼ÐÅÒ¤¤, Lynx ¤¹³\\«Ø¥ß¤@­Ó««ª½ªº¦Cªí.\n" ++"\n" ++"\"on\" ¼Æ­È±N³]©w¸õ¥X¿ï³æ¬°¹w³]­È.\n" ++"\n" ++"³o­Ó¹w³]­È±N³Q -popup ©R¥O¦C°Ñ¼Æ»\\¼g.\n" ++ ++#. ++#. * Show cursor. ++#. ++#: src/LYrcFile.c:848 ++msgid "" ++"show_cursor specifies whether to 'hide' the cursor to the right (and\n" ++"bottom, if possible) of the screen, or to place it to the left of the\n" ++"current link in documents, or current option in select popup windows.\n" ++"Positioning the cursor to the left of the current link or option is\n" ++"helpful for speech or braille interfaces, and when the terminal is\n" ++"one which does not distinguish the current link based on highlighting\n" ++"or color. A value of \"on\" will set positioning to the left as the\n" ++"default while a value of \"off\" will set 'hiding' of the cursor.\n" ++"The default can be overridden via the -show_cursor command line toggle.\n" ++msgstr "" ++"show_cursor «ü©w 'ÁôÂÃ' ´å¼Ð¨ìµe­±ªº¥kÃä (©M¤U­±, ¦pªG¥i¥Hªº¸Ü);\n" ++"©Î©ñ¨ì¤å¥ó¤¤¥Ø«e³sµ²ªº¥ªÃä, ©Î¥Ø«e¦b¸õ¥Xµøµ¡ªº¥Ø«e¿ï¾Ü¦ì¸m.\n" ++"\n" ++"§â´å¼Ð©ñ¦b¥Ø«e³sµ²ªº¥ªÃä¹ï©ó»y­µ©Îª¼¤H¤¶­±¥H¤Î\n" ++"¨S¦³±j½Õ¥Ø«e³sµ²ªºµe­±¬O«Ü¦³¥Îªº.\n" ++"\n" ++"\"on\" ªº¼Æ­È±N·|¹w³]§â´å¼Ð©ñ¦b³sµ²ªº¥ªÃä;\n" ++"¦Ó \"off\" ±N·|§â´å¼ÐÁôÂð_¨Ó.\n" ++"³o­Ó¹w³]­È¥i¥H³Q -show_cursor ©R¥O¦C°Ñ¼Æ»\\¼g.\n" ++ ++#. ++#. * Keypad mode. ++#. ++#: src/LYrcFile.c:864 ++msgid "" ++"If keypad_mode is set to \"NUMBERS_AS_ARROWS\", then the numbers on\n" ++"your keypad when the numlock is on will act as arrow keys:\n" ++" 8 = Up Arrow\n" ++" 4 = Left Arrow 6 = Right Arrow\n" ++" 2 = Down Arrow\n" ++"and the corresponding keyboard numbers will act as arrow keys,\n" ++"regardless of whether numlock is on.\n" ++msgstr "" ++"¦pªG keypad_mode ³]©w¦¨ \"NUMBERS_AS_ARROWS\", «h·í numlock ±Ò°Ê®É,\n" ++"±zªº¼Æ¦r½L±N·|¦³¦p¦P¤è¦VÁ䪺§@¥Î:\n" ++" 8 = ¤W²¾\n" ++" 4 = ¥ª²¾ 6 = ¥k²¾\n" ++" 2 = ¤U²¾\n" ++"¦Ó¥BÁä½L¤W¬Û¦Pªº¼Æ¦r¤]·|¦³¬Û¦Pªº§@¥Î,\n" ++"·í numlock ±Ò°Ê®É¦h¥[¤p¤ß.\n" ++ ++#: src/LYrcFile.c:873 ++msgid "" ++"If keypad_mode is set to \"LINKS_ARE_NUMBERED\", then numbers will\n" ++"appear next to each link and numbers are used to select links.\n" ++msgstr "" ++"¦pªG keypad_mode ³]©w¦¨ \"LINKS_ARE_NUMBERED\",\n" ++"«h¼Æ¦r·|¥X²{¦b¨C­Ó³sµ²ªº«á­±¥Î¥H¿ï¾Ü³sµ².\n" ++ ++#: src/LYrcFile.c:877 ++msgid "" ++"If keypad_mode is set to \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\", then\n" ++"numbers will appear next to each link and visible form input field.\n" ++"Numbers are used to select links, or to move the \"current link\" to a\n" ++"form input field or button. In addition, options in popup menus are\n" ++"indexed so that the user may type an option number to select an option in\n" ++"a popup menu, even if the option isn't visible on the screen. Reference\n" ++"lists and output from the list command also enumerate form inputs.\n" ++msgstr "" ++"¦pªG keypad_mode ³]©w¦¨ \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\", «h\n" ++"¼Æ¦r·|¥X²{¦b¨C­Ó³sµ²ªº«á­±»P©Ò¦³¥i¨£ªº¿é¤JÄæ¦ì.\n" ++"¼Æ¦r¥Î¥H¿ï¾Ü³sµ², ©Î²¾°Ê \"¥Ø«e³sµ²\" ¨ìªí³æ¿é¤JÄæ¦ì©Î«ö¶s.\n" ++"¦Ó¥B¦b¸õ¥X¥Ø¿ýªº¿ï¶µ¤]·|³Q½s¸¹, ±z¥i¥H«ö¤U¿ï¶µ½s¸¹¥H¿ï¾Ü¤@­Ó¦b¥Ø¿ý¤¤ªº¿ï¶µ,\n" ++"§Y¨Ï³o­Ó¿ï¶µ¦b¥Ø«eªºµe­±¤¤¬Ý¤£¨ì.\n" ++"\n" ++"°Ñ·Ó¦Cªí»P±q¦C¥X©R¥Oªº¿é¥X¤]·|³Q½s¸¹.\n" ++ ++#: src/LYrcFile.c:886 ++msgid "" ++"NOTE: Some fixed format documents may look disfigured when\n" ++"\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n" ++"enabled.\n" ++msgstr "" ++"ª`·N: ¦³¨Ç©T©w®æ¦¡ªº¤å¥ó¥i¯à³Q¯}Ãa·í\n" ++"\"LINKS_ARE_NUMBERED\" ©Î \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\"\n" ++"±Ò°Ê®É.\n" ++ ++#. ++#. * Partial display threshold ++#. ++#: src/LYrcFile.c:898 ++msgid "" ++"partial_thres specifies the number of lines Lynx should download and render\n" ++"before we redraw the screen in Partial Display logic\n" ++"e.g., partial_thres=2\n" ++"would have Lynx redraw every 2 lines that it renders\n" ++"partial_thres=-1 would use the entire screensize\n" ++msgstr "" ++"partial_thres «ü©w Lynx ¦b­«·sø»sµe­±«eÀ³¸Ó¤U¸ü¨ÃÅã¥Üªº¦æ¼Æ\n" ++"\n" ++"¨Ò¦p, partial_thres=2\n" ++"Lynx ·|¨C¤G¦æ­«·sø»sµe­±\n" ++"partial_thres=-1 ·|¨Ï¥Î­ì¥ýªºµe­±¤j¤p\n" ++ ++#. ++#. * Line edit mode. ++#. ++#: src/LYrcFile.c:912 ++msgid "" ++"lineedit_mode specifies the key binding used for inputting strings in\n" ++"prompts and forms. If lineedit_mode is set to \"Default Binding\" then\n" ++"the following control characters are used for moving and deleting:\n" ++"\n" ++" Prev Next Enter = Accept input\n" ++" Move char: <- -> ^G = Cancel input\n" ++" Move word: ^P ^N ^U = Erase line\n" ++" Delete char: ^H ^R ^A = Beginning of line\n" ++" Delete word: ^B ^F ^E = End of line\n" ++"\n" ++"Current lineedit modes are:\n" ++msgstr "" ++"lineedit_mode «ü©w¿é¤J¤å¦r¨ìªí³æ©Î´£¥Ü®Éªº±±¨î.\n" ++"¦pªG lineedit_mode ³]©w¦¨ \"Default Binding\" «h\n" ++"¤U­±ªº±±¨î¦r¤¸³Q¥Î©ó²¾°Ê©Î§R°£:\n" ++"\n" ++" ¦V«e ¦V«á ¿é¤J = ±µ¨ü¿é¤J\n" ++" ²¾°Ê¦r¤¸: <- -> ^G = ¨ú®ø¿é¤J\n" ++" ²¾°Ê¤å¦r: ^P ^N ^U = ²M°£¾ã¦æ\n" ++" §R°£¦r¤¸: ^H ^R ^A = ¦æ¶}ÀY\n" ++" §R°£¤å¦r: ^B ^F ^E = ¦æµ²§ô\n" ++"\n" ++"¥Ø«eªº¦æ½s¿è¼Ò¦¡¬°:\n" ++ ++#. ++#. * Directory list style. ++#. ++#: src/LYrcFile.c:941 ++msgid "" ++"dir_list_styles specifies the directory list style under DIRED_SUPPORT\n" ++"(if implemented). The default is \"MIXED_STYLE\", which sorts both\n" ++"files and directories together. \"FILES_FIRST\" lists files first and\n" ++"\"DIRECTORIES_FIRST\" lists directories first.\n" ++msgstr "" ++"dir_list_styles «ü©w¦b DIRED_SUPPORT ¤U¸ô®|¦C¥X¼Ë¦¡ (¦pªG´£¨Ñ).\n" ++"¹w³]­È¬° \"MIXED_STYLE\", ±N§âÀÉ®×»P¸ô®|²V¦b¤@°_±Æ¦C.\n" ++"\"FILES_FIRST\" «h¥ý¦C¥XÀÉ®×\n" ++"¦Ó\"DIRECTORIES_FIRST\" ¥ý¦C¥X¸ô®|.\n" ++ ++#. ++#. * User mode. ++#. ++#: src/LYrcFile.c:954 ++msgid "" ++"user_mode specifies the users level of knowledge with Lynx. The\n" ++"default is \"NOVICE\" which displays two extra lines of help at the\n" ++"bottom of the screen to aid the user in learning the basic Lynx\n" ++"commands. Set user_mode to \"INTERMEDIATE\" to turn off the extra info.\n" ++"Use \"ADVANCED\" to see the URL of the currently selected link at the\n" ++"bottom of the screen.\n" ++msgstr "" ++"user_mode «ü©w¨Ï¥ÎªÌ¹ï Lynx ªº²á©jµ{«×.\n" ++"\n" ++"¹w³]­È \"NOVICE\" ¦bµe­±©³ºÝ¦hÅã¥Ü¤G¦æ¥HÀ°§U¨Ï¥ÎªÌ¾Ç²ß°ò¥»ªº Lynx «ü¥O.\n" ++"³]©w¬° \"INTERMEDIATE\" ¥HÃö³¬ÃB¥~ªº¸ê°T.\n" ++"¨Ï¥Î \"ADVANCED\" ¥H¦bµe­±©³ºÝ¬Ý¨ì¥Ø«e¿ï¾Ü³sµ²ªº URL.\n" ++"\n" ++ ++#. ++#. * Cookie options ++#. ++#: src/LYrcFile.c:968 ++msgid "" ++"accept_all_cookies allows the user to tell Lynx to automatically\n" ++"accept all cookies if desired. The default is \"FALSE\" which will\n" ++"prompt for each cookie. Set accept_all_cookies to \"TRUE\" to accept\n" ++"all cookies.\n" ++msgstr "" ++"accept_all_cookies ¤¹³\\¨Ï¥ÎªÌ³qª¾ Lynx ¦Û°Ê±µ¨ü©Ò¦³ cookie ­n¨D\n" ++"¹w³]­È¬° \"FALSE\" ³o±N·|´£¥Ü©Ò¦³ªº cookie.\n" ++"³]©w accept_all_cookies ¬° \"TRUE\" ¥H±µ¨ü©Ò¦³ cookie.\n" ++"\n" ++ ++#: src/LYrcFile.c:976 ++msgid "" ++"cookie_accept_domains and cookie_reject_domains are comma-delimited\n" ++"lists of domains from which Lynx should automatically accept or reject\n" ++"all cookies. If a domain is specified in both options, rejection will\n" ++"take precedence. The accept_all_cookies parameter will override any\n" ++"settings made here.\n" ++msgstr "" ++"cookie_accept_domains »P cookie_reject_domains ¬O¥H³rÂI¤À¹jªººô°ì¦Cªí.\n" ++"¨Ì¾Ú¦¹¤@¦Cªí, Lynx ¥i¥H¦Û°Ê¨M©w­n±µ¦¬©Î©Úµ´¨Ó¦Û¯S©wºô°ìªº cookie.\n" ++"¦pªGºô°ì¦P®É¥X²{¦b¤G­Ó¦Cªí¤¤, ©Úµ´±N·|Àu¥ý§@¥Î.\n" ++"\n" ++"accept_all_cookies ¿ï¶µ±N·|»\\¼g³oÃ䪺©Ò¦³³]©w.\n" ++ ++#: src/LYrcFile.c:991 ++msgid "" ++"cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n" ++"cookie_query_invalid_domains are comma-delimited lists of which domains\n" ++"should be subjected to varying degrees of validity checking. If a\n" ++"domain is set to strict checking, strict conformance to RFC2109 will\n" ++"be applied. A domain with loose checking will be allowed to set cookies\n" ++"with an invalid path or domain attribute. All domains will default to\n" ++"querying the user for an invalid path or domain.\n" ++msgstr "" ++"cookie_loose_invalid_domains, cookie_strict_invalid_domains, »P\n" ++"cookie_query_invalid_domains ¬O¥H³rÂI¤À¹jªººô°ì¦³®Ä«×¦Cªí.\n" ++"¦pªG¤@­Óºô°ì³Q³]¦¨ÄY®æ (strict) ªºÀˬd, «hÄYÂÔªº RFC2109 ·|³QÀ³¥Î.\n" ++"¦pªG³]©w¦¨ÃP´² (loose) ªºÀˬd, ±N·|¤¹³\\¥L­Ì¨Ï¥Î¿ù»~ªº¸ô®|©Îºô°ìÄÝ©Ê\n" ++"¨Ó³]©w cookie.\n" ++"\n" ++"©Ò¦³ªººô°ì¹w³]³£­n³Q¬d¸ß¥H½T©w¥¿½Tªº¸ê°T.\n" ++ ++#. ++#. * Cookie read file. ++#. ++#: src/LYrcFile.c:1015 ++msgid "" ++"cookie_file specifies the file from which to read persistent cookies.\n" ++"The default is ~/.lynx_cookies.\n" ++msgstr "" ++"cookie_file «ü©wŪ¨ú¤§«e¯d¤Uªº cookie ªº¦a¤è.\n" ++"¹w³]­È¬° ~/.lynx_cookies.\n" ++ ++#. ++#. * Local execution mode - all links. ++#. ++#: src/LYrcFile.c:1029 ++msgid "" ++"If run_all_execution_links is set \"on\" then all local execution links\n" ++"will be executed when they are selected.\n" ++"\n" ++"WARNING - This is potentially VERY dangerous. Since you may view\n" ++" information that is written by unknown and untrusted sources\n" ++" there exists the possibility that Trojan horse links could be\n" ++" written. Trojan horse links could be written to erase files\n" ++" or compromise security. This should only be set to \"on\" if\n" ++" you are viewing trusted source information.\n" ++msgstr "" ++"¦pªG run_all_execution_links ³]©w¦¨ \"on\" «h©Ò¦³¥»¦aºÝªº¥i°õ¦æ³sµ²\n" ++"¦b³Q¿ï¾Ü®É³£·|³Q°õ¦æ.\n" ++"\n" ++" ĵ§i -- ³o¥i¯à·|«D±`¦MÀI.\n" ++" ¦]¬°±z¥i¯à·|ÂsÄý¤@¨Ç¥Ñ¨ä¥L¤H©Î¤£¥i«H¥ô¨Ó·½¼gªº¸ê°T.\n" ++" ¨º¨Ç¦³¥i¯à¬O'¯S¬¥¨Ì¤ì°¨'\n" ++" ¨º¨Ç¥i¯à·|³y¦¨¨t²Îªº¦w¥þ¦M¾÷»P¸ê®Æªº¯}Ãa.\n" ++" ¥u¦³±z¥i¥H«H¥ô©Ò¦³¨Ó·½®É±z¤~¯à³]©w¬° \"on\"\n" ++ ++#. ++#. * Local execution mode - only links in local files. ++#. ++#: src/LYrcFile.c:1045 ++msgid "" ++"If run_execution_links_on_local_files is set \"on\" then all local\n" ++"execution links that are found in LOCAL files will be executed when they\n" ++"are selected. This is different from run_all_execution_links in that\n" ++"only files that reside on the local system will have execution link\n" ++"permissions.\n" ++"\n" ++"WARNING - This is potentially dangerous. Since you may view\n" ++" information that is written by unknown and untrusted sources\n" ++" there exists the possibility that Trojan horse links could be\n" ++" written. Trojan horse links could be written to erase files\n" ++" or compromise security. This should only be set to \"on\" if\n" ++" you are viewing trusted source information.\n" ++msgstr "" ++"¦pªG run_execution_links_on_local_files ³]©w¬° \"on\" «h©Ò¦³¥»¦aºÝ\n" ++"(¨Ã¥B¦s¦b¥»¦a)ªº¥i°õ¦æ³sµ²¦b³Q¿ï¾Ü®É³£·|³Q°õ¦æ.\n" ++"»P run_all_execution_links ¤£¦P³B¦b©ó¥u¦³¦s¦b¥»¦aºÝ¨t²Î¤¤ªºÀÉ®×¥i¥H°õ¦æ.\n" ++"\n" ++"\n" ++" ĵ§i -- ³o¥i¯à·|«D±`¦MÀI.\n" ++" ¦]¬°±z¥i¯à·|ÂsÄý¤@¨Ç¥Ñ¨ä¥L¤H©Î¤£¥i«H¥ô¨Ó·½¼gªº¸ê°T.\n" ++" ¨º¨Ç¦³¥i¯à¬O'¯S¬¥¨Ì¤ì°¨'\n" ++" ¨º¨Ç¥i¯à·|³y¦¨¨t²Îªº¦w¥þ¦M¾÷»P¸ê®Æªº¯}Ãa.\n" ++" ¥u¦³±z¥i¥H«H¥ô©Ò¦³¨Ó·½®É±z¤~¯à³]©w¬° \"on\"\n" ++"\n" ++ ++#: src/LYrcFile.c:1063 ++msgid "" ++"If verbose_images is \"on\", lynx will print the name of the image\n" ++"source file in place of [INLINE], [LINK] or [IMAGE]\n" ++"See also VERBOSE_IMAGES in lynx.cfg\n" ++msgstr "" ++"¦pªG verbose_images ³]©w¦¨ \"on\", lynx ±N·|¦L¥X¼v¹³¨Ó·½Àɪº¦WºÙ.\n" ++"\n" ++"½Ð¦P®É°Ñ·Ó¦b lynx.cfg ¤¤ªº VERBOSE_IMAGES ¿ï¶µ\n" ++ ++#: src/LYrcFile.c:1070 ++msgid "" ++"The visited_links setting controls how Lynx organizes the information\n" ++"in the Visited Links Page.\n" ++msgstr "" ++"visited_links ³]©w±±¨î Lynx ¦p¦ó²Õ´¤ÆÀ˸չL³sµ²­¶ªº¸ê°T\n" ++"\n" ++ ++#~ msgid "Looking up %s." ++#~ msgstr "§ä´M %s ¤¤." ++ ++#~ msgid "Searching type" ++#~ msgstr "·j´MÃþ§O" ++ ++#~ msgid "Document Layout" ++#~ msgstr "¤å¥ó°t¸m" ++ ++#~ msgid "Bookmark Options" ++#~ msgstr "®ÑÅҿﶵ" >Release-Note: >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 Oct 13 13: 9:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sol.cc.u-szeged.hu (sol.cc.u-szeged.hu [160.114.8.24]) by hub.freebsd.org (Postfix) with ESMTP id 2285937B502 for ; Fri, 13 Oct 2000 13:09:16 -0700 (PDT) Received: from petra.hos.u-szeged.hu by sol.cc.u-szeged.hu (8.9.3+Sun/SMI-SVR4) id WAA08754; Fri, 13 Oct 2000 22:09:25 +0200 (MEST) Received: from sziszi by petra.hos.u-szeged.hu with local (Exim 3.12 #1 (Debian)) id 13kB8M-0005kS-00; Fri, 13 Oct 2000 22:08:50 +0200 Date: Fri, 13 Oct 2000 22:08:50 +0200 From: Szilveszter Adam To: Brett Taylor Cc: Leif Neland , freebsd-ports@freebsd.org Subject: Re: Ports won't build on stable Message-ID: <20001013220850.H17168@petra.hos.u-szeged.hu> References: <20001013200730.B17168@petra.hos.u-szeged.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0.1i In-Reply-To: ; from brett@peloton.runet.edu on Fri, Oct 13, 2000 at 03:01:25PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 13, 2000 at 03:01:25PM -0400, Brett Taylor wrote: > Hi > > (this belongs on -ports, not -stable, so I've redirected) OK. > The ports tree works but.... CVS will not touch things it didn't create > so if you originally unpacked the tarball'ed ports tree, CVS won't be able > to remove the pkg and patches directories. If you remove these your ports > will build again. Yes, this might be a problem. But we do not know if the ports tree in question has been updated by cvs or cvsup. I did not think of cvs since I do not use it for this purpose. Thanks for pointing this out! > cd /usr/ports && rm -rf */*/pkg/ && rm -rf */*/patches/ > > I believe this is the problem anyway. If this doesn't work, let us know. > > > The problem is, the ports infrastructure itself needs updating. Leave > > the category ports-base in in any case, when you cvsup next time. > > I don't know if this will help - I have ports-all (which gets ports-base) > and had the same problem. I had ports-all in my ports-supfile and everything was updated properly with cvsup. I saw lots of "Deleted" messages on the day I first cvsupped after the change, but also the basic infrastructure was changed quite a lot in those days, which may be unrelated. Ports work as expected here. -- Regards: Szilveszter ADAM Szeged University Szeged Hungary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:30:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89BD637B66E for ; Fri, 13 Oct 2000 13:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA62890; Fri, 13 Oct 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id B91C737B66D for ; Fri, 13 Oct 2000 13:27:13 -0700 (PDT) Received: from taygeta.dbai.tuwien.ac.at (taygeta [128.130.111.77]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id WAA23801; Fri, 13 Oct 2000 22:27:10 +0200 (MET DST) Received: (from pfeifer@localhost) by taygeta.dbai.tuwien.ac.at (8.9.3/8.9.3) id WAA56675; Fri, 13 Oct 2000 22:27:11 +0200 (CEST) (envelope-from pfeifer) Message-Id: <200010132027.WAA56675@taygeta.dbai.tuwien.ac.at> Date: Fri, 13 Oct 2000 22:27:11 +0200 (CEST) From: pfeifer@dbai.tuwien.ac.at (Gerald Pfeifer) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21961: Update the Wine port to 2000.10.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21961 >Category: ports >Synopsis: Update the Wine port to 2000.10.02 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 13 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gerald Pfeifer >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: Tested on FreeBSD 4.1-RELEASE i386. >Description: This updates the Wine port to 2000.10.02. Thanks a lot to Ulrich Weigand who debugged a problem with the (hacked) version of GCC 2.95.2 that is part of 4-STABLE. Without his support files/patch-ge and thus this update of the port would not exist! This update might also fix existing problems with this port on -CURRENT. >How-To-Repeat: n/a >Fix: Install the patch set below. (I'm the current maintainer of this port.) Index: Makefile =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/Makefile,v retrieving revision 1.94 diff -u -3 -p -r1.94 Makefile --- Makefile 2000/10/07 21:56:27 1.94 +++ Makefile 2000/10/13 20:10:13 @@ -7,7 +7,7 @@ # PORTNAME= wine -PORTVERSION= 2000.08.21 +PORTVERSION= 2000.10.02 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= ALPHA/wine/development @@ -89,7 +89,8 @@ do-install: ${WRKSRC}/programs/regapi/regRestorer.pl \ ${PREFIX}/lib/wine/reg ${INSTALL_DATA} ${FILESDIR}/README.patch \ - ${FILESDIR}/install-patch-3.3-sys-sigtrap \ + ${PREFIX}/lib/wine + ${INSTALL_DATA} ${FILESDIR}/install-patch-3.3-sys-sigtrap \ ${PREFIX}/lib/wine/patch-3.3-sys-sigtrap ${INSTALL_DATA} ${WRKSRC}/winedefault.reg ${PREFIX}/lib/wine ${ECHO} Index: pkg-plist =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/pkg-plist,v retrieving revision 1.13 diff -u -3 -p -r1.13 pkg-plist --- pkg-plist 2000/09/15 15:57:15 1.13 +++ pkg-plist 2000/10/13 20:05:35 @@ -7,12 +7,14 @@ bin/regSet.sh etc/wine.conf.sample include/wine/basetsd.h include/wine/cderr.h +include/wine/cguid.h include/wine/commctrl.h include/wine/commdlg.h include/wine/compobj.h include/wine/d3d.h include/wine/d3dcaps.h include/wine/d3dtypes.h +include/wine/d3dvec.inl include/wine/dde.h include/wine/ddeml.h include/wine/ddraw.h @@ -53,7 +55,6 @@ include/wine/pshpack1.h include/wine/pshpack2.h include/wine/pshpack4.h include/wine/pshpack8.h -include/wine/queue.h include/wine/ras.h include/wine/regstr.h include/wine/richedit.h @@ -95,7 +96,9 @@ include/wine/winsvc.h include/wine/winuser.h include/wine/winver.h include/wine/wownt32.h +include/wine/wnaspi32.h include/wine/wtypes.h +include/wine/zmouse.h include/wine/wine/exception.h include/wine/wine/icmpapi.h include/wine/wine/ipexport.h @@ -132,11 +135,7 @@ include/wine/wine/obj_shellfolder.h include/wine/wine/obj_shelllink.h include/wine/wine/obj_shellview.h include/wine/wine/obj_storage.h -include/wine/wine/port.h -include/wine/wine/undocshell.h include/wine/wine/unicode.h -include/wine/wine/w32skrnl.h -include/wine/wine/winestring.h lib/wine/README.patch lib/wine/patch-3.3-sys-sigtrap lib/wine/winedefault.reg --- /dev/null Fri Oct 13 22:10:32 2000 +++ checksum Fri Oct 13 20:48:40 2000 @@ -0,0 +1 @@ +MD5 (Wine-20001002.tar.gz) = 9866f93a735c3df7a470e91d911e04a0 --- /dev/null Fri Oct 13 22:10:32 2000 +++ files/patch-ge Fri Oct 13 20:38:12 2000 @@ -0,0 +1,24 @@ +Index: dlls/Makedll.rules.in +=================================================================== +RCS file: /home/wine/wine/dlls/Makedll.rules.in,v +retrieving revision 1.6 +diff -c -3 -p -r1.6 Makedll.rules.in +*** Makedll.rules.in 2000/08/03 00:04:24 1.6 +--- Makedll.rules.in 2000/10/13 18:30:44 +*************** all: lib$(MODULE).$(LIBEXT) $(ALTNAMES:% +*** 25,31 **** + # Rules for .so files + + lib$(MODULE).so.$(SOVERSION): $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in +! $(LDSHARED) $(OBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-l%) $(EXTRALIBS) + + $(ALLNAMES): lib$(MODULE).so.$(SOVERSION) + $(RM) $@ && $(LN_S) lib$(MODULE).so.$(SOVERSION) $@ +--- 25,31 ---- + # Rules for .so files + + lib$(MODULE).so.$(SOVERSION): $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in +! $(LDSHARED) $(OBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-l%) $(EXTRALIBS) -lgcc_pic + + $(ALLNAMES): lib$(MODULE).so.$(SOVERSION) + $(RM) $@ && $(LN_S) lib$(MODULE).so.$(SOVERSION) $@ >Release-Note: >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 Oct 13 13:30:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id ADB9737B502; Fri, 13 Oct 2000 13:30:11 -0700 (PDT) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id PAA28134; Fri, 13 Oct 2000 15:30:04 -0500 (CDT) (envelope-from jeff-ml@mountin.net) Received: from dial-100.max1.wa.cyberlynk.net(207.227.118.100) by peak.mountin.net via smap (V1.3) id sma028112; Fri Oct 13 15:30:03 2000 Message-Id: <4.3.2.20001013151949.00b01ea0@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Fri, 13 Oct 2000 15:29:55 -0500 To: Bill Fumerola , "flaggaccio@libero.it" From: "Jeffrey J. Mountin" Subject: Re: Apache/PHP ports Cc: stable@FreeBSD.ORG, ports@FreeBSD.ORG In-Reply-To: <20001013043331.P37870@jade.chc-chimes.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org CC'ing ports where this (and others) should be... At 04:33 AM 10/13/00 -0400, Bill Fumerola wrote: >On Fri, Oct 13, 2000 at 10:33:22AM +0200, flaggaccio@libero.it wrote: > > > > The ports system doesn't use symlinks. > > > > So why don't delete the old one? > >The files are gone, the directory structure probably remains because of >a README.html file or extra stuff left over. I use cvs and not cvsup so >I'm not really familiar with what cvsup does with dead directories. Fairly sure that it will remove them and if not: find /usr/ports -type d -mindepth 3 -name pkg -exec rmdir {} \; find /usr/ports -type d -name patches -exec rmdir {} \; Will safely clean them out. The are 3 ports that have "patches"-like directories left: ./games/flightgear/patches.tools ./security/pgp/patches.non_usa ./security/pgp/patches.usa ./x11-toolkits/xforms/patches.alpha ./x11-toolkits/xforms/patches.i386 Also there are only 39 non-English "pkg" dirs and those are preserved with the "-mindepth 3" part. Jeff Mountin - jeff@mountin.net Systems/Network Administrator FreeBSD - the power to serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:34: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAECE37B502; Fri, 13 Oct 2000 13:34:00 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA64642; Fri, 13 Oct 2000 13:34:00 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:34:00 -0700 (PDT) From: Message-Id: <200010132034.NAA64642@freefall.freebsd.org> To: gmarco@giovannelli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21481: Update port math/abs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port math/abs State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:33:46 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21481 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:34:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B30EF37B66C; Fri, 13 Oct 2000 13:34:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA64790; Fri, 13 Oct 2000 13:34:15 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:34:15 -0700 (PDT) From: Message-Id: <200010132034.NAA64790@freefall.freebsd.org> To: sluggo@unknown.nu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21485: Update: devel/camlp4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: devel/camlp4 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:34:05 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21485 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:34:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AF4C37B673; Fri, 13 Oct 2000 13:34:34 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA64952; Fri, 13 Oct 2000 13:34:34 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:34:34 -0700 (PDT) From: Message-Id: <200010132034.NAA64952@freefall.freebsd.org> To: simonmar@microsoft.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21502: Upgrade ports/lang/ghc to version 4.08.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade ports/lang/ghc to version 4.08.1 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:34:22 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21502 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:34:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DD9437B66D; Fri, 13 Oct 2000 13:34:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA65097; Fri, 13 Oct 2000 13:34:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:34:49 -0700 (PDT) From: Message-Id: <200010132034.NAA65097@freefall.freebsd.org> To: anders@fix.no, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21511: Update port: security/pam-mysql Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: security/pam-mysql State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:34:39 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21511 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:35: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E7F937B66D; Fri, 13 Oct 2000 13:35:01 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA65233; Fri, 13 Oct 2000 13:35:01 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:35:01 -0700 (PDT) From: Message-Id: <200010132035.NAA65233@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21573: Update port: cad/qcad to 1.4.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: cad/qcad to 1.4.4 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:34:53 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21573 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:35:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FBC537B670; Fri, 13 Oct 2000 13:35:14 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA65408; Fri, 13 Oct 2000 13:35:14 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:35:14 -0700 (PDT) From: Message-Id: <200010132035.NAA65408@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21574: Update port: devel/qtez Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/qtez State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:35:05 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21574 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:35:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6040437B66F; Fri, 13 Oct 2000 13:35:28 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA65636; Fri, 13 Oct 2000 13:35:28 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:35:28 -0700 (PDT) From: Message-Id: <200010132035.NAA65636@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21577: Update port: graphics/togl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/togl State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:35:18 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21577 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:35:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D28D937B670; Fri, 13 Oct 2000 13:35:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA65781; Fri, 13 Oct 2000 13:35:41 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:35:41 -0700 (PDT) From: Message-Id: <200010132035.NAA65781@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21579: Update port: graphics/vcg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/vcg State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:35:33 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21579 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:35:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DF2637B503; Fri, 13 Oct 2000 13:35:54 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA65929; Fri, 13 Oct 2000 13:35:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:35:54 -0700 (PDT) From: Message-Id: <200010132035.NAA65929@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21581: Update port: misc/xpns Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/xpns State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:35:46 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21581 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:36:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DB8437B66C; Fri, 13 Oct 2000 13:36:09 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66078; Fri, 13 Oct 2000 13:36:09 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:36:09 -0700 (PDT) From: Message-Id: <200010132036.NAA66078@freefall.freebsd.org> To: dima@Chg.RU, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21589: Update port: www/udmsearch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/udmsearch State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:35:59 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21589 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:36:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 998E137B66D; Fri, 13 Oct 2000 13:36:22 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66222; Fri, 13 Oct 2000 13:36:22 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:36:22 -0700 (PDT) From: Message-Id: <200010132036.NAA66222@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21610: Update port: databases/sqsh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: databases/sqsh State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:36:14 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21610 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:36:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D10E937B66C; Fri, 13 Oct 2000 13:36:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66376; Fri, 13 Oct 2000 13:36:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:36:35 -0700 (PDT) From: Message-Id: <200010132036.NAA66376@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21611: Update port: games/gleyes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/gleyes State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:36:26 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21611 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:36:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67D8C37B66E; Fri, 13 Oct 2000 13:36:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66519; Fri, 13 Oct 2000 13:36:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:36:48 -0700 (PDT) From: Message-Id: <200010132036.NAA66519@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21612: Update port: games/xbomber Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xbomber State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:36:40 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21612 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:37: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B09DF37B66D; Fri, 13 Oct 2000 13:36:59 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66645; Fri, 13 Oct 2000 13:36:59 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:36:59 -0700 (PDT) From: Message-Id: <200010132036.NAA66645@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21613: Update port: games/xracer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xracer State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:36:52 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21613 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:37:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 690B837B66D; Fri, 13 Oct 2000 13:37:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66778; Fri, 13 Oct 2000 13:37:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:37:11 -0700 (PDT) From: Message-Id: <200010132037.NAA66778@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21614: Update port: graphics/4va Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/4va State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:37:02 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21614 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:37:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05ECB37B66F; Fri, 13 Oct 2000 13:37:21 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA66910; Fri, 13 Oct 2000 13:37:21 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:37:21 -0700 (PDT) From: Message-Id: <200010132037.NAA66910@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21615: Update port: print/pdq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: print/pdq State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:37:14 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21615 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:37:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D028637B66F; Fri, 13 Oct 2000 13:37:30 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67037; Fri, 13 Oct 2000 13:37:30 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:37:30 -0700 (PDT) From: Message-Id: <200010132037.NAA67037@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21616: Update port: print/pstotext Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: print/pstotext State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:37:23 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21616 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:37:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3177F37B66E; Fri, 13 Oct 2000 13:37:42 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67195; Fri, 13 Oct 2000 13:37:42 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:37:42 -0700 (PDT) From: Message-Id: <200010132037.NAA67195@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21617: Update port: sysutils/logrotate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/logrotate State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:37:34 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21617 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:37:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06EDE37B670; Fri, 13 Oct 2000 13:37:55 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67353; Fri, 13 Oct 2000 13:37:55 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:37:55 -0700 (PDT) From: Message-Id: <200010132037.NAA67353@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21618: Update port: sysutils/pwgen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/pwgen State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:37:46 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21618 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:38: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FD0A37B66F; Fri, 13 Oct 2000 13:38:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67516; Fri, 13 Oct 2000 13:38:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:38:07 -0700 (PDT) From: Message-Id: <200010132038.NAA67516@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21619: Update port: x11/xkeywrap Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11/xkeywrap State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:37:59 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21619 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:38:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E27BD37B66C; Fri, 13 Oct 2000 13:38:25 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67678; Fri, 13 Oct 2000 13:38:25 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:38:25 -0700 (PDT) From: Message-Id: <200010132038.NAA67678@freefall.freebsd.org> To: th@cis.ibaraki.ac.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21638: Update: games/xlifegame Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: games/xlifegame State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:38:11 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21638 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:38:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46A6A37B66C; Fri, 13 Oct 2000 13:38:38 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67804; Fri, 13 Oct 2000 13:38:38 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:38:38 -0700 (PDT) From: Message-Id: <200010132038.NAA67804@freefall.freebsd.org> To: th@cis.ibaraki.ac.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21640: Update: games/xeji Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: games/xeji State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:38:30 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21640 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:38:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9ECFB37B503; Fri, 13 Oct 2000 13:38:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67966; Fri, 13 Oct 2000 13:38:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:38:52 -0700 (PDT) From: Message-Id: <200010132038.NAA67966@freefall.freebsd.org> To: jeremy@external.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21689: Update Port: audio/cdindex to 1.2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: audio/cdindex to 1.2.0 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:38:43 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21689 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:39: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F396D37B66F; Fri, 13 Oct 2000 13:39:06 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68108; Fri, 13 Oct 2000 13:39:06 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:39:06 -0700 (PDT) From: Message-Id: <200010132039.NAA68108@freefall.freebsd.org> To: dima@Chg.RU, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21950: Update port: www/calamaris Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/calamaris State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:38:58 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21950 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:39:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AE3237B503; Fri, 13 Oct 2000 13:39:18 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68224; Fri, 13 Oct 2000 13:39:18 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:39:18 -0700 (PDT) From: Message-Id: <200010132039.NAA68224@freefall.freebsd.org> To: sam@inf.enst.fr, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21959: Port update: net/adasockets Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: net/adasockets State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:39:09 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21959 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:39:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CE1837B502; Fri, 13 Oct 2000 13:39:46 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68438; Fri, 13 Oct 2000 13:39:46 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 13 Oct 2000 13:39:46 -0700 (PDT) From: Message-Id: <200010132039.NAA68438@freefall.freebsd.org> To: vince@blue-box.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21706: update libol to 0.2.20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update libol to 0.2.20 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Fri Oct 13 13:39:28 PDT 2000 State-Changed-Why: kevlo committed the update, but forgot to close the PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=21706 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 13:50: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C099A37B670 for ; Fri, 13 Oct 2000 13:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA71859; Fri, 13 Oct 2000 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 97BFD37B66E for ; Fri, 13 Oct 2000 13:40:11 -0700 (PDT) Received: (from root@localhost) by 214.norrgarden.se (8.11.0/8.11.0) id e9DKe9Y09116; Fri, 13 Oct 2000 22:40:09 +0200 (CEST) (envelope-from cj) Message-Id: <200010132040.e9DKe9Y09116@214.norrgarden.se> Date: Fri, 13 Oct 2000 22:40:09 +0200 (CEST) From: cj@vallcom.net Reply-To: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21962: Update port: ftp/lftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21962 >Category: ports >Synopsis: Update port: ftp/lftp >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 Oct 13 13:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: Update lftp port >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/lftp/Makefile lftp/Makefile --- /usr/ports/ftp/lftp/Makefile Fri Oct 13 19:09:58 2000 +++ lftp/Makefile Fri Oct 13 22:28:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= lftp -PORTVERSION= 2.3.3 +PORTVERSION= 2.3.4 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \ ${MASTER_SITE_SUNSITE} diff -urN /usr/ports/ftp/lftp/distinfo lftp/distinfo --- /usr/ports/ftp/lftp/distinfo Tue Oct 3 17:08:29 2000 +++ lftp/distinfo Fri Oct 13 22:34:45 2000 @@ -1 +1 @@ -MD5 (lftp-2.3.3.tar.bz2) = 94083d9a2e057e28743b85f81e63c4fd +MD5 (lftp-2.3.4.tar.bz2) = b86442b6a61818cf526bb06707aa51e4 >Release-Note: >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 Oct 13 14:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 393F037B670 for ; Fri, 13 Oct 2000 14:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA83200; Fri, 13 Oct 2000 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id B3A4D37B66C for ; Fri, 13 Oct 2000 14:13:57 -0700 (PDT) Received: (from root@localhost) by 214.norrgarden.se (8.11.0/8.11.0) id e9DLDvI19785; Fri, 13 Oct 2000 23:13:57 +0200 (CEST) (envelope-from cj) Message-Id: <200010132113.e9DLDvI19785@214.norrgarden.se> Date: Fri, 13 Oct 2000 23:13:57 +0200 (CEST) From: cj@vallcom.net Reply-To: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21963: Update port: security/saint Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21963 >Category: ports >Synopsis: Update port: security/saint >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 Oct 13 14:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: >Organization: >Environment: >Description: update SAINT port >How-To-Repeat: >Fix: diff -urN /usr/ports/security/saint/Makefile saint/Makefile --- /usr/ports/security/saint/Makefile Sat Sep 30 17:14:21 2000 +++ saint/Makefile Fri Oct 13 22:49:58 2000 @@ -13,7 +13,6 @@ MAINTAINER= cj@vallcom.net -DISTNAME= ${PKGNAME}.beta1 BUILD_DEPENDS= nmap:${PORTSDIR}/security/nmap USE_PERL5= yes diff -urN /usr/ports/security/saint/distinfo saint/distinfo --- /usr/ports/security/saint/distinfo Sat Sep 30 17:14:23 2000 +++ saint/distinfo Fri Oct 13 22:51:53 2000 @@ -1 +1 @@ -MD5 (saint-3.0.beta1.tar.gz) = a122604bc137e107d96598eaa362786a +MD5 (saint-3.0.tar.gz) = 55dd6403a54e19ab3c468f048c354e11 diff -urN /usr/ports/security/saint/pkg-plist saint/pkg-plist --- /usr/ports/security/saint/pkg-plist Sat Sep 30 17:14:26 2000 +++ saint/pkg-plist Fri Oct 13 23:07:49 2000 @@ -269,6 +269,9 @@ saint/html/tutorials/vulnerability/ntop_server_vulnerability.html saint/html/tutorials/vulnerability/packet_flooding_problems.html saint/html/tutorials/vulnerability/Vulnerability_Exploits.html +saint/html/tutorials/vulnerability/CFEngine_detected.html +saint/html/tutorials/vulnerability/Net_Tools_PKI_Server.html +saint/html/tutorials/vulnerability/finger_vulnerabilities.html saint/include/netinet/if_ether.h saint/include/netinet/igmp.h saint/include/netinet/in.h @@ -285,6 +288,7 @@ saint/include/netinet/tcpip.h saint/include/netinet/udp.h saint/include/netinet/udp_var.h +saint/include/glibc21/arpa/inet.h saint/include/glibc21/rpc/auth.h saint/include/glibc21/rpc/auth_des.h saint/include/glibc21/rpc/auth_unix.h @@ -370,6 +374,7 @@ @dirrm saint/html/tutorials @dirrm saint/html @dirrm saint/include/netinet +@dirrm saint/include/glibc21/arpa @dirrm saint/include/glibc21/rpc @dirrm saint/include/glibc21 @dirrm saint/include >Release-Note: >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 Oct 13 14:25: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freeway.dcfinc.com (cx74889-a.phnx3.az.home.com [24.1.193.157]) by hub.freebsd.org (Postfix) with ESMTP id 019C137B670 for ; Fri, 13 Oct 2000 14:25:00 -0700 (PDT) Received: (from chad@localhost) by freeway.dcfinc.com (8.8.8/8.8.8) id OAA10890 for freebsd-ports@freebsd.org; Fri, 13 Oct 2000 14:24:59 -0700 (MST) (envelope-from chad) From: "Chad R. Larson" Message-Id: <200010132124.OAA10890@freeway.dcfinc.com> Subject: OpenOffice To: freebsd-ports@freebsd.org Date: Fri, 13 Oct 2000 14:24:59 -0700 (MST) Reply-To: chad@DCFinc.com Organization: DCF, Inc. X-O/S: FreeBSD 2.2.8-STABLE X-Unexpected: The Spanish Inquisition X-Mailer: ELM [version 2.4ME+ PL40 (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 Now that Sun has put up the CVS servers with the OpenOffice (nee StarOffice) source tree, has anyone started putting together a team to create a native FreeBSD implementation? Where do I sign up to help? -crl -- Chad R. Larson (CRL15) 602-953-1392 Brother, can you paradigm? chad@dcfinc.com chad@larsons.org larson1@home.net DCF, Inc. - 14623 North 49th Place, Scottsdale, Arizona 85254-2207 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 15:12: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns.internet.dk (ns.internet.dk [194.19.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 0FA9E37B66D for ; Fri, 13 Oct 2000 15:12:02 -0700 (PDT) Received: (from uucp@localhost) by ns.internet.dk (8.9.3/8.9.3) with UUCP id AAA36739; Sat, 14 Oct 2000 00:11:55 +0200 (CEST) (envelope-from leifn@neland.dk) Received: from gina (gina.neland.dk [192.168.0.14]) by arnold.neland.dk (8.11.0/8.11.0) with SMTP id e9DKMIG62531; Fri, 13 Oct 2000 22:22:18 +0200 (CEST) (envelope-from leifn@neland.dk) Message-ID: <00a901c03553$50c7c140$0e00a8c0@neland.dk> Reply-To: "Leif Neland" From: "Leif Neland" To: "Brett Taylor" , "Szilveszter Adam" Cc: References: Subject: Re: Ports won't build on stable Date: Fri, 13 Oct 2000 22:21:25 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > On Fri, 13 Oct 2000, Szilveszter Adam wrote: > > > On Fri, Oct 13, 2000 at 07:32:46PM +0200, Leif Neland wrote: > > > > I just did a make world on a 4.1.1. > > > I also have a fresh ports tree. > > > > > > When I try to make a port (I tried 4 different under archivers, and > > > xlockmore) I get this message: > > > > > > Error: your port uses an old layout. Please update it to match this > > > bsd.port.mk > > The ports tree works but.... CVS will not touch things it didn't create > so if you originally unpacked the tarball'ed ports tree, CVS won't be able > to remove the pkg and patches directories. If you remove these your ports > will build again. > > cd /usr/ports && rm -rf */*/pkg/ && rm -rf */*/patches/ > > I believe this is the problem anyway. If this doesn't work, let us know. > I tried removing one port, resupped, and it worked. So I took that as a hint, and removed the entire tree. It's now being cvsup'ped, It hopefully works... Leif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 15:12:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns.internet.dk (ns.internet.dk [194.19.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 2A2C037B66E for ; Fri, 13 Oct 2000 15:12:08 -0700 (PDT) Received: (from uucp@localhost) by ns.internet.dk (8.9.3/8.9.3) with UUCP id AAA36755; Sat, 14 Oct 2000 00:12:03 +0200 (CEST) (envelope-from leifn@neland.dk) Received: from gina (gina.neland.dk [192.168.0.14]) by arnold.neland.dk (8.11.0/8.11.0) with SMTP id e9DL3QG70774; Fri, 13 Oct 2000 23:03:26 +0200 (CEST) (envelope-from leifn@neland.dk) Message-ID: <00cf01c03559$0f589940$0e00a8c0@neland.dk> Reply-To: "Leif Neland" From: "Leif Neland" To: "Brett Taylor" , "Szilveszter Adam" Cc: References: Subject: Re: Ports won't build on stable Date: Fri, 13 Oct 2000 23:03:00 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > I just did a make world on a 4.1.1. > > > I also have a fresh ports tree. > > > > > > When I try to make a port (I tried 4 different under archivers, and > > > xlockmore) I get this message: > > > > > > Error: your port uses an old layout. Please update it to match this > > > bsd.port.mk > > The ports tree works but.... CVS will not touch things it didn't create > so if you originally unpacked the tarball'ed ports tree, CVS won't be able > to remove the pkg and patches directories. If you remove these your ports > will build again. > A: Could the ports tarball be created from a cvsup'ped tree with whatever information is needed for cvs to recognize it as its own child? B: Shouldn't the need to erase a tarballed tree be mentioned in the UPDATING? C: Do you really mean it won't _touch_ what it hasn't created, or it just won't remove what it hasn't created? If the former, then how can it update the source tree? Leif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 15:17: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id 3E9A637B672 for ; Fri, 13 Oct 2000 15:17:06 -0700 (PDT) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id SAA01078; Fri, 13 Oct 2000 18:16:57 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Fri, 13 Oct 2000 18:16:56 -0400 (EDT) From: Brett Taylor To: Leif Neland Cc: Szilveszter Adam , freebsd-ports@freebsd.org Subject: Re: Ports won't build on stable In-Reply-To: <00cf01c03559$0f589940$0e00a8c0@neland.dk> 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, On Fri, 13 Oct 2000, Leif Neland wrote: > A: Could the ports tarball be created from a cvsup'ped tree with > whatever information is needed for cvs to recognize it as its own > child? I guess it could. > B: Shouldn't the need to erase a tarballed tree be mentioned in the > UPDATING? You don't need to erase the whole tree, just an pkg/ or patches/ directories that don't get removed. > C: Do you really mean it won't _touch_ what it hasn't created, or it > just won't remove what it hasn't created? Sorry - it won't remove it is correct. Standard disclaimer - this is what I remember only and may be worth only the electrons used to put this on your screen. :-) Brett ***************************************************** Dr. Brett Taylor brett@peloton.runet.edu * Dept of Chem and Physics * Curie 39A (540) 831-6147 * ***************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 15:33:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ares.trc.adelaide.edu.au (ares.trc.adelaide.edu.au [129.127.246.5]) by hub.freebsd.org (Postfix) with ESMTP id 6EC3337B66D; Fri, 13 Oct 2000 15:33:05 -0700 (PDT) Received: (from glewis@localhost) by ares.trc.adelaide.edu.au (8.9.3/8.9.3) id IAA31033; Sat, 14 Oct 2000 08:03:01 +0930 (CST) (envelope-from glewis) From: Greg Lewis Message-Id: <200010132233.IAA31033@ares.trc.adelaide.edu.au> Subject: Re: Native JDK1.2.2 port In-Reply-To: <39E73443.848834FE@FreeBSD.org> from Maxim Sobolev at "Oct 13, 2000 07:11:48 pm" To: Maxim Sobolev Date: Sat, 14 Oct 2000 08:03:01 +0930 (CST) Cc: java@FreeBSD.ORG, ports@FreeBSD.ORG, Kees Jan Koster , nate@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL70 (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 > I would like to inform you that I created skeleton for building native jdk1.2.2 > and put it into official ports collection (java/jdk12-beta). This port is > expected to make building/installation of jdk significantly easier, so the user > would only need to d/l appropriate files (jdk sources from Sun and FreeBSD > patchset), put it into usual place and do make install. I will appreciate any > comments/patches/suggestions etc. about this port. Also it would be nice if > someone will insert appropriate news entry onto FreeBSD Java pages, as well as > update appropriate building instructions. Great work Maxim! Here are some comments, but please consider them in terms of me not knowing all that much about the ports system though :). 1. There is a mirror for the patchsets (kindly provided by Edward Wolpert) at http://java2.freebsd.methodsystems.com/java/jdk.html 2. In the RUN_DPEENDS you have ${X11BASE}/lib/X11/fonts/URW/fonts.dir:${PORTSDIR}/x11-fonts/urwfonts They are only required if you install the optional font.properties file that come with the patchset (although I think I may have accidentally left it out of patchset 10, let me check that). 3. As further enhancements you might want to add a couple of options: WITH_DPS: This might be complicated since people need at least XFree86-4-libraries installed. However, if they've done this they need to have put stuff in a non-standard place unless they have the whole of XFree86-4 installed. So really the dependency is XFree86-4. You'd then need something like this in MAKE_ENV MAKE_ENV= ALT_BOOTDIR="${JDK12DIR}" \ .if defined(WITH_DPS) HAVE_DPS="yes" \ ALT_DPS_DIR="${X11BASE}" \ .else HAVE_DPS="no" \ .endif WITH_JPDA: If people want the JPDA functionality they can download some extra code. This is needed for things like JBuilder. Let me think how we could do that well. Will get in touch about it. I think I need to do version 2 of the JPDA patches first, or maybe just incorporate it all into the JDK patchset. Hmmm. WITH_LESSTIF: Some people might want to build with Lesstif instead of Open Motif, although that would be a bad choice in general since Lesstif currently exhibits more graphics problems. 4. Should there also be a jre12-beta port which uses this port but installs from the JRE image directory instead of the JDK image directory? 5. Could there be a post-install notice suggesting people may want to consider installing one of the JITs? Do the current JIT ports work with your new JDK 1.2.2 port? This is terrific. Thank you so much! Now, everybody submit your favourite JDK 1.2 based ports! - Greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 15:41:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id BCBD937B66C for ; Fri, 13 Oct 2000 15:41:44 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id ACDFF1916; Fri, 13 Oct 2000 17:42:24 -0500 (EST) Date: Fri, 13 Oct 2000 17:42:24 -0500 From: Will Andrews To: "Chad R. Larson" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: OpenOffice Message-ID: <20001013174224.D95891@puck.firepipe.net> Reply-To: Will Andrews References: <200010132124.OAA10890@freeway.dcfinc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010132124.OAA10890@freeway.dcfinc.com>; from chad@DCFinc.com on Fri, Oct 13, 2000 at 02:24:59PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 13, 2000 at 02:24:59PM -0700, Chad R. Larson wrote: > Now that Sun has put up the CVS servers with the OpenOffice (nee > StarOffice) source tree, has anyone started putting together a team to > create a native FreeBSD implementation? Where do I sign up to help? Ha. 9 million lines of source code. *shaking head* -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 16: 6: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ares.trc.adelaide.edu.au (ares.trc.adelaide.edu.au [129.127.246.5]) by hub.freebsd.org (Postfix) with ESMTP id E566837B671; Fri, 13 Oct 2000 16:05:59 -0700 (PDT) Received: (from glewis@localhost) by ares.trc.adelaide.edu.au (8.9.3/8.9.3) id IAA31420; Sat, 14 Oct 2000 08:35:53 +0930 (CST) (envelope-from glewis) From: Greg Lewis Message-Id: <200010132305.IAA31420@ares.trc.adelaide.edu.au> Subject: Re: Native JDK1.2.2 port In-Reply-To: <200010132233.IAA31033@ares.trc.adelaide.edu.au> from Greg Lewis at "Oct 14, 2000 08:03:01 am" To: Greg Lewis Date: Sat, 14 Oct 2000 08:35:53 +0930 (CST) Cc: Maxim Sobolev , java@FreeBSD.ORG, ports@FreeBSD.ORG, Kees Jan Koster , nate@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL70 (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 D'oh. One more comment. This port is i386 only for the moment. We need some assembler code written to make the Alpha work. - Greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 16:22:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from web10201.mail.yahoo.com (web10201.mail.yahoo.com [216.136.130.65]) by hub.freebsd.org (Postfix) with SMTP id 63B5337B66C for ; Fri, 13 Oct 2000 16:22:40 -0700 (PDT) Message-ID: <20001013232240.7953.qmail@web10201.mail.yahoo.com> Received: from [192.18.1.9] by web10201.mail.yahoo.com; Fri, 13 Oct 2000 16:22:40 PDT Date: Fri, 13 Oct 2000 16:22:40 -0700 (PDT) From: narvi Subject: Re: OpenOffice To: freebsd-ports@freebsd.org Cc: Will Andrews MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >From: Will Andrews > >On Fri, Oct 13, 2000 at 02:24:59PM -0700, Chad R. Larson wrote: >> Now that Sun has put up the CVS servers with the OpenOffice (nee >> StarOffice) source tree, has anyone started putting together a team to >> create a native FreeBSD implementation? Where do I sign up to help? > >Ha. 9 million lines of source code. *shaking head* > Most of these code lines do not need porting, as these are common to all platforms. The part that needs porting is the abstraction layer, which is a small part compared to the rest. The new native jdk-1.2.2 port will come real handy, though 8-) narvi >-- >Will Andrews - Physics Computer Network wench >The Universal Answer to All Problems - "It has something to do with physics." > -- Comic on door of Room 240, Physics Building, Purdue University __________________________________________________ Do You Yahoo!? Get Yahoo! Mail - Free email you can access from anywhere! http://mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 16:26:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 64A9B37B66D for ; Fri, 13 Oct 2000 16:26:08 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9DNQ3114378; Fri, 13 Oct 2000 19:26:03 -0400 (EDT) Date: Fri, 13 Oct 2000 19:26:03 -0400 (EDT) From: Trevor Johnson To: Will Andrews Cc: "Chad R. Larson" , freebsd-ports@FreeBSD.ORG Subject: Re: OpenOffice In-Reply-To: <20001013174224.D95891@puck.firepipe.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 > Ha. 9 million lines of source code. *shaking head* $ gzip -dc /usr/ports/distfiles/xc/X401src-*|wc -l 11843635 I've read that Sun has organized Open Office into 18 separate modules, with a separate person overseeing each one. The average module, then, has only 500 000 lines of code. :) -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 16:38:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id BFB7837B66D for ; Fri, 13 Oct 2000 16:38:10 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id B39C51916; Fri, 13 Oct 2000 18:38:49 -0500 (EST) Date: Fri, 13 Oct 2000 18:38:49 -0500 From: Will Andrews To: Trevor Johnson Cc: Will Andrews , "Chad R. Larson" , freebsd-ports@FreeBSD.ORG Subject: Re: OpenOffice Message-ID: <20001013183849.E95891@puck.firepipe.net> Reply-To: Will Andrews References: <20001013174224.D95891@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from trevor@jpj.net on Fri, Oct 13, 2000 at 07:26:03PM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 13, 2000 at 07:26:03PM -0400, Trevor Johnson wrote: > $ gzip -dc /usr/ports/distfiles/xc/X401src-*|wc -l > 11843635 Except that I was talking about source code, not text. I would say most of these are documentation or otherwise. :-) In any case, I'm dling openoffice (tarball and CVS). -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 16:40:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A801037B66F for ; Fri, 13 Oct 2000 16:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA33658; Fri, 13 Oct 2000 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mailgw3.netvision.net.il (mailgw3.netvision.net.il [194.90.1.11]) by hub.freebsd.org (Postfix) with ESMTP id 53C5437B502 for ; Fri, 13 Oct 2000 16:36:49 -0700 (PDT) Received: from alchemy.oven.org (shiva2.ksl.co.il [199.203.25.37]) by mailgw3.netvision.net.il (8.9.3/8.9.3) with ESMTP id BAA24571 for ; Sat, 14 Oct 2000 01:35:53 +0200 (IST) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e9DMaOx56081; Sat, 14 Oct 2000 01:36:24 +0300 (IDT) (envelope-from mapc) Message-Id: <200010132236.e9DMaOx56081@alchemy.oven.org> Date: Sat, 14 Oct 2000 01:36:24 +0300 (IDT) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21964: [PATCH] for archivers/unarj - create subdirs + multi-volume hndl. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21964 >Category: ports >Synopsis: unarj doesn't create directories nor handle multi-volumes >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 13 16:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: Version 2.43 of unarj. AFAIK version 2.41 which was then downloaded from sunsite had the create directory patch applied. >Description: The archivers/unarj port doesn't create subdirectories listed in archives, nor does it handle multi-volume archives making it useful to very limited degree. I was facing it when I tried to back up a bunch of old diskettes. It was nearly unusable in it's current state. I contacted ache@freebsd.org but had no reply from him since then. >How-To-Repeat: Try to extract arj file with directories or try to extract a multivolume archive. >Fix: The RedHat's Linux distribution ships with unarj patched for creating directories. (I include the patch). The multivolume issue was fixed by some other person, and it's hosted here: http://www.home.unix-ag.org/arne/unarj/ (I attach it as well). All theses changes were tested by me on multiple archives and were found to be ok. Included also patch-aa and patch-ad - for direct inclusion in the ports. (I merged them). This is the patch for subdirectory creation: diff -urN unarj-2.43/unarj.c unarj-2.43.new/unarj.c --- unarj-2.43/unarj.c Mon Sep 29 14:00:24 1997 +++ unarj-2.43.new/unarj.c Tue Aug 8 15:57:58 2000 @@ -42,7 +42,8 @@ * 02/17/93 R. Jung Added archive modified date support. * 01/22/94 R. Jung Changed copyright message. * 07/29/96 R. Jung Added "/" to list of path separators. - * + * 08/08/00 P. Knirsch Added subdirectory creation for the x command. Also + * fixed some compiler warnings. */ #include "unarj.h" @@ -51,6 +52,10 @@ #include #include #include +#include +#include +#include +#include #else /* !MODERN */ extern void free(); extern void exit(); @@ -712,6 +717,8 @@ extract() { char name[FNAME_MAX]; + char dir[FNAME_MAX]; + char *pos; if (check_flags()) { @@ -730,6 +737,21 @@ if (host_os != OS) default_case_path(name); + + + /* + 8/8/2000 Phil Knirsch: Bugfix to create subdirectories. Unarj didn't + do this for a long time, so it's finally fixed. + */ + pos = strchr(name, PATH_CHAR); + + while (pos != NULL) + { + strncpy(dir, name, pos-name); + dir[pos-name] = '\0'; + mkdir(dir, 0777); + pos = strchr(pos+1, PATH_CHAR); + } if (file_exists(name)) { diff -urN unarj-2.43/unarj.h unarj-2.43.new/unarj.h --- unarj-2.43/unarj.h Mon Sep 29 14:00:24 1997 +++ unarj-2.43.new/unarj.h Tue Aug 8 15:19:33 2000 @@ -198,90 +198,90 @@ /* end of environmental defines */ /* ********************************************************* */ -/* ********************************************************* */ -/* -/* Structure of archive main header (low order byte first): -/* -/* 2 header id (comment and local file) = 0x60, 0xEA -/* 2 basic header size (from 'first_hdr_size' thru 'comment' below) -/* = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 -/* = 0 if end of archive -/* -/* 1 first_hdr_size (size up to 'extra data') -/* 1 archiver version number -/* 1 minimum archiver version to extract -/* 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) -/* (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) -/* (9 = VAX VMS) -/* 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = OLD_SECURED_FLAG) -/* (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) -/* (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) -/* (0x40 = SECURED_FLAG) -/* 1 arj security version (2 = current) -/* 1 file type (2 = comment header) -/* 1 ? ] -/* 4 date time stamp created -/* 4 date time stamp modified -/* 4 archive size up to the end of archive marker -/* 4 file position of security envelope data -/* 2 entryname position in filename -/* 2 length in bytes of trailing security data -/* 2 host data -/* ? extra data -/* -/* ? archive filename (null-terminated) -/* ? archive comment (null-terminated) -/* -/* 4 basic header CRC -/* -/* 2 1st extended header size (0 if none) -/* ? 1st extended header -/* 4 1st extended header's CRC -/* ... -/* -/* -/* Structure of archive file header (low order byte first): -/* -/* 2 header id (comment and local file) = 0x60, 0xEA -/* 2 basic header size (from 'first_hdr_size' thru 'comment' below) -/* = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 -/* = 0 if end of archive -/* -/* 1 first_hdr_size (size up to 'extra data') -/* 1 archiver version number -/* 1 minimum archiver version to extract -/* 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) -/* (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) -/* (9 = VAX VMS) -/* 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = NOT USED) -/* (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) -/* (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) -/* (0x40 = NOT USED) -/* 1 method (0 = stored, 1 = compressed most ... 4 compressed fastest) -/* 1 file type (0 = binary, 1 = text, 2 = comment header, 3 = directory) -/* (4 = label) -/* 1 garble password modifier -/* 4 date time stamp modified -/* 4 compressed size -/* 4 original size -/* 4 original file's CRC -/* 2 entryname position in filename -/* 2 file access mode -/* 2 host data -/* ? extra data -/* 4 bytes for extended file position -/* -/* ? filename (null-terminated) -/* ? comment (null-terminated) -/* -/* 4 basic header CRC -/* -/* 2 1st extended header size (0 if none) -/* ? 1st extended header -/* 4 1st extended header's CRC -/* ... -/* ? compressed file /* + * + * Structure of archive main header (low order byte first): + * + * 2 header id (comment and local file) = 0x60, 0xEA + * 2 basic header size (from 'first_hdr_size' thru 'comment' below) + * = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 + * = 0 if end of archive + * + * 1 first_hdr_size (size up to 'extra data') + * 1 archiver version number + * 1 minimum archiver version to extract + * 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) + * (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) + * (9 = VAX VMS) + * 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = OLD_SECURED_FLAG) + * (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) + * (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) + * (0x40 = SECURED_FLAG) + * 1 arj security version (2 = current) + * 1 file type (2 = comment header) + * 1 ? ] + * 4 date time stamp created + * 4 date time stamp modified + * 4 archive size up to the end of archive marker + * 4 file position of security envelope data + * 2 entryname position in filename + * 2 length in bytes of trailing security data + * 2 host data + * ? extra data + * + * ? archive filename (null-terminated) + * ? archive comment (null-terminated) + * + * 4 basic header CRC + * + * 2 1st extended header size (0 if none) + * ? 1st extended header + * 4 1st extended header's CRC + * ... + * + * + * Structure of archive file header (low order byte first): + * + * 2 header id (comment and local file) = 0x60, 0xEA + * 2 basic header size (from 'first_hdr_size' thru 'comment' below) + * = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 + * = 0 if end of archive + * + * 1 first_hdr_size (size up to 'extra data') + * 1 archiver version number + * 1 minimum archiver version to extract + * 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) + * (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) + * (9 = VAX VMS) + * 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = NOT USED) + * (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) + * (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) + * (0x40 = NOT USED) + * 1 method (0 = stored, 1 = compressed most ... 4 compressed fastest) + * 1 file type (0 = binary, 1 = text, 2 = comment header, 3 = directory) + * (4 = label) + * 1 garble password modifier + * 4 date time stamp modified + * 4 compressed size + * 4 original size + * 4 original file's CRC + * 2 entryname position in filename + * 2 file access mode + * 2 host data + * ? extra data + * 4 bytes for extended file position + * + * ? filename (null-terminated) + * ? comment (null-terminated) + * + * 4 basic header CRC + * + * 2 1st extended header size (0 if none) + * ? 1st extended header + * 4 1st extended header's CRC + * ... + * ? compressed file + */ /* ********************************************************* */ /* ********************************************************* */ /* */ --------------------------------end of subdir patch--------------------------- ----------------------------begin of multivolume patch------------------------ diff -ur unarj241a.orig/unarj.c unarj241a/unarj.c --- unarj241a.orig/unarj.c Sun Apr 10 12:00:56 1994 +++ unarj241a/unarj.c Mon Oct 9 02:47:30 2000 @@ -18,29 +18,30 @@ * structural point of view. * * Modification history: - * Date Programmer Description of modification. - * 04/05/91 R. Jung Rewrote code. - * 04/23/91 M. Adler Portabilized. - * 04/29/91 R. Jung Added l command. Removed 16 bit dependency in - * fillbuf(). - * 05/19/91 R. Jung Fixed extended header skipping code. - * 05/25/91 R. Jung Improved find_header(). - * 06/03/91 R. Jung Changed arguments in get_mode_str() and - * set_ftime_mode(). - * 06/19/81 R. Jung Added two more %c in printf() in list_arc(). - * 07/07/91 R. Jung Added default_case_path() to extract(). - * Added strlower(). - * 07/20/91 R. Jung Changed uint ratio() to static uint ratio(). - * 07/21/91 R. Jung Added #ifdef VMS. - * 08/28/91 R. Jung Changed M_DIFFHOST message. - * 08/31/91 R. Jung Added changes to support MAC THINK_C compiler - * per Eric Larson. - * 10/07/91 R. Jung Added missing ; to THINK_C additions. - * 11/11/91 R. Jung Added host_os test to fwrite_txt_crc(). - * 11/24/91 R. Jung Added more error_count processing. - * 12/03/91 R. Jung Added backup file processing. - * 02/17/93 R. Jung Added archive modified date support. - * 940410 aeb@cwi.nl Added automatic directory creation for x mode. + * Date Programmer Description of modification. + * 04/05/91 R. Jung Rewrote code. + * 04/23/91 M. Adler Portabilized. + * 04/29/91 R. Jung Added l command. Removed 16 bit dependency in + * fillbuf(). + * 05/19/91 R. Jung Fixed extended header skipping code. + * 05/25/91 R. Jung Improved find_header(). + * 06/03/91 R. Jung Changed arguments in get_mode_str() and + * set_ftime_mode(). + * 06/19/81 R. Jung Added two more %c in printf() in list_arc(). + * 07/07/91 R. Jung Added default_case_path() to extract(). + * Added strlower(). + * 07/20/91 R. Jung Changed uint ratio() to static uint ratio(). + * 07/21/91 R. Jung Added #ifdef VMS. + * 08/28/91 R. Jung Changed M_DIFFHOST message. + * 08/31/91 R. Jung Added changes to support MAC THINK_C compiler + * per Eric Larson. + * 10/07/91 R. Jung Added missing ; to THINK_C additions. + * 11/11/91 R. Jung Added host_os test to fwrite_txt_crc(). + * 11/24/91 R. Jung Added more error_count processing. + * 12/03/91 R. Jung Added backup file processing. + * 02/17/93 R. Jung Added archive modified date support. + * 940410 aeb@cwi.nl Added automatic directory creation for x mode. + * 980525 arne@unix-ag.org Added handling of multiple volume archives. * */ @@ -119,7 +120,7 @@ NULL }; -char M_VERSION [] = "UNARJ (Demo version) 2.41a Copyright (c) 1991-93 Robert K Jung\n\n"; +char M_VERSION [] = "UNARJ (Demo version) 2.41b Copyright (c) 1991-93 Robert K Jung\n\n"; char M_ARCDATE [] = "Archive created: %s"; char M_ARCDATEM[] = ", modified: %s"; @@ -137,6 +138,7 @@ char M_ERRORCNT[] = "%sFound %5d error(s)!"; char M_EXTRACT [] = "Extracting %-25s"; char M_FEXISTS [] = "%-25s exists, "; +char M_FNEXISTS[] = "%-25s doesn't exist, unable to extend, "; char M_HEADRCRC[] = "Header CRC error!"; char M_NBRFILES[] = "%5d file(s)\n"; char M_NOMEMORY[] = "Out of memory"; @@ -148,6 +150,7 @@ char M_UNKNMETH[] = "Unsupported method: %d, "; char M_UNKNTYPE[] = "Unsupported file type: %d, "; char M_UNKNVERS[] = "Unsupported version: %d, "; +char M_WRONGPOS[] = "%-25s wrong position to continue, "; #define get_crc() get_longword() #define fget_crc(f) fget_longword(f) @@ -215,6 +218,7 @@ static uchar *get_ptr; static UCRC file_crc; static UCRC header_crc; +static ulong ext_file_pos; static long first_hdr_pos; static long torigsize; @@ -223,6 +227,7 @@ static int clock_inx; static char *writemode[2] = { "wb", "w" }; +static char *appendmode[2] = { "ab", "a" }; static UCRC crctable[UCHAR_MAX + 1]; @@ -622,6 +627,7 @@ entry_pos = get_word(); file_mode = get_word(); host_data = get_word(); + ext_file_pos = get_longword(); hdr_filename = (char *)&header[first_hdr_size]; strncopy(filename, hdr_filename, sizeof(filename)); @@ -752,7 +758,7 @@ if (host_os != OS) default_case_path(name); - if (file_exists(name)) + if (file_exists(name) && !(arj_flags & EXTFILE_FLAG)) { printf(M_FEXISTS, name); printf(M_SKIPPED, name); @@ -760,11 +766,22 @@ error_count++; return 0; } + if (!file_exists(name) && (arj_flags & EXTFILE_FLAG)) + { + printf(M_FNEXISTS, name); + printf(M_SKIPPED, name); + skip(); + error_count++; + return 0; + } #ifdef UNIX if (command == 'X') create_required_dirs(name); #endif - outfile = file_open(name, writemode[file_type & 1]); + if(arj_flags & EXTFILE_FLAG) + outfile = file_open(name, appendmode[file_type & 1]); + else + outfile = file_open(name, writemode[file_type & 1]); if (outfile == NULL) { printf(M_CANTOPEN, name); @@ -773,9 +790,21 @@ error_count++; return 0; } + if( (arj_flags & EXTFILE_FLAG) && (ftell(outfile)!=ext_file_pos) ) { + printf(M_WRONGPOS, name); + printf(M_SKIPPED, name); + skip(); + error_count++; + return 0; + } + printf(M_EXTRACT, name); if (host_os != OS && file_type == BINARY_TYPE) printf(M_DIFFHOST); + if(arj_flags & EXTFILE_FLAG) + printf(" (continued)"); + if(arj_flags & VOLUME_FLAG) + printf(" (cont'd in next .arj)"); printf(" "); crc = CRC_MASK; ----------------------------end of multivolume patch-------------------------- ----------------------------begin of patch-aa -------------------------------- --- unarj.h.orig Mon Oct 9 03:36:29 2000 +++ unarj.h Mon Oct 9 03:31:26 2000 @@ -106,8 +106,12 @@ #endif typedef unsigned char uchar; /* 8 bits or more */ +#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) typedef unsigned int uint; /* 16 - 32 bits or more */ typedef unsigned short ushort; /* 16 bits or more */ +#else +# include +#endif typedef unsigned long ulong; /* 32 bits or more */ #define USHRT_BIT (CHAR_BIT * sizeof(ushort)) @@ -198,90 +202,90 @@ /* end of environmental defines */ /* ********************************************************* */ -/* ********************************************************* */ -/* -/* Structure of archive main header (low order byte first): -/* -/* 2 header id (comment and local file) = 0x60, 0xEA -/* 2 basic header size (from 'first_hdr_size' thru 'comment' below) -/* = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 -/* = 0 if end of archive -/* -/* 1 first_hdr_size (size up to 'extra data') -/* 1 archiver version number -/* 1 minimum archiver version to extract -/* 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) -/* (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) -/* (9 = VAX VMS) -/* 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = OLD_SECURED_FLAG) -/* (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) -/* (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) -/* (0x40 = SECURED_FLAG) -/* 1 arj security version (2 = current) -/* 1 file type (2 = comment header) -/* 1 ? ] -/* 4 date time stamp created -/* 4 date time stamp modified -/* 4 archive size up to the end of archive marker -/* 4 file position of security envelope data -/* 2 entryname position in filename -/* 2 length in bytes of trailing security data -/* 2 host data -/* ? extra data -/* -/* ? archive filename (null-terminated) -/* ? archive comment (null-terminated) -/* -/* 4 basic header CRC -/* -/* 2 1st extended header size (0 if none) -/* ? 1st extended header -/* 4 1st extended header's CRC -/* ... -/* -/* -/* Structure of archive file header (low order byte first): -/* -/* 2 header id (comment and local file) = 0x60, 0xEA -/* 2 basic header size (from 'first_hdr_size' thru 'comment' below) -/* = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 -/* = 0 if end of archive -/* -/* 1 first_hdr_size (size up to 'extra data') -/* 1 archiver version number -/* 1 minimum archiver version to extract -/* 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) -/* (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) -/* (9 = VAX VMS) -/* 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = NOT USED) -/* (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) -/* (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) -/* (0x40 = NOT USED) -/* 1 method (0 = stored, 1 = compressed most ... 4 compressed fastest) -/* 1 file type (0 = binary, 1 = text, 2 = comment header, 3 = directory) -/* (4 = label) -/* 1 garble password modifier -/* 4 date time stamp modified -/* 4 compressed size -/* 4 original size -/* 4 original file's CRC -/* 2 entryname position in filename -/* 2 file access mode -/* 2 host data -/* ? extra data -/* 4 bytes for extended file position -/* -/* ? filename (null-terminated) -/* ? comment (null-terminated) -/* -/* 4 basic header CRC -/* -/* 2 1st extended header size (0 if none) -/* ? 1st extended header -/* 4 1st extended header's CRC -/* ... -/* ? compressed file /* + * + * Structure of archive main header (low order byte first): + * + * 2 header id (comment and local file) = 0x60, 0xEA + * 2 basic header size (from 'first_hdr_size' thru 'comment' below) + * = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 + * = 0 if end of archive + * + * 1 first_hdr_size (size up to 'extra data') + * 1 archiver version number + * 1 minimum archiver version to extract + * 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) + * (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) + * (9 = VAX VMS) + * 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = OLD_SECURED_FLAG) + * (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) + * (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) + * (0x40 = SECURED_FLAG) + * 1 arj security version (2 = current) + * 1 file type (2 = comment header) + * 1 ? ] + * 4 date time stamp created + * 4 date time stamp modified + * 4 archive size up to the end of archive marker + * 4 file position of security envelope data + * 2 entryname position in filename + * 2 length in bytes of trailing security data + * 2 host data + * ? extra data + * + * ? archive filename (null-terminated) + * ? archive comment (null-terminated) + * + * 4 basic header CRC + * + * 2 1st extended header size (0 if none) + * ? 1st extended header + * 4 1st extended header's CRC + * ... + * + * + * Structure of archive file header (low order byte first): + * + * 2 header id (comment and local file) = 0x60, 0xEA + * 2 basic header size (from 'first_hdr_size' thru 'comment' below) + * = first_hdr_size + strlen(filename) + 1 + strlen(comment) + 1 + * = 0 if end of archive + * + * 1 first_hdr_size (size up to 'extra data') + * 1 archiver version number + * 1 minimum archiver version to extract + * 1 host OS (0 = MSDOS, 1 = PRIMOS, 2 = UNIX, 3 = AMIGA, 4 = MACDOS) + * (5 = OS/2, 6 = APPLE GS, 7 = ATARI ST, 8 = NEXT) + * (9 = VAX VMS) + * 1 arj flags (0x01 = GARBLED_FLAG, 0x02 = NOT USED) + * (0x04 = VOLUME_FLAG, 0x08 = EXTFILE_FLAG) + * (0x10 = PATHSYM_FLAG, 0x20 = BACKUP_FLAG) + * (0x40 = NOT USED) + * 1 method (0 = stored, 1 = compressed most ... 4 compressed fastest) + * 1 file type (0 = binary, 1 = text, 2 = comment header, 3 = directory) + * (4 = label) + * 1 garble password modifier + * 4 date time stamp modified + * 4 compressed size + * 4 original size + * 4 original file's CRC + * 2 entryname position in filename + * 2 file access mode + * 2 host data + * ? extra data + * 4 bytes for extended file position + * + * ? filename (null-terminated) + * ? comment (null-terminated) + * + * 4 basic header CRC + * + * 2 1st extended header size (0 if none) + * ? 1st extended header + * 4 1st extended header's CRC + * ... + * ? compressed file + */ /* ********************************************************* */ /* ********************************************************* */ /* */ ----------------------------end of patch-aa ---------------------------------- ----------------------------begin of patch-ad -------------------------------- --- unarj.c.orig Mon Oct 9 03:34:19 2000 +++ unarj.c Mon Oct 9 03:35:58 2000 @@ -42,7 +42,8 @@ * 02/17/93 R. Jung Added archive modified date support. * 01/22/94 R. Jung Changed copyright message. * 07/29/96 R. Jung Added "/" to list of path separators. - * + * 08/08/00 P. Knirsch Added subdirectory creation for the x command. Also + * fixed some compiler warnings. */ #include "unarj.h" @@ -51,6 +52,12 @@ #include #include #include +#ifdef UNIX +#include +#include +#include +#include +#endif #else /* !MODERN */ extern void free(); extern void exit(); @@ -137,6 +144,7 @@ char M_ERRORCNT[] = "%sFound %5d error(s)!"; char M_EXTRACT [] = "Extracting %-25s"; char M_FEXISTS [] = "%-25s exists, "; +char M_FNEXISTS[] = "%-25s doesn't exist, unable to extend, "; char M_HEADRCRC[] = "Header CRC error!"; char M_NBRFILES[] = "%5d file(s)\n"; char M_NOMEMORY[] = "Out of memory"; @@ -148,6 +156,7 @@ char M_UNKNMETH[] = "Unsupported method: %d, "; char M_UNKNTYPE[] = "Unsupported file type: %d, "; char M_UNKNVERS[] = "Unsupported version: %d, "; +char M_WRONGPOS[] = "%-25s wrong position to continue, "; #define get_crc() get_longword() #define fget_crc(f) fget_longword(f) @@ -215,6 +224,7 @@ static uchar *get_ptr; static UCRC file_crc; static UCRC header_crc; +static ulong ext_file_pos; static long first_hdr_pos; static long torigsize; @@ -223,6 +233,7 @@ static int clock_inx; static char *writemode[2] = { "wb", "w" }; +static char *appendmode[2] = { "ab", "a" }; static UCRC crctable[UCHAR_MAX + 1]; @@ -622,6 +633,7 @@ entry_pos = get_word(); file_mode = get_word(); host_data = get_word(); + ext_file_pos = get_longword(); hdr_filename = (char *)&header[first_hdr_size]; strncopy(filename, hdr_filename, sizeof(filename)); @@ -712,6 +724,8 @@ extract() { char name[FNAME_MAX]; + char dir[FNAME_MAX]; + char *pos; if (check_flags()) { @@ -731,7 +745,22 @@ if (host_os != OS) default_case_path(name); - if (file_exists(name)) + + /* + 8/8/2000 Phil Knirsch: Bugfix to create subdirectories. Unarj didn't + do this for a long time, so it's finally fixed. + */ + pos = strchr(name, PATH_CHAR); + + while (pos != NULL) + { + strncpy(dir, name, pos-name); + dir[pos-name] = '\0'; + mkdir(dir, 0777); + pos = strchr(pos+1, PATH_CHAR); + } + + if (file_exists(name) && !(arj_flags & EXTFILE_FLAG)) { printf(M_FEXISTS, name); printf(M_SKIPPED, name); @@ -739,7 +768,10 @@ error_count++; return 0; } - outfile = file_open(name, writemode[file_type & 1]); + if(arj_flags & EXTFILE_FLAG) + outfile = file_open(name, appendmode[file_type & 1]); + else + outfile = file_open(name, writemode[file_type & 1]); if (outfile == NULL) { printf(M_CANTOPEN, name); @@ -748,9 +780,21 @@ error_count++; return 0; } + if( (arj_flags & EXTFILE_FLAG) && (ftell(outfile)!=ext_file_pos) ) { + printf(M_WRONGPOS, name); + printf(M_SKIPPED, name); + skip(); + error_count++; + return 0; + } + printf(M_EXTRACT, name); if (host_os != OS && file_type == BINARY_TYPE) printf(M_DIFFHOST); + if(arj_flags & EXTFILE_FLAG) + printf(" (continued)"); + if(arj_flags & VOLUME_FLAG) + printf(" (cont'd in next .arj)"); printf(" "); crc = CRC_MASK; ---------------------------- end of patch-ad ---------------------------------- >Release-Note: >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 Oct 13 17:36: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from arg1.demon.co.uk (arg1.demon.co.uk [194.222.34.166]) by hub.freebsd.org (Postfix) with ESMTP id 6843237B66C; Fri, 13 Oct 2000 17:36:04 -0700 (PDT) Received: by arg1.demon.co.uk (Postfix, from userid 300) id 9B5789B0D; Sat, 14 Oct 2000 01:36:47 +0100 (BST) Received: from localhost (localhost [127.0.0.1]) by arg1.demon.co.uk (Postfix) with ESMTP id 8DE9A5D05; Sat, 14 Oct 2000 01:36:47 +0100 (BST) Date: Sat, 14 Oct 2000 01:36:47 +0100 (BST) From: Andrew Gordon X-Sender: arg@server.arg.sj.co.uk To: Lauri Laupmaa Cc: stable@freebsd.org, ports@freebsd.org Subject: Re: picobsd & TV application In-Reply-To: <39E771DB.3396.4AA4027@localhost> 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, 13 Oct 2000, Lauri Laupmaa wrote: > Hi > > I wonder if it is possible to make one-floppy-television using > picobsd and some non-X tv application ? For a trivial TV application, try http://www.arg1.demon.co.uk/vesatv.c It's a 200 line program (and many of those are whitespace). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 18:10:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FED837B671 for ; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66240; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A798937B66D; Fri, 13 Oct 2000 18:05:18 -0700 (PDT) Message-Id: <20001014010518.A798937B66D@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:05:18 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21968: Update port: games/wmtimebomb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21968 >Category: ports >Synopsis: Update port: games/wmtimebomb >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 Oct 13 18:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: diff -urN /usr/ports/games/wmtimebomb/Makefile games/wmtimebomb/Makefile --- /usr/ports/games/wmtimebomb/Makefile Sat Apr 15 00:24:08 2000 +++ games/wmtimebomb/Makefile Sat Oct 14 03:25:19 2000 @@ -19,9 +19,6 @@ USE_IMAKE= yes NO_INSTALL_MANPAGES= yes -post-patch: - @${PERL} -pi -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/Imakefile - post-install: @${MKDIR} ${PREFIX}/lib/X11/wmtimebomb ${INSTALL_DATA} ${WRKSRC}/example.modefile ${PREFIX}/lib/X11/wmtimebomb diff -urN /usr/ports/games/wmtimebomb/files/patch-aa games/wmtimebomb/files/patch-aa --- /usr/ports/games/wmtimebomb/files/patch-aa Fri Feb 18 12:36:30 2000 +++ games/wmtimebomb/files/patch-aa Sat Oct 14 03:28:07 2000 @@ -1,14 +1,18 @@ --- Imakefile.orig Mon Nov 16 21:40:24 1998 -+++ Imakefile Thu Feb 17 23:02:07 2000 -@@ -1,7 +1,9 @@ --XPMLIB = -L/usr/X11R6/lib -lXpm -lm -ljpeg -lpng -lz -ltiff -lungif ++++ Imakefile Sat Oct 14 03:27:50 2000 +@@ -1,10 +1,12 @@ +-XPMLIB = -L/usr/X11R6/lib -lXpm -lm -ljpeg -lpng -lz -ltiff -lgif -WMAKER = -L/usr/local/lib -lWMaker -lWINGs -lwraster -lPropList -+XPMLIB = `get-wraster-flags --libs` -+WMAKER = -lWMaker -lWINGs -lPropList -L%%LOCALBASE%%/lib ++XPMLIB = `get-wraster-flags --ldflags` `get-wraster-flags --libs` ++WMAKER = -lWMaker -lWINGs -lPropList -L${LOCALBASE}/lib LOCAL_LIBRARIES = $(WMAKER) $(XPMLIB) $(XLIB) -+ -+EXTRA_INCLUDES= `get-wraster-flags --cflags` -I%%LOCALBASE%%/include ++EXTRA_INCLUDES= `get-wraster-flags --cflags` -I${LOCALBASE}/include ++ SRCS = timebomb.c OBJS = timebomb.o + +-ComplexProgramTarget(wmtimebomb) ++ComplexProgramTargetNoMan(wmtimebomb) + >Release-Note: >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 Oct 13 18:10:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B7FA37B672 for ; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66249; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2A0DC37B66E; Fri, 13 Oct 2000 18:06:37 -0700 (PDT) Message-Id: <20001014010637.2A0DC37B66E@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:06:37 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21969: Update port: games/xataxx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21969 >Category: ports >Synopsis: Update port: games/xataxx >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 Oct 13 18:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xataxx/Makefile games/xataxx/Makefile --- /usr/ports/games/xataxx/Makefile Sat Apr 15 00:24:10 2000 +++ games/xataxx/Makefile Fri Oct 13 21:44:09 2000 @@ -17,13 +17,8 @@ USE_IMAKE= yes MAN6= xataxx.6 -MANCOMPRESSED= no -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xataxx ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/xataxx.man ${PREFIX}/man/man6/xataxx.6 - @${MKDIR} ${PREFIX}/share/xataxx - ${INSTALL_DATA} ${WRKSRC}/lib/* ${PREFIX}/share/xataxx +post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/xataxx ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xataxx diff -urN /usr/ports/games/xataxx/files/patch-aa games/xataxx/files/patch-aa --- /usr/ports/games/xataxx/files/patch-aa Mon Aug 24 10:51:30 1998 +++ games/xataxx/files/patch-aa Fri Oct 13 21:42:34 2000 @@ -1,6 +1,12 @@ ---- Imakefile Tue Oct 29 04:23:52 1991 -+++ /home/andy/tmp/wrk/Imakefile Sat Jul 4 21:29:46 1998 -@@ -8,7 +8,7 @@ +--- Imakefile.orig Tue Oct 29 13:23:52 1991 ++++ Imakefile Fri Oct 13 21:42:28 2000 +@@ -4,11 +4,13 @@ + # in the system default BINDIR + # BINDIR = + ++MANSUFFIX = 6 ++ + # !%^#* DEPLIBS = /* DATADIR is where the boards and bitmaps will be installed */ @@ -9,3 +15,12 @@ LOCAL_LIBRARIES = $(XLIB) SRCS = bits.c board.c colbits.c demo.c display.c main.c nubot.c parse.c zot.c +@@ -19,6 +21,8 @@ + install:: install.lib + + install.lib: ++ @if [ -d $(DESTDIR)$(DATADIR) ]; then set +x; \ ++ else (set -x; $(MKDIRHIER) $(DESTDIR)$(DATADIR)); fi + for i in lib//**/*; do \ + (set -x; install -c $$i $(DATADIR)); \ + done >Release-Note: >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 Oct 13 18:10:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9830837B675 for ; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66271; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 58D8537B503; Fri, 13 Oct 2000 18:07:44 -0700 (PDT) Message-Id: <20001014010744.58D8537B503@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:07:44 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21971: Update port: games/xbl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21971 >Category: ports >Synopsis: Update port: games/xbl >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 Oct 13 18:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support X11BASE properly >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xbl/Makefile games/xbl/Makefile --- /usr/ports/games/xbl/Makefile Mon Jun 5 04:26:20 2000 +++ games/xbl/Makefile Sat Oct 14 03:47:04 2000 @@ -15,7 +15,8 @@ USE_X_PREFIX= yes GNU_CONFIGURE= yes -CFLAGS+= -I${PREFIX}/include +CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \ + LIBS="-L${X11BASE}/lib" MANN= xbl.n .include diff -urN /usr/ports/games/xbl/files/patch-aa games/xbl/files/patch-aa --- /usr/ports/games/xbl/files/patch-aa Tue Dec 1 17:17:36 1998 +++ games/xbl/files/patch-aa Sat Oct 14 03:54:09 2000 @@ -29,7 +29,7 @@ # The default value if overrided by configure if xmkmf or imake exists. # -SCOREDIR=/usr/local/lib/xbl -+SCOREDIR=$(PREFIX)/lib/xbl ++SCOREDIR=$(PREFIX)/lib/X11/xbl @SCOREDIR@ # Directory where put man pages. @@ -54,7 +54,7 @@ -DXBLVERSION=\"$(XBLVERSION)\" \ -DGROUP_GID=$(GROUP_GID) \ - $(USE_SETGID) @DEFS@ -g -+ $(USE_SETGID) @DEFS@ @CFLAGS@ ++ $(USE_SETGID) @DEFS@ @CPPFLAGS@ @CFLAGS@ # For link edit options LDOPTIONS=$(CFLAGS) LDOPTIONS=@LDOPTIONS@ >Release-Note: >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 Oct 13 18:10:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D267037B677 for ; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66289; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 587B637B503; Fri, 13 Oct 2000 18:09:32 -0700 (PDT) Message-Id: <20001014010932.587B637B503@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:09:32 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21973: Update port: games/xisola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21973 >Category: ports >Synopsis: Update port: games/xisola >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 Oct 13 18:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xisola/Makefile games/xisola/Makefile --- /usr/ports/games/xisola/Makefile Sat Apr 15 00:24:22 2000 +++ games/xisola/Makefile Fri Oct 13 22:05:45 2000 @@ -5,22 +5,22 @@ # $FreeBSD: ports/games/xisola/Makefile,v 1.5 2000/04/14 12:27:30 asami Exp $ # -PORTNAME= xisola -PORTVERSION= 1.0 -CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_XCONTRIB} +PORTNAME= xisola +PORTVERSION= 1.0 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_XCONTRIB} MASTER_SITE_SUBDIR= games -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org -WRKSRC= ${WRKDIR}/xisola -USE_IMAKE= yes +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_IMAKE= yes +NO_INSTALL_MANPAGES= yes -do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/xisola ${PREFIX}/bin +post-install: .if !defined(NOPORTDOCS) - @ ${MKDIR} ${PREFIX}/share/doc/xisola - @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xisola + @${MKDIR} ${PREFIX}/share/doc/xisola + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xisola .endif .include diff -urN /usr/ports/games/xisola/files/patch-aa games/xisola/files/patch-aa --- /usr/ports/games/xisola/files/patch-aa Mon May 18 18:10:52 1998 +++ games/xisola/files/patch-aa Fri Oct 13 22:04:30 2000 @@ -1,6 +1,6 @@ ---- Imakefile.orig Wed Mar 31 11:53:11 1993 -+++ Imakefile Mon May 18 11:10:07 1998 -@@ -6,7 +6,7 @@ +--- Imakefile.orig Wed Mar 31 18:53:11 1993 ++++ Imakefile Fri Oct 13 22:04:24 2000 +@@ -6,10 +6,10 @@ EXTRA_INCLUDES = @@ -9,3 +9,7 @@ EXTRA_LOAD_FLAGS = + EXTRA_LIBRARIES = + +-ComplexProgramTarget(xisola) ++ComplexProgramTargetNoMan(xisola) >Release-Note: >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 Oct 13 18:10:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE4B737B676 for ; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA66280; Fri, 13 Oct 2000 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 77AA537B66E; Fri, 13 Oct 2000 18:09:02 -0700 (PDT) Message-Id: <20001014010902.77AA537B66E@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:09:02 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21972: Update port: games/xemeraldia Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21972 >Category: ports >Synopsis: Update port: games/xemeraldia >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 Oct 13 18:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xemeraldia/files/patch-aa games/xemeraldia/files/patch-aa --- /usr/ports/games/xemeraldia/files/patch-aa Sat Dec 11 04:25:16 1999 +++ games/xemeraldia/files/patch-aa Fri Oct 13 21:52:47 2000 @@ -1,5 +1,5 @@ ---- Imakefile.orig Thu Dec 9 19:16:34 1999 -+++ Imakefile Thu Dec 9 19:27:40 1999 +--- Imakefile.orig Fri Oct 13 21:51:53 2000 ++++ Imakefile Fri Oct 13 21:52:37 2000 @@ -1,5 +1,4 @@ -BIN_DIR= /usr/local/bin -HIGH_SCORE_DIR= /usr/local/lib @@ -17,3 +17,12 @@ -D__USE_FIXED_PROTOTYPES__ HEADERS = games.h graphics.h bitmaps.h +@@ -27,7 +25,7 @@ + /*LOCAL_LIBRARIES= $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(EXTENSIONLIB) $(XLIB)*/ + LOCAL_LIBRARIES= XawClientLibs + +-ComplexProgramTarget(xemeraldia) ++ComplexProgramTargetNoMan(xemeraldia) + + AllTarget(XEmeraldia.ad) + InstallAppDefaults(XEmeraldia) >Release-Note: >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 Oct 13 18:20:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A44D37B675 for ; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69522; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E9C5B37B503; Fri, 13 Oct 2000 18:12:23 -0700 (PDT) Message-Id: <20001014011223.E9C5B37B503@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:12:23 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21975: Update port: games/xlaby Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21975 >Category: ports >Synopsis: Update port: games/xlaby >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 Oct 13 18:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix MASTER_SITES - Fix Imakefile breakage under XFree86 4.x - Exclude GPL doc from package - Add WWW: line into pkg-descr New file: patches/patch-aa >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xlaby/Makefile games/xlaby/Makefile --- /usr/ports/games/xlaby/Makefile Thu Jun 22 19:09:39 2000 +++ games/xlaby/Makefile Fri Oct 13 21:06:21 2000 @@ -5,25 +5,19 @@ # $FreeBSD: ports/games/xlaby/Makefile,v 1.8 2000/06/22 05:51:59 will Exp $ # -PORTNAME= xlaby -PORTVERSION= 2.0.1 -CATEGORIES= games -MASTER_SITES= http://www.eleves.ens.fr:8080/home/madore/ \ - ${MASTER_SITE_SUNSITE} +PORTNAME= xlaby +PORTVERSION= 2.0.1 +PORTREVISION= 1 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SUNSITE} \ + ftp://quatramaran.ens.fr/pub/madore/xlaby/ MASTER_SITE_SUBDIR= games/strategy -EXTRACT_SUFX= .tgz +EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org -USE_IMAKE= yes -NO_WRKSUBDIR= yes -MAN6= xlaby.6 -MANCOMPRESSED= no - -do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/xlaby ${PREFIX}/bin - @ ${INSTALL_DATA} ${WRKSRC}/xlaby.man ${PREFIX}/man/man6/xlaby.6 - @ ${MKDIR} ${PREFIX}/share/doc/xlaby - @ ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/xlaby +NO_WRKSUBDIR= yes +USE_IMAKE= yes +MAN6= xlaby.6 .include diff -urN /usr/ports/games/xlaby/files/patch-aa games/xlaby/files/patch-aa --- /usr/ports/games/xlaby/files/patch-aa Thu Jan 1 09:00:00 1970 +++ games/xlaby/files/patch-aa Fri Oct 13 21:00:30 2000 @@ -0,0 +1,21 @@ +--- Imakefile.orig Tue Dec 2 02:59:02 1997 ++++ Imakefile Fri Oct 13 21:00:22 2000 +@@ -13,17 +13,8 @@ + + INSTALLFLAGS = -c -o $(OWNER) -g $(GROUP) + +-# This will install xlaby in /usr/local/bin +-# and man page in /usr/local/man/man6 +-DESTDIR = /usr/local +-BINDIR = /bin +-MANPATH = /man +-MANSOURCEPATH = $(MANPATH)/man +-MANDIR = $(MANSOURCEPATH)6 +-MANSUFFIX = 6x ++MANSUFFIX = 6 + + LOCAL_LIBRARIES = $(XONLYLIB) + + SimpleProgramTarget(xlaby) +- +-install:: install.man diff -urN /usr/ports/games/xlaby/pkg-descr games/xlaby/pkg-descr --- /usr/ports/games/xlaby/pkg-descr Mon Mar 16 05:32:47 1998 +++ games/xlaby/pkg-descr Fri Oct 13 21:03:29 2000 @@ -8,3 +8,5 @@ infuriating, the squares have to be taken in the following order: red, yellow, green and blue. When the blue square is obtained, the game is won. + +WWW: http://www.eleves.ens.fr:8080/home/madore/programs/#prog_xlaby diff -urN /usr/ports/games/xlaby/pkg-plist games/xlaby/pkg-plist --- /usr/ports/games/xlaby/pkg-plist Thu Aug 13 11:23:14 1998 +++ games/xlaby/pkg-plist Fri Oct 13 20:59:24 2000 @@ -1,3 +1 @@ bin/xlaby -share/doc/xlaby/COPYING -@dirrm share/doc/xlaby >Release-Note: >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 Oct 13 18:20:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 049ED37B672 for ; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69512; Fri, 13 Oct 2000 18:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AEB9037B674; Fri, 13 Oct 2000 18:10:15 -0700 (PDT) Message-Id: <20001014011015.AEB9037B674@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:10:15 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21974: Update port: games/xkoules Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21974 >Category: ports >Synopsis: Update port: games/xkoules >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 Oct 13 18:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x - Merge pkg-plist.alpha to pkg-plist New file: patches/patch-ac Remove file: pkg-plist.alpha >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xkoules/Makefile games/xkoules/Makefile --- /usr/ports/games/xkoules/Makefile Tue Oct 10 23:42:39 2000 +++ games/xkoules/Makefile Sat Oct 14 08:32:55 2000 @@ -15,22 +15,19 @@ MAINTAINER= ports@FreeBSD.org -.if ${MACHINE_ARCH} == "alpha" -PLIST= ${PKGDIR}/pkg-plist.alpha +.if ${MACHINE_ARCH} == "i386" +PLIST_SUB= SNDSRV:="" +.else +PLIST_SUB= SNDSRV:="@comment " .endif USE_IMAKE= yes MAN6= xkoules.6 -MANCOMPRESSED= no -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xkoules ${PREFIX}/bin - @${MKDIR} ${PREFIX}/share/xkoules -.if ${MACHINE_ARCH} == "i386" - ${INSTALL_PROGRAM} ${WRKSRC}/koules.sndsrv.freebsd ${PREFIX}/share/xkoules -.endif - ${INSTALL_DATA} ${WRKSRC}/sounds/*.raw ${PREFIX}/share/xkoules - ${INSTALL_MAN} ${WRKSRC}/xkoules.6 ${PREFIX}/man/man6 +post-extract: + @${CP} ${WRKSRC}/xkoules.6 ${WRKSRC}/xkoules.man + +post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/xkoules .for file in ANNOUNCE BUGS Card ChangeLog Koules.FAQ TODO diff -urN /usr/ports/games/xkoules/files/patch-aa games/xkoules/files/patch-aa --- /usr/ports/games/xkoules/files/patch-aa Wed Jun 23 03:07:45 1999 +++ games/xkoules/files/patch-aa Sat Oct 14 09:03:23 2000 @@ -1,5 +1,5 @@ ---- Iconfig.orig Wed Mar 4 14:29:05 1998 -+++ Iconfig Sat Jun 19 16:50:40 1999 +--- Iconfig.orig Thu Mar 5 05:29:05 1998 ++++ Iconfig Sat Oct 14 08:48:54 2000 @@ -34,9 +34,9 @@ recomended for linux*/ /*#define I386ASSEMBLY*/ @@ -7,9 +7,9 @@ -KOULESDIR =/usr/bin/X11 -SOUNDDIR =/usr/local/lib/koules -MANDIR =/usr/local/man/man6 -+KOULESDIR =$(PREFIX)/bin ++KOULESDIR =$(LIBEXECDIR) +SOUNDDIR =$(PREFIX)/share/xkoules -+MANDIR =$(PREFIX)/man/man6 ++MANSUFFIX =6 /*You need some extra libraryes for BSD sockets compatibility?*/ /* TOP_INCLUDES = /* Sun users with GCC need this */ diff -urN /usr/ports/games/xkoules/files/patch-ac games/xkoules/files/patch-ac --- /usr/ports/games/xkoules/files/patch-ac Thu Jan 1 09:00:00 1970 +++ games/xkoules/files/patch-ac Sat Oct 14 08:58:37 2000 @@ -0,0 +1,93 @@ +--- Imakefile.orig Thu Mar 5 03:59:19 1998 ++++ Imakefile Sat Oct 14 08:58:09 2000 +@@ -56,7 +56,7 @@ + + DEFINES = -DONLYANSI -DSOUND $(JOYSTICK1) $(NET) $(MITSHM1) $(HAVEUSLEEP1) $(SYSDEFS) $(JOYSTICK) -Ixlib\ + $(NAMEDEF) $(ASMDEF)\ +- -DSOUNDSERVER=\"$(SOUNDDIR)/$(SOUNDSERVER)\" \ ++ -DSOUNDSERVER=\"$(KOULESDIR)/$(SOUNDSERVER)\" \ + -DSOUNDDIR=\"$(SOUNDDIR)\" \ + -DSOUNDDEV=\"$(SOUNDDEV)\" + #endif +@@ -84,9 +84,6 @@ + all::xkoules + #endif + +-BINDIR = $(KOULESDIR) +-DESTDIR = / +- + ComplexProgramTarget(xkoules) + + +@@ -97,19 +94,15 @@ + install:: $(PROGRAMS) $(SOUNDSERVER) + @echo "Koules directory is " $(KOULESDIR) + @: +- @echo "Instalin man page to " $(MANDIR) +- @mkdirhier $(MANDIR) +- $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR); +- @: + @echo "Creating directory " $(KOULESDIR) +- @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi ++ @if [ ! -d $(KOULESDIR) ]; then $(MKDIRHIER) $(KOULESDIR); fi + @: + @if [ "$(INSTALLSOUND)" = "True" ]; \ + then \ + echo "Creating directory " $(SOUNDDIR); \ +- if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \ +- echo "Copying sound server to directory " $(SOUNDDIR); \ +- $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \ ++ if [ ! -d $(SOUNDDIR) ]; then $(MKDIRHIER) $(SOUNDDIR); fi; \ ++ echo "Copying sound server to directory " $(KOULESDIR); \ ++ $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(KOULESDIR); \ + echo "Copying sound files into directory " $(SOUNDDIR); \ + cd ./sounds; set -x; \ + for file in *.raw; do \ +@@ -125,19 +118,15 @@ + install:: $(PROGRAMS) $(SOUNDSERVER) + @echo "Koules directory is " $(KOULESDIR) + @: +- @echo "Instalin man page to " $(MANDIR) +- @mkdirhier $(MANDIR) +- $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR); +- @: + @echo "Creating directory " $(KOULESDIR) +- @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi ++ @if [ ! -d $(KOULESDIR) ]; then $(MKDIRHIER) $(KOULESDIR); fi + @: + @if [ "$(INSTALLSOUND)" = "True" ]; \ + then \ + echo "Creating directory " $(SOUNDDIR); \ +- if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \ +- echo "Copying sound server to directory " $(SOUNDDIR); \ +- $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \ ++ if [ ! -d $(SOUNDDIR) ]; then $(MKDIRHIER) $(SOUNDDIR); fi; \ ++ echo "Copying sound server to directory " $(KOULESDIR); \ ++ $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(KOULESDIR); \ + echo "Copying sound files into directory " $(SOUNDDIR); \ + cd ./sounds; set -x; \ + for file in *.raw; do \ +@@ -155,19 +144,15 @@ + install:: $(PROGRAMS) $(SOUNDSERVER) + @echo "Koules directory is " $(KOULESDIR) + @: +- @echo "Instalin man page to " $(MANDIR) +- @mkdirhier $(MANDIR) +- $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR); +- @: + @echo "Creating directory " $(KOULESDIR) +- @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi ++ @if [ ! -d $(KOULESDIR) ]; then $(MKDIRHIER) $(KOULESDIR); fi + @: + @if [ "$(INSTALLSOUND)" = "True" ]; \ + then \ + echo "Creating directory " $(SOUNDDIR); \ +- if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \ +- echo "Copying sound server to directory " $(SOUNDDIR); \ +- $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \ ++ if [ ! -d $(SOUNDDIR) ]; then $(MKDIRHIER) $(SOUNDDIR); fi; \ ++ echo "Copying sound server to directory " $(KOULESDIR); \ ++ $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(KOULESDIR); \ + echo "Copying sound files into directory " $(SOUNDDIR); \ + cd ./sounds; set -x; \ + for file in *.raw; do \ diff -urN /usr/ports/games/xkoules/pkg-plist games/xkoules/pkg-plist --- /usr/ports/games/xkoules/pkg-plist Thu Jun 22 19:05:54 2000 +++ games/xkoules/pkg-plist Sat Oct 14 08:44:15 2000 @@ -5,13 +5,13 @@ share/doc/xkoules/ChangeLog share/doc/xkoules/Koules.FAQ share/doc/xkoules/TODO -share/xkoules/koules.sndsrv.freebsd -share/xkoules/colize.raw -share/xkoules/creator1.raw -share/xkoules/creator2.raw -share/xkoules/destroy1.raw -share/xkoules/destroy2.raw -share/xkoules/end.raw -share/xkoules/start.raw +%%SNDSRV:%%libexec/koules.sndsrv.freebsd +%%SNDSRV:%%share/xkoules/colize.raw +%%SNDSRV:%%share/xkoules/creator1.raw +%%SNDSRV:%%share/xkoules/creator2.raw +%%SNDSRV:%%share/xkoules/destroy1.raw +%%SNDSRV:%%share/xkoules/destroy2.raw +%%SNDSRV:%%share/xkoules/end.raw +%%SNDSRV:%%share/xkoules/start.raw +%%SNDSRV:%%@dirrm share/xkoules @dirrm share/doc/xkoules -@dirrm share/xkoules diff -urN /usr/ports/games/xkoules/pkg-plist.alpha games/xkoules/pkg-plist.alpha --- /usr/ports/games/xkoules/pkg-plist.alpha Thu Jun 22 19:05:54 2000 +++ games/xkoules/pkg-plist.alpha Thu Jan 1 09:00:00 1970 @@ -1,16 +0,0 @@ -bin/xkoules -share/doc/xkoules/ANNOUNCE -share/doc/xkoules/BUGS -share/doc/xkoules/Card -share/doc/xkoules/ChangeLog -share/doc/xkoules/Koules.FAQ -share/doc/xkoules/TODO -share/xkoules/colize.raw -share/xkoules/creator1.raw -share/xkoules/creator2.raw -share/xkoules/destroy1.raw -share/xkoules/destroy2.raw -share/xkoules/end.raw -share/xkoules/start.raw -@dirrm share/doc/xkoules -@dirrm share/xkoules >Release-Note: >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 Oct 13 18:20:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FCDB37B678 for ; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69537; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id F25EE37B66E; Fri, 13 Oct 2000 18:13:07 -0700 (PDT) Message-Id: <20001014011307.F25EE37B66E@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:13:07 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21976: Update port: games/xoids Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21976 >Category: ports >Synopsis: Update port: games/xoids >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 Oct 13 18:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support CFLAGS properly - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xoids/Makefile games/xoids/Makefile --- /usr/ports/games/xoids/Makefile Thu Aug 3 21:14:05 2000 +++ games/xoids/Makefile Sat Oct 14 00:57:46 2000 @@ -5,25 +5,25 @@ # $FreeBSD: ports/games/xoids/Makefile,v 1.9 2000/08/03 09:24:15 asami Exp $ # -PORTNAME= xoids -PORTVERSION= 1.5 -CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_XCONTRIB} +PORTNAME= xoids +PORTVERSION= 1.5 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_XCONTRIB} MASTER_SITE_SUBDIR= games -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org -USE_IMAKE= yes -USE_XPM= yes -MAN6= xoids.6 -MANCOMPRESSED= no +USE_IMAKE= yes +USE_XPM= yes +MAN6= xoids.6 -do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/xoids ${PREFIX}/bin - @ ${INSTALL_DATA} ${WRKSRC}/xoids.1x ${PREFIX}/man/man6/xoids.6 +post-extract: + @${CP} ${WRKSRC}/xoids.1x ${WRKSRC}/xoids.man + +post-install: .if !defined(NOPORTDOCS) - @ ${MKDIR} ${PREFIX}/share/doc/xoids - @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xoids + @${MKDIR} ${PREFIX}/share/doc/xoids + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xoids .endif .include diff -urN /usr/ports/games/xoids/files/patch-aa games/xoids/files/patch-aa --- /usr/ports/games/xoids/files/patch-aa Wed Jun 23 02:44:08 1999 +++ games/xoids/files/patch-aa Sat Oct 14 00:59:29 2000 @@ -1,6 +1,20 @@ ---- Imakefile.orig Tue Jun 25 01:42:14 1996 -+++ Imakefile Sun Jun 20 19:18:26 1999 -@@ -19,11 +19,13 @@ +--- Imakefile.orig Tue Jun 25 15:42:14 1996 ++++ Imakefile Sat Oct 14 00:59:00 2000 +@@ -6,11 +6,12 @@ + XPM_INC_FLAGS = -I/usr/local/xpm/include + XPM_LIB_FLAGS = -L/usr/local/xpm/lib -lXpm + ++MANSUFFIX = 6 ++ + XCOMM You shouldn't have to change anything below unless you need to + XCOMM add a new architecture. + #define MyNull + +-CDEBUGFLAGS = -O + OS_C_FLAGS = + OS_LIB_FLAGS = + OS_DEFINES = +@@ -19,25 +20,23 @@ #if defined(SunArchitecture) #endif @@ -10,8 +24,23 @@ #endif #if defined(FreeBSDArchitecture) -+XPM_INC_FLAGS = -I$(X11BASE)/include/X11 ++XPM_INC_FLAGS = -I$(INCROOT)/X11 +XPM_LIB_FLAGS = -lXpm #endif SRCS = init.c oids.c oids_x.c + OBJS = init.o oids.o oids_x.o + + INCLUDES = $(XPM_INC_FLAGS) +-CCOPTIONS = $(OS_C_FLAGS) + DEFINES = $(OS_DEFINES) + EXTRA_LIBRARIES = $(XPM_LIB_FLAGS) -lX11 -lm $(OS_LIB_FLAGS) + +-AllTarget(xoids) +-NormalProgramTarget(xoids, $(OBJS), MyNull, MyNull, MyNull) +-InstallProgram(xoids,$(BINDIR)) +-DependTarget() ++ComplexProgramTarget(xoids) + + XCOMM End of Imakefile + >Release-Note: >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 Oct 13 18:20:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA72C37B67A for ; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69547; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DB65B37B66C; Fri, 13 Oct 2000 18:13:50 -0700 (PDT) Message-Id: <20001014011350.DB65B37B66C@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:13:50 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21977: Update port: games/xspacewarp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21977 >Category: ports >Synopsis: Update port: games/xspacewarp >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 Oct 13 18:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Support CXX/CXXFLAGS properly - Fix Imakefile breakage under XFree86 4.x New file: patches/patch-ad >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xspacewarp/Makefile games/xspacewarp/Makefile --- /usr/ports/games/xspacewarp/Makefile Sat Apr 15 00:24:41 2000 +++ games/xspacewarp/Makefile Sat Oct 14 05:59:47 2000 @@ -5,18 +5,18 @@ # $FreeBSD: ports/games/xspacewarp/Makefile,v 1.5 2000/04/14 12:28:24 asami Exp $ # -PORTNAME= xspacewarp -PORTVERSION= 1.2 -CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_XCONTRIB} +PORTNAME= xspacewarp +PORTVERSION= 1.2 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_XCONTRIB} MASTER_SITE_SUBDIR= games -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org -USE_IMAKE= yes +USE_IMAKE= yes +NO_INSTALL_MANPAGES= yes -do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/xspacewarp ${PREFIX}/bin - @ ${INSTALL_DATA} ${WRKSRC}/XSpacewarp.app_def ${X11BASE}/lib/X11/app-defaults/XSpacewarp +post-extract: + @${CP} ${WRKSRC}/XSpacewarp.app_def ${WRKSRC}/XSpacewarp.ad .include diff -urN /usr/ports/games/xspacewarp/files/patch-ad games/xspacewarp/files/patch-ad --- /usr/ports/games/xspacewarp/files/patch-ad Thu Jan 1 09:00:00 1970 +++ games/xspacewarp/files/patch-ad Sat Oct 14 06:14:29 2000 @@ -0,0 +1,23 @@ +--- Imakefile.orig Fri Dec 29 16:39:19 1995 ++++ Imakefile Sat Oct 14 06:14:22 2000 +@@ -2,12 +2,7 @@ + + XCOMM Use the C++ compiler of your choice. + +-CC = g++ +- +-XCOMM Suffix rule for ".cc" files +- +-.cc.o: +- $(CC) $(CFLAGS) -c $< ++CC = $(CXX) + + LOCAL_LIBRARIES = XawClientLibs + SYS_LIBRARIES = -lm +@@ -26,4 +21,5 @@ + draw_summary.o draw_intro.o draw_mission.o draw_orientation.o \ + draw_winlose.o + +-ComplexProgramTarget(xspacewarp) ++ComplexProgramTargetNoMan(xspacewarp) ++InstallAppDefaults(XSpacewarp) >Release-Note: >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 Oct 13 18:20:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C2F0737B67D for ; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69556; Fri, 13 Oct 2000 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 14AA537B66F; Fri, 13 Oct 2000 18:14:53 -0700 (PDT) Message-Id: <20001014011453.14AA537B66F@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:14:53 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21978: Update port: games/xvier Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21978 >Category: ports >Synopsis: Update port: games/xvier >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 Oct 13 18:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xvier/Makefile games/xvier/Makefile --- /usr/ports/games/xvier/Makefile Tue Sep 26 20:10:06 2000 +++ games/xvier/Makefile Sat Oct 14 07:11:05 2000 @@ -10,18 +10,16 @@ CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= games/strategy -DISTFILES= xvier.tar.Z +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_IMAKE= yes MAN6= xvier.6 -MANCOMPRESSED= no -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/xvier ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/xvier_prog ${PREFIX}/libexec - ${INSTALL_MAN} ${WRKSRC}/xvier.man ${PREFIX}/man/man6/xvier.6 +post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/xvier ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xvier diff -urN /usr/ports/games/xvier/files/patch-aa games/xvier/files/patch-aa --- /usr/ports/games/xvier/files/patch-aa Sun Apr 2 10:00:24 2000 +++ games/xvier/files/patch-aa Sat Oct 14 07:10:41 2000 @@ -1,11 +1,22 @@ --- Imakefile.orig Wed Jul 29 09:07:09 1992 -+++ Imakefile Fri Mar 31 05:52:10 2000 -@@ -13,7 +13,7 @@ ++++ Imakefile Sat Oct 14 07:10:05 2000 +@@ -13,10 +13,12 @@ #NO_GETDTABSIZE = -DNO_GETDTABSIZE #PROGNAME = $(LIBDIR)$(PATHSEP)xvier_prog -PROGNAME = /usr/games/lib/xvier_prog -+PROGNAME = $(PROJECTROOT)/libexec/xvier_prog ++PROGNAME = $(LIBEXECDIR)/xvier_prog DEFINES = $(XVIER_ASPECT) $(NO_FD_SET) $(NO_SELECT) \ $(NO_GETDTABSIZE) -DPROGNAME=\"$(PROGNAME)\" ++MANSUFFIX = 6 ++ + PROGRAMS = xvier xvier_prog + + SRCS1 = xvier.c +@@ -27,4 +29,4 @@ + ComplexProgramTarget_1(xvier, $(XLIB), /**/) + NormalProgramTarget(xvier_prog, $(OBJS2), /**/, /**/, /**/) + +-InstallProgram(xvier_prog, $(PROGNAME)) ++InstallProgram(xvier_prog, $(LIBEXECDIR)) >Release-Note: >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 Oct 13 18:20:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43FF337B671 for ; Fri, 13 Oct 2000 18:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69576; Fri, 13 Oct 2000 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4A60537B66E; Fri, 13 Oct 2000 18:18:52 -0700 (PDT) Message-Id: <20001014011852.4A60537B66E@hub.freebsd.org> Date: Fri, 13 Oct 2000 18:18:52 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21979: Update port: Patchkit for fixing 'xpuzzles' ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21979 >Category: ports >Synopsis: Update port: Patchkit for fixing 'xpuzzles' ports >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 Oct 13 18:20:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1.1-RELEASE i386 >Organization: >Environment: >Description: - Fix Imakefile breakage under XFree86 4.x >How-To-Repeat: >Fix: # 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: # # games_xcubes.patch # games_xdino.patch # games_xhexanons.patch # games_xmball.patch # games_xmlink.patch # games_xoct.patch # games_xpanex.patch # games_xpyraminx.patch # games_xrubic.patch # games_xskewb.patch # games_xtriangles.patch # echo x - games_xcubes.patch sed 's/^X//' >games_xcubes.patch << 'END-of-games_xcubes.patch' Xdiff -urN /usr/ports/games/xcubes/Makefile games/xcubes/Makefile X--- /usr/ports/games/xcubes/Makefile Sat Apr 15 00:24:14 2000 X+++ games/xcubes/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= nakai@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xcubes X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xcubes.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xcubes ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Cubes.ad ${PREFIX}/lib/X11/app-defaults/Cubes X- ${INSTALL_MAN} ${WRKSRC}/xcubes.man ${PREFIX}/man/man1/xcubes.1 X+ ${INSTALL_MAN} ${WRKSRC}/xcubes.man ${MANPREFIX}/man/man1/xcubes.1 X X .include END-of-games_xcubes.patch echo x - games_xdino.patch sed 's/^X//' >games_xdino.patch << 'END-of-games_xdino.patch' Xdiff -urN /usr/ports/games/xdino/Makefile games/xdino/Makefile X--- /usr/ports/games/xdino/Makefile Sat Apr 15 00:24:15 2000 X+++ games/xdino/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= nakai@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xdino X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xdino.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xdino ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Dino.ad ${PREFIX}/lib/X11/app-defaults/Dino X- ${INSTALL_MAN} ${WRKSRC}/xdino.man ${PREFIX}/man/man1/xdino.1 X+ ${INSTALL_MAN} ${WRKSRC}/xdino.man ${MANPREFIX}/man/man1/xdino.1 X X .include END-of-games_xdino.patch echo x - games_xhexanons.patch sed 's/^X//' >games_xhexanons.patch << 'END-of-games_xhexanons.patch' Xdiff -urN /usr/ports/games/xhexagons/Makefile games/xhexagons/Makefile X--- /usr/ports/games/xhexagons/Makefile Sat Apr 15 00:24:21 2000 X+++ games/xhexagons/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xhexagons X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xhexagons.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xhexagons ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Hexagons.ad ${PREFIX}/lib/X11/app-defaults/Hexagons X- ${INSTALL_MAN} ${WRKSRC}/xhexagons.man ${PREFIX}/man/man1/xhexagons.1 X+ ${INSTALL_MAN} ${WRKSRC}/xhexagons.man ${MANPREFIX}/man/man1/xhexagons.1 X X .include END-of-games_xhexanons.patch echo x - games_xmball.patch sed 's/^X//' >games_xmball.patch << 'END-of-games_xmball.patch' Xdiff -urN /usr/ports/games/xmball/Makefile games/xmball/Makefile X--- /usr/ports/games/xmball/Makefile Sat Apr 15 00:24:25 2000 X+++ games/xmball/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xmball X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xmball.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xmball ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Mball.ad ${PREFIX}/lib/X11/app-defaults/Mball X- ${INSTALL_MAN} ${WRKSRC}/xmball.man ${PREFIX}/man/man1/xmball.1 X+ ${INSTALL_MAN} ${WRKSRC}/xmball.man ${MANPREFIX}/man/man1/xmball.1 X X .include END-of-games_xmball.patch echo x - games_xmlink.patch sed 's/^X//' >games_xmlink.patch << 'END-of-games_xmlink.patch' Xdiff -urN /usr/ports/games/xmlink/Makefile games/xmlink/Makefile X--- /usr/ports/games/xmlink/Makefile Sat Apr 15 00:24:27 2000 X+++ games/xmlink/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xmlink X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xmlink.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xmlink ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Mlink.ad ${PREFIX}/lib/X11/app-defaults/Mlink X- ${INSTALL_MAN} ${WRKSRC}/xmlink.man ${PREFIX}/man/man1/xmlink.1 X+ ${INSTALL_MAN} ${WRKSRC}/xmlink.man ${MANPREFIX}/man/man1/xmlink.1 X X .include END-of-games_xmlink.patch echo x - games_xoct.patch sed 's/^X//' >games_xoct.patch << 'END-of-games_xoct.patch' Xdiff -urN /usr/ports/games/xoct/Makefile games/xoct/Makefile X--- /usr/ports/games/xoct/Makefile Sat Apr 15 00:24:29 2000 X+++ games/xoct/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xoct X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xoct.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xoct ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Oct.ad ${PREFIX}/lib/X11/app-defaults/Oct X- ${INSTALL_MAN} ${WRKSRC}/xoct.man ${PREFIX}/man/man1/xoct.1 X+ ${INSTALL_MAN} ${WRKSRC}/xoct.man ${MANPREFIX}/man/man1/xoct.1 X X .include END-of-games_xoct.patch echo x - games_xpanex.patch sed 's/^X//' >games_xpanex.patch << 'END-of-games_xpanex.patch' Xdiff -urN /usr/ports/games/xpanex/Makefile games/xpanex/Makefile X--- /usr/ports/games/xpanex/Makefile Sat Apr 15 00:24:31 2000 X+++ games/xpanex/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xpanex X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xpanex.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xpanex ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Panex.ad ${PREFIX}/lib/X11/app-defaults/Panex X- ${INSTALL_MAN} ${WRKSRC}/xpanex.man ${PREFIX}/man/man1/xpanex.1 X+ ${INSTALL_MAN} ${WRKSRC}/xpanex.man ${MANPREFIX}/man/man1/xpanex.1 X X .include END-of-games_xpanex.patch echo x - games_xpyraminx.patch sed 's/^X//' >games_xpyraminx.patch << 'END-of-games_xpyraminx.patch' Xdiff -urN /usr/ports/games/xpyraminx/Makefile games/xpyraminx/Makefile X--- /usr/ports/games/xpyraminx/Makefile Sat Apr 15 00:24:34 2000 X+++ games/xpyraminx/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xpyraminx X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xpyraminx.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xpyraminx ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Pyraminx.ad ${PREFIX}/lib/X11/app-defaults/Pyraminx X- ${INSTALL_MAN} ${WRKSRC}/xpyraminx.man ${PREFIX}/man/man1/xpyraminx.1 X+ ${INSTALL_MAN} ${WRKSRC}/xpyraminx.man ${MANPREFIX}/man/man1/xpyraminx.1 X X .include END-of-games_xpyraminx.patch echo x - games_xrubic.patch sed 's/^X//' >games_xrubic.patch << 'END-of-games_xrubic.patch' Xdiff -urN /usr/ports/games/xrubik/Makefile games/xrubic/Makefile X--- /usr/ports/games/xrubik/Makefile Sat Apr 15 00:24:37 2000 X+++ games/xrubic/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= nakai@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xrubik X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xrubik.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xrubik ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Rubik.ad ${PREFIX}/lib/X11/app-defaults/Rubik X- ${INSTALL_MAN} ${WRKSRC}/xrubik.man ${PREFIX}/man/man1/xrubik.1 X+ ${INSTALL_MAN} ${WRKSRC}/xrubik.man ${MANPREFIX}/man/man1/xrubik.1 X X .include END-of-games_xrubic.patch echo x - games_xskewb.patch sed 's/^X//' >games_xskewb.patch << 'END-of-games_xskewb.patch' Xdiff -urN /usr/ports/games/xskewb/Makefile games/xskewb/Makefile X--- /usr/ports/games/xskewb/Makefile Sat Apr 15 00:24:40 2000 X+++ games/xskewb/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,14 +13,15 @@ X X MAINTAINER= ports@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xskewb X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xskewb.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xskewb ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Skewb.ad ${PREFIX}/lib/X11/app-defaults/Skewb X- ${INSTALL_MAN} ${WRKSRC}/xskewb.man ${PREFIX}/man/man1/xskewb.1 X+ ${INSTALL_MAN} ${WRKSRC}/xskewb.man ${MANPREFIX}/man/man1/xskewb.1 X X .include END-of-games_xskewb.patch echo x - games_xtriangles.patch sed 's/^X//' >games_xtriangles.patch << 'END-of-games_xtriangles.patch' Xdiff -urN /usr/ports/games/xtriangles/Makefile games/xtriangles/Makefile X--- /usr/ports/games/xtriangles/Makefile Sat Apr 15 00:24:43 2000 X+++ games/xtriangles/Makefile Sat Oct 14 00:00:00 2000 X@@ -13,15 +13,16 @@ X X MAINTAINER= nakai@FreeBSD.org X X-WRKSRC= ${WRKDIR}/xtriangles X+WRKSRC= ${WRKDIR}/${PORTNAME} X USE_IMAKE= yes X MAN1= xtriangles.1 X MANCOMPRESSED= no X+XFREE86_HTML_MAN= no X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/xtriangles ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/Triangles.ad \ X ${PREFIX}/lib/X11/app-defaults/Triangles X- ${INSTALL_MAN} ${WRKSRC}/xtriangles.man ${PREFIX}/man/man1/xtriangles.1 X+ ${INSTALL_MAN} ${WRKSRC}/xtriangles.man ${MANPREFIX}/man/man1/xtriangles.1 X X .include END-of-games_xtriangles.patch exit >Release-Note: >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 Oct 13 18:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E100637B670 for ; Fri, 13 Oct 2000 18:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA75955; Fri, 13 Oct 2000 18:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.42.130.87]) by hub.freebsd.org (Postfix) with ESMTP id 2E91A37B66C for ; Fri, 13 Oct 2000 18:38:51 -0700 (PDT) Received: from gabby.gsicomp.on.ca (gabby.gsicomp.on.ca [192.168.0.2]) by xena.gsicomp.on.ca (8.10.1/8.9.2) with ESMTP id e9E1coD11319 for ; Fri, 13 Oct 2000 21:38:50 -0400 (EDT) (envelope-from root@gabby.gsicomp.on.ca) Received: (from root@localhost) by gabby.gsicomp.on.ca (8.9.3/8.9.3) id VAA32702; Fri, 13 Oct 2000 21:38:49 -0400 (EDT) (envelope-from root) Message-Id: <200010140138.VAA32702@gabby.gsicomp.on.ca> Date: Fri, 13 Oct 2000 21:38:49 -0400 (EDT) From: matt@gsicomp.on.ca Reply-To: matt@gsicomp.on.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21980: maintainer update of net/sntop to new version Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21980 >Category: ports >Synopsis: maintainer update of net/sntop to new version >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 Oct 13 18:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew Emmerton >Release: FreeBSD 4.1-RELEASE i386 >Organization: GSI Computer Services >Environment: >Description: Update net/sntop to new version >How-To-Repeat: >Fix: --- /usr/ports/net/sntop/Makefile.orig Fri Oct 13 21:31:20 2000 +++ /usr/ports/net/sntop/Makefile Fri Oct 13 21:27:52 2000 @@ -6,7 +6,7 @@ # PORTNAME= sntop -PORTVERSION= 1.2.0 +PORTVERSION= 1.2.1 CATEGORIES= net MASTER_SITES= ftp://sntop.sourceforge.net/pub/sntop/ >Release-Note: >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 Oct 13 19:47:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4A9A37B66D; Fri, 13 Oct 2000 19:47:54 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA03210; Fri, 13 Oct 2000 19:47:54 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Fri, 13 Oct 2000 19:47:54 -0700 (PDT) From: Message-Id: <200010140247.TAA03210@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/21960: Update ports:www/lynx-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports:www/lynx-current Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: trevor Responsible-Changed-When: Fri Oct 13 19:47:12 PDT 2000 Responsible-Changed-Why: to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21960 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 19:49:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E01DC37B66E; Fri, 13 Oct 2000 19:49:14 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA03677; Fri, 13 Oct 2000 19:49:14 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Fri, 13 Oct 2000 19:49:14 -0700 (PDT) From: Message-Id: <200010140249.TAA03677@freefall.freebsd.org> To: trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21961: Update the Wine port to 2000.10.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update the Wine port to 2000.10.02 Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Fri Oct 13 19:48:02 PDT 2000 Responsible-Changed-Why: I'll look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21961 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 19:57:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0CF937B66D; Fri, 13 Oct 2000 19:57:14 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA06344; Fri, 13 Oct 2000 19:57:14 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Fri, 13 Oct 2000 19:57:14 -0700 (PDT) From: Message-Id: <200010140257.TAA06344@freefall.freebsd.org> To: srodberg@visi.com, trevor@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21952: make readmes in ports is broke Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make readmes in ports is broke State-Changed-From-To: open->feedback State-Changed-By: trevor State-Changed-When: Fri Oct 13 19:54:03 PDT 2000 State-Changed-Why: This same problem was reported by Dann Lunsford in PR 21851. Does his patch work for you? http://www.freebsd.org/cgi/query-pr.cgi?pr=21952 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 19:58:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 2B1AD37B66F; Fri, 13 Oct 2000 19:58:33 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 69E0C1916; Fri, 13 Oct 2000 21:59:15 -0500 (EST) Date: Fri, 13 Oct 2000 21:59:15 -0500 From: Will Andrews To: Neil Blakey-Milner Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/Tools/scripts/mkptools mkpclean mkpextr mkpmerge mkpskel Message-ID: <20001013215915.I95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Neil Blakey-Milner , ports@FreeBSD.org References: <200010140245.TAA02481@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010140245.TAA02481@freefall.freebsd.org>; from nbm@FreeBSD.org on Fri, Oct 13, 2000 at 07:45:49PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 13, 2000 at 07:45:49PM -0700, Neil Blakey-Milner wrote: > Added files: > Tools/scripts/mkptools mkpclean mkpextr mkpmerge mkpskel > Log: > Add the first efforts on my mkptools, the successor to makeport.pl. > > mkptools are broken up into simple scripts: Wow! Cool! 8-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 20:14: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id A6B0A37B66C; Fri, 13 Oct 2000 20:14:01 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 169AE1916; Fri, 13 Oct 2000 22:14:41 -0500 (EST) Date: Fri, 13 Oct 2000 22:14:41 -0500 From: Will Andrews To: trini0 Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: qt22-2.2.0 Message-ID: <20001013221441.J95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , trini0 , will@FreeBSD.ORG, ports@FreeBSD.ORG References: <39E33455.64BD8643@optonline.com> <20001010151414.Y1067@puck.firepipe.net> <39E5C982.841570B4@optonline.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E5C982.841570B4@optonline.com>; from trini0@optonline.net on Thu, Oct 12, 2000 at 10:24:02AM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 10:24:02AM -0400, trini0 wrote: > Well, the new version does require qt2.2 to support KDE2 and the new seti@home > client ver3. Here is what I did. I went to qt145, qt21 & qt22 ports > directories and make deinstall. qt21 didn't know how, I guess it wasn't on the > system, but the other two uninstalled and I ran make clean on both ports. I > made install on qt2.2.0, and started the configure script that comes with > ksetiwatch, and it still reports qt being ver 2.1 beta 2. Did I do what you > said wrong? Where are the files kept for qt so that I might physically delete > them. Thanks First, look for them using pkg_info -Ia | grep -i qt And delete all packages found herein. ;-P -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 20:19: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id C08EA37B66F for ; Fri, 13 Oct 2000 20:19:05 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 1CF321916; Fri, 13 Oct 2000 22:19:48 -0500 (EST) Date: Fri, 13 Oct 2000 22:19:48 -0500 From: Will Andrews To: Alfred Perlstein Cc: ports@FreeBSD.ORG Subject: Re: making concurrant builds safe. Message-ID: <20001013221948.K95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Alfred Perlstein , ports@FreeBSD.ORG References: <20001012191713.E272@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001012191713.E272@fw.wintelcom.net>; from bright@wintelcom.net on Thu, Oct 12, 2000 at 07:17:13PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 12, 2000 at 07:17:13PM -0700, Alfred Perlstein wrote: > It might make sense to use the lockf(1) utility to make sure that > two ports that started to build at the same time and had the same > dependancy don't attempt to build the same dependancy at the same > time? I think a simple lockf on the makefile would be enough to > support that. This idea! I like! Teehee. ;-P -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 20:26:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4798537B66C; Fri, 13 Oct 2000 20:26:55 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA17195; Fri, 13 Oct 2000 20:26:55 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Fri, 13 Oct 2000 20:26:55 -0700 (PDT) From: Message-Id: <200010140326.UAA17195@freefall.freebsd.org> To: roman@xpert.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21964: unarj doesn't create directories nor handle multi-volumes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: unarj doesn't create directories nor handle multi-volumes State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Fri Oct 13 20:25:57 PDT 2000 State-Changed-Why: These patches should be submitted to the unarj author(s) for integration in their tree.. extensive hackery (especially to add features) does not belong in ports tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=21964 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 13 23:43:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns.internet.dk (ns.internet.dk [194.19.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 599F237B66E for ; Fri, 13 Oct 2000 23:43:32 -0700 (PDT) Received: (from uucp@localhost) by ns.internet.dk (8.9.3/8.9.3) with UUCP id IAA46161; Sat, 14 Oct 2000 08:43:23 +0200 (CEST) (envelope-from leif@neland.dk) Received: from localhost (leif@localhost) by arnold.neland.dk (8.11.0/8.11.0) with ESMTP id e9E6hBV87255; Sat, 14 Oct 2000 08:43:15 +0200 (CEST) (envelope-from leif@neland.dk) Date: Sat, 14 Oct 2000 08:43:10 +0200 (CEST) From: Leif Neland To: Brett Taylor Cc: Szilveszter Adam , freebsd-ports@freebsd.org Subject: Re: Ports won't build on stable 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 Fri, 13 Oct 2000, Brett Taylor wrote: > Hi, > > On Fri, 13 Oct 2000, Leif Neland wrote: > > > A: Could the ports tarball be created from a cvsup'ped tree with > > whatever information is needed for cvs to recognize it as its own > > child? > > I guess it could. > > > B: Shouldn't the need to erase a tarballed tree be mentioned in the > > UPDATING? > > You don't need to erase the whole tree, just an pkg/ or patches/ > directories that don't get removed. > Now you tell me! Luckily I'm at flat rate at home, and permanently connected at work. If so, the bsd.port.mk shouldn't test for the presence of pkg/ , but the absence of pkg-* Perhaps cvsup should have an option which goes further than exact mode, where it was allowed to delete files witch were deleted on the server, even if they were not checked out by cvsup. An option to make cvsup to delete all unknown file is probably so dangerous it should be interactive. - - - - - - - If I had more machines to update the ports tree on, it would be worth to make a script, which traversed the tree, and 1: removed pkg/ and patches/ 2: removed all ports without a pkg-* (assuming ports created from tarball, wont be removed by cvsup if not present on server) Leif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 0:50:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58EDA37B675 for ; Sat, 14 Oct 2000 00:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA10755; Sat, 14 Oct 2000 00:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 14 Oct 2000 00:50:02 -0700 (PDT) Message-Id: <200010140750.AAA10755@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Subject: Re: ports/21952: make readmes in ports is broke Reply-To: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21952; it has been noted by GNATS. From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) To: Cc: srodberg@visi.com, freebsd-gnats-submit@FreeBSD.org, Dann Lunsford Subject: Re: ports/21952: make readmes in ports is broke Date: 14 Oct 2000 00:40:01 -0700 * This same problem was reported by Dann Lunsford in PR 21851. * Does his patch work for you? Actually, bsd.port.subdir.mk was broken a long time ago -- the recent update just made the problem worse. Please try the following. It seems to work fine for ports that define MASTERDIR and/or COMMENT/DESCR. I've also added inclusion of the comment file in the category level. Satoshi ------- Index: Mk/bsd.port.subdir.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.subdir.mk,v retrieving revision 1.38 diff -u -r1.38 bsd.port.subdir.mk --- Mk/bsd.port.subdir.mk 2000/08/08 14:56:46 1.38 +++ Mk/bsd.port.subdir.mk 2000/10/14 03:49:18 @@ -195,6 +195,8 @@ .else README= ${TEMPLATES}/README.category .endif +COMMENT?= ${.CURDIR}/pkg/COMMENT +DESCR?= ${.CURDIR}/pkg/DESCR HTMLIFY= sed -e 's/&/\&/g' -e 's/>/\>/g' -e 's/'"`cd ${entry}; make package-name | ${HTMLIFY}`: " >> $@.tmp .endif -.if exists(${entry}/pkg/COMMENT) - @${HTMLIFY} ${entry}/pkg/COMMENT >> $@.tmp -.else - @echo "(no description)" >> $@.tmp -.endif + @cat `cd ${entry}; make -V COMMENT` | ${HTMLIFY} >> $@.tmp .endfor @sort -t '>' +1 -2 $@.tmp > $@.tmp2 -.if exists(${.CURDIR}/pkg/DESCR) - @${HTMLIFY} ${.CURDIR}/pkg/DESCR > $@.tmp3 +.if exists(${DESCR}) + @${HTMLIFY} ${DESCR} > $@.tmp3 .else @> $@.tmp3 .endif +.if exists(${COMMENT}) + @${HTMLIFY} ${COMMENT} > $@.tmp4 +.else + @> $@.tmp4 +.endif @cat ${README} | \ sed -e 's/%%CATEGORY%%/'"`basename ${.CURDIR}`"'/g' \ + -e '/%%COMMENT%%/r$@.tmp4' \ + -e '/%%COMMENT%%/d' \ -e '/%%DESCR%%/r$@.tmp3' \ -e '/%%DESCR%%/d' \ -e '/%%SUBDIR%%/r$@.tmp2' \ Index: Templates/README.category =================================================================== RCS file: /usr/cvs/ports/Templates/README.category,v retrieving revision 1.2 diff -u -r1.2 README.category --- Templates/README.category 2000/01/21 11:08:22 1.2 +++ Templates/README.category 2000/10/14 03:47:19 @@ -5,6 +5,12 @@

      You are now in the directory "%%CATEGORY%%". +

      This is the one-line description for this category: + +


      +%%COMMENT%% +


      +

      %%DESCR%% To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 1:43:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 9EAF837B503; Sat, 14 Oct 2000 01:43:15 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca44-118.ix.netcom.com [209.111.212.246]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id EAA25924; Sat, 14 Oct 2000 04:43:11 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9E8h8Q11978; Sat, 14 Oct 2000 01:43:08 -0700 (PDT) (envelope-from asami) To: Ade Lovett Cc: Jim Mock , ports@FreeBSD.org Subject: Re: New GNOME hacks, etc. References: <20001011134155.A1323@envy.geekhouse.net> <20001011161408.J48659@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 14 Oct 2000 01:43:01 -0700 In-Reply-To: Ade Lovett's message of "Wed, 11 Oct 2000 16:14:08 -0500" Message-ID: Lines: 11 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ade Lovett * One possible option is a GNOME mtree file, but don't expect it any * time soon. Well, I can add that to bsd.port.mk easily. pkg_* is another matter though. Does anyone want to take a stab? ;) All you need to do is to change -m to take a list "mtree1,mtree2,mtree3". Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 1:49:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by hub.freebsd.org (Postfix) with ESMTP id B983F37B66C for ; Sat, 14 Oct 2000 01:49:49 -0700 (PDT) Received: from waterblue.imgsrc.co.jp (localhost [127.0.0.1]) by waterblue.imgsrc.co.jp (8.11.0/8.11.0) with ESMTP id e9E8nlG01397; Sat, 14 Oct 2000 17:49:48 +0900 (JST) Date: Sat, 14 Oct 2000 17:49:47 +0900 Message-ID: <7mvguvbydw.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: dima@Chg.RU Cc: Ports Team Subject: Upgrade p5-TimeDate to 1.10 User-Agent: Wanderlust/1.1.1 (Purple Rain) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: multipart/mixed; boundary="Multipart_Sat_Oct_14_17:49:47_2000-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Multipart_Sat_Oct_14_17:49:47_2000-1 Content-Type: text/plain; charset=US-ASCII How do you think about upgrading p5-TimeDate port to 1.10? -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project --Multipart_Sat_Oct_14_17:49:47_2000-1 Content-Type: text/plain; type=patch; charset=US-ASCII Content-Disposition: attachment; filename="p5-TimeDate.diff" Content-Transfer-Encoding: 7bit Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-TimeDate/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 2000/04/23 12:25:05 1.11 +++ Makefile 2000/10/14 08:44:59 @@ -6,7 +6,7 @@ # PORTNAME= TimeDate -PORTVERSION= 1.09 +PORTVERSION= 1.10 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Date Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-TimeDate/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 2000/04/23 12:25:06 1.3 +++ distinfo 2000/10/14 08:45:08 @@ -1 +1 @@ -MD5 (TimeDate-1.09.tar.gz) = b795b9c8d382552993ac64152243e9e2 +MD5 (TimeDate-1.10.tar.gz) = 59c57fb3494c18dd8d6e0252a41564b9 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/p5-TimeDate/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- pkg-plist 2000/08/12 12:00:44 1.6 +++ pkg-plist 2000/10/14 08:46:54 @@ -2,6 +2,7 @@ lib/perl5/site_perl/%%PERL_VER%%/Date/Language.pm lib/perl5/site_perl/%%PERL_VER%%/Date/Language/Austrian.pm lib/perl5/site_perl/%%PERL_VER%%/Date/Language/Czech.pm +lib/perl5/site_perl/%%PERL_VER%%/Date/Language/Dutch.pm lib/perl5/site_perl/%%PERL_VER%%/Date/Language/English.pm lib/perl5/site_perl/%%PERL_VER%%/Date/Language/French.pm lib/perl5/site_perl/%%PERL_VER%%/Date/Language/German.pm --Multipart_Sat_Oct_14_17:49:47_2000-1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 1:56:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blount.mail.mindspring.net (blount.mail.mindspring.net [207.69.200.226]) by hub.freebsd.org (Postfix) with ESMTP id 94D5037B66C for ; Sat, 14 Oct 2000 01:56:44 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca44-118.ix.netcom.com [209.111.212.246]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id EAA31630; Sat, 14 Oct 2000 04:56:36 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9E8uRo12452; Sat, 14 Oct 2000 01:56:27 -0700 (PDT) (envelope-from asami) To: Steve Price Cc: "Brandon D. Valentine" , ports@FreeBSD.ORG Subject: Re: make distclean error References: <20001012200739.D81676@bonsai.knology.net> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 14 Oct 2000 01:56:21 -0700 In-Reply-To: Steve Price's message of "Thu, 12 Oct 2000 20:07:39 -0500" Message-ID: Lines: 9 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Steve Price * Something like the following patch should work. The second part * is probably not necessary but makes it consistent with the rest * of the similar targets. Thanks, will commit. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 3:10:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail2.netcologne.de (mail2.netcologne.de [194.8.194.103]) by hub.freebsd.org (Postfix) with ESMTP id 1A01237B66C for ; Sat, 14 Oct 2000 03:10:49 -0700 (PDT) Received: from bagabeedaboo.security.at12.de (dial-213-168-73-38.netcologne.de [213.168.73.38]) by mail2.netcologne.de (8.9.3/8.9.3) with ESMTP id MAA12561 for ; Sat, 14 Oct 2000 12:10:47 +0200 (MET DST) Received: from localhost (localhost.security.at12.de [127.0.0.1]) by bagabeedaboo.security.at12.de (8.11.1/8.11.0) with ESMTP id e9EAAcs49544 for ; Sat, 14 Oct 2000 12:10:38 +0200 (CEST) (envelope-from pherman@frenchfries.net) Date: Sat, 14 Oct 2000 12:10:37 +0200 (CEST) From: Paul Herman To: freebsd-ports@freebsd.org Subject: make readmes fails to include descriptions 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, A quick check of the -ports mail archive didn't turn up anything, and I think it would just be less hassle for you guys to just mention it here, rather than submitting a PR. (?) "make readmes" doesn't work properly since the format switch. Included is a quick patch against a cvsup from earlier today. -Paul. Index: Mk/bsd.port.subdir.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.subdir.mk,v retrieving revision 1.38 diff -u -2 -r1.38 bsd.port.subdir.mk --- Mk/bsd.port.subdir.mk 2000/08/08 14:56:46 1.38 +++ Mk/bsd.port.subdir.mk 2000/10/14 09:54:24 @@ -211,6 +211,6 @@ @echo -n ''"`cd ${entry}; make package-name | ${HTMLIFY}`: " >> $@.tmp .endif -.if exists(${entry}/pkg/COMMENT) - @${HTMLIFY} ${entry}/pkg/COMMENT >> $@.tmp +.if exists(${entry}/pkg-comment) + @${HTMLIFY} ${entry}/pkg-comment >> $@.tmp .else @echo "(no description)" >> $@.tmp @@ -218,6 +218,6 @@ .endfor @sort -t '>' +1 -2 $@.tmp > $@.tmp2 -.if exists(${.CURDIR}/pkg/DESCR) - @${HTMLIFY} ${.CURDIR}/pkg/DESCR > $@.tmp3 +.if exists(${.CURDIR}/pkg-descr) + @${HTMLIFY} ${.CURDIR}/pkg-descr > $@.tmp3 .else @> $@.tmp3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 3:47:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 6B0C037B66C; Sat, 14 Oct 2000 03:47:50 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca44-118.ix.netcom.com [209.111.212.246]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id GAA26688; Sat, 14 Oct 2000 06:47:47 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e9EAljl13872; Sat, 14 Oct 2000 03:47:45 -0700 (PDT) (envelope-from asami) To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: makesum target creates files/ directory References: <39E5BF39.1CDAFD41@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 14 Oct 2000 03:47:42 -0700 In-Reply-To: Maxim Sobolev's message of "Thu, 12 Oct 2000 16:40:09 +0300" Message-ID: Lines: 11 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Hi PW and all, * * I wonder if it's a desired behaviour or just artefact, but `makesum' * bsd.port.mk target creates files/ directory if it doesn't exist, wich doesn't * required anymore after files/md5->distinfo move. Therefore I propose to remove * corresponding bits from the bsd.port.mk. Thanks. This problem has been reported by knu. I'll commit the fix with the other stuff I'm testing now. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 3:59:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6106837B66E; Sat, 14 Oct 2000 03:59:34 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA72796; Sat, 14 Oct 2000 03:59:34 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Sat, 14 Oct 2000 03:59:34 -0700 (PDT) From: Message-Id: <200010141059.DAA72796@freefall.freebsd.org> To: srodberg@visi.com, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21952: make readmes in ports is broke Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make readmes in ports is broke State-Changed-From-To: feedback->closed State-Changed-By: asami State-Changed-When: Sat Oct 14 03:58:31 PDT 2000 State-Changed-Why: About to commit more complete fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=21952 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 4: 0: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4847537B66C; Sat, 14 Oct 2000 03:59:57 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA73086; Sat, 14 Oct 2000 03:59:57 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Sat, 14 Oct 2000 03:59:57 -0700 (PDT) From: Message-Id: <200010141059.DAA73086@freefall.freebsd.org> To: dann@greycat.com, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21851: 'make readmes' broken in new ports structure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'make readmes' broken in new ports structure State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Sat Oct 14 03:59:41 PDT 2000 State-Changed-Why: About to commit more complete fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=21851 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 5: 6:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9B7F737B502; Sat, 14 Oct 2000 05:06:27 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.96]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id e9EC8JY10147; Sat, 14 Oct 2000 15:08:20 +0300 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9EC6Di00340; Sat, 14 Oct 2000 15:06:13 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E84C34.111ACBEE@FreeBSD.org> Date: Sat, 14 Oct 2000 15:06:12 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Greg Lewis Cc: java@FreeBSD.org, ports@FreeBSD.org, Kees Jan Koster , nate@FreeBSD.org Subject: Re: Native JDK1.2.2 port References: <200010132233.IAA31033@ares.trc.adelaide.edu.au> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greg Lewis wrote: > > I would like to inform you that I created skeleton for building native jdk1.2.2 > > and put it into official ports collection (java/jdk12-beta). This port is > > expected to make building/installation of jdk significantly easier, so the user > > would only need to d/l appropriate files (jdk sources from Sun and FreeBSD > > patchset), put it into usual place and do make install. I will appreciate any > > comments/patches/suggestions etc. about this port. Also it would be nice if > > someone will insert appropriate news entry onto FreeBSD Java pages, as well as > > update appropriate building instructions. > > Great work Maxim! > > Here are some comments, but please consider them in terms of me not > knowing all that much about the ports system though :). > > [...] > > This is terrific. Thank you so much! > > Now, everybody submit your favourite JDK 1.2 based ports! Greg, thank you for comments. I'll considering them to enhance the port. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 5:20: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 0E9BB37B502; Sat, 14 Oct 2000 05:19:56 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.96]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id e9ECLdY10332; Sat, 14 Oct 2000 15:21:40 +0300 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e9ECJXi00367; Sat, 14 Oct 2000 15:19:33 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39E84F54.257664E5@FreeBSD.org> Date: Sat, 14 Oct 2000 15:19:32 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: bmah@FreeBSD.org, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------1D0F5659FEF4E537659BDA16" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------1D0F5659FEF4E537659BDA16 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Satoshi - Ports Wraith - Asami wrote: > I wish we could do these substitutions without having to invoke > separate processes though. Will, aren't there ways to do this in > make? > > Satoshi Satosi, With this message I'm attaching slightly revised bsd.port.mk patch, which doesn't invoke separate processes (BTW, Will can you please extend our make(1) to let address words in variables using their numbers, something like ${SOMEVAR:123}?). Please let me know if this patch is OK, so I'll start hammering Jordan to review pkg_install's patch of the patchset. -Maxim --------------1D0F5659FEF4E537659BDA16 Content-Type: text/plain; charset=koi8-r; name="bsd.port.mk-origin.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk-origin.patch" --- bsd.port.mk.orig Sat Oct 14 15:16:17 2000 +++ bsd.port.mk Sat Oct 14 15:17:23 2000 @@ -1017,6 +1017,14 @@ PKGREQ?= ${PKGDIR}/pkg-req PKGMESSAGE?= ${PKGDIR}/pkg-message +.if ${OSVERSION} > 500012 +.for _CATEGORY in ${CATEGORIES} +PKGCATEGORY?= ${_CATEGORY} +.endfor +PORTDIRNAME?= ${.CURDIR:C/^.*\///g} +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} +.endif + TMPPLIST?= ${WRKDIR}/.PLIST.mktmp PKG_CMD?= /usr/sbin/pkg_create @@ -1038,6 +1046,9 @@ .endif .if !defined(NO_MTREE) PKG_ARGS+= -m ${MTREE_FILE} +.endif +.if defined(PKGORIGIN) && ${OSVERSION} > 500012 +PKG_ARGS+= -o ${PKGORIGIN} .endif .endif .if defined(PKG_NOCOMPRESS) --------------1D0F5659FEF4E537659BDA16-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 5:52:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 1298437B66E; Sat, 14 Oct 2000 05:52:09 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 9D0F31916; Sat, 14 Oct 2000 07:52:55 -0500 (EST) Date: Sat, 14 Oct 2000 07:52:55 -0500 From: Will Andrews To: Satoshi - Ports Wraith - Asami Cc: Ade Lovett , Jim Mock , ports@FreeBSD.ORG Subject: Re: New GNOME hacks, etc. Message-ID: <20001014075255.M95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Satoshi - Ports Wraith - Asami , Ade Lovett , Jim Mock , ports@FreeBSD.ORG References: <20001011134155.A1323@envy.geekhouse.net> <20001011161408.J48659@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.ORG on Sat, Oct 14, 2000 at 01:43:01AM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 01:43:01AM -0700, Satoshi - Ports Wraith - Asami wrote: > Well, I can add that to bsd.port.mk easily. pkg_* is another matter > though. Does anyone want to take a stab? ;) > > All you need to do is to change -m to take a list "mtree1,mtree2,mtree3". I'm on it. :-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University http://puck.firepipe.net/will/rm240.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 6:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF0EB37B670 for ; Sat, 14 Oct 2000 06:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA23462; Sat, 14 Oct 2000 06:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 700B937B66E for ; Sat, 14 Oct 2000 06:02:03 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id VAA36407; Sat, 14 Oct 2000 21:07:13 +0800 (CST) (envelope-from keith) Message-Id: <200010141307.VAA36407@freebsd.sinica.edu.tw> Date: Sat, 14 Oct 2000 21:07:13 +0800 (CST) From: keith@freebsd.sinica.edu.tw Reply-To: keith@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21984: Fix chinese/libtabe on current (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21984 >Category: ports >Synopsis: chinese/libtabe dumps on current machine >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 Oct 14 06:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: >Environment: 5-current, and 4.x-stable where /etc/malloc.conf is linked to AJ. >Description: Several bugs revealed after phk turned on malloc()'s extra sanity feature, which causes chinese/libtabe coredump during build. >How-To-Repeat: It just can't compile on current, or stable with /etc/malloc.conf->AJ. >Fix: Please commit the following patch as libtabe/files/patch-ac, thanks. --- src/tabe_tsidbint.c.orig Fri Oct 6 20:43:20 2000 +++ src/tabe_tsidbint.c Fri Oct 13 00:00:46 2000 @@ -420,8 +420,8 @@ } /* we depends on the caller to allocate enough large buffer */ - strcpy((char *)tsi->tsi, key.data); - tsi->tsi[key.size] = (unsigned char)NULL; + *((char *)tsi->tsi) = '\0'; + strncat((char *)tsi->tsi, (char *)key.data, key.size); TsiDBUnpackDataDB(tsi, &dat); return(0); @@ -454,8 +454,8 @@ } /* we depends on the caller to allocate buffer large enough */ - strcpy((char *)tsi->tsi, key.data); - tsi->tsi[key.size] = (unsigned char)NULL; + *((char *)tsi->tsi) = '\0'; + strncat((char *)tsi->tsi, (char *)key.data, key.size); TsiDBUnpackDataDB(tsi, &dat); @@ -489,8 +489,8 @@ } /* we depends on the caller to allocate enough large buffer */ - strcpy((char *)tsi->tsi, key.data); - tsi->tsi[key.size] = (unsigned char)NULL; + *((char *)tsi->tsi) = '\0'; + strncat((char *)tsi->tsi, (char *)key.data, key.size); TsiDBUnpackDataDB(tsi, &dat); --- src/util/tsidel.c.orig Thu Oct 5 22:58:28 2000 +++ src/util/tsidel.c Thu Oct 12 23:04:25 2000 @@ -47,6 +47,7 @@ memset(tsi->tsi, 0, 80); tsi->refcount = -1; tsi->yinnum = -1; + tsi->yindata = (Yin *)NULL; i = j = 0; while (1) { --- src/util/tsidump.c.orig Thu Oct 5 22:58:46 2000 +++ src/util/tsidump.c Mon Oct 9 14:53:22 2000 @@ -22,7 +22,7 @@ { printf("Usage: tsidump -d [-f output file -ry]\n"); printf(" -d \t path to TsiDB\n"); - printf(" -f \t input file in plain text (default: stdin)\n"); + printf(" -f \t output file in plain text (default: stdout)\n"); printf(" -r \t include reference count (default: not)\n"); printf(" -y \t include yin data (default: not)\n"); exit(0); @@ -45,6 +45,7 @@ memset(tsi->tsi, 0, 80); tsi->refcount = -1; tsi->yinnum = -1; + tsi->yindata = (Yin *)NULL; i = 0; while (1) { --- src/util/tsiyindump.c.orig Thu Oct 5 22:59:05 2000 +++ src/util/tsiyindump.c Thu Oct 12 23:06:24 2000 @@ -44,6 +44,7 @@ memset(tsi->tsi, 0, 80); tsi->refcount = -1; tsi->yinnum = -1; + tsi->yindata = (Yin *)NULL; tsiyin = (struct TsiYinInfo *)malloc(sizeof(struct TsiYinInfo)); memset(tsiyin, 0, sizeof(struct TsiYinInfo)); >Release-Note: >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 Oct 14 6:45: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 3F5E237B66C; Sat, 14 Oct 2000 06:45:04 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 9881C1916; Sat, 14 Oct 2000 08:45:51 -0500 (EST) Date: Sat, 14 Oct 2000 08:45:51 -0500 From: Will Andrews To: Maxim Sobolev Cc: Satoshi - Ports Wraith - Asami , bmah@FreeBSD.org, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] Message-ID: <20001014084551.O95891@puck.firepipe.net> Reply-To: Will Andrews References: <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <39E84F54.257664E5@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39E84F54.257664E5@FreeBSD.org>; from sobomax@FreeBSD.org on Sat, Oct 14, 2000 at 03:19:32PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 03:19:32PM +0300, Maxim Sobolev wrote: > With this message I'm attaching slightly revised bsd.port.mk patch, which doesn't invoke separate > processes (BTW, Will can you please extend our make(1) to let address words in variables using their > numbers, something like ${SOMEVAR:123}?). You mean their substring number? I.e., if the string contains "blah1 blah2 blah3 blha5 blah21" and you want ${SOMEVAR:4}, it returns "blha5", right? That could easily be implemented, although I'm not sure about the implications of such a feature. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University http://puck.firepipe.net/will/rm240.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 7:11:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from toyland.drapple.com (toyland.drapple.com [204.200.26.114]) by hub.freebsd.org (Postfix) with ESMTP id 21FD037B66C; Sat, 14 Oct 2000 07:11:26 -0700 (PDT) Received: from freebsd.org (adsl-151-196-243-89.bellatlantic.net [151.196.243.89]) by toyland.drapple.com (8.9.3/8.9.3) with ESMTP id HAA06291; Sat, 14 Oct 2000 07:11:24 -0700 (PDT) (envelope-from patrick@freebsd.org) Message-ID: <39E8693C.18DB312E@freebsd.org> Date: Sat, 14 Oct 2000 10:10:04 -0400 From: Patrick Gardella Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: asami@freebsd.org, ports@freebsd.org Subject: Large Port Builds References: <39E73443.848834FE@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 Do we have, or have we considered adding "notices" to ports that take a large amount of time and/or disk space to build to the Makefile? For instance, the new java/jdk12-beta port can take up to 250MB of disk space to build. I want to see huge ports like this availible, but at the same time, I remember a time when I was running FreeBSD on an old 486, and a port like this would have taken days to build, not to mention, half my hard drive. I'd like to suggest that we add two items to either pkg-descr or the Makefile: BUILD_SIZE= rough size of space needed to complete build and install (i.e. maximum size) INSTALLED_SIZE= rough size of final space need to install (i.e. package size) Then modify the make routines to determine from the BUILD_DEPENDS and RUN_DEPENDS how much space you will need to complete this build based on what you still need to install. Does this make sense? Should we (I) do it? -- Patrick ---------- Patrick Gardella patrick@freebsd.org The Power to Serve shall not be infringed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 7:20: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7BD737B66F for ; Sat, 14 Oct 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA47786; Sat, 14 Oct 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 14 Oct 2000 07:20:01 -0700 (PDT) Message-Id: <200010141420.HAA47786@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Steve Rodberg Subject: Re: ports/21952: make readmes in ports is broke Reply-To: Steve Rodberg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21952; it has been noted by GNATS. From: Steve Rodberg To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/21952: make readmes in ports is broke Date: Sat, 14 Oct 2000 09:19:20 -0500 On Fri, Oct 13, 2000 at 07:57:14PM -0700, trevor@FreeBSD.org wrote: > Synopsis: make readmes in ports is broke > > State-Changed-From-To: open->feedback > State-Changed-By: trevor > State-Changed-When: Fri Oct 13 19:54:03 PDT 2000 > State-Changed-Why: > This same problem was reported by Dann Lunsford in PR 21851. > Does his patch work for you? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21952 It should work.. Looks like the same thing I did, but he also fixed the description part. I knew I should have looked harder for another PR before I submitted mine.. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 7:24:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id E07C737B66C for ; Sat, 14 Oct 2000 07:24:25 -0700 (PDT) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id KAA06015; Sat, 14 Oct 2000 10:24:11 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Sat, 14 Oct 2000 10:24:11 -0400 (EDT) From: Brett Taylor To: Leif Neland Cc: Szilveszter Adam , freebsd-ports@freebsd.org Subject: Re: Ports won't build on stable 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 Hi, On Sat, 14 Oct 2000, Leif Neland wrote: > On Fri, 13 Oct 2000, Brett Taylor wrote: > > You don't need to erase the whole tree, just an pkg/ or patches/ > > directories that don't get removed. > Now you tell me! Luckily I'm at flat rate at home, and permanently > connected at work. I did! From the first reply: >> cd /usr/ports && rm -rf */*/pkg/ && rm -rf */*/patches/ :-) Brett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 7:30: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E77A37B66C for ; Sat, 14 Oct 2000 07:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA51068; Sat, 14 Oct 2000 07:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id 821CE37B503 for ; Sat, 14 Oct 2000 07:29:44 -0700 (PDT) Received: (qmail 45119 invoked by uid 479); 14 Oct 2000 14:29:41 -0000 Message-Id: <20001014142941.45118.qmail@rucus.ru.ac.za> Date: 14 Oct 2000 14:29:41 -0000 From: guy@rucus.ru.ac.za Reply-To: guy@rucus.ru.ac.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21985: port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21985 >Category: ports >Synopsis: port update >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: Sat Oct 14 07:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Guy Antony Halse >Release: FreeBSD 4.1-STABLE i386 >Organization: Rhodes University Computer Users Society >Environment: >Description: port update - portlint seems to understand the new format, so I presume port changes are now wanted in the new format? >How-To-Repeat: >Fix: # 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: # # ezmlm-web # ezmlm-web/files # ezmlm-web/Makefile # ezmlm-web/pkg-comment # ezmlm-web/pkg-descr # ezmlm-web/pkg-plist # ezmlm-web/pkg-message # ezmlm-web/distinfo # echo c - ezmlm-web mkdir -p ezmlm-web > /dev/null 2>&1 echo c - ezmlm-web/files mkdir -p ezmlm-web/files > /dev/null 2>&1 echo x - ezmlm-web/Makefile sed 's/^X//' >ezmlm-web/Makefile << 'END-of-ezmlm-web/Makefile' X# New ports collection makefile for: ezmlm-web X# Date Created: 14 October 2000 X# Whom: Guy Antony Halse X# X# $FreeBSD: ports/mail/ezmlm-web/Makefile,v 1.1 2000/08/09 19:04:59 will Exp $ X# X XPORTNAME= ezmlm-web XPORTVERSION= 2.1 XCATEGORIES= mail www XMASTER_SITES= ftp://rucus.ru.ac.za/pub/mail/ezmlm/ X XMAINTAINER= guy-ezmlm@rucus.ru.ac.za X XBUILD_DEPENDS= ${EZMLM_DIR}/bin/ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Ezmlm.pm:${PORTSDIR}/mail/p5-Mail-Ezmlm XRUN_DEPENDS= ${LOCALBASE}/sbin/apache:${PORTSDIR}/www/apache13 \ X ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Address.pm:${PORTSDIR}/mail/p5-Mail-Tools X XCGI_BIN?= /share/apache/cgi-bin/ XEZMLM_DIR?= ${PREFIX} X XUSE_PERL5= YES XPLIST_SUB= CGI_BIN=${CGI_BIN:S/\///} EZMLM_DIR=${EZMLM_DIR:S/\///} X Xdo-build: X @cd ${WRKSRC}; ${MAKE} index; ${MV} index ezmlm-web X Xdo-install: X ${MKDIR} ${PREFIX}${CGI_BIN} ${PREFIX}${EZMLM_DIR} X ${INSTALL_SCRIPT} ${WRKSRC}/ezmlm-web.cgi ${EZMLM_DIR}/bin X ${INSTALL_DATA} ${WRKSRC}/ezmlmwebrc ${EZMLM_DIR}/etc/ezmlm X ${INSTALL_PROGRAM} -o alias -g qmail -m 4755 ${WRKSRC}/ezmlm-web ${PREFIX}${CGI_BIN} X ${MKDIR} ${PREFIX}/share/ezmlm-web X.for file in CHANGES README index.c htaccess.sample webusers.sample X ${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/share/ezmlm-web X.endfor X Xpost-install: X @${SED} s!%%PREFIX%%!${PREFIX}!g ${PKGDIR}/MESSAGE X @${ECHO} X X.include END-of-ezmlm-web/Makefile echo x - ezmlm-web/pkg-comment sed 's/^X//' >ezmlm-web/pkg-comment << 'END-of-ezmlm-web/pkg-comment' XCGI script that lets you manage ezmlm-idx mailing lists through the web END-of-ezmlm-web/pkg-comment echo x - ezmlm-web/pkg-descr sed 's/^X//' >ezmlm-web/pkg-descr << 'END-of-ezmlm-web/pkg-descr' Xezmlm-web provides a convinient, GUI method for users to configure and Xmaintain ezmlm-idx mailing lists. It allows one to create, reconfigure and Xdelete mailing lists, as well as manage subscriber lists. It supports all Xthe features of ezmlm-idx 4.0, and has full support for virtual domains, Xmultiple access levels. It can also be configured to use different languages. END-of-ezmlm-web/pkg-descr echo x - ezmlm-web/pkg-plist sed 's/^X//' >ezmlm-web/pkg-plist << 'END-of-ezmlm-web/pkg-plist' Xshare/ezmlm-web/CHANGES Xshare/ezmlm-web/README Xshare/ezmlm-web/index.c Xshare/ezmlm-web/htaccess.sample Xshare/ezmlm-web/webusers.sample X@dirrm share/ezmlm-web X%%EZMLM_DIR%%/bin/ezmlm-web.cgi X%%EZMLM_DIR%%/etc/ezmlm/ezmlmwebrc X%%CGI_BIN%%/ezmlm-web END-of-ezmlm-web/pkg-plist echo x - ezmlm-web/pkg-message sed 's/^X//' >ezmlm-web/pkg-message << 'END-of-ezmlm-web/pkg-message' X XNB!! By default no security is enabled on ezmlm-web. X XThe effectively means that at the moment, anyone can go to X http:///cgi-bin/ezmlm-web Xand alter any of your primary mailing lists. X XIf this is not what you want (and it probably isn't :), you need to Xeither create a directive in you apache configuration, or Xuse a .htaccess file, or provide some other means of security. X XHave a look at the README file in %%PREFIX%%/share/ezmlm-web for Xmore information. There are also some sample files there. END-of-ezmlm-web/pkg-message echo x - ezmlm-web/distinfo sed 's/^X//' >ezmlm-web/distinfo << 'END-of-ezmlm-web/distinfo' XMD5 (ezmlm-web-2.1.tar.gz) = 41d701bc509c1a7fbec42f954e3e4171 END-of-ezmlm-web/distinfo exit >Release-Note: >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 Oct 14 7:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 225CC37B66C for ; Sat, 14 Oct 2000 07:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA54256; Sat, 14 Oct 2000 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from t-mta3.odn.ne.jp (mfep3.odn.ne.jp [143.90.131.181]) by hub.freebsd.org (Postfix) with ESMTP id C426F37B67A for ; Sat, 14 Oct 2000 07:39:57 -0700 (PDT) Received: from a44.pop16.odn.ne.jp ([210.237.198.135]) by t-mta3.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001014143955898.LEUC.940.t-mta3.odn.ne.jp@mta3.odn.ne.jp> for ; Sat, 14 Oct 2000 23:39:55 +0900 Message-Id: <20001014143955898.LEUC.940.t-mta3.odn.ne.jp@mta3.odn.ne.jp> Date: Sat, 14 Oct 2000 23:45:42 +0900 (JST) From: shuna@pop16.odn.ne.jp Reply-To: shuna@pop16.odn.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21986: Update port: japanese/mutt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21986 >Category: ports >Synopsis: Update port: japanese/mutt >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: Sat Oct 14 07:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: IWASHITA Yoji >Release: FreeBSD 3.4-RELEASE i386 >Organization: personal >Environment: FreeBSD 3.4-RELEASE >Description: Update pkg-plist. Remove 'rmdir' from pkg-plist for gettext. >How-To-Repeat: >Fix: diff -uNr mutt.org/pkg-plist mutt/pkg-plist --- mutt.org/pkg-plist Wed Jul 19 15:41:13 2000 +++ mutt/pkg-plist Sat Oct 14 22:28:00 2000 @@ -64,44 +64,3 @@ share/locale/sv/LC_MESSAGES/mutt.mo share/locale/uk/LC_MESSAGES/mutt.mo share/locale/zh_TW.Big5/LC_MESSAGES/mutt.mo -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/el/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/eo/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/gl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/id/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ja/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ko/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/uk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_TW.Big5/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/da 2>/dev/null || true -@unexec rmdir %D/share/locale/de 2>/dev/null || true -@unexec rmdir %D/share/locale/el 2>/dev/null || true -@unexec rmdir %D/share/locale/eo 2>/dev/null || true -@unexec rmdir %D/share/locale/es 2>/dev/null || true -@unexec rmdir %D/share/locale/fr 2>/dev/null || true -@unexec rmdir %D/share/locale/gl 2>/dev/null || true -@unexec rmdir %D/share/locale/id 2>/dev/null || true -@unexec rmdir %D/share/locale/it 2>/dev/null || true -@unexec rmdir %D/share/locale/ja 2>/dev/null || true -@unexec rmdir %D/share/locale/ko 2>/dev/null || true -@unexec rmdir %D/share/locale/nl 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR 2>/dev/null || true -@unexec rmdir %D/share/locale/ru 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/sv 2>/dev/null || true -@unexec rmdir %D/share/locale/uk 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_TW.Big5 2>/dev/null || true -@unexec rmdir %D/share/locale 2>/dev/null || true >Release-Note: >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 Oct 14 7:50: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA3F237B670 for ; Sat, 14 Oct 2000 07:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA57630; Sat, 14 Oct 2000 07:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from t-mta3.odn.ne.jp (mfep3.odn.ne.jp [143.90.131.181]) by hub.freebsd.org (Postfix) with ESMTP id 3F9C137B66E for ; Sat, 14 Oct 2000 07:40:01 -0700 (PDT) Received: from a44.pop16.odn.ne.jp ([210.237.198.135]) by t-mta3.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001014143959802.LEUT.940.t-mta3.odn.ne.jp@mta3.odn.ne.jp> for ; Sat, 14 Oct 2000 23:39:59 +0900 Message-Id: <20001014143959802.LEUT.940.t-mta3.odn.ne.jp@mta3.odn.ne.jp> Date: Sat, 14 Oct 2000 23:50:41 +0900 (JST) From: shuna@pop16.odn.ne.jp Reply-To: shuna@pop16.odn.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21987: Update port: japanese/mutt-devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21987 >Category: ports >Synopsis: Update port: japanese/mutt-devel >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: Sat Oct 14 07:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: IWASHITA Yoji >Release: FreeBSD 3.4-RELEASE i386 >Organization: personal >Environment: FreeBSD 3.4-RELEASE >Description: Update japanese/mutt-devel 1.3.9-ja0-beta0 -> 1.3.10-ja0-beta1 Remove 'rmdir' from pkg-plist for gettext. >How-To-Repeat: >Fix: diff -uNr mutt-devel.org/Makefile mutt-devel/Makefile --- mutt-devel.org/Makefile Tue Oct 10 22:32:35 2000 +++ mutt-devel/Makefile Sat Oct 14 22:49:42 2000 @@ -8,7 +8,7 @@ PORTNAME= mutt PORTVERSION= ${VERSION}.j${JP_VERSION}.b${JP_SUBVERSION} CATEGORIES= japanese mail -MASTER_SITES= http://www.ne.jp/asahi/cyber/taki/unix-mailer/mutt-dev/ \ +MASTER_SITES= http://www.emaillab.org/mutt/1.3/ \ http://www.hiei.kit.ac.jp/~hitomi/mutt/ \ ftp://ftp.mutt.org/pub/mutt/devel/ \ http://www2.odn.ne.jp/~aab27060/ports/distfiles/ @@ -30,9 +30,9 @@ RUN_DEPENDS= urlview:${PORTSDIR}/textproc/urlview PRE_VERSION= 1.2 -VERSION= 1.3.9 +VERSION= 1.3.10 JP_VERSION= 0 -JP_SUBVERSION= 0 +JP_SUBVERSION= 1 DIST_SUBDIR= mutt NO_LATEST_LINK= yes diff -uNr mutt-devel.org/distinfo mutt-devel/distinfo --- mutt-devel.org/distinfo Mon Oct 2 06:08:28 2000 +++ mutt-devel/distinfo Sat Oct 14 23:05:30 2000 @@ -1,3 +1,3 @@ -MD5 (mutt/mutt-1.3.9i.tar.gz) = 4fa9ae3d3bae4148b80d2e0208092cb2 -MD5 (mutt/mutt-1.3.9i-ja0-beta0.tar.gz) = 173a9089e6b379a7aa0efdf56aafd4f1 +MD5 (mutt/mutt-1.3.10i.tar.gz) = 980ea18f265305e156c2ffa443b2ac1c +MD5 (mutt/mutt-1.3.10i-ja0-beta1.tar.gz) = 6e24c39c4aabce19302dbda1e74abe5a MD5 (mutt/manual_ja-1.2i-1.tar.gz) = 709f021985530045ccb17601a6ac361b diff -uNr mutt-devel.org/pkg-plist mutt-devel/pkg-plist --- mutt-devel.org/pkg-plist Tue Oct 10 22:32:35 2000 +++ mutt-devel/pkg-plist Sat Oct 14 22:31:36 2000 @@ -69,44 +69,3 @@ share/locale/uk/LC_MESSAGES/mutt.mo share/locale/zh_CN.GB2312/LC_MESSAGES/mutt.mo share/locale/zh_TW.Big5/LC_MESSAGES/mutt.mo -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/el/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/eo/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/gl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/id/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/it/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ko/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ru/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/uk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_CN.GB2312/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_TW.Big5/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/da 2>/dev/null || true -@unexec rmdir %D/share/locale/de 2>/dev/null || true -@unexec rmdir %D/share/locale/el 2>/dev/null || true -@unexec rmdir %D/share/locale/eo 2>/dev/null || true -@unexec rmdir %D/share/locale/es 2>/dev/null || true -@unexec rmdir %D/share/locale/fr 2>/dev/null || true -@unexec rmdir %D/share/locale/gl 2>/dev/null || true -@unexec rmdir %D/share/locale/id 2>/dev/null || true -@unexec rmdir %D/share/locale/it 2>/dev/null || true -@unexec rmdir %D/share/locale/ko 2>/dev/null || true -@unexec rmdir %D/share/locale/nl 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/pt_BR 2>/dev/null || true -@unexec rmdir %D/share/locale/ru 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/sv 2>/dev/null || true -@unexec rmdir %D/share/locale/uk 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_CN.GB2312 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_TW.Big5 2>/dev/null || true -@unexec rmdir %D/share/locale 2>/dev/null || true >Release-Note: >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 Oct 14 8:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7609E37B66C for ; Sat, 14 Oct 2000 08:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA72016; Sat, 14 Oct 2000 08:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 14 Oct 2000 08:30:02 -0700 (PDT) Message-Id: <200010141530.IAA72016@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ade Lovett Subject: Re: ports/21985: port update Reply-To: Ade Lovett Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21985; it has been noted by GNATS. From: Ade Lovett To: guy@rucus.ru.ac.za Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/21985: port update Date: Sat, 14 Oct 2000 10:22:18 -0500 On Sat, Oct 14, 2000 at 02:29:41PM -0000, guy@rucus.ru.ac.za wrote: > port update - portlint seems to understand the new format, so I presume port > changes are now wanted in the new format? Absolutely. Any new submissions (certainly now, considering the new format has been around for "a while") in the old format are going to get summarily ignored (at least by me). > # This is a shell archive. *sigh* Port updates should: (a) be done as a patch, using diff(1), not a {sh,t}arball (b) have at least a vague attempt to mention the name of the port in the Subject/Synopsis field If you have any doubts, please refer to the Porting Handbook, (a) in particular seems to be being ignored/forgotten way too often these days. Perhaps summarily closing such PRs may help. PRs that follow the Porting Handbook are *much* more likely to get committed in a timely manner. Help us to help you. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 9: 6:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 801B237B66C; Sat, 14 Oct 2000 09:06:33 -0700 (PDT) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA85206; Sat, 14 Oct 2000 09:06:33 -0700 (PDT) (envelope-from alex@FreeBSD.org) Date: Sat, 14 Oct 2000 09:06:33 -0700 (PDT) From: Message-Id: <200010141606.JAA85206@freefall.freebsd.org> To: roman@xpert.com, alex@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21669: MAINTAINER new port: graphics/xine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER new port: graphics/xine State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sat Oct 14 09:05:49 PDT 2000 State-Changed-Why: Sorry for not looking in the PR db before proting it myself. However, I'll add your patch, since it's good. Do you want to become the maintainer? http://www.freebsd.org/cgi/query-pr.cgi?pr=21669 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 9:29:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc1.kt.home.ne.jp (ha1.rdc1.kt.home.ne.jp [203.165.9.242]) by hub.freebsd.org (Postfix) with ESMTP id B1CC137B502; Sat, 14 Oct 2000 09:29:24 -0700 (PDT) Received: from daemon.local.idaemons.org ([203.165.161.10]) by mail.rdc1.kt.home.ne.jp (InterMail vM.4.01.02.00 201-229-116) with ESMTP id <20001014162922.FHVR15224.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Sat, 14 Oct 2000 09:29:22 -0700 Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9EGTL131538; Sun, 15 Oct 2000 01:29:22 +0900 (JST) Date: Sun, 15 Oct 2000 01:29:21 +0900 Message-ID: <86em1jcroe.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: freebsd-ports@FreeBSD.org Cc: dirk@FreeBSD.org Subject: Porting php modules User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Today I was working on making a port of a PHP module called "Ming", and I ended up messing with PHP's non-dynamic build procedure. That is, libphp4.so includes all modules in one and one cannot add a new module without rebuilding it. (According to the current mod_php4 port) So the question is, "Does PHP support dynamic loading, and if so, how do I make mod_php4 port to do so?" It is a must to add extra PHP modules to the Ports Collection, if you don't want to see mod_php4 port bloated more and more. Thanks in advance. [Maintainer Cc'ed] -- / /__ __ / ) ) ) ) / and.or.jp / ruby-lang.org Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 9:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C84A37B670 for ; Sat, 14 Oct 2000 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA92665; Sat, 14 Oct 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wizard.vlink.ru (wizard.vlink.ru [195.239.222.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B06537B6A3 for ; Sat, 14 Oct 2000 09:22:19 -0700 (PDT) Received: by wizard.vlink.ru (Postfix, from userid 1000) id 42B4DA0D01; Sat, 14 Oct 2000 20:20:04 +0400 (MSD) Message-Id: <20001014162004.42B4DA0D01@wizard.vlink.ru> Date: Sat, 14 Oct 2000 20:20:04 +0400 (MSD) From: dsh@vlink.ru Reply-To: dsh@wizard.vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21988: new FreeBSD port for qlas-1.91 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21988 >Category: ports >Synopsis: new FreeBSD port for qlas-1.91 >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: Sat Oct 14 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: qico FIDO mailer log analyzer and statistic builder. >How-To-Repeat: # 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: # # qlas/ # qlas/Makefile # qlas/distinfo # qlas/pkg-comment # qlas/pkg-descr # qlas/pkg-plist # echo c - qlas/ mkdir -p qlas/ > /dev/null 2>&1 echo x - qlas/Makefile sed 's/^X//' >qlas/Makefile << 'END-of-qlas/Makefile' X# New ports collection makefile for: qlas X# Date created: 14 Oct 2000 X# Whom: Denis Shaposhnikov X# X# $FreeBSD$ X# X XPORTNAME= qlas XPORTVERSION= 1.91 XCATEGORIES= misc XMASTER_SITES= http://lev.serebryakov.spb.ru/download/ X XMAINTAINER= dsh@vlink.ru X XNO_WRKSUBDIR= yes XNO_BUILD= yes X Xpost-patch: X @ ${PERL} -pi -e 's!/usr/bin/perl!${PERL}!; tr/\r//d' ${WRKSRC}/qlas X @ ${PERL} -pi -e 'tr/\r//d' ${WRKSRC}/qlas.conf.default X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/qlas ${PREFIX}/bin/ X ${INSTALL_DATA} ${WRKSRC}/qlas.conf.default ${PREFIX}/etc/ X X.include END-of-qlas/Makefile echo x - qlas/distinfo sed 's/^X//' >qlas/distinfo << 'END-of-qlas/distinfo' XMD5 (qlas-1.91.tar.gz) = 58fab9c62f6db1d392c803142b2458d3 END-of-qlas/distinfo echo x - qlas/pkg-comment sed 's/^X//' >qlas/pkg-comment << 'END-of-qlas/pkg-comment' Xqico FIDO mailer log analyzer and statistic builder END-of-qlas/pkg-comment echo x - qlas/pkg-descr sed 's/^X//' >qlas/pkg-descr << 'END-of-qlas/pkg-descr' Xqico FIDO mailer log analyzer and statistic builder. END-of-qlas/pkg-descr echo x - qlas/pkg-plist sed 's/^X//' >qlas/pkg-plist << 'END-of-qlas/pkg-plist' Xetc/qlas.conf.default Xbin/qlas END-of-qlas/pkg-plist exit >Fix: >Release-Note: >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 Oct 14 9:48:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc1.kt.home.ne.jp (ha1.rdc1.kt.home.ne.jp [203.165.9.242]) by hub.freebsd.org (Postfix) with ESMTP id 5B99637B671; Sat, 14 Oct 2000 09:48:46 -0700 (PDT) Received: from daemon.local.idaemons.org ([203.165.161.10]) by mail.rdc1.kt.home.ne.jp (InterMail vM.4.01.02.00 201-229-116) with ESMTP id <20001014164843.FJHA15224.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Sat, 14 Oct 2000 09:48:43 -0700 Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e9EGmb131797; Sun, 15 Oct 2000 01:48:38 +0900 (JST) Date: Sun, 15 Oct 2000 01:48:37 +0900 Message-ID: <864s2fbc7u.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: asami@FreeBSD.ORG Cc: sobomax@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: makesum target creates files/ directory In-Reply-To: In your message of "14 Oct 2000 03:47:42 -0700" References: <39E5BF39.1CDAFD41@FreeBSD.org> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 14 Oct 2000 03:47:42 -0700, Satoshi Asami wrote: > Thanks. This problem has been reported by knu. I'll commit the fix > with the other stuff I'm testing now. You mean false "empty patch directory" warnings, I presume? I'm sorry if so, but please make sure to fix it too. -- / /__ __ / ) ) ) ) / and.or.jp / ruby-lang.org Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 10:22:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id 8944437B502; Sat, 14 Oct 2000 10:22:07 -0700 (PDT) Received: by peitho.fxp.org (Postfix, from userid 1501) id 1F1AA1360E; Sat, 14 Oct 2000 13:22:06 -0400 (EDT) Date: Sat, 14 Oct 2000 13:22:05 -0400 From: Chris Faulhaber To: Akinori MUSHA Cc: freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: Porting php modules Message-ID: <20001014132205.A97358@peitho.fxp.org> Mail-Followup-To: Chris Faulhaber , Akinori MUSHA , freebsd-ports@FreeBSD.org, dirk@FreeBSD.org References: <86em1jcroe.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86em1jcroe.wl@archon.local.idaemons.org>; from knu@idaemons.org on Sun, Oct 15, 2000 at 01:29:21AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 15, 2000 at 01:29:21AM +0900, Akinori MUSHA wrote: > Hi, > > Today I was working on making a port of a PHP module called "Ming", > and I ended up messing with PHP's non-dynamic build procedure. That > is, libphp4.so includes all modules in one and one cannot add a new > module without rebuilding it. (According to the current mod_php4 port) > > So the question is, "Does PHP support dynamic loading, and if so, how > do I make mod_php4 port to do so?" > Yes[1], see http://www.php.net/manual/function.dl.php [1]: Dynamic loading is supported, but only at runtime (i.e. in php scripts). -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 11:12:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 0B39337B66E; Sat, 14 Oct 2000 11:12:23 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 63C0B1A05; Sat, 14 Oct 2000 13:13:12 -0500 (EST) Date: Sat, 14 Oct 2000 13:13:12 -0500 From: Will Andrews To: Alexander Langer Cc: Will Andrews , "Vanilla I. Shu" , FreeBSD Ports Subject: Re: cvs commit: ports/graphics/gimp1 Makefile distinfo pkg-plist ports/graphics/gimp1/files patch-plug-ins_print_print-escp2_c patch-an Message-ID: <20001014131312.S95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Alexander Langer , "Vanilla I. Shu" , FreeBSD Ports References: <200010130759.AAA18054@freefall.freebsd.org> <20001014093820.A7520@cichlids.cichlids.com> <20001014103037.R95891@puck.firepipe.net> <20001014180500.C11149@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001014180500.C11149@cichlids.cichlids.com>; from alex@big.endian.de on Sat, Oct 14, 2000 at 06:05:00PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 06:05:00PM +0200, Alexander Langer wrote: > PS: We really should have the versioned dependencies. It's annonying. So stop bitching and write the fucking code. Geesh. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University http://puck.firepipe.net/will/rm240.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 11:43:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (Postfix) with ESMTP id 731CE37B66D; Sat, 14 Oct 2000 11:43:49 -0700 (PDT) Received: from thought.org (tao.sea.tera.com [207.108.223.55]) by gershwin.tera.com (8.9.3/8.9.3) with ESMTP id LAA15819; Sat, 14 Oct 2000 11:43:47 -0700 (PDT) Received: (from kline@localhost) by thought.org (8.11.0/8.11.0) id e9EIhdB37093; Sat, 14 Oct 2000 11:43:39 -0700 (PDT) (envelope-from kline) From: Gary Kline Message-Id: <200010141843.e9EIhdB37093@thought.org> Subject: how noe Brown Ports! To: freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG (FreeBSD Ports) Date: Sat, 14 Oct 2000 11:43:37 -0700 (PDT) Organization: <> thought.org: pvblic service Unix since 1986... <> X-Mailer: ELM [version 2.5 PL3] 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 Well, it bit me, even tho I'm upgraded to 4.1 on both FBSD platforms. Trying to do a make install of a port, I get:: # make install Error: your port uses an old layout. Please update it to match this bsd.port.mk. *** Error code 1 I see the new pkg-* files and have removed the old pkg/ directory, but still bump into the same error. I missed something in the ports- or stable- lists, just not sure what.... 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 Sat Oct 14 11:46:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 129B337B502; Sat, 14 Oct 2000 11:46:50 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA40089; Sat, 14 Oct 2000 11:46:50 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Date: Sat, 14 Oct 2000 11:46:50 -0700 (PDT) From: Message-Id: <200010141846.LAA40089@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21984: chinese/libtabe dumps on current machine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: chinese/libtabe dumps on current machine State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sat Oct 14 11:46:40 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21984 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 11:49:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 91DAB37B502; Sat, 14 Oct 2000 11:49:50 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9EInis16462; Sat, 14 Oct 2000 14:49:44 -0400 (EDT) Date: Sat, 14 Oct 2000 14:49:43 -0400 (EDT) From: Trevor Johnson To: Gary Kline Cc: FreeBSD Ports , asami@FreeBSD.ORG Subject: Re: how noe Brown Ports! In-Reply-To: <200010141843.e9EIhdB37093@thought.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 > # make install > Error: your port uses an old layout. Please update it to match this bsd.port.mk. > *** Error code 1 > > I see the new pkg-* files and have removed the old pkg/ directory, but > still bump into the same error. I missed something in the ports- or > stable- lists, just not sure what.... See PR 21885. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 11:50:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peitho.fxp.org (peitho.fxp.org [209.26.95.40]) by hub.freebsd.org (Postfix) with ESMTP id E29DB37B66E; Sat, 14 Oct 2000 11:50:09 -0700 (PDT) Received: by peitho.fxp.org (Postfix, from userid 1501) id 4C8A71360F; Sat, 14 Oct 2000 14:50:10 -0400 (EDT) Date: Sat, 14 Oct 2000 14:50:10 -0400 From: Chris Faulhaber To: Gary Kline Cc: freebsd-stable@FreeBSD.ORG, FreeBSD Ports Subject: Re: how noe Brown Ports! Message-ID: <20001014145009.C97358@peitho.fxp.org> Mail-Followup-To: Chris Faulhaber , Gary Kline , freebsd-stable@FreeBSD.ORG, FreeBSD Ports References: <200010141843.e9EIhdB37093@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010141843.e9EIhdB37093@thought.org>; from kline@thought.org on Sat, Oct 14, 2000 at 11:43:37AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 11:43:37AM -0700, Gary Kline wrote: > > > Well, it bit me, even tho I'm upgraded to 4.1 on both FBSD platforms. > Trying to do a make install of a port, I get:: > > # make install > Error: your port uses an old layout. Please update it to match this bsd.port.mk. > *** Error code 1 > > I see the new pkg-* files and have removed the old pkg/ directory, but > still bump into the same error. I missed something in the ports- or > stable- lists, just not sure what.... > Do what it says. Update bsd.port.mk (use ports-all or ports-base in your supfile). -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 11:51:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 55E0237B670; Sat, 14 Oct 2000 11:51:49 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 6222C190F; Sat, 14 Oct 2000 13:52:38 -0500 (EST) Date: Sat, 14 Oct 2000 13:52:38 -0500 From: Will Andrews To: Will Andrews Cc: Satoshi - Ports Wraith - Asami , Ade Lovett , Jim Mock , ports@FreeBSD.ORG Subject: Re: New GNOME hacks, etc. Message-ID: <20001014135238.T95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Satoshi - Ports Wraith - Asami , Ade Lovett , Jim Mock , ports@FreeBSD.ORG References: <20001011134155.A1323@envy.geekhouse.net> <20001011161408.J48659@FreeBSD.org> <20001014075255.M95891@puck.firepipe.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001014075255.M95891@puck.firepipe.net>; from will@physics.purdue.edu on Sat, Oct 14, 2000 at 07:52:55AM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Oct 14, 2000 at 07:52:55AM -0500, Will Andrews wrote: > I'm on it. :-) Done. This hasn't been tested very well, other than that it compiles cleanly. However, I'd like to see a patch for bsd.port.mk first, then perhaps MTREE_FILES+= for KDE & GNOME ports. Probably it should be tested on bento to make sure it doesn't break the current method of doing things. BTW, I think the *_file() functions in lib/file.c are HACKSHACKSHACKS! *nudge jkh ;-)* -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University http://puck.firepipe.net/will/rm240.jpg --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mtreecreate.diff" ? create/.main.c.swp Index: create/create.h =================================================================== RCS file: /project/cvs/FreeBSD/src/usr.sbin/pkg_install/create/create.h,v retrieving revision 1.15 diff -u -u -r1.15 create.h --- create.h 1999/08/28 01:17:58 1.15 +++ create.h 2000/10/14 18:47:34 @@ -35,7 +35,7 @@ extern char *Require; extern char *SrcDir; extern char *ExcludeFrom; -extern char *Mtree; +extern char *Mtree[]; extern char *Pkgdeps; extern char PlayPen[]; extern int Dereference; Index: create/main.c =================================================================== RCS file: /project/cvs/FreeBSD/src/usr.sbin/pkg_install/create/main.c,v retrieving revision 1.21 diff -u -u -r1.21 main.c --- main.c 1999/08/28 01:17:58 1.21 +++ main.c 2000/10/14 18:47:34 @@ -32,7 +32,7 @@ char *Contents = NULL; char *Require = NULL; char *ExcludeFrom = NULL; -char *Mtree = NULL; +char *Mtree[] = { NULL }; char *Pkgdeps = NULL; char PlayPen[FILENAME_MAX]; int Dereference = 0; @@ -44,7 +44,7 @@ main(int argc, char **argv) { int ch; - char **pkgs, **start; + char **pkgs, **start, **tmpPtr; pkgs = start = argv; while ((ch = getopt(argc, argv, Options)) != -1) @@ -122,7 +122,10 @@ break; case 'm': - Mtree = optarg; + for (tmpPtr = Mtree; (*tmpPtr = strsep(&optarg, ",")) != NULL;) + if (**tmpPtr != '\0') + if (++tmpPtr >= &Mtree[sizeof(Mtree)/sizeof(char *)]) + break; break; case 'P': Index: create/perform.c =================================================================== RCS file: /project/cvs/FreeBSD/src/usr.sbin/pkg_install/create/perform.c,v retrieving revision 1.49 diff -u -u -r1.49 perform.c --- perform.c 1999/08/28 01:17:58 1.49 +++ perform.c 2000/10/14 18:47:34 @@ -44,7 +44,7 @@ char *cp; FILE *pkg_in, *fp; Package plist; - int len; + int len, i; char *suf; int compress = 0; @@ -183,8 +183,8 @@ add_plist(&plist, PLIST_FILE, DISPLAY_FNAME); add_plist(&plist, PLIST_DISPLAY, DISPLAY_FNAME); } - if (Mtree) { - copy_file(home, Mtree, MTREE_FNAME); + for (i = 0 ; Mtree[i] != NULL ; i++) { + cat_file(home, Mtree[i], MTREE_FNAME); add_plist(&plist, PLIST_IGNORE, NULL); add_plist(&plist, PLIST_FILE, MTREE_FNAME); add_plist(&plist, PLIST_MTREE, MTREE_FNAME); @@ -291,7 +291,7 @@ fprintf(totar, "%s\n", REQUIRE_FNAME); if (Display) fprintf(totar, "%s\n", DISPLAY_FNAME); - if (Mtree) + if (Mtree[0] != NULL) fprintf(totar, "%s\n", MTREE_FNAME); for (p = plist->head; p; p = p->next) { Index: lib/file.c =================================================================== RCS file: /project/cvs/FreeBSD/src/usr.sbin/pkg_install/lib/file.c,v retrieving revision 1.40.2.3 diff -u -u -r1.40.2.3 file.c --- file.c 2000/09/20 08:53:55 1.40.2.3 +++ file.c 2000/10/14 18:47:34 @@ -361,6 +361,21 @@ } void +cat_file(char *dir, char *fname, char *to) +{ + char cmd[FILENAME_MAX]; + + if (fname[0] == '/') + snprintf(cmd, FILENAME_MAX, "cat %s >> %s", fname, to); + else + snprintf(cmd, FILENAME_MAX, "cat %s/%s > %s", dir, fname, to); + if (vsystem(cmd)) { + cleanup(0); + errx(2, "could not perform '%s'", cmd); + } +} + +void move_file(char *dir, char *fname, char *to) { char cmd[FILENAME_MAX]; --RnlQjJ0d97Da+TV1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 11:57:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id BBB5F37B66C; Sat, 14 Oct 2000 11:57:32 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 89B36190F; Sat, 14 Oct 2000 13:58:13 -0500 (EST) Date: Sat, 14 Oct 2000 13:58:13 -0500 From: Will Andrews To: FreeBSD Ports Cc: Satoshi Asami , Jim Mock , Ade Lovett Subject: Re: New GNOME hacks, etc. Message-ID: <20001014135813.U95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , FreeBSD Ports , Satoshi Asami , Jim Mock , Ade Lovett References: <20001011134155.A1323@envy.geekhouse.net> <20001011161408.J48659@FreeBSD.org> <20001014075255.M95891@puck.firepipe.net> <20001014135238.T95891@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001014135238.T95891@puck.firepipe.net>; from will@physics.purdue.edu on Sat, Oct 14, 2000 at 01:52:38PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 01:52:38PM -0500, Will Andrews wrote: > + snprintf(cmd, FILENAME_MAX, "cat %s/%s > %s", dir, fname, to); ^ This should of course be ">>". ;-P -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University http://puck.firepipe.net/will/rm240.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:52:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03FEC37B671; Sat, 14 Oct 2000 12:52:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA63691; Sat, 14 Oct 2000 12:52:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:52:12 -0700 (PDT) From: Message-Id: <200010141952.MAA63691@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21968: Update port: games/wmtimebomb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/wmtimebomb State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:51:55 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21968 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:52:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9944C37B66C; Sat, 14 Oct 2000 12:52:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA63866; Sat, 14 Oct 2000 12:52:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:52:35 -0700 (PDT) From: Message-Id: <200010141952.MAA63866@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21969: Update port: games/xataxx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xataxx State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:52:27 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21969 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:52:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2D3737B66C; Sat, 14 Oct 2000 12:52:45 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA63978; Sat, 14 Oct 2000 12:52:45 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:52:45 -0700 (PDT) From: Message-Id: <200010141952.MAA63978@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21971: Update port: games/xbl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xbl State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:52:38 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21971 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:53: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 317BD37B66C; Sat, 14 Oct 2000 12:52:59 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64118; Sat, 14 Oct 2000 12:52:59 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:52:59 -0700 (PDT) From: Message-Id: <200010141952.MAA64118@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21972: Update port: games/xemeraldia Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xemeraldia State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:52:51 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21972 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:53:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83AD037B66D; Sat, 14 Oct 2000 12:53:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64250; Sat, 14 Oct 2000 12:53:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:53:11 -0700 (PDT) From: Message-Id: <200010141953.MAA64250@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21973: Update port: games/xisola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xisola State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:53:03 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21973 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:53:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8298D37B66F; Sat, 14 Oct 2000 12:53:22 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64374; Sat, 14 Oct 2000 12:53:22 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:53:22 -0700 (PDT) From: Message-Id: <200010141953.MAA64374@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21974: Update port: games/xkoules Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xkoules State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:53:14 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21974 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:53:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98A4937B674; Sat, 14 Oct 2000 12:53:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64502; Sat, 14 Oct 2000 12:53:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:53:33 -0700 (PDT) From: Message-Id: <200010141953.MAA64502@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21975: Update port: games/xlaby Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xlaby State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:53:25 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21975 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:53:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3CCB37B66D; Sat, 14 Oct 2000 12:53:44 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64628; Sat, 14 Oct 2000 12:53:44 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:53:44 -0700 (PDT) From: Message-Id: <200010141953.MAA64628@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21976: Update port: games/xoids Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xoids State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:53:36 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21976 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:53:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00DEE37B66F; Sat, 14 Oct 2000 12:53:56 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64777; Sat, 14 Oct 2000 12:53:55 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:53:55 -0700 (PDT) From: Message-Id: <200010141953.MAA64777@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21977: Update port: games/xspacewarp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xspacewarp State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:53:48 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21977 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 12:54: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7F4837B502; Sat, 14 Oct 2000 12:54:06 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA64908; Sat, 14 Oct 2000 12:54:06 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 14 Oct 2000 12:54:06 -0700 (PDT) From: Message-Id: <200010141954.MAA64908@freefall.freebsd.org> To: tkato@prontomail.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21978: Update port: games/xvier Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xvier State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sat Oct 14 12:54:00 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21978 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 13:44:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from server07.icaen.uiowa.edu (server07.icaen.uiowa.edu [128.255.17.47]) by hub.freebsd.org (Postfix) with ESMTP id 032BD37B66D for ; Sat, 14 Oct 2000 13:44:12 -0700 (PDT) Received: from server11.icaen.uiowa.edu (root@server11.icaen.uiowa.edu [128.255.17.51]) by server07.icaen.uiowa.edu (8.9.3/8.9.3) with ESMTP id PAA20458 for sent by ; Sat, 14 Oct 2000 15:44:10 -0500 (CDT) Received: from l-ecn010.icaen.uiowa.edu (l-ecn010.icaen.uiowa.edu [128.255.17.110]) by server11.icaen.uiowa.edu (8.9.3/smtp-service-1.6) with ESMTP id PAA06996 for ; sent by ; Sat, 14 Oct 2000 15:44:09 -0500 (CDT) Received: (from pwgreen@localhost) by l-ecn010.icaen.uiowa.edu (8.9.3/client-6.6) id PAA04384; Sat, 14 Oct 2000 15:44:08 -0500 (CDT) Organization: Iowa Computer Aided Engineering Network, University of Iowa Date: Sat, 14 Oct 2000 15:44:08 -0500 (CDT) From: Peter William Green To: ports@freebsd.org Subject: math/vtk 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 Hello, I had some trouble getting this port to compile due to Mesa dependencies on FreeBSD 4.1.1. I did get it to compile by doing two things though. 1) added #define MESA to /usr/X11R6/include/GL/gl.h this worked but i think it will be unneeded in future versions of vtk. 2) included links to the osmesa library in the user.make file in the vtk directory. Both of these where mesa only related and involved off screen rendering. I hope this is usefull info - keep up the great work! -pete -- Peter Green 111 IATL peter-w-green@uiowa.edu The Department of Mechanical Engineering office: 319.335.3694 The University of Iowa lab: 319.335.3585 Iowa City, Iowa 52242 fax: 319.335.5669 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 13:50:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (Postfix) with ESMTP id 6904837B502; Sat, 14 Oct 2000 13:50:54 -0700 (PDT) Received: from thought.org (tao.sea.tera.com [207.108.223.55]) by gershwin.tera.com (8.9.3/8.9.3) with ESMTP id NAA17157; Sat, 14 Oct 2000 13:50:52 -0700 (PDT) Received: (from kline@localhost) by thought.org (8.11.0/8.11.0) id e9EKonP37941; Sat, 14 Oct 2000 13:50:49 -0700 (PDT) (envelope-from kline) Date: Sat, 14 Oct 2000 13:50:48 -0700 From: Gary Kline To: Chris Faulhaber , Gary Kline , freebsd-stable@FreeBSD.ORG, FreeBSD Ports Subject: Re: how noe Brown Ports! Message-ID: <20001014135048.B37098@tao.thought.org> References: <200010141843.e9EIhdB37093@thought.org> <20001014145009.C97358@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20001014145009.C97358@peitho.fxp.org>; from jedgar@fxp.org on Sat, Oct 14, 2000 at 02:50:10PM -0400 X-Organization: Thought Unlimited. Public service Unix since 1986. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 02:50:10PM -0400, Chris Faulhaber wrote: > On Sat, Oct 14, 2000 at 11:43:37AM -0700, Gary Kline wrote: > > > > > > Well, it bit me, even tho I'm upgraded to 4.1 on both FBSD platforms. > > Trying to do a make install of a port, I get:: > > > > # make install > > Error: your port uses an old layout. Please update it to match this bsd.port.mk. > > *** Error code 1 > > > > I see the new pkg-* files and have removed the old pkg/ directory, but > > still bump into the same error. I missed something in the ports- or > > stable- lists, just not sure what.... > > > > Do what it says. Update bsd.port.mk (use ports-all or ports-base in your > supfile). > I have cvsup cron'd to run 3 times a week and find this: 190 -rw-r--r-- 1 root wheel 97247 Oct 13 21:50 bsd.port.mk in /usr/ports/Mk. I see that in /usr/share/mk/bsd.port.mk, it points at (.includes) the newest bsd.port.mk. Why isn't the mk file seeing this? Until now ports has worked fairly automagically... . 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 Sat Oct 14 15:26:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 2791237B503; Sat, 14 Oct 2000 15:26:25 -0700 (PDT) Received: (from kris@localhost) by citusc17.usc.edu (8.9.3/8.9.3) id PAA13920; Sat, 14 Oct 2000 15:28:17 -0700 (PDT) Date: Sat, 14 Oct 2000 15:28:17 -0700 From: Kris Kennaway To: Alexander Langer Cc: Will Andrews , "Vanilla I. Shu" , ports@FreeBSD.org Subject: Versioned dependencies (Re: cvs commit: ports/graphics/gimp1 Makefile distinfo pkg-plist ports/graphics/gimp1/files patch-plug-ins_print_print-escp2_c patch-an) Message-ID: <20001014152817.C13848@citusc17.usc.edu> References: <200010130759.AAA18054@freefall.freebsd.org> <20001014093820.A7520@cichlids.cichlids.com> <20001014103037.R95891@puck.firepipe.net> <20001014180500.C11149@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001014180500.C11149@cichlids.cichlids.com>; from alex@big.endian.de on Sat, Oct 14, 2000 at 06:05:00PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 06:05:00PM +0200, Alexander Langer wrote: > PS: We really should have the versioned dependencies. It's annonying. Yes, I think this would have wide support. Would you care to port them? Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 16:30:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB4E637B675 for ; Sat, 14 Oct 2000 16:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA45518; Sat, 14 Oct 2000 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id EAE7A37B66D; Sat, 14 Oct 2000 16:25:15 -0700 (PDT) Message-Id: <20001014232515.EAE7A37B66D@hub.freebsd.org> Date: Sat, 14 Oct 2000 16:25:15 -0700 (PDT) From: mzaki@e-mail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21993: Port graphics/sane build fails with the newest Gimp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21993 >Category: ports >Synopsis: Port graphics/sane build fails with the newest Gimp >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 14 16:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Motomichi Matsuzaki >Release: -current >Organization: >Environment: >Description: The gimp changed its API, but the source file of xscanimage (gimp frontend of SANE) does not follow this change. This problem will be fixed in the next release of SANE (according to SANE mailing list), until then we need ad hoc patch as following. >How-To-Repeat: pkg_add gimp-1.1.27.tgz cd /usr/ports/graphics/sane make >Fix: --- frontend/xscanimage.c.orig Sun Oct 15 08:12:12 2000 +++ frontend/xscanimage.c Sun Oct 15 08:12:39 2000 @@ -57,6 +57,8 @@ #ifdef HAVE_LIBGIMP_GIMP_H +#define GIMP_ENABLE_COMPAT_CRUFT + #include static void query (void); >Release-Note: >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 Oct 14 16:39: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 2E1C037B502 for ; Sat, 14 Oct 2000 16:39:05 -0700 (PDT) Received: (from kris@localhost) by citusc17.usc.edu (8.9.3/8.9.3) id QAA14349 for ports@freebsd.org; Sat, 14 Oct 2000 16:41:00 -0700 (PDT) Date: Sat, 14 Oct 2000 16:41:00 -0700 From: Kris Kennaway To: ports@freebsd.org Subject: Bogus "empty patchdir" message Message-ID: <20001014164100.A14342@citusc17.usc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ===> Extracting for uvscan_dat-4099 >> Checksum OK for dat-4099.tar. ===> Patching for uvscan_dat-4099 ===> Ignoring empty patch directory ===> Perhaps you forgot the -P flag to cvs co or update? ===> Configuring for uvscan_dat-4099 /usr/bin/sed -e 's:@PREFIX@:/usr/local:g' /usr/ports/security/uvscan-dat/work/update_dat files/ contains only update_dat (a script installed by the program), no patches. Is the error message invalid, or should the script be moved elsewhere? Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 17:31:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peloton.runet.edu (peloton.runet.edu [137.45.96.205]) by hub.freebsd.org (Postfix) with ESMTP id E3F1D37B503; Sat, 14 Oct 2000 17:31:42 -0700 (PDT) Received: from localhost (brett@localhost) by peloton.runet.edu (8.9.3/8.9.3) with ESMTP id UAA07233; Sat, 14 Oct 2000 20:31:02 -0400 (EDT) (envelope-from brett@peloton.runet.edu) Date: Sat, 14 Oct 2000 20:31:02 -0400 (EDT) From: Brett Taylor To: Chris Faulhaber Cc: Gary Kline , freebsd-stable@FreeBSD.ORG, FreeBSD Ports Subject: Re: how noe Brown Ports! In-Reply-To: <20001014145009.C97358@peitho.fxp.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 Hi On Sat, 14 Oct 2000, Chris Faulhaber wrote: > Do what it says. Update bsd.port.mk (use ports-all or ports-base in > your supfile). This does NOT necessarily work - I cvsup ports-all and I was bit by the same thing. I know in CVS you can use the -P switch to kill the empty directories, but is there an equivalent switch or way to do this w/ CVSup? It sure isn't the -P switch which controls TCP connections. Barring that a simple: cd /usr/ports && rm -rf */*/patches/ && rm -rf */*/pkg/ will take care of things. Brett ----- "What am I on? I'm on my bike, busting my ass 6 hours a day." - Lance Armstrong To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 18: 4:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 9BC4B37B66D; Sat, 14 Oct 2000 18:04:24 -0700 (PDT) Received: from fmrl02.sul.t-online.de by mailout01.sul.t-online.com with smtp id 13kcDq-00005U-00; Sun, 15 Oct 2000 03:04:18 +0200 Received: from neutron.cichlids.com (520050424122-0001@[62.157.56.176]) by fmrl02.sul.t-online.com with esmtp id 13kcDq-1oGLwWC; Sun, 15 Oct 2000 03:04:18 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id DAB5AAB91; Sun, 15 Oct 2000 03:06:09 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 11A6D14AA4; Sun, 15 Oct 2000 03:04:29 +0200 (CEST) Date: Sun, 15 Oct 2000 03:04:29 +0200 From: Alexander Langer To: Kris Kennaway Cc: Will Andrews , "Vanilla I. Shu" , ports@FreeBSD.org Subject: Re: Versioned dependencies (Re: cvs commit: ports/graphics/gimp1 Makefile distinfo pkg-plist ports/graphics/gimp1/files patch-plug-ins_print_print-escp2_c patch-an) Message-ID: <20001015030429.B36991@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Kris Kennaway , Will Andrews , "Vanilla I. Shu" , ports@FreeBSD.org References: <200010130759.AAA18054@freefall.freebsd.org> <20001014093820.A7520@cichlids.cichlids.com> <20001014103037.R95891@puck.firepipe.net> <20001014180500.C11149@cichlids.cichlids.com> <20001014152817.C13848@citusc17.usc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001014152817.C13848@citusc17.usc.edu>; from kris@citusc.usc.edu on Sat, Oct 14, 2000 at 03:28:17PM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Kris Kennaway (kris@citusc.usc.edu): > > PS: We really should have the versioned dependencies. It's annonying. > Yes, I think this would have wide support. Would you care to port them? Yes. Can take one or two weeks, though. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 18:50:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22F4437B672 for ; Sat, 14 Oct 2000 18:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA92460; Sat, 14 Oct 2000 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from siegfried.utmb.edu (siegfried.utmb.edu [129.109.59.86]) by hub.freebsd.org (Postfix) with ESMTP id 5AECC37B502 for ; Sat, 14 Oct 2000 18:47:47 -0700 (PDT) Received: from histidine.utmb.edu (171.222.nas7.ippool.hypercon.com [198.64.222.171]) by siegfried.utmb.edu (8.9.3/8.9.3) with ESMTP id WAA02970 for ; Sat, 14 Oct 2000 22:09:54 -0500 (CDT) (envelope-from bdodson@histidine.utmb.edu) Received: (from bdodson@localhost) by histidine.utmb.edu (8.11.0/8.11.0) id e9F1nJC07045; Sat, 14 Oct 2000 20:49:19 -0500 (CDT) (envelope-from bdodson) Message-Id: <200010150149.e9F1nJC07045@histidine.utmb.edu> Date: Sat, 14 Oct 2000 20:49:19 -0500 (CDT) From: bdodson@scms.utmb.EDU Reply-To: bdodson@scms.utmb.EDU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21995: New port: math/gri Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21995 >Category: ports >Synopsis: New port: math/gri >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: Sat Oct 14 18:50:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: M. L. Dodson >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Sealy Center for Molecular Science University of Texas Medical Branch Galveston, TX 77555-1071 >Environment: FreeBSD wotan.home.net 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sat Oct 7 12:38:14 CDT 2000 bdodson@wotan.home.net:/usr/obj/usr/src/sys/WOTAN i386 >Description: New port for the scientific graphing program, gri. Gri is similar in purpose and scope to gnuplot, but most people find it easier to use and more flexible. Output is in PostScript, ready to be converted by ghostscript to any further graphics format desired. >How-To-Repeat: >Fix: # 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: # # gri # gri/pkg-plist # gri/pkg-descr # gri/pkg-comment # gri/distinfo # gri/Makefile # gri/files # gri/files/patch-ab # gri/files/patch-aa # echo c - gri mkdir -p gri > /dev/null 2>&1 echo x - gri/pkg-plist sed 's/^X//' >gri/pkg-plist << 'END-of-gri/pkg-plist' Xbin/gri Xbin/gri_merge Xbin/gri_unpage Xshare/doc/gri/html/examples/FEM.gif Xshare/doc/gri/html/examples/model.elements Xshare/doc/gri/html/examples/example9b.dat Xshare/doc/gri/html/examples/example9a.dat Xshare/doc/gri/html/examples/example9.txt Xshare/doc/gri/html/examples/example9.ps Xshare/doc/gri/html/examples/example9.gri Xshare/doc/gri/html/examples/example9.gif Xshare/doc/gri/html/examples/example9-tiny.gif Xshare/doc/gri/html/examples/example8b.dat Xshare/doc/gri/html/examples/example8a.dat Xshare/doc/gri/html/examples/example8.txt Xshare/doc/gri/html/examples/example8.ps Xshare/doc/gri/html/examples/example8.gri Xshare/doc/gri/html/examples/example8.gif Xshare/doc/gri/html/examples/example8-tiny.gif Xshare/doc/gri/html/examples/example7g.dat Xshare/doc/gri/html/examples/example7f.dat Xshare/doc/gri/html/examples/example7e.dat Xshare/doc/gri/html/examples/example7d.dat Xshare/doc/gri/html/examples/FEM.txt Xshare/doc/gri/html/examples/example7c.dat Xshare/doc/gri/html/examples/example7b.dat Xshare/doc/gri/html/examples/example7a.dat Xshare/doc/gri/html/examples/example7.txt Xshare/doc/gri/html/examples/example7.ps Xshare/doc/gri/html/examples/example7.gri Xshare/doc/gri/html/examples/example7.gif Xshare/doc/gri/html/examples/example7-tiny.gif Xshare/doc/gri/html/examples/example6mask.dat Xshare/doc/gri/html/examples/example6image.dat Xshare/doc/gri/html/examples/example6histogram.txt Xshare/doc/gri/html/examples/example6histogram.ps Xshare/doc/gri/html/examples/example6histogram.gri Xshare/doc/gri/html/examples/example6histogram.gif Xshare/doc/gri/html/examples/example6color.txt Xshare/doc/gri/html/examples/example6color.ps Xshare/doc/gri/html/examples/example6color.gri Xshare/doc/gri/html/examples/example6color.gif Xshare/doc/gri/html/examples/example6.txt Xshare/doc/gri/html/examples/example6color-tiny.gif Xshare/doc/gri/html/examples/example6.ps Xshare/doc/gri/html/examples/example6.gri Xshare/doc/gri/html/examples/example6.gif Xshare/doc/gri/html/examples/example6-tiny.gif Xshare/doc/gri/html/examples/example5.txt Xshare/doc/gri/html/examples/example5.ps Xshare/doc/gri/html/examples/example5.gri Xshare/doc/gri/html/examples/example5.gif Xshare/doc/gri/html/examples/example5.dat Xshare/doc/gri/html/examples/example5-tiny.gif Xshare/doc/gri/html/examples/example4.txt Xshare/doc/gri/html/examples/example4.ps Xshare/doc/gri/html/examples/example4.gri Xshare/doc/gri/html/examples/example4.gif Xshare/doc/gri/html/examples/example4-tiny.gif Xshare/doc/gri/html/examples/example3.txt Xshare/doc/gri/html/examples/example3.ps Xshare/doc/gri/html/examples/example3.gri Xshare/doc/gri/html/examples/example3.gif Xshare/doc/gri/html/examples/example3-tiny.gif Xshare/doc/gri/html/examples/example2.txt Xshare/doc/gri/html/examples/example2.ps Xshare/doc/gri/html/examples/example2.gri Xshare/doc/gri/html/examples/example2.gif Xshare/doc/gri/html/examples/example2-tiny.gif Xshare/doc/gri/html/examples/example13.txt Xshare/doc/gri/html/examples/example13.ps Xshare/doc/gri/html/examples/example13.gri Xshare/doc/gri/html/examples/example13.gif Xshare/doc/gri/html/examples/example13.dat Xshare/doc/gri/html/examples/example13-tiny.gif Xshare/doc/gri/html/examples/example12.txt Xshare/doc/gri/html/examples/example12.ps Xshare/doc/gri/html/examples/example12.gri Xshare/doc/gri/html/examples/example12.gif Xshare/doc/gri/html/examples/example12.dat Xshare/doc/gri/html/examples/example12-tiny.gif Xshare/doc/gri/html/examples/example11.txt Xshare/doc/gri/html/examples/example11.ps Xshare/doc/gri/html/examples/example11.gri Xshare/doc/gri/html/examples/example11.gif Xshare/doc/gri/html/examples/example11.dat Xshare/doc/gri/html/examples/example11-tiny.gif Xshare/doc/gri/html/examples/example10color.txt Xshare/doc/gri/html/examples/example10color.ps Xshare/doc/gri/html/examples/example10color.gri Xshare/doc/gri/html/examples/example10color.gif Xshare/doc/gri/html/examples/example10.txt Xshare/doc/gri/html/examples/example10.ps Xshare/doc/gri/html/examples/example10.gri Xshare/doc/gri/html/examples/example10.gif Xshare/doc/gri/html/examples/example10.dat Xshare/doc/gri/html/examples/example10-tiny.gif Xshare/doc/gri/html/examples/example1.txt Xshare/doc/gri/html/examples/example1.ps Xshare/doc/gri/html/examples/example1.gri Xshare/doc/gri/html/examples/example1.gif Xshare/doc/gri/html/examples/example1.dat Xshare/doc/gri/html/examples/example1-tiny.gif Xshare/doc/gri/html/examples/Makefile Xshare/doc/gri/html/examples/FEM.ps Xshare/doc/gri/html/examples/FEM.pl Xshare/doc/gri/html/examples/FEM.gri Xshare/doc/gri/html/examples/model.nodes Xshare/doc/gri/html/resources/bottom_banner.gif Xshare/doc/gri/html/resources/version-diagram-2.2.gif Xshare/doc/gri/html/resources/top_banner.gif Xshare/doc/gri/html/resources/symbols.gif Xshare/doc/gri/html/resources/sm_bg.gif Xshare/doc/gri/html/resources/pixel.gif Xshare/doc/gri/html/resources/math_symbols.gif Xshare/doc/gri/html/resources/logo.gif Xshare/doc/gri/html/resources/logo.eps Xshare/doc/gri/html/resources/version-diagram-2.4.gif Xshare/doc/gri/html/Access.html Xshare/doc/gri/html/gri1.html Xshare/doc/gri/html/X-Y.html Xshare/doc/gri/html/Write.html Xshare/doc/gri/html/While.html Xshare/doc/gri/html/Viewing.html Xshare/doc/gri/html/Variables.html Xshare/doc/gri/html/Text.html Xshare/doc/gri/html/TSDiagram.html Xshare/doc/gri/html/System.html Xshare/doc/gri/html/Synonyms.html Xshare/doc/gri/html/Superuser.html Xshare/doc/gri/html/State.html Xshare/doc/gri/html/Sprintf.html Xshare/doc/gri/html/Smooth.html Xshare/doc/gri/html/Skip.html Xshare/doc/gri/html/SimpleExample.html Xshare/doc/gri/html/Show.html Xshare/doc/gri/html/Set.html Xshare/doc/gri/html/RunningMeans.html Xshare/doc/gri/html/Rpnfunction.html Xshare/doc/gri/html/Rewind.html Xshare/doc/gri/html/ReversePolishMath.html Xshare/doc/gri/html/Return.html Xshare/doc/gri/html/ResourceFile.html Xshare/doc/gri/html/Resize.html Xshare/doc/gri/html/Rescale.html Xshare/doc/gri/html/Reorder.html Xshare/doc/gri/html/Regress.html Xshare/doc/gri/html/Read.html Xshare/doc/gri/html/Quit.html Xshare/doc/gri/html/Query.html Xshare/doc/gri/html/Pwd.html Xshare/doc/gri/html/Programming.html Xshare/doc/gri/html/PostScript.html Xshare/doc/gri/html/Polygons.html Xshare/doc/gri/html/PDFDiagram.html Xshare/doc/gri/html/OverviewSystemTools.html Xshare/doc/gri/html/OperatingSystem.html Xshare/doc/gri/html/Open.html Xshare/doc/gri/html/Newsgroup.html Xshare/doc/gri/html/Newpage.html Xshare/doc/gri/html/Newfeatures.html Xshare/doc/gri/html/NewCommands2.html Xshare/doc/gri/html/NewCommands1.html Xshare/doc/gri/html/New.html Xshare/doc/gri/html/Mathematics.html Xshare/doc/gri/html/Mask.html Xshare/doc/gri/html/Ls.html Xshare/doc/gri/html/Loops.html Xshare/doc/gri/html/List.html Xshare/doc/gri/html/License.html Xshare/doc/gri/html/LibraryFiles.html Xshare/doc/gri/html/Legend.html Xshare/doc/gri/html/InvokingGri.html Xshare/doc/gri/html/Introduction.html Xshare/doc/gri/html/Interpolate.html Xshare/doc/gri/html/Insert.html Xshare/doc/gri/html/Input.html Xshare/doc/gri/html/ImageWithContours.html Xshare/doc/gri/html/ImageExt.html Xshare/doc/gri/html/ImageExample.html Xshare/doc/gri/html/Image.html Xshare/doc/gri/html/Ignore.html Xshare/doc/gri/html/IfStatements.html Xshare/doc/gri/html/If.html Xshare/doc/gri/html/Hints.html Xshare/doc/gri/html/Help.html Xshare/doc/gri/html/Heal.html Xshare/doc/gri/html/GetEnv.html Xshare/doc/gri/html/GeneralIssues.html Xshare/doc/gri/html/Flip.html Xshare/doc/gri/html/Filter.html Xshare/doc/gri/html/Fig2Gri.html Xshare/doc/gri/html/FancyPlot.html Xshare/doc/gri/html/FancyExample.html Xshare/doc/gri/html/FEM.html Xshare/doc/gri/html/Extras.html Xshare/doc/gri/html/Expecting.html Xshare/doc/gri/html/Examples.html Xshare/doc/gri/html/Evolution.html Xshare/doc/gri/html/ErrorMessages.html Xshare/doc/gri/html/Emacs.html Xshare/doc/gri/html/Draw.html Xshare/doc/gri/html/Delete.html Xshare/doc/gri/html/DiscussionGroup.html Xshare/doc/gri/html/Differentiate.html Xshare/doc/gri/html/Defaults.html Xshare/doc/gri/html/Debugging.html Xshare/doc/gri/html/Debug.html Xshare/doc/gri/html/Data.html Xshare/doc/gri/html/Create.html Xshare/doc/gri/html/Convert.html Xshare/doc/gri/html/ContouringExample.html Xshare/doc/gri/html/Contour.html Xshare/doc/gri/html/ConceptIndex.html Xshare/doc/gri/html/CommandsOverview.html Xshare/doc/gri/html/Commands.html Xshare/doc/gri/html/CommandSyntax.html Xshare/doc/gri/html/Color.html Xshare/doc/gri/html/Close.html Xshare/doc/gri/html/Cd.html Xshare/doc/gri/html/Bugs.html Xshare/doc/gri/html/BoxPlots.html Xshare/doc/gri/html/Acknowledgments.html Xshare/doc/gri/html/index.html Xshare/gri/startup.msg Xshare/gri/gri.cmd X@dirrm share/gri X@dirrm share/doc/gri/html/examples X@dirrm share/doc/gri/html/resources X@dirrm share/doc/gri/html X@dirrm share/doc/gri END-of-gri/pkg-plist echo x - gri/pkg-descr sed 's/^X//' >gri/pkg-descr << 'END-of-gri/pkg-descr' XGri is a language for scientific graphics applications. By 'language' I mean Xthat it is a command-driven application, as opposed to a click/point Xapplication. It is analogous to latex or tex, and shares the property that Xextensive power is the reward for tolerating a modest learning curve. Gri Xoutput is in industry-standard PostScript, suitable for incorporation in Xdocuments prepared by various text processors. Gri can make x-y graphs, Xcontour-graphs, and image graphs. In addition to high-level capabilities, it Xhas enough low-level capabilities to allow users to achieve a high degree of Xcustomization. Precise control is extended to all aspects of drawing, including Xline-widths, colors, and fonts. Text includes a subset of the tex language, so Xthat it is easy to incorporate Greek letters and mathematical symbols in labels. END-of-gri/pkg-descr echo x - gri/pkg-comment sed 's/^X//' >gri/pkg-comment << 'END-of-gri/pkg-comment' XGri is an extensible plotting language for producing scientific graphs END-of-gri/pkg-comment echo x - gri/distinfo sed 's/^X//' >gri/distinfo << 'END-of-gri/distinfo' XMD5 (gri-2.4.4.tgz) = 2aaad67d5ffc787dabc32f4aa1d2212a END-of-gri/distinfo echo x - gri/Makefile sed 's/^X//' >gri/Makefile << 'END-of-gri/Makefile' X# New ports collection makefile for: gri X# Date created: 14 Oct 2000 X# Whom: M. L. Dodson, X# X# $FreeBSD$ X# X XPORTNAME= gri XPORTVERSION= 2.4.4 XCATEGORIES= math XMASTER_SITES= ftp://ftp.phys.ocean.dal.ca/users/kelley/gri/source/ XEXTRACT_SUFX= .tgz X XMAINTAINER= bdodson@scms.utmb.edu X XLIB_DEPENDS= netcdf.1:${PORTSDIR}/math/netcdf XBUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk X XGNU_CONFIGURE= YES X XALL_TARGET= gri XMAN1= gri.1 XMANCOMPRESSED= yes X Xpost-install: X.if !defined(${NOPORTDOCS}) X @-mkdir -p ${PREFIX}/share/doc/gri X @-mkdir -p ${PREFIX}/share/doc/gri/html X @-mkdir -p ${PREFIX}/share/doc/gri/html/examples X @-mkdir -p ${PREFIX}/share/doc/gri/html/resources X @cd ${WRKSRC}/doc && make PREFIX=${PREFIX} html-install X.endif X @cd ${WRKSRC}/doc && \ X make PREFIX=${PREFIX} INSTALL_MAN="${INSTALL_MAN}" man-install X ${CHMOD} 555 ${PREFIX}/bin/gri_merge X ${CHMOD} 555 ${PREFIX}/bin/gri_unpage X ${RM} ${PREFIX}/share/gri/license.txt X X.include END-of-gri/Makefile echo c - gri/files mkdir -p gri/files > /dev/null 2>&1 echo x - gri/files/patch-ab sed 's/^X//' >gri/files/patch-ab << 'END-of-gri/files/patch-ab' X*** doc/Makefile.orig Sun May 7 11:44:08 2000 X--- doc/Makefile Sat Sep 23 12:49:29 2000 X*************** X*** 1,6 **** X # Makefile for Gri documentation files. X X! GRI_DIR = /opt/gri X DEST_BIN = /doc/info X RM = rm -f X REFCARD = refcard X--- 1,6 ---- X # Makefile for Gri documentation files. X X! GRI_DIR = $(PREFIX)/share/doc/gri X DEST_BIN = /doc/info X RM = rm -f X REFCARD = refcard X*************** X*** 11,22 **** X FORCE: X X all: X- make info X make html X X! install: X! make info-install X! make html-install X X read: X chmod a+r Makefile X--- 11,27 ---- X FORCE: X X all: X make html X X! # make info X! # make html X! X! man-install: X! gzip -nfc -9 gri-manpage.1 > gri.1.gz X! ${INSTALL_MAN} gri.1.gz ${PREFIX}/man/man1 X! X! # make info-install X! # make html-install X X read: X chmod a+r Makefile X*************** X*** 48,69 **** X perl archive-to-html.pl > Newsgroup.html X X html-install: X! # GRI_DIR = /opt/gri X! if test ! -d $(GRI_DIR) ; then mkdir -m 755 -p $(GRI_DIR) ; fi X! if test ! -d $(GRI_DIR)/doc ; then mkdir -m 755 -p $(GRI_DIR)/doc ; fi X! if test ! -d $(GRI_DIR)/doc/html ; then mkdir -m 755 -p $(GRI_DIR)/doc/html ; fi X! if test ! -d $(GRI_DIR)/doc/html/examples ; then mkdir -m 755 -p $(GRI_DIR)/doc/html/examples ; fi X! if test ! -d $(GRI_DIR)/doc/html/resources ; then mkdir -m 755 -p $(GRI_DIR)/doc/html/resources ; fi X! -cp ./resources/*.gif $(GRI_DIR)/doc/html/resources X! -chmod a+r $(GRI_DIR)/doc/html/resources/* X! -cp ./examples/* $(GRI_DIR)/doc/html/examples X! -chmod a+r $(GRI_DIR)/doc/html/examples/* X! -cp ./*.html $(GRI_DIR)/doc/html X! -cp ./resources/logo.ps $(GRI_DIR)/doc/html/resources X! -cp ./resources/logo.gif $(GRI_DIR)/doc/html/resources X! -cp ./resources/logo.gri $(GRI_DIR)/doc/html/resources X -chmod a+r $(GRI_DIR)/* X- -make html-clean X X html-clean: X -cp FAQ.html save X--- 53,66 ---- X perl archive-to-html.pl > Newsgroup.html X X html-install: X! -cp ./resources/*.gif $(GRI_DIR)/html/resources X! -chmod a+r $(GRI_DIR)/html/resources/* X! -cp ./examples/* $(GRI_DIR)/html/examples X! -chmod a+r $(GRI_DIR)/html/examples/* X! -cp ./*.html $(GRI_DIR)/html X! -cp ./resources/logo.eps $(GRI_DIR)/html/resources X! -cp ./resources/logo.gif $(GRI_DIR)/html/resources X -chmod a+r $(GRI_DIR)/* X X html-clean: X -cp FAQ.html save END-of-gri/files/patch-ab echo x - gri/files/patch-aa sed 's/^X//' >gri/files/patch-aa << 'END-of-gri/files/patch-aa' X*** Makefile.in.orig Sun May 7 11:44:07 2000 X--- Makefile.in Sat Sep 23 12:10:29 2000 X*************** X*** 154,167 **** X install: all X echo "Installing into '$(prefix)' directory" X cat startup.msg | sed -e s,VSN,${VERSION}, > tmp X $(INSTALL_DATA) tmp $(prefix)/share/gri/startup.msg X rm -f tmp X $(INSTALL_PROGRAM) gri $(prefix)/bin/gri X $(INSTALL_DATA) gri.cmd $(prefix)/share/gri/gri.cmd X $(INSTALL_DATA) license.txt $(prefix)/share/gri/license.txt X! $(INSTALL_PROGRAM) gri_merge $(prefix)/bin/gri_merge X! $(INSTALL_PROGRAM) gri_unpage $(prefix)/bin/gri_unpage X! cd doc; prefix=$(prefix) make html-install X X all: force X make gri X--- 154,167 ---- X install: all X echo "Installing into '$(prefix)' directory" X cat startup.msg | sed -e s,VSN,${VERSION}, > tmp X+ -@mkdir $(prefix)/share/gri X $(INSTALL_DATA) tmp $(prefix)/share/gri/startup.msg X rm -f tmp X $(INSTALL_PROGRAM) gri $(prefix)/bin/gri X $(INSTALL_DATA) gri.cmd $(prefix)/share/gri/gri.cmd X $(INSTALL_DATA) license.txt $(prefix)/share/gri/license.txt X! $(INSTALL_DATA) gri_merge $(prefix)/bin/gri_merge X! $(INSTALL_DATA) gri_unpage $(prefix)/bin/gri_unpage X X all: force X make gri END-of-gri/files/patch-aa exit >Release-Note: >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 Oct 14 20:57:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gershwin.tera.com (gershwin.cray.com [207.224.230.28]) by hub.freebsd.org (Postfix) with ESMTP id E329237B66C; Sat, 14 Oct 2000 20:57:25 -0700 (PDT) Received: from thought.org (tao.sea.tera.com [207.108.223.55]) by gershwin.tera.com (8.9.3/8.9.3) with ESMTP id SAA19599; Sat, 14 Oct 2000 18:40:57 -0700 (PDT) Received: (from kline@localhost) by thought.org (8.11.0/8.11.0) id e9F1enI40349; Sat, 14 Oct 2000 18:40:49 -0700 (PDT) (envelope-from kline) Date: Sat, 14 Oct 2000 18:40:48 -0700 From: Gary Kline To: Brett Taylor Cc: Chris Faulhaber , Gary Kline , freebsd-stable@FreeBSD.ORG, FreeBSD Ports Subject: Re: how noe Brown Ports! Message-ID: <20001014184048.B40211@tao.thought.org> References: <20001014145009.C97358@peitho.fxp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from brett@peloton.runet.edu on Sat, Oct 14, 2000 at 08:31:02PM -0400 X-Organization: Thought Unlimited. Public service Unix since 1986. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 14, 2000 at 08:31:02PM -0400, Brett Taylor wrote: > Hi > > On Sat, 14 Oct 2000, Chris Faulhaber wrote: > > > Do what it says. Update bsd.port.mk (use ports-all or ports-base in > > your supfile). > > This does NOT necessarily work - I cvsup ports-all and I was bit by the > same thing. I know in CVS you can use the -P switch to kill the empty > directories, but is there an equivalent switch or way to do this w/ CVSup? > It sure isn't the -P switch which controls TCP connections. > > Barring that a simple: > > cd /usr/ports && rm -rf */*/patches/ && rm -rf */*/pkg/ > > will take care of things. > Hm, I remember that line from one of your earlier posts, Brett. I just wasn't aware of the context.... Myself, being more than a bit paranoid, would opt for find /usr/port <&c> commands... , then re-cvsup'ing just-in-case the find -exec /bin/rm -rf blew away something incorrectly. ( I do believe in daemons, you know :) Suggest to avoid fellow stragglers from similar head-scratching, we might want to post a Heads-Up to -questions; plus -stable. 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 Sat Oct 14 21:19:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 068A337B66C; Sat, 14 Oct 2000 21:19:10 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e9F4IrL02002; Sun, 15 Oct 2000 00:18:53 -0400 (EDT) Date: Sun, 15 Oct 2000 00:18:53 -0400 (EDT) From: Trevor Johnson To: Gary Kline Cc: Brett Taylor , Chris Faulhaber , freebsd-stable@FreeBSD.ORG, FreeBSD Ports Subject: Re: how noe Brown Ports! In-Reply-To: <20001014184048.B40211@tao.thought.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 Gary Kline wrote: > Hm, I remember that line from one of your earlier posts, > Brett. I just wasn't aware of the context.... > Myself, being more than a bit paranoid, would > opt for find /usr/port <&c> commands... , then re-cvsup'ing > just-in-case the find -exec /bin/rm -rf blew away something > incorrectly. ( I do believe in daemons, you know :) > > Suggest to avoid fellow stragglers from similar head-scratching, > we might want to post a Heads-Up to -questions; plus -stable. I submitted a small patch to bsd.port.mk to make it check for pkg/DESCR rather than the (possibly empty) pkg/ and patches/ directories. It's not going into the official bsd.port.mk, but you can put it in your own. http://www.freebsd.org/cgi/query-pr.cgi?pr=21885 -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 21:25:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id F074E37B66E for ; Sat, 14 Oct 2000 21:25:17 -0700 (PDT) Received: (qmail 57442 invoked by uid 1003); 15 Oct 2000 04:25:14 -0000 Date: Sun, 15 Oct 2000 06:25:14 +0200 From: Neil Blakey-Milner To: FreeBSD Ports Subject: ports dependency grapher and maintainer list Message-ID: <20001015062514.A44130@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.1-STABLE i386 X-URL: http://mithrandr.moria.org/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, A friend of mine wrote a port dependency grapher; it's viewable at http://rucus.ru.ac.za/~drs/portdeps/ and here're a few good examples: http://rucus.ru.ac.za/~drs/portdeps/?portname=qmailadmin http://rucus.ru.ac.za/~drs/portdeps/?portname=ezmlm-web http://rucus.ru.ac.za/~drs/portdeps/?portname=kde-1.1.2 (scary) http://rucus.ru.ac.za/~drs/portdeps/?portname=gnome-1 (can't complete in time) http://rucus.ru.ac.za/~drs/portdeps/?portname=galeon (scary) I'm not sure if it's perfectly accurate, but it sure looks pretty. (: I've also been playing a tiny bit, and come up with a script that generates a list of maintainers and a list of ports they maintain - viewable at http://people.FreeBSD.org/~nbm/maintainer-list.html (this includes real names for the maintainers grabbed from the contributors list and the committers list). If there's enough call for it, I'll be happy to chuck the script into the web page build. Night, Neil -- Neil Blakey-Milner nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 21:59:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 0B91037B66C for ; Sat, 14 Oct 2000 21:59:37 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 37F14190F; Sun, 15 Oct 2000 00:00:31 -0500 (EST) Date: Sun, 15 Oct 2000 00:00:31 -0500 From: Will Andrews To: Neil Blakey-Milner Cc: FreeBSD Ports Subject: Re: ports dependency grapher and maintainer list Message-ID: <20001015000031.F95891@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Neil Blakey-Milner , FreeBSD Ports References: <20001015062514.A44130@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001015062514.A44130@mithrandr.moria.org>; from nbm@mithrandr.moria.org on Sun, Oct 15, 2000 at 06:25:14AM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 15, 2000 at 06:25:14AM +0200, Neil Blakey-Milner wrote: > A friend of mine wrote a port dependency grapher; it's viewable at > http://rucus.ru.ac.za/~drs/portdeps/ and here're a few good examples: Way cool shit! :-) > http://rucus.ru.ac.za/~drs/portdeps/?portname=kde-1.1.2 (scary) Hah. You want scary, try kde-1.94. :-P > I've also been playing a tiny bit, and come up with a script that > generates a list of maintainers and a list of ports they maintain - > viewable at http://people.FreeBSD.org/~nbm/maintainer-list.html (this > includes real names for the maintainers grabbed from the contributors > list and the committers list). If there's enough call for it, I'll be > happy to chuck the script into the web page build. Hrmm... seems like that dupes fenner's work. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University http://puck.firepipe.net/will/rm240.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 22: 2: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 0B47237B66F for ; Sat, 14 Oct 2000 22:02:07 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13kfvb-000JoP-00; Sun, 15 Oct 2000 00:01:43 -0500 Date: Sun, 15 Oct 2000 00:01:43 -0500 From: Ade Lovett To: Will Andrews Cc: Neil Blakey-Milner , FreeBSD Ports Subject: Re: ports dependency grapher and maintainer list Message-ID: <20001015000143.A75393@FreeBSD.org> References: <20001015062514.A44130@mithrandr.moria.org> <20001015000031.F95891@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001015000031.F95891@puck.firepipe.net>; from will@physics.purdue.edu on Sun, Oct 15, 2000 at 12:00:31AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 15, 2000 at 12:00:31AM -0500, Will Andrews wrote: > On Sun, Oct 15, 2000 at 06:25:14AM +0200, Neil Blakey-Milner wrote: > > A friend of mine wrote a port dependency grapher; it's viewable at > > http://rucus.ru.ac.za/~drs/portdeps/ and here're a few good examples: > > Way cool shit! :-) I coulda sworn I was talking about this on irc the other day.. I suppose I should go download the script to see what gnome-1.2 really looks like.. I already have graphiz installed :) -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 22:30:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21B6537B66F for ; Sat, 14 Oct 2000 22:30:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA71066; Sat, 14 Oct 2000 22:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 14 Oct 2000 22:30:03 -0700 (PDT) Message-Id: <200010150530.WAA71066@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/21875: Update german/webalizer (by maintainer) Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21875; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/21875: Update german/webalizer (by maintainer) Date: Sun, 15 Oct 2000 07:19:00 +0200 > > State-Changed-Why: > > Patches don't appliy cleanly. See: > > > > >> Checksum OK for webalizer-2.01-05-src.tar.bz2. > > ===> de-webalizer-2.1.5 depends on executable: bzip2 - found > > ===> de-webalizer-2.1.5 depends on shared library: gd.1 - found > > ===> Patching for de-webalizer-2.1.5 > > ===> Applying FreeBSD patches for de-webalizer-2.1.5 > > 4 out of 4 hunks failed--saving rejects to webalizer.c.rej > > >> Patch patch-af failed to apply cleanly. > > >> Patch(es) patch-ae applied cleanly. > > *** Error code 1> > > > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21875 > > Please remove all the "patches" and "script" files. Sorry, I tried to reduce the diff, as the current port don't any any pacthfiles or scriptfiles any more. Here the complete diff: kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany diff webalizer/Makefile de-webalizer-2.1.5/Makefile --- webalizer/Makefile Tue Sep 5 08:35:47 2000 +++ de-webalizer-2.1.5/Makefile Mon Oct 9 22:31:13 2000 @@ -5,52 +5,65 @@ # $FreeBSD: ports/german/webalizer/Makefile,v 1.16 2000/09/05 02:12:33 steve Exp $ PORTNAME= webalizer -PORTVERSION= 1.30.4 +PORTVERSION= 2.1.5 CATEGORIES= german www MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/ \ ftp://ftp.lan-ks.de/pub/FreeBSD/distfiles/ -DISTNAME= ${PORTNAME}-1.30-04-src -EXTRACT_SUFX= .tgz +PKGNAMEPREFIX?= de- +DISTNAME= ${PORTNAME}-2.01-05-src MAINTAINER= dirk.meyer@dinoex.sub.org LIB_DEPENDS= gd.1:${PORTSDIR}/graphics/gd -WEBALIZER_LANG?= german +USE_BZIP2= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-gdlib=${PREFIX}/lib \ +WEBALIZER_LANG?= german + +.include + +CONFIGURE_ARGS+= --enable-dns \ + --with-etcdir=${PREFIX}/etc \ + --with-gdlib=${PREFIX}/lib \ --with-gd=${PREFIX}/include/gd \ --with-language=${WEBALIZER_LANG} CONFIGURE_ENV+= LDFLAGS="-L${PREFIX}/lib" -BIN1= de-webalizer -MAN1= de-webalizer.1 +MAKE_ARGS+= CFLAGS="${CFLAGS}" +MAN1= ${PKGNAMEPREFIX}webalizer.1 DOC1= CHANGES COPYING Copyright INSTALL \ - README country-codes.txt webalizer.LSM + README README.FIRST DNS.README country-codes.txt WRKSRC= ${WRKDIR}/${DISTNAME:S/-src$//} +PLIST_SUB+= PKGNAMEPREFIX=${PKGNAMEPREFIX} pre-configure: - @${PERL5} -pi -e "s=/etc=${PREFIX}/etc=" ${WRKSRC}/webalizer.c + @${PERL5} -pi -e "s=webalizer.conf=${PKGNAMEPREFIX}webalizer.conf=" \ + ${WRKSRC}/webalizer.c do-install: -.for i in ${BIN1} - @${INSTALL_SCRIPT} ${WRKSRC}/webalizer ${PREFIX}/bin/${i} -.endfor + @${INSTALL_PROGRAM} ${WRKSRC}/webalizer \ + ${PREFIX}/bin/${PKGNAMEPREFIX}webalizer + ${LN} -sf ${PKGNAMEPREFIX}webalizer \ + ${PREFIX}/bin/${PKGNAMEPREFIX}webazolver post-install: - ${INSTALL_MAN} ${WRKSRC}/webalizer.1 ${PREFIX}/man/man1/de-webalizer.1 +.for i in ${MAN1} + ${INSTALL_MAN} ${WRKSRC}/webalizer.1 ${PREFIX}/man/man1/${i} +.endfor .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/de-webalizer + ${MKDIR} ${PREFIX}/share/doc/${PKGNAMEPREFIX}webalizer .for i in ${DOC1} - @${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/de-webalizer/${i} + @${INSTALL_DATA} ${WRKSRC}/${i} \ + ${PREFIX}/share/doc/${PKGNAMEPREFIX}webalizer/${i} .endfor .endif - ${MKDIR} ${PREFIX}/share/examples/de-webalizer -.for i in msfree.gif sample.conf webalizer.gif - @${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/examples/de-webalizer/${i} + ${MKDIR} ${PREFIX}/share/examples/${PKGNAMEPREFIX}webalizer +.for i in msfree.png sample.conf webalizer.png + @${INSTALL_DATA} ${WRKSRC}/${i} \ + ${PREFIX}/share/examples/${PKGNAMEPREFIX}webalizer/${i} .endfor - @if [ ! -f ${PREFIX}/etc/de-webalizer.conf-dist ]; then \ + @if [ ! -f ${PREFIX}/etc/${PKGNAMEPREFIX}webalizer.conf-dist ]; then \ ${INSTALL_DATA} ${WRKSRC}/sample.conf \ - ${PREFIX}/etc/de-webalizer.conf-dist ; \ + ${PREFIX}/etc/${PKGNAMEPREFIX}webalizer.conf-dist ; \ fi -.include +.include diff webalizer/distinfo de-webalizer-2.1.5/distinfo --- webalizer/distinfo Mon Sep 27 04:47:08 1999 +++ de-webalizer-2.1.5/distinfo Sat Oct 7 15:41:50 2000 @@ -1 +1 @@ -MD5 (webalizer-1.30-04-src.tgz) = f151b5e811bcdaa4ba72bca447f5cd44 +MD5 (webalizer-2.01-05-src.tar.bz2) = ab45bc2c7893c00370a1fcbd9b71232e diff webalizer/files/patch-ae de-webalizer-2.1.5/files/patch-ae --- webalizer/files/patch-ae Mon Nov 1 01:58:47 1999 +++ de-webalizer-2.1.5/files/patch-ae Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- configure.orig Wed Oct 27 18:18:41 1999 -+++ configure Wed Oct 27 18:18:52 1999 -@@ -1054,7 +1054,7 @@ - fi - if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then - echo "$ac_t""yes" 1>&6 -- LIBS="-lgd ${LIBS}"; HAVE_LIBGD="yes" -+ LIBS="-lgd -lpng ${LIBS}"; HAVE_LIBGD="yes" - else - echo "$ac_t""no" 1>&6 - HAVE_LIBGD="" diff webalizer/files/patch-af de-webalizer-2.1.5/files/patch-af --- webalizer/files/patch-af Tue May 30 00:32:54 2000 +++ de-webalizer-2.1.5/files/patch-af Thu Jan 1 01:00:00 1970 @@ -1,40 +0,0 @@ ---- webalizer.c.orig Sun Jul 11 19:36:10 1999 -+++ webalizer.c Mon May 29 21:42:53 2000 -@@ -1981,8 +1981,8 @@ - - /* fill in filenames */ - sprintf(html_fname,"usage_%04d%02d.%s",cur_year,cur_month,html_ext); -- sprintf(gif1_fname,"daily_usage_%04d%02d.gif",cur_year,cur_month); -- sprintf(gif2_fname,"hourly_usage_%04d%02d.gif",cur_year,cur_month); -+ sprintf(gif1_fname,"daily_usage_%04d%02d.png",cur_year,cur_month); -+ sprintf(gif2_fname,"hourly_usage_%04d%02d.png",cur_year,cur_month); - - /* create GIF images for web page */ - sprintf(dtitle,"%s %s %d",msg_hmth_du,l_month[cur_month-1],cur_year); -@@ -3125,7 +3125,7 @@ - pie_legend[i]=top_ctrys[i]->desc; - } - sprintf(pie_title,"%s %s %d",msg_ctry_use,l_month[cur_month-1],cur_year); -- sprintf(pie_fname,"ctry_usage_%04d%02d.gif",cur_year,cur_month); -+ sprintf(pie_fname,"ctry_usage_%04d%02d.png",cur_year,cur_month); - - pie_chart(pie_fname,pie_title,t_hit,pie_data,pie_legend); /* do it */ - -@@ -3213,7 +3213,7 @@ - - i=(s_mth==12)?1:s_mth+1; - -- year_graph6x( "usage.gif", /* filename */ -+ year_graph6x( "usage.png", /* filename */ - buffer, /* graph title */ - i, /* last month */ - hist_hit, /* data set 1 */ -@@ -3234,7 +3234,7 @@ - } - write_html_head(msg_main_per); - /* year graph */ -- fprintf(out_fp,"\"%s\"

      \n",buffer); - /* month table */ - fprintf(out_fp,"

\n"); diff webalizer/files/patch-gd16 de-webalizer-2.1.5/files/patch-gd16 --- webalizer/files/patch-gd16 Mon Sep 27 04:47:09 1999 +++ de-webalizer-2.1.5/files/patch-gd16 Thu Jan 1 01:00:00 1970 @@ -1,38 +0,0 @@ ---- graphs.c.orig Tue Jun 15 06:33:40 1999 -+++ graphs.c Sat Jul 31 10:43:48 1999 -@@ -285,7 +285,7 @@ - /* save gif image */ - if ((out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ -@@ -501,7 +501,7 @@ - /* open file for writing */ - if ((out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ -@@ -614,7 +614,7 @@ - /* save as gif file */ - if ( (out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ -@@ -700,7 +700,7 @@ - /* save gif image */ - if ((out = fopen(fname, "wb")) != NULL) - { -- gdImageGif(im, out); -+ gdImagePng(im, out); - fclose(out); - } - /* deallocate memory */ diff webalizer/files/patch-german de-webalizer-2.1.5/files/patch-german --- webalizer/files/patch-german Mon Sep 27 04:47:09 1999 +++ de-webalizer-2.1.5/files/patch-german Thu Jan 1 01:00:00 1970 @@ -1,1170 +0,0 @@ ---- lang/webalizer_lang.german.orig Sun Jul 11 12:53:20 1999 -+++ lang/webalizer_lang.german Sun Sep 26 17:43:38 1999 -@@ -1,579 +1,588 @@ --/* -- webalizer_lang.german -- -- Webalizer V1.2x language support file for German. -- 28-May-1998 translated by Dirk Meyer -- 31-May-1998 portions by Bernd Dau -- 31-May-1998 modified for level 1.1 support -- 02-Jun-1998 translation level 1.1 by Dirk Meyer -- 30-Jun-1998 typing errors fixed by Dirk Kocherscheidt -- 23-Jul-1998 modified for level 1.2 support -- 01-Aug-1998 translation redone by SysWolf -- 09-Oct-1998 changes added by Soren Gust -- 09-Oct-1998 changes added by Martin Kraemer -- 24-Dec-1998 names of countries by Dirk Kocherscheidt -- 24-Dec-1998 grammar and spelling by Dirk Meyer -- 10-Jan-1999 improvements by Winfried Trümper -- 05-Mrz-1999 improvements by Winfried Trümper -- 06-Mrz-1999 new usage by Dirk Meyer -- 08-Mar-1999 Updated HTTP 1.1 response codes by Yves Lafon (ylafon@w3.org) -- 09-Mrz-1999 new result codes by Dirk Meyer -- 24-May-1999 fixed umlaut coding by Arne Blankerts -- 11-Jun-1999 fixes by Wolfgang Schemmel -- 12-Jun-1999 Additional fixes by Dirk Meyer and friends :) -- 28-Jun-1999 Modified for level 1.3 support (Brad@mrunix.net) -- 05-Jul-1999 Add. German translations by Gerald Erdmann (gerald@stepman.com) -- -- Language files are named using the following convention: -- -- webalizer_lang.LANGUAGE -- -- where 'LANGUAGE' is the name of the language the file is -- translated into (ie: webalizer_lang.russian for russian). -- Either copy the desired language file to webalizer_lang.h -- or create a symbolic link, then re-compile. -- -- If you translate this file into a different language, please -- send a copy to brad@mrunix.net. -- --*/ -- --/***********************************************************************/ --/* DEFINE LANGUAGE NAME here */ --/***********************************************************************/ -- --char *language = "German"; -- --/***********************************************************************/ --/* */ --/* Informational messages */ --/* */ --/* These messages are only displayed while The Webalizer is being run, */ --/* usually to the screen, and are not part of the HTML output. */ --/* */ --/***********************************************************************/ -- --/* these are only used in timing totals */ --/* Format: XXX records (XXX ignored, XXX bad) in X.XX seconds */ --char *msg_records = "Einträge"; --char *msg_ignored = "ignoriert"; --char *msg_bad = "ungültig"; --char *msg_in = "in"; --char *msg_seconds = "Sekunden"; -- --/* progress and setup error messages */ --char *msg_log_err = "Fehler: Kann die Protokolldatei nicht öffnen."; --char *msg_log_use = "Verwende Protokolldatei"; --char *msg_dir_err = "Fehler: Kann nicht in das Verzeichnis wechseln."; --char *msg_dir_use = "Erzeuge Dateien in"; --char *msg_cur_dir = "aktuelles Verzeichnis"; --char *msg_hostname= "Rechnername für Bericht ist"; --char *msg_ign_hist= "Ignoriere vorhandene historische Daten..."; --char *msg_no_hist = "Datei mit historischen Daten nicht gefunden..."; --char *msg_get_hist= "Lese Datei mit historischen Daten..."; --char *msg_put_hist= "Speichere historische Daten..."; --char *msg_hist_err= "Fehler: Kann Datei mit historischen Daten nicht schreiben."; --char *msg_bad_hist= "Fehler: Ignoriere ungültigen historischen Eintrag."; --char *msg_bad_conf= "Fehler: Kann Konfigurations-Datei nicht lesen."; --char *msg_bad_key = "Warnung: unbekanntes Schlüsselwort"; --char *msg_bad_date= "Fehler: Ignoriere Eintrag (Datum ungültig)."; --char *msg_ign_nscp= "Überspringe Netscape Kopfeintrag."; --char *msg_bad_rec = "Überspringe ungültigen Eintrag."; --char *msg_no_vrec = "Keine gültigen Einträge gefunden!"; --char *msg_gen_rpt = "Erzeuge Bericht für"; --char *msg_gen_sum = "Erzeuge Zusammenfassung"; --char *msg_get_data= "Lese Daten vom letzten Programmlauf..."; --char *msg_put_data= "Sichere Daten des aktuellen Programmlaufes..."; --char *msg_no_data = "Daten des letzten Programmlaufes nicht gefunden..."; --/*char *msg_bad_data= "Ungültiger Eintrag";*/ --char *msg_bad_data= "Fehler: Laufzeitdaten können nicht wiederhergestellt werden"; --char *msg_data_err= "Fehler: Kann Daten des letzten Programmlaufes nicht sichern"; --char *msg_dup_data= "Warnung: Möglicherweise doppelte Daten gelesen."; -- --/* memory allocation errors */ --char *msg_nomem_ts= "Nicht genug Speicher, Top Sites deaktiviert!"; --char *msg_nomem_tr= "Nicht genug Speicher, Top Verweise deaktiviert!"; --char *msg_nomem_tu= "Nicht genug Speicher, Top URLs deaktiviert!"; --char *msg_nomem_tc= "Nicht genug Speicher, Top Countries deaktiviert!"; --char *msg_nomem_ta= "Nicht genug Speicher, Top User Agents deaktiviert!"; --char *msg_nomem_tsr="Nicht genug Speicher, Top Suchausdrücke deaktiviert!"; --char *msg_nomem_dh= "Fehler beim Hinzufügen Rechner-node (daily), überspringe Eintrag."; --char *msg_nomem_mh= "Fehler beim Hinzufügen Rechner-node (monthly), überspringe Eintrag."; --char *msg_nomem_u = "Fehler beim Hinzufügen URL-node, überspringe Eintrag."; --char *msg_nomem_a = "Fehler beim Hinzufügen User-Agent-node, überspringe Eintrag."; --char *msg_nomem_r = "Fehler beim Hinzufügen Verweis-node, überspringe Eintrag."; --char *msg_nomem_sc= "Fehler beim Hinzufügen Suchausdrucks-node, überspringe Eintrag."; -- --/* log record errors */ --char *msg_big_rec = "Fehler: Überspringe überlangen Eintrag"; --char *msg_big_host= "Warnung: Überlanges Rechner-Feld abgeschnitten"; --char *msg_big_date= "Warnung: Überlanges Datums-Feld abgeschnitten"; --char *msg_big_req = "Warnung: Überlanges Request-Feld abgeschnitten"; --char *msg_big_ref = "Warnung: Überlanges Verweis-Feld abgeschnitten"; --char *msg_big_one = "Warnung: Überlangen Text abgeschnitten"; -- --/* misc errors */ --char *msg_no_open = "Fehler: Kann Datei nicht öffnen."; -- --/* Help display... */ --char *h_usage1 = "Syntax"; --char *h_usage2 = "[Optionen] [Protokolldatei]"; --char *h_msg[]= { -- "-h = diese Hilfe ausgeben" , -- "-v = Version ausgeben" , -- "-d = zusätzliche Kontrolldaten ausgeben" , -- "-F = Verwende FTP-Log-Format" , -- "-f = fold sequence error" , -- "-g = GMT (UTC) Zeitangaben bemutzen" , -- "-i = Datei mit historischen Daten ignorieren", -- "-p = sichere Programmzustand (inkrementell)", -- "-q = Statusmeldungen unterdrücken" , -- "-Q = alle Meldungen unterdrücken" , -- "-Y = Ländergrafik unterdrücken" , -- "-G = Stundengrafik unterdrücken" , -- "-H = Stundenstatistik unterdrücken" , -- "-L = Farbige Länderlegend unterdrücken" , -- "-l anz = 'Anz' Hintergrundlinien in Grafik verwenden", -- "-m num = Timeout für Besuch (HHMMSS Format)" , -- "-T = Laufzeit ausgeben" , -- "-c datei = Konfigurationsdatei 'datei' verwenden", -- "-n name = 'name' als Namen des Servers verwenden", -- "-o dir = Dateien im Verzeichnis 'dir' speichern", -- "-t name = Überschrift 'name' setzen" , -- "-a name = Anwenderprogramm 'name' unterdrücken", -- "-r name = Verweiser 'name' unterdrücken" , -- "-s name = Rechner 'name' unterdrücken" , -- "-u name = URL 'name' unterdrücken" , -- "-x name = Dateiendung 'name' verwenden" , -- "-P name = Seitenendung 'name' verwenden" , -- "-I name = weitere Name für den Index setzen" , -- "-A anz = die Top 'anz' Anwenderprogramme darstellen", -- "-C anz = die Top 'anz' Länder darstellen" , -- "-R anz = die Top 'anz' Verweiser darstellen" , -- "-S anz = die Top 'anz' Rechner (IPs) darstellen", -- "-U anz = die Top 'anz' URLs darstellen" , -- "-e anz = die Top 'anz' Startseiten darstellen", -- "-E anz = die Top 'anz' Endseiten darstellen" }; -- --#define LAST_HLP_MSG (int)(sizeof(h_msg)/sizeof(char *)) -- --/***********************************************************************/ --/* */ --/* HTML strings */ --/* */ --/* These strings are used as part of the HTML output generated by The */ --/* Webalizer. */ --/* */ --/***********************************************************************/ -- --/* header strings */ --char *msg_hhdr_sp = "Auslastungsstatistik für den Zeitraum"; --char *msg_hhdr_gt = "Erstellt am"; -- --/* main index strings */ --char *msg_main_us = "Zusammenfassung der Anfragen an"; --char *msg_main_per= "Letzte 12 Monate"; --char *msg_main_sum= "Zusammenfassung nach Monaten"; --char *msg_main_da = "Tagesdurchschnitt"; --char *msg_main_mt = "Monats-Summe"; -- --/* month HTML page strings */ --char *msg_hmth_du = "Tages-Statistik im Monat"; --char *msg_hmth_hu = "Stunden-Statistik im Monat"; -- --/* table header strings */ --char *msg_h_by = "sortiert nach"; --char *msg_h_avg = "Schnitt"; --char *msg_h_max = "Max"; --char *msg_h_total = "Summe"; --char *msg_h_totals= "Summen"; --char *msg_h_day = "Tag"; --char *msg_h_mth = "Monat"; --char *msg_h_hour = "Stunde"; --char *msg_h_hits = "Anfragen"; --char *msg_h_pages = "Seiten"; --char *msg_h_visits= "Besuche"; --char *msg_h_files = "Dateien"; --char *msg_h_sites = "Rechner"; --char *msg_h_xfer = "KBytes"; --char *msg_h_hname = "Rechnername"; --char *msg_h_url = "URL"; --char *msg_h_agent = "Anwenderprogramm"; --char *msg_h_ref = "Verweise"; --char *msg_h_ctry = "Land"; --char *msg_h_search= "Suche"; -- --/* links along top of page */ --char *msg_hlnk_ds = "Tages-Statistik"; --char *msg_hlnk_hs = "Stunden-Statistik"; --char *msg_hlnk_u = "URLs"; --char *msg_hlnk_s = "Rechner (IP-Adressen)"; --char *msg_hlnk_a = "Anwenderprogramme"; --char *msg_hlnk_c = "Länder"; --char *msg_hlnk_r = "Verweise"; --char *msg_hlnk_en = "Eingang"; --char *msg_hlnk_ex = "Ausgang"; --char *msg_hlnk_sr = "Suche"; -- --/* monthly total table */ --char *msg_mtot_ms = "Monats-Statistik für"; --char *msg_mtot_th = "Summe Anfragen"; --char *msg_mtot_tf = "Summe Dateien"; --char *msg_mtot_tx = "Summe KBytes"; --char *msg_mtot_us = "Summe unterschiedlicher Rechner (IP-Adressen)"; --char *msg_mtot_ur = "Summe unterschiedlicher Verweise"; --char *msg_mtot_ua = "Summe unterschiedlicher Browser/Roboter"; --char *msg_mtot_uu = "Summe unterschiedlicher URLs"; --char *msg_mtot_mhd= "Hits pro Tag"; --char *msg_mtot_mhh= "Hits pro Stunde"; --char *msg_mtot_mfd= "Dateien pro Tag"; --char *msg_mtot_mpd= "Seiten pro Tag"; --char *msg_mtot_mvd= "Besuche pro Tag"; --char *msg_mtot_mkd= "KBytes pro Tag"; --char *msg_mtot_rc = "Anfragen nach Status-Code"; -- --/* daily total table */ --char *msg_dtot_ds = "Tages-Statistik im Monat"; -- --/* hourly total table */ --char *msg_htot_hs = "Stunden-Statistik im Monat"; -- --/* country pie chart */ --char *msg_ctry_use= "Anfragen aus Ländern im Monat"; -- --/* top tables */ --/* Formatted as "Top xxx of xxx Total something" */ --char *msg_top_top = "Top"; --char *msg_top_of = "von"; --char *msg_top_s = "Rechnern (IP-Adressen)"; --char *msg_top_u = "URLs"; --char *msg_top_r = "Verweise"; --char *msg_top_a = "Browsern/Robotern"; --char *msg_top_c = "Ländern"; --char *msg_top_en = "Eingangsseiten Gesamt"; --char *msg_top_ex = "Ausgangsseiten Gesamt"; --char *msg_top_sr = "Suchausdrücke Gesamt"; -- --/* short month names MUST BE 3 CHARS in size... pad if needed*/ --/* Don't use Umlaute here, gd won't display them */ --char *s_month[12]={ "Jan", "Feb", "Mar", -- "Apr", "Mai", "Jun", -- "Jul", "Aug", "Sep", -- "Okt", "Nov", "Dez"}; -- --/* long month names - can be any length */ --char *l_month[12]={ "Januar", "Februar", "März", "April", -- "Mai", "Juni", "Juli", "August", -- "September","Oktober", "November","Dezember"}; -- --/* response code descriptions... order IS important! */ --struct response_code response[] = -- { { "Unbekannter Antwort-Code", 0 }, -- { "Code 100 - Weiter", 0 }, -- { "Code 101 - Wechsel des Protokolls", 0 }, -- { "Code 200 - OK", 0 }, -- { "Code 201 - Erzeugt", 0 }, -- { "Code 202 - Angenommen", 0 }, -- { "Code 203 - Keine autorisierte Information", 0 }, -- { "Code 204 - Kein Inhalt", 0 }, -- { "Code 205 - Lösche Inhalt", 0 }, -- { "Code 206 - Unvollständiger Inhalt", 0 }, -- { "Code 300 - Mehrere Auswahlmöglichkeiten", 0 }, -- { "Code 301 - Seite dauerhaft an anderer Stelle", 0 }, -- { "Code 302 - Seite an anderer Stelle gefunden", 0 }, -- { "Code 303 - Hole Seite von anderer Position", 0 }, -- { "Code 304 - Seite nicht geändert", 0 }, -- { "Code 305 - Benutzung des Proxys erforderlich", 0 }, -- { "Code 307 - Seite vorübergehend an anderer Stelle", 0 }, -- { "Code 400 - Ungültige Anfrage", 0 }, -- { "Code 401 - Nicht autorisierter Zugriff!", 0 }, -- { "Code 402 - Bezahlung erforderlich", 0 }, -- { "Code 403 - Zugriff nicht erlaubt!", 0 }, -- { "Code 404 - Seite nicht gefunden!", 0 }, -- { "Code 405 - Methode nicht erlaubt", 0 }, -- { "Code 406 - Nicht akzeptabel", 0 }, -- { "Code 407 - Proxy-Autorisierung erforderlich", 0 }, -- { "Code 408 - Zeitüberschreitung durch Browser...", 0 }, -- { "Code 409 - Konflikt", 0 }, -- { "Code 410 - Verloren", 0 }, -- { "Code 411 - Längenangabe erforderlich", 0 }, -- { "Code 412 - Fehlende Voraussetzung", 0 }, -- { "Code 413 - Request-Entity zu groß", 0 }, -- { "Code 414 - Request-URI zu lang", 0 }, -- { "Code 415 - Nicht unterstützter Medientyp", 0 }, -- { "Code 416 - Angegebener Bereich nicht in Ordnung", 0 }, -- { "Code 417 - Erwartung fehlgeschlagen", 0 }, -- { "Code 500 - Interner Server-Fehler (CGI?)", 0 }, -- { "Code 501 - Nicht implementiert", 0 }, -- { "Code 502 - Schlechtes Gateway", 0 }, -- { "Code 503 - Service nicht verfügbar", 0 }, -- { "Code 504 - Gateway Zeitüberschreitung...", 0 }, -- { "Code 505 - HTTP-Version wird nicht unterstützt", 0 } }; -- --char *msg_title = "Aufruf-Statistik für"; --char *msg_h_other = "Sonstige"; --/* Country codes (previously in ctry.h header file) */ -- --/* Plural konstant beibehalten */ --struct country_code { u_long idx; -- char *desc; -- u_long count; -- u_long files; -- double xfer; -- } ctry[] = { -- --{ 0, "Unbekannte Adressen", 0,0,0 }, --{ IDX_3C('c','o','m'), "Firmen (COM)", 0,0,0 }, --{ IDX_3C('e','d','u'), "USA-Univers./Schulen", 0,0,0 }, --{ IDX_3C('g','o','v'), "USA-Behörden", 0,0,0 }, --{ IDX_3C('i','n','t'), "Intern. Einrichtungen", 0,0,0 }, --{ IDX_3C('m','i','l'), "USA-Militär", 0,0,0 }, --{ IDX_3C('n','e','t'), "Netzwerke (NET)", 0,0,0 }, --{ IDX_3C('o','r','g'), "Organisationen (ORG)", 0,0,0 }, --{ IDX_4C('a','r','p','a'),"Alte Arpanet-Adressen", 0,0,0 }, --{ IDX_4C('n','a','t','o'),"NATO-Adressen", 0,0,0 }, --{ IDX_2C('a','d'), "Andorra", 0,0,0 }, --{ IDX_2C('a','e'), "Arabische Emirate", 0,0,0 }, --{ IDX_2C('a','f'), "Afghanistan", 0,0,0 }, --{ IDX_2C('a','g'), "Antigua und Barbuda", 0,0,0 }, --{ IDX_2C('a','i'), "Anguilla", 0,0,0 }, --{ IDX_2C('a','l'), "Albanien", 0,0,0 }, --{ IDX_2C('a','m'), "Armenien", 0,0,0 }, --{ IDX_2C('a','n'), "Niederländische Antillen", 0,0,0 }, --{ IDX_2C('a','o'), "Angola", 0,0,0 }, --{ IDX_2C('a','q'), "Antarktis", 0,0,0 }, --{ IDX_2C('a','r'), "Argentinien", 0,0,0 }, --{ IDX_2C('a','s'), "Amerikanisch Samoa", 0,0,0 }, --{ IDX_2C('a','t'), "Österreich", 0,0,0 }, --{ IDX_2C('a','u'), "Australien", 0,0,0 }, --{ IDX_2C('a','w'), "Aruba", 0,0,0 }, --{ IDX_2C('a','z'), "Aserbaidschan", 0,0,0 }, --{ IDX_2C('b','a'), "Bosnien und Herzegowina", 0,0,0 }, --{ IDX_2C('b','b'), "Barbados", 0,0,0 }, --{ IDX_2C('b','d'), "Bangladesch", 0,0,0 }, --{ IDX_2C('b','e'), "Belgien", 0,0,0 }, --{ IDX_2C('b','f'), "Burkina Faso", 0,0,0 }, --{ IDX_2C('b','g'), "Bulgarien", 0,0,0 }, --{ IDX_2C('b','h'), "Bahrain", 0,0,0 }, --{ IDX_2C('b','i'), "Burundi", 0,0,0 }, --{ IDX_2C('b','j'), "Benin", 0,0,0 }, --{ IDX_2C('b','m'), "Bermuda", 0,0,0 }, --{ IDX_2C('b','n'), "Brunei", 0,0,0 }, --{ IDX_2C('b','o'), "Bolivien", 0,0,0 }, --{ IDX_2C('b','r'), "Brasilien", 0,0,0 }, --{ IDX_2C('b','s'), "Bahamas", 0,0,0 }, --{ IDX_2C('b','t'), "Bhutan", 0,0,0 }, --{ IDX_2C('b','v'), "Bouvet Insel", 0,0,0 }, --{ IDX_2C('b','w'), "Botswana", 0,0,0 }, --{ IDX_2C('b','y'), "Weißrußland", 0,0,0 }, --{ IDX_2C('b','z'), "Belize", 0,0,0 }, --{ IDX_2C('c','a'), "Kanada", 0,0,0 }, --{ IDX_2C('c','c'), "Kokos-Inseln", 0,0,0 }, --{ IDX_2C('c','f'), "Zentralafrikanische Republik", 0,0,0 }, --{ IDX_2C('c','g'), "Kongo", 0,0,0 }, --{ IDX_2C('c','h'), "Schweiz", 0,0,0 }, --{ IDX_2C('c','i'), "Elfenbeinküste", 0,0,0 }, --{ IDX_2C('c','k'), "Cook-Inseln", 0,0,0 }, --{ IDX_2C('c','l'), "Chile", 0,0,0 }, --{ IDX_2C('c','m'), "Kamerun", 0,0,0 }, --{ IDX_2C('c','n'), "China", 0,0,0 }, --{ IDX_2C('c','o'), "Kolumbien", 0,0,0 }, --{ IDX_2C('c','r'), "Costa Rica", 0,0,0 }, --{ IDX_2C('c','s'), "Tschechoslowakei", 0,0,0 }, --{ IDX_2C('c','u'), "Kuba", 0,0,0 }, --{ IDX_2C('c','v'), "Kapverden", 0,0,0 }, --{ IDX_2C('c','x'), "Weihnachtsinsel", 0,0,0 }, --{ IDX_2C('c','y'), "Zypern", 0,0,0 }, --{ IDX_2C('c','z'), "Tschechien", 0,0,0 }, --{ IDX_2C('d','e'), "Deutschland", 0,0,0 }, --{ IDX_2C('d','j'), "Djibuti", 0,0,0 }, --{ IDX_2C('d','k'), "Dänemark", 0,0,0 }, --{ IDX_2C('d','m'), "Dominika", 0,0,0 }, --{ IDX_2C('d','o'), "Dominikanische Republik", 0,0,0 }, --{ IDX_2C('d','z'), "Algerien", 0,0,0 }, --{ IDX_2C('e','c'), "Ekuador", 0,0,0 }, --{ IDX_2C('e','e'), "Estland", 0,0,0 }, --{ IDX_2C('e','g'), "Ägypten", 0,0,0 }, --{ IDX_2C('e','h'), "West-Sahara", 0,0,0 }, --{ IDX_2C('e','r'), "Eritrea", 0,0,0 }, --{ IDX_2C('e','s'), "Spanien", 0,0,0 }, --{ IDX_2C('e','t'), "Äthiopien", 0,0,0 }, --{ IDX_2C('f','i'), "Finnland", 0,0,0 }, --{ IDX_2C('f','j'), "Fidschi-Inseln", 0,0,0 }, --{ IDX_2C('f','k'), "Falkland Inseln", 0,0,0 }, --{ IDX_2C('f','m'), "Mikronesien", 0,0,0 }, --{ IDX_2C('f','o'), "Färöer Inseln", 0,0,0 }, --{ IDX_2C('f','r'), "Frankreich", 0,0,0 }, --{ IDX_2C('f','x'), "Frankreich, Metropolitan", 0,0,0 }, --{ IDX_2C('g','a'), "Gabun", 0,0,0 }, --{ IDX_2C('g','b'), "Großbritannien (alt)", 0,0,0 }, --{ IDX_2C('g','d'), "Grenada", 0,0,0 }, --{ IDX_2C('g','e'), "Georgien", 0,0,0 }, --{ IDX_2C('g','f'), "Franz. Guayana", 0,0,0 }, --{ IDX_2C('g','h'), "Ghana", 0,0,0 }, --{ IDX_2C('g','i'), "Gibraltar", 0,0,0 }, --{ IDX_2C('g','l'), "Grönland", 0,0,0 }, --{ IDX_2C('g','m'), "Gambia", 0,0,0 }, --{ IDX_2C('g','n'), "Guinea", 0,0,0 }, --{ IDX_2C('g','p'), "Guadeloupe", 0,0,0 }, --{ IDX_2C('g','q'), "Äquatorial Guinea", 0,0,0 }, --{ IDX_2C('g','r'), "Griechenland", 0,0,0 }, --{ IDX_2C('g','s'), "Georgien und Sandwich Inseln", 0,0,0 }, --{ IDX_2C('g','t'), "Guatemala", 0,0,0 }, --{ IDX_2C('g','u'), "Guam", 0,0,0 }, --{ IDX_2C('g','w'), "Guinea-Bissau", 0,0,0 }, --{ IDX_2C('g','y'), "Guyana", 0,0,0 }, --{ IDX_2C('h','k'), "Hong Kong", 0,0,0 }, --{ IDX_2C('h','m'), "Heard und McDonald Inseln", 0,0,0 }, --{ IDX_2C('h','n'), "Honduras", 0,0,0 }, --{ IDX_2C('h','r'), "Kroatien (Hrvatska)", 0,0,0 }, --{ IDX_2C('h','t'), "Haiti", 0,0,0 }, --{ IDX_2C('h','u'), "Ungarn", 0,0,0 }, --{ IDX_2C('i','d'), "Indonesien", 0,0,0 }, --{ IDX_2C('i','e'), "Irland", 0,0,0 }, --{ IDX_2C('i','l'), "Israel", 0,0,0 }, --{ IDX_2C('i','n'), "Indien", 0,0,0 }, --{ IDX_2C('i','o'), "Brit. Indischer Ozean", 0,0,0 }, --{ IDX_2C('i','q'), "Irak", 0,0,0 }, --{ IDX_2C('i','r'), "Iran", 0,0,0 }, --{ IDX_2C('i','s'), "Island", 0,0,0 }, --{ IDX_2C('i','t'), "Italien", 0,0,0 }, --{ IDX_2C('j','m'), "Jamaika", 0,0,0 }, --{ IDX_2C('j','o'), "Jordanien", 0,0,0 }, --{ IDX_2C('j','p'), "Japan", 0,0,0 }, --{ IDX_2C('k','e'), "Kenia", 0,0,0 }, --{ IDX_2C('k','g'), "Kirgistan", 0,0,0 }, --{ IDX_2C('k','h'), "Kambodscha", 0,0,0 }, --{ IDX_2C('k','i'), "Kiribati", 0,0,0 }, --{ IDX_2C('k','m'), "Komoren", 0,0,0 }, --{ IDX_2C('k','n'), "Saint Kitts und Nevis", 0,0,0 }, --{ IDX_2C('k','p'), "Nordkorea", 0,0,0 }, --{ IDX_2C('k','r'), "Südkorea", 0,0,0 }, --{ IDX_2C('k','w'), "Kuwait", 0,0,0 }, --{ IDX_2C('k','y'), "Cayman Inseln", 0,0,0 }, --{ IDX_2C('k','z'), "Kasachstan", 0,0,0 }, --{ IDX_2C('l','a'), "Laos", 0,0,0 }, --{ IDX_2C('l','b'), "Libanon", 0,0,0 }, --{ IDX_2C('l','c'), "Saint Luzia", 0,0,0 }, --{ IDX_2C('l','i'), "Liechtenstein", 0,0,0 }, --{ IDX_2C('l','k'), "Sri Lanka", 0,0,0 }, --{ IDX_2C('l','r'), "Liberia", 0,0,0 }, --{ IDX_2C('l','s'), "Lesotho", 0,0,0 }, --{ IDX_2C('l','t'), "Lithauen", 0,0,0 }, --{ IDX_2C('l','u'), "Luxemburg", 0,0,0 }, --{ IDX_2C('l','v'), "Lettland", 0,0,0 }, --{ IDX_2C('l','y'), "Libyen", 0,0,0 }, --{ IDX_2C('m','a'), "Marokko", 0,0,0 }, --{ IDX_2C('m','c'), "Monaco", 0,0,0 }, --{ IDX_2C('m','d'), "Moldawien", 0,0,0 }, --{ IDX_2C('m','g'), "Madagaskar", 0,0,0 }, --{ IDX_2C('m','h'), "Marshall Inseln", 0,0,0 }, --{ IDX_2C('m','k'), "Mazedonien", 0,0,0 }, --{ IDX_2C('m','l'), "Mali", 0,0,0 }, --{ IDX_2C('m','m'), "Myanmar (Birma)", 0,0,0 }, --{ IDX_2C('m','n'), "Mongolei", 0,0,0 }, --{ IDX_2C('m','o'), "Makao", 0,0,0 }, --{ IDX_2C('m','p'), "Nord-Marianen", 0,0,0 }, --{ IDX_2C('m','q'), "Martinique", 0,0,0 }, --{ IDX_2C('m','r'), "Mauretanien", 0,0,0 }, --{ IDX_2C('m','s'), "Montserrat", 0,0,0 }, --{ IDX_2C('m','t'), "Malta", 0,0,0 }, --{ IDX_2C('m','u'), "Mauritius", 0,0,0 }, --{ IDX_2C('m','v'), "Malediven", 0,0,0 }, --{ IDX_2C('m','w'), "Malawi", 0,0,0 }, --{ IDX_2C('m','x'), "Mexiko", 0,0,0 }, --{ IDX_2C('m','y'), "Malaysien", 0,0,0 }, --{ IDX_2C('m','z'), "Mosambik", 0,0,0 }, --{ IDX_2C('n','a'), "Namibia", 0,0,0 }, --{ IDX_2C('n','c'), "Neukaledonien", 0,0,0 }, --{ IDX_2C('n','e'), "Niger", 0,0,0 }, --{ IDX_2C('n','f'), "Norfolk Insel", 0,0,0 }, --{ IDX_2C('n','g'), "Nigeria", 0,0,0 }, --{ IDX_2C('n','i'), "Nikaragua", 0,0,0 }, --{ IDX_2C('n','l'), "Niederlande", 0,0,0 }, --{ IDX_2C('n','o'), "Norwegen", 0,0,0 }, --{ IDX_2C('n','p'), "Nepal", 0,0,0 }, --{ IDX_2C('n','r'), "Nauru", 0,0,0 }, --{ IDX_2C('n','t'), "Neutrale Zone", 0,0,0 }, --{ IDX_2C('n','u'), "Niue", 0,0,0 }, --{ IDX_2C('n','z'), "Neuseeland", 0,0,0 }, --{ IDX_2C('o','m'), "Oman", 0,0,0 }, --{ IDX_2C('p','a'), "Panama", 0,0,0 }, --{ IDX_2C('p','e'), "Peru", 0,0,0 }, --{ IDX_2C('p','f'), "Franz. Polynesien", 0,0,0 }, --{ IDX_2C('p','g'), "Papua Neu-Guinea", 0,0,0 }, --{ IDX_2C('p','h'), "Philippinen", 0,0,0 }, --{ IDX_2C('p','k'), "Pakistan", 0,0,0 }, --{ IDX_2C('p','l'), "Polen", 0,0,0 }, --{ IDX_2C('p','m'), "St. Pierre und Miquelon", 0,0,0 }, --{ IDX_2C('p','n'), "Pitcairn", 0,0,0 }, --{ IDX_2C('p','r'), "Puerto Rico", 0,0,0 }, --{ IDX_2C('p','t'), "Portugal", 0,0,0 }, --{ IDX_2C('p','w'), "Palau (Belau)", 0,0,0 }, --{ IDX_2C('p','y'), "Paraguay", 0,0,0 }, --{ IDX_2C('q','a'), "Katar", 0,0,0 }, --{ IDX_2C('r','e'), "Reunion", 0,0,0 }, --{ IDX_2C('r','o'), "Rumänien", 0,0,0 }, --{ IDX_2C('r','u'), "Russische Föderation", 0,0,0 }, --{ IDX_2C('r','w'), "Ruanda", 0,0,0 }, --{ IDX_2C('s','a'), "Saudi Arabien", 0,0,0 }, --{ IDX_2C('s','B'), "Solomonen", 0,0,0 }, --{ IDX_2C('s','c'), "Seychellen", 0,0,0 }, --{ IDX_2C('s','d'), "Sudan", 0,0,0 }, --{ IDX_2C('s','e'), "Schweden", 0,0,0 }, --{ IDX_2C('s','g'), "Singapur", 0,0,0 }, --{ IDX_2C('s','h'), "Sankt Helena", 0,0,0 }, --{ IDX_2C('s','i'), "Slowenien", 0,0,0 }, --{ IDX_2C('s','j'), "Spitzbergen und Jan Mayen Inseln", 0,0,0 }, --{ IDX_2C('s','k'), "Slowakei", 0,0,0 }, --{ IDX_2C('s','l'), "Sierra Leone", 0,0,0 }, --{ IDX_2C('s','m'), "San Marino", 0,0,0 }, --{ IDX_2C('s','n'), "Senegal", 0,0,0 }, --{ IDX_2C('s','o'), "Somalia", 0,0,0 }, --{ IDX_2C('s','r'), "Surinam", 0,0,0 }, --{ IDX_2C('s','t'), "Sao Tome und Principe", 0,0,0 }, --{ IDX_2C('s','u'), "USSR (alt)", 0,0,0 }, --{ IDX_2C('s','v'), "El Salvador", 0,0,0 }, --{ IDX_2C('s','y'), "Syrien", 0,0,0 }, --{ IDX_2C('s','z'), "Swasiland", 0,0,0 }, --{ IDX_2C('t','c'), "Turks und Caicos Inseln", 0,0,0 }, --{ IDX_2C('t','d'), "Tschad", 0,0,0 }, --{ IDX_2C('t','f'), "Franz. Süd-Territorien", 0,0,0 }, --{ IDX_2C('t','g'), "Togo", 0,0,0 }, --{ IDX_2C('t','h'), "Thailand", 0,0,0 }, --{ IDX_2C('t','j'), "Tadschikistan", 0,0,0 }, --{ IDX_2C('t','k'), "Tokelau", 0,0,0 }, --{ IDX_2C('t','m'), "Turkmenistan", 0,0,0 }, --{ IDX_2C('t','n'), "Tunesien", 0,0,0 }, --{ IDX_2C('t','o'), "Tonga", 0,0,0 }, --{ IDX_2C('t','p'), "Ost-Timor", 0,0,0 }, --{ IDX_2C('t','r'), "Türkei", 0,0,0 }, --{ IDX_2C('t','t'), "Trinidad und Tobago", 0,0,0 }, --{ IDX_2C('t','v'), "Tuvalu", 0,0,0 }, --{ IDX_2C('t','w'), "Taiwan", 0,0,0 }, --{ IDX_2C('t','z'), "Tansania", 0,0,0 }, --{ IDX_2C('u','a'), "Ukraine", 0,0,0 }, --{ IDX_2C('u','g'), "Uganda (alt)", 0,0,0 }, --{ IDX_2C('u','k'), "England", 0,0,0 }, --{ IDX_2C('u','m'), "USA Inseln", 0,0,0 }, --{ IDX_2C('u','s'), "USA", 0,0,0 }, --{ IDX_2C('u','y'), "Uruguay", 0,0,0 }, --{ IDX_2C('u','z'), "Usbekistan", 0,0,0 }, --{ IDX_2C('v','a'), "Vatikan", 0,0,0 }, --{ IDX_2C('v','c'), "Saint Vincent und Grenadinen", 0,0,0 }, --{ IDX_2C('v','e'), "Venezuela", 0,0,0 }, --{ IDX_2C('v','g'), "Jungferninseln (Britisch)", 0,0,0 }, --{ IDX_2C('v','i'), "Jungferninseln (U.S.)", 0,0,0 }, --{ IDX_2C('v','n'), "Vietnam", 0,0,0 }, --{ IDX_2C('v','u'), "Vanuatu (Neue Hebriden)", 0,0,0 }, --{ IDX_2C('w','f'), "Wallis und Futuna Inseln", 0,0,0 }, --{ IDX_2C('w','s'), "Samoa", 0,0,0 }, --{ IDX_2C('y','e'), "Jemen", 0,0,0 }, --{ IDX_2C('y','t'), "Mayotte", 0,0,0 }, --{ IDX_2C('y','u'), "Jugoslawien (Serbien)", 0,0,0 }, --{ IDX_2C('z','a'), "Südafrika", 0,0,0 }, --{ IDX_2C('z','m'), "Sambia", 0,0,0 }, --{ IDX_2C('z','r'), "Zaire", 0,0,0 }, --{ IDX_2C('z','w'), "Simbabwe", 0,0,0}}; -- --#define MAX_CTRY (int)(sizeof(ctry)/sizeof(struct country_code)) -+/* -+ webalizer_lang.german -+ -+ Webalizer V1.2x language support file for German. -+ 28-May-1998 translated by Dirk Meyer -+ 31-May-1998 portions by Bernd Dau -+ 31-May-1998 modified for level 1.1 support -+ 02-Jun-1998 translation level 1.1 by Dirk Meyer -+ 30-Jun-1998 typing errors fixed by Dirk Kocherscheidt -+ 23-Jul-1998 modified for level 1.2 support -+ 01-Aug-1998 translation redone by SysWolf -+ 09-Oct-1998 changes added by Soren Gust -+ 09-Oct-1998 changes added by Martin Kraemer -+ 24-Dec-1998 names of countries by Dirk Kocherscheidt -+ 24-Dec-1998 grammar and spelling by Dirk Meyer -+ 10-Jan-1999 improvements by Winfried Trümper -+ 05-Mrz-1999 improvements by Winfried Trümper -+ 06-Mrz-1999 new usage by Dirk Meyer -+ 08-Mar-1999 Updated HTTP 1.1 response codes by Yves Lafon (ylafon@w3.org) -+ 09-Mrz-1999 new result codes by Dirk Meyer -+ 24-May-1999 fixed umlaut coding by Arne Blankerts -+ 11-Jun-1999 clean-up by Wolfgang Schemmel -+ 12-Jun-1999 remove english terms by Dirk Meyer -+ 28-Jun-1999 Modified for level 1.3 support (Brad@mrunix.net) -+ 05-Jul-1999 Add. German translations by Gerald Erdmann (gerald@stepman.com) -+ 28-Jul-1999 fixed umlaut coding by Dirk Meyer -+ -+ Language files are named using the following convention: -+ -+ webalizer_lang.LANGUAGE -+ -+ where 'LANGUAGE' is the name of the language the file is -+ translated into (ie: webalizer_lang.russian for russian). -+ Either copy the desired language file to webalizer_lang.h -+ or create a symbolic link, then re-compile. -+ -+ If you translate this file into a different language, please -+ send a copy to brad@mrunix.net. -+ -+*/ -+ -+/***********************************************************************/ -+/* DEFINE LANGUAGE NAME here */ -+/***********************************************************************/ -+ -+char *language = "German"; -+ -+/***********************************************************************/ -+/* */ -+/* Informational messages */ -+/* */ -+/* These messages are only displayed while The Webalizer is being run, */ -+/* usually to the screen, and are not part of the HTML output. */ -+/* */ -+/***********************************************************************/ -+ -+/* these are only used in timing totals */ -+/* Format: XXX records (XXX ignored, XXX bad) in X.XX seconds */ -+char *msg_records = "Einträge"; -+char *msg_ignored = "ignoriert"; -+char *msg_bad = "ungültig"; -+char *msg_in = "in"; -+char *msg_seconds = "Sekunden"; -+ -+/* progress and setup error messages */ -+char *msg_log_err = "Fehler: Kann die Protokolldatei nicht öffnen."; -+char *msg_log_use = "Verwende Protokolldatei"; -+char *msg_dir_err = "Fehler: Kann nicht in das Verzeichnis wechseln."; -+char *msg_dir_use = "Erzeuge Dateien in"; -+char *msg_cur_dir = "dem aktuellen Verzeichnis"; -+char *msg_hostname= "Rechnername für Bericht ist"; -+char *msg_ign_hist= "Ignoriere vorhandene historische Daten..."; -+char *msg_no_hist = "Datei mit historischen Daten nicht gefunden..."; -+char *msg_get_hist= "Lese Datei mit historischen Daten..."; -+char *msg_put_hist= "Speichere historische Daten..."; -+char *msg_hist_err= "Fehler: Kann Datei mit historischen Daten nicht schreiben."; -+char *msg_bad_hist= "Fehler: Ignoriere ungültigen historischen Eintrag."; -+char *msg_bad_conf= "Fehler: Kann Konfigurations-Datei nicht lesen."; -+char *msg_bad_key = "Warnung: unbekanntes Schlüsselwort"; -+char *msg_bad_date= "Fehler: Eintrag wird übersprungen (Datum ungültig)."; -+char *msg_ign_nscp= "Überspringe Netscape Kopfeintrag."; -+char *msg_bad_rec = "Überspringe ungültigen Eintrag."; -+char *msg_no_vrec = "Keine gültigen Einträge gefunden!"; -+char *msg_gen_rpt = "Erzeuge Bericht für"; -+char *msg_gen_sum = "Erzeuge Zusammenfassung"; -+char *msg_get_data= "Lese Daten vom letzten Programmlauf..."; -+char *msg_put_data= "Speichere Daten des aktuellen Programmlaufes..."; -+char *msg_no_data = "Daten des letzten Programmlaufes nicht gefunden..."; -+char *msg_bad_data= "Fehler: Kann Daten des letzten Programmlaufes nicht wiederherstellen"; -+char *msg_data_err= "Fehler: Kann Daten des letzten Programmlaufes nicht speichern"; -+char *msg_dup_data= "Warnung: Möglicherweise doppelte Daten gelesen."; -+ -+/* memory allocation errors */ -+char *msg_nomem_ts= "Nicht genug Speicher, Top Sites deaktiviert!"; -+char *msg_nomem_tr= "Nicht genug Speicher, Top Verweise deaktiviert!"; -+char *msg_nomem_tu= "Nicht genug Speicher, Top URLs deaktiviert!"; -+char *msg_nomem_tc= "Nicht genug Speicher, Top Countries deaktiviert!"; -+char *msg_nomem_ta= "Nicht genug Speicher, Top User Agents deaktiviert!"; -+char *msg_nomem_tsr="Nicht genug Speicher, Top Suchausdrücke deaktiviert!"; -+char *msg_nomem_dh= "Fehler beim Hinzufügen Rechner-node (daily), überspringe Eintrag."; -+char *msg_nomem_mh= "Fehler beim Hinzufügen Rechner-node (monthly), überspringe Eintrag."; -+char *msg_nomem_u = "Fehler beim Hinzufügen URL-node, überspringe Eintrag."; -+char *msg_nomem_a = "Fehler beim Hinzufügen User-Agent-node, überspringe Eintrag."; -+char *msg_nomem_r = "Fehler beim Hinzufügen Verweis-node, überspringe Eintrag."; -+char *msg_nomem_sc= "Fehler beim Hinzufügen Suchausdrucks-node, überspringe Eintrag."; -+ -+/* log record errors */ -+char *msg_big_rec = "Fehler: Überspringe überlangen Eintrag"; -+char *msg_big_host= "Warnung: Überlanges Rechner-Feld abgeschnitten"; -+char *msg_big_date= "Warnung: Überlanges Datums-Feld abgeschnitten"; -+char *msg_big_req = "Warnung: Überlanges Request-Feld abgeschnitten"; -+char *msg_big_ref = "Warnung: Überlanges Verweis-Feld abgeschnitten"; -+char *msg_big_one = "Warnung: Überlangen Text abgeschnitten"; -+ -+/* misc errors */ -+char *msg_no_open = "Fehler: Kann Datei nicht öffnen."; -+ -+/* Help display... */ -+char *h_usage1 = "Syntax"; -+char *h_usage2 = "[Optionen] [Protokolldatei]"; -+char *h_msg[]= { -+ "-h = diese Hilfe ausgeben" , -+ "-v = Version ausgeben" , -+ "-d = zusätzliche Kontrolldaten ausgeben" , -+ "-F = Verwende FTP-Log-Format" , -+ "-f = Ignoriere zeitliche Fehler bei Besuchen", -+ "-g = GMT (UTC) Zeitangaben bemutzen" , -+ "-i = Datei mit historischen Daten ignorieren", -+ "-p = sichere Programmzustand (inkrementell)", -+ "-q = Statusmeldungen unterdrücken" , -+ "-Q = alle Meldungen unterdrücken" , -+ "-Y = Ländergrafik unterdrücken" , -+ "-G = Stundengrafik unterdrücken" , -+ "-H = Stundenstatistik unterdrücken" , -+ "-L = Farbige Länderlegende unterdrücken" , -+ "-l anz = 'Anz' Hintergrundlinien in Grafik verwenden", -+ "-m num = Timeout für Besuch (HHMMSS Format)" , -+ "-T = Laufzeit ausgeben" , -+ "-c datei = Konfigurationsdatei 'datei' verwenden", -+ "-n name = 'name' als Namen des Servers verwenden", -+ "-o dir = Dateien im Verzeichnis 'dir' speichern", -+ "-t name = Überschrift 'name' setzen" , -+ "-a name = Anwenderprogramm 'name' unterdrücken", -+ "-r name = Verweiser 'name' unterdrücken" , -+ "-s name = Rechner 'name' unterdrücken" , -+ "-u name = URL 'name' unterdrücken" , -+ "-x name = Dateiendung 'name' verwenden" , -+ "-P name = Seitenendung 'name' verwenden" , -+ "-I name = weitere Name für den Index setzen" , -+ "-A anz = die Top 'anz' Anwenderprogramme darstellen", -+ "-C anz = die Top 'anz' Länder darstellen" , -+ "-R anz = die Top 'anz' Verweiser darstellen" , -+ "-S anz = die Top 'anz' Rechner (IPs) darstellen", -+ "-U anz = die Top 'anz' URLs darstellen" , -+ "-e anz = die Top 'anz' Startseiten darstellen", -+ "-E anz = die Top 'anz' Endseiten darstellen" }; -+ -+#define LAST_HLP_MSG (int)(sizeof(h_msg)/sizeof(char *)) -+ -+/***********************************************************************/ -+/* */ -+/* HTML strings */ -+/* */ -+/* These strings are used as part of the HTML output generated by The */ -+/* Webalizer. */ -+/* */ -+/***********************************************************************/ -+ -+/* header strings */ -+char *msg_hhdr_sp = "Auslastungsstatistik für den Zeitraum"; -+char *msg_hhdr_gt = "Erstellt am"; -+ -+/* main index strings */ -+char *msg_main_us = "Zusammenfassung der Anfragen an"; -+char *msg_main_per= "Letzte 12 Monate"; -+char *msg_main_sum= "Zusammenfassung nach Monaten"; -+char *msg_main_da = "Tagesdurchschnitt"; -+char *msg_main_mt = "Monats-Summe"; -+ -+/* month HTML page strings */ -+char *msg_hmth_du = "Tages-Statistik im Monat"; -+char *msg_hmth_hu = "Stunden-Statistik im Monat"; -+ -+/* table header strings */ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+char *msg_h_by = "sortiert nach"; -+char *msg_h_avg = "Schnitt"; -+char *msg_h_max = "Maximum"; -+char *msg_h_total = "Summe"; -+char *msg_h_totals= "Summen"; -+char *msg_h_day = "Tag"; -+char *msg_h_mth = "Monat"; -+char *msg_h_hour = "Stunde"; -+char *msg_h_hits = "Anfragen"; -+char *msg_h_pages = "Seiten"; -+char *msg_h_visits= "Besuche"; -+char *msg_h_files = "Dateien"; -+char *msg_h_sites = "Rechner"; -+char *msg_h_xfer = "kb"; -+char *msg_h_hname = "Rechnername"; -+char *msg_h_url = "URL"; -+char *msg_h_agent = "Anwenderprogramm"; -+char *msg_h_ref = "Verweise"; -+char *msg_h_ctry = "Land"; -+char *msg_h_search= "Suche"; -+ -+/* links along top of page */ -+char *msg_hlnk_ds = "Tages-Statistik"; -+char *msg_hlnk_hs = "Stunden-Statistik"; -+char *msg_hlnk_u = "URLs"; -+char *msg_hlnk_s = "Rechner (IP-Adressen)"; -+char *msg_hlnk_a = "Anwenderprogramme"; -+char *msg_hlnk_c = "Länder"; -+char *msg_hlnk_r = "Verweise"; -+char *msg_hlnk_en = "Eingang"; -+char *msg_hlnk_ex = "Ausgang"; -+char *msg_hlnk_sr = "Suche"; -+ -+/* monthly total table */ -+char *msg_mtot_ms = "Monats-Statistik für"; -+char *msg_mtot_th = "Summe Anfragen"; -+char *msg_mtot_tf = "Summe Dateien"; -+char *msg_mtot_tx = "Summe kb"; -+char *msg_mtot_us = "Summe unterschiedlicher Rechner (IP-Adressen)"; -+char *msg_mtot_ur = "Summe unterschiedlicher Verweise"; -+char *msg_mtot_ua = "Summe unterschiedlicher Anwenderprogramme"; -+char *msg_mtot_uu = "Summe unterschiedlicher URLs"; -+char *msg_mtot_mhd= "Anfragen pro Tag"; -+char *msg_mtot_mhh= "Anfragen pro Stunde"; -+char *msg_mtot_mfd= "Dateien pro Tag"; -+char *msg_mtot_mpd= "Seiten pro Tag"; -+char *msg_mtot_mvd= "Besuche pro Tag"; -+char *msg_mtot_mkd= "kb pro Tag"; -+char *msg_mtot_rc = "Anfragen nach Status-Code"; -+ -+/* daily total table */ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+char *msg_dtot_ds = "Tages-Statistik im Monat"; -+ -+/* hourly total table */ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+char *msg_htot_hs = "Stunden-Statistik im Monat"; -+ -+/* country pie chart */ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+char *msg_ctry_use= "Anfragen aus Laendern im Monat"; -+ -+/* top tables */ -+/* Formatted as "Top xxx of xxx Total something" */ -+char *msg_top_top = "Top"; -+char *msg_top_of = "von"; -+char *msg_top_s = "Rechnern (IP-Adressen)"; -+char *msg_top_u = "URLs"; -+char *msg_top_r = "Verweise"; -+char *msg_top_a = "Anwenderprogramme"; -+char *msg_top_c = "Ländern"; -+char *msg_top_en = "Eingangsseiten Gesamt"; -+char *msg_top_ex = "Ausgangsseiten Gesamt"; -+char *msg_top_sr = "Suchausdrücke Gesamt"; -+ -+/* short month names MUST BE 3 CHARS in size... pad if needed*/ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+char *s_month[12]={ "Jan", "Feb", "Mar", -+ "Apr", "Mai", "Jun", -+ "Jul", "Aug", "Sep", -+ "Okt", "Nov", "Dez"}; -+ -+/* long month names - can be any length */ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+char *l_month[12]={ "Januar", "Februar", "Maerz", "April", -+ "Mai", "Juni", "Juli", "August", -+ "September","Oktober", "November","Dezember"}; -+ -+/* Nur Ligaturen verwenden, viele Browser haben nicht ISO_8859-1 */ -+/* response code descriptions... order IS important! */ -+struct response_code response[] = -+ { { "Unbekannter Antwort-Code", 0 }, -+ { "Code 100 - Weiter", 0 }, -+ { "Code 101 - Wechsel des Protokolls", 0 }, -+ { "Code 200 - OK", 0 }, -+ { "Code 201 - Erzeugt", 0 }, -+ { "Code 202 - Angenommen", 0 }, -+ { "Code 203 - Keine endgültige Information", 0 }, -+ { "Code 204 - Kein Inhalt", 0 }, -+ { "Code 205 - Lösche Inhalt", 0 }, -+ { "Code 206 - Unvollständiger Inhalt", 0 }, -+ { "Code 300 - Mehrere Auswahlmöglichkeiten", 0 }, -+ { "Code 301 - Seite dauerhaft an anderer Stelle", 0 }, -+ { "Code 302 - Seite an anderer Stelle gefunden", 0 }, -+ { "Code 303 - Hole Seite von anderer Position", 0 }, -+ { "Code 304 - Seite nicht geändert", 0 }, -+ { "Code 305 - Benutzung des Proxys erforderlich", 0 }, -+ { "Code 307 - Seite vorübergehend an anderer Stelle", 0 }, -+ { "Code 400 - Ungültige Anfrage", 0 }, -+ { "Code 401 - Nicht autorisierter Zugriff!", 0 }, -+ { "Code 402 - Bezahlung erforderlich", 0 }, -+ { "Code 403 - Zugriff nicht erlaubt!", 0 }, -+ { "Code 404 - Seite nicht gefunden!", 0 }, -+ { "Code 405 - Methode nicht erlaubt", 0 }, -+ { "Code 406 - Nicht akzeptabel", 0 }, -+ { "Code 407 - Proxy-Autorisierung erforderlich", 0 }, -+ { "Code 408 - Zeitüberschreitung durch Anwenderprogramm...", 0 }, -+ { "Code 409 - Konflikt", 0 }, -+ { "Code 410 - Verloren", 0 }, -+ { "Code 411 - Längenangabe erforderlich", 0 }, -+ { "Code 412 - Fehlende Voraussetzung", 0 }, -+ { "Code 413 - Request-Entity zu groß", 0 }, -+ { "Code 414 - Request-URI zu lang", 0 }, -+ { "Code 415 - Nicht unterstützter Medientyp", 0 }, -+ { "Code 416 - Angegebener Bereich nicht in Ordnung", 0 }, -+ { "Code 417 - Erwartung fehlgeschlagen", 0 }, -+ { "Code 500 - Interner Server-Fehler (CGI?)", 0 }, -+ { "Code 501 - Nicht implementiert", 0 }, -+ { "Code 502 - Fehlerhaftes Gateway", 0 }, -+ { "Code 503 - Service nicht verfügbar", 0 }, -+ { "Code 504 - Gateway Zeitüberschreitung...", 0 }, -+ { "Code 505 - HTTP-Version wird nicht unterstützt", 0 } }; -+ -+/* New for 1.1 */ -+ -+char *msg_title = "Aufruf-Statistik für"; -+char *msg_h_other = "Sonstige"; -+/* Country codes (previously in ctry.h header file) */ -+ -+/* Plural konstant beibehalten */ -+/* Keine Umlaute, gd 1.3 kann sie nicht darstellen */ -+struct country_code { u_long idx; -+ char *desc; -+ u_long count; -+ u_long files; -+ double xfer; -+ } ctry[] = { -+ -+{ 0, "Unbekannte Adressen", 0,0,0 }, -+{ IDX_3C('c','o','m'), "Firmen (COM)", 0,0,0 }, -+{ IDX_3C('e','d','u'), "USA-Univers./Schulen", 0,0,0 }, -+{ IDX_3C('g','o','v'), "USA-Behoerden", 0,0,0 }, -+{ IDX_3C('i','n','t'), "Intern. Einrichtungen", 0,0,0 }, -+{ IDX_3C('m','i','l'), "USA-Militaer", 0,0,0 }, -+{ IDX_3C('n','e','t'), "Netzwerke (NET)", 0,0,0 }, -+{ IDX_3C('o','r','g'), "Organisationen (ORG)", 0,0,0 }, -+{ IDX_4C('a','r','p','a'),"Alte Arpanet-Adressen", 0,0,0 }, -+{ IDX_4C('n','a','t','o'),"NATO-Adressen", 0,0,0 }, -+{ IDX_2C('a','d'), "Andorra", 0,0,0 }, -+{ IDX_2C('a','e'), "Arabische Emirate", 0,0,0 }, -+{ IDX_2C('a','f'), "Afghanistan", 0,0,0 }, -+{ IDX_2C('a','g'), "Antigua und Barbuda", 0,0,0 }, -+{ IDX_2C('a','i'), "Anguilla", 0,0,0 }, -+{ IDX_2C('a','l'), "Albanien", 0,0,0 }, -+{ IDX_2C('a','m'), "Armenien", 0,0,0 }, -+{ IDX_2C('a','n'), "Niederlaendische Antillen", 0,0,0 }, -+{ IDX_2C('a','o'), "Angola", 0,0,0 }, -+{ IDX_2C('a','q'), "Antarktis", 0,0,0 }, -+{ IDX_2C('a','r'), "Argentinien", 0,0,0 }, -+{ IDX_2C('a','s'), "Amerikanisch Samoa", 0,0,0 }, -+{ IDX_2C('a','t'), "Oesterreich", 0,0,0 }, -+{ IDX_2C('a','u'), "Australien", 0,0,0 }, -+{ IDX_2C('a','w'), "Aruba", 0,0,0 }, -+{ IDX_2C('a','z'), "Aserbaidschan", 0,0,0 }, -+{ IDX_2C('b','a'), "Bosnien und Herzegowina", 0,0,0 }, -+{ IDX_2C('b','b'), "Barbados", 0,0,0 }, -+{ IDX_2C('b','d'), "Bangladesch", 0,0,0 }, -+{ IDX_2C('b','e'), "Belgien", 0,0,0 }, -+{ IDX_2C('b','f'), "Burkina Faso", 0,0,0 }, -+{ IDX_2C('b','g'), "Bulgarien", 0,0,0 }, -+{ IDX_2C('b','h'), "Bahrain", 0,0,0 }, -+{ IDX_2C('b','i'), "Burundi", 0,0,0 }, -+{ IDX_2C('b','j'), "Benin", 0,0,0 }, -+{ IDX_2C('b','m'), "Bermuda", 0,0,0 }, -+{ IDX_2C('b','n'), "Brunei", 0,0,0 }, -+{ IDX_2C('b','o'), "Bolivien", 0,0,0 }, -+{ IDX_2C('b','r'), "Brasilien", 0,0,0 }, -+{ IDX_2C('b','s'), "Bahamas", 0,0,0 }, -+{ IDX_2C('b','t'), "Bhutan", 0,0,0 }, -+{ IDX_2C('b','v'), "Bouvet Insel", 0,0,0 }, -+{ IDX_2C('b','w'), "Botswana", 0,0,0 }, -+{ IDX_2C('b','y'), "Weissrussland", 0,0,0 }, -+{ IDX_2C('b','z'), "Belize", 0,0,0 }, -+{ IDX_2C('c','a'), "Kanada", 0,0,0 }, -+{ IDX_2C('c','c'), "Kokos-Inseln", 0,0,0 }, -+{ IDX_2C('c','f'), "Zentralafrikanische Republik", 0,0,0 }, -+{ IDX_2C('c','g'), "Kongo", 0,0,0 }, -+{ IDX_2C('c','h'), "Schweiz", 0,0,0 }, -+{ IDX_2C('c','i'), "Elfenbeinkueste", 0,0,0 }, -+{ IDX_2C('c','k'), "Cook-Inseln", 0,0,0 }, -+{ IDX_2C('c','l'), "Chile", 0,0,0 }, -+{ IDX_2C('c','m'), "Kamerun", 0,0,0 }, -+{ IDX_2C('c','n'), "China", 0,0,0 }, -+{ IDX_2C('c','o'), "Kolumbien", 0,0,0 }, -+{ IDX_2C('c','r'), "Costa Rica", 0,0,0 }, -+{ IDX_2C('c','s'), "Tschechoslowakei", 0,0,0 }, -+{ IDX_2C('c','u'), "Kuba", 0,0,0 }, -+{ IDX_2C('c','v'), "Kapverden", 0,0,0 }, -+{ IDX_2C('c','x'), "Weihnachtsinsel", 0,0,0 }, -+{ IDX_2C('c','y'), "Zypern", 0,0,0 }, -+{ IDX_2C('c','z'), "Tschechien", 0,0,0 }, -+{ IDX_2C('d','e'), "Deutschland", 0,0,0 }, -+{ IDX_2C('d','j'), "Djibuti", 0,0,0 }, -+{ IDX_2C('d','k'), "Daenemark", 0,0,0 }, -+{ IDX_2C('d','m'), "Dominika", 0,0,0 }, -+{ IDX_2C('d','o'), "Dominikanische Republik", 0,0,0 }, -+{ IDX_2C('d','z'), "Algerien", 0,0,0 }, -+{ IDX_2C('e','c'), "Ekuador", 0,0,0 }, -+{ IDX_2C('e','e'), "Estland", 0,0,0 }, -+{ IDX_2C('e','g'), "Aegypten", 0,0,0 }, -+{ IDX_2C('e','h'), "West-Sahara", 0,0,0 }, -+{ IDX_2C('e','r'), "Eritrea", 0,0,0 }, -+{ IDX_2C('e','s'), "Spanien", 0,0,0 }, -+{ IDX_2C('e','t'), "Aethiopien", 0,0,0 }, -+{ IDX_2C('f','i'), "Finnland", 0,0,0 }, -+{ IDX_2C('f','j'), "Fidschi-Inseln", 0,0,0 }, -+{ IDX_2C('f','k'), "Falkland Inseln", 0,0,0 }, -+{ IDX_2C('f','m'), "Mikronesien", 0,0,0 }, -+{ IDX_2C('f','o'), "Faeroeer Inseln", 0,0,0 }, -+{ IDX_2C('f','r'), "Frankreich", 0,0,0 }, -+{ IDX_2C('f','x'), "Frankreich, Metropolitan", 0,0,0 }, -+{ IDX_2C('g','a'), "Gabun", 0,0,0 }, -+{ IDX_2C('g','b'), "Grossbritannien (alt)", 0,0,0 }, -+{ IDX_2C('g','d'), "Grenada", 0,0,0 }, -+{ IDX_2C('g','e'), "Georgien", 0,0,0 }, -+{ IDX_2C('g','f'), "Franz. Guayana", 0,0,0 }, -+{ IDX_2C('g','h'), "Ghana", 0,0,0 }, -+{ IDX_2C('g','i'), "Gibraltar", 0,0,0 }, -+{ IDX_2C('g','l'), "Groenland", 0,0,0 }, -+{ IDX_2C('g','m'), "Gambia", 0,0,0 }, -+{ IDX_2C('g','n'), "Guinea", 0,0,0 }, -+{ IDX_2C('g','p'), "Guadeloupe", 0,0,0 }, -+{ IDX_2C('g','q'), "Aequatorial Guinea", 0,0,0 }, -+{ IDX_2C('g','r'), "Griechenland", 0,0,0 }, -+{ IDX_2C('g','s'), "Georgien und Sandwich Inseln", 0,0,0 }, -+{ IDX_2C('g','t'), "Guatemala", 0,0,0 }, -+{ IDX_2C('g','u'), "Guam", 0,0,0 }, -+{ IDX_2C('g','w'), "Guinea-Bissau", 0,0,0 }, -+{ IDX_2C('g','y'), "Guyana", 0,0,0 }, -+{ IDX_2C('h','k'), "Hong Kong", 0,0,0 }, -+{ IDX_2C('h','m'), "Heard und McDonald Inseln", 0,0,0 }, -+{ IDX_2C('h','n'), "Honduras", 0,0,0 }, -+{ IDX_2C('h','r'), "Kroatien (Hrvatska)", 0,0,0 }, -+{ IDX_2C('h','t'), "Haiti", 0,0,0 }, -+{ IDX_2C('h','u'), "Ungarn", 0,0,0 }, -+{ IDX_2C('i','d'), "Indonesien", 0,0,0 }, -+{ IDX_2C('i','e'), "Irland", 0,0,0 }, -+{ IDX_2C('i','l'), "Israel", 0,0,0 }, -+{ IDX_2C('i','n'), "Indien", 0,0,0 }, -+{ IDX_2C('i','o'), "Brit. Indischer Ozean", 0,0,0 }, -+{ IDX_2C('i','q'), "Irak", 0,0,0 }, -+{ IDX_2C('i','r'), "Iran", 0,0,0 }, -+{ IDX_2C('i','s'), "Island", 0,0,0 }, -+{ IDX_2C('i','t'), "Italien", 0,0,0 }, -+{ IDX_2C('j','m'), "Jamaika", 0,0,0 }, -+{ IDX_2C('j','o'), "Jordanien", 0,0,0 }, -+{ IDX_2C('j','p'), "Japan", 0,0,0 }, -+{ IDX_2C('k','e'), "Kenia", 0,0,0 }, -+{ IDX_2C('k','g'), "Kirgistan", 0,0,0 }, -+{ IDX_2C('k','h'), "Kambodscha", 0,0,0 }, -+{ IDX_2C('k','i'), "Kiribati", 0,0,0 }, -+{ IDX_2C('k','m'), "Komoren", 0,0,0 }, -+{ IDX_2C('k','n'), "Saint Kitts und Nevis", 0,0,0 }, -+{ IDX_2C('k','p'), "Nordkorea", 0,0,0 }, -+{ IDX_2C('k','r'), "Suedkorea", 0,0,0 }, -+{ IDX_2C('k','w'), "Kuwait", 0,0,0 }, -+{ IDX_2C('k','y'), "Cayman Inseln", 0,0,0 }, -+{ IDX_2C('k','z'), "Kasachstan", 0,0,0 }, -+{ IDX_2C('l','a'), "Laos", 0,0,0 }, -+{ IDX_2C('l','b'), "Libanon", 0,0,0 }, -+{ IDX_2C('l','c'), "Saint Luzia", 0,0,0 }, -+{ IDX_2C('l','i'), "Liechtenstein", 0,0,0 }, -+{ IDX_2C('l','k'), "Sri Lanka", 0,0,0 }, -+{ IDX_2C('l','r'), "Liberia", 0,0,0 }, -+{ IDX_2C('l','s'), "Lesotho", 0,0,0 }, -+{ IDX_2C('l','t'), "Litauen", 0,0,0 }, -+{ IDX_2C('l','u'), "Luxemburg", 0,0,0 }, -+{ IDX_2C('l','v'), "Lettland", 0,0,0 }, -+{ IDX_2C('l','y'), "Libyen", 0,0,0 }, -+{ IDX_2C('m','a'), "Marokko", 0,0,0 }, -+{ IDX_2C('m','c'), "Monaco", 0,0,0 }, -+{ IDX_2C('m','d'), "Moldawien", 0,0,0 }, -+{ IDX_2C('m','g'), "Madagaskar", 0,0,0 }, -+{ IDX_2C('m','h'), "Marshall Inseln", 0,0,0 }, -+{ IDX_2C('m','k'), "Mazedonien", 0,0,0 }, -+{ IDX_2C('m','l'), "Mali", 0,0,0 }, -+{ IDX_2C('m','m'), "Myanmar (Birma)", 0,0,0 }, -+{ IDX_2C('m','n'), "Mongolei", 0,0,0 }, -+{ IDX_2C('m','o'), "Makao", 0,0,0 }, -+{ IDX_2C('m','p'), "Nord-Marianen", 0,0,0 }, -+{ IDX_2C('m','q'), "Martinique", 0,0,0 }, -+{ IDX_2C('m','r'), "Mauretanien", 0,0,0 }, -+{ IDX_2C('m','s'), "Montserrat", 0,0,0 }, -+{ IDX_2C('m','t'), "Malta", 0,0,0 }, -+{ IDX_2C('m','u'), "Mauritius", 0,0,0 }, -+{ IDX_2C('m','v'), "Malediven", 0,0,0 }, -+{ IDX_2C('m','w'), "Malawi", 0,0,0 }, -+{ IDX_2C('m','x'), "Mexiko", 0,0,0 }, -+{ IDX_2C('m','y'), "Malaysien", 0,0,0 }, -+{ IDX_2C('m','z'), "Mosambik", 0,0,0 }, -+{ IDX_2C('n','a'), "Namibia", 0,0,0 }, -+{ IDX_2C('n','c'), "Neukaledonien", 0,0,0 }, -+{ IDX_2C('n','e'), "Niger", 0,0,0 }, -+{ IDX_2C('n','f'), "Norfolk Insel", 0,0,0 }, -+{ IDX_2C('n','g'), "Nigeria", 0,0,0 }, -+{ IDX_2C('n','i'), "Nikaragua", 0,0,0 }, -+{ IDX_2C('n','l'), "Niederlande", 0,0,0 }, -+{ IDX_2C('n','o'), "Norwegen", 0,0,0 }, -+{ IDX_2C('n','p'), "Nepal", 0,0,0 }, -+{ IDX_2C('n','r'), "Nauru", 0,0,0 }, -+{ IDX_2C('n','t'), "Neutrale Zone", 0,0,0 }, -+{ IDX_2C('n','u'), "Niue", 0,0,0 }, -+{ IDX_2C('n','z'), "Neuseeland", 0,0,0 }, -+{ IDX_2C('o','m'), "Oman", 0,0,0 }, -+{ IDX_2C('p','a'), "Panama", 0,0,0 }, -+{ IDX_2C('p','e'), "Peru", 0,0,0 }, -+{ IDX_2C('p','f'), "Franz. Polynesien", 0,0,0 }, -+{ IDX_2C('p','g'), "Papua Neu-Guinea", 0,0,0 }, -+{ IDX_2C('p','h'), "Philippinen", 0,0,0 }, -+{ IDX_2C('p','k'), "Pakistan", 0,0,0 }, -+{ IDX_2C('p','l'), "Polen", 0,0,0 }, -+{ IDX_2C('p','m'), "St. Pierre und Miquelon", 0,0,0 }, -+{ IDX_2C('p','n'), "Pitcairn", 0,0,0 }, -+{ IDX_2C('p','r'), "Puerto Rico", 0,0,0 }, -+{ IDX_2C('p','t'), "Portugal", 0,0,0 }, -+{ IDX_2C('p','w'), "Palau (Belau)", 0,0,0 }, -+{ IDX_2C('p','y'), "Paraguay", 0,0,0 }, -+{ IDX_2C('q','a'), "Katar", 0,0,0 }, -+{ IDX_2C('r','e'), "Reunion", 0,0,0 }, -+{ IDX_2C('r','o'), "Rumaenien", 0,0,0 }, -+{ IDX_2C('r','u'), "Russische Foederation", 0,0,0 }, -+{ IDX_2C('r','w'), "Ruanda", 0,0,0 }, -+{ IDX_2C('s','a'), "Saudi Arabien", 0,0,0 }, -+{ IDX_2C('s','B'), "Solomonen", 0,0,0 }, -+{ IDX_2C('s','c'), "Seychellen", 0,0,0 }, -+{ IDX_2C('s','d'), "Sudan", 0,0,0 }, -+{ IDX_2C('s','e'), "Schweden", 0,0,0 }, -+{ IDX_2C('s','g'), "Singapur", 0,0,0 }, -+{ IDX_2C('s','h'), "Sankt Helena", 0,0,0 }, -+{ IDX_2C('s','i'), "Slowenien", 0,0,0 }, -+{ IDX_2C('s','j'), "Spitzbergen und Jan Mayen Inseln", 0,0,0 }, -+{ IDX_2C('s','k'), "Slowakei", 0,0,0 }, -+{ IDX_2C('s','l'), "Sierra Leone", 0,0,0 }, -+{ IDX_2C('s','m'), "San Marino", 0,0,0 }, -+{ IDX_2C('s','n'), "Senegal", 0,0,0 }, -+{ IDX_2C('s','o'), "Somalia", 0,0,0 }, -+{ IDX_2C('s','r'), "Surinam", 0,0,0 }, -+{ IDX_2C('s','t'), "Sao Tome und Principe", 0,0,0 }, -+{ IDX_2C('s','u'), "UdSSR (alt)", 0,0,0 }, -+{ IDX_2C('s','v'), "El Salvador", 0,0,0 }, -+{ IDX_2C('s','y'), "Syrien", 0,0,0 }, -+{ IDX_2C('s','z'), "Swasiland", 0,0,0 }, -+{ IDX_2C('t','c'), "Turks und Caicos Inseln", 0,0,0 }, -+{ IDX_2C('t','d'), "Tschad", 0,0,0 }, -+{ IDX_2C('t','f'), "Franz. Sued-Territorien", 0,0,0 }, -+{ IDX_2C('t','g'), "Togo", 0,0,0 }, -+{ IDX_2C('t','h'), "Thailand", 0,0,0 }, -+{ IDX_2C('t','j'), "Tadschikistan", 0,0,0 }, -+{ IDX_2C('t','k'), "Tokelau", 0,0,0 }, -+{ IDX_2C('t','m'), "Turkmenistan", 0,0,0 }, -+{ IDX_2C('t','n'), "Tunesien", 0,0,0 }, -+{ IDX_2C('t','o'), "Tonga", 0,0,0 }, -+{ IDX_2C('t','p'), "Ost-Timor", 0,0,0 }, -+{ IDX_2C('t','r'), "Tuerkei", 0,0,0 }, -+{ IDX_2C('t','t'), "Trinidad und Tobago", 0,0,0 }, -+{ IDX_2C('t','v'), "Tuvalu", 0,0,0 }, -+{ IDX_2C('t','w'), "Taiwan", 0,0,0 }, -+{ IDX_2C('t','z'), "Tansania", 0,0,0 }, -+{ IDX_2C('u','a'), "Ukraine", 0,0,0 }, -+{ IDX_2C('u','g'), "Uganda (alt)", 0,0,0 }, -+{ IDX_2C('u','k'), "Grossbritannien", 0,0,0 }, -+{ IDX_2C('u','m'), "USA Inseln", 0,0,0 }, -+{ IDX_2C('u','s'), "USA", 0,0,0 }, -+{ IDX_2C('u','y'), "Uruguay", 0,0,0 }, -+{ IDX_2C('u','z'), "Usbekistan", 0,0,0 }, -+{ IDX_2C('v','a'), "Vatikan", 0,0,0 }, -+{ IDX_2C('v','c'), "Saint Vincent und Grenadinen", 0,0,0 }, -+{ IDX_2C('v','e'), "Venezuela", 0,0,0 }, -+{ IDX_2C('v','g'), "Jungferninseln (Britisch)", 0,0,0 }, -+{ IDX_2C('v','i'), "Jungferninseln (U.S.)", 0,0,0 }, -+{ IDX_2C('v','n'), "Vietnam", 0,0,0 }, -+{ IDX_2C('v','u'), "Vanuatu (Neue Hebriden)", 0,0,0 }, -+{ IDX_2C('w','f'), "Wallis und Futuna Inseln", 0,0,0 }, -+{ IDX_2C('w','s'), "Samoa", 0,0,0 }, -+{ IDX_2C('y','e'), "Jemen", 0,0,0 }, -+{ IDX_2C('y','t'), "Mayotte", 0,0,0 }, -+{ IDX_2C('y','u'), "Jugoslawien (Serbien)", 0,0,0 }, -+{ IDX_2C('z','a'), "Suedafrika", 0,0,0 }, -+{ IDX_2C('z','m'), "Sambia", 0,0,0 }, -+{ IDX_2C('z','r'), "Zaire", 0,0,0 }, -+{ IDX_2C('z','w'), "Simbabwe", 0,0,0}}; -+ -+#define MAX_CTRY (int)(sizeof(ctry)/sizeof(struct country_code)) diff webalizer/pkg-descr de-webalizer-2.1.5/pkg-descr --- webalizer/pkg-descr Mon May 3 08:17:22 1999 +++ de-webalizer-2.1.5/pkg-descr Tue Apr 18 20:11:23 2000 @@ -1,22 +1,23 @@ What is The Webalizer? ---------------------- -The Webalizer is a web server log file analysis program which produces -usage statistics in HTML format for viewing with a browser. The results -are presented in both columnar and graphical format, which facilitates -interpretation. Yearly, monthly, daily and hourly usage statistics are -presented, along with the ability to display usage by site, URL, referrer, -user agent (browser) and country (user agent and referrer are only -available if your web server procduces Combined log format files). - -The Webalizer supports CLF (common log format) log files, as well as -Combined log formats as defined by NCSA and others, and variations -of these which it attempts to handle intelligently. +A fast, free web server log file analysis program. Produces +HTML output for viewing with a web browser. Written in C on +a Linux platform, however designed to be as ANSI/POSIX +compliant as possible so porting to other UNIX platforms should +be painless. Binary distributions for most popular platforms +are available. Features multiple language support, incremental +processing capabilities, reverse DNS lookup support, export via +tab seperated ascii files to popular databases and spreadsheets, +and much more. Supports standard CLF and combined logs, as well +as wu-ftpd xferlog and squid proxy logs, which can be either in +standard text format or gzip compressed. Keywords: Web Analysis, Log Analysis, Usage Statistics, Linux, Unix Author: Bradford L. Barrett Maintained-by: Bradford L. Barrett WWW: http://www.mrunix.net/webalizer/ +Alternate-site:http://samhain.unix.cslab.tuwien.ac.at/webalizer/ FTP: ftp://www.mrunix.net/pub/webalizer/ Platforms: Linux, SCO, other UNIX's Copying-policy: GPL diff webalizer/pkg-plist de-webalizer-2.1.5/pkg-plist --- webalizer/pkg-plist Wed Mar 31 17:17:31 1999 +++ de-webalizer-2.1.5/pkg-plist Tue May 16 19:51:12 2000 @@ -1,14 +1,16 @@ -bin/de-webalizer -etc/de-webalizer.conf-dist -share/doc/de-webalizer/CHANGES -share/doc/de-webalizer/COPYING -share/doc/de-webalizer/Copyright -share/doc/de-webalizer/INSTALL -share/doc/de-webalizer/README -share/doc/de-webalizer/country-codes.txt -share/doc/de-webalizer/webalizer.LSM -@dirrm share/doc/de-webalizer -share/examples/de-webalizer/msfree.gif -share/examples/de-webalizer/sample.conf -share/examples/de-webalizer/webalizer.gif -@dirrm share/examples/de-webalizer +bin/%%PKGNAMEPREFIX%%webalizer +@unexec rm -f %B/%%PKGNAMEPREFIX%%webazolver +etc/%%PKGNAMEPREFIX%%webalizer.conf-dist +share/doc/%%PKGNAMEPREFIX%%webalizer/CHANGES +share/doc/%%PKGNAMEPREFIX%%webalizer/COPYING +share/doc/%%PKGNAMEPREFIX%%webalizer/Copyright +share/doc/%%PKGNAMEPREFIX%%webalizer/DNS.README +share/doc/%%PKGNAMEPREFIX%%webalizer/INSTALL +share/doc/%%PKGNAMEPREFIX%%webalizer/README +share/doc/%%PKGNAMEPREFIX%%webalizer/README.FIRST +share/doc/%%PKGNAMEPREFIX%%webalizer/country-codes.txt +@dirrm share/doc/%%PKGNAMEPREFIX%%webalizer +share/examples/%%PKGNAMEPREFIX%%webalizer/msfree.png +share/examples/%%PKGNAMEPREFIX%%webalizer/sample.conf +share/examples/%%PKGNAMEPREFIX%%webalizer/webalizer.png +@dirrm share/examples/%%PKGNAMEPREFIX%%webalizer diff webalizer/scripts/pre-configure de-webalizer-2.1.5/scripts/pre-configure --- webalizer/scripts/pre-configure Sat Oct 2 06:00:58 1999 +++ de-webalizer-2.1.5/scripts/pre-configure Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ -#! /bin/sh - -# -# $FreeBSD: ports/german/webalizer/scripts/pre-configure,v 1.2 1999/08/29 11:29:46 peter Exp $ -# - -# only one central config file in $PREFIX/etc -# -andreas - -perl -pi -e "s=!!PREFIX!!=$PREFIX=" ${WRKSRC}/webalizer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 23:20: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37C9D37B66E for ; Sat, 14 Oct 2000 23:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA88012; Sat, 14 Oct 2000 23:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 14 Oct 2000 23:20:03 -0700 (PDT) Message-Id: <200010150620.XAA88012@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/21875: Update german/webalizer (by maintainer) Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21875; it has been noted by GNATS. From: Trevor Johnson To: dirk.meyer@dinoex.sub.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21875: Update german/webalizer (by maintainer) Date: Sun, 15 Oct 2000 02:13:50 -0400 (EDT) > delete all patches and scripts!! Dirk--I don't see it mentioned in the Porter's Handbook, but on more than one occasion I've seen messages on this list from committers who prefer a note such as this over a diff which creates empty files. I concur with them. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 14 23:59: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A32837B66C; Sat, 14 Oct 2000 23:59:02 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA01343; Sat, 14 Oct 2000 23:59:02 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Sat, 14 Oct 2000 23:59:02 -0700 (PDT) From: Message-Id: <200010150659.XAA01343@freefall.freebsd.org> To: des@yes.no, trevor@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21907: x11-fonts/freefonts contains non-free fonts Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: x11-fonts/freefonts contains non-free fonts State-Changed-From-To: open->closed State-Changed-By: trevor State-Changed-When: Sat Oct 14 23:56:51 PDT 2000 State-Changed-Why: Added RESTRICTED line; added entry in LEGAL. Thanks for catching this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21907 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message