From owner-freebsd-ports Sun Sep 17 2:25: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 B007937B424; Sun, 17 Sep 2000 02:25:14 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id CAA64766; Sun, 17 Sep 2000 02:25:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 17 Sep 2000 02:25:14 -0700 (PDT) From: Kris Kennaway To: committers@freebsd.org, doc@freebsd.org, ports@freebsd.org Subject: Guidelines for new port version variables 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 all, This is a revised version of the original proposal document I sent to -ports, which describes what the two new package version variables are (PORTREVISION and PORTEPOCH) and how to use them. All committers who maintain a port, or who intend to commit changes to one should read this document and make an effort to use the new variables. Can one of the doc guys commit this to the porters handbook? Kris ==================================================================== FREEBSD PACKAGE VERSIONING CONVENTIONS 0) OVERVIEW Packages names are constructed according to the following system: ${PORTNAME}-${PORTVERSION}[_${PORTREVISION}][,${PORTEPOCH}] The older package naming system was simply ${PORTNAME}-${PORTVERSION} The meaning of the two variables PORTREVISION and PORTEPOCH and the rationale for their use are explained below. 1) PORTREVISION The PORTREVISION variable is a monotonically increasing value which is reset to 0 with every increase of PORTVERSION (i.e. every time a new official vendor release is made), and appended to the package name if non-zero. PORTREVISION is increased each time a change is made to the FreeBSD port which significantly affects the content or stucture of the derived package. Examples of when PORTREVISION should be bumped: * Addition of patches to correct security vulnerabilities, bugs, or to add new functionality to the FreeBSD port. * Changes to the port makefile to enable or disable compile-time options in the package. * Changes in the packing list or the install-time behaviour of the package (e.g. change to a script which generates initial data for the package, like ssh host keys). * Version bump of a port's shared library dependency (in this case, someone trying to install the old package after installing a newer version of the dependency will fail since it will look for the old libfoo.x instead of libfoo.(x+1)). * "Silent" changes to the port distfile which have significant functional differences, i.e. changes to the distfile requiring a correction to files/md5 with no corresponding change to PORTVERSION, where a diff -ruN of the old and new versions shows non-trivial changes to the code. Examples of changes which do not require a PORTREVISION bump: * Style changes to the port skeleton with no functional change to what appears in the resulting package. * Changes to MASTER_SITES or other functional changes to the port which do not effect the resulting package. * Trivial patches to the distfile such as correction of typos, which are not important enough that users of the package should go to the trouble of upgrading. * Build fixes which cause a package to become compilable where it was previously failing (as long as the changes do not introduce any functional change on any other platforms on which the port did previously build). Since PORTREVISION reflects the content of the package, if no package was previously buildable then there is no need to increase PORTREVISION to mark a change. A rule of thumb is to ask yourself whether a change committed to a port is something which someone, somewhere, would benefit from having (either because of an enhancement, fix, or by virtue that the new package will actually work for them). If yes, the PORTREVISION should be bumped so that automated tools (e.g. pkg_version) will hilight the fact that a new package is available. 2) PORTEPOCH From time to time a software vendor or FreeBSD porter will do something silly and release a version of their software which is actually numerically less than the previous version. An example of this is a port which goes from foo-20000801 to foo-1.0 (the former will be incorrectly treated as a newer version since 20000801 is a numerically greater value than 1). In situations such as this, the PORTEPOCH version should be increased. If PORTEPOCH is nonzero it is appended to the package name as described in section 0 above. PORTEPOCH is never decreased or reset to zero, because that would cause comparison to a package from an earlier epoch to fail (i.e. the package would not be detected as out of date): the new version number (e.g. "1.0,1" in the above example) is still numerically less than the previous version (2000801), but the ",1" suffix is treated specially by automated tools and found to be greater than the implied suffix ",0" on the earlier package) It is expected that PORTEPOCH will not be used for the majority of ports, and that sensible use of PORTVERSION can often pre-empt it becoming necessary if a future release of the software should change the version structure. However, care is needed by FreeBSD porters when a vendor release is made without an official version number - such as a code "snapshot" release. The temptation is to label the release with the release date, which will cause problems as in the example above when a new "official" release is made. For example, if a snapshot release is made on the date 20000917, and the previous version of the software was version 1.2, the snapshot release should be given a PORTVERSION of 1.2.20000917 or similar, not 20000917, so that the succeeding release, say 1.3, is still a numerically greater value. 3) EXAMPLE The gtkmumble port, version 0.10, is committed to the ports collection. PORTNAME= gtkmumble PORTVERSION= 0.10 PKGNAME becomes "gtkmumble-0.10" A security hole is discovered which requires a local FreeBSD patch. PORTREVISION is bumped accordingly. PORTNAME= gtkmumble PORTVERSIOn= 0.10 PORTREVISION= 1 PKGNAME becomes "gtkmumble-0.10_1" A new version is released by the vendor, numbered 0.2 (it turns out the author actually intended "0.10" to actually mean "0.1.0", not "what comes after 0.9" - oops, too late now). Since the new minor version "2" is numerically less than the previous version "10" the PORTEPOCH must be bumped to manually force the new package to be detected as "newer". Since it is a new vendor release of the code, PORTREVISION is reset to 0 (or removed from the makefile) PORTNAME= gtkmumble PORTVERSION= 0.2 PORTEPOCH= 1 PKGNAME becomes "gtkmumble-0.2,1" The next release is 0.3. Since PORTEPOCH never decreases, the version variables are now: PORTNAME= gtkmumble PORTVERSION= 0.3 PORTEPOCH= 1 PKGNAME becomes "gtkmumble-0.3,1" Note that if PORTEPOCH were reset to 0 with this upgrade, someone who had installed the gtkmumble-0.10_1 package would not detect the gtkmumble-0.3 package as newer, since "3" is still numerically less than "10". 4) BENEFITS There are three main benefits to a more granular naming scheme: * Finer control over external references to packages. For example, when a security fix is made to the port, and PORTREVISION is increased accordinging, the relevant security advisory can point unambigiously to the new package name, instead of referring vaguely to "packages dated after the correction date", which is ambiguous and error-prone. * The ability for end-users to tell when a significant change has been made to the FreeBSD version of a port, and to unambiguously detect newer versions of the package (the current version is error-prone due to the lack of PORTEPOCH) * It lays the foundation for future automated upgrade systems, which can rebuild complex dependency chains of packages when changes are made. -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 2:29: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 1941A37B422; Sun, 17 Sep 2000 02:29:16 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id CAA65199; Sun, 17 Sep 2000 02:29:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 17 Sep 2000 02:29:15 -0700 (PDT) From: Kris Kennaway To: David Bushong Cc: freebsd-ports@freebsd.org Subject: Re: screen-3.9.8 + vt100 line-drawing chars problem In-Reply-To: <20000915152647.C27971@bushong.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 On Fri, 15 Sep 2000, David Bushong wrote: > Hello, > > On multiple 4.1-STABLE machines, when I built and installed the screen-3.9.8 > port I ran into a problem. vt100 line drawing sequences ( ^[(0 and whatnot) > no longer "work". That is, they are not passed through, which makes using > programs like lynx and mutt much less pleasant. If I use the screen-3.9.8 > client to connect into a detached screen "server" circa 3.9.5, it works fine, > which is very odd, but if I start up a fresh pair, no luck. > > Suggestions? Upgrade to the screen-3.9.8_1 port/package Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 2:32: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 EAFFE37B43E; Sun, 17 Sep 2000 02:32:53 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id CAA65641; Sun, 17 Sep 2000 02:32:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sun, 17 Sep 2000 02:32:53 -0700 (PDT) From: Kris Kennaway To: "Scot W. Hetzel" Cc: FreeBSD-Ports , asami@freebsd.org Subject: Re: RSA and ports that depend on it. In-Reply-To: <002301c01f6d$bf7fe460$8dfee0d1@westbend.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 On Fri, 15 Sep 2000, Scot W. Hetzel wrote: > Now that RSA has been given to the general public, what do we intend > to do with bsd.port.mk (USE_OPENSSL = RSA) and the ports that depended > on the rsaref port? Fix them :-) However, there is a minor problem: we can easily remove the rsaref gunk from bsd.port.mk today, but people who use an older -stable won't be able to use it (since they still have to link against librsaref). That's okay, because we only support the latest -stable and make other people install an upgrade kit - but we'll have to include libcrypto.*, openssh, etc in the upgrade kit because libcrypto changed, and openssh depends on the new version of the library. But not everyone may have installed openssl and openssh on their machines, or want them installed - therein lies the problem. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 4:42:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id CF82837B424 for ; Sun, 17 Sep 2000 04:42:48 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id NAA49215; Sun, 17 Sep 2000 13:42:41 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Doug Barton Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21296: [PATCH] INN port is outdated References: <200009161330.GAA18677@freefall.freebsd.org> <39C3FA43.3F10BA7F@gorean.org> From: Dag-Erling Smorgrav Date: 17 Sep 2000 13:42:40 +0200 In-Reply-To: Doug Barton's message of "Sat, 16 Sep 2000 15:54:59 -0700" Message-ID: Lines: 11 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Doug Barton writes: > If you guys can get INN to build in current please close ports/20688. Works fine for me. BTW, there's another problem with the patch: innd should be run as user news, so the innd.sh script needs a few changes. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 5: 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 1A18A37B42C for ; Sun, 17 Sep 2000 05:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA85174; Sun, 17 Sep 2000 05:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AEEE537B423; Sun, 17 Sep 2000 04:54:32 -0700 (PDT) Message-Id: <20000917115432.AEEE537B423@hub.freebsd.org> Date: Sun, 17 Sep 2000 04:54:32 -0700 (PDT) From: gavin@itworks.com.au To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21324: mysql port out of date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21324 >Category: ports >Synopsis: mysql port out of date >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 Sep 17 05:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gavin Cameron >Release: 3.x and 4.x >Organization: ITworks Consulting >Environment: >Description: MySQL port needs to be updated to latest release (3.23.24 as of 17/Sep/2000) >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 Sep 17 5:26: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 4613C37B423; Sun, 17 Sep 2000 05:26:49 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA89519; Sun, 17 Sep 2000 05:26:49 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 05:26:49 -0700 (PDT) From: Message-Id: <200009171226.FAA89519@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21288: Modify net/trafshow to not destron ${PREFIX}/etc/trafshow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Modify net/trafshow to not destron ${PREFIX}/etc/trafshow Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 05:26:26 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21288 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 5:27: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 856B737B422; Sun, 17 Sep 2000 05:27:44 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA89732; Sun, 17 Sep 2000 05:27:44 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 05:27:44 -0700 (PDT) From: Message-Id: <200009171227.FAA89732@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, jfitz@FreeBSD.org Subject: Re: ports/21295: The Storable perl package is now at version 1.0.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The Storable perl package is now at version 1.0.0 Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 05:27:20 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21295 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 5:28: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 501EF37B422; Sun, 17 Sep 2000 05:28:50 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA89953; Sun, 17 Sep 2000 05:28:50 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 05:28:50 -0700 (PDT) From: Message-Id: <200009171228.FAA89953@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, torstenb@FreeBSD.org Subject: Re: ports/21296: [PATCH] INN port is outdated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] INN port is outdated Responsible-Changed-From-To: freebsd-ports->torstenb Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 05:28:18 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21296 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 5: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 574B037B443; Sun, 17 Sep 2000 05:43:41 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA92570; Sun, 17 Sep 2000 05:43:41 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 05:43:41 -0700 (PDT) From: Message-Id: <200009171243.FAA92570@freefall.freebsd.org> To: ve@sci.fi, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21277: Update of the fetchmail port to version 5.5.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of the fetchmail port to version 5.5.2 State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 05:41:54 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21277 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 5:50: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 D348E37B42C; Sun, 17 Sep 2000 05:50:30 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA93617; Sun, 17 Sep 2000 05:50:30 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 05:50:30 -0700 (PDT) From: Message-Id: <200009171250.FAA93617@freefall.freebsd.org> To: simond@irrelevant.org, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21267: Update port: emulators/uae Fixes the GUI so it works Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: emulators/uae Fixes the GUI so it works State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 05:44:59 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21267 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 5:57: 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 8F3DD37B422; Sun, 17 Sep 2000 05:51:27 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA93827; Sun, 17 Sep 2000 05:51:27 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 05:51:27 -0700 (PDT) From: Message-Id: <200009171251.FAA93827@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, taoka@FreeBSD.org Subject: Re: ports/21258: ports/audio/mpg123.el wrong checksum for source Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/audio/mpg123.el wrong checksum for source Responsible-Changed-From-To: freebsd-ports->taoka Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 05:51:10 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21258 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6: 3: 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 9897537B424; Sun, 17 Sep 2000 06:02:59 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA95386; Sun, 17 Sep 2000 06:02:59 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:02:59 -0700 (PDT) From: Message-Id: <200009171302.GAA95386@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, cwt@FreeBSD.org Subject: Re: ports/21218: amanda24 should config with --with-buffered-dump Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: amanda24 should config with --with-buffered-dump Responsible-Changed-From-To: freebsd-ports->cwt Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 06:02:40 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21218 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6: 4: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 B293F37B424; Sun, 17 Sep 2000 06:04:18 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA95582; Sun, 17 Sep 2000 06:04:18 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:04:18 -0700 (PDT) From: Message-Id: <200009171304.GAA95582@freefall.freebsd.org> To: cj@vallcom.net, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21236: Update port: www/indexme Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/indexme State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 06:03:49 PDT 2000 State-Changed-Why: Committed, thanks! Also, please note the reason for the MD5 changing (if possible) next time. http://www.freebsd.org/cgi/query-pr.cgi?pr=21236 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6: 6: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 5A02637B424; Sun, 17 Sep 2000 06:06:20 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA97286; Sun, 17 Sep 2000 06:06:20 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:06:20 -0700 (PDT) From: Message-Id: <200009171306.GAA97286@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21160: A patch for editors/emacs20 XIM support Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: A patch for editors/emacs20 XIM support Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 06:06:04 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6: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 5032E37B642; Sun, 17 Sep 2000 06:10:08 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA97646; Sun, 17 Sep 2000 06:10:08 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:10:08 -0700 (PDT) From: Message-Id: <200009171310.GAA97646@freefall.freebsd.org> To: arensb+freebsd-ports@ooblick.com, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21158: Port update: gensig Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: gensig State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 06:08:34 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21158 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6:13: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 0511B37B443; Sun, 17 Sep 2000 06:13:23 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA98116; Sun, 17 Sep 2000 06:13:22 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:13:22 -0700 (PDT) From: Message-Id: <200009171313.GAA98116@freefall.freebsd.org> To: ilia@jane.cgu.chel.su, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21157: port is outdated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port is outdated State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 06:10:50 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21157 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6:23: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 BF12037B423; Sun, 17 Sep 2000 06:23:17 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99291; Sun, 17 Sep 2000 06:23:17 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:23:17 -0700 (PDT) From: Message-Id: <200009171323.GAA99291@freefall.freebsd.org> To: dyfet@ostel.com, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21112: revised port entry for ccscript Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: revised port entry for ccscript State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 06:22:13 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21112 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6:25: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 B440537B43E; Sun, 17 Sep 2000 06:25:11 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99553; Sun, 17 Sep 2000 06:25:11 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:25:11 -0700 (PDT) From: Message-Id: <200009171325.GAA99553@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, sumikawa@FreeBSD.org Subject: Re: ports/21088: Virtual Hosts don't work under the apache13+ipv6 ports package. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Virtual Hosts don't work under the apache13+ipv6 ports package. Responsible-Changed-From-To: freebsd-ports->sumikawa Responsible-Changed-By: jedgar Responsible-Changed-When: Sun Sep 17 06:24:59 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21088 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6:29: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 C202D37B423; Sun, 17 Sep 2000 06:29:53 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA00290; Sun, 17 Sep 2000 06:29:53 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:29:53 -0700 (PDT) From: Message-Id: <200009171329.GAA00290@freefall.freebsd.org> To: jim@thehousleys.net, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20828: Upgrade *-rtems-binutils to version 2.10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade *-rtems-binutils to version 2.10 State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 06:28:27 PDT 2000 State-Changed-Why: Superceded by ports/20930 http://www.freebsd.org/cgi/query-pr.cgi?pr=20828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 6:30: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 8A33237B43C; Sun, 17 Sep 2000 06:30:22 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA00465; Sun, 17 Sep 2000 06:30:22 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Sun, 17 Sep 2000 06:30:22 -0700 (PDT) From: Message-Id: <200009171330.GAA00465@freefall.freebsd.org> To: jim@thehousleys.net, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20929: Update Port: *-rtems-binutils to version 2.10_2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: *-rtems-binutils to version 2.10_2 State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Sun Sep 17 06:29:58 PDT 2000 State-Changed-Why: Superceded by ports/20930 http://www.freebsd.org/cgi/query-pr.cgi?pr=20929 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 7:31:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id C42A437B424; Sun, 17 Sep 2000 07:31:52 -0700 (PDT) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.9.3/8.9.3b) with SMTP id QAA35636; Sun, 17 Sep 2000 16:31:46 +0200 (CEST) Date: Sun, 17 Sep 2000 16:35:47 +0200 (CEST) From: Martin Blapp To: asami@freebsd.org Cc: ports@freebsd.org Subject: Re: ports/21129: French staroffice52 port (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Asami-San, I've reworked the port and now someone should commit it. But can we place it under /usr/ports/french/${port} ? I'd prefer this because we have already /usr/ports/german/${port} What do you think about this ? Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ ---------- Forwarded message ---------- Date: Sun, 17 Sep 2000 09:16:51 -0400 (EDT) From: Chris D. Faulhaber To: Martin Blapp Cc: Eric Masson Subject: Re: ports/21129: French staroffice52 port Martin, Can you take a look at ${Subject} ----- 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 Sun Sep 17 7:36: 1 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 8EBC237B423; Sun, 17 Sep 2000 07:35:53 -0700 (PDT) Received: from cobra.lovett.com ([10.0.0.3]) by hub.lovett.com with esmtp (Exim 3.16 #1) id 13afXp-0009y4-00; Sun, 17 Sep 2000 09:35:49 -0500 Received: (from ade@localhost) by cobra.lovett.com (8.11.0/8.11.0) id e8HEZil01855; Sun, 17 Sep 2000 09:35:44 -0500 (CDT) (envelope-from ade) Date: Sun, 17 Sep 2000 09:35:44 -0500 From: Ade Lovett To: The Hermit Hacker Cc: freebsd-ports@freebsd.org, andreas@freebsd.org Subject: Re: gs6.01 fails to compile ... Message-ID: <20000917093544.E507@FreeBSD.org> 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 scrappy@hub.org on Sun, Sep 17, 2000 at 12:01:07AM -0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 17, 2000 at 12:01:07AM -0300, The Hermit Hacker wrote: > > Running a 4.1-STABLE system with up to date ports, I'm getting the > following when trying to compile ghostscript 6.0.1 ... > > [snip] > > looking at the makefile, it appears that /usr/ports/graphics/jpeg needs to > have a 'make extract' done on it first? Mine does. ports/print/ghostscript6/Makefile rev 1.51 2000/09/11 BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/graphics/jpeg:extract The only time I've been bitten by this kind of problem is when I had a couple of windows open, one compiling ghostscript, and another compiling something (xv, I think), that depended on jpeg. The "make install clean" on the second port got around to blowing away the extracted jpeg sources (for ghostscript) between the BUILD_DEPENDS phase, and actual compilation of the code. -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 Sun Sep 17 7:50: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 0371637B424 for ; Sun, 17 Sep 2000 07:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA88124; Sun, 17 Sep 2000 07:50:01 -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 CD07B37B422 for ; Sun, 17 Sep 2000 07:47:47 -0700 (PDT) Received: from ganerc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13afjO-0000Kp-00; Sun, 17 Sep 2000 16:47:46 +0200 Received: (from naddy@localhost) by ganerc.mips.inka.de (8.11.0/8.11.0) id e8HEjs695210; Sun, 17 Sep 2000 16:45:54 +0200 (CEST) (envelope-from naddy) Message-Id: <200009171445.e8HEjs695210@ganerc.mips.inka.de> Date: Sun, 17 Sep 2000 16:45:54 +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/21326: update www/surfraw to 1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21326 >Category: ports >Synopsis: update www/surfraw to 1.0.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: Sun Sep 17 07:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: >Description: I have appended a patch to update ports/www/surfraw to version 1.0.1. Some comments: - I have included both patches to Makefile.am (where I did the changes) and to Makefile.in, since I don't think this port justifies a dependency on automake. - I have adopted OpenBSD's handling of configuration files for surfraw.conf. >How-To-Repeat: >Fix: Index: surfraw/Makefile =================================================================== RCS file: /freebsd/ports/www/surfraw/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- surfraw/Makefile 2000/08/21 02:35:25 1.1 +++ surfraw/Makefile 2000/09/17 14:41:37 @@ -2,10 +2,10 @@ # Date created: 2000-08-03 # Whom: Christian Weisgerber # -# $FreeBSD$ +# $FreeBSD: ports/www/surfraw/Makefile,v 1.1 2000/08/21 02:35:25 kris Exp $ PORTNAME= surfraw -PORTVERSION= 0.5.7 +PORTVERSION= 1.0.1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= surfraw @@ -14,19 +14,9 @@ GNU_CONFIGURE= yes -ELVI= W altavista appwatch ask austlii cite cnn currency deja excite \ - fast freshmeat ftpsearch google ircsearch linuxdoc netbsd \ - newscientist pubmed raging rhyme slashdot sundocs sunsolve \ - thesaurus translate webster wetandwild xxx yahoo \ - -do-install: -.for i in ${ELVI} - ${INSTALL_SCRIPT} ${WRKSRC}/elvi/${i} ${PREFIX}/bin -.endfor - ${INSTALL_SCRIPT} ${WRKSRC}/surfraw ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/surfraw-netscape-remote ${PREFIX}/bin - ${MKDIR} ${PREFIX}/share/surfraw/ - ${INSTALL_DATA} ${WRKSRC}/elvi/surfraw_elvi.list ${PREFIX}/share/surfraw/ - ${INSTALL_DATA} ${WRKSRC}/surfraw.conf ${PREFIX}/etc/surfraw.conf.sample +post-install: + ${MKDIR} ${PREFIX}/share/examples/surfraw + ${INSTALL_DATA} ${WRKSRC}/surfraw.conf ${PREFIX}/share/examples/surfraw + @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL .include Index: surfraw/files/md5 =================================================================== RCS file: /freebsd/ports/www/surfraw/files/md5,v retrieving revision 1.1 diff -u -r1.1 md5 --- surfraw/files/md5 2000/08/21 02:35:25 1.1 +++ surfraw/files/md5 2000/09/17 14:41:37 @@ -1 +1 @@ -MD5 (surfraw-0.5.7.tar.gz) = d73c9f49be0b337b57ad4e29323a72fa +MD5 (surfraw-1.0.1.tar.gz) = da4b780bf227f74cc39679b81b0503fc Index: surfraw/patches/patch-ac =================================================================== RCS file: patch-ac diff -N patch-ac --- /dev/null Thu Aug 17 14:16:17 2000 +++ patch-ac Sun Sep 17 14:41:37 2000 @@ -0,0 +1,10 @@ +--- Makefile.am.orig Thu Aug 24 20:43:26 2000 ++++ Makefile.am Sun Sep 17 16:26:39 2000 +@@ -3,7 +3,6 @@ + SUBDIRS = elvi + + bin_SCRIPTS = surfraw surfraw-netscape-remote +-sysconf_DATA = surfraw.conf + devel_extra = banner prebuild + EXTRA_DIST = surfraw.lsm.in surfraw.in surfraw.spec.in \ + aclocal.m4 \ Index: surfraw/patches/patch-ad =================================================================== RCS file: patch-ad diff -N patch-ad --- /dev/null Thu Aug 17 14:16:17 2000 +++ patch-ad Sun Sep 17 14:41:37 2000 @@ -0,0 +1,91 @@ +--- Makefile.in.orig Fri Aug 25 15:44:47 2000 ++++ Makefile.in Sun Sep 17 16:26:48 2000 +@@ -70,7 +70,6 @@ + SUBDIRS = elvi + + bin_SCRIPTS = surfraw surfraw-netscape-remote +-sysconf_DATA = surfraw.conf + devel_extra = banner prebuild + EXTRA_DIST = surfraw.lsm.in surfraw.in surfraw.spec.in aclocal.m4 $(devel_extra) + +@@ -80,8 +79,6 @@ + surfraw-netscape-remote + SCRIPTS = $(bin_SCRIPTS) + +-DATA = $(sysconf_DATA) +- + DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \ + Makefile.in NEWS TODO aclocal.m4 config.guess config.sub configure \ + configure.in install-sh missing mkinstalldirs \ +@@ -139,25 +136,6 @@ + rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \ + done + +-install-sysconfDATA: $(sysconf_DATA) +- @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(sysconfdir) +- @list='$(sysconf_DATA)'; for p in $$list; do \ +- if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p; \ +- else if test -f $$p; then \ +- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p"; \ +- $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p; \ +- fi; fi; \ +- done +- +-uninstall-sysconfDATA: +- @$(NORMAL_UNINSTALL) +- list='$(sysconf_DATA)'; for p in $$list; do \ +- rm -f $(DESTDIR)$(sysconfdir)/$$p; \ +- done +- + # This directory's subdirectories are mostly independent; you can cd + # into them and run `make' without going through this Makefile. + # To change the values of `make' variables: instead of editing Makefiles, +@@ -313,7 +291,7 @@ + check: check-recursive + installcheck-am: + installcheck: installcheck-recursive +-install-exec-am: install-binSCRIPTS install-sysconfDATA ++install-exec-am: install-binSCRIPTS + install-exec: install-exec-recursive + + install-data-am: +@@ -322,15 +300,15 @@ + install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + install: install-recursive +-uninstall-am: uninstall-binSCRIPTS uninstall-sysconfDATA ++uninstall-am: uninstall-binSCRIPTS + uninstall: uninstall-recursive +-all-am: Makefile $(SCRIPTS) $(DATA) ++all-am: Makefile $(SCRIPTS) + all-redirect: all-recursive + install-strip: + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install + installdirs: installdirs-recursive + installdirs-am: +- $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(sysconfdir) ++ $(mkinstalldirs) $(DESTDIR)$(bindir) + + + mostlyclean-generic: +@@ -363,12 +341,11 @@ + maintainer-clean: maintainer-clean-recursive + -rm -f config.status + +-.PHONY: uninstall-binSCRIPTS install-binSCRIPTS uninstall-sysconfDATA \ +-install-sysconfDATA install-data-recursive uninstall-data-recursive \ +-install-exec-recursive uninstall-exec-recursive installdirs-recursive \ +-uninstalldirs-recursive all-recursive check-recursive \ +-installcheck-recursive info-recursive dvi-recursive \ +-mostlyclean-recursive distclean-recursive clean-recursive \ ++.PHONY: uninstall-binSCRIPTS install-binSCRIPTS install-data-recursive \ ++uninstall-data-recursive install-exec-recursive \ ++uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \ ++all-recursive check-recursive installcheck-recursive info-recursive \ ++dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \ + maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ + distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ + dvi-am dvi check check-am installcheck-am installcheck install-exec-am \ Index: surfraw/patches/patch-ae =================================================================== RCS file: patch-ae diff -N patch-ae --- /dev/null Thu Aug 17 14:16:17 2000 +++ patch-ae Sun Sep 17 14:41:37 2000 @@ -0,0 +1,11 @@ +--- elvi/Makefile.am.orig Sun Sep 17 14:45:18 2000 ++++ elvi/Makefile.am Sun Sep 17 14:48:39 2000 +@@ -34,7 +34,7 @@ + xxx \ + yahoo + +-sysconf_DATA = surfraw_elvi.list ++pkgdata_DATA = surfraw_elvi.list + + EXTRA_DIST = $(bin_SCRIPTS) + Index: surfraw/patches/patch-af =================================================================== RCS file: patch-af diff -N patch-af --- /dev/null Thu Aug 17 14:16:17 2000 +++ patch-af Sun Sep 17 14:41:38 2000 @@ -0,0 +1,92 @@ +--- elvi/Makefile.in.orig Sun Sep 17 14:45:22 2000 ++++ elvi/Makefile.in Sun Sep 17 14:50:10 2000 +@@ -70,14 +70,14 @@ + bin_SCRIPTS = altavista appwatch ask austlii britannica cite cnn currency deja excite fast ftpsearch freshmeat jake google ircsearch linuxdoc netbsd newscientist pubmed raging rhyme slashdot sundocs stockquote sunsolve thesaurus translate W webster wetandwild xxx yahoo + + +-sysconf_DATA = surfraw_elvi.list ++pkgdata_DATA = surfraw_elvi.list + + EXTRA_DIST = $(bin_SCRIPTS) + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_CLEAN_FILES = + SCRIPTS = $(bin_SCRIPTS) + +-DATA = $(sysconf_DATA) ++DATA = $(pkgdata_DATA) + + DIST_COMMON = Makefile.am Makefile.in + +@@ -115,23 +115,23 @@ + rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \ + done + +-install-sysconfDATA: $(sysconf_DATA) ++install-pkgdataDATA: $(pkgdata_DATA) + @$(NORMAL_INSTALL) +- $(mkinstalldirs) $(DESTDIR)$(sysconfdir) +- @list='$(sysconf_DATA)'; for p in $$list; do \ ++ $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) ++ @list='$(pkgdata_DATA)'; for p in $$list; do \ + if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(sysconfdir)/$$p; \ ++ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgdatadir)/$$p"; \ ++ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgdatadir)/$$p; \ + else if test -f $$p; then \ +- echo " $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p"; \ +- $(INSTALL_DATA) $$p $(DESTDIR)$(sysconfdir)/$$p; \ ++ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/$$p"; \ ++ $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/$$p; \ + fi; fi; \ + done + +-uninstall-sysconfDATA: ++uninstall-pkgdataDATA: + @$(NORMAL_UNINSTALL) +- list='$(sysconf_DATA)'; for p in $$list; do \ +- rm -f $(DESTDIR)$(sysconfdir)/$$p; \ ++ list='$(pkgdata_DATA)'; for p in $$list; do \ ++ rm -f $(DESTDIR)$(pkgdatadir)/$$p; \ + done + tags: TAGS + TAGS: +@@ -160,23 +160,23 @@ + check: check-am + installcheck-am: + installcheck: installcheck-am +-install-exec-am: install-binSCRIPTS install-sysconfDATA ++install-exec-am: install-binSCRIPTS + install-exec: install-exec-am + +-install-data-am: ++install-data-am: install-pkgdataDATA + install-data: install-data-am + + install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + install: install-am +-uninstall-am: uninstall-binSCRIPTS uninstall-sysconfDATA ++uninstall-am: uninstall-binSCRIPTS uninstall-pkgdataDATA + uninstall: uninstall-am + all-am: Makefile $(SCRIPTS) $(DATA) + all-redirect: all-am + install-strip: + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install + installdirs: +- $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(sysconfdir) ++ $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgdatadir) + + + mostlyclean-generic: +@@ -206,8 +206,8 @@ + + maintainer-clean: maintainer-clean-am + +-.PHONY: uninstall-binSCRIPTS install-binSCRIPTS uninstall-sysconfDATA \ +-install-sysconfDATA tags distdir info-am info dvi-am dvi check check-am \ ++.PHONY: uninstall-binSCRIPTS install-binSCRIPTS uninstall-pkgdataDATA \ ++install-pkgdataDATA tags distdir info-am info dvi-am dvi check check-am \ + installcheck-am installcheck install-exec-am install-exec \ + install-data-am install-data install-am install uninstall-am uninstall \ + all-redirect all-am all installdirs mostlyclean-generic \ Index: surfraw/pkg/DEINSTALL =================================================================== RCS file: DEINSTALL diff -N DEINSTALL --- /dev/null Thu Aug 17 14:16:17 2000 +++ DEINSTALL Sun Sep 17 14:41:38 2000 @@ -0,0 +1,53 @@ +#!/bin/sh +# +# De-installation setup of surfraw + +# exit on errors, use a sane path and install prefix +# +set -e +PATH=/bin:/usr/bin:/sbin:/usr/sbin +PREFIX=${PKG_PREFIX:-/usr/local} +CONFIG_FILE=${PREFIX}/etc/surfraw.conf + +# Function: tell the user what they need to do to delete the port completely +# +do_notice() +{ + echo + echo "+---------------" + echo "| To completely deinstall the $1 package you need to perform" + echo "| these steps as root:" + echo "|" + echo "| rm -f ${CONFIG_FILE}" + echo "|" + echo "| Do not do this if you plan on re-installing $1" + echo "| at some future time." + echo "+---------------" + echo +} + +# Verify proper execution +# +if [ $# -ne 2 ]; then + echo "usage: $0 distname { DEINSTALL | POST-DEINSTALL }" >&2 + exit 1 +fi + +# Verify/process the command +# +case $2 in + DEINSTALL) + if [ -f ${CONFIG_FILE} ]; then + do_notice "$1" + fi + ;; + POST-DEINSTALL) + : nothing to post-deinstall for this port + ;; + *) + echo "usage: $0 distname { DEINSTALL | POST-DEINSTALL }" >&2 + exit 1 + ;; +esac + +exit 0 Index: surfraw/pkg/INSTALL =================================================================== RCS file: INSTALL diff -N INSTALL --- /dev/null Thu Aug 17 14:16:17 2000 +++ INSTALL Sun Sep 17 14:41:39 2000 @@ -0,0 +1,67 @@ +#!/bin/sh +# +# Pre/post-installation setup of surfraw + +# exit on errors, use a sane path and install prefix +# +set -e +PATH=/bin:/usr/bin:/sbin:/usr/sbin +PREFIX=${PKG_PREFIX:-/usr/local} +CONFIG_FILE=${PREFIX}/etc/surfraw.conf +SAMPLE_CONFIG_DIR=${PREFIX}/share/examples/surfraw + +# Function: tell the user what they need to do to use the port just installed +# +do_notice() +{ + echo + echo "+---------------" + echo "| The existing $1 configuration file, ${CONFIG_FILE}," + echo "| has NOT been changed. You may want to compare it to the" + echo "| current sample files in ${SAMPLE_CONFIG_DIR}" + echo "| and update your configuration as needed." + echo "+---------------" + echo +} + +# Function: install configuration files +# +do_install() +{ + install -c -o root -g wheel ${SAMPLE_CONFIG_DIR}/surfraw.conf ${CONFIG_FILE} + echo + echo "+---------------" + echo "| The $1 configuration file, ${CONFIG_FILE}," + echo "| has been installed. Please view this file and change" + echo "| the configuration to meet your needs" + echo "+---------------" + echo +} + +# Verify proper execution +# +if [ $# -ne 2 ]; then + echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 + exit 1 +fi + +# Verify/process the command +# +case $2 in + PRE-INSTALL) + : nothing to pre-install for this port + ;; + POST-INSTALL) + if [ -f ${CONFIG_FILE} ]; then + do_notice "$1" + else + do_install "$1" + fi + ;; + *) + echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 + exit 1 + ;; +esac + +exit 0 Index: surfraw/pkg/PLIST =================================================================== RCS file: /freebsd/ports/www/surfraw/pkg/PLIST,v retrieving revision 1.1 diff -u -r1.1 PLIST --- surfraw/pkg/PLIST 2000/08/21 02:35:26 1.1 +++ surfraw/pkg/PLIST 2000/09/17 14:41:39 @@ -3,6 +3,7 @@ bin/appwatch bin/ask bin/austlii +bin/britannica bin/cite bin/cnn bin/currency @@ -13,6 +14,7 @@ bin/ftpsearch bin/google bin/ircsearch +bin/jake bin/linuxdoc bin/netbsd bin/newscientist @@ -20,6 +22,7 @@ bin/raging bin/rhyme bin/slashdot +bin/stockquote bin/sundocs bin/sunsolve bin/surfraw @@ -30,6 +33,7 @@ bin/wetandwild bin/xxx bin/yahoo -etc/surfraw.conf.sample +share/examples/surfraw/surfraw.conf share/surfraw/surfraw_elvi.list +@dirrm share/examples/surfraw @dirrm share/surfraw >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 Sep 17 8: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 4C5A637B424 for ; Sun, 17 Sep 2000 08:10:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA93527; Sun, 17 Sep 2000 08:10:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A023337B422; Sun, 17 Sep 2000 08:09:10 -0700 (PDT) Message-Id: <20000917150910.A023337B422@hub.freebsd.org> Date: Sun, 17 Sep 2000 08:09:10 -0700 (PDT) From: dyfet@ostel.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21327: Initial ports entry for Bayonne IVR server Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21327 >Category: ports >Synopsis: Initial ports entry for Bayonne IVR server >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 Sep 17 08:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: David Sugar >Release: 4.0 >Organization: OST >Environment: >Description: #!/bin/sh # This is a shell archive (produced by GNU sharutils 4.2). # To extract the files from this archive, save it to some FILE, remove # everything before the `!/bin/sh' line above, then type `sh FILE'. # # Made on 2000-09-16 09:05 EDT by . # Source directory was `/home/dyfet/gnu/bayonne/freebsd'. # # Existing files will *not* be overwritten unless `-c' is specified. # # This shar contains: # length mode name # ------ ---------- ------------------------------------------ # 813 -rw-r--r-- Makefile # 55 -rw-r--r-- files/md5 # 7317 -rw-r--r-- pkg/PLIST # 50 -rw-r--r-- pkg/COMMENT # 361 -rw-r--r-- pkg/DESCR # save_IFS="${IFS}" IFS="${IFS}:" gettext_dir=FAILED locale_dir=FAILED first_param="$1" for dir in $PATH do if test "$gettext_dir" = FAILED && test -f $dir/gettext \ && ($dir/gettext --version >/dev/null 2>&1) then set `$dir/gettext --version 2>&1` if test "$3" = GNU then gettext_dir=$dir fi fi if test "$locale_dir" = FAILED && test -f $dir/shar \ && ($dir/shar --print-text-domain-dir >/dev/null 2>&1) then locale_dir=`$dir/shar --print-text-domain-dir` fi done IFS="$save_IFS" if test "$locale_dir" = FAILED || test "$gettext_dir" = FAILED then echo=echo else TEXTDOMAINDIR=$locale_dir export TEXTDOMAINDIR TEXTDOMAIN=sharutils export TEXTDOMAIN echo="$gettext_dir/gettext -s" fi touch -am 1231235999 $$.touch >/dev/null 2>&1 if test ! -f 1231235999 && test -f $$.touch; then shar_touch=touch else shar_touch=: echo $echo 'WARNING: not restoring timestamps. Consider getting and' $echo "installing GNU \`touch', distributed in GNU File Utilities..." echo fi rm -f 1231235999 $$.touch # if mkdir _sh16726; then $echo 'x -' 'creating lock directory' else $echo 'failed to create lock directory' exit 1 fi # ============= Makefile ============== if test -f 'Makefile' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'Makefile' '(file already exists)' else $echo 'x -' extracting 'Makefile' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'Makefile' && # Generated automatically from Makefile.in by configure. # New ports collection makefile for: bayonne # Date created: 10 September 2000 # Whom: David Sugar # # $FreeBSD: ports/lang/ccscript/Makefile,v 1.1 2000/07/28 10:45:43 sobomax Exp $ # X PORTNAME= bayonne PORTVERSION= 0.5.0 CATEGORIES= comms MASTER_SITES= ftp://www.voxilla.org/pub/bayonne/ X MAINTAINER= dyfet@gnu.org X LIB_DEPENDS= ccstd.0:${PORTSDIR}/devel/commoncpp \ X ccscript.0:${PORTSDIR}/lang/ccscript X USE_GMAKE= yes USE_LIBTOOL= yes USE_AUTOCONF= yes INSTALLS_SHLIB= yes X CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib PLIST_SUB= BAYONNE_VERSION=%{PORT_VERSION} X post-extract: X @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ X 's|-release \$$\(LT_RELEASE\)||g' X X.include SHAR_EOF $shar_touch -am 09160846100 'Makefile' && chmod 0644 'Makefile' || $echo 'restore of' 'Makefile' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'Makefile:' 'MD5 check failed' ed26ac558c57776ac603258908699795 Makefile SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'Makefile'`" test 813 -eq "$shar_count" || $echo 'Makefile:' 'original size' '813,' 'current size' "$shar_count!" fi fi # ============= files/md5 ============== if test ! -d 'files'; then $echo 'x -' 'creating directory' 'files' mkdir 'files' fi if test -f 'files/md5' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'files/md5' '(file already exists)' else $echo 'x -' extracting 'files/md5' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'files/md5' && e86cea432803779526211f615dd8a069 bayonne-0.5.0.tar.gz SHAR_EOF $shar_touch -am 09160905100 'files/md5' && chmod 0644 'files/md5' || $echo 'restore of' 'files/md5' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'files/md5:' 'MD5 check failed' f892ddca3ef88707b8219310799e7aa8 files/md5 SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'files/md5'`" test 55 -eq "$shar_count" || $echo 'files/md5:' 'original size' '55,' 'current size' "$shar_count!" fi fi # ============= pkg/PLIST ============== if test ! -d 'pkg'; then $echo 'x -' 'creating directory' 'pkg' mkdir 'pkg' fi if test -f 'pkg/PLIST' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'pkg/PLIST' '(file already exists)' else $echo 'x -' extracting 'pkg/PLIST' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'pkg/PLIST' && /etc/bayonne.conf.orig /etc/bayonne.sched.orig include/cc++/bayonne.h lib/bayonne/0.5.0/append.aud lib/bayonne/0.5.0/digits.fun lib/bayonne/0.5.0/dir.fun lib/bayonne/0.5.0/english.tts lib/bayonne/0.5.0/file.fun lib/bayonne/0.5.0/french.tts lib/bayonne/0.5.0/italian.tts lib/bayonne/0.5.0/string.fun lib/bayonne/0.5.0/trace.dbg lib/bayonne/0.5.0/udpstat.mon lib/bayonne/0.5.0/vpb.ivr lib/bayonne/0.5.0/vpim.mod libexec/tgi/KEYDATA.pm libexec/tgi/TGI.pm libexec/tgi/sendmail.pl libexec/tgi/tgigetdbval.pl libexec/tgi/tgisetdbval.pl man/man8/bayonne.8 share/aascripts/cidlog.scr share/aascripts/playrec.scr share/aascripts/playrec1.scr share/aascripts/playrec2.scr share/aascripts/tams.scr sbin/bayonne share/aaprompts/UsEngM share/aaprompts/UsEngM/0.au share/aaprompts/UsEngM/1.au share/aaprompts/UsEngM/10.au share/aaprompts/UsEngM/10th.au share/aaprompts/UsEngM/11.au share/aaprompts/UsEngM/11th.au share/aaprompts/UsEngM/12.au share/aaprompts/UsEngM/12th.au share/aaprompts/UsEngM/13.au share/aaprompts/UsEngM/13th.au share/aaprompts/UsEngM/14.au share/aaprompts/UsEngM/14th.au share/aaprompts/UsEngM/15.au share/aaprompts/UsEngM/15th.au share/aaprompts/UsEngM/16.au share/aaprompts/UsEngM/16th.au share/aaprompts/UsEngM/17.au share/aaprompts/UsEngM/17th.au share/aaprompts/UsEngM/18.au share/aaprompts/UsEngM/18th.au share/aaprompts/UsEngM/19.au share/aaprompts/UsEngM/19th.au share/aaprompts/UsEngM/1st.au share/aaprompts/UsEngM/2.au share/aaprompts/UsEngM/20.au share/aaprompts/UsEngM/20th.au share/aaprompts/UsEngM/2nd.au share/aaprompts/UsEngM/3.au share/aaprompts/UsEngM/30.au share/aaprompts/UsEngM/30th.au share/aaprompts/UsEngM/3rd.au share/aaprompts/UsEngM/4.au share/aaprompts/UsEngM/40.au share/aaprompts/UsEngM/40th.au share/aaprompts/UsEngM/4th.au share/aaprompts/UsEngM/5.au share/aaprompts/UsEngM/50.au share/aaprompts/UsEngM/50th.au share/aaprompts/UsEngM/5th.au share/aaprompts/UsEngM/6.au share/aaprompts/UsEngM/60.au share/aaprompts/UsEngM/60th.au share/aaprompts/UsEngM/6th.au share/aaprompts/UsEngM/7.au share/aaprompts/UsEngM/70.au share/aaprompts/UsEngM/70th.au share/aaprompts/UsEngM/7th.au share/aaprompts/UsEngM/8.au share/aaprompts/UsEngM/80.au share/aaprompts/UsEngM/80th.au share/aaprompts/UsEngM/8th.au share/aaprompts/UsEngM/9.au share/aaprompts/UsEngM/90.au share/aaprompts/UsEngM/90th.au share/aaprompts/UsEngM/9th.au share/aaprompts/UsEngM/a.au share/aaprompts/UsEngM/and.au share/aaprompts/UsEngM/april.au share/aaprompts/UsEngM/august.au share/aaprompts/UsEngM/b.au share/aaprompts/UsEngM/billion.au share/aaprompts/UsEngM/c.au share/aaprompts/UsEngM/cent.au share/aaprompts/UsEngM/cents.au share/aaprompts/UsEngM/d.au share/aaprompts/UsEngM/december.au share/aaprompts/UsEngM/dollar.au share/aaprompts/UsEngM/dollars.au share/aaprompts/UsEngM/e.au share/aaprompts/UsEngM/f.au share/aaprompts/UsEngM/february.au share/aaprompts/UsEngM/friday.au share/aaprompts/UsEngM/g.au share/aaprompts/UsEngM/h.au share/aaprompts/UsEngM/hour.au share/aaprompts/UsEngM/hours.au share/aaprompts/UsEngM/hundred.au share/aaprompts/UsEngM/i.au share/aaprompts/UsEngM/j.au share/aaprompts/UsEngM/january.au share/aaprompts/UsEngM/july.au share/aaprompts/UsEngM/june.au share/aaprompts/UsEngM/k.au share/aaprompts/UsEngM/l.au share/aaprompts/UsEngM/m.au share/aaprompts/UsEngM/march.au share/aaprompts/UsEngM/may.au share/aaprompts/UsEngM/million.au share/aaprompts/UsEngM/minute.au share/aaprompts/UsEngM/minutes.au share/aaprompts/UsEngM/monday.au share/aaprompts/UsEngM/n.au share/aaprompts/UsEngM/negative.au share/aaprompts/UsEngM/november.au share/aaprompts/UsEngM/o.au share/aaprompts/UsEngM/october.au share/aaprompts/UsEngM/or.au share/aaprompts/UsEngM/p.au share/aaprompts/UsEngM/playrec.ul share/aaprompts/UsEngM/playrec0.ul share/aaprompts/UsEngM/playrec1.ul share/aaprompts/UsEngM/playrec2.ul share/aaprompts/UsEngM/point.au share/aaprompts/UsEngM/q.au share/aaprompts/UsEngM/r.au share/aaprompts/UsEngM/s.au share/aaprompts/UsEngM/saturday.au share/aaprompts/UsEngM/second.au share/aaprompts/UsEngM/seconds.au share/aaprompts/UsEngM/september.au share/aaprompts/UsEngM/sunday.au share/aaprompts/UsEngM/t.au share/aaprompts/UsEngM/th.au share/aaprompts/UsEngM/thousand.au share/aaprompts/UsEngM/thursday.au share/aaprompts/UsEngM/today.au share/aaprompts/UsEngM/tuesday.au share/aaprompts/UsEngM/u.au share/aaprompts/UsEngM/v.au share/aaprompts/UsEngM/w.au share/aaprompts/UsEngM/wednesday.au share/aaprompts/UsEngM/x.au share/aaprompts/UsEngM/y.au share/aaprompts/UsEngM/z.au share/aaprompts/FrenchM share/aaprompts/FrenchM/0.au share/aaprompts/FrenchM/1.au share/aaprompts/FrenchM/10.au share/aaprompts/FrenchM/11.au share/aaprompts/FrenchM/12.au share/aaprompts/FrenchM/13.au share/aaprompts/FrenchM/14.au share/aaprompts/FrenchM/15.au share/aaprompts/FrenchM/16.au share/aaprompts/FrenchM/1st.au share/aaprompts/FrenchM/2.au share/aaprompts/FrenchM/20.au share/aaprompts/FrenchM/3.au share/aaprompts/FrenchM/30.au share/aaprompts/FrenchM/4.au share/aaprompts/FrenchM/40.au share/aaprompts/FrenchM/5.au share/aaprompts/FrenchM/50.au share/aaprompts/FrenchM/6.au share/aaprompts/FrenchM/60.au share/aaprompts/FrenchM/7.au share/aaprompts/FrenchM/8.au share/aaprompts/FrenchM/80.au share/aaprompts/FrenchM/9.au share/aaprompts/FrenchM/a.au share/aaprompts/FrenchM/and.au share/aaprompts/FrenchM/april.au share/aaprompts/FrenchM/august.au share/aaprompts/FrenchM/b.au share/aaprompts/FrenchM/billion.au share/aaprompts/FrenchM/c.au share/aaprompts/FrenchM/cent.au share/aaprompts/FrenchM/d.au share/aaprompts/FrenchM/december.au share/aaprompts/FrenchM/defranc.au share/aaprompts/FrenchM/e.au share/aaprompts/FrenchM/euro.au share/aaprompts/FrenchM/f.au share/aaprompts/FrenchM/februrary.au share/aaprompts/FrenchM/franc.au share/aaprompts/FrenchM/friday.au share/aaprompts/FrenchM/g.au share/aaprompts/FrenchM/h.au share/aaprompts/FrenchM/hour.au share/aaprompts/FrenchM/hundred.au share/aaprompts/FrenchM/i.au share/aaprompts/FrenchM/ieme.au share/aaprompts/FrenchM/j.au share/aaprompts/FrenchM/january.au share/aaprompts/FrenchM/july.au share/aaprompts/FrenchM/june.au share/aaprompts/FrenchM/k.au share/aaprompts/FrenchM/l.au share/aaprompts/FrenchM/m.au share/aaprompts/FrenchM/march.au share/aaprompts/FrenchM/may.au share/aaprompts/FrenchM/million.au share/aaprompts/FrenchM/minute.au share/aaprompts/FrenchM/monday.au share/aaprompts/FrenchM/n.au share/aaprompts/FrenchM/november.au share/aaprompts/FrenchM/o.au share/aaprompts/FrenchM/october.au share/aaprompts/FrenchM/or.au share/aaprompts/FrenchM/p.au share/aaprompts/FrenchM/point.au share/aaprompts/FrenchM/q.au share/aaprompts/FrenchM/r.au share/aaprompts/FrenchM/s.au share/aaprompts/FrenchM/saturday.au share/aaprompts/FrenchM/second.au share/aaprompts/FrenchM/september.au share/aaprompts/FrenchM/sunday.au share/aaprompts/FrenchM/t.au share/aaprompts/FrenchM/thousand.au share/aaprompts/FrenchM/thursday.au share/aaprompts/FrenchM/tieme.au share/aaprompts/FrenchM/tuesday.au share/aaprompts/FrenchM/u.au share/aaprompts/FrenchM/unieme.au share/aaprompts/FrenchM/v.au share/aaprompts/FrenchM/w.au share/aaprompts/FrenchM/wednesday.au share/aaprompts/FrenchM/x.au share/aaprompts/FrenchM/y.au share/aaprompts/FrenchM/z.au share/aaprompts/FrenchM/zieme.au @dirrm lib/bayonne/0.5.0 @dirrm lib/bayonne @dirrm libexec/tgi X SHAR_EOF $shar_touch -am 09160846100 'pkg/PLIST' && chmod 0644 'pkg/PLIST' || $echo 'restore of' 'pkg/PLIST' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'pkg/PLIST:' 'MD5 check failed' 330faaa7867f8ab4a7846ea61330a0e5 pkg/PLIST SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'pkg/PLIST'`" test 7317 -eq "$shar_count" || $echo 'pkg/PLIST:' 'original size' '7317,' 'current size' "$shar_count!" fi fi # ============= pkg/COMMENT ============== if test -f 'pkg/COMMENT' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'pkg/COMMENT' '(file already exists)' else $echo 'x -' extracting 'pkg/COMMENT' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'pkg/COMMENT' && Multi-line general purpose voice telephony server SHAR_EOF $shar_touch -am 09111236100 'pkg/COMMENT' && chmod 0644 'pkg/COMMENT' || $echo 'restore of' 'pkg/COMMENT' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'pkg/COMMENT:' 'MD5 check failed' 7bac422f39d53d01a6a121c29e5afa00 pkg/COMMENT SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'pkg/COMMENT'`" test 50 -eq "$shar_count" || $echo 'pkg/COMMENT:' 'original size' '50,' 'current size' "$shar_count!" fi fi # ============= pkg/DESCR ============== if test -f 'pkg/DESCR' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'pkg/DESCR' '(file already exists)' else $echo 'x -' extracting 'pkg/DESCR' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'pkg/DESCR' && Bayonne is a modular multithreaded telephony server that allows one to build and deploy script driven telephony voice response applications that are either stand-alone or integrated with other existing system services thru perl scripts, web servers, etc. Bayonne initially supports Quicknet and Voicetronix hardware under FreeBSD. X - David Sugar dyfet@gnu.org SHAR_EOF $shar_touch -am 09111238100 'pkg/DESCR' && chmod 0644 'pkg/DESCR' || $echo 'restore of' 'pkg/DESCR' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'pkg/DESCR:' 'MD5 check failed' 7c63e5545aac06e662a9b9a3e791882c pkg/DESCR SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'pkg/DESCR'`" test 361 -eq "$shar_count" || $echo 'pkg/DESCR:' 'original size' '361,' 'current size' "$shar_count!" fi fi rm -fr _sh16726 exit 0 >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 Sep 17 8:23:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pozo.com (pozo.com [216.101.162.50]) by hub.freebsd.org (Postfix) with ESMTP id 8E3D337B43C for ; Sun, 17 Sep 2000 08:23:16 -0700 (PDT) Received: from dual.pozo.com (dual.pozo.com [216.101.162.51]) by pozo.com (8.11.0/8.11.0) with ESMTP id e8HFNGF03312 for ; Sun, 17 Sep 2000 08:23:16 -0700 (PDT) (envelope-from null@pozo.com) Message-Id: <5.0.0.25.2.20000917082139.00a56f28@pozo.com> X-Sender: null@pozo.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 17 Sep 2000 08:23:12 -0700 To: ports@freebsd.org From: Manfred Antar Subject: Fetchmaill 5.2.2 does not compile on current Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ===> Building for fetchmail-5.5.2 expect conflicts: 2 shift/reduce bison -y -dt ./rcfile_y.y conflicts: 2 shift/reduce mv y.tab.c rcfile_y.c mv -f y.tab.h rcfile_y.h cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe rcfile_y.c flex ./rcfile_l.l mv lex.yy.c rcfile_l.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe rcfile_l.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe socket.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe getpass.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe pop2.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe pop3.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe imap.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe etrn.c cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe fetchmail.c fetchmail.c: In function `load_params': fetchmail.c:1104: warning: assignment makes pointer from integer without a cast fetchmail.c:1105: dereferencing pointer to incomplete type fetchmail.c:1107: dereferencing pointer to incomplete type fetchmail.c:1110: dereferencing pointer to incomplete type *** Error code 1 Stop in /usr/ports/mail/fetchmail/work/fetchmail-5.5.2. *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. *** Error code 1 Stop in /usr/ports/mail/fetchmail. ================================== || null@pozo.com || || Ph. (415) 681-6235 || ================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 9:15:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id 6BC5737B422 for ; Sun, 17 Sep 2000 09:15:44 -0700 (PDT) Received: from localhost (localhost [::1]) (authenticated) by peace.mahoroba.org (8.11.0/8.11.0/peace) with ESMTP/inet6 id e8HGEsW01084; Mon, 18 Sep 2000 01:14:54 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Mon, 18 Sep 2000 01:14:50 +0900 (JST) Message-Id: <20000918.011450.74756657.ume@mahoroba.org> To: null@pozo.com Cc: ports@freebsd.org Subject: Re: Fetchmaill 5.2.2 does not compile on current From: Hajimu UMEMOTO In-Reply-To: <5.0.0.25.2.20000917082139.00a56f28@pozo.com> References: <5.0.0.25.2.20000917082139.00a56f28@pozo.com> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.7 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT 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 >>>>> On Sun, 17 Sep 2000 08:23:12 -0700 >>>>> Manfred Antar said: null> cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe fetchmail.c null> fetchmail.c: In function `load_params': null> fetchmail.c:1104: warning: assignment makes pointer from integer without a cast null> fetchmail.c:1105: dereferencing pointer to incomplete type null> fetchmail.c:1107: dereferencing pointer to incomplete type null> fetchmail.c:1110: dereferencing pointer to incomplete type null> *** Error code 1 null> Stop in /usr/ports/mail/fetchmail/work/fetchmail-5.5.2. null> *** Error code 1 Since recent 5-CURRENT has hesiod.h by nsswitch merge, fetchmail's configure script detects it. However, it seems not expected as fetchmail requires. You can avoid this with adding --with-hesiod=no to CONFIGURE_ARGS. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 9:25: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pozo.com (pozo.com [216.101.162.50]) by hub.freebsd.org (Postfix) with ESMTP id CB7DB37B422 for ; Sun, 17 Sep 2000 09:25:04 -0700 (PDT) Received: from dual.pozo.com (dual.pozo.com [216.101.162.51]) by pozo.com (8.11.0/8.11.0) with ESMTP id e8HGOoF31126; Sun, 17 Sep 2000 09:24:50 -0700 (PDT) (envelope-from null@pozo.com) Message-Id: <5.0.0.25.2.20000917092336.00a57090@pozo.com> X-Sender: null@pozo.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Sun, 17 Sep 2000 09:24:50 -0700 To: Hajimu UMEMOTO From: Manfred Antar Subject: Re: Fetchmaill 5.2.2 does not compile on current Cc: ports@FreeBSD.ORG In-Reply-To: <20000918.011450.74756657.ume@mahoroba.org> References: <5.0.0.25.2.20000917082139.00a56f28@pozo.com> <5.0.0.25.2.20000917082139.00a56f28@pozo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 01:14 AM 9/18/2000 +0900, Hajimu UMEMOTO wrote: >>>>>> On Sun, 17 Sep 2000 08:23:12 -0700 >>>>>> Manfred Antar said: > >null> cc -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/local/share/locale"' -c -I. -I. -I/usr/include -I/usr/include/openssl -DHESIOD -I/usr/include -I/usr/local/include -O -pipe fetchmail.c >null> fetchmail.c: In function `load_params': >null> fetchmail.c:1104: warning: assignment makes pointer from integer without a cast >null> fetchmail.c:1105: dereferencing pointer to incomplete type >null> fetchmail.c:1107: dereferencing pointer to incomplete type >null> fetchmail.c:1110: dereferencing pointer to incomplete type >null> *** Error code 1 > >null> Stop in /usr/ports/mail/fetchmail/work/fetchmail-5.5.2. >null> *** Error code 1 > >Since recent 5-CURRENT has hesiod.h by nsswitch merge, fetchmail's >configure script detects it. However, it seems not expected as >fetchmail requires. You can avoid this with adding --with-hesiod=no >to CONFIGURE_ARGS. Hajimu Thanks, that works fine. It should probably be included in the current Makefile Manfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:28: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 8C5A837B423; Sun, 17 Sep 2000 10:28:50 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA21280; Sun, 17 Sep 2000 10:28:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:28:50 -0700 (PDT) From: Message-Id: <200009171728.KAA21280@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-doc@freebsd.org Subject: Re: ports/20647: make install in doc sources fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make install in doc sources fails Responsible-Changed-From-To: freebsd-ports->freebsd-doc Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 10:28:28 PDT 2000 Responsible-Changed-Why: This is a -doc issue, not -ports http://www.freebsd.org/cgi/query-pr.cgi?pr=20647 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:30:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DAB037B423; Sun, 17 Sep 2000 10:30:58 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA21736; Sun, 17 Sep 2000 10:30:58 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:30:58 -0700 (PDT) From: Message-Id: <200009171730.KAA21736@freefall.freebsd.org> To: dmmiller@cvzoom.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/16201: Port of CDD isn't up to date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port of CDD isn't up to date State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:30:20 PDT 2000 State-Changed-Why: audio/cdd is currently marked as BROKEN for FreeBSD >= 4.0 Perhaps you can work with the maintainer to fix the problem? http://www.freebsd.org/cgi/query-pr.cgi?pr=16201 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:32: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 B316E37B422; Sun, 17 Sep 2000 10:32:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA22058; Sun, 17 Sep 2000 10:32:15 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:32:15 -0700 (PDT) From: Message-Id: <200009171732.KAA22058@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jfitz@FreeBSD.org Subject: Re: ports/16640: rwhois port install tries to copy wrong libwrap Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rwhois port install tries to copy wrong libwrap Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 10:32:01 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=16640 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:33: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 B582337B422; Sun, 17 Sep 2000 10:33:38 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA22390; Sun, 17 Sep 2000 10:33:38 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:33:38 -0700 (PDT) From: Message-Id: <200009171733.KAA22390@freefall.freebsd.org> To: nox@jelal.kn-bremen.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17066: audio/xmms chewing CPU (and skipping too) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: audio/xmms chewing CPU (and skipping too) State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:32:46 PDT 2000 State-Changed-Why: Timeout (2 months) in feedback. Please update your source and ports trees and file a new PR if the issue is still occurring (it doesn't here on 4.1-STABLE 9/11) http://www.freebsd.org/cgi/query-pr.cgi?pr=17066 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:34: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 3426C37B422; Sun, 17 Sep 2000 10:34:39 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA22612; Sun, 17 Sep 2000 10:34:39 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:34:39 -0700 (PDT) From: Message-Id: <200009171734.KAA22612@freefall.freebsd.org> To: kiri@pis.toba-cmt.ac.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17176: Update ports: Mew-1.94.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports: Mew-1.94.2 State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:34:22 PDT 2000 State-Changed-Why: Timeout (2 months) in feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=17176 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:36: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 F350937B422; Sun, 17 Sep 2000 10:36:24 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA22902; Sun, 17 Sep 2000 10:36:24 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:36:24 -0700 (PDT) From: Message-Id: <200009171736.KAA22902@freefall.freebsd.org> To: enderx@uberhacker.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17309: ports/audio/cdd doesn't support .wav output Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/audio/cdd doesn't support .wav output State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 10:35:20 PDT 2000 State-Changed-Why: Currently, audio/cdd is broken for anything >= FreeBSD 4.0 -- I see here that you're using 3.2-RELEASE. Can you work with the maintainer of the port to unbreak it and have your patch applied as part of the process? http://www.freebsd.org/cgi/query-pr.cgi?pr=17309 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:37: 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 D653437B423; Sun, 17 Sep 2000 10:37:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23017; Sun, 17 Sep 2000 10:37:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:37:07 -0700 (PDT) From: Message-Id: <200009171737.KAA23017@freefall.freebsd.org> To: yushunwa@isi.edu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/17420: new port: xbone Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: xbone State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:36:55 PDT 2000 State-Changed-Why: Timeout (2 months) in feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=17420 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:39: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 0380C37B42C; Sun, 17 Sep 2000 10:39:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23406; Sun, 17 Sep 2000 10:39:47 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:39:47 -0700 (PDT) From: Message-Id: <200009171739.KAA23406@freefall.freebsd.org> To: rwatson@freebsd.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18083: Gratuitous Apache package inconsistencies Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Gratuitous Apache package inconsistencies State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:38:04 PDT 2000 State-Changed-Why: As has been discussed on numerous occasions on the -ports mailing list, and elsewhere, a number of individuals are working on a complete revamp of the Apache ports. Since this PR simply tells us what we already know, without any suggestions as to fix it, and given that the PR hasn't been touched since its inception in April 2000, I'm closing it. http://www.freebsd.org/cgi/query-pr.cgi?pr=18083 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:40: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 E001337B422; Sun, 17 Sep 2000 10:40:29 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23582; Sun, 17 Sep 2000 10:40:29 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:40:29 -0700 (PDT) From: Message-Id: <200009171740.KAA23582@freefall.freebsd.org> To: shurd@sk.sympatico.ca, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18088: libXext.so.6.x never found - often looked for. (ie iNES port) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libXext.so.6.x never found - often looked for. (ie iNES port) State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:40:15 PDT 2000 State-Changed-Why: Timeout (5 months) in feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=18088 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:42: 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 DEAFF37B422; Sun, 17 Sep 2000 10:42:04 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23795; Sun, 17 Sep 2000 10:42:04 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:42:04 -0700 (PDT) From: Message-Id: <200009171742.KAA23795@freefall.freebsd.org> To: shurd@sk.sympatico.ca, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18239: Had to create symbolic link for StarOffice5 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Had to create symbolic link for StarOffice5 port State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:41:02 PDT 2000 State-Changed-Why: The staroffice port has been upgraded to 5.2 for quite some time. Please try using editors/staroffice52 and submit another PR if the problem exists. http://www.freebsd.org/cgi/query-pr.cgi?pr=18239 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:42: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 A2E3637B423; Sun, 17 Sep 2000 10:42:44 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23902; Sun, 17 Sep 2000 10:42:44 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:42:44 -0700 (PDT) From: Message-Id: <200009171742.KAA23902@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/18310: ports/devel/cdk install error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/devel/cdk install error Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 10:42:33 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=18310 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:45: 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 128E437B42C; Sun, 17 Sep 2000 10:45:03 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA24179; Sun, 17 Sep 2000 10:45:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:45:03 -0700 (PDT) From: Message-Id: <200009171745.KAA24179@freefall.freebsd.org> To: bates@jurai.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18356: /usr/ports/net/pipsecd build fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/ports/net/pipsecd build fails State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 10:44:28 PDT 2000 State-Changed-Why: I verified the problem on 4.1-STABLE. Perhaps you can work with the maintainer (patrick@mindstep.com) to fix this issue? http://www.freebsd.org/cgi/query-pr.cgi?pr=18356 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:46: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 412F937B422; Sun, 17 Sep 2000 10:46:18 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA24456; Sun, 17 Sep 2000 10:46:18 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:46:18 -0700 (PDT) From: Message-Id: <200009171746.KAA24456@freefall.freebsd.org> To: Pekka.Nikander@iki.fi, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18395: Port for Generic Java Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port for Generic Java State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:45:23 PDT 2000 State-Changed-Why: Supplied uuencoded file is corrupt. Please resubmit the port as a new PR. Unless it's really huge, I suggest just a simple sharball of the new port. uuencode does seem to be susceptible to mangling. http://www.freebsd.org/cgi/query-pr.cgi?pr=18395 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:51: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 DE91D37B422; Sun, 17 Sep 2000 10:51:16 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25063; Sun, 17 Sep 2000 10:51:16 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:51:16 -0700 (PDT) From: Message-Id: <200009171751.KAA25063@freefall.freebsd.org> To: hetzels@westbend.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18581: Change FP Exts from BSDI to FreeBSD Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Change FP Exts from BSDI to FreeBSD State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 10:50:33 PDT 2000 State-Changed-Why: I tried applying the patches to the currently available version of the port, and it failed miserably, on practically every file referenced. Can you resubmit an updated patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=18581 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:52: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 A330C37B422; Sun, 17 Sep 2000 10:52:21 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25192; Sun, 17 Sep 2000 10:52:21 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:52:21 -0700 (PDT) From: Message-Id: <200009171752.KAA25192@freefall.freebsd.org> To: isupov@moonhe.jinr.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18582: joe can't read @7 termcap capability and case insensitive search doesn't work for non-C localizations Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: joe can't read @7 termcap capability and case insensitive search doesn't work for non-C localizations State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 10:51:43 PDT 2000 State-Changed-Why: Have you discussed these changes with the port maintainer, toasty@dragondata.com ? http://www.freebsd.org/cgi/query-pr.cgi?pr=18582 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10: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 E10C237B423; Sun, 17 Sep 2000 10:53:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25372; Sun, 17 Sep 2000 10:53:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:53:33 -0700 (PDT) From: Message-Id: <200009171753.KAA25372@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/18896: Tcl "info hostname" command returns chop-off hostname, when hostname length >= 32 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Tcl "info hostname" command returns chop-off hostname, when hostname length >= 32 Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 10:53:21 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=18896 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 10:58: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 BEFC137B422; Sun, 17 Sep 2000 10:58:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25817; Sun, 17 Sep 2000 10:58:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 10:58:11 -0700 (PDT) From: Message-Id: <200009171758.KAA25817@freefall.freebsd.org> To: lioux@uol.com.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19082: Can't build editors/aXe-6.1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can't build editors/aXe-6.1.2 State-Changed-From-To: open->analyzed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:55:46 PDT 2000 State-Changed-Why: I don't get the problem you're running into (I run XFree 4.0.1 here), but the build dies further on down with: AxeiiSink.c: In function `Initialize': AxeiiSink.c:150: structure has no member named `insertCursorOn' AxeiiSink.c:151: structure has no member named `insertCursorOn' AxeiiSink.c:154: structure has no member named `insertCursorOn' AxeiiSink.c: In function `InsertCursor': AxeiiSink.c:225: structure has no member named `insertCursorOn' (verified by looking at bento logs) This looks like an incompatibility between XFree 3.3.6 and 4.0.1 which is probably less than trivial to fix. Is there a way to mark a port broken for a particular XFree version? http://www.freebsd.org/cgi/query-pr.cgi?pr=19082 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 0: 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 CE2CC37B424; Sun, 17 Sep 2000 11:00:00 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA26090; Sun, 17 Sep 2000 11:00:00 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:00:00 -0700 (PDT) From: Message-Id: <200009171800.LAA26090@freefall.freebsd.org> To: samy@goldmoon.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19140: Update port: graphics/enfle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/enfle State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 10:59:19 PDT 2000 State-Changed-Why: Looking at the current version of the port, it has been updated to version 20000817 (ie: newer than the supplied diff). I'm therefore closing the PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=19140 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 3: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 0534137B423; Sun, 17 Sep 2000 11:03:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA26440; Sun, 17 Sep 2000 11:03:10 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:03:10 -0700 (PDT) From: Message-Id: <200009171803.LAA26440@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19659: erlang port: proposal for updating the mnesia library Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: erlang port: proposal for updating the mnesia library State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:02:42 PDT 2000 State-Changed-Why: Have you discussed these changes with the maintainer of the lang/erlang port, seb@bluetail.com ? http://www.freebsd.org/cgi/query-pr.cgi?pr=19659 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 4: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 29A7937B423; Sun, 17 Sep 2000 11:04:21 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA26565; Sun, 17 Sep 2000 11:04:21 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:04:21 -0700 (PDT) From: Message-Id: <200009171804.LAA26565@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19854: [PATCH] inclusion of full mozart-oz documentation Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] inclusion of full mozart-oz documentation State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:03:58 PDT 2000 State-Changed-Why: Have you discussed these changes with the maintainer of the lang/mozart port, mathiasp@virtual-earth.de ? http://www.freebsd.org/cgi/query-pr.cgi?pr=19854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 5: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 E4A6137B424; Sun, 17 Sep 2000 11:05:14 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA27602; Sun, 17 Sep 2000 11:05:14 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:05:14 -0700 (PDT) From: Message-Id: <200009171805.LAA27602@freefall.freebsd.org> To: eoin@maths.tcd.ie, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19876: upgrade ns to version 2.1.b6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade ns to version 2.1.b6 State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:05:02 PDT 2000 State-Changed-Why: Timeout (2 months) in feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=19876 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 6: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 403F437B422; Sun, 17 Sep 2000 11:06:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28482; Sun, 17 Sep 2000 11:06:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:06:49 -0700 (PDT) From: Message-Id: <200009171806.LAA28482@freefall.freebsd.org> To: clefevre@citeweb.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19996: fetchmail --configdump core dumps (w/ patch) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fetchmail --configdump core dumps (w/ patch) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:05:47 PDT 2000 State-Changed-Why: mail/fetchmail has been updated to 5.5.2 -- if the behavior you describe here still exists with the new port, please submit a new PR. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=19996 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 8: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 4F4EE37B422; Sun, 17 Sep 2000 11:08:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28696; Sun, 17 Sep 2000 11:08:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:08:35 -0700 (PDT) From: Message-Id: <200009171808.LAA28696@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/20079: Non-upgrade fixes for tk8[023] ports. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Non-upgrade fixes for tk8[023] ports. Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:07:45 PDT 2000 Responsible-Changed-Why: Over to tk82/tk83 maintainer. Justin, once you've finished, you'll probably want to reassign to cwt for x11-toolkits/tk80 http://www.freebsd.org/cgi/query-pr.cgi?pr=20079 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11: 9: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 0E51537B424; Sun, 17 Sep 2000 11:09:22 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28835; Sun, 17 Sep 2000 11:09:22 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:09:22 -0700 (PDT) From: Message-Id: <200009171809.LAA28835@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dburr@FreeBSD.org Subject: Re: ports/20145: improving the devel/SN port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: improving the devel/SN port Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:09:10 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20145 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:10: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 A963337B423; Sun, 17 Sep 2000 11:10:30 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28993; Sun, 17 Sep 2000 11:10:30 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:10:30 -0700 (PDT) From: Message-Id: <200009171810.LAA28993@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, reg@FreeBSD.org Subject: Re: ports/20157: libtool incorrectly adds -lc to threaded apps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libtool incorrectly adds -lc to threaded apps Responsible-Changed-From-To: freebsd-ports->reg Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:09:54 PDT 2000 Responsible-Changed-Why: Over to maintainer (yes, I've read the audit trail). Your call as to whether to just shut this one down, Jeremy. http://www.freebsd.org/cgi/query-pr.cgi?pr=20157 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:11: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 36CAF37B423; Sun, 17 Sep 2000 11:11:28 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29163; Sun, 17 Sep 2000 11:11:28 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:11:28 -0700 (PDT) From: Message-Id: <200009171811.LAA29163@freefall.freebsd.org> To: martti.kuparinen@piuha.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20170: [PATCH] fvwm2-beta update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] fvwm2-beta update State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:11:01 PDT 2000 State-Changed-Why: Have you discussed this with the maintainer of the x11-wm/fvwm2-beta port, Cy.Schubert@uumail.gov.bc.ca ? http://www.freebsd.org/cgi/query-pr.cgi?pr=20170 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:12: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 1C8D937B422; Sun, 17 Sep 2000 11:12:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29286; Sun, 17 Sep 2000 11:12:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:12:11 -0700 (PDT) From: Message-Id: <200009171812.LAA29286@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, andreas@FreeBSD.org Subject: Re: ports/20171: postgresql7 user message contains $PREFIX not /usr/local Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: postgresql7 user message contains $PREFIX not /usr/local Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:12:00 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20171 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:13: 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 B971337B424; Sun, 17 Sep 2000 11:13:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29435; Sun, 17 Sep 2000 11:13:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:13:07 -0700 (PDT) From: Message-Id: <200009171813.LAA29435@freefall.freebsd.org> To: mikko@dynas.se, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20200: Updated version of mathopd web server contains bugfix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated version of mathopd web server contains bugfix State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:12:43 PDT 2000 State-Changed-Why: Have you discussed this with the maintainer of the www/mathopd port, tobez@tobez.org ? http://www.freebsd.org/cgi/query-pr.cgi?pr=20200 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:14: 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 CE76637B43C; Sun, 17 Sep 2000 11:14:03 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29569; Sun, 17 Sep 2000 11:14:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:14:03 -0700 (PDT) From: Message-Id: <200009171814.LAA29569@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, reg@FreeBSD.org Subject: Re: ports/20270: libtool needlessly runs ldconfig after install shlibs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libtool needlessly runs ldconfig after install shlibs Responsible-Changed-From-To: freebsd-ports->reg Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:13:38 PDT 2000 Responsible-Changed-Why: Over to maintainer (yes, I read the audit trail again :) http://www.freebsd.org/cgi/query-pr.cgi?pr=20270 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:15: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 35CFD37B422; Sun, 17 Sep 2000 11:15:31 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA29772; Sun, 17 Sep 2000 11:15:31 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:15:31 -0700 (PDT) From: Message-Id: <200009171815.LAA29772@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dburr@FreeBSD.org Subject: Re: ports/20364: audio/ripit-atapi can use 'dagrab' instead of broken cdd and sox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: audio/ripit-atapi can use 'dagrab' instead of broken cdd and sox Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:15:21 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20364 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:17: 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 D31CE37B422; Sun, 17 Sep 2000 11:17:05 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA30081; Sun, 17 Sep 2000 11:17:05 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:17:05 -0700 (PDT) From: Message-Id: <200009171817.LAA30081@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/20499: [PATCH] conserver port doesn't like MD5 crypto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] conserver port doesn't like MD5 crypto Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:16:54 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20499 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:21: 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 95E3A37B422; Sun, 17 Sep 2000 11:21:03 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA31246; Sun, 17 Sep 2000 11:21:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:21:03 -0700 (PDT) From: Message-Id: <200009171821.LAA31246@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20562: [PATCH] PLIST and typo fix for freefonts Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] PLIST and typo fix for freefonts State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:20:52 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20562 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:22:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1D4C37B422; Sun, 17 Sep 2000 11:22:57 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA32225; Sun, 17 Sep 2000 11:22:57 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:22:57 -0700 (PDT) From: Message-Id: <200009171822.LAA32225@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/20627: tcl83 build is broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tcl83 build is broken Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:22:48 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20627 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:24:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from worldcity.nl (worldcity.nl [194.109.4.7]) by hub.freebsd.org (Postfix) with ESMTP id A2D7537B424; Sun, 17 Sep 2000 11:24:33 -0700 (PDT) Received: from bigfoot.de (klant@kwakkwak.worldcity.net [194.109.4.233]) by worldcity.nl (8.9.3/8.9.3) with ESMTP id UAA24726; Sun, 17 Sep 2000 20:24:31 +0200 Message-ID: <39C50B9A.D4F7D923@bigfoot.de> Date: Sun, 17 Sep 2000 20:21:15 +0200 From: Guenther Schmidt X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.14 i586) X-Accept-Language: en MIME-Version: 1.0 To: ade@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: nautilus-0.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 Hi ade? I experienced some trubble installing the port. There seems to be a dependence that is not included to the rpm port. Guenther To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:24: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 1770937B422; Sun, 17 Sep 2000 11:24:46 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA32658; Sun, 17 Sep 2000 11:24:46 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:24:46 -0700 (PDT) From: Message-Id: <200009171824.LAA32658@freefall.freebsd.org> To: patrick@watson.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20645: Update Objective Caml to 3.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Objective Caml to 3.00 State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:23:55 PDT 2000 State-Changed-Why: Has the current maintainer (ortmann@isl.net) approved this, especially the change of maintainership that your sharball shows. If so, please resubmit the update as unified diffs against the current port, rather than a brand new sharball. http://www.freebsd.org/cgi/query-pr.cgi?pr=20645 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:26: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 7A51137B423; Sun, 17 Sep 2000 11:26:31 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA33250; Sun, 17 Sep 2000 11:26:31 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:26:31 -0700 (PDT) From: Message-Id: <200009171826.LAA33250@freefall.freebsd.org> To: kelly@cbl-skelly3.hs.earthlink.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20665: [PATCH] Update PORTVERSION for JadeTeX port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Update PORTVERSION for JadeTeX port State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:25:30 PDT 2000 State-Changed-Why: This patch is incomplete. You've bumped the port version number in the makefile, but have not provided an updated files/md5, nor checked to see if there are PLIST (or other) changes that need to be made. If you can provide a full diff to upgrade the port, then we can make some more progress with this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=20665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:27: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 5DDDE37B423; Sun, 17 Sep 2000 11:27:16 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA33411; Sun, 17 Sep 2000 11:27:16 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:27:16 -0700 (PDT) From: Message-Id: <200009171827.LAA33411@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, torstenb@FreeBSD.org Subject: Re: ports/20688: news/inn build broken on -Current (perl issues?) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: news/inn build broken on -Current (perl issues?) Responsible-Changed-From-To: freebsd-ports->torstenb Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:27:04 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20688 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:28: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 1094F37B42C; Sun, 17 Sep 2000 11:28:27 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA33656; Sun, 17 Sep 2000 11:28:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:28:27 -0700 (PDT) From: Message-Id: <200009171828.LAA33656@freefall.freebsd.org> To: andre.albsmeier@mchp.siemens.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20693: Two patches for fxtv Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Two patches for fxtv State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:27:57 PDT 2000 State-Changed-Why: Have you verified this update with the maintainer of the graphics/fxtv port, aa8vb@nc.rr.com ? http://www.freebsd.org/cgi/query-pr.cgi?pr=20693 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:29: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 905D037B423; Sun, 17 Sep 2000 11:29:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA33988; Sun, 17 Sep 2000 11:29:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:29:48 -0700 (PDT) From: Message-Id: <200009171829.LAA33988@freefall.freebsd.org> To: mwm@mired.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20737: audio/cdrdao test for pccts has a LOCALBASE dependency Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: audio/cdrdao test for pccts has a LOCALBASE dependency State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:29:16 PDT 2000 State-Changed-Why: Have you contacted the maintainer of the audio/cdrdao port, futatuki@debug.gr.jp, about this update? http://www.freebsd.org/cgi/query-pr.cgi?pr=20737 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:32: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 4849F37B423; Sun, 17 Sep 2000 11:32:10 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34789; Sun, 17 Sep 2000 11:32:10 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:32:10 -0700 (PDT) From: Message-Id: <200009171832.LAA34789@freefall.freebsd.org> To: jim@thehousleys.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20928: Port Update: healthd to version 0.6.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: healthd to version 0.6.0 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:31:59 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20928 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:36: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 CF26637B424; Sun, 17 Sep 2000 11:36:23 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36164; Sun, 17 Sep 2000 11:36:23 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:36:23 -0700 (PDT) From: Message-Id: <200009171836.LAA36164@freefall.freebsd.org> To: jhp@cocoja.holywar.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20991: Update port net/tintin to 1.8.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port net/tintin to 1.8.2 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:36:12 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20991 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:37: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 967E337B423; Sun, 17 Sep 2000 11:37:26 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36443; Sun, 17 Sep 2000 11:37:26 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:37:26 -0700 (PDT) From: Message-Id: <200009171837.LAA36443@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20997: [PATCH] Man page, install enhancements for AIDE port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Man page, install enhancements for AIDE port State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:36:56 PDT 2000 State-Changed-Why: Have you contacted the maintainer of the security/aide port about this update? Cy.Schubert@uumail.gov.bc.ca http://www.freebsd.org/cgi/query-pr.cgi?pr=20997 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:38: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 1339637B424; Sun, 17 Sep 2000 11:38:22 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36776; Sun, 17 Sep 2000 11:38:22 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:38:22 -0700 (PDT) From: Message-Id: <200009171838.LAA36776@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20998: [PATCH] Enhancements for Xfstt port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Enhancements for Xfstt port State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:37:55 PDT 2000 State-Changed-Why: Have you contacted the maintainer of the x11-servers/Xfstt port about this update? rip@pinetec.co.za http://www.freebsd.org/cgi/query-pr.cgi?pr=20998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:40: 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 B885837B423; Sun, 17 Sep 2000 11:40:00 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA37276; Sun, 17 Sep 2000 11:40:00 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:40:00 -0700 (PDT) From: Message-Id: <200009171840.LAA37276@freefall.freebsd.org> To: jhp@cocoja.holywar.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21021: graphics/quickpics bogus colorspace error on grayscale image Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: graphics/quickpics bogus colorspace error on grayscale image State-Changed-From-To: open->analyzed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:39:18 PDT 2000 State-Changed-Why: Maintainer is now aware of the issue, and will repackaging a new version of the port presently. When that PR arrives, this one can be closed. http://www.freebsd.org/cgi/query-pr.cgi?pr=21021 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:41: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 B749E37B423; Sun, 17 Sep 2000 11:41:29 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA37569; Sun, 17 Sep 2000 11:41:29 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:41:29 -0700 (PDT) From: Message-Id: <200009171841.LAA37569@freefall.freebsd.org> To: rmtodd@servalan.servalan.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21107: version of gcombust in tree doesn't work with current mkisofs (update of port to current gcombust included) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: version of gcombust in tree doesn't work with current mkisofs (update of port to current gcombust included) State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:41:02 PDT 2000 State-Changed-Why: Have you contacted the maintainer of the sysutils/gcombust port about this update? nox@jelal.kn-bremen.de http://www.freebsd.org/cgi/query-pr.cgi?pr=21107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:42: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 F07AA37B43E; Sun, 17 Sep 2000 11:42:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA37840; Sun, 17 Sep 2000 11:42:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:42:33 -0700 (PDT) From: Message-Id: <200009171842.LAA37840@freefall.freebsd.org> To: bsdx@looksharp.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21159: gcombust port simple upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gcombust port simple upgrade State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:42:01 PDT 2000 State-Changed-Why: Have you contacted the maintainer of the sysutils/gcombust port about this update? nox@jelal.kn-bremen.de See also ports/21107 http://www.freebsd.org/cgi/query-pr.cgi?pr=21159 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:45: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 6D2D537B423; Sun, 17 Sep 2000 11:45:19 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38410; Sun, 17 Sep 2000 11:45:19 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:45:19 -0700 (PDT) From: Message-Id: <200009171845.LAA38410@freefall.freebsd.org> To: makoto@rantantan.pinpott.spnet.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21161: Update port: game/zangband Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: game/zangband State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:45:08 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21161 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:48: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 7865337B422; Sun, 17 Sep 2000 11:48:10 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39122; Sun, 17 Sep 2000 11:48:10 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:48:10 -0700 (PDT) From: Message-Id: <200009171848.LAA39122@freefall.freebsd.org> To: ginga@athena.club.ne.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21219: japanese/ng port version update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: japanese/ng port version update State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:47:59 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21219 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:49: 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 253CF37B423; Sun, 17 Sep 2000 11:48:59 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39306; Sun, 17 Sep 2000 11:48:59 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:48:59 -0700 (PDT) From: Message-Id: <200009171848.LAA39306@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/21243: lsof port fails if $(CC) has a space in it in /etc/make.conf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lsof port fails if $(CC) has a space in it in /etc/make.conf Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 11:48:35 PDT 2000 Responsible-Changed-Why: Over to maintainer -- useful audit trail. http://www.freebsd.org/cgi/query-pr.cgi?pr=21243 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:49: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 F175E37B422; Sun, 17 Sep 2000 11:49:54 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA39506; Sun, 17 Sep 2000 11:49:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:49:54 -0700 (PDT) From: Message-Id: <200009171849.LAA39506@freefall.freebsd.org> To: ido@hitachi-ms.co.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21262: Fix port: mail/postfix-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix port: mail/postfix-current State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:49:29 PDT 2000 State-Changed-Why: Have you discussed this update with the maintainer of the mail/postfix-current port? missnglnk@sneakerz.org http://www.freebsd.org/cgi/query-pr.cgi?pr=21262 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:51: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 EAE1137B424; Sun, 17 Sep 2000 11:51:09 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA40011; Sun, 17 Sep 2000 11:51:09 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:51:09 -0700 (PDT) From: Message-Id: <200009171851.LAA40011@freefall.freebsd.org> To: missnglnk@sneakerz.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21266: MD5 checksum out of date for cyrus-sasl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MD5 checksum out of date for cyrus-sasl State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:50:29 PDT 2000 State-Changed-Why: Do you have any idea what changed in the distfile? In addition, have you discussed this with the security/cyrus-sasl maintainer, hetzels@westbend.net ? http://www.freebsd.org/cgi/query-pr.cgi?pr=21266 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:54: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 02D7137B424; Sun, 17 Sep 2000 11:54:32 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA40704; Sun, 17 Sep 2000 11:54:31 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:54:31 -0700 (PDT) From: Message-Id: <200009171854.LAA40704@freefall.freebsd.org> To: jonny@jonny.eng.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21284: New version available, old version unavailable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New version available, old version unavailable State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:53:53 PDT 2000 State-Changed-Why: Update committed, thanks! In future, please submit your port updates as unified diffs against the existing port in the tree, rather than as a complete new sharball. http://www.freebsd.org/cgi/query-pr.cgi?pr=21284 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:57: 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 8FB5537B424; Sun, 17 Sep 2000 11:57:01 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA41112; Sun, 17 Sep 2000 11:57:01 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:57:01 -0700 (PDT) From: Message-Id: <200009171857.LAA41112@freefall.freebsd.org> To: jonny@jonny.eng.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21285: Old istfile location unavailable, new locations added Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Old istfile location unavailable, new locations added State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 11:56:05 PDT 2000 State-Changed-Why: This update does not apply cleanly against the current version of the port in the tree. Please re-verify the changes, cvsup your ports tree, and provide an update by using unified diffs instead of a new sharball. http://www.freebsd.org/cgi/query-pr.cgi?pr=21285 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 11:59: 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 22B0037B422; Sun, 17 Sep 2000 11:59:05 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA41536; Sun, 17 Sep 2000 11:59:05 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 11:59:05 -0700 (PDT) From: Message-Id: <200009171859.LAA41536@freefall.freebsd.org> To: cj@vallcom.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21303: Update port: audio/teknap Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/teknap State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 11:58:53 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21303 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 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 60FD437B424 for ; Sun, 17 Sep 2000 12:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA41710; Sun, 17 Sep 2000 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 12:00:02 -0700 (PDT) Message-Id: <200009171900.MAA41710@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Robert Watson Subject: Re: ports/18083: Gratuitous Apache package inconsistencies Reply-To: Robert Watson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/18083; it has been noted by GNATS. From: Robert Watson To: ade@FreeBSD.org Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/18083: Gratuitous Apache package inconsistencies Date: Sun, 17 Sep 2000 14:54:19 -0400 (EDT) On Sun, 17 Sep 2000 ade@FreeBSD.org wrote: > As has been discussed on numerous occasions on the -ports mailing > list, and elsewhere, a number of individuals are working on > a complete revamp of the Apache ports. > > Since this PR simply tells us what we already know, without any > suggestions as to fix it, and given that the PR hasn't been > touched since its inception in April 2000, I'm closing it. I was a little surprised by this response, especially given that it took eight months to see that further suggestions were required, and for that notification to involve the problem report being closed rather than a request for clarification. I felt that the problem description for the libmm dependency problem in Apache-modSSL was quite explicit: an actual library dependency was not expressed in the ports Makefile. I do not know if this has been fixed yet; if it has, it was not noted in any way in the problem report. Similarly, the comments on the consistency of {directory,file,daemon} names were pretty explicit in terms of a suggestion for improvement. I assumed that the best replacement names would be known by the ports maintainers, it was a question of deciding to do so. If a more specific suggestion is needed, then I suggest the following changes to the Apache-modSSL port to bring it in line with the main Apache port as an interim solution: use httpd as the daemon name rather than apache, use httpd.conf as the configuration file name, rather than apache.conf, and use /usr/local/www/data as the docroot directory. This will allow users switching from Apache to Apache-modSSL to see a consistent file and directory layout for both, making it more in line with POLA. I'm glad to hear that the Apache port is being revamped, but keeping the problem report open until the problems are fixed would probably lead to a greater sense of confidence that problem reports serve any useful purpose. On a similar note, if further suggestions for are a fix are required, indicating to the submitter of the report that this was the case, rather than brushing them off after 8 months, might also be a good idea. Robert N M Watson robert@fledge.watson.org http://www.watson.org/~robert/ PGP key fingerprint: AF B5 5F FF A6 4A 79 37 ED 5F 55 E9 58 04 6A B1 TIS Labs at Network Associates, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 12: 1: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 A669E37B423; Sun, 17 Sep 2000 12:01:25 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA42033; Sun, 17 Sep 2000 12:01:25 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 12:01:25 -0700 (PDT) From: Message-Id: <200009171901.MAA42033@freefall.freebsd.org> To: mb@imp.ch, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21313: vmwarIPv6 and vmware2 panic: Fatal trap 12: page fault while in kernel mode Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vmwarIPv6 and vmware2 panic: Fatal trap 12: page fault while in kernel mode State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Sun Sep 17 12:00:09 PDT 2000 State-Changed-Why: All I can suggest here is that you contact the maintainer of the emulators/vmware2 port (vns@delta.odessa.ua) and see if you can't work out the problem between yourselves. If a patch becomes necessary, please have the maintainer submit either a new PR, or attach it to this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=21313 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 12: 2: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 DA28E37B424; Sun, 17 Sep 2000 12:02:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA42211; Sun, 17 Sep 2000 12:02:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 12:02:11 -0700 (PDT) From: Message-Id: <200009171902.MAA42211@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/21324: mysql port out of date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mysql port out of date Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 12:02:02 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21324 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 12: 6: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 0E81237B423; Sun, 17 Sep 2000 12:06:18 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA44562; Sun, 17 Sep 2000 12:06:18 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 12:06:18 -0700 (PDT) From: Message-Id: <200009171906.MAA44562@freefall.freebsd.org> To: naddy@mips.inka.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21326: update www/surfraw to 1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update www/surfraw to 1.0.1 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 12:06:06 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21326 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 12:11: 6 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 6EB3937B423 for ; Sun, 17 Sep 2000 12:11:00 -0700 (PDT) Received: from cobra.lovett.com ([10.0.0.3]) by hub.lovett.com with esmtp (Exim 3.16 #1) id 13ajq3-000AKF-00; Sun, 17 Sep 2000 14:10:55 -0500 Received: (from ade@localhost) by cobra.lovett.com (8.11.0/8.11.0) id e8HJAsW02830; Sun, 17 Sep 2000 14:10:54 -0500 (CDT) (envelope-from ade) Date: Sun, 17 Sep 2000 14:10:53 -0500 From: Ade Lovett To: Guenther Schmidt Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: nautilus-0.1.0 Message-ID: <20000917141053.F507@FreeBSD.org> References: <39C50B9A.D4F7D923@bigfoot.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39C50B9A.D4F7D923@bigfoot.de>; from guenther.schmidt@bigfoot.de on Sun, Sep 17, 2000 at 08:21:15PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 17, 2000 at 08:21:15PM +0200, Guenther Schmidt wrote: > I experienced some trubble installing the port. There seems to be a > dependence that is not included to the rpm port. I've just committed a fix, brain-o on my part. Thanks for the report. -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 Sun Sep 17 12:25:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C398F37B422; Sun, 17 Sep 2000 12:25:58 -0700 (PDT) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA48021; Sun, 17 Sep 2000 12:25:58 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Date: Sun, 17 Sep 2000 12:25:58 -0700 (PDT) From: Message-Id: <200009171925.MAA48021@freefall.freebsd.org> To: rwatson@FreeBSD.org, freebsd-ports@FreeBSD.org, rse@FreeBSD.org Subject: Re: ports/18083: Gratuitous Apache package inconsistencies Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Gratuitous Apache package inconsistencies Responsible-Changed-From-To: freebsd-ports->rse Responsible-Changed-By: rwatson Responsible-Changed-When: Sun Sep 17 12:24:04 PDT 2000 Responsible-Changed-Why: The Apache-modSSL port/package is going away as part of monster-Apache, but fixing these minor inconsistencies in the mean time might be worthwhile. Ownership changed to MAINTAINER for Apache-modSSL. http://www.freebsd.org/cgi/query-pr.cgi?pr=18083 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 12:30: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 D765337B42C for ; Sun, 17 Sep 2000 12:30:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA48596; Sun, 17 Sep 2000 12:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id AFFBE37B424 for ; Sun, 17 Sep 2000 12:23:19 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8HJNIV02635 for ; Sun, 17 Sep 2000 15:23:18 -0400 (EDT) Message-Id: Date: Sun, 17 Sep 2000 15:23:18 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21334: update port audio/spiralsynth Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21334 >Category: ports >Synopsis: update port audio/spiralsynth >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 Sep 17 12:30:05 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: from the original PR (http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21053): - comment out author's site, because it does not work with fetch (redirection to another host results in 404 error) from my follow-ups to the original PR: - update to version 1.6 - remove unnecessary patches/patch-ab (Makefile is generated) - remove all other patches (author incorporated them) - remove erroneous credit to NetBSD >How-To-Repeat: N/A >Fix: Please remove everything in patches/ and apply these changes. diff -ruN --exclude=CVS spiralsynth/Makefile /usr/ports/trevor/spiralsynth/Makefile --- spiralsynth/Makefile Sat Sep 16 19:02:05 2000 +++ /usr/ports/trevor/spiralsynth/Makefile Sun Sep 17 19:08:55 2000 @@ -1,16 +1,16 @@ # New ports collection makefile for: spiralsynth # Date created: 2000-09-05 # Whom: Trevor Johnson -# based on the NetBSD port # # $FreeBSD: ports/audio/spiralsynth/Makefile,v 1.1 2000/09/16 19:02:05 will Exp $ # PORTNAME= spiralsynth -PORTVERSION= 0.1.5 +PORTVERSION= 0.1.6 CATEGORIES= audio -MASTER_SITES= http://www.blueammonite.f9.co.uk/SpiralSynth/dload/ \ - http://jpj.net/~trevor/freebsd/ports/ +MASTER_SITES= http://jpj.net/~trevor/freebsd/ports/ +#real master site works with lynx or netscape but is broken with fetch or wget +#http://www.blueammonite.f9.co.uk/SpiralSynth/dload/ DISTNAME= SpiralSynth-${PORTVERSION} MAINTAINER= trevor@jpj.net diff -ruN --exclude=CVS spiralsynth/files/md5 /usr/ports/trevor/spiralsynth/files/md5 --- spiralsynth/files/md5 Sat Sep 16 19:02:06 2000 +++ /usr/ports/trevor/spiralsynth/files/md5 Sun Sep 17 19:06:56 2000 @@ -1 +1 @@ -MD5 (SpiralSynth-0.1.5.tar.gz) = 7c2cd6fe828ef52e9127425301b9bbef +MD5 (SpiralSynth-0.1.6.tar.gz) = f0f09a54a3291684d69f3710544c54f4 - >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 Sep 17 12:30: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 76CF937B423 for ; Sun, 17 Sep 2000 12:30:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA48583; Sun, 17 Sep 2000 12:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1B6CD37B423; Sun, 17 Sep 2000 12:22:52 -0700 (PDT) Message-Id: <20000917192252.1B6CD37B423@hub.freebsd.org> Date: Sun, 17 Sep 2000 12:22:52 -0700 (PDT) From: O.Hodson@cs.ucl.ac.uk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21333: Update port mbone/rat to support newpcm mixer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21333 >Category: ports >Synopsis: Update port mbone/rat to support newpcm mixer >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 Sep 17 12:30:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Orion Hodson >Release: 4.1R >Organization: UCL CS Dept >Environment: >Description: The port was suffering bit rot deriving from differences between the previous pcm driver and newpcm. This replacement port adds newpcm mixer support and brings port upto date with the current rat release (4.2.9). [Apologies if multiple copies of this request are received - no ack or bounce from earlier send-pr attempts, nothing in mail queue and bcc to other mail account worked fine?] >How-To-Repeat: >Fix: Please remove ports/mbone/rat and replace it with: begin 644 rat.port.tgz M'XL(`$HSQ#D``^Q%WM()UU[_>Z;1VFTV`1J/>:?ZY_G_$-5O_L?6] M]-VHUSOM]I+UWVW*]=]%[T=#P?7?:>[\`/7OQ$_J^G^^_N>7)WVHC?RQJ/FC6AB8-=H://$P M,<\='-[W+BSZ<]LZZFU"9NS9AL_*7 MGG5`W?OE>VA4F\T=IEBK[]?J>]#8/]C9.VBT8&H:IAE.H/LX@;]LEK*#.O$@ M9*VQ>]!N'30;/,A_'*E!L`G'_N0I<.Y&$12.BTA\?Z="X^#6<^Y%$#K1$W9Q M77$GX,SW+-_;A"/7!1X20B!"$=P+JPI2WG9SO]S80YGI2[/%X>+\1B1@.D$*XM&)JO#1'WW:+/&` M"S\2!S#TD5LK(,VC7B(1V(8I0BBX4R115G(4P0@$3*:X*!;VXN'#)Y+(=NZF M>(OXC49.B,R@0L/0&:+8#R/'#2-@2D#:P%X\5"EG;."$^`='"@B-L0![ZIDL MKFG@@L?LH,INB/C8>))3!\+XC+>Q/\I,M]^1%,2C)Y#[T`B>8"A,8QIJY?L3 M$;`FF0#2\OR(^`^=,!)>A+VC!R$D*]&#GU!%E4SVYO+D$CT'V1!//^$TMC!H M9DEF.,7EL(SQV(E>2/^B(6@A88@+*XW$\;62)X&/RAF'!YL5,M-`B'?]$WT3 M20&*W_>GGO7.-9"W@-Q\9.!ZCTDG#X&#"SJ!_QF5C4QJ^95)2`FJ[,'O9"?E81/3D)YE6);R:*G6 M>*5H.3E^D/T@PU5F1T_0JC:`:*BU\-7:A4*,20J2&I7P-/8#(:?O3[U?'4OX M5^XT3$V"JHB'\S!<4;0N]XG-5.A5P/&;Z8T"8R<[3'6T-,;/NL6;QJPI9^MH MK[=U)&C,;R#["S:0VO8FP#:<"-OQA/)P&Y[\:0#'X#K#@#R-M.']%*&!W6.L M"5TA)E4:MEG!H;Q'S.;FG:)15QM%LU9'%IH']?9!LY79*$J+!C=R=IEF=I>! M[=HF_(@.(&RXZ'9/!K?]LV[W*MW6O[BZ[EWRP[*KG+T>_ M=@?]][W!T>U)[S+=?'5\E-=\=MN+^Y>2-RZZ'ZZ.S_.&7/;[>,$/F:]Z%C??R$&3^&N"UI MI6I>MM&=/66C.PR?Z@>-!D&\%'S:.L3HG3=V?[5]XUCX47BH<5J4'*9Y<4@L MB31@2[K08.HYC]71%NN@V2QWH(1_2RW,^BIVL-M+V["RG6=&X$Y$: M.S!Q4X_6ZNDAH%K<4;*%^Y:WJH_I^N%*0E:`.&YE)P83JWHAMK-6]6$`LZJ3 MYWN#H>N;GU=U7*L3XNZ!<[>&E'?K=B2*_KH4U^JHTX?5RXXN0/.OU_%NW8Z6 M0#COYMEW3N<5EBR[.NMRZJS+J?,<3IUG;NXBNWK[.6Z:V9'U\TY^WKG M.?MZ3&=^=V\G(2Q".,2PC582Q%+Y0^^UL405F28E`#[EX3*ENG:^?/%_"C,Y M6HQLSWW4E2,3;IW;J#2F\+>I^\3\%*O4E^=/E#U,+GMT5I8]<%1>Y4/!V]\1 MMVA]2`2B$?9N#5%Y@]7;W)]#(*4E%)HY&*;U'3#,3J/<;"-HWT<(0$NM1)8& MC2LY1C/9YG*/^E6&;5GWF?V.QA/UXS`F$'K6P#0FQM!QG<@15&U!*\&6\*,$ M!^='?Y?.-3CI_MH[[O8_'5*5""7!%)`*(O@G1&L&\B=L\*BHDBPR:*-J/Z9S M7V#;HG2*<,YUC;ABQ%MBR/..<#05:O34$=IB@9-=::5X MBXG@A:FRFOU)1.@,^$-7E3P[,,(HF)I4Z*!Y/H=DZ4,!'WI7Q9B39C'F?Y93 M1W!T>GXS.$54J4;5 M2V7:&.EF\QQ299.;-E,PF36G4)L(S4$$",JR;F6/HVR;CVW%3=QG.`S7ZV5T M_])>G3+K/&2>`-J#WN7QS9F:T[;*_8L3_#TXZ5\-KKO][DVY7B0/@XT-]+%C M6B*TH\#*Z)5-&.U[%L256GP/G8#TL+&!:U68*?K-&SC%U+<+KUY14-P@M@HS M;S>L3U4I7`BOLM90I-'U(J%_2?;Y`U$>GA+L28#+8!?""%6T5M/!N\Y6@1<:?T/C_)$*9L0Y!&>34R-=92;C/` MB4_%/`J:LG+/!7JD;AIWW4-)E(3#EKKZR>5Z:7)?YP7. M:;*EH=K%A'Z^4@C;L,1P>C<8AW>%K:-D41W9>QFBY9>5#\\$2+B41<*Q5/E06*UO&@-7B0R36A<$Z_[/!\&E M12"XQ+49X/+,0A!<6@J",Q!6JT+6F=>"L*65$+:4+(AE(.S\G0?':S7GJV@8 MO*.GB0AS[V`T6E5W2]P;B[$?/&4:V:^X+='Z>FR8(\<3M7AOJ8[>4@^M4]+F M-J?(5&P*6:>H@(L3!8H'9T?ONF?]PW@$`0W@I+H,OOP@`#OKP+@;8^Y@8@3& M&"9&XA9C4>X1.E\077])T]7(`7FH-`Y9$$L^MK@^NAG<:*!>>"SB/HU_(8A& MNZL!(_ES1+1Q?\4\#L&1B?ZJ)X[!D<7D#,D\7`$9A#!@CO&O>\,M2K0FMS>Y\;]TI7(@PQX/H0IGD3GF M?*0T5ZG^]H2DE*C/(_%6$\?K"]/S+FPDB0M!%*[TQT[[4Z+3[!OF M@"*($%?#6S0&2B3PZVN0:((VF5!A>TD'05P-/VK,Z$L+,8NV7X2X4@&:.\V_OG*B:9P6PE'O\OWQT5497J52@R)C MS82^9G=?8N*`P$D@`QYR)4,CFT\ZN=!]UB)E/*XF93RN(*73&=+5X\OZGONX M@)[JF%S"'!-)$\=T@??)97RJ/BO8Y(5#+E>R*3NNH,:A;QUJLN,*:JZPI2M+ M:NV%U*CCJI5E7+H&+>Z8;[OH,WW,)B;RC!G7\=0Y,Q61XO-;>0ZD(@D%K)H%4*W!2+7EV@+`.21=>38PRU)%A7%;?+DR,8EYGAB-SDS1SHT!RS(NE MZ7C_IGO=O5Q*1%^9:L?62:+,D:A4`IU=$O["*L?*>>:?9,KRQ\J!Z;+(PNY? M%]^:&-5`F'HC0IM*Z&@)11PV<8TG/6[5L*]Y1A@^.)$Y4BLL/-.G:F'NNE!. M3WAW@`'W]B##\[_4Y.>W".0_'(+*XY<2.5I$Y$C26$VDOWD47S[PN11>?[*Y%%Y_M+D4GGV MVN1166-QLDV:$NWTOX M1?+(V[KF?M#&%,&4@!^A>P$+1'+XOG"?'+*146%3SE2K?,`0"-:F\<#E%-/U)> M$):AT7'#(6Z/X/IW34X6>';:O35"(HI:W,,U_DBSYI7N,@6 M2:3/$(;.CN?A%7T]>YO-R106=5VQ$^<&6D)AE+)JT.5X,G(DGO(%HD))DGYL MIT\PS[.Q38_99B>KJP#'1B#LJ2L?!=J!$'Q<6LYDA`KYR=^Y]$Q_ZEKT(#4N M&LR2_\231+D(UC0@\OQXMYI'+F=99N4#U&TR'Z8C6`P+%H+")"MH3G0N;:E% MI:B3+@JODC3RYLF)OJEIWT"J_/%<\?PEXJ7J+-\J7XK(F@*F)YZ3,),CEPGC8]>`>$9Z4$7X6G;B.AM$#_7'N7!?NF+_.1H MD9W%;*:+.`7*D.KYNP"=B4I$/EV2Z+3SQ%*NKIXDQ>J43\+X(6OV*2D_8-HZ M9HJ4=.?NP0MO#J3L-1\J)Y?LYBVPA.=T"6Y@.N)")=#ZF*I=47IT$ MB(8F?I@L>\Y7-.,28=:]E\*;T][EQ77WZ(2@;""28J^+BN2)#SGI<\?V_W%Q M_)RA26Y1'\EQ";?0KW"AT@\(>E;>ZJI:K,GDR$S8XT?WJB2#WXMI9:9\]JLJ M@&>7FT/8\O5&^_D@Y$D7<2_?>8OQ3>+,R(L49DA-/F,_&8@7L)20,5&25T:W MS2*3I5&W`2/UN3H\6+XGRES986H9&W5%,K20=\B7#=%K8>0_P)C*TDR9@!T= MUR`B"*QL@GZ.S4L MW@,LW*4UN[$-HHHR")G>JQ0%OO&:ILF-=K%2<7#&&@L43K:+O$+$984GR2@45]OLZ9%%%<;%*,P*>Z7-*H-?K*<9GR1CZU>3^W=WL7-]:('+I>Q]X;RI*@3RCR#*Y]#]38G M54##7)0&JI+JFYCP8#)GN$AO@B"-\A(V!'()@+X08W6>,Y<,LOJ`F38G2I2& MF*XPB#7U3F\P]>AI5)E8]?*3'-S[*'&1\0<59CA4]P8#;/%`#]!Q>DHM51Z& MMW+)A)I/&_/6:EX6G)L!:4#795!+*S'CI;HE0=_?G%Y\>[L\OB_5*FDN+;$JZ1=(BG` M(EF3,?E9D69^T'^B`"`-I$X@!,(<&^%G62VC;X>9'!> M08MYX^,^Y[V_=Z\'M!/B7\?G1WUB4'&ARFP4&54+O-+#L"../=8G:/F1SYO, M3?+59`JH>S78B7DOA$)!MK[2HJ=.YJHAKU_K083NOSY+JI/NKTHJI10.(5J] MR(UJ1@[^/9/RWPE)4"]GW5]I5`)5ZE'\(/11,Z]_QN3E;UGHI-.-:ICZI5=; M_M*#8M^8V46\ZOQ"TX!?+^)EEQJ;+3P!EWH9Z%3GS`"4IL=LQ%*Q'NW[V/** MJI\-&57Q_ENE9ZEB%:>\)?S0"VY>-&*.!C1CS)7<[CT5P&&H$:6D2NY:>T$:]2F=D&*&$]>3A"3J.<.9?(X4S0F#,= MF=[3/W%!6]V][]*[`O>&.U5O:JA_^R+@0\9UC/CZB-F",!6_,CB/D4@I.$$B M.LOI$.+=Z0-WST=$&XKG-T2-Y-Z#?]%7K7CEBU+Q_H1/GF#3XL'%F,/1# M6X<>+==GH3O.PJ!TQP_7O9MN08XMHC]*!I=D3G>+=/9[JVI>&W1]?XU0@,I5 MR,PFTR<:U9J2U]HVBH0VVGU$;&-2RF7S*5DZ$Z#ME6R1FB@6FDG@Q]3E5-AWAYH/K M7#"6QY`38JD740?1=BXOZG:^NSO68SHPYM$%@VQY(QLS4Q(D8^C"D*QE*?.\ M1-.85/5>/`N)AXGS;MB!WT*'K9)+L0G>$;#5%? M"!+E5/`!;K(OEW,11IDG,-P,K#%9__>KJNZ>[P%-C+MW1[\$<*:[^K.ZJZKK M0X)<<2GHH3EHDQ,DPT/WN,A!"0W%HWOVX#9+ZB_89(D>Z66;4&;)C!N/WV,< M$S'I<(AXWX%I#>FXYI<9/DB2@P[!2S)HH.0'"POM MJL5%#=]DAGQ7<:C`>-Z&`_7N"]@8@>=(9W_#<>5CD3F,W/?2UG&(GH: MASHJV4R"$G_4((UTFH'3&RD1Y=[$TNG%U#:NI^1\<)Z1T+D)CV\)W+M[0M"" MP*UK&65'ED1_`.;%'93?>AS_M4VK\NT!84EHL'O'-IG"_L?-IB+V>O_>@QE5Y!V9Y3L9OC"MV@D_E) MTBOWAN,C:26#R^0JB5LKJ&O+X95MOOB8TW]DE-?L4_[KM4.VZ36;0FK,OS] M:1ET[/>,^K1:YUXFO\B0I5\,,U0=_+*Y5HLT(:+J']P6I\?"&CTVXT.LT;GI M=]@<_#[BTB9"1HZ.MP8I@)0&>*3Q-Y)Z=0NZ>9(^!EQ[9CJ@ MHRY1I.5W&(&"KM<"V",I1\CBD(AT51D%`"?%OV\[!*"$1TS"\#,<"&1'AC^% M(5G4,I&UTV1#WD]+-PE4C/&()=\)7[MTNX966>(ZCO1(9!'&\`(/,4YF\K^10+G@(L^/7G:GU8DS4@Q<3GBM%$-W$T!N MQ#"I<>PIYZ[\;>56>M]W%X`F*FF#+T8#)BVRK_!J<]/K+X0(;P/%R!*60*28 MQG@D?D;&Z8=WC`VATN:E!Q-1V1P'#>(V))9>CC0"_8Z9"#"Z$5/Q7S49G'!> M-1MRC)`F.<"Q1CO`K@2G86'Q[UFD?=FJGD`%8 M&'I2.^\=M3M8HFVAXOF1.;2YQPRB%/1(+=P[< MWP0N"+1%$"6\ MK_U"QAB'I M[^Q3G<31_8A1%*&J7I6W7L'`PY?PAYI(U,XOVF__L9=,\1^>:#>:F:0,=>!Q MW\%:3OMQ,`,OKPQ%36P$G&G"HQB@W$,S@%6#4#TH#)P]@,384,+](PI^A/2- M-KV!.9GUYQ3@R>,7CD;&1M^>5)Y+BBYU+&'['!&3!UL>=@S=-=(QD),Y7&`=MP9P>"3E(\YN16\#W![T?G-9[TE6 M&M8 M%?^W6,C)^+_Y8@GC?Q9SY=(Z_N-S)'ENVT.KH,W&BVMC"H>+AE'WO`Q[KG=Y9MO;KF:+. M37-<19K@UT:GVVRWE$WY1&1%*A^S*VQ@W9OE"DAUYP/([Z?1 M_;DKZ%_894ZYU_S-@NL]?P/->QWG(4.]3Z%->5!$>4UG3&%JQF,1-!3#-9+E MK_>QAI"`RM4'\YAR0,X2J3Q#X-4654TP.%=N M4&@-`K09`ZCP6$#,!03O<,C"<7._)RGLK-9IM'I[O^N#DO/CE=T6%T;UHMNI[J:^\V#UV2X4!XJ].FF\C7FW& ME2KP5U&E"GC*`/E;ZQQ>O&_VCM+P>,N5!R+Q^Y$Q5<55I\*[/1@A]ZT-B\JX MNF/(C,FPM;V!?Q%\VA)AV\HD?:$O6MU//+X;[$"?Z2)0QE0P94SGZQY:#CP+ MMPV$WQ(+AH:%ZT0ZP(:]??3D#5-1^DA>]5-B?AR4Z/6?JD*4,]AJ9KRDRHLYB,FC^BL4_H^E4NN:FIJ+#"NHU:IWY$!=*P1BZ:&'Z*B1[C5PY]M2S/6*`O M0&YHH+^2.PRSQQ+T1CU)?17/[UGJJ]O0>Z:.)QG>G5)E:P>Z0U_$FJ//*P78 M6@R'T3L.XM&-0+[C(!;="-2++%&@%Q$EPFAW$X]U-WZDB\:ZFRBD*Y8I\"7_ MXD>*7`6$$5OL`^YV^+V8&X@BPIG"_$8;/?DFZ"P,/E8Y'VHWA1/VK4CYNMPS0"3QE9')*,%U^#,:3R64?8U"JB M,O75^S=V*5"%`TWKHQS,VYPDCH4G.W3#R8UY/SEUTI'M\3IU97!:R`,<"*"V M([QB5^9X;-[B233JCU&:#/S8M6[;U:0+CFY?,NQ$7#2($.4"B?6A%LAZ&_('9 M$#%3:?$&T,WWAM"""\NQ//_YAIX!=LAG\//-6C04E2+P_^JIZUB!_\5"Q9'_ M%+8K)<3_?&Y[C?_/D:+P?V;!S\\1\6V7[0`>`5!17(&Z.T`1PYK#)]\!:H+B MWV-]2V&=6@M.+,)4_C.\1VQB#*JSQ!X&3C)F<5L&B]TRJ`T4'7XS7Y"M2+R! MDQKJN6?)0W[AB40-:6.:4XK5GGCC"#&RVLNL-P:3K#_Y M\7@W5]!(UJU9\YFF:OX65IE?E*YL+BN;2O.>AHO%=`IR,9XIZ M`$]08YK<;)$#5C_P)'0O]290_J#-6NT>:QPT>ZQWU.R2WBSDI*Q<[+]-%\6E M'?BB85>!UE*M*S9`9@P_5*<_*MT)!!\ND)"6U&.5P0=085I6/%#M$5,GK%PN M,Q68(EE*["VI]"6&'[4R#R@B:G]4D87AKV4SNH@-66@-9Y8W\G'%0PU^9/%@ MXUFH>`FV;2@RZ4^S\#^/2@A:'HM,^E3$\S2^](.6,L#DVTXFJ\\'>+.4Y45L MJ7&P0T*:_([D/A.#/S`X[#6JM2`=K_Z.#LHD*G(!9-+._E/+JMGKY.^XAMRN MI]+M;N^WLT9&@]U?N_Y29=Z6>`8H,-BP)O"X&%S%P6*HRG_:T%ZRT_9!E]7; M9[]UFH='/1+!UDY.M-Z'GM/(A]6Y=`"#Q-'?K'E.7I@OQ/O8AL$<0);K+\:, MJ:_B,JWO]YX\1=!_UT]=QRK^KU+8%O1?OK(-&Q;=_ZWIOV=)DOZ;H*7/P)S. M+7.L#;1+R[S1IY>AF[U"I2K4.!TJT%\RG+_HT=8KEKAD6DC0)$75:!VBAB.& M)F0L"4!I8]'TSRCVD)GJ[5:OTS[AN3"3?(_&88HJLYTW!1Q,F$U-;FQX2+:- MC21L8DFW0*CRB`+4GJ1K$Q.N!$%NQH,4`!A7/\:SR(W0^:YV?M*[Z/3.+L[: MG1XKYW*EY]OF"/]OKK,_L@Y6RB%:Q^(__B'XOU*9[O]SY0+@?_E'-DJF_W/\ ME_./LL-&J_=#ZEBU_[-*F%Y*L"H&JL1SKO&-0`W5=#/>0._M94."QCUI_.4;/>T@?S\1VI-\E< M?79MF8L97C[Z,J-K;(7?_;&)LX517HV,LMF5WI\O+'0.I',U_;Y-]X>VS2;& MW+BF:T1EHJ-7&\-V/+@/=!X=BW+SWEGZK&]`GR#KU/@W^KN=FV0ZH$]M&`8% M+]'1+;T^)_!<%6ML]J'\L#^CVTKRV6?/S*E-[NY&)C1VIEMD80>CIBG*^_?O MJVPTG\^JV>SM[:V*5B&:]R8R2]TD.C)KFU?SV[ZEDU'(]^W&$O_/3IK='W/Z MK\9_X/H<^J]`_%^^5%SC_[,D8/%P%2GB&X6M\B<7>`6D<=D5PBCE#>"Q-6%! M(9[_\9J"^+LD[SW.CZIC!?X7BL6\Q/]*:9OP']C`-?X_1]I@+?V6<4OP`7H@ M(0-O-A%+`F,_5AE=M&^P`SST!Y:.]T75!'KHI^M;]H_%^`Y]FKR"/.]'Y@3? MB9=MC3M"\8<:27M]I&24#2B7>F?I^MON096W)3NY-*?\?).KDPP>I;UC)5MX MQ7+;>"M9S#'STC*`6.#FCAN*@G(4%+[L);#A^)>0Y>PE2EI!>Z74:[W&8;O3 M;'3W$E03/^J5TQJZJ[OH-GOXYIN.8ZH@R_ZI)!*IKQYX%R?M>NWDWEL%JNT< M-#M[B<',Z'_YTE?@9;/5@_\->!@Y=(IRTGR+>D6-U@&T$%7BM'PU]17[V`58 M]]G/^3R9S]P8,(KX7E'.NXV+VGFO76^WWNTE[G2;GAR>UHX;_,_36BN_ETCP M>QSXH]X^/>LTNMW&P5YB:L)XUGKU(ZCU[?DA+Z"@?.SM>?/DX`(JA88(4@R' M6QF:JKRL4V`,Q,W"A?"9@PI1[SO'W4[]GL8+_L,3J.Y=\\-]5AY'#RI'EQ'! MHGB"/:RTN#T+`>#GG@<&C,@]"P`(7(FY4.0+!'!ZC%,"+VGNW]:ZC?O0[9:G MGH-:KQ9L:/QQ^U+C0[<$-DX%JM(-82*02AV2'NE7_^3=OV9#D];K8.BI/)4: MHMNVU%=:)Y`)20(0>" MKE(9;!E\*=\D)!7E"9`(QV;)Z(A$6B5W^VQDZ5=[24<`E]QW?NYF^_M):E1? M&9O3:]WRMI;WZ1`%-030`:5I6?CGP>CD_MR<2>5M3N?-89(0/$)7^LQ>3":H M>PUC@*$H`>)"!/(-DH6\5J4G1PDZ].^%@4(6,?AI.\.2'W`1[%34HE;4*N@F M:*Y_GJLY+9_3BF5VC:0EO-M^!<>F,-32BHR;CFC%)%DRX9FE/;ZN&'#60K1< MSJ=WM'Q#Q6!$4=H$2X-<@^(H*7\JRT:7B4G@@^P?8&4WRYRelease-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 Sep 17 12:46: 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 EC50A37B422; Sun, 17 Sep 2000 12:46:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA50759; Sun, 17 Sep 2000 12:46:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 12:46:07 -0700 (PDT) From: Message-Id: <200009171946.MAA50759@freefall.freebsd.org> To: jonny@jonny.eng.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21285: Old istfile location unavailable, new locations added Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Old istfile location unavailable, new locations added State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Sun Sep 17 12:45:09 PDT 2000 State-Changed-Why: Closed at submitters request. It appears that I already committed some similar updates from another PR whilst in steve-mode. http://www.freebsd.org/cgi/query-pr.cgi?pr=21285 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 12: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 7BE0A37B440 for ; Sun, 17 Sep 2000 12:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA51292; Sun, 17 Sep 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 12:50:01 -0700 (PDT) Message-Id: <200009171950.MAA51292@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Orion Hodson Subject: Re: ports/21333: Update port mbone/rat to support newpcm mixer Reply-To: Orion Hodson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21333; it has been noted by GNATS. From: Orion Hodson To: freebsd-gnats-submit@FreeBSD.org Cc: O.Hodson@cs.ucl.ac.uk Subject: Re: ports/21333: Update port mbone/rat to support newpcm mixer Date: Sun, 17 Sep 2000 20:40:49 +0100 The uuencoded file got corrupted in previous transfer. It should be: begin 644 rat.port.tgz M'XL(`$HSQ#D``^Q%WM()UU[_>Z;1VFTV`1J/>:?ZY_G_$-5O_L?6] M]-VHUSOM]I+UWVW*]=]%[T=#P?7?:>[\`/7OQ$_J^G^^_N>7)WVHC?RQJ/FC6AB8-=H://$P M,<\='-[W+BSZ<]LZZFU"9NS9AL_*7 MGG5`W?OE>VA4F\T=IEBK[]?J>]#8/]C9.VBT8&H:IAE.H/LX@;]LEK*#.O$@ M9*VQ>]!N'30;/,A_'*E!L`G'_N0I<.Y&$12.BTA\?Z="X^#6<^Y%$#K1$W9Q M77$GX,SW+-_;A"/7!1X20B!"$=P+JPI2WG9SO]S80YGI2[/%X>+\1B1@.D$*XM&)JO#1'WW:+/&` M"S\2!S#TD5LK(,VC7B(1V(8I0BBX4R115G(4P0@$3*:X*!;VXN'#)Y+(=NZF M>(OXC49.B,R@0L/0&:+8#R/'#2-@2D#:P%X\5"EG;."$^`='"@B-L0![ZIDL MKFG@@L?LH,INB/C8>))3!\+XC+>Q/\I,M]^1%,2C)Y#[T`B>8"A,8QIJY?L3 M$;`FF0#2\OR(^`^=,!)>A+VC!R$D*]&#GU!%E4SVYO+D$CT'V1!//^$TMC!H M9DEF.,7EL(SQV(E>2/^B(6@A88@+*XW$\;62)X&/RAF'!YL5,M-`B'?]$WT3 M20&*W_>GGO7.-9"W@-Q\9.!ZCTDG#X&#"SJ!_QF5C4QJ^95)2`FJ[,'O9"?E81/3D)YE6);R:*G6 M>*5H.3E^D/T@PU5F1T_0JC:`:*BU\-7:A4*,20J2&I7P-/8#(:?O3[U?'4OX M5^XT3$V"JHB'\S!<4;0N]XG-5.A5P/&;Z8T"8R<[3'6T-,;/NL6;QJPI9^MH MK[=U)&C,;R#["S:0VO8FP#:<"-OQA/)P&Y[\:0#'X#K#@#R-M.']%*&!W6.L M"5TA)E4:MEG!H;Q'S.;FG:)15QM%LU9'%IH']?9!LY79*$J+!C=R=IEF=I>! M[=HF_(@.(&RXZ'9/!K?]LV[W*MW6O[BZ[EWRP[*KG+T>_ M=@?]][W!T>U)[S+=?'5\E-=\=MN+^Y>2-RZZ'ZZ.S_.&7/;[>,$/F:]Z%C??R$&3^&N"UI MI6I>MM&=/66C.PR?Z@>-!D&\%'S:.L3HG3=V?[5]XUCX47BH<5J4'*9Y<4@L MB31@2[K08.HYC]71%NN@V2QWH(1_2RW,^BIVL-M+V["RG6=&X$Y$: M.S!Q4X_6ZNDAH%K<4;*%^Y:WJH_I^N%*0E:`.&YE)P83JWHAMK-6]6$`LZJ3 MYWN#H>N;GU=U7*L3XNZ!<[>&E'?K=B2*_KH4U^JHTX?5RXXN0/.OU_%NW8Z6 M0#COYMEW3N<5EBR[.NMRZJS+J?,<3IUG;NXBNWK[.6Z:V9'U\TY^WKG M.?MZ3&=^=V\G(2Q".,2PC582Q%+Y0^^UL405F28E`#[EX3*ENG:^?/%_"C,Y M6HQLSWW4E2,3;IW;J#2F\+>I^\3\%*O4E^=/E#U,+GMT5I8]<%1>Y4/!V]\1 MMVA]2`2B$?9N#5%Y@]7;W)]#(*4E%)HY&*;U'3#,3J/<;"-HWT<(0$NM1)8& MC2LY1C/9YG*/^E6&;5GWF?V.QA/UXS`F$'K6P#0FQM!QG<@15&U!*\&6\*,$ M!^='?Y?.-3CI_MH[[O8_'5*5""7!%)`*(O@G1&L&\B=L\*BHDBPR:*-J/Z9S M7V#;HG2*<,YUC;ABQ%MBR/..<#05:O34$=IB@9-=::5X MBXG@A:FRFOU)1.@,^$-7E3P[,,(HF)I4Z*!Y/H=DZ4,!'WI7Q9B39C'F?Y93 M1W!T>GXS.$54J4;5 M2V7:&.EF\QQ299.;-E,PF36G4)L(S4$$",JR;F6/HVR;CVW%3=QG.`S7ZV5T M_])>G3+K/&2>`-J#WN7QS9F:T[;*_8L3_#TXZ5\-KKO][DVY7B0/@XT-]+%C M6B*TH\#*Z)5-&.U[%L256GP/G8#TL+&!:U68*?K-&SC%U+<+KUY14-P@M@HS M;S>L3U4I7`BOLM90I-'U(J%_2?;Y`U$>GA+L28#+8!?""%6T5M/!N\Y6@1<:?T/C_)$*9L0Y!&>34R-=92;C/` MB4_%/`J:LG+/!7JD;AIWW4-)E(3#EKKZR>5Z:7)?YP7. M:;*EH=K%A'Z^4@C;L,1P>C<8AW>%K:-D41W9>QFBY9>5#\\$2+B41<*Q5/E06*UO&@-7B0R36A<$Z_[/!\&E M12"XQ+49X/+,0A!<6@J",Q!6JT+6F=>"L*65$+:4+(AE(.S\G0?':S7GJV@8 MO*.GB0AS[V`T6E5W2]P;B[$?/&4:V:^X+='Z>FR8(\<3M7AOJ8[>4@^M4]+F M-J?(5&P*6:>H@(L3!8H'9T?ONF?]PW@$`0W@I+H,OOP@`#OKP+@;8^Y@8@3& M&"9&XA9C4>X1.E\077])T]7(`7FH-`Y9$$L^MK@^NAG<:*!>>"SB/HU_(8A& MNZL!(_ES1+1Q?\4\#L&1B?ZJ)X[!D<7D#,D\7`$9A#!@CO&O>\,M2K0FMS>Y\;]TI7(@PQX/H0IGD3GF M?*0T5ZG^]H2DE*C/(_%6$\?K"]/S+FPDB0M!%*[TQT[[4Z+3[!OF M@"*($%?#6S0&2B3PZVN0:((VF5!A>TD'05P-/VK,Z$L+,8NV7X2X4@&:.\V_OG*B:9P6PE'O\OWQT5497J52@R)C MS82^9G=?8N*`P$D@`QYR)4,CFT\ZN=!]UB)E/*XF93RN(*73&=+5X\OZGONX M@)[JF%S"'!-)$\=T@??)97RJ/BO8Y(5#+E>R*3NNH,:A;QUJLN,*:JZPI2M+ M:NV%U*CCJI5E7+H&+>Z8;[OH,WW,)B;RC!G7\=0Y,Q61XO-;>0ZD(@D%K)H%4*W!2+7EV@+`.21=>38PRU)%A7%;?+DR,8EYGAB-SDS1SHT!RS(NE MZ7C_IGO=O5Q*1%^9:L?62:+,D:A4`IU=$O["*L?*>>:?9,KRQ\J!Z;+(PNY? M%]^:&-5`F'HC0IM*Z&@)11PV<8TG/6[5L*]Y1A@^.)$Y4BLL/-.G:F'NNE!. M3WAW@`'W]B##\[_4Y.>W".0_'(+*XY<2.5I$Y$C26$VDOWD47S[PN11>?[*Y%%Y_M+D4GGV MVN1166-QLDV:$NWTOX M1?+(V[KF?M#&%,&4@!^A>P$+1'+XOG"?'+*146%3SE2K?,`0"-:F\<#E%-/U)> M$):AT7'#(6Z/X/IW34X6>';:O35"(HI:W,,U_DBSYI7N,@6 M2:3/$(;.CN?A%7T]>YO-R106=5VQ$^<&6D)AE+)JT.5X,G(DGO(%HD))DGYL MIT\PS[.Q38_99B>KJP#'1B#LJ2L?!=J!$'Q<6LYDA`KYR=^Y]$Q_ZEKT(#4N M&LR2_\231+D(UC0@\OQXMYI'+F=99N4#U&TR'Z8C6`P+%H+")"MH3G0N;:E% MI:B3+@JODC3RYLF)OJEIWT"J_/%<\?PEXJ7J+-\J7XK(F@*F)YZ3,),CEPGC8]>`>$9Z4$7X6G;B.AM$#_7'N7!?NF+_.1H MD9W%;*:+.`7*D.KYNP"=B4I$/EV2Z+3SQ%*NKIXDQ>J43\+X(6OV*2D_8-HZ M9HJ4=.?NP0MO#J3L-1\J)Y?LYBVPA.=T"6Y@.N)")=#ZF*I=47IT$ MB(8F?I@L>\Y7-.,28=:]E\*;T][EQ77WZ(2@;""28J^+BN2)#SGI<\?V_W%Q M_)RA26Y1'\EQ";?0KW"AT@\(>E;>ZJI:K,GDR$S8XT?WJB2#WXMI9:9\]JLJ M@&>7FT/8\O5&^_D@Y$D7<2_?>8OQ3>+,R(L49DA-/F,_&8@7L)20,5&25T:W MS2*3I5&W`2/UN3H\6+XGRES986H9&W5%,K20=\B7#=%K8>0_P)C*TDR9@!T= MUR`B"*QL@GZ.S4L MW@,LW*4UN[$-HHHR")G>JQ0%OO&:ILF-=K%2<7#&&@L43K:+O$+$984GR2@45]OLZ9%%%<;%*,P*>Z7-*H-?K*<9GR1CZU>3^W=WL7-]:('+I>Q]X;RI*@3RCR#*Y]#]38G M54##7)0&JI+JFYCP8#)GN$AO@B"-\A(V!'()@+X08W6>,Y<,LOJ`F38G2I2& MF*XPB#7U3F\P]>AI5)E8]?*3'-S[*'&1\0<59CA4]P8#;/%`#]!Q>DHM51Z& MMW+)A)I/&_/6:EX6G)L!:4#795!+*S'CI;HE0=_?G%Y\>[L\OB_5*FDN+;$JZ1=(BG` M(EF3,?E9D69^T'^B`"`-I$X@!,(<&^%G62VC;X>9'!> M08MYX^,^Y[V_=Z\'M!/B7\?G1WUB4'&ARFP4&54+O-+#L"../=8G:/F1SYO, M3?+59`JH>S78B7DOA$)!MK[2HJ=.YJHAKU_K083NOSY+JI/NKTHJI10.(5J] MR(UJ1@[^/9/RWPE)4"]GW5]I5`)5ZE'\(/11,Z]_QN3E;UGHI-.-:ICZI5=; M_M*#8M^8V46\ZOQ"TX!?+^)EEQJ;+3P!EWH9Z%3GS`"4IL=LQ%*Q'NW[V/** MJI\-&57Q_ENE9ZEB%:>\)?S0"VY>-&*.!C1CS)7<[CT5P&&H$:6D2NY:>T$:]2F=D&*&$]>3A"3J.<.9?(X4S0F#,= MF=[3/W%!6]V][]*[`O>&.U5O:JA_^R+@0\9UC/CZB-F",!6_,CB/D4@I.$$B M.LOI$.+=Z0-WST=$&XKG-T2-Y-Z#?]%7K7CEBU+Q_H1/GF#3XL'%F,/1# M6X<>+==GH3O.PJ!TQP_7O9MN08XMHC]*!I=D3G>+=/9[JVI>&W1]?XU0@,I5 MR,PFTR<:U9J2U]HVBH0VVGU$;&-2RF7S*5DZ$Z#ME6R1FB@6FDG@Q]3E5-AWAYH/K M7#"6QY`38JD740?1=BXOZG:^NSO68SHPYM$%@VQY(QLS4Q(D8^C"D*QE*?.\ M1-.85/5>/`N)AXGS;MB!WT*'K9)+L0G>$;#5%? M"!+E5/`!;K(OEW,11IDG,-P,K#%9__>KJNZ>[P%-C+MW1[\$<*:[^K.ZJZKK M0X)<<2GHH3EHDQ,DPT/WN,A!"0W%HWOVX#9+ZB_89(D>Z66;4&;)C!N/WV,< M$S'I<(AXWX%I#>FXYI<9/DB2@P[!2S)HH.0'"POM MJL5%#=]DAGQ7<:C`>-Z&`_7N"]@8@>=(9W_#<>5CD3F,W/?2UG&(GH: MASHJV4R"$G_4((UTFH'3&RD1Y=[$TNG%U#:NI^1\<)Z1T+D)CV\)W+M[0M"" MP*UK&65'ED1_`.;%'93?>AS_M4VK\NT!84EHL'O'-IG"_L?-IB+V>O_>@QE5Y!V9Y3L9OC"MV@D_E) MTBOWAN,C:26#R^0JB5LKJ&O+X95MOOB8TW]DE-?L4_[KM4.VZ36;0FK,OS] M:1ET[/>,^K1:YUXFO\B0I5\,,U0=_+*Y5HLT(:+J']P6I\?"&CTVXT.LT;GI M=]@<_#[BTB9"1HZ.MP8I@)0&>*3Q-Y)Z=0NZ>9(^!EQ[9CJ@ MHRY1I.5W&(&"KM<"V",I1\CBD(AT51D%`"?%OV\[!*"$1TS"\#,<"&1'AC^% M(5G4,I&UTV1#WD]+-PE4C/&()=\)7[MTNX966>(ZCO1(9!'&\`(/,4YF\K^10+G@(L^/7G:GU8DS4@Q<3GBM%$-W$T!N MQ#"I<>PIYZ[\;>56>M]W%X`F*FF#+T8#)BVRK_!J<]/K+X0(;P/%R!*60*28 MQG@D?D;&Z8=WC`VATN:E!Q-1V1P'#>(V))9>CC0"_8Z9"#"Z$5/Q7S49G'!> M-1MRC)`F.<"Q1CO`K@2G86'Q[UFD?=FJGD`%8 M&'I2.^\=M3M8HFVAXOF1.;2YQPRB%/1(+=P[< MWP0N"+1%$"6\ MK_U"QAB'I M[^Q3G<31_8A1%*&J7I6W7L'`PY?PAYI(U,XOVF__L9=,\1^>:#>:F:0,=>!Q MW\%:3OMQ,`,OKPQ%36P$G&G"HQB@W$,S@%6#4#TH#)P]@,384,+](PI^A/2- M-KV!.9GUYQ3@R>,7CD;&1M^>5)Y+BBYU+&'['!&3!UL>=@S=-=(QD),Y7&`=MP9P>"3E(\YN16\#W![T?G-9[TE6 M&M8 M%?^W6,C)^+_Y8@GC?Q9SY=(Z_N-S)'ENVT.KH,W&BVMC"H>+AE'WO`Q[KG=Y9MO;KF:+. M37-<19K@UT:GVVRWE$WY1&1%*A^S*VQ@W9OE"DAUYP/([Z?1 M_;DKZ%_894ZYU_S-@NL]?P/->QWG(4.]3Z%->5!$>4UG3&%JQF,1-!3#-9+E MK_>QAI"`RM4'\YAR0,X2J3Q#X-4654TP.%=N M4&@-`K09`ZCP6$#,!03O<,C"<7._)RGLK-9IM'I[O^N#DO/CE=T6%T;UHMNI[J:^\V#UV2X4!XJ].FF\C7FW& ME2KP5U&E"GC*`/E;ZQQ>O&_VCM+P>,N5!R+Q^Y$Q5<55I\*[/1@A]ZT-B\JX MNF/(C,FPM;V!?Q%\VA)AV\HD?:$O6MU//+X;[$"?Z2)0QE0P94SGZQY:#CP+ MMPV$WQ(+AH:%ZT0ZP(:]??3D#5-1^DA>]5-B?AR4Z/6?JD*4,]AJ9KRDRHLYB,FC^BL4_H^E4NN:FIJ+#"NHU:IWY$!=*P1BZ:&'Z*B1[C5PY]M2S/6*`O M0&YHH+^2.PRSQQ+T1CU)?17/[UGJJ]O0>Z:.)QG>G5)E:P>Z0U_$FJ//*P78 M6@R'T3L.XM&-0+[C(!;="-2++%&@%Q$EPFAW$X]U-WZDB\:ZFRBD*Y8I\"7_ MXD>*7`6$$5OL`^YV^+V8&X@BPIG"_$8;/?DFZ"P,/E8Y'VHWA1/VK4CYNMPS0"3QE9')*,%U^#,:3R64?8U"JB M,O75^S=V*5"%`TWKHQS,VYPDCH4G.W3#R8UY/SEUTI'M\3IU97!:R`,<"*"V M([QB5^9X;-[B233JCU&:#/S8M6[;U:0+CFY?,NQ$7#2($.4"B?6A%LAZ&_('9 M$#%3:?$&T,WWAM"""\NQ//_YAIX!=LAG\//-6C04E2+P_^JIZUB!_\5"Q9'_ M%+8K)<3_?&Y[C?_/D:+P?V;!S\\1\6V7[0`>`5!17(&Z.T`1PYK#)]\!:H+B MWV-]2V&=6@M.+,)4_C.\1VQB#*JSQ!X&3C)F<5L&B]TRJ`T4'7XS7Y"M2+R! MDQKJN6?)0W[AB40-:6.:4XK5GGCC"#&RVLNL-P:3K#_Y M\7@W5]!(UJU9\YFF:OX65IE?E*YL+BN;2O.>AHO%=`IR,9XIZ M`$]08YK<;)$#5C_P)'0O]290_J#-6NT>:QPT>ZQWU.R2WBSDI*Q<[+]-%\6E M'?BB85>!UE*M*S9`9@P_5*<_*MT)!!\ND)"6U&.5P0=085I6/%#M$5,GK%PN M,Q68(EE*["VI]"6&'[4R#R@B:G]4D87AKV4SNH@-66@-9Y8W\G'%0PU^9/%@ MXUFH>`FV;2@RZ4^S\#^/2@A:'HM,^E3$\S2^](.6,L#DVTXFJ\\'>+.4Y45L MJ7&P0T*:_([D/A.#/S`X[#6JM2`=K_Z.#LHD*G(!9-+._E/+JMGKY.^XAMRN MI]+M;N^WLT9&@]U?N_Y29=Z6>`8H,-BP)O"X&%S%P6*HRG_:T%ZRT_9!E]7; M9[]UFH='/1+!UDY.M-Z'GM/(A]6Y=`"#Q-'?K'E.7I@OQ/O8AL$<0);K+\:, MJ:_B,JWO]YX\1=!_UT]=QRK^KU+8%O1?OK(-&Q;=_ZWIOV=)DOZ;H*7/P)S. M+7.L#;1+R[S1IY>AF[U"I2K4.!TJT%\RG+_HT=8KEKAD6DC0)$75:!VBAB.& M)F0L"4!I8]'TSRCVD)GJ[5:OTS[AN3"3?(_&88HJLYTW!1Q,F$U-;FQX2+:- MC21L8DFW0*CRB`+4GJ1K$Q.N!$%NQH,4`!A7/\:SR(W0^:YV?M*[Z/3.+L[: MG1XKYW*EY]OF"/]OKK,_L@Y6RB%:Q^(__B'XOU*9[O]SY0+@?_E'-DJF_W/\ ME_./LL-&J_=#ZEBU_[-*F%Y*L"H&JL1SKO&-0`W5=#/>0._M94."QCUI_.4;/>T@?S\1VI-\E< M?79MF8L97C[Z,J-K;(7?_;&)LX517HV,LMF5WI\O+'0.I',U_;Y-]X>VS2;& MW+BF:T1EHJ-7&\-V/+@/=!X=BW+SWEGZK&]`GR#KU/@W^KN=FV0ZH$]M&`8% M+]'1+;T^)_!<%6ML]J'\L#^CVTKRV6?/S*E-[NY&)C1VIEMD80>CIBG*^_?O MJVPTG\^JV>SM[:V*5B&:]R8R2]TD.C)KFU?SV[ZEDU'(]^W&$O_/3IK='W/Z MK\9_X/H<^J]`_%^^5%SC_[,D8/%P%2GB&X6M\B<7>`6D<=D5PBCE#>"Q-6%! M(9[_\9J"^+LD[SW.CZIC!?X7BL6\Q/]*:9OP']C`-?X_1]I@+?V6<4OP`7H@ M(0-O-A%+`F,_5AE=M&^P`SST!Y:.]T75!'KHI^M;]H_%^`Y]FKR"/.]'Y@3? MB9=MC3M"\8<:27M]I&24#2B7>F?I^MON096W)3NY-*?\?).KDPP>I;UC)5MX MQ7+;>"M9S#'STC*`6.#FCAN*@G(4%+[L);#A^)>0Y>PE2EI!>Z74:[W&8;O3 M;'3W$E03/^J5TQJZJ[OH-GOXYIN.8ZH@R_ZI)!*IKQYX%R?M>NWDWEL%JNT< M-#M[B<',Z'_YTE?@9;/5@_\->!@Y=(IRTGR+>D6-U@&T$%7BM'PU]17[V`58 M]]G/^3R9S]P8,(KX7E'.NXV+VGFO76^WWNTE[G2;GAR>UHX;_,_36BN_ETCP M>QSXH]X^/>LTNMW&P5YB:L)XUGKU(ZCU[?DA+Z"@?.SM>?/DX`(JA88(4@R' M6QF:JKRL4V`,Q,W"A?"9@PI1[SO'W4[]GL8+_L,3J.Y=\\-]5AY'#RI'EQ'! MHGB"/:RTN#T+`>#GG@<&C,@]"P`(7(FY4.0+!'!ZC%,"+VGNW]:ZC?O0[9:G MGH-:KQ9L:/QQ^U+C0[<$-DX%JM(-82*02AV2'NE7_^3=OV9#D];K8.BI/)4: MHMNVU%=:)Y`)20(0>" MKE(9;!E\*=\D)!7E"9`(QV;)Z(A$6B5W^VQDZ5=[24<`E]QW?NYF^_M):E1? M&9O3:]WRMI;WZ1`%-030`:5I6?CGP>CD_MR<2>5M3N?-89(0/$)7^LQ>3":H M>PUC@*$H`>)"!/(-DH6\5J4G1PDZ].^%@4(6,?AI.\.2'W`1[%34HE;4*N@F M:*Y_GJLY+9_3BF5VC:0EO-M^!<>F,-32BHR;CFC%)%DRX9FE/;ZN&'#60K1< MSJ=WM'Q#Q6!$4=H$2X-<@^(H*7\JRT:7B4G@@^P?8&4WRY; Sun, 17 Sep 2000 13:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA53022; Sun, 17 Sep 2000 13:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 13:00:02 -0700 (PDT) Message-Id: <200009172000.NAA53022@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21334: update port audio/spiralsynth Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21334; it has been noted by GNATS. From: Will Andrews To: Trevor Johnson Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/21334: update port audio/spiralsynth Date: Mon, 1 Jan 1996 10:10:41 -0500 On Sun, Sep 17, 2000 at 03:23:18PM -0400, Trevor Johnson wrote: > >Synopsis: update port audio/spiralsynth > >Description: > > from the original PR (http://www.FreeBSD.org/cgi/query-pr.cgi?pr=21053): > > - comment out author's site, because it does not work with fetch > (redirection to another host results in 404 error) It worked for me. Which is why I used it. And I just tested it, works fine with 0.1.6 tarball as well. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 13:30: 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 D415737B42C for ; Sun, 17 Sep 2000 13:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA63766; Sun, 17 Sep 2000 13:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 13:30:02 -0700 (PDT) Message-Id: <200009172030.NAA63766@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Simon Dick Subject: Re: ports/21267: Update port: emulators/uae Fixes the GUI so it works Reply-To: Simon Dick Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21267; it has been noted by GNATS. From: Simon Dick To: freebsd-gnats-submit@FreeBSD.org, simond@irrelevant.org Cc: Subject: Re: ports/21267: Update port: emulators/uae Fixes the GUI so it works Date: Sun, 17 Sep 2000 21:21:20 +0100 Thanks for adding a patch, however the patch you added was incorrect, you missed the second change which means the port still doesn't work :/ -- Simon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 13:44:17 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 C26C837B422; Sun, 17 Sep 2000 13:44:15 -0700 (PDT) Received: from localhost (bsdx@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id QAA70014; Sun, 17 Sep 2000 16:44:31 -0400 (EDT) (envelope-from bsdx@looksharp.net) Date: Sun, 17 Sep 2000 16:44:31 -0400 (EDT) From: Adam To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org, nox@jelal.kn-bremen.de Subject: Re: ports/21159: gcombust port simple upgrade In-Reply-To: <200009171842.LAA37840@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 have not this time. In the past I have tried emailing several times, I have not received a single answer from the Maintainer ever. According to the cvs log for the Makefile the last submission by the Maintainer was 8 months ago. I'll include their email in the cc for this.. On Sun, 17 Sep 2000 ade@FreeBSD.org wrote: >Synopsis: gcombust port simple upgrade > >State-Changed-From-To: open->feedback >State-Changed-By: ade >State-Changed-When: Sun Sep 17 11:42:01 PDT 2000 >State-Changed-Why: >Have you contacted the maintainer of the sysutils/gcombust port >about this update? nox@jelal.kn-bremen.de > >See also ports/21107 > >http://www.freebsd.org/cgi/query-pr.cgi?pr=21159 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 13:47: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 2205337B422; Sun, 17 Sep 2000 13:47:53 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68511; Sun, 17 Sep 2000 13:47:53 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 13:47:53 -0700 (PDT) From: Message-Id: <200009172047.NAA68511@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21107: version of gcombust in tree doesn't work with current mkisofs (update of port to current gcombust included) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: version of gcombust in tree doesn't work with current mkisofs (update of port to current gcombust included) Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 13:46:10 PDT 2000 Responsible-Changed-Why: I'll take care of this http://www.freebsd.org/cgi/query-pr.cgi?pr=21107 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 13:48: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 24F7D37B422; Sun, 17 Sep 2000 13:48:30 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA68712; Sun, 17 Sep 2000 13:48:30 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sun, 17 Sep 2000 13:48:30 -0700 (PDT) From: Message-Id: <200009172048.NAA68712@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21159: gcombust port simple upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gcombust port simple upgrade Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Sun Sep 17 13:48:18 PDT 2000 Responsible-Changed-Why: I'll take care of this http://www.freebsd.org/cgi/query-pr.cgi?pr=21159 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:30: 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 5586437B424; Sun, 17 Sep 2000 14:30:00 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77432; Sun, 17 Sep 2000 14:30:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:30:00 -0700 (PDT) From: Message-Id: <200009172130.OAA77432@freefall.freebsd.org> To: mjoyner@ewc.edu, wolfieee@wolf.dyns.cx, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21010: 1) libjtree looks in wrong place for headers and 2) tries to install non-existent file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 1) libjtree looks in wrong place for headers and 2) tries to install non-existent file State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun Sep 17 14:29:34 PDT 2000 State-Changed-Why: Just committed maintainer's fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=21010 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14: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 B6A3A37B424; Sun, 17 Sep 2000 14:30:16 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77640; Sun, 17 Sep 2000 14:30:16 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:30:16 -0700 (PDT) From: Message-Id: <200009172130.OAA77640@freefall.freebsd.org> To: wolfieee@wolf.dyns.cx, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21011: 1) libjtoolbar looks in wrong place for headers and 2) tries to install non-existent file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 1) libjtoolbar looks in wrong place for headers and 2) tries to install non-existent file State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun Sep 17 14:30:06 PDT 2000 State-Changed-Why: Just committed maintainer's fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=21011 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:30: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 E8E7837B424; Sun, 17 Sep 2000 14:30:40 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA77802; Sun, 17 Sep 2000 14:30:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:30:40 -0700 (PDT) From: Message-Id: <200009172130.OAA77802@freefall.freebsd.org> To: wolfieee@wolf.dyns.cx, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21012: 1) codecrusader looks in wrong place for jx headers and xpms and no telling what else.... Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 1) codecrusader looks in wrong place for jx headers and xpms and no telling what else.... State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun Sep 17 14:30:22 PDT 2000 State-Changed-Why: Just committed maintainer's fix. http://www.freebsd.org/cgi/query-pr.cgi?pr=21012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:32: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 7226237B43F; Sun, 17 Sep 2000 14:32:20 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78121; Sun, 17 Sep 2000 14:32:19 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:32:19 -0700 (PDT) From: Message-Id: <200009172132.OAA78121@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, steve@FreeBSD.org Subject: Re: ports/19083: New port devel/codemedic Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port devel/codemedic Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Sun Sep 17 14:32:02 PDT 2000 Responsible-Changed-Why: I'll commit this one shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=19083 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:32:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D8E237B42C; Sun, 17 Sep 2000 14:32:36 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78229; Sun, 17 Sep 2000 14:32:35 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:32:35 -0700 (PDT) From: Message-Id: <200009172132.OAA78229@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, steve@FreeBSD.org Subject: Re: ports/19287: New port mail/arrow uses x11-toolkits/jx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port mail/arrow uses x11-toolkits/jx Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Sun Sep 17 14:32:20 PDT 2000 Responsible-Changed-Why: I'll commit this one shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=19287 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:32: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 D163A37B422; Sun, 17 Sep 2000 14:32:50 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78315; Sun, 17 Sep 2000 14:32:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:32:50 -0700 (PDT) From: Message-Id: <200009172132.OAA78315@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, steve@FreeBSD.org Subject: Re: ports/19288: New port x11-fm/systemg uses x11-toolkits/jx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port x11-fm/systemg uses x11-toolkits/jx Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Sun Sep 17 14:32:37 PDT 2000 Responsible-Changed-Why: I'll commit this one shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=19288 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:33: 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 36C4137B43E; Sun, 17 Sep 2000 14:33:04 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78392; Sun, 17 Sep 2000 14:33:04 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:33:04 -0700 (PDT) From: Message-Id: <200009172133.OAA78392@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, steve@FreeBSD.org Subject: Re: ports/19289: New port misc/notebook uses x11-toolkits/jx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port misc/notebook uses x11-toolkits/jx Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Sun Sep 17 14:32:52 PDT 2000 Responsible-Changed-Why: I'll commit this one shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=19289 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:33: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 3D25F37B422; Sun, 17 Sep 2000 14:33:18 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA78473; Sun, 17 Sep 2000 14:33:18 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 17 Sep 2000 14:33:18 -0700 (PDT) From: Message-Id: <200009172133.OAA78473@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, steve@FreeBSD.org Subject: Re: ports/19291: New port math/thx-1138 uses x11-toolkits/jx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port math/thx-1138 uses x11-toolkits/jx Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Sun Sep 17 14:33:05 PDT 2000 Responsible-Changed-Why: I'll commit this one shortly. http://www.freebsd.org/cgi/query-pr.cgi?pr=19291 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14:38:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 0451337B424; Sun, 17 Sep 2000 14:38:50 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 80A211B21; Sun, 17 Sep 2000 16:34:34 -0500 (EST) Date: Sun, 17 Sep 2000 16:34:34 -0500 From: Will Andrews To: steve@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/19083: New port devel/codemedic Message-ID: <20000917163434.E8463@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009172132.OAA78121@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: <200009172132.OAA78121@freefall.freebsd.org>; from steve@FreeBSD.ORG on Sun, Sep 17, 2000 at 02:32:19PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 17, 2000 at 02:32:19PM -0700, steve@FreeBSD.ORG wrote: > Responsible-Changed-From-To: freebsd-ports->steve > Responsible-Changed-By: steve > Responsible-Changed-When: Sun Sep 17 14:32:02 PDT 2000 > Responsible-Changed-Why: > I'll commit this one shortly. Thanks, Steve, for taking this up. I know Mario wasn't happy when I couldn't get the job done "right" for him. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 14: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 B8B4537B424 for ; Sun, 17 Sep 2000 14:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA79053; Sun, 17 Sep 2000 14:40: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 9FB4937B422 for ; Sun, 17 Sep 2000 14:39:16 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id A30AE57B6; Sun, 17 Sep 2000 23:42:33 +0200 (CEST) Message-Id: <20000917214233.A30AE57B6@totem.fix.no> Date: Sun, 17 Sep 2000 23:42:33 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21335: New port: audio/fcplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21335 >Category: ports >Synopsis: New port: audio/fcplay >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 Sep 17 14:40: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: A port of the Future Composer Reference Player, a player for those memorable tunes from the Amiga. PS: Try ftp://totem.fix.no/pub/mirrors/misc/fc13.delicateRazor for my favourite FC tune. :-) >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: # # fcplay # fcplay/pkg # fcplay/pkg/COMMENT # fcplay/pkg/DESCR # fcplay/pkg/PLIST # fcplay/files # fcplay/files/md5 # fcplay/patches # fcplay/patches/patch-aa # fcplay/Makefile # echo c - fcplay mkdir -p fcplay > /dev/null 2>&1 echo c - fcplay/pkg mkdir -p fcplay/pkg > /dev/null 2>&1 echo x - fcplay/pkg/COMMENT sed 's/^X//' >fcplay/pkg/COMMENT << 'END-of-fcplay/pkg/COMMENT' XFuture Composer Reference Player END-of-fcplay/pkg/COMMENT echo x - fcplay/pkg/DESCR sed 's/^X//' >fcplay/pkg/DESCR << 'END-of-fcplay/pkg/DESCR' XA player for those memorable Future Composer tunes from the Amiga. X XThe author says it was implemented because hardly any FC player available on XPC (and not even on AMIGA) manages to play back all modules without flaws -- Xif at all. X XWWW: http://www.geocities.com/SiliconValley/Lakes/5147/mod/ XTunes: http://exotica.fix.no/ END-of-fcplay/pkg/DESCR echo x - fcplay/pkg/PLIST sed 's/^X//' >fcplay/pkg/PLIST << 'END-of-fcplay/pkg/PLIST' Xbin/fcplay Xshare/doc/fcplay/ABOUT Xshare/doc/fcplay/COPYING Xshare/doc/fcplay/POINTER X@dirrm share/doc/fcplay END-of-fcplay/pkg/PLIST echo c - fcplay/files mkdir -p fcplay/files > /dev/null 2>&1 echo x - fcplay/files/md5 sed 's/^X//' >fcplay/files/md5 << 'END-of-fcplay/files/md5' XMD5 (fcplay-0_0_1.tgz) = 3ca1c8e87d141b7b0641725f74f4633e END-of-fcplay/files/md5 echo c - fcplay/patches mkdir -p fcplay/patches > /dev/null 2>&1 echo x - fcplay/patches/patch-aa sed 's/^X//' >fcplay/patches/patch-aa << 'END-of-fcplay/patches/patch-aa' X--- POINTER.old Sun Sep 17 22:27:38 2000 X+++ POINTER Sun Sep 17 22:27:45 2000 X@@ -1,3 +1,3 @@ X http://www.geocities.com/SiliconValley/Lakes/5147/mod/ X X-FC modules: http://exotica.amigascne.org/ X+FC modules: http://exotica.fix.no/ END-of-fcplay/patches/patch-aa echo x - fcplay/Makefile sed 's/^X//' >fcplay/Makefile << 'END-of-fcplay/Makefile' X# New ports collection makefile for: xmms-fc X# Date created: 17 September 2000 X# Whom: Anders Nordby X# X# $FreeBSD$ X# X XPORTNAME= fcplay XPORTVERSION= 0.0.1 XCATEGORIES= audio XMASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/mod/ XDISTNAME= fcplay-0_0_1 XEXTRACT_SUFX= .tgz X XMAINTAINER= anders@fix.no X XBUILD_DEPENDS= ${LOCALBASE}/include/sidplay/compconf.h:${PORTSDIR}/audio/libsidplay X XCXXFLAGS+= -I${PREFIX}/include -DHAVE_FREEBSD -DHAVE_MACHINE_SOUNDCARD_H XGNU_CONFIGURE= yes XWRKSRC= ${WRKDIR}/fcplay-${PORTVERSION} X Xpost-install: X ${INSTALL} -d -m 555 ${PREFIX}/share/doc/fcplay X @${INSTALL_DATA} ${WRKSRC}/ABOUT ${PREFIX}/share/doc/fcplay/ X @${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/fcplay/ X @${INSTALL_DATA} ${WRKSRC}/POINTER ${PREFIX}/share/doc/fcplay/ X X.include END-of-fcplay/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 Sun Sep 17 14:46:48 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 D539837B423 for ; Sun, 17 Sep 2000 14:46:45 -0700 (PDT) Received: from gorean.org (doug@master [10.0.0.2]) by dt051n37.san.rr.com (8.9.3/8.9.3) with ESMTP id OAA59033; Sun, 17 Sep 2000 14:46:41 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <39C53BC1.C7D5E087@gorean.org> Date: Sun, 17 Sep 2000 14:46:41 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT-091 i386) X-Accept-Language: en MIME-Version: 1.0 To: Dag-Erling Smorgrav Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21296: [PATCH] INN port is outdated References: <200009161330.GAA18677@freefall.freebsd.org> <39C3FA43.3F10BA7F@gorean.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dag-Erling Smorgrav wrote: > > Doug Barton writes: > > If you guys can get INN to build in current please close ports/20688. > > Works fine for me. I still get exactly the same errors building on -current from friday that I described in the PR. 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 Sun Sep 17 15: 1: 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 3068A37B422; Sun, 17 Sep 2000 15:00:59 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA81462; Sun, 17 Sep 2000 15:00:59 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 17 Sep 2000 15:00:59 -0700 (PDT) From: Message-Id: <200009172200.PAA81462@freefall.freebsd.org> To: anders@fix.no, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21335: New port: audio/fcplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: audio/fcplay State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Sun Sep 17 15:00:49 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21335 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 15:12:18 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 8EF2937B422; Sun, 17 Sep 2000 15:12:14 -0700 (PDT) Received: from jupiter.delta.ny.us (nyf-ny2-34.ix.netcom.com [198.211.16.98]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id SAA23583; Sun, 17 Sep 2000 18:12:10 -0400 (EDT) Received: (from vsilyaev@localhost) by jupiter.delta.ny.us (8.9.3/8.9.3) id SAA00740; Sun, 17 Sep 2000 18:12:04 -0400 (EDT) (envelope-from vsilyaev) Date: Sun, 17 Sep 2000 18:12:04 -0400 (EDT) From: "Vladimir N. Silyaev" Message-Id: <200009172212.SAA00740@jupiter.delta.ny.us> To: freebsd-gnats-submit@FreeBSD.org, mb@imp.ch Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit X-URL: http://www.freebsd.org/cgi/query-pr.cgi?pr=21313 X-Mailer: Lynx, Version 2.8.2rel.1 Subject: Re: ports/21313: vmwarIPv6 and vmware2 panic: Fatal% Cc: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nsayer@quack.kfu.com, myevmenkin@att.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Most likely it's not a bug of vmmon driver, nor hopefully bug of VMware itself. But bug of the FreeBSD if_tap interface (vmware on freebsd use it as vmmon interface), and in that case you have contact wiht if_tap commiter - Nick Sayer or with if_tap author Maksim Yemenkin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 15: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 D70F937B424 for ; Sun, 17 Sep 2000 15:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA85455; Sun, 17 Sep 2000 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 15:20:02 -0700 (PDT) Message-Id: <200009172220.PAA85455@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Vladimir N. Silyaev" Subject: Re: ports/21313: vmwarIPv6 and vmware2 panic: Fatal% Reply-To: "Vladimir N. Silyaev" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21313; it has been noted by GNATS. From: "Vladimir N. Silyaev" To: freebsd-gnats-submit@FreeBSD.org, mb@imp.ch Cc: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nsayer@quack.kfu.com, myevmenkin@att.com Subject: Re: ports/21313: vmwarIPv6 and vmware2 panic: Fatal% Date: Sun, 17 Sep 2000 18:12:04 -0400 (EDT) Most likely it's not a bug of vmmon driver, nor hopefully bug of VMware itself. But bug of the FreeBSD if_tap interface (vmware on freebsd use it as vmmon interface), and in that case you have contact wiht if_tap commiter - Nick Sayer or with if_tap author Maksim Yemenkin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 15: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 1F09B37B43C for ; Sun, 17 Sep 2000 15:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA85466; Sun, 17 Sep 2000 15:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from c1030098-a.wtrlo1.ia.home.com (c1030098-a.wtrlo1.ia.home.com [24.14.126.45]) by hub.freebsd.org (Postfix) with ESMTP id C345C37B422 for ; Sun, 17 Sep 2000 15:19:21 -0700 (PDT) Received: (from mdharnois@localhost) by c1030098-a.wtrlo1.ia.home.com (8.11.0/8.11.0) id e8HMJOB92254; Sun, 17 Sep 2000 17:19:24 -0500 (CDT) (envelope-from mdharnois) Message-Id: <200009172219.e8HMJOB92254@c1030098-a.wtrlo1.ia.home.com> Date: Sun, 17 Sep 2000 17:19:24 -0500 (CDT) From: mdharnois@home.com Reply-To: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21336: team compiles with warnings on current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21336 >Category: ports >Synopsis: team compiles with warnings on current >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 Sep 17 15:20:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: i386, -current >Description: team.c: In function `FdRead': team.c:362: warning: unreachable code at beginning of switch statement team.c: In function `FdWrite': team.c:403: warning: unreachable code at beginning of switch statement team.c: In function `GuyStart': team.c:585: warning: unreachable code at beginning of switch statement team.c: In function `main': team.c:1003: warning: unreachable code at beginning of switch statement >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 Sep 17 15:20:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5308737B422; Sun, 17 Sep 2000 15:20:58 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA85636; Sun, 17 Sep 2000 15:20:58 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 17 Sep 2000 15:20:58 -0700 (PDT) From: Message-Id: <200009172220.PAA85636@freefall.freebsd.org> To: norbert.irmer@heim9.tu-clausthal.de, will@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/21179: New port: math/gul-vdog-qt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: math/gul-vdog-qt State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Sun Sep 17 15:19:28 PDT 2000 State-Changed-Why: I can't get this port to work on my system, which has QT 2.2.0 release from ports. It says it can't find libqgl, but as far as I know, the functionality of qgl was integrated into the usual qt library itself. Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: will Responsible-Changed-When: Sun Sep 17 15:19:28 PDT 2000 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21179 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 15:32: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 9E34337B423; Sun, 17 Sep 2000 15:32:16 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA87479; Sun, 17 Sep 2000 15:32:16 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 17 Sep 2000 15:32:16 -0700 (PDT) From: Message-Id: <200009172232.PAA87479@freefall.freebsd.org> To: kaz@kobe1995.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21235: New port: nsf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: nsf State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Sun Sep 17 15:30:51 PDT 2000 State-Changed-Why: Committed, thanks. Next time please use an up-to-date portlint to check your Makefiles etc. and use an up-to-date ports/Mk because you missed out on some fairly large revolutionary ports changes. Also, I put your tarball on ftp.freebsd.org, with a version number (1.0). This helps differentiate between this particular version and future versions. http://www.freebsd.org/cgi/query-pr.cgi?pr=21235 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 15:36:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FB2A37B423; Sun, 17 Sep 2000 15:36:52 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA88398; Sun, 17 Sep 2000 15:36:52 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 17 Sep 2000 15:36:52 -0700 (PDT) From: Message-Id: <200009172236.PAA88398@freefall.freebsd.org> To: oZZ@FreeBSD.org.ru, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21318: new port www/oops - www-proxy server Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port www/oops - www-proxy server State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Sun Sep 17 15:36:45 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21318 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 15:45:17 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 6E19437B505 for ; Sun, 17 Sep 2000 15:45:07 -0700 (PDT) Received: (qmail 18446098 invoked from network); 17 Sep 2000 22:45:05 -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 ; 17 Sep 2000 22:45:05 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id AAA01823; Mon, 18 Sep 2000 00:45:04 +0200 (CEST) (envelope-from root) From: Cyrille Lefevre Message-Id: <200009172245.AAA01823@gits.dyndns.org> Subject: ports/dhcp3: memory hole in dhclient To: freebsd-ports@freebsd.org, freebsd-security@freebsd.org Date: Mon, 18 Sep 2000 00:45:04 +0200 (CEST) Cc: Ted.Lemon@nominum.com 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+ PL77 (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 the dhclient program from the dhcp3 port, version 3.0.1 patch level 14, has a memory hole which may hang your machine after a long time run. in my case, it sucks "only" 64 MB of memory in a month (36 days). I said "only" because I have the line :memoryuse-cur=64M:\ in the default section of the /etc/login.conf file which restrict the memory usage of common processes. fyi, I'm running FreeBSD 4.1-RC but this problem is probably not OS dependent. I try to restart it, but that's freeze my machine ! no panic, no nothing :( imho, this message is subject to a "Ports Security Advisory". 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 Sun Sep 17 15:59: 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 12FDA37B424; Sun, 17 Sep 2000 15:59:05 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA91862; Sun, 17 Sep 2000 15:59:05 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 17 Sep 2000 15:59:05 -0700 (PDT) From: Message-Id: <200009172259.PAA91862@freefall.freebsd.org> To: jus@security.za.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/20741: new port submission Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port submission State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Sun Sep 17 15:57:16 PDT 2000 State-Changed-Why: I don't like this port. Too much is hardcoded, and there's absolutely no reason that I can see that you couldn't install everything under ${PREFIX}, even the etc and var stuff. Plus, this has a whole friggin sendmail config file in there. Couldn't we provide instructions on what needs to be added to a sendmail.mc file to get inflex to work with someone else's sendmail configuration? Thanks. Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: will Responsible-Changed-When: Sun Sep 17 15:57:16 PDT 2000 Responsible-Changed-Why: I'll handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=20741 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 16: 0: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 3A00A37B42C for ; Sun, 17 Sep 2000 16:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA91999; Sun, 17 Sep 2000 16:00: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 9EE9137B42C for ; Sun, 17 Sep 2000 15:54:17 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id D8E6E57B5; Mon, 18 Sep 2000 00:57:34 +0200 (CEST) Message-Id: <20000917225734.D8E6E57B5@totem.fix.no> Date: Mon, 18 Sep 2000 00:57:34 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21337: Update+fix of port: audio/xsidplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21337 >Category: ports >Synopsis: Update+fix of 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 Sep 17 16:00:00 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. -Fixes building with gcc >= 2.8.1. -Removes patch patch-00. -Thanks to KATO Tsuguru for patches. >How-To-Repeat: >Fix: Apply this: diff -Nur xsidplay.old/Makefile xsidplay/Makefile --- xsidplay.old/Makefile Sun Jun 11 21:06:58 2000 +++ xsidplay/Makefile Mon Sep 18 00:32:11 2000 @@ -6,32 +6,26 @@ # PORTNAME= xsidplay -PORTVERSION= 1.3.8 +PORTVERSION= 1.3.9 CATEGORIES= audio emulators MASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/ \ http://www.freenix.no/~anders/ -DISTNAME= ${PORTNAME}-1_3_8 -EXTRACT_SUFX= _tar.gz +DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g} +EXTRACT_SUFX= .tgz MAINTAINER= anders@fix.no -BUILD_DEPENDS= sidplay:${PORTSDIR}/audio/sidplay +LIB_DEPENDS= sidplay.1:${PORTSDIR}/audio/libsidplay GNU_CONFIGURE= YES -USE_GMAKE= YES USE_QT= YES CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ - -I${LOCALBASE}/include/sidplay" \ - LDFLAGS=-L${LOCALBASE}/lib + -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" WRKSRC= ${WRKDIR}/${PKGNAME} -.include -.if ${OSVERSION} >= 400000 -BROKEN= "Doesn't build with gcc >= 2.8.1" -.endif - do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin -.include +.include diff -Nur xsidplay.old/files/md5 xsidplay/files/md5 --- xsidplay.old/files/md5 Sun Jun 11 21:06:58 2000 +++ xsidplay/files/md5 Mon Sep 18 00:21:15 2000 @@ -1 +1 @@ -MD5 (xsidplay-1_3_8_tar.gz) = 9b22b10115323f87fd208a798b5252f1 +MD5 (xsidplay-1_3_9.tgz) = 0899624e144c6b686d69d7396689e8c5 diff -Nur xsidplay.old/patches/patch-00 xsidplay/patches/patch-00 --- xsidplay.old/patches/patch-00 Wed Jul 19 15:10:32 2000 +++ xsidplay/patches/patch-00 Thu Jan 1 01:00:00 1970 @@ -1,11 +0,0 @@ ---- src/Makefile.in.old Wed Jul 19 14:53:54 2000 -+++ src/Makefile.in Wed Jul 19 14:54:15 2000 -@@ -22,7 +22,7 @@ - INSTALL_DATA = @INSTALL_DATA@ - - CXX = @CXX@ --CXXFLAGS = @CXXFLAGS@ -+CXXFLAGS = @CXXFLAGS@ -DHAVE_FREEBSD -DHAVE_MACHINE_SOUNDCARD_H - DEFS = @DEFS@ - LDFLAGS = @LDFLAGS@ $(QT_LDFLAGS) $(X_LDFLAGS) $(SIDPLAY_LDFLAGS) - diff -Nur xsidplay.old/patches/patch-aa xsidplay/patches/patch-aa --- xsidplay.old/patches/patch-aa Thu Jan 1 01:00:00 1970 +++ xsidplay/patches/patch-aa Mon Sep 18 00:30:17 2000 @@ -0,0 +1,36 @@ +--- 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 ); + } diff -Nur xsidplay.old/patches/patch-ab xsidplay/patches/patch-ab --- xsidplay.old/patches/patch-ab Thu Jan 1 01:00:00 1970 +++ xsidplay/patches/patch-ab Mon Sep 18 00:30:17 2000 @@ -0,0 +1,36 @@ +--- 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 ); + } diff -Nur xsidplay.old/patches/patch-ac xsidplay/patches/patch-ac --- xsidplay.old/patches/patch-ac Thu Jan 1 01:00:00 1970 +++ xsidplay/patches/patch-ac Mon Sep 18 00:30:17 2000 @@ -0,0 +1,70 @@ +--- 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 ); + } diff -Nur xsidplay.old/pkg/DESCR xsidplay/pkg/DESCR --- xsidplay.old/pkg/DESCR Sun Jun 11 21:06:58 2000 +++ xsidplay/pkg/DESCR Mon Sep 18 00:46:48 2000 @@ -4,4 +4,4 @@ to all those SID-tunes you remember so well again. WWW: http://www.geocities.com/SiliconValley/Lakes/5147/ -HVSC: http://home.freeuk.net/wazzaw/HVSC/ +HVSC: http://www.hvsc.c64.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 Sep 17 17:18:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from guru.mired.org (zoom0-246.telepath.com [216.14.0.246]) by hub.freebsd.org (Postfix) with SMTP id 9BC1937B424 for ; Sun, 17 Sep 2000 17:18:41 -0700 (PDT) Received: (qmail 27981 invoked by uid 100); 18 Sep 2000 00:18:40 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14789.24413.963216.907782@guru.mired.org> Date: Sun, 17 Sep 2000 19:18:37 -0500 (CDT) To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20737: audio/cdrdao test for pccts has a LOCALBASE dependency In-Reply-To: <200009171829.LAA33988@freefall.freebsd.org> References: <200009171829.LAA33988@freefall.freebsd.org> X-Mailer: VM 6.72 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ade@FreeBSD.org writes: > Have you contacted the maintainer of the audio/cdrdao port, > futatuki@debug.gr.jp, about this update? Nope. I thought submitting a ports pr would cause that to eventually happen. ; Sun, 17 Sep 2000 17:27:03 -0700 (PDT) Received: from cobra.lovett.com ([10.0.0.3]) by hub.lovett.com with esmtp (Exim 3.16 #1) id 13aolz-000AfQ-00; Sun, 17 Sep 2000 19:27:03 -0500 Received: (from ade@localhost) by cobra.lovett.com (8.11.0/8.11.0) id e8I0R2B03509; Sun, 17 Sep 2000 19:27:02 -0500 (CDT) (envelope-from ade) Date: Sun, 17 Sep 2000 19:27:02 -0500 From: Ade Lovett To: Mike Meyer Cc: freebsd-ports@FreeBSD.org Subject: Contacting port maintainers (was Re: ports/20737: audio/cdrdao ...) Message-ID: <20000917192702.K507@FreeBSD.org> References: <200009171829.LAA33988@freefall.freebsd.org> <14789.24413.963216.907782@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14789.24413.963216.907782@guru.mired.org>; from mwm@mired.org on Sun, Sep 17, 2000 at 07:18:37PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 17, 2000 at 07:18:37PM -0500, Mike Meyer wrote: > Nope. I thought submitting a ports pr would cause that to eventually > happen. That's not how it works, I'm afraid, except in the case of those ports that have a maintainer set to "ports@FreeBSD.org" (ie: no-one) See http://www.freebsd.org/porters-handbook/port-upgrading.html Please everybody.. do check with the maintainer first, and if you're the maintainer of a port update, mention it somewhere in the PR Maintainer-generated (or -approved) patches do tend to get fast-tracked. Thanks, -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 Sun Sep 17 17:36:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from w250.z064001178.sjc-ca.dsl.cnc.net (w250.z064001178.sjc-ca.dsl.cnc.net [64.1.178.250]) by hub.freebsd.org (Postfix) with SMTP id 91E6837B423 for ; Sun, 17 Sep 2000 17:36:50 -0700 (PDT) Received: (qmail 51378 invoked by uid 1000); 18 Sep 2000 00:37:03 -0000 Date: Sun, 17 Sep 2000 17:37:03 -0700 From: Jos Backus To: will@FreeBSD.org Cc: kaz@kobe1995.net, freebsd-ports@FreeBSD.org Subject: Re: ports/21235: New port: nsf Message-ID: <20000917173703.D21965@lizzy.bugworks.com> Reply-To: Jos Backus Mail-Followup-To: will@FreeBSD.org, kaz@kobe1995.net, freebsd-ports@FreeBSD.org References: <200009172232.PAA87479@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: <200009172232.PAA87479@freefall.freebsd.org>; from will@FreeBSD.org on Sun, Sep 17, 2000 at 03:32:16PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Fyi, running the included sample.sh script gives a field definition format error. and the script dies. -- Jos Backus _/ _/_/_/ "Modularity is not a hack." _/ _/ _/ -- D. J. Bernstein _/ _/_/_/ _/ _/ _/ _/ josb@cncdsl.com _/_/ _/_/_/ use Std::Disclaimer; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 17:48:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from guru.mired.org (zoom1-069.telepath.com [216.14.1.69]) by hub.freebsd.org (Postfix) with SMTP id 824F437B424 for ; Sun, 17 Sep 2000 17:48:23 -0700 (PDT) Received: (qmail 28728 invoked by uid 100); 18 Sep 2000 00:48:22 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14789.26198.52639.362687@guru.mired.org> Date: Sun, 17 Sep 2000 19:48:22 -0500 (CDT) To: Ade Lovett Cc: Mike Meyer , freebsd-ports@FreeBSD.org Subject: Re: Contacting port maintainers (was Re: ports/20737: audio/cdrdao ...) In-Reply-To: <20000917192702.K507@FreeBSD.org> References: <200009171829.LAA33988@freefall.freebsd.org> <14789.24413.963216.907782@guru.mired.org> <20000917192702.K507@FreeBSD.org> X-Mailer: VM 6.72 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ade Lovett writes: > On Sun, Sep 17, 2000 at 07:18:37PM -0500, Mike Meyer wrote: > > Nope. I thought submitting a ports pr would cause that to eventually > > happen. > That's not how it works, I'm afraid, except in the case of those > ports that have a maintainer set to "ports@FreeBSD.org" (ie: no-one) > > See http://www.freebsd.org/porters-handbook/port-upgrading.html It's not at all clear that that applies to bugs in the port, as opposed to the port being out of date. In fact, I've gotten pretty good responses on the pr's for such in the past. Possibly I've been lucky. However, since you didn't say you had done so, I sent a note to the maintainer of the cdrdao port asking him about this. Thanx, From: "Matthew Emmerton" To: Subject: Port Maintainers Date: Sun, 17 Sep 2000 20:52:39 -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 For some time now I've seen many requests come to the ports mailing list which really should be handled by the maintainers of individual ports, not the people who look after committing PRs. As usual, the standard response is "contact the port maintainer". At first I wondered whether it was simply inexperience or ignorance that caused people to turn to the ports list for assistance, but over the last few months, I'm beginning to think whether the problem lies on the other side of the equation with the maintainers themselves. Not to pick on maintainers (since I maintain a few low-traffic ports myself and realize the volume of mail that can result), but I've sent mails to the maintainers of some pretty important ports (db-2.77, cyrus, apache13-fp for starters) and was not impressed with the results. In most cases I simply never received an answer to my emails, and in few rare occurences, received an answer after about a month's time -- usually by that time a new release had emerged or the problem that I was seeing had been overcome. What I'm wondering if is there is any mechanism in place to ensure that the support channel (e-mail to the port maintainer) remains open and valid. I know that at least one port for which the maintainer's email address bounces mail. There may also be some ports for which the designated maintainers simply don't maintain the port anymore. It would be advantageous to all if a periodic validation of these contact points could be performed (once per RELEASE would seem like a logical period to me.) Any thoughts? -- 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 Sun Sep 17 18:30: 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 D1BCE37B423 for ; Sun, 17 Sep 2000 18:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA17064; Sun, 17 Sep 2000 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 18:30:02 -0700 (PDT) Message-Id: <200009180130.SAA17064@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/21334: update port audio/spiralsynth Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21334; it has been noted by GNATS. From: Trevor Johnson To: Will Andrews Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/21334: update port audio/spiralsynth Date: Sun, 17 Sep 2000 21:26:37 -0400 (EDT) > It worked for me. Which is why I used it. And I just tested it, works > fine with 0.1.6 tarball as well. I reported the problem to the author before he released 0.1.6. I tried fetching that version when I noticed it was available. I still get a 404 error when trying to fetch it: $ date;fetch -v http://www.blueammonite.f9.co.uk/SpiralSynth/dload/SpiralSynth-0.1.6.tar.gz Mon Sep 18 01:20:58 UTC 2000 fetch: SpiralSynth-0.1.6.tar.gz: www.blueammonite.f9.co.uk: HTTP server returned error code 404 HTTP/1.1 404 Not Found 13e 404 Not Found Not Found The requested URL /SpiralSynth/dload/SpiralSynth-0.1.6.tar.gz was not found on this server. Apache/1.3.12 Server at www.blueammonite.f9.co.uk Port 80 0 -- 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 Sun Sep 17 18:40: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 1107937B422; Sun, 17 Sep 2000 18:40:41 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA18979; Sun, 17 Sep 2000 18:40:41 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Date: Sun, 17 Sep 2000 18:40:41 -0700 (PDT) From: Message-Id: <200009180140.SAA18979@freefall.freebsd.org> To: root@xena.gsicomp.on.ca, jkh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19428: Update to Cyrus-2.0.x Port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to Cyrus-2.0.x Port State-Changed-From-To: suspended->closed State-Changed-By: jkh State-Changed-When: Sun Sep 17 18:40:28 PDT 2000 State-Changed-Why: Closed at the request of the submitter. http://www.freebsd.org/cgi/query-pr.cgi?pr=19428 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 18:41: 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 8B99337B423; Sun, 17 Sep 2000 18:41:02 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA19097; Sun, 17 Sep 2000 18:41:02 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Date: Sun, 17 Sep 2000 18:41:02 -0700 (PDT) From: Message-Id: <200009180141.SAA19097@freefall.freebsd.org> To: matt@compar.com, jkh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19423: New Port for Cyrus 2.0.x Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port for Cyrus 2.0.x State-Changed-From-To: suspended->closed State-Changed-By: jkh State-Changed-When: Sun Sep 17 18:40:53 PDT 2000 State-Changed-Why: Closed at the request of the submitter. http://www.freebsd.org/cgi/query-pr.cgi?pr=19423 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 19:20:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-201-6-as.acessonet.com.br (200-227-201-6-as.acessonet.com.br [200.227.201.6]) by hub.freebsd.org (Postfix) with ESMTP id 3F68A37B423 for ; Sun, 17 Sep 2000 19:20:16 -0700 (PDT) Received: (qmail 75622 invoked by uid 1001); 18 Sep 2000 02:19:55 -0000 From: "Mario Sergio Fujikawa Ferreira" Date: Sun, 17 Sep 2000 23:19:33 -0300 To: Will Andrews Cc: steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, SADA Kenji Subject: Re: ports/19083: New port devel/codemedic Message-ID: <20000917231933.A64877@Fedaykin.here> References: <200009172132.OAA78121@freefall.freebsd.org> <20000917163434.E8463@radon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20000917163434.E8463@radon.gryphonsoft.com>; from will@physics.purdue.edu on Sun, Sep 17, 2000 at 04:34:12PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 17, 2000 at 04:34:12PM -0500, Will Andrews wrote: > On Sun, Sep 17, 2000 at 02:32:19PM -0700, steve@FreeBSD.ORG wrote: > > Responsible-Changed-From-To: freebsd-ports->steve > > Responsible-Changed-By: steve > > Responsible-Changed-When: Sun Sep 17 14:32:02 PDT 2000 > > Responsible-Changed-Why: > > I'll commit this one shortly. > > Thanks, Steve, for taking this up. I know Mario wasn't happy when I > couldn't get the job done "right" for him. No problem. I can appreciate the time constraints everybody has been undergoing. Specially you with the ongoing projects and the last release. I was not mad, sad or anything. :) I just can't say that I was happy. Hehehe No prob Will. I like your work, I can surely understand, no prob at all. If you have any suggestions on what I should do to clean up the mess state the ports are, it is highly appreciated. You too, steve: all comments appreciated. Also, THANKS a lot for commiting this. I just did not know what to say to ppl emailing me about the status of codecrusader. Before I forget, Sada Kenji, I'll use your patch on all my JX related ports for starters. Keep them comming. Thanks, (from a happy porter) Mario Ferreira To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 19:45:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 9D1C937B423; Sun, 17 Sep 2000 19:45:22 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 9892E18A2; Sun, 17 Sep 2000 21:41:06 -0500 (EST) Date: Sun, 17 Sep 2000 21:41:06 -0500 From: Will Andrews To: Mike Meyer Cc: Ade Lovett , freebsd-ports@FreeBSD.ORG Subject: Re: Contacting port maintainers (was Re: ports/20737: audio/cdrdao ...) Message-ID: <20000917214106.B583@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009171829.LAA33988@freefall.freebsd.org> <14789.24413.963216.907782@guru.mired.org> <20000917192702.K507@FreeBSD.org> <14789.26198.52639.362687@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14789.26198.52639.362687@guru.mired.org>; from mwm@mired.org on Sun, Sep 17, 2000 at 07:48:22PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 17, 2000 at 07:48:22PM -0500, Mike Meyer wrote: > Ade Lovett writes: > > On Sun, Sep 17, 2000 at 07:18:37PM -0500, Mike Meyer wrote: > > > Nope. I thought submitting a ports pr would cause that to eventually > > > happen. > > That's not how it works, I'm afraid, except in the case of those > > ports that have a maintainer set to "ports@FreeBSD.org" (ie: no-one) > > > > See http://www.freebsd.org/porters-handbook/port-upgrading.html > > It's not at all clear that that applies to bugs in the port, as > opposed to the port being out of date. In fact, I've gotten pretty > good responses on the pr's for such in the past. Possibly I've been > lucky. > > However, since you didn't say you had done so, I sent a note to the > maintainer of the cdrdao port asking him about this. The only time you don't need to email a maintainer is when they are not maintaining; i.e. have lost their privileges as maintainer. This is why I override many maintainerships - because people don't "maintain" to a reasonable degree. Basically, if they miss something completely for 6 weeks or more, they lost their maintainership privileges for that particular change. I'll just say I'll never complain if people override *my* maintainer on such instances. You shouldn't either. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 19: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 9951137B42C for ; Sun, 17 Sep 2000 19:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA30662; Sun, 17 Sep 2000 19:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 17 Sep 2000 19:50:02 -0700 (PDT) Message-Id: <200009180250.TAA30662@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21334: update port audio/spiralsynth Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21334; it has been noted by GNATS. From: Will Andrews To: Trevor Johnson Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/21334: update port audio/spiralsynth Date: Sun, 17 Sep 2000 21:35:46 -0500 On Sun, Sep 17, 2000 at 06:30:02PM -0700, Trevor Johnson wrote: > I reported the problem to the author before he released 0.1.6. I tried > fetching that version when I noticed it was available. I still get a 404 > error when trying to fetch it: > > $ date;fetch -v > http://www.blueammonite.f9.co.uk/SpiralSynth/dload/SpiralSynth-0.1.6.tar.gz > Mon Sep 18 01:20:58 UTC 2000 > fetch: SpiralSynth-0.1.6.tar.gz: www.blueammonite.f9.co.uk: HTTP server > returned error code 404 > HTTP/1.1 404 Not Found > 13e > 404 Not Found > Not Found > The requested URL /SpiralSynth/dload/SpiralSynth-0.1.6.tar.gz was not > found on this server. > Apache/1.3.12 Server at www.blueammonite.f9.co.uk Port 80 > 0 AND I REPEAT, IT WORKS FOR ME: (21:34:10) [will@radon ~]% fetch -v http://www.blueammonite.f9.co.uk/SpiralSynth/dload/SpiralSynth-0.1.6.tar.gz looking up www.blueammonite.f9.co.uk connecting to www.blueammonite.f9.co.uk:80 requesting http://www.blueammonite.f9.co.uk:80/SpiralSynth/dload/SpiralSynth-0.1.6.tar.gz fetch: remote: 56315 / 968795917 Receiving SpiralSynth-0.1.6.tar.gz (56315 bytes): 100% 56315 bytes transferred in 0.2 seconds (222.90 kBps) <1 5002-0> (21:34:41) [will@radon ~]% uname -a FreeBSD radon.gryphonsoft.com 4.1-STABLE FreeBSD 4.1-STABLE #0: Fri Sep 8 18:39:51 EST 2000 will@radon.gryphonsoft.com:/usr/src/sys/compile/RADON i386 -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 20: 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 C731E37B424 for ; Sun, 17 Sep 2000 20:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA31839; Sun, 17 Sep 2000 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id BDEC837B423 for ; Sun, 17 Sep 2000 19:53:04 -0700 (PDT) Received: from baby.int.thehousleys.net (baby.ipv6.thehousleys.net [3ffe:1ce3:6:0:260:8ff:fea3:7fb2]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e8I2qxQ05273 for ; Sun, 17 Sep 2000 22:52:59 -0400 (EDT) (envelope-from housley@thehousleys.net) Received: (from housley@localhost) by baby.int.thehousleys.net (8.11.0/8.11.0) id e8I2qw900983; Sun, 17 Sep 2000 22:52:58 -0400 (EDT) (envelope-from housley) Message-Id: <200009180252.e8I2qw900983@baby.int.thehousleys.net> Date: Sun, 17 Sep 2000 22:52:58 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21338: Update port: healthd - wrong md5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21338 >Category: ports >Synopsis: Update port: healthd - wrong md5 >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 Sep 17 20:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: I don't know where I got the md5 I submitted with the last PR, but it isn't right. Also, I believe the patches directory can be removed. I added the detect inb/outb in libio to the configure script. Unless it isn't working, in which case I need to know so I can fix it. >How-To-Repeat: >Fix: --- files/md5.orig Sun Sep 17 14:31:46 2000 +++ files/md5 Sun Sep 17 22:49:02 2000 @@ -1 +1 @@ -MD5 (healthd-0.6.0.tar.gz) = d52cde0f65aed046809a80c4527437e0 +MD5 (healthd-0.6.0.tar.gz) = 1794abe0ccc90e6ab6a099a5f43bef0f >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 Sep 17 22: 3:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns.kobe1995.net (211.12.126.15.user.dt.il24.net [211.12.126.15]) by hub.freebsd.org (Postfix) with ESMTP id 51FA737B422; Sun, 17 Sep 2000 22:03:52 -0700 (PDT) Received: (from kaz@localhost) by ns.kobe1995.net (8.8.8/3.4Wbeta6-primary) id OAA09598; Mon, 18 Sep 2000 14:03:42 +0900 (JST) Date: Mon, 18 Sep 2000 14:03:42 +0900 (JST) Message-Id: <200009180503.OAA09598@ns.kobe1995.net> To: josb@cncdsl.com Cc: will@FreeBSD.org, freebsd-ports@FreeBSD.org, kaz@kobe1995.net Subject: Re: ports/21235: New port: nsf In-Reply-To: Your message of "Sun, 17 Sep 2000 17:37:03 -0700". <20000917173703.D21965@lizzy.bugworks.com> From: kaz@kobe1995.net (NAKAMURA Kazushi) X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <20000917173703.D21965@lizzy.bugworks.com> josb@cncdsl.com writes: >Fyi, running the included sample.sh script gives a > > field definition format error. > >and the script dies. Please ignore sample.sh . The script dies because too many files in /usr/share/syscons/keymaps on FreeBSD4.x. Or, --- /usr/ports/local/nsf/work/sample.sh Sat Aug 31 17:27:52 1996 +++ sample.sh Mon Sep 18 13:56:05 2000 @@ -7,7 +7,7 @@ *cursor [~~~~~~] *screen saver [~~~~~~~~~~~~~] *time out [~~~~] -#v=keymap#s=:`cd /usr/share/syscons/keymaps;echo *.kbd|sed 's/ /:/g'`:#d=jp.106.kbd# +#v=keymap#d=jp.106.kbd# #v=keyrate#s=:slow:normal:fast:default:# #v=cursor#s=:normal:blink:destructive:NO:# #v=saver#s=:green:blank:snake:star:#d=green#v=blanktime#a=rf#d=600# -- $BCfB NAKAMURA Kazushi@KOBE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 22:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from priv-edtnes11-hme0.telusplanet.net (fepout3.telus.net [199.185.220.238]) by hub.freebsd.org (Postfix) with ESMTP id 015F337B422 for ; Sun, 17 Sep 2000 22:30:05 -0700 (PDT) Received: from yuggoth.warpedspace.org ([216.232.142.232]) by priv-edtnes11-hme0.telusplanet.net (InterMail vM.4.01.02.11 201-229-116-111) with ESMTP id <20000918052958.HWWI11006.priv-edtnes11-hme0.telusplanet.net@yuggoth.warpedspace.org>; Sun, 17 Sep 2000 23:29:58 -0600 Received: (from sdp@localhost) by yuggoth.warpedspace.org (8.11.0/8.11.0) id e8I5bvS17659; Sun, 17 Sep 2000 22:37:57 -0700 (PDT) From: "S. David Pullara" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14789.43573.313401.358809@yuggoth.warpedspace.org> Date: Sun, 17 Sep 2000 22:37:57 -0700 (PDT) To: ports@freebsd.org Subject: sawfish package bug X-Mailer: VM 6.72 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello ports, In the package sawfish-0.30.3.tgz there is a missing double-quote in the file +CONTENTS. So a search for "sawfish:" and put it at the end of the line. david To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 17 23: 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 0664337B42C for ; Sun, 17 Sep 2000 23:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA63730; Sun, 17 Sep 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from modemcable101.200-201-24.mtl.mc.videotron.ca (modemcable101.200-201-24.mtl.mc.videotron.ca [24.201.200.101]) by hub.freebsd.org (Postfix) with SMTP id 4147637B422 for ; Sun, 17 Sep 2000 22:50:52 -0700 (PDT) Received: (qmail 9121 invoked by alias); 18 Sep 2000 05:50:50 -0000 Received: (qmail 9116 invoked by uid 0); 18 Sep 2000 05:50:49 -0000 Message-Id: <20000918055049.9115.qmail@modemcable101.200-201-24.mtl.mc.videotron.ca> Date: 18 Sep 2000 05:50:49 -0000 From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: freefall-gnats@mindstep.com X-Send-Pr-Version: 3.2 Subject: ports/21340: new port for the Crypt::Blowfish perl module Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21340 >Category: ports >Synopsis: new port for the Crypt::Blowfish perl module >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: Sun Sep 17 23:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 3.5-STABLE i386 >Organization: MindStep Corporation >Environment: Port collection as of September 17, 2000 >Description: The perl module for blowfish encryption (which is required for the OpenSRS application) is not present in the ports collection. >How-To-Repeat: >Fix: This shell archive contains the port for the Crypt::Blowfish perl module. # 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-Crypt-Blowfish # p5-Crypt-Blowfish/files # p5-Crypt-Blowfish/files/md5 # p5-Crypt-Blowfish/pkg # p5-Crypt-Blowfish/pkg/COMMENT # p5-Crypt-Blowfish/pkg/DESCR # p5-Crypt-Blowfish/pkg/PLIST # p5-Crypt-Blowfish/Makefile # echo c - p5-Crypt-Blowfish mkdir -p p5-Crypt-Blowfish > /dev/null 2>&1 echo c - p5-Crypt-Blowfish/files mkdir -p p5-Crypt-Blowfish/files > /dev/null 2>&1 echo x - p5-Crypt-Blowfish/files/md5 sed 's/^X//' >p5-Crypt-Blowfish/files/md5 << 'END-of-p5-Crypt-Blowfish/files/md5' XMD5 (Crypt-Blowfish-2.06.tar.gz) = c95ccdf2ee05bba0e4a140428def03bd END-of-p5-Crypt-Blowfish/files/md5 echo c - p5-Crypt-Blowfish/pkg mkdir -p p5-Crypt-Blowfish/pkg > /dev/null 2>&1 echo x - p5-Crypt-Blowfish/pkg/COMMENT sed 's/^X//' >p5-Crypt-Blowfish/pkg/COMMENT << 'END-of-p5-Crypt-Blowfish/pkg/COMMENT' XPerl5 interface to the Blowfish encryption alogorithm END-of-p5-Crypt-Blowfish/pkg/COMMENT echo x - p5-Crypt-Blowfish/pkg/DESCR sed 's/^X//' >p5-Crypt-Blowfish/pkg/DESCR << 'END-of-p5-Crypt-Blowfish/pkg/DESCR' XThis is Crypt::Blowfish, an XS-based implementation of the XBlowfish cryptography algorithm designed by Bruce Schneier. It's designed Xto take full advantage of Crypt::CBC when desired. Blowfish keys may be Xup to 448 bits (56 bytes) long. END-of-p5-Crypt-Blowfish/pkg/DESCR echo x - p5-Crypt-Blowfish/pkg/PLIST sed 's/^X//' >p5-Crypt-Blowfish/pkg/PLIST << 'END-of-p5-Crypt-Blowfish/pkg/PLIST' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/Blowfish/Blowfish.so Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/Blowfish/Blowfish.bs Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt/Blowfish.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/Blowfish/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/Blowfish X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt END-of-p5-Crypt-Blowfish/pkg/PLIST echo x - p5-Crypt-Blowfish/Makefile sed 's/^X//' >p5-Crypt-Blowfish/Makefile << 'END-of-p5-Crypt-Blowfish/Makefile' X# New ports collection makefile for: p5-Crypt-Blowfish X# Date created: 2000/09/18 X# Whom: patrick@mindstep.com X# X# $FreeBSD$ X# X XPORTNAME= Crypt-Blowfish XPORTVERSION= 2.06 XCATEGORIES= security perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Crypt XPKGNAMEPREFIX= p5- X XMAINTAINER= patrick@mindstep.com X XUSE_PERL5= yes X XMAN3= Crypt::Blowfish.3 X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X Xdo-configure: X @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ X CC="${CC}" CCFLAGS="${CFLAGS}" X X.include END-of-p5-Crypt-Blowfish/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 Sun Sep 17 23:40: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by hub.freebsd.org (Postfix) with ESMTP id 65CBE37B422; Sun, 17 Sep 2000 23:39:55 -0700 (PDT) Received: from dsto-ms2.dsto.defence.gov.au (dsto-ms2.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au (8.10.1/8.10.1) with ESMTP id e8I6eYU24493; Mon, 18 Sep 2000 16:10:34 +0930 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by dsto-ms2.dsto.defence.gov.au (Content Technologies SMTPRS 4.1.5) with ESMTP id ; Mon, 18 Sep 2000 16:10:33 +0930 Received: from fang.dsto.defence.gov.au (fang.dsto.defence.gov.au [131.185.2.5]) by muttley.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id QAA13929; Mon, 18 Sep 2000 16:01:48 +0930 (CST) Received: from fuzz.dsto.defence.gov.au (fuzz.dsto.defence.gov.au [131.185.75.229]) by fang.dsto.defence.gov.au (8.9.3/8.9.3/8.9.3.LMD.990513) with ESMTP id QAA21690; Mon, 18 Sep 2000 16:01:47 +0930 (CST) Received: from dsto.defence.gov.au (localhost [127.0.0.1]) by fuzz.dsto.defence.gov.au (8.11.0/8.11.0) with ESMTP id e8I6UYG77085; Mon, 18 Sep 2000 16:00:34 +0930 (CST) (envelope-from Matthew.Thyer@dsto.defence.gov.au) Message-ID: <39C5B68A.172B8400@dsto.defence.gov.au> Date: Mon, 18 Sep 2000 16:00:34 +0930 From: Matthew Thyer X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: obrien@freebsd.org Cc: ports@freebsd.org Subject: Problem with ports/print/gv under FreeBSD-CURRENT of Sep 14 2000 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org cc -O -pipe -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -DNON_BLOCKING_IO -DUSE_SIGNAL_HANDLER -DUSER_DEFAULTS=\"~/.gv\" -DGV_LIBDIR=\"/usr/X11R6/lib/X11/gv/\" -DGV_CODE -DUSE_FALLBACK_STYLES -c Scrollbar.c rm -f gv cc -o gv -L/usr/X11R6/lib Aaa.o Aaa_bison.o Aaa_lex.o Button.o Clip.o FileSel.o Frame.o Ghostview.o MButton.o Switch.o Vlist.o actions.o callbacks.o confirm.o dialog.o doc_misc.o error.o file.o info.o magmenu.o main.o media.o misc.o miscmenu.o misc_private.o note.o options.o options_fs.o options_gs.o options_gv.o options_setup.o process.o popup.o ps.o resource.o save.o scale.o signal.o version.o widgets_misc.o zoom.o Scrollbar.o -lm -lXaw3d -lXmu -lXt -lSM -lICE -lXpm -lXext -lX11 -Wl,-rpath,/usr/X11R6/lib /usr/X11R6/lib/libXaw3d.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() make: don't know how to make gv.man. Stop *** Error code 2 Stop in /usr/ports/print/gv/work/gv-3.5.8. *** Error code 1 -- Matthew Thyer Phone: +61 8 8259 7249 Science Corporate Information Systems Fax: +61 8 8259 5537 Defence Science and Technology Organisation, Salisbury PO Box 1500 Salisbury South Australia 5108 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 0: 3:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from student.sjsmit.edu.tw (student.sjsmit.edu.tw [163.21.68.3]) by hub.freebsd.org (Postfix) with ESMTP id 2894737B423 for ; Mon, 18 Sep 2000 00:02:50 -0700 (PDT) Received: from yc64 (dhcp03.mis.sjsmit.edu.tw [163.21.79.3]) by student.sjsmit.edu.tw (8.9.3/8.9.3) with SMTP id PAA74521; Mon, 18 Sep 2000 15:18:52 GMT (envelope-from s8617064@student.sjsmit.edu.tw) Message-ID: <000601c02143$b14ccde0$034f15a3@mis> From: "Robert" To: Cc: Subject: FreeBSD Port: zh-xcin-2.5.2p5 Date: Mon, 18 Sep 2000 15:40:02 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0003_01C02186.B5F8F560" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C02186.B5F8F560 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable =B1z=A6n=A1G = =A4p=A7=CC=B7=D3=B5=DB/xcin-2.5/doc/SETUP=A4=A4=AA=BA=BB=A1=A9=FA=A4=CE=A4= =E8=AAk=A6w=B8=CB=A4Fxcin=A1A=A5B=A8t=B2=CE=A4=A4=A4w=A6w=B8=CB=A4Fdb-2.7= .7=A1Bgettext-0.10.35=A1Bkcfonts-1.05=A1Blibtabe-0.1-6=A1A=A6=FD=ACO=B8=CB= =A7=B9=A4=A7=AB=E1=A6n=B9=B3=C1=D9=ACO=A9=C7=A9=C7=AA=BA=A1A=A5B=A6bFAQ=A4= =A4=A6n=B9=B3=A7=E4=A4=A3=A8=EC=B3o=BC=CB=AA=BA=AA=AC=AAp=A1A=A9=D2=A5H=AA= =FE=A4W=B0T=AE=A7=A1A=BD=D0=B1z=AB=FC=C2I=A1C ./configure = #configure=AA=BA=B0T=AE=A7=A1A=A6n=B9=B3=A8S=A4=B0=BB=F2=B0=DD=C3D loading cache ./config.cache checking host system type... i386-unknown-freebsd4.0 checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking how to run the C preprocessor... (cached) gcc -E checking whether ln -s works... (cached) yes checking for ranlib... (cached) ranlib checking whether make sets ${MAKE}... (cached) yes checking for a BSD compatible install... (cached) /usr/bin/install -c checking for install -d: /usr/bin/install -c checking for gettext... (cached) 1 checking for gettext... (cached) no checking for gettext in -lintl... (cached) no checking for setlocale in -lxpg4... (cached) yes checking for dlopen... (cached) yes checking for db_open in -ldb... (cached) no checking for db_open in -ldb2... (cached) yes checking for tabeZhiInfoLookupYin in -ltabe... (cached) yes checking for bimsInit in -lbims... (cached) yes checking for dirent.h that defines DIR... (cached) yes checking for opendir in -ldir... (cached) no checking for ANSI C header files... (cached) yes checking whether sys/types.h defines makedev... (cached) yes checking for sys/wait.h that is POSIX.1 compatible... (cached) yes checking for fcntl.h... (cached) yes checking for limits.h... (cached) yes checking for malloc.h... (cached) no checking for sys/ioctl.h... (cached) yes checking for sys/time.h... (cached) yes checking for unistd.h... (cached) yes checking for wchar.h... (cached) no checking for working const... (cached) yes checking for uid_t in sys/types.h... (cached) yes checking for mode_t... (cached) yes checking for pid_t... (cached) yes checking for size_t... (cached) yes checking for st_blksize in struct stat... (cached) yes checking for st_blocks in struct stat... (cached) yes checking for st_rdev in struct stat... (cached) yes checking whether time.h and sys/time.h may both be included... (cached) = yes checking whether struct tm is in sys/time.h or time.h... (cached) time.h checking for working fnmatch... (cached) yes checking whether getpgrp takes no argument... (cached) yes checking for 8-bit clean memcmp... (cached) yes checking return type of signal handlers... (cached) void checking for strftime... (cached) yes checking whether utime accepts a null argument... (cached) yes checking for vprintf... (cached) yes checking for getcwd... (cached) yes checking for gethostname... (cached) yes checking for gettimeofday... (cached) yes checking for mkdir... (cached) yes checking for mktime... (cached) yes checking for putenv... (cached) yes checking for rmdir... (cached) yes checking for select... (cached) yes checking for strcspn... (cached) yes checking for strdup... (cached) yes checking for strerror... (cached) yes checking for strspn... (cached) yes checking for strstr... (cached) yes checking for strtol... (cached) yes checking for strtoul... (cached) yes checking for uname... (cached) yes checking for mergesort... (cached) yes checking for snprintf... (cached) yes checking for X... (cached) libraries /usr/X11R6/lib, headers = /usr/X11R6/include checking for XmbDrawImageString in -lX11... (cached) yes updating cache ./config.cache creating ./config.status creating Makefile creating src/Makefile creating src/lib/Makefile creating src/lib/xcintool/Makefile creating src/lib/siod/Makefile creating src/lib/IMdkit/Makefile creating src/Cinput/Makefile creating src/Cinput/im_comm/Makefile creating src/Cinput/zh_hex/Makefile creating src/Cinput/gen_inp/Makefile creating src/Cinput/bimsphone/Makefile creating src/util/Makefile creating src/util/cin2tab/Makefile creating src/util/testprog/Makefile creating cin/Makefile creating cin/big5/Makefile creating cin/gb/Makefile creating po/Makefile creating config.h creating src/xcinrc making links .... make #make=AA=BA=B0T=AE=A7=A1A=A6=B3error ( cd src; make ) gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o perr.o perr.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o open_file.o open_file.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o open_data.o open_data.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o copy_file.o copy_file.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o check_file_exist.o check_file_exist.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o check_version.o check_version.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o get_line.o get_line.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o get_word.o get_word.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o set_data.o set_data.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o strcmp_wild.o strcmp_wild.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o xcin_rc.o xcin_rc.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o set_locale.o set_locale.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o wchs_to_mbs.o wchs_to_mbs.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o wchs_len.o wchs_len.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o stable_sort.o stable_sort.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o debug.o debug.c gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/ -c -o snprintf.o snprintf.c ar -rc libxcintool.a perr.o open_file.o open_data.o copy_file.o = check_file_exist.o check_version.o get_line.o get_word.o set_data.o = strcmp_wild.o xcin_rc.o set_locale.o wchs_to_mbs.o wchs_len.o = stable_sort.o debug.o snprintf.o if [ -n "ranlib" ]; then ranlib libxcintool.a; fi rm -f ../libxcintool.a ( cd ..; ln -s xcintool/libxcintool.a . ) gcc -Wall -fsigned-char -O2 -I../../../src/include -DHAVE_CONFIG_H = -Dunix -c -o slib.o slib.c ar -rc libsiod.a slib.o sliba.o if [ -n "ranlib" ]; then ranlib libsiod.a; fi rm -f ../libsiod.a ( cd ..; ln -s siod/libsiod.a . ) gcc -c -fPIC -Wall -fsigned-char -O2 -DHAVE_CONFIG_H = -I../../../src/include -I/usr/X11R6/include -o zh_hex.o zh_hex.c gcc -shared -Wl,-R,zh_hex.so -o zh_hex.so zh_hex.o *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5/src/Cinput/zh_hex. *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5/src/Cinput. *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5/src. *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5. Make install #make install=A4=A7=AB=E1 ( cd src; make install ) if [ ! -d "/usr/local/bin" ]; then /usr/bin/install -c -d = /usr/local/bin; fi if [ ! -d "/usr/local/etc" ]; then /usr/bin/install -c -d = /usr/local/etc; fi if [ ! -d "/usr/local/lib/xcin" ]; then /usr/bin/install -c -d = /usr/local/lib/xcin; fi if [ ! -d "/usr/local/lib/xcin/tab" ]; then /usr/bin/install -c -d = /usr/local/lib/xcin/tab; fi gcc -shared -Wl,-R,zh_hex.so -o zh_hex.so zh_hex.o gcc -c -fPIC -Wall -fsigned-char -O2 -I../../../src/include = -I/usr/X11R6/include -DHAVE_CONFIG_H -o gen_inp.o gen_inp.c gcc -shared -Wl,-R,gen_inp.so -o gen_inp.so gen_inp.o *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5/src/Cinput/gen_inp. *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5/src/Cinput. *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5/src. *** Error code 1 Stop in /usr/ports/distfiles/xcin-2.5. Xcin #=B0=F5=A6=E6xcin=AE=C9=B1o=A8=EC=AA=BA=B0T=AE=A7 XCIN (Chinese XIM server) version xcin 2.5.2-pre5. (module ver: 20000725, syscin ver: 20000210). (use "-h" option for help) Segmentation fault(core dumped) ------=_NextPart_000_0003_01C02186.B5F8F560 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable
=B1z=A6n=A1G
 =A4p=A7=CC=B7=D3=B5=DB/xcin-2.5/do= c/SETUP=A4=A4=AA=BA=BB=A1=A9=FA=A4=CE=A4=E8=AAk=A6w=B8=CB=A4Fxcin=A1A=A5B= =A8t=B2=CE=A4=A4=A4w=A6w=B8=CB=A4Fdb-2.7.7=A1Bgettext-0.10.35=A1Bkcfonts-= 1.05=A1Blibtabe-0.1-6=A1A=A6=FD=ACO=B8=CB=A7=B9=A4=A7=AB=E1=A6n=B9=B3=C1=D9= =ACO=A9=C7=A9=C7=AA=BA=A1A=A5B=A6bFAQ=A4=A4=A6n=B9=B3=A7=E4=A4=A3=A8=EC=B3= o=BC=CB=AA=BA=AA=AC=AAp=A1A=A9=D2=A5H=AA=FE=A4W=B0T=AE=A7=A1A=BD=D0=B1z=AB= =FC=C2I=A1C
./configure #configure=AA=BA=B0T=AE=A7=A1A=A6n=B9=B3=A8= S=A4=B0=BB=F2=B0=DD=C3D
loading=20 cache ./config.cache
checking host system type...=20 i386-unknown-freebsd4.0
checking for gcc... (cached) gcc
checking = whether=20 the C compiler (gcc  ) works... yes
checking whether the C = compiler=20 (gcc  ) is a cross-compiler... no
checking whether we are using = GNU C...=20 (cached) yes
checking whether gcc accepts -g... (cached) = yes
checking how=20 to run the C preprocessor... (cached) gcc -E
checking whether ln -s = works...=20 (cached) yes
checking for ranlib... (cached) ranlib
checking = whether make=20 sets ${MAKE}... (cached) yes
checking for a BSD compatible install... = (cached) /usr/bin/install -c
checking for install -d: = /usr/bin/install=20 -c
checking for gettext... (cached) 1
checking for gettext... = (cached)=20 no
checking for gettext in -lintl... (cached) no
checking for = setlocale in=20 -lxpg4... (cached) yes
checking for dlopen... (cached) = yes
checking for=20 db_open in -ldb... (cached) no
checking for db_open in -ldb2... = (cached)=20 yes
checking for tabeZhiInfoLookupYin in -ltabe... (cached) = yes
checking=20 for bimsInit in -lbims... (cached) yes
checking for dirent.h that = defines=20 DIR... (cached) yes
checking for opendir in -ldir... (cached) = no
checking=20 for ANSI C header files... (cached) yes
checking whether sys/types.h = defines=20 makedev... (cached) yes
checking for sys/wait.h that is POSIX.1 = compatible...=20 (cached) yes
checking for fcntl.h... (cached) yes
checking for = limits.h...=20 (cached) yes
checking for malloc.h... (cached) no
checking for=20 sys/ioctl.h... (cached) yes
checking for sys/time.h... (cached)=20 yes
checking for unistd.h... (cached) yes
checking for wchar.h... = (cached)=20 no
checking for working const... (cached) yes
checking for uid_t = in=20 sys/types.h... (cached) yes
checking for mode_t... (cached) = yes
checking=20 for pid_t... (cached) yes
checking for size_t... (cached) = yes
checking for=20 st_blksize in struct stat... (cached) yes
checking for st_blocks in = struct=20 stat... (cached) yes
checking for st_rdev in struct stat... (cached)=20 yes
checking whether time.h and sys/time.h may both be included... = (cached)=20 yes
checking whether struct tm is in sys/time.h or time.h... (cached) = time.h
checking for working fnmatch... (cached) yes
checking = whether=20 getpgrp takes no argument... (cached) yes
checking for 8-bit clean = memcmp...=20 (cached) yes
checking return type of signal handlers... (cached)=20 void
checking for strftime... (cached) yes
checking whether utime = accepts=20 a null argument... (cached) yes
checking for vprintf... (cached)=20 yes
checking for getcwd... (cached) yes
checking for = gethostname...=20 (cached) yes
checking for gettimeofday... (cached) yes
checking = for=20 mkdir... (cached) yes
checking for mktime... (cached) yes
checking = for=20 putenv... (cached) yes
checking for rmdir... (cached) yes
checking = for=20 select... (cached) yes
checking for strcspn... (cached) = yes
checking for=20 strdup... (cached) yes
checking for strerror... (cached) = yes
checking for=20 strspn... (cached) yes
checking for strstr... (cached) = yes
checking for=20 strtol... (cached) yes
checking for strtoul... (cached) = yes
checking for=20 uname... (cached) yes
checking for mergesort... (cached) = yes
checking for=20 snprintf... (cached) yes
checking for X... (cached) libraries = /usr/X11R6/lib,=20 headers /usr/X11R6/include
checking for XmbDrawImageString in = -lX11...=20 (cached) yes
updating cache ./config.cache
creating=20 ./config.status
creating Makefile
creating = src/Makefile
creating=20 src/lib/Makefile
creating src/lib/xcintool/Makefile
creating=20 src/lib/siod/Makefile
creating src/lib/IMdkit/Makefile
creating=20 src/Cinput/Makefile
creating src/Cinput/im_comm/Makefile
creating=20 src/Cinput/zh_hex/Makefile
creating = src/Cinput/gen_inp/Makefile
creating=20 src/Cinput/bimsphone/Makefile
creating src/util/Makefile
creating=20 src/util/cin2tab/Makefile
creating = src/util/testprog/Makefile
creating=20 cin/Makefile
creating cin/big5/Makefile
creating=20 cin/gb/Makefile
creating po/Makefile
creating config.h
creating = src/xcinrc
making links ....
 
make #make=AA=BA=B0T=AE=A7=A1A=A6=B3error
( cd = src; make )
gcc=20 -Wall -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o perr.o perr.c
gcc -Wall = -fsigned-char=20 -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/local/include/tabe/  -c=20 -o open_file.o open_file.c
gcc -Wall -fsigned-char -O2 = -DHAVE_CONFIG_H=20 -I../../../src/include -I/usr/local/include/tabe/  -c -o = open_data.o=20 open_data.c
gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H=20 -I../../../src/include -I/usr/local/include/tabe/  -c -o = copy_file.o=20 copy_file.c
gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H=20 -I../../../src/include -I/usr/local/include/tabe/  -c -o = check_file_exist.o=20 check_file_exist.c
gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H=20 -I../../../src/include -I/usr/local/include/tabe/  -c -o = check_version.o=20 check_version.c
gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H=20 -I../../../src/include -I/usr/local/include/tabe/  -c -o get_line.o = get_line.c
gcc -Wall -fsigned-char -O2 -DHAVE_CONFIG_H = -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o get_word.o get_word.c
gcc = -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o set_data.o set_data.c
gcc = -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o strcmp_wild.o = strcmp_wild.c
gcc -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o xcin_rc.o xcin_rc.c
gcc -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o set_locale.o set_locale.c
gcc = -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o wchs_to_mbs.o = wchs_to_mbs.c
gcc -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o wchs_len.o wchs_len.c
gcc = -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o stable_sort.o = stable_sort.c
gcc -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o debug.o debug.c
gcc -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include=20 -I/usr/local/include/tabe/  -c -o snprintf.o snprintf.c
ar -rc=20 libxcintool.a perr.o open_file.o open_data.o copy_file.o=20 check_file_exist.o  check_version.o get_line.o get_word.o = set_data.o=20 strcmp_wild.o  xcin_rc.o set_locale.o wchs_to_mbs.o wchs_len.o=20 stable_sort.o  debug.o snprintf.o
if [ -n "ranlib" ]; then = ranlib=20 libxcintool.a; fi
rm -f ../libxcintool.a
( cd ..; ln -s=20 xcintool/libxcintool.a . )
gcc -Wall -fsigned-char -O2 = -I../../../src/include=20 -DHAVE_CONFIG_H -Dunix -c -o slib.o slib.c
ar -rc libsiod.a slib.o=20 sliba.o
if [ -n "ranlib" ]; then ranlib libsiod.a; fi
rm -f=20 ../libsiod.a
( cd ..; ln -s siod/libsiod.a . )
gcc -c -fPIC -Wall=20 -fsigned-char -O2 -DHAVE_CONFIG_H -I../../../src/include = -I/usr/X11R6/include -o=20 zh_hex.o zh_hex.c
gcc -shared -Wl,-R,zh_hex.so -o zh_hex.so = zh_hex.o
***=20 Error code 1
 
Stop in=20 /usr/ports/distfiles/xcin-2.5/src/Cinput/zh_hex.
*** Error code=20 1
 
Stop in=20 /usr/ports/distfiles/xcin-2.5/src/Cinput.
*** Error code=20 1
 
Stop in = /usr/ports/distfiles/xcin-2.5/src.
***=20 Error code 1
 
Stop in=20 /usr/ports/distfiles/xcin-2.5.
 
Make install #make = install=A4=A7=AB=E1
( cd src; make=20 install )
if [ ! -d "/usr/local/bin" ];  then /usr/bin/install = -c -d=20 /usr/local/bin;  fi
if [ ! -d "/usr/local/etc" ];   = then=20 /usr/bin/install -c -d /usr/local/etc;   fi
if [ ! -d=20 "/usr/local/lib/xcin" ];  then /usr/bin/install -c -d=20 /usr/local/lib/xcin;  fi
if [ ! -d "/usr/local/lib/xcin/tab" ]; = then=20 /usr/bin/install -c -d /usr/local/lib/xcin/tab; fi
gcc -shared=20 -Wl,-R,zh_hex.so -o zh_hex.so zh_hex.o
gcc -c -fPIC -Wall = -fsigned-char -O2=20 -I../../../src/include -I/usr/X11R6/include -DHAVE_CONFIG_H -o gen_inp.o = gen_inp.c
gcc -shared -Wl,-R,gen_inp.so -o gen_inp.so = gen_inp.o
*** Error=20 code 1
 
Stop in=20 /usr/ports/distfiles/xcin-2.5/src/Cinput/gen_inp.
*** Error code=20 1
 
Stop in=20 /usr/ports/distfiles/xcin-2.5/src/Cinput.
*** Error code=20 1
 
Stop in = /usr/ports/distfiles/xcin-2.5/src.
***=20 Error code 1
 
Stop in=20 /usr/ports/distfiles/xcin-2.5.
 
Xcin  #=B0=F5=A6=E6xcin=AE=C9=B1o=A8=EC=AA=BA=B0= T=AE=A7
XCIN (Chinese XIM=20 server) version xcin 2.5.2-pre5.
(module ver: 20000725, syscin ver:=20 20000210).
(use "-h" option for help)
 
Segmentation fault(core=20 dumped)
------=_NextPart_000_0003_01C02186.B5F8F560-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 0: 9: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 54ED137B43C for ; Mon, 18 Sep 2000 00:09:27 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.91]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id KAA01386; Mon, 18 Sep 2000 10:09: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 e8I6uQ113841; Mon, 18 Sep 2000 09:56:26 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C5BC9A.BF6558D1@FreeBSD.org> Date: Mon, 18 Sep 2000 09:56: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: Mario Sergio Fujikawa Ferreira Cc: freebsd-ports@FreeBSD.org Subject: Re: Help with new port smpeg plugin for xmms References: <20000916173430.A10324@Fedaykin.here> Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mario Sergio Fujikawa Ferreira wrote: > Hi, > > It is me again. Please, could somebody help me with > this one. > I am almost nailing it. This is the newly released > MPEG plugin released for xmms. > However, I am having some problems. For use with xmms, I > need shared versions of the plugin objects, namely libsmpeg_xmms.so. > However, I am unable to achieve that due to unavailability of some > x11/XFree86-4 (XFree86 4.0.1) shared objects. Here goes the complain > from the xmms-smpeg port > I ported it, but it doesn't work (some problems with CVS version of smpeg library included with it). The bug you mentioned is caused by libtool stupidity, which refuses to create shared library if some of the libraries you are trying to link with are static. The following workaround could be uses to fix this: post-configure: @${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ ${WRKSRC}/libtool -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 0: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 7F9C337B43C for ; Mon, 18 Sep 2000 00:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA80557; Mon, 18 Sep 2000 00:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mailgw1.be.to (mailgw1.be.to [210.235.212.5]) by hub.freebsd.org (Postfix) with ESMTP id 311F137B423 for ; Mon, 18 Sep 2000 00:03:51 -0700 (PDT) Received: from mail1.be.to (mail1.be.to [210.235.212.2]) by mailgw1.be.to (8.11.0+3.3W/8.11.0/BETO3.11-20000907025324) with ESMTP id e8I73jr29670 for ; Mon, 18 Sep 2000 16:03:45 +0900 (envelope-from okazaki@be.to) Received: from REISHI (mbra0137.ppp.infoweb.ne.jp [202.219.229.101]) by mail1.be.to (8.9.3+3.2W/BETO.2.0-2000090620000000) with SMTP id QAA09947 for ; Mon, 18 Sep 2000 16:03:42 +0900 Received: (qmail 2250 invoked by uid 1001); 18 Sep 2000 07:01:47 -0000 Message-Id: <20000918070147.2249.qmail@dolphin.be.to> Date: 18 Sep 2000 07:01:47 -0000 From: okazaki@be.to Reply-To: okazaki@be.to To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21341: New port: devel/elib-emacs + devel/elib-emacs20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21341 >Category: ports >Synopsis: New port: devel/elib-emacs + devel/elib-emacs20 >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 Sep 18 00:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: OKAZAKI Tetsurou >Release: FreeBSD 4.1-STABLE i386 >Organization: Unknown >Environment: GNU Emacs 19.34 GNU Emacs 20.7 >Description: Port of ELIB, The Emacs Lisp Library. >How-To-Repeat: >Fix: Use the shar below to import the port. # 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: # # elib-emacs # elib-emacs/files # elib-emacs/files/md5 # elib-emacs/files/MESSAGE # elib-emacs/pkg # elib-emacs/pkg/COMMENT # elib-emacs/pkg/DESCR # elib-emacs/pkg/PLIST # elib-emacs/patches # elib-emacs/patches/patch-aa # elib-emacs/patches/patch-ab # elib-emacs/Makefile # elib-emacs20 # elib-emacs20/Makefile # echo c - elib-emacs mkdir -p elib-emacs > /dev/null 2>&1 echo c - elib-emacs/files mkdir -p elib-emacs/files > /dev/null 2>&1 echo x - elib-emacs/files/md5 sed 's/^X//' >elib-emacs/files/md5 << 'END-of-elib-emacs/files/md5' XMD5 (elib-1.0.tar.gz) = 66729d03c58872aff53c16845524f16c END-of-elib-emacs/files/md5 echo x - elib-emacs/files/MESSAGE sed 's/^X//' >elib-emacs/files/MESSAGE << 'END-of-elib-emacs/files/MESSAGE' XTo use elib, put the following setup into your ~/.emacs: X X (require 'elib-startup) X END-of-elib-emacs/files/MESSAGE echo c - elib-emacs/pkg mkdir -p elib-emacs/pkg > /dev/null 2>&1 echo x - elib-emacs/pkg/COMMENT sed 's/^X//' >elib-emacs/pkg/COMMENT << 'END-of-elib-emacs/pkg/COMMENT' XCollection of useful routines for Emacs lisp programs END-of-elib-emacs/pkg/COMMENT echo x - elib-emacs/pkg/DESCR sed 's/^X//' >elib-emacs/pkg/DESCR << 'END-of-elib-emacs/pkg/DESCR' XElib, the GNU Emacs Lisp Library, is a collection of useful routines Xfor Emacs lisp programs which don't have to be reinvented each time Xa new program is written. X XElib provides features of: X - container data structures (queues, stacks, AVL trees, etc) X - string handling functions missing in standard Emacs X - minibuffer handling functions missing in standard Emacs X - routines for handling lists of so-called cookies in a buffer. X XELIB is installed into the following directory tree: X PREFIX/share/emacs/site-lisp/elib/ --- elib X XWWW: http://www.gnu.org/software/elib/elib.html X X- Tetsurou Xokazaki@be.to END-of-elib-emacs/pkg/DESCR echo x - elib-emacs/pkg/PLIST sed 's/^X//' >elib-emacs/pkg/PLIST << 'END-of-elib-emacs/pkg/PLIST' X%%EMACS_LIBDIR%%/site-lisp/elib/avltree.el X%%EMACS_LIBDIR%%/site-lisp/elib/avltree.elc X%%EMACS_LIBDIR%%/site-lisp/elib/bintree.el X%%EMACS_LIBDIR%%/site-lisp/elib/bintree.elc X%%EMACS_LIBDIR%%/site-lisp/elib/cookie.el X%%EMACS_LIBDIR%%/site-lisp/elib/cookie.elc X%%EMACS_LIBDIR%%/site-lisp/elib/dll-debug.el X%%EMACS_LIBDIR%%/site-lisp/elib/dll-debug.elc X%%EMACS_LIBDIR%%/site-lisp/elib/dll.el X%%EMACS_LIBDIR%%/site-lisp/elib/dll.elc X%%EMACS_LIBDIR%%/site-lisp/elib/elib-node.el X%%EMACS_LIBDIR%%/site-lisp/elib/elib-node.elc X%%EMACS_LIBDIR%%/site-lisp/elib/queue-f.el X%%EMACS_LIBDIR%%/site-lisp/elib/queue-f.elc X%%EMACS_LIBDIR%%/site-lisp/elib/queue-m.el X%%EMACS_LIBDIR%%/site-lisp/elib/queue-m.elc X%%EMACS_LIBDIR%%/site-lisp/elib/read.el X%%EMACS_LIBDIR%%/site-lisp/elib/read.elc X%%EMACS_LIBDIR%%/site-lisp/elib/stack-f.el X%%EMACS_LIBDIR%%/site-lisp/elib/stack-f.elc X%%EMACS_LIBDIR%%/site-lisp/elib/stack-m.el X%%EMACS_LIBDIR%%/site-lisp/elib/stack-m.elc X%%EMACS_LIBDIR%%/site-lisp/elib/string.el X%%EMACS_LIBDIR%%/site-lisp/elib/string.elc X%%LOADPATHSETUP:%%%%EMACS_LIBDIR_WITH_VER%%/site-lisp/%%PORT_SETUPEL%% X@dirrm %%EMACS_LIBDIR%%/site-lisp/elib X%%PORTDOCDIR%%/ChangeLog X%%PORTDOCDIR%%/NEWS X%%PORTDOCDIR%%/README X@dirrm %%PORTDOCDIR%% X@unexec install-info --delete %D/info/elib.info %D/info/dir Xinfo/elib.info X@exec install-info %D/info/elib.info %D/info/dir END-of-elib-emacs/pkg/PLIST echo c - elib-emacs/patches mkdir -p elib-emacs/patches > /dev/null 2>&1 echo x - elib-emacs/patches/patch-aa sed 's/^X//' >elib-emacs/patches/patch-aa << 'END-of-elib-emacs/patches/patch-aa' X--- Makefile.orig Mon Dec 11 09:50:56 1995 X+++ Makefile Thu Feb 24 14:52:08 2000 X@@ -61,16 +61,16 @@ X install: all installdirs install-info X $(INSTALL_DATA) $(ELFILES) $(ELIBDIR) X $(INSTALL_DATA) $(ELCFILES) $(ELIBDIR) X- @echo Please merge elib-startup.el into $(locallisppath)/default.el X+# @echo Please merge elib-startup.el into $(locallisppath)/default.el X X installdirs: X- -mkdir $(ELIBDIR) X+ -${MKDIR} $(ELIBDIR) X X install-info: elib.info X $(INSTALL_DATA) elib.info* $(infodir) X if $(SHELL) -c 'install-info --version' \ X >/dev/null 2>&1; then \ X- -install-info --infodir=$(infodir) elib.info; \ X+ install-info --info-dir=$(infodir) elib.info; \ X else true; fi X X clean: END-of-elib-emacs/patches/patch-aa echo x - elib-emacs/patches/patch-ab sed 's/^X//' >elib-emacs/patches/patch-ab << 'END-of-elib-emacs/patches/patch-ab' X--- elib.texi~ Mon Dec 11 09:50:55 1995 X+++ elib.texi Thu Feb 24 15:29:26 2000 X@@ -21,6 +21,10 @@ X @comment the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. X @setfilename elib.info X @settitle Elib - The Emacs Lisp Library X+@dircategory The Emacs editor and associated tools X+@direntry X+* ELIB: (elib). The Emacs Lisp Library. X+@end direntry X @setchapternewpage odd X @syncodeindex fn cp X END-of-elib-emacs/patches/patch-ab echo x - elib-emacs/Makefile sed 's/^X//' >elib-emacs/Makefile << 'END-of-elib-emacs/Makefile' X# New ports collection makefile for: Elib for GNU Emacs 19 X# Date created: 24 Feb 2000 X# Whom: OKAZAKI Tetsurou X# X# $FreeBSD$ X# X XPORTNAME= elib XPORTVERSION= 1.0 XCATEGORIES= devel elisp XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= emacs XPKGNAMESUFFIX= -${EMACS_PORT_NAME} X XMAINTAINER?= okazaki@be.to X X# setupel filename XPORT_SETUPEL= elib-startup.el X# document install directory by install-doc target XPORTDOCDIR= share/doc/elib X X# This is a master port. XPORTCLASS?= master X X# emacs port setup X.if (${PORTCLASS} == "master") XEMACS_PORT_NAME= emacs X.endif X X# target name for make build XALL_TARGET?= all X X.include X XPLIST_SUB+= EMACS_PACKAGESDIR=${EMACS_PACKAGESDIR} \ X PORTDOCDIR=${PORTDOCDIR} \ X PORT_SETUPEL=${PORT_SETUPEL} XMAKE_FLAGS+= EMACS="${EMACS_CMD} -q --no-site-file" \ X INSTALL_DATA="${INSTALL_DATA}" \ X MAKEINFO="makeinfo --no-split" \ X MKDIR="${MKDIR}" \ X prefix="${PREFIX}" X X.if defined(EMACS_PORT_NAME) X.if ${EMACS_MAJOR_VER} <= 19 XINSTALL_LOADPATHSETUP= yes XPKGMESSAGE= ${FILESDIR}/MESSAGE XPLIST_SUB+= LOADPATHSETUP:="" X.else XPLIST_SUB+= LOADPATHSETUP:="@comment " X.endif X.else X.BEGIN: X @${ECHO} "Error: Bad port." X @${ECHO} "You must define EMACS_PORT_NAME." X @${FALSE} X.endif X Xpost-build: X @${ECHO} "(provide 'elib-startup)" >> ${WRKSRC}/${PORT_SETUPEL} X Xpost-install: X.if defined(INSTALL_LOADPATHSETUP) X @${MAKE} setupel-install X.endif X.if !defined(NOPORTDOCS) X @${MAKE} doc-install X.endif X.if exists(${PKGMESSAGE}) X @${CAT} ${PKGMESSAGE} X.endif X Xdoc-install: X ${MKDIR} ${PREFIX}/${PORTDOCDIR} X cd ${WRKSRC} && \ X for i in ChangeLog NEWS README ; do \ X ${INSTALL_DATA} $${i} ${PREFIX}/${PORTDOCDIR}/ ; \ X done X Xsetupel-install: X ${INSTALL_DATA} ${WRKSRC}/${PORT_SETUPEL} \ X ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/ X X.include END-of-elib-emacs/Makefile echo c - elib-emacs20 mkdir -p elib-emacs20 > /dev/null 2>&1 echo x - elib-emacs20/Makefile sed 's/^X//' >elib-emacs20/Makefile << 'END-of-elib-emacs20/Makefile' X# New ports collection makefile for: Elib for GNU Emacs 20 X# Date created: 24 Feb 2000 X# Whom: OKAZAKI Tetsurou X# X# $FreeBSD$ X# X XMAINTAINER= okazaki@be.to X X# This is a slave port. XPORTCLASS= slave X XMASTERDIR= ${.CURDIR}/../../devel/elib-emacs X X# emacs port setup XEMACS_PORT_NAME= emacs20 X X.include <${MASTERDIR}/Makefile> END-of-elib-emacs20/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 Mon Sep 18 0:19:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id C469837B422 for ; Mon, 18 Sep 2000 00:19:37 -0700 (PDT) Received: by peorth.iteration.net (Postfix, from userid 1001) id 0AB6157319; Mon, 18 Sep 2000 02:19:51 -0500 (CDT) Date: Mon, 18 Sep 2000 02:19:51 -0500 From: "Michael C . Wu" To: Robert Cc: ports@FreeBSD.org, freebsd-taiwan-questions@freebsd.sinica.edu.tw Subject: Re: FreeBSD Port: zh-xcin-2.5.2p5 Message-ID: <20000918021951.A69512@peorth.iteration.net> Reply-To: "Michael C . Wu" Mail-Followup-To: "Michael C . Wu" , Robert , ports@FreeBSD.org, freebsd-taiwan-questions@freebsd.sinica.edu.tw References: <000601c02143$b14ccde0$034f15a3@mis> Mime-Version: 1.0 Content-Type: text/plain; charset="zh_TW.Big5" Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <000601c02143$b14ccde0$034f15a3@mis>; from s8617064@student.sjsmit.edu.tw on Mon, Sep 18, 2000 at 03:40:02PM +0800 X-FreeBSD-Header: This is a subliminal message from the vast FreeBSD conspiracy project. X-Operating-System: FreeBSD peorth.iteration.net 4.1-STABLE FreeBSD 4.1-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org please disregard this thread. Thank you. :) We will move the discussion to freebsd-taiwan-questions and help the user in Chinese. On Mon, Sep 18, 2000 at 03:40:02PM +0800, Robert scribbled: | ¤p§Ì·ÓµÛ/xcin-2.5/doc/SETUP¤¤ªº»¡©ú¤Î¤èªk¦w¸Ë¤Fxcin¡A¥B¨t²Î¤¤¤w¦w¸Ë¤Fdb-2.7. 7¡Bgettext-0.10.35¡Bkcfonts-1.05¡Blibtabe-0.1-6¡A¦ý¬O¸Ë§¹¤§«á¦n¹³ÁÙ¬O©Ç©Çªº¡A¥B¦bFAQ¤¤¦n¹³§ä¤£¨ì³o¼Ëªºª¬ªp¡A©Ò¥Hªþ¤W°T®§¡A½Ð±z«üÂI¡C | ./configure #configureªº°T®§¡A¦n¹³¨S¤°»ò°ÝÃD ½Ð·R¥Îcvsup ½Ð¥ý§ó·s±zªºports ½Ð·R¥Îports/chinese/xcin25 ÁÙ¦³¡A½Ð°Ý±zªºOS version¬O¤°»ò? uname -a¶K¤@¤U -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 0:37:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from toccata.fugue.com (toccata.fugue.com [204.152.186.142]) by hub.freebsd.org (Postfix) with ESMTP id 46C9E37B50C; Mon, 18 Sep 2000 00:33:42 -0700 (PDT) Received: from grosse.bisbee.fugue.com (206-97-58-207.ip.theriver.com [206.97.58.207]) by toccata.fugue.com (8.9.3/8.6.11) with ESMTP id UAA00584; Sat, 16 Sep 2000 20:56:42 -0700 (PDT) Received: from grosse.bisbee.fugue.com (localhost [127.0.0.1]) by grosse.bisbee.fugue.com (8.11.0/8.6.11) with ESMTP id e8I4c1V07634; Sun, 17 Sep 2000 21:38:11 -0700 (MST) Message-Id: <200009180438.e8I4c1V07634@grosse.bisbee.fugue.com> To: clefevre@citeweb.net Cc: freebsd-ports@freebsd.org, freebsd-security@freebsd.org Subject: Re: ports/dhcp3: memory hole in dhclient In-Reply-To: Message from Cyrille Lefevre of "Mon, 18 Sep 2000 00:45:04 +0200." <200009172245.AAA01823@gits.dyndns.org> Date: Sun, 17 Sep 2000 21:38:01 -0700 From: Ted Lemon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The current version of the software is 3.0b2pl4. I've fixed a number of memory leaks, although I can't promise you that I've fixed yours. _MelloN_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 0: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 C774B37B423 for ; Mon, 18 Sep 2000 00:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA87973; Mon, 18 Sep 2000 00:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 18 Sep 2000 00:50:03 -0700 (PDT) Message-Id: <200009180750.AAA87973@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Lars =?ISO-8859-1?Q?K=F6ller?= Subject: Re: ports/20975: update math/grace Reply-To: Lars =?ISO-8859-1?Q?K=F6ller?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20975; it has been noted by GNATS. From: Lars =?ISO-8859-1?Q?K=F6ller?= To: AMAKAWA Shuhei Cc: lars.koeller@uni-bielefeld.de, sobomax@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org, lkoeller@cc.fh-lippe.de, lars.koeller@uni-bielefeld.de Subject: Re: ports/20975: update math/grace Date: Mon, 18 Sep 2000 09:41:10 +0200 ---------- In reply to AMAKAWA Shuhei who wrote: = > Hello. > I saw your PR. > I can speculate about some of the reasons why your PR hasn't been > committed. > The biggest problem I think was this (among other things). > The new pdflib has a restrictive license and it's probably > unacceptable to build it in unconditionally. Ok, ok but then I expect to get a hint on this problem, however is = grace not very usable without pdf support (no working pdflatex to = compile native pdf documents)!! > (by the way pdflib3 port seems to be available now) This was not the case 6 weeks before > It is unlikely your PR is going to be committed. > How about sending a revised PR with an update to grace-5.1.2? > Any comments, committers? That's what I mean, now I have to redo nearly any of the work again = =2E.... not very motivating .... But we can talk about this if there is someone who will check/ commit my PR soon, and not after 6-8 weeks .... = I'm sure you can imagine, that there is more to do than porting for = /dev/null ;-) regards Lars -- = E-Mail: \ Lars K=F6ller (Unix Sysadmin) Lars.Koeller@Uni-Bielefeld.DE \ Computing Center lkoeller@cc.FH-Lippe.DE \ University of Bielefeld PGP-key: \ Germany http://www.pgp.net/pgpnet/www-key.html \ Tel: +49 521 106 4964 ----------- FreeBSD, what else? ---- 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 Sep 18 1:10: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 2C2D937B43E for ; Mon, 18 Sep 2000 01:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA92766; Mon, 18 Sep 2000 01:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from belle.rnoc.urc.ac.ru (belle.rnoc.urc.ac.ru [193.233.85.10]) by hub.freebsd.org (Postfix) with ESMTP id C647A37B423 for ; Mon, 18 Sep 2000 01:06:41 -0700 (PDT) Received: (from anton@localhost) by belle.rnoc.urc.ac.ru (8.11.0/8.9.3) id e8I85xA21927; Mon, 18 Sep 2000 14:05:59 +0600 (ESS) (envelope-from anton) Message-Id: <200009180805.e8I85xA21927@belle.rnoc.urc.ac.ru> Date: Mon, 18 Sep 2000 14:05:59 +0600 (ESS) From: anton@urc.ac.ru Reply-To: anton@urc.ac.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21343: New port: mbone/rat30 (rat-3.0.35), the stable branch of rat (robust audio tool) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21343 >Category: ports >Synopsis: New port: mbone/rat30 (rat-3.0.35), the stable branch of rat (robust audio tool) >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 Sep 18 01:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anton Voronin >Release: FreeBSD 4.1-STABLE i386 >Organization: Southern Ural State University, Chelyabinsk, Russia >Environment: >Description: RAT is a network audio tool that allows users to particpate in audio conferences over the internet. These can be between two participants directly, or between a group of participants on a common multicast group. RAT features sender based loss mitigation mechanisms and receiver based audio repair techniques to compensate for packet loss, and load adaption in response to host performance. This is a stable branche version. Works with half-duplex casrd as well. WWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/ >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: # # rat30 # rat30/Makefile # rat30/pkg # rat30/pkg/COMMENT # rat30/pkg/DESCR # rat30/pkg/PLIST # rat30/patches # rat30/patches/patch-aa # rat30/patches/patch-ab # rat30/files # rat30/files/md5 # echo c - rat30 mkdir -p rat30 > /dev/null 2>&1 echo x - rat30/Makefile sed 's/^X//' >rat30/Makefile << 'END-of-rat30/Makefile' X# New ports collection makefile for: rat X# Date created: 18 September 2000 X# Whom: anton X# X# $FreeBSD$ X# X XPORTNAME = rat XPORTVERSION = 3.0.35 X XTCL_VER=8.3 XTCL_SHORTVER=83 XTK_VER=8.3 XTK_SHORTVER=83 X XCATEGORIES = mbone tk${TK_SHORTVER} XMASTER_SITES = http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/3.0.35/ XWRKSRC = ${WRKDIR}/rat-3.0 X XMAINTAINER = anton@urc.ac.ru X XLIB_DEPENDS = tk${TK_SHORTVER}.1:${PORTSDIR}/x11-toolkits/tk${TK_SHORTVER} \ X tcl${TK_SHORTVER}.1:${PORTSDIR}/lang/tcl${TCL_SHORTVER} XUSE_XLIB = yes X XDEPENDS = ${PORTSDIR}/x11-toolkits/tk${TK_SHORTVER} \ X ${PORTSDIR}/lang/tcl${TCL_SHORTVER} X XMAN1 = rat.1 XMANCOMPRESSED = no XUSE_GMAKE = yes XMAKE_ARGS = TCL_VER=${TCL_VER} TCL_SHORTVER=${TCL_SHORTVER} TK_VER=${TK_VER} TK_SHORTVER=${TK_SHORTVER} X11BASE=${X11BASE} OSTYPE=FreeBSD X XALL_TARGET = bin/rat X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/bin/rat ${PREFIX}/bin/rat X ${INSTALL_MAN} ${WRKSRC}/man/man1/rat.1 ${PREFIX}/man/man1 X X.include END-of-rat30/Makefile echo c - rat30/pkg mkdir -p rat30/pkg > /dev/null 2>&1 echo x - rat30/pkg/COMMENT sed 's/^X//' >rat30/pkg/COMMENT << 'END-of-rat30/pkg/COMMENT' XMulticast and unicast robust audio conferencing tool X(stable branch, works with half-duplex cards as well) END-of-rat30/pkg/COMMENT echo x - rat30/pkg/DESCR sed 's/^X//' >rat30/pkg/DESCR << 'END-of-rat30/pkg/DESCR' XRAT is a network audio tool that allows users to particpate in Xaudio conferences over the internet. These can be between two Xparticipants directly, or between a group of participants on a Xcommon multicast group. RAT features sender based loss mitigation Xmechanisms and receiver based audio repair techniques to compensate Xfor packet loss, and load adaption in response to host performance. X XThis is a stable branche version. Works with half-duplex casrd as well. X XWWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/ END-of-rat30/pkg/DESCR echo x - rat30/pkg/PLIST sed 's/^X//' >rat30/pkg/PLIST << 'END-of-rat30/pkg/PLIST' Xbin/rat END-of-rat30/pkg/PLIST echo c - rat30/patches mkdir -p rat30/patches > /dev/null 2>&1 echo x - rat30/patches/patch-aa sed 's/^X//' >rat30/patches/patch-aa << 'END-of-rat30/patches/patch-aa' X*** src/auddev_freebsd.c.orig Wed Mar 24 16:22:19 1999 X--- src/auddev_freebsd.c Sat Sep 16 00:03:22 2000 X*************** X*** 89,102 **** X } X if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &mode) == -1) || (mode != AFMT_S16_LE)) { X printf("Device doesn't support 16bit linear format!\n"); X return -1; X } X if ((ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) == -1) || (stereo != 0)) { X printf("Device doesn't support mono!\n"); X return -1; X } X! if ((ioctl(audio_fd, SNDCTL_DSP_SPEED, &speed) == -1) || (speed != 8000)) { X printf("Device doesn't support 8kHz sampling!\n"); X return -1; X } X X--- 89,106 ---- X } X if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &mode) == -1) || (mode != AFMT_S16_LE)) { X printf("Device doesn't support 16bit linear format!\n"); X+ close(audio_fd); X return -1; X } X if ((ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) == -1) || (stereo != 0)) { X printf("Device doesn't support mono!\n"); X+ close(audio_fd); X return -1; X } X! // if ((ioctl(audio_fd, SNDCTL_DSP_SPEED, &speed) == -1) || (speed != 8000)) { X! if (ioctl(audio_fd, SNDCTL_DSP_SPEED, &speed) == -1){ X printf("Device doesn't support 8kHz sampling!\n"); X+ close(audio_fd); X return -1; X } X X*************** X*** 158,163 **** X--- 162,168 ---- X * be open to do this, so if we're passed -1 as a file-descriptor we open X * the device, do the ioctl, and then close it again... X */ X+ /* X snd_chan_param scp; X if (audio_fd == -1) { X audio_fd = audio_open_rw(O_RDONLY); X*************** X*** 174,179 **** X--- 179,197 ---- X if (ioctl(audio_fd, AIOSFMT, 0) == -1) { X return FALSE; X } X+ */ X+ int caps; X+ int was_defined = 1; X+ if (audio_fd == -1) { X+ audio_fd = audio_open_rw(O_RDWR); X+ was_defined = 0; X+ } X+ ioctl(audio_fd, SNDCTL_DSP_GETCAPS, &caps); X+ if ((caps & DSP_CAP_DUPLEX) == 0) { X+ if( was_defined == 0 ) audio_close(audio_fd); X+ return FALSE; X+ } X+ if( was_defined == 0 ) audio_close(audio_fd); X return TRUE; X } X END-of-rat30/patches/patch-aa echo x - rat30/patches/patch-ab sed 's/^X//' >rat30/patches/patch-ab << 'END-of-rat30/patches/patch-ab' X*** Makefile.orig Tue Sep 14 16:39:00 1999 X--- Makefile Mon Sep 18 13:30:23 2000 X*************** X*** 9,29 **** X # -DNDEBUG -DDEBUG -DTEST -DGSM -DDEBUG_MIX -DDEBUG_MEM X # -DDEBUG_RTP -DREPEAT X X! DEFS += -D$(OSTYPE) -D$(OSTYPE)_$(OSMVER) X CC = gcc X CFLAGS = -Wall -Werror -Wno-implicit-int $(INCS) $(DEFS) -g -O -fsigned-char X LDFLAGS= X- LDLIBS= $(LDLIBS) -lm X RANLIB = ranlib X RAT_HOME = $(PWD) X X GSMFLAGS = -DSASR -DFAST -DUSE_FLOAT_MUL X X! include Makefile_$(OSTYPE)_$(OSMVER) X X! BINDIR = bin/$(USER) X SRCDIR = src X! OBJDIR = objs/$(USER)/$(OSTYPE)_$(OSVERS) X OBJS = $(OBJDIR)/codec_encoder.o \ X $(OBJDIR)/codec_decoder.o \ X $(OBJDIR)/codec_lpc.o \ X--- 9,38 ---- X # -DNDEBUG -DDEBUG -DTEST -DGSM -DDEBUG_MIX -DDEBUG_MEM X # -DDEBUG_RTP -DREPEAT X X! DEFS += -D$(OSTYPE) X CC = gcc X CFLAGS = -Wall -Werror -Wno-implicit-int $(INCS) $(DEFS) -g -O -fsigned-char X LDFLAGS= X RANLIB = ranlib X RAT_HOME = $(PWD) X X GSMFLAGS = -DSASR -DFAST -DUSE_FLOAT_MUL X X! X11BASE ?= /usr/X11R6 X! TCL_VER ?= 8.2 X! TCL_SHORTVER ?= 82 X! TK_VER ?= 8.2 X! TK_SHORTVER ?= 82 X! TCL_HOME = /usr/local/include/tcl$(TCL_VER) X! TK_HOME = /usr/local/include/tk$(TK_VER) X! INCS = -I$(X11BASE)/include \ X! -I$(TCL_HOME)/generic -I$(TK_HOME)/generic X! LDLIBS = -L/usr/local/lib -L/usr/X11R6/lib \ X! -ltk$(TK_SHORTVER) -ltcl$(TCL_SHORTVER) -lXext -lX11 -lm X X! BINDIR = bin X SRCDIR = src X! OBJDIR = objs X OBJS = $(OBJDIR)/codec_encoder.o \ X $(OBJDIR)/codec_decoder.o \ X $(OBJDIR)/codec_lpc.o \ X*************** X*** 79,87 **** X $(OBJDIR)/crypt_random.o \ X $(OBJDIR)/md5c.o X X! $(BINDIR)/rat-$(OSTYPE)-$(OSVERS): $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(RATOBJS) X! rm -f $(BINDIR)/rat-$(OSTYPE)-$(OSVERS) X! $(CC) $(RATOBJS) $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(LDLIBS) $(LDFLAGS) -o $(BINDIR)/rat-$(OSTYPE)-$(OSVERS) X X $(OBJDIR)/%.o: $(SRCDIR)/%.c X $(CC) $(CFLAGS) $(GSMFLAGS) $(CRYPTFLAGS) -c $(SRCDIR)/$*.c -o $(OBJDIR)/$*.o X--- 88,96 ---- X $(OBJDIR)/crypt_random.o \ X $(OBJDIR)/md5c.o X X! $(BINDIR)/rat: $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(RATOBJS) X! rm -f $(BINDIR)/rat X! $(CC) $(RATOBJS) $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(LDLIBS) $(LDFLAGS) -o $(BINDIR)/rat X X $(OBJDIR)/%.o: $(SRCDIR)/%.c X $(CC) $(CFLAGS) $(GSMFLAGS) $(CRYPTFLAGS) -c $(SRCDIR)/$*.c -o $(OBJDIR)/$*.o X*************** X*** 134,139 **** X (cd ..; gtar zcvf rat-`date +%Y%m%d`.tgz rat-3.0) X X depend: X! makedepend $(DEFS) $(INCS) -f Makefile_$(OSTYPE)_$(OSMVER) $(SRCDIR)/*.[ch] X X X--- 143,148 ---- X (cd ..; gtar zcvf rat-`date +%Y%m%d`.tgz rat-3.0) X X depend: X! makedepend $(DEFS) $(INCS) $(SRCDIR)/*.[ch] X X END-of-rat30/patches/patch-ab echo c - rat30/files mkdir -p rat30/files > /dev/null 2>&1 echo x - rat30/files/md5 sed 's/^X//' >rat30/files/md5 << 'END-of-rat30/files/md5' XMD5 (rat-3.0.35.tar.gz) = fff6e4a4c9617c5b7ea80f63fda96a9a END-of-rat30/files/md5 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 Sep 18 1:31:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from intra.nextnode.com (intra.nextnode.com [210.63.239.194]) by hub.freebsd.org (Postfix) with ESMTP id AD84F37B43C for ; Mon, 18 Sep 2000 01:31:22 -0700 (PDT) Received: from chateau (chateau.nextnode.com [210.63.239.235]) by intra.nextnode.com (8.11.0/8.11.0) with SMTP id e8I8Ifn47370; Mon, 18 Sep 2000 16:18:57 +0800 (CST) Date: Mon, 18 Sep 2000 16:27:25 +0800 From: Foxfair Hu To: Ade Lovett Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/net/tintin++ Makefile ports/net/tintin++/files md5 ports/net/tintin++/patches patch-aa patch-ab ports/net/tintin++/pkg DESCR PLIST In-Reply-To: <200009171836.LAA36030@freefall.freebsd.org> References: <200009171836.LAA36030@freefall.freebsd.org> Message-Id: <39C5D1ED17C.E88BFOXFAIR@intra.nextnode.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver 1.25.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ade, My suggestion about this port is "Please back it out, v1.8.x is still under beta testing". You can make another port called tintin++-devel and upgrade net/tintin++ to v1.5pl9, which is the final stable version. Would you mind to do it? WWW: http://mail.newclear.net/tintin/archive.htm -Foxfair. On Sun, 17 Sep 2000 11:36:01 -0700 (PDT) Ade Lovett wrote: > ade 2000/09/17 11:36:01 PDT > > Modified files: > net/tintin++ Makefile > net/tintin++/files md5 > net/tintin++/patches patch-aa patch-ab > net/tintin++/pkg DESCR PLIST > Log: > Update to version 1.82 > [....] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 3: 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 C544037B423 for ; Mon, 18 Sep 2000 03:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA13260; Mon, 18 Sep 2000 03:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D874237B424; Mon, 18 Sep 2000 02:56:53 -0700 (PDT) Message-Id: <20000918095653.D874237B424@hub.freebsd.org> Date: Mon, 18 Sep 2000 02:56:53 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21344: ports/benchmark/netperf missing checksum Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21344 >Category: ports >Synopsis: ports/benchmark/netperf missing checksum >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 Sep 18 03:00:03 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: netperf now has a diff.gz file, but for this file no checksum has been recorded into files/md5. So you get an error about the missing checksum for netperf-21pl3-20000721.diff.gz >How-To-Repeat: Try a make checksum in ports/benchmark/netperf. >Fix: Simply generate a new md5 file and put it into CVS ? :-). I have not checked if the port builds. >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 Sep 18 3: 8: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 17BDC37B424 for ; Mon, 18 Sep 2000 03:08:05 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13axpq-000IYE-00; Mon, 18 Sep 2000 12:07:38 +0200 Date: Mon, 18 Sep 2000 12:07:38 +0200 From: Neil Blakey-Milner To: Matthew Emmerton Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Port Maintainers Message-ID: <20000918120737.A71258@mithrandr.moria.org> References: <002d01c0210a$beca4350$1200a8c0@zircon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <002d01c0210a$beca4350$1200a8c0@zircon>; from matt@gsicomp.on.ca on Sun, Sep 17, 2000 at 08:52:39PM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun 2000-09-17 (20:52), Matthew Emmerton wrote: > For some time now I've seen many requests come to the ports mailing list > which really should be handled by the maintainers of individual ports, not > the people who look after committing PRs. This is a list for porters, and for people who wish to discuss ports, not only for ports committers. > As usual, the standard response is "contact the port maintainer". At > first I wondered whether it was simply inexperience or ignorance that > caused people to turn to the ports list for assistance, but over the > last few months, I'm beginning to think whether the problem lies on > the other side of the equation with the maintainers themselves. I may be creating policy, but I prefer: If you want to chat about whether something is wrong with a port, send mail to the ports list, and Cc the maintainer. If you want to update or fix a port, send in a PR, and then forward it to the maintainer. If the maintainer ignores it (I'm trying to get tkgnats to show me "left alone too long" ports, but it's not that simple), then send mail to ports again, and CC the gnats-submit address. If you get no response from the ports list, bother your favourite committers, in order, over it, until someone does something. Feel free to make me your favourite committer. I _love_ non-mailing list email! (: > What I'm wondering if is there is any mechanism in place to ensure that the > support channel (e-mail to the port maintainer) remains open and valid. I don't think there's an automated one. I'm not sure an automated one is a good idea - we all get enough automated email. > I know that at least one port for which the maintainer's email address > bounces mail. There may also be some ports for which the designated > maintainers simply don't maintain the port anymore. Report those sorts of things immediately to the ports list. We'd like to sort those issues out. Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Mon Sep 18 3: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 6E56137B42C for ; Mon, 18 Sep 2000 03:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA15960; Mon, 18 Sep 2000 03:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CF14837B423; Mon, 18 Sep 2000 03:07:19 -0700 (PDT) Message-Id: <20000918100719.CF14837B423@hub.freebsd.org> Date: Mon, 18 Sep 2000 03:07:19 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21345: ports/biology/molden has a checksum error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21345 >Category: ports >Synopsis: ports/biology/molden has a checksum error >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 Sep 18 03:10:00 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: a fetch from the mastersite for ports/biology/molden gives checksum errors for both masterfiles. It looks like the mastersite has a newer or repackaged version. >How-To-Repeat: Do a make checksum without having the files in /usr/ports/distfiles. >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 Sep 18 3: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 D052A37B424 for ; Mon, 18 Sep 2000 03:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA17363; Mon, 18 Sep 2000 03:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7BA8837B423; Mon, 18 Sep 2000 03:16:41 -0700 (PDT) Message-Id: <20000918101641.7BA8837B423@hub.freebsd.org> Date: Mon, 18 Sep 2000 03:16:41 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21346: ports/biology/platon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21346 >Category: ports >Synopsis: ports/biology/platon >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 Sep 18 03:20: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: a fetch and make checksum gives a checksum error for platon.tar.gz. >How-To-Repeat: Try a make checksum without having the source-tarball in /usr/ports/distfiles. >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 Sep 18 3: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 43DFF37B422 for ; Mon, 18 Sep 2000 03:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA18324; Mon, 18 Sep 2000 03:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 18 Sep 2000 03:30:04 -0700 (PDT) Message-Id: <200009181030.DAA18324@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: James Housley Subject: Re: ports/21338: Update port: healthd - wrong md5 Reply-To: James Housley Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21338; it has been noted by GNATS. From: James Housley To: freebsd-gnats-submit@FreeBSD.org, jim@thehousleys.net Cc: Subject: Re: ports/21338: Update port: healthd - wrong md5 Date: Mon, 18 Sep 2000 06:23:42 -0400 Submitted by MAINTAINER. -- "...there's no idea that's so good you can't ruin it with a few well-placed idiots." -- Charles Spickman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 3: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 C9FED37B424 for ; Mon, 18 Sep 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA18314; Mon, 18 Sep 2000 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from grisu.evk-koeln.de (grisu.evk-koeln.de [194.77.188.194]) by hub.freebsd.org (Postfix) with ESMTP id 8CEF137B423 for ; Mon, 18 Sep 2000 03:23:16 -0700 (PDT) Received: from sauerbruch.evk-koeln.de([139.64.201.254]) (17312 bytes) by grisu.evk-koeln.de via sendmail with P:esmtp/R:inet_hosts/T:smtp (sender: ) id for ; Mon, 18 Sep 2000 12:23:15 +0200 (CEST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-14) Received: from localhost (16747 bytes) by sauerbruch.evk-koeln.de via sendmail with P:stdio/R:smart_host/T:smtp (sender: ) (ident using unix) id for ; Mon, 18 Sep 2000 12:23:13 +0200 (CEST) (Smail-3.2.0.107 1999-Sep-8 #1 built 2000-Jan-25) Message-Id: Date: Mon, 18 Sep 2000 12:23:13 +0200 (CEST) From: lamm@evk-koeln.de Reply-To: holger@eit.uni-kl.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21347: New port: graphics/avifile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21347 >Category: ports >Synopsis: New port: graphics/avifile >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 Sep 18 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Holger Lamm >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: >Description: avifile is an MPEG-4 (aka DivX) player >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: # # graphics/avifile # graphics/avifile/files # graphics/avifile/files/md5 # graphics/avifile/pkg # graphics/avifile/pkg/COMMENT # graphics/avifile/pkg/DESCR # graphics/avifile/pkg/PLIST # graphics/avifile/patches # graphics/avifile/patches/patch-aa # graphics/avifile/patches/patch-ab # graphics/avifile/patches/patch-ac # graphics/avifile/patches/patch-ad # graphics/avifile/Makefile # echo c - graphics/avifile mkdir -p graphics/avifile > /dev/null 2>&1 echo c - graphics/avifile/files mkdir -p graphics/avifile/files > /dev/null 2>&1 echo x - graphics/avifile/files/md5 sed 's/^X//' >graphics/avifile/files/md5 << 'END-of-graphics/avifile/files/md5' XMD5 (avifile-0.47.1.tar.gz) = edbad85f6c72d61f3a66d99c61620f39 XMD5 (binaries.zip) = 6df7c0a266ba6e8c022160605791644b END-of-graphics/avifile/files/md5 echo c - graphics/avifile/pkg mkdir -p graphics/avifile/pkg > /dev/null 2>&1 echo x - graphics/avifile/pkg/COMMENT sed 's/^X//' >graphics/avifile/pkg/COMMENT << 'END-of-graphics/avifile/pkg/COMMENT' XAn MPEG-4 (DivX) video player END-of-graphics/avifile/pkg/COMMENT echo x - graphics/avifile/pkg/DESCR sed 's/^X//' >graphics/avifile/pkg/DESCR << 'END-of-graphics/avifile/pkg/DESCR' XAn MPEG-4 (aka DivX) player built around the Windows binaries, Xbut does not need Wine. XThere is also a xmps plugin you can build (manually). END-of-graphics/avifile/pkg/DESCR echo x - graphics/avifile/pkg/PLIST sed 's/^X//' >graphics/avifile/pkg/PLIST << 'END-of-graphics/avifile/pkg/PLIST' Xinclude/avifile/audiodecoder.h Xinclude/avifile/audioencoder.h Xinclude/avifile/avifile.h Xinclude/avifile/avifmt.h Xinclude/avifile/aviplay.h Xinclude/avifile/aviutil.h Xinclude/avifile/config.h Xinclude/avifile/default.h Xinclude/avifile/except.h Xinclude/avifile/loader.h Xinclude/avifile/registry.h Xinclude/avifile/videodecoder.h Xinclude/avifile/videoencoder.h Xinclude/avifile/wine/basetsd.h Xinclude/avifile/wine/config.h Xinclude/avifile/wine/debugtools.h Xinclude/avifile/wine/driver.h Xinclude/avifile/wine/elfdll.h Xinclude/avifile/wine/heap.h Xinclude/avifile/wine/ldt.h Xinclude/avifile/wine/mmreg.h Xinclude/avifile/wine/module.h Xinclude/avifile/wine/msacm.h Xinclude/avifile/wine/msacmdrv.h Xinclude/avifile/wine/ntdef.h Xinclude/avifile/wine/pe_image.h Xinclude/avifile/wine/poppack.h Xinclude/avifile/wine/pshpack1.h Xinclude/avifile/wine/pshpack2.h Xinclude/avifile/wine/pshpack4.h Xinclude/avifile/wine/pshpack8.h Xinclude/avifile/wine/vfw.h Xinclude/avifile/wine/winbase.h Xinclude/avifile/wine/windef.h Xinclude/avifile/wine/windows.h Xinclude/avifile/wine/winerror.h Xinclude/avifile/wine/winestring.h Xinclude/avifile/wine/winnt.h Xinclude/avifile/wine/winreg.h Xinclude/avifile/wine/winuser.h X@dirrm include/avifile/wine X@dirrm include/avifile Xbin/aviplay Xbin/benchmark Xshare/avifile/open.ppm Xshare/avifile/pause.ppm Xshare/avifile/play.ppm Xshare/avifile/stop.ppm Xshare/avifile/test.png X@dirrm share/avifile Xlib/win32/ativcr2.dll Xlib/win32/divxa32.acm Xlib/win32/divxc32.dll Xlib/win32/divxc32f.dll Xlib/win32/i263_32.drv Xlib/win32/iccvid.dll Xlib/win32/ir32_32.dll Xlib/win32/ir41_32.dll Xlib/win32/ir41_qc.dll Xlib/win32/ir50_32.dll Xlib/win32/ir50_qc.dll Xlib/win32/mpg4c32.dll X@dirrm lib/win32 Xlib/libaviplay.so X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R END-of-graphics/avifile/pkg/PLIST echo c - graphics/avifile/patches mkdir -p graphics/avifile/patches > /dev/null 2>&1 echo x - graphics/avifile/patches/patch-aa sed 's/^X//' >graphics/avifile/patches/patch-aa << 'END-of-graphics/avifile/patches/patch-aa' X--- configure.orig Sat Sep 16 11:33:30 2000 X+++ configure Sat Sep 16 11:43:00 2000 X@@ -2302,7 +2302,7 @@ X X X USE_QT=1 X-USE_VIDCAP=1 X+USE_VIDCAP=0 X X # Check whether --enable-qt or --disable-qt was given. X if test "${enable_qt+set}" = set; then X@@ -2631,7 +2631,7 @@ X X CXXFLAGS="$CXXFLAGS -I$qt_incdir" X LDFLAGS="-L$qt_libdir $X_LDFLAGS" X-LIBS="$LIBS -lqt -lXext -lX11 $LIBSOCKET" X+LIBS="$LIBS -lqt2 -lXext -lX11 $LIBSOCKET" X X X ac_ext=C X--- player/Makefile.in.orig Sat Sep 16 11:33:26 2000 X+++ player/Makefile.in Sat Sep 16 11:43:46 2000 X@@ -7,7 +7,7 @@ X X X MOC=@MOC@ X-LIBS=@LIBS@ -lX11 -lXext -lqt -laviplay @DGA_LDADD@ @SDL_LIBS@ X+LIBS=@LIBS@ -lX11 -lXext -lqt2 -laviplay @DGA_LDADD@ @SDL_LIBS@ X LIB_DIRS=-L../lib @QT_LDFLAGS@ -L/usr/X11R6/lib -L/usr/local/lib X CDOPT=@CD_OPT@ X LDOPT=@LD_OPT@ X--- samples/benchmark/Makefile.in.orig Sat Sep 16 11:33:29 2000 X+++ samples/benchmark/Makefile.in Sat Sep 16 11:43:27 2000 X@@ -5,7 +5,7 @@ X CFLAGS=-I../../include -I/usr/X11R6/include @QT_INCLUDES@ @SDL_CFLAGS@ X X X-LIBS=@LIBS@ -lX11 -lXext -lqt -laviplay @DGA_LDADD@ @SDL_LIBS@ X+LIBS=@LIBS@ -lX11 -lXext -lqt2 -laviplay @DGA_LDADD@ @SDL_LIBS@ X LIB_DIRS=@QT_LDFLAGS@ -L/usr/X11R6/lib -L../../lib X X MOC=@MOC@ END-of-graphics/avifile/patches/patch-aa echo x - graphics/avifile/patches/patch-ab sed 's/^X//' >graphics/avifile/patches/patch-ab << 'END-of-graphics/avifile/patches/patch-ab' X--- lib/avifile/AviWrite.cpp.orig Mon Sep 11 15:40:31 2000 X+++ lib/avifile/AviWrite.cpp Wed Sep 13 20:52:55 2000 X@@ -19,7 +19,11 @@ X try X { X m_status=0; X+#ifdef O_LARGEFILE X m_fd=open(name, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, mask); X+#else X+ m_fd=open(name, O_WRONLY | O_CREAT | O_TRUNC, mask); X+#endif X if(m_fd==-1) X throw FATAL("Can't open file for writing"); X X@@ -203,7 +207,11 @@ X } X long long AviWriteFile::FileSize() X { X+#ifdef __Linux__ X return lseek64(m_fd, 0, SEEK_CUR); X+#else X+ return lseek(m_fd, 0, SEEK_CUR); X+#endif X } X X AviWriteStream::AviWriteStream X--- lib/videocodec/Module.h.orig Sat Sep 9 14:24:49 2000 X+++ lib/videocodec/Module.h Wed Sep 13 20:20:25 2000 X@@ -4,6 +4,10 @@ X #include X #include X #include X+#ifdef __FreeBSD__ X+#include X+#endif X+ X using namespace std; X X class VideoCodecControl; X--- player/renderer.cpp.orig Mon Sep 11 08:38:07 2000 X+++ player/renderer.cpp Fri Sep 15 20:22:55 2000 X@@ -11,6 +11,7 @@ X #ifdef __FreeBSD__ X #include X #include X+#include X #endif X #include X #include X--- lib/aviplay/aviutil.cpp.orig Sat Sep 16 13:49:08 2000 X+++ lib/aviplay/aviutil.cpp Sat Sep 16 13:54:06 2000 X@@ -28,16 +28,18 @@ X } X CPU_Freq::CPU_Freq() X { X- FILE *f = fopen ("/proc/cpuinfo", "r"); X char line[200]; X char model[200]="unknown"; X char flags[500]=""; X char *s,*value; X X+#ifdef __FreeBSD__ X+ freq=old_freq(); X+ cerr<graphics/avifile/patches/patch-ac << 'END-of-graphics/avifile/patches/patch-ac' X--- xmps-avi-plugin/Makefile.in.orig Sat Sep 16 14:13:04 2000 X+++ xmps-avi-plugin/Makefile.in Sat Sep 16 14:20:30 2000 X@@ -1,6 +1,6 @@ X-LIBS = -lstdc++ -L../lib -L@libdir@ -laviplay -lpthread @XMPS_LIBS@ X+LIBS = -lstdc++ -L../lib -L@libdir@ -laviplay -pthread @XMPS_LIBS@ X X-INCLUDES = -I. -I../include -I@includedir@/avifile @XMPS_CFLAGS@ X+INCLUDES = -I. -I../include -I@includedir@/avifile @XMPS_CFLAGS@ @SDL_CFLAGS@ X X all: avi_configure.o avi_codec.o X $(CC) -shared avi_configure.o avi_codec.o $(LIBS) -o libavi.so END-of-graphics/avifile/patches/patch-ac echo x - graphics/avifile/patches/patch-ad sed 's/^X//' >graphics/avifile/patches/patch-ad << 'END-of-graphics/avifile/patches/patch-ad' X--- lib/loader/ext.c.orig Sat Sep 16 17:02:10 2000 X+++ lib/loader/ext.c Sat Sep 16 17:02:14 2000 X@@ -7,7 +7,7 @@ X ********************************************************/ X #include X X-#include X+#include X #include X #include X #include X--- lib/loader/win32.c.orig Sat Sep 16 17:03:28 2000 X+++ lib/loader/win32.c Sat Sep 16 17:03:30 2000 X@@ -13,7 +13,7 @@ X #include "win32.h" X #include X #include X-#include X+#include X #include X #include X #include X--- lib/loader/driver.c.orig Sat Sep 16 17:04:30 2000 X+++ lib/loader/driver.c Sat Sep 16 17:04:32 2000 X@@ -1,6 +1,6 @@ X #include X #include X-#include X+#include X #include X #include X #include X--- lib/loader/resource.c.orig Sat Sep 16 17:07:41 2000 X+++ lib/loader/resource.c Sat Sep 16 17:08:00 2000 X@@ -253,6 +253,56 @@ X return RES_SizeofResource( hModule, hRsrc ); X } X X+/********************************************************************** X+ * LoadStringW (USER32.376) X+ */ X+INT WINAPI LoadStringW( HINSTANCE instance, UINT resource_id, X+ LPWSTR buffer, INT buflen ) X+{ X+ HGLOBAL hmem; X+ HRSRC hrsrc; X+ WCHAR *p; X+ int string_num; X+ int i; X+ X+ if (HIWORD(resource_id)==0xFFFF) /* netscape 3 passes this */ X+ resource_id = (UINT)(-((INT)resource_id)); X+ TRACE("instance = %04x, id = %04x, buffer = %08x, " X+ "length = %d\n", instance, (int)resource_id, (int) buffer, buflen); X+ X+ /* Use bits 4 - 19 (incremented by 1) as resourceid, mask out X+ * 20 - 31. */ X+ hrsrc = FindResourceW( instance, (LPCWSTR)(((resource_id>>4)&0xffff)+1), X+ RT_STRINGW ); X+ if (!hrsrc) return 0; X+ hmem = LoadResource( instance, hrsrc ); X+ if (!hmem) return 0; X+ X+ p = LockResource(hmem); X+ string_num = resource_id & 0x000f; X+ for (i = 0; i < string_num; i++) X+ p += *p + 1; X+ X+ TRACE("strlen = %d\n", (int)*p ); X+ X+ if (buffer == NULL) return *p; X+ i = min(buflen - 1, *p); X+ if (i > 0) { X+ memcpy(buffer, p + 1, i * sizeof (WCHAR)); X+ buffer[i] = (WCHAR) 0; X+ } else { X+ if (buflen > 1) { X+ buffer[0] = (WCHAR) 0; X+ return 0; X+ } X+#if 0 X+ WARN("Dont know why caller give buflen=%d *p=%d trying to obtain string '%s'\n", buflen, *p, p + 1); X+#endif X+ } X+ X+ TRACE("String loaded !\n"); X+ return i; X+} X X X /********************************************************************** X@@ -303,57 +353,6 @@ X HeapFree( GetProcessHeap(), 0, wbuf ); X X return retval; X-} X- X-/********************************************************************** X- * LoadStringW (USER32.376) X- */ X-INT WINAPI LoadStringW( HINSTANCE instance, UINT resource_id, X- LPWSTR buffer, INT buflen ) X-{ X- HGLOBAL hmem; X- HRSRC hrsrc; X- WCHAR *p; X- int string_num; X- int i; X- X- if (HIWORD(resource_id)==0xFFFF) /* netscape 3 passes this */ X- resource_id = (UINT)(-((INT)resource_id)); X- TRACE("instance = %04x, id = %04x, buffer = %08x, " X- "length = %d\n", instance, (int)resource_id, (int) buffer, buflen); X- X- /* Use bits 4 - 19 (incremented by 1) as resourceid, mask out X- * 20 - 31. */ X- hrsrc = FindResourceW( instance, (LPCWSTR)(((resource_id>>4)&0xffff)+1), X- RT_STRINGW ); X- if (!hrsrc) return 0; X- hmem = LoadResource( instance, hrsrc ); X- if (!hmem) return 0; X- X- p = LockResource(hmem); X- string_num = resource_id & 0x000f; X- for (i = 0; i < string_num; i++) X- p += *p + 1; X- X- TRACE("strlen = %d\n", (int)*p ); X- X- if (buffer == NULL) return *p; X- i = min(buflen - 1, *p); X- if (i > 0) { X- memcpy(buffer, p + 1, i * sizeof (WCHAR)); X- buffer[i] = (WCHAR) 0; X- } else { X- if (buflen > 1) { X- buffer[0] = (WCHAR) 0; X- return 0; X- } X-#if 0 X- WARN("Dont know why caller give buflen=%d *p=%d trying to obtain string '%s'\n", buflen, *p, p + 1); X-#endif X- } X- X- TRACE("String loaded !\n"); X- return i; X } X X /* Messages...used by FormatMessage32* (KERNEL32.something) X--- lib/videocodec/VideoDecoder.cpp.orig Sat Sep 16 17:11:41 2000 X+++ lib/videocodec/VideoDecoder.cpp Sat Sep 16 17:16:25 2000 X@@ -20,7 +20,6 @@ X #include X #include X #include X-#include X #include X #include X #include X--- lib/avifile/Cache.h.orig Sat Sep 16 17:22:11 2000 X+++ lib/avifile/Cache.h Sat Sep 16 17:22:14 2000 X@@ -2,7 +2,7 @@ X #include X #define _LARGEFILE64_SOURCE X #include X-#include X+#include X #include X #include X #include X--- lib/avifile/FastReadStream.cpp.orig Sat Sep 16 17:23:45 2000 X+++ lib/avifile/FastReadStream.cpp Sat Sep 16 17:23:47 2000 X@@ -8,7 +8,7 @@ X #include X #endif X #include X-#include X+#include X X #ifdef __FreeBSD__ X #define lseek64 lseek X--- lib/avifile/AviRead.h.orig Sat Sep 16 17:25:10 2000 X+++ lib/avifile/AviRead.h Sat Sep 16 17:25:13 2000 X@@ -10,7 +10,7 @@ X #include X #include X #include X-#include X+#include X #include X #include X #include X--- lib/avifile/AviWrite.h.orig Sat Sep 16 17:26:35 2000 X+++ lib/avifile/AviWrite.h Sat Sep 16 17:26:37 2000 X@@ -11,7 +11,7 @@ X #include X #include X #include X-#include X+#include X #include X #include X #include X--- samples/benchmark/main.cpp.orig Sat Sep 16 17:28:22 2000 X+++ samples/benchmark/main.cpp Sat Sep 16 17:28:24 2000 X@@ -9,7 +9,6 @@ X #include X X #include X-#include X #include X #include X #include X--- samples/benchmark/renderer.cpp.orig Sat Sep 16 17:29:28 2000 X+++ samples/benchmark/renderer.cpp Sat Sep 16 17:29:29 2000 X@@ -14,7 +14,7 @@ X #include X #include X X-#include X+#include X #include X #include "renderer.h" X #include "RegAccess.h" X--- player/renderer.cpp.orig Sat Sep 16 22:31:56 2000 X+++ player/renderer.cpp Sat Sep 16 22:32:02 2000 X@@ -16,7 +16,7 @@ X #include X #include X X-#include X+#include X #include X #include "renderer.h" X #include "RegAccess.h" END-of-graphics/avifile/patches/patch-ad echo x - graphics/avifile/Makefile sed 's/^X//' >graphics/avifile/Makefile << 'END-of-graphics/avifile/Makefile' X# New ports collection makefile for: avifile X# Date created: 16 September 2000 X# Whom: Holger Lamm X# X# $FreeBSD$ X# X XPORTNAME= avifile XPORTVERSION= 0.47.1 XCATEGORIES= graphics XMASTER_SITES= http://divx.euro.ru/ XDISTFILES= avifile-${PORTVERSION}${EXTRACT_SUFX} binaries.zip XEXTRACT_ONLY= avifile-${PORTVERSION}${EXTRACT_SUFX} X XMAINTAINER= holger@eit.uni-kl.de X XLIB_DEPENDS= qt2.4:${PORTSDIR}/x11-toolkits/qt22 \ X SDL-1.1.2:${PORTSDIR}/devel/sdl-devel XBUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip X XONLY_FOR_ARCHS= i386 XUSE_GMAKE= yes XUSE_XLIB= yes XHAS_CONFIGURE= yes X XSDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config XMOC?= ${X11BASE}/bin/moc2 X XCONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \ X MOC="${MOC}" XCONFIGURE_ARGS= --enable-mmx \ X --with-qt-includes=${X11BASE}/include/qt2 \ X --with-win32-path=${LOCALBASE}/lib/win32 X Xpre-install: X unzip ${DISTDIR}/binaries.zip -d ${LOCALBASE}/lib/win32 X strip ${WRKSRC}/bin/aviplay ${WRKSRC}/bin/benchmark X.include END-of-graphics/avifile/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 Mon Sep 18 3:42: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 64C0D37B422; Mon, 18 Sep 2000 03:42:11 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA19892; Mon, 18 Sep 2000 03:42:11 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 03:42:11 -0700 (PDT) From: Message-Id: <200009181042.DAA19892@freefall.freebsd.org> To: jim@thehousleys.net, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21338: Update port: healthd - wrong md5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: healthd - wrong md5 State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Sep 18 03:40:51 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21338 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 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 8A5A137B423 for ; Mon, 18 Sep 2000 03:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA20745; Mon, 18 Sep 2000 03:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D530337B422; Mon, 18 Sep 2000 03:40:04 -0700 (PDT) Message-Id: <20000918104004.D530337B422@hub.freebsd.org> Date: Mon, 18 Sep 2000 03:40:04 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21348: ports/devel/pccts has a checksum error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21348 >Category: ports >Synopsis: ports/devel/pccts has a checksum error >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 Sep 18 03:50: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: a new fetch and checksum for ports/devel/pccts gives a checksum error. The fetched file has a date from 11 Sep. but the files under ports/devel/pccts are around 1. April. I don't know if a make makesum is enough and the checkin of the md5 file or if the source tarball has changed. >How-To-Repeat: Try a make fetch and make checksum without the tarball in /usr/ports/distfiles. >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 Sep 18 3: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 A1CD337B43C for ; Mon, 18 Sep 2000 03:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA20754; Mon, 18 Sep 2000 03:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from grisu.evk-koeln.de (grisu.evk-koeln.de [194.77.188.194]) by hub.freebsd.org (Postfix) with ESMTP id 0C9BA37B424 for ; Mon, 18 Sep 2000 03:45:54 -0700 (PDT) Received: from sauerbruch.evk-koeln.de([139.64.201.254]) (10623 bytes) by grisu.evk-koeln.de via sendmail with P:esmtp/R:inet_hosts/T:smtp (sender: ) id for ; Mon, 18 Sep 2000 12:45:53 +0200 (CEST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-14) Received: from localhost (10058 bytes) by sauerbruch.evk-koeln.de via sendmail with P:stdio/R:smart_host/T:smtp (sender: ) (ident using unix) id for ; Mon, 18 Sep 2000 12:45:52 +0200 (CEST) (Smail-3.2.0.107 1999-Sep-8 #1 built 2000-Jan-25) Message-Id: Date: Mon, 18 Sep 2000 12:45:52 +0200 (CEST) From: lamm@evk-koeln.de Reply-To: holger@flatline.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21349: Update port: mail/pgp4pine 1.74 -> 1.75.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21349 >Category: ports >Synopsis: Update port: mail/pgp4pine 1.74 -> 1.75.6 >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 Sep 18 03:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Holger Lamm >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: >Description: Updated. New files: patches/patch-ac, patch-ad This is a diff, I think that is what you need for updates (?) >How-To-Repeat: >Fix: diff -Nur mail/pgp4pine.old/Makefile mail/pgp4pine/Makefile --- mail/pgp4pine.old/Makefile Tue Apr 18 09:58:25 2000 +++ mail/pgp4pine/Makefile Wed Aug 30 00:37:20 2000 @@ -1,18 +1,22 @@ # New ports collection makefile for: pgp4pine +# Version required: 1.75-6 # Date created: 29 February 2000 # Whom: Holger Lamm # # $FreeBSD: ports/mail/pgp4pine/Makefile,v 1.3 2000/04/13 20:00:26 cpiazza Exp $ # -PORTNAME= pgp4pine -PORTVERSION= 1.74 +DISTNAME= ${PORTNAME}-${MAJOR}-${PATCHLEVEL} CATEGORIES= mail MASTER_SITES= http://pgp4pine.flatline.de/ -EXTRACT_SUFX= .tgz MAINTAINER= holger@flatline.de +PORTNAME= pgp4pine +MAJOR= 1.75 +PATCHLEVEL= 6 +PORTVERSION= ${MAJOR}.${PATCHLEVEL} +WRKSRC= ${WRKDIR}/${PORTNAME}-${MAJOR} MAN1= pgp4pine.1 GNU_CONFIGURE= yes diff -Nur mail/pgp4pine.old/files/md5 mail/pgp4pine/files/md5 --- mail/pgp4pine.old/files/md5 Tue Feb 29 08:59:35 2000 +++ mail/pgp4pine/files/md5 Wed Aug 30 00:37:20 2000 @@ -1 +1 @@ -MD5 (pgp4pine-1.74.tgz) = 9f044176ff5ef58ed94c8edd94cac99e +MD5 (pgp4pine-1.75-6.tar.gz) = b1fb3c57d8f5a0d10a7ac38920eb073d diff -Nur mail/pgp4pine.old/patches/patch-aa mail/pgp4pine/patches/patch-aa --- mail/pgp4pine.old/patches/patch-aa Tue Feb 29 08:59:36 2000 +++ mail/pgp4pine/patches/patch-aa Mon Sep 18 12:30:33 2000 @@ -1,88 +1,11 @@ ---- ./pgp4pine/docs/Makefile.am.org Sat Jan 15 00:09:31 2000 -+++ ./pgp4pine/docs/Makefile.am Sat Jan 15 23:12:06 2000 -@@ -1,7 +1,7 @@ - ####### kdevelop will overwrite this part!!! (begin)########## +--- configure.orig Thu Aug 24 09:25:11 2000 ++++ configure Thu Aug 24 09:35:39 2000 +@@ -728,7 +728,7 @@ - SUBDIRS = en --docdir = $(prefix)/doc -+docdir = $(prefix)/share/doc - EXTRA_DIST = INSTALL.TXT README.TXT ---- ./pgp4pine/docs/Makefile.in.org Sat Jan 15 06:36:46 2000 -+++ ./pgp4pine/docs/Makefile.in Sat Jan 15 23:12:26 2000 -@@ -66,7 +66,7 @@ - VERSION = @VERSION@ - - SUBDIRS = en --docdir = $(prefix)/doc -+docdir = $(prefix)/share/doc - - EXTRA_DIST = INSTALL.TXT README.TXT - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs ---- ./pgp4pine/docs/en/Makefile.am.org Sat Jan 15 00:10:15 2000 -+++ ./pgp4pine/docs/en/Makefile.am Sat Jan 15 23:14:00 2000 -@@ -1,6 +1,6 @@ - ####### kdevelop will overwrite this part!!! (begin)########## - --docdir = $(prefix)/doc -+docdir = $(prefix)/share/doc - GZIP = gzip - EXTRA_DIST = FAQ LICENSE PGP_MIME pgp4pine.1.gz pgp4pinerc - -@@ -8,8 +8,6 @@ - $(mkinstalldirs) $(docdir)/pgp4pine/ - $(INSTALL_DATA) FAQ $(docdir)/pgp4pine/FAQ - $(mkinstalldirs) $(docdir)/pgp4pine/ -- $(INSTALL_DATA) LICENSE $(docdir)/pgp4pine/LICENSE -- $(mkinstalldirs) $(docdir)/pgp4pine/ - $(INSTALL_DATA) PGP_MIME $(docdir)/pgp4pine/PGP_MIME - $(mkinstalldirs) $(mandir)/man1/ - $(INSTALL_DATA) pgp4pine.1 $(mandir)/man1/pgp4pine.1 -@@ -19,7 +17,6 @@ - - uninstall-local: - -rm -f $(docdir)/pgp4pine/FAQ -- -rm -f $(docdir)/pgp4pine/LICENSE - -rm -f $(docdir)/pgp4pine/PGP_MIME - -rm -f $(mandir)/man1/pgp4pine.1.gz - -rm -f $(docdir)/pgp4pine/example.pgp4pinerc ---- ./pgp4pine/docs/en/Makefile.in.org Sat Jan 15 06:36:54 2000 -+++ ./pgp4pine/docs/en/Makefile.in Sat Jan 15 23:14:11 2000 -@@ -65,7 +65,7 @@ - RANLIB = @RANLIB@ - VERSION = @VERSION@ - --docdir = $(prefix)/doc -+docdir = $(prefix)/share/doc - GZIP = gzip - EXTRA_DIST = FAQ LICENSE PGP_MIME pgp4pine.1.gz pgp4pinerc - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -@@ -173,8 +173,6 @@ - $(mkinstalldirs) $(docdir)/pgp4pine/ - $(INSTALL_DATA) FAQ $(docdir)/pgp4pine/FAQ - $(mkinstalldirs) $(docdir)/pgp4pine/ -- $(INSTALL_DATA) LICENSE $(docdir)/pgp4pine/LICENSE -- $(mkinstalldirs) $(docdir)/pgp4pine/ - $(INSTALL_DATA) PGP_MIME $(docdir)/pgp4pine/PGP_MIME - $(mkinstalldirs) $(mandir)/man1/ - $(INSTALL_DATA) pgp4pine.1 $(mandir)/man1/pgp4pine.1 -@@ -184,7 +182,6 @@ - - uninstall-local: - -rm -f $(docdir)/pgp4pine/FAQ -- -rm -f $(docdir)/pgp4pine/LICENSE - -rm -f $(docdir)/pgp4pine/PGP_MIME - -rm -f $(mandir)/man1/pgp4pine.1.gz - -rm -f $(docdir)/pgp4pine/example.pgp4pinerc ---- ./pgp4pine/docs/en/pgp4pine.1.in.org Sat Jan 15 03:54:18 2000 -+++ ./pgp4pine/docs/en/pgp4pine.1.in Sat Jan 15 23:15:33 2000 -@@ -25,7 +25,7 @@ - - .TP 3 - 0. --Open your ~/.pgp4pinerc (if you don't have one, run "cp @prefix@/doc/pgp4pinerc ~/.pgp4pinerc") and edit it. -+Open your ~/.pgp4pinerc (if you don't have one, run "cp @prefix@/share/doc/pgp4pinerc ~/.pgp4pinerc") and edit it. - .TP - 1. - In pine, go into Setup, then Configuration. +-CFLAGS="-O" ++#CFLAGS="-O" + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 diff -Nur mail/pgp4pine.old/patches/patch-ab mail/pgp4pine/patches/patch-ab --- mail/pgp4pine.old/patches/patch-ab Tue Feb 29 08:59:37 2000 +++ mail/pgp4pine/patches/patch-ab Mon Sep 18 12:31:01 2000 @@ -1,11 +1,40 @@ ---- configure.orig Fri Jan 14 21:15:10 2000 -+++ configure Mon Feb 28 23:27:54 2000 -@@ -779,7 +779,7 @@ +--- pgp4pine/docs/en/Makefile.in.orig Thu Aug 24 09:25:11 2000 ++++ pgp4pine/docs/en/Makefile.in Thu Aug 24 09:31:41 2000 +@@ -59,6 +59,7 @@ + PACKAGE = @PACKAGE@ + RANLIB = @RANLIB@ + VERSION = @VERSION@ ++docdir = $(prefix)/share/doc + EXTRA_DIST = FAQ LICENSE PGP_MIME pgp4pine.1 pgp4pinerc + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +@@ -161,20 +162,20 @@ --CFLAGS=-O -+#CFLAGS=-O - # Extract the first word of "gcc", so it can be a program name with args. - set dummy gcc; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 + install-data-local: +- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ +- $(INSTALL_DATA) FAQ $(prefix)/doc/pgp4pine/FAQ +- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ +- $(INSTALL_DATA) PGP_MIME $(prefix)/doc/pgp4pine/PGP_MIME ++ $(mkinstalldirs) $(docdir)/pgp4pine/ ++ $(INSTALL_DATA) FAQ $(docdir)/pgp4pine/FAQ ++ $(mkinstalldirs) $(docdir)/pgp4pine/ ++ $(INSTALL_DATA) PGP_MIME $(docdir)/pgp4pine/PGP_MIME + $(mkinstalldirs) $(mandir)/man1/ + $(INSTALL_DATA) pgp4pine.1 $(mandir)/man1/pgp4pine.1 +- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ +- $(INSTALL_DATA) pgp4pinerc $(prefix)/doc/pgp4pine/example.pgp4pinerc ++ $(mkinstalldirs) $(docdir)/pgp4pine/ ++ $(INSTALL_DATA) pgp4pinerc $(docdir)/pgp4pine/example.pgp4pinerc + + uninstall-local: +- -rm -f $(prefix)/doc/pgp4pine/FAQ +- -rm -f $(prefix)/doc/pgp4pine/PGP_MIME ++ -rm -f $(docdir)/pgp4pine/FAQ ++ -rm -f $(docdir)/pgp4pine/PGP_MIME + -rm -f $(mandir)/man1/pgp4pine.1 +- -rm -f $(prefix)/doc/pgp4pine/example.pgp4pinerc ++ -rm -f $(docdir)/pgp4pine/example.pgp4pinerc + + ####### kdevelop will overwrite this part!!! (end)############ + diff -Nur mail/pgp4pine.old/patches/patch-ac mail/pgp4pine/patches/patch-ac --- mail/pgp4pine.old/patches/patch-ac Thu Jan 1 01:00:00 1970 +++ mail/pgp4pine/patches/patch-ac Mon Sep 18 12:31:35 2000 @@ -0,0 +1,11 @@ +--- pgp4pine/docs/en/pgp4pine.1.in.orig Thu Aug 24 09:25:11 2000 ++++ pgp4pine/docs/en/pgp4pine.1.in Thu Aug 24 09:33:25 2000 +@@ -25,7 +25,7 @@ + + .TP 3 + 0. +-Open your ~/.pgp4pinerc (if you don't have one, copy it from @prefix@/doc/pgp4pine/pgp4pinerc or @prefix@/doc/packages/pgp4pine/pgp4pinerc and rename it to .pgp4pinerc and edit it. ++Open your ~/.pgp4pinerc (if you don't have one, copy it from @prefix@/share/doc/pgp4pine/pgp4pinerc, rename it to .pgp4pinerc and edit it. + .TP + 1. + In pine, go into Setup, then Configuration. diff -Nur mail/pgp4pine.old/patches/patch-ad mail/pgp4pine/patches/patch-ad --- mail/pgp4pine.old/patches/patch-ad Thu Jan 1 01:00:00 1970 +++ mail/pgp4pine/patches/patch-ad Mon Sep 18 12:32:15 2000 @@ -0,0 +1,30 @@ +--- Makefile.in.orig Tue Aug 8 22:13:03 2000 ++++ Makefile.in Thu Aug 24 09:56:04 2000 +@@ -59,6 +59,7 @@ + PACKAGE = @PACKAGE@ + RANLIB = @RANLIB@ + VERSION = @VERSION@ ++docdir = $(prefix)/share/doc + + SUBDIRS = pgp4pine + +@@ -335,14 +336,13 @@ + + + install-data-local: +- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ +- $(INSTALL_DATA) INSTALL $(prefix)/doc/pgp4pine/INSTALL +- $(mkinstalldirs) $(prefix)/doc/pgp4pine/ +- $(INSTALL_DATA) README $(prefix)/doc/pgp4pine/README ++ $(mkinstalldirs) $(docdir)/pgp4pine/ ++ $(INSTALL_DATA) INSTALL $(docdir)/pgp4pine/INSTALL ++ $(INSTALL_DATA) README $(docdir)/pgp4pine/README + + uninstall-local: +- -rm -f $(prefix)/doc/pgp4pine/INSTALL +- -rm -f $(prefix)/doc/pgp4pine/README ++ -rm -f $(docdir)/pgp4pine/INSTALL ++ -rm -f $(docdir)/pgp4pine/README + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nur mail/pgp4pine.old/pkg/MESSAGE mail/pgp4pine/pkg/MESSAGE --- mail/pgp4pine.old/pkg/MESSAGE Tue Feb 29 08:59:38 2000 +++ mail/pgp4pine/pkg/MESSAGE Wed Aug 30 00:37:20 2000 @@ -1,3 +1,2 @@ You got to manually set up Pine to use pgp4pine! Read /usr/share/doc/pgp4pine/INSTALL.TXT to know how ! - diff -Nur mail/pgp4pine.old/pkg/PLIST mail/pgp4pine/pkg/PLIST --- mail/pgp4pine.old/pkg/PLIST Tue Feb 29 08:59:38 2000 +++ mail/pgp4pine/pkg/PLIST Wed Aug 30 00:37:21 2000 @@ -1,7 +1,7 @@ bin/pgp4pine share/doc/pgp4pine/FAQ -share/doc/pgp4pine/INSTALL.TXT +share/doc/pgp4pine/INSTALL share/doc/pgp4pine/PGP_MIME -share/doc/pgp4pine/README.TXT +share/doc/pgp4pine/README share/doc/pgp4pine/example.pgp4pinerc @dirrm share/doc/pgp4pine >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 Sep 18 4:19:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 9F75937B422 for ; Mon, 18 Sep 2000 04:19:19 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id NAA53958; Mon, 18 Sep 2000 13:19:12 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Doug Barton Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21296: [PATCH] INN port is outdated References: <200009161330.GAA18677@freefall.freebsd.org> <39C3FA43.3F10BA7F@gorean.org> <39C53BC1.C7D5E087@gorean.org> From: Dag-Erling Smorgrav Date: 18 Sep 2000 13:19:12 +0200 In-Reply-To: Doug Barton's message of "Sun, 17 Sep 2000 14:46:41 -0700" Message-ID: Lines: 9 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Doug Barton writes: > I still get exactly the same errors building on -current from friday > that I described in the PR. With INN 2.2.2, perhaps, but 2.3.0 works fine. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 4: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 3835E37B43C for ; Mon, 18 Sep 2000 04:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA29160; Mon, 18 Sep 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 07B0537B424; Mon, 18 Sep 2000 04:19:00 -0700 (PDT) Message-Id: <20000918111900.07B0537B424@hub.freebsd.org> Date: Mon, 18 Sep 2000 04:19:00 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21351: ports/emulators/bfe sourcetarball no longer exists Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21351 >Category: ports >Synopsis: ports/emulators/bfe sourcetarball no longer exists >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 Sep 18 04:20: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: a fetch for bfe-991102.tgz fails. The given tarball is no longer available on the mastersites. There is now a newer version available from the mastersite, so maybe an update of the port is necessary :-) >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 Sep 18 4: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 1B76B37B424 for ; Mon, 18 Sep 2000 04:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA29151; Mon, 18 Sep 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0E15737B422; Mon, 18 Sep 2000 04:11:31 -0700 (PDT) Message-Id: <20000918111131.0E15737B422@hub.freebsd.org> Date: Mon, 18 Sep 2000 04:11:31 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21350: ports/editors/dedit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21350 >Category: ports >Synopsis: ports/editors/dedit >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 Sep 18 04:20:00 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: the source tarball dedit_0.5.10.tar.gz seems to be no longer available on the mastersite. I found 0.6.0 at the given location and 0.5.9 under the stable branch. But no 0.5.10. >How-To-Repeat: Try a make fetch without the file in /usr/ports/distfiles. >Fix: Either an upgrade of the port to the 0.6.0 release. Or another mastersite who carries the 0.5.10 release. >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 Sep 18 4:57:54 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 AF4B037B422; Mon, 18 Sep 2000 04:57:51 -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 OAA21383; Mon, 18 Sep 2000 14:04:55 +0200 Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id OAA59566; Mon, 18 Sep 2000 14:01:51 +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: freebsd-ports@FreeBSD.org Cc: jmz@FreeBSD.org Subject: Re: cvs commit: ports/math/numpy Makefile ports/math/numpy/patches patch-setup.py References: <200009181138.EAA31788@freefall.freebsd.org> From: Thomas Gellekum In-Reply-To: Thomas Gellekum's message of "Mon, 18 Sep 2000 04:38:00 -0700 (PDT)" Date: 18 Sep 2000 14:01:50 +0200 Message-ID: Lines: 12 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 Thomas Gellekum writes: > Link against libg2c, so the lapack_lite module actually works. I think the real fix is to add LDADD+= g2c DPADD+= g2c to lapack's makefiles. Opinions? tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 5: 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 CC46F37B423 for ; Mon, 18 Sep 2000 05:00:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA34915; Mon, 18 Sep 2000 05:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id F030237B424 for ; Mon, 18 Sep 2000 04:57:17 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8IBvH400589 for ; Mon, 18 Sep 2000 07:57:17 -0400 (EDT) Message-Id: Date: Mon, 18 Sep 2000 07:57:17 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21352: new port x11/wrapper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21352 >Category: ports >Synopsis: new port x11/wrapper >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 Sep 18 05:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: This program runs an X server after sanity-checking the environment and any options passed to it. It is meant to enhance security on multi-user systems running XFree86 4, where the ability to use a startx script is needed. If you have XFree86 3, do not install this: you do not need it and it will not work. If you have no untrusted users or always run the X server from xdm, you do not need this (in the latter case, just take the suid bit off your X server). >How-To-Repeat: N/A >Fix: http://jpj.net/~trevor/freebsd/ports/wrapper.shar >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 Sep 18 5: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 A635B37B423 for ; Mon, 18 Sep 2000 05:20:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA39449; Mon, 18 Sep 2000 05:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from neva.vlink.ru (neva.vlink.ru [195.239.222.8]) by hub.freebsd.org (Postfix) with ESMTP id 47B7B37B423 for ; Mon, 18 Sep 2000 05:15:51 -0700 (PDT) Received: by neva.vlink.ru (Postfix, from userid 1000) id 3E9019BAC5; Mon, 18 Sep 2000 16:15:49 +0400 (MSD) Message-Id: <20000918121549.3E9019BAC5@neva.vlink.ru> Date: Mon, 18 Sep 2000 16:15:49 +0400 (MSD) From: dsh@vlink.ru Reply-To: dsh@neva.vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21353: update www/p5-HTML-Mason to 0.89 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21353 >Category: ports >Synopsis: update www/p5-HTML-Mason to 0.89 >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 Sep 18 05:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: diff -Nru p5-HTML-Mason.orig/Makefile p5-HTML-Mason/Makefile --- p5-HTML-Mason.orig/Makefile Tue Sep 12 14:14:44 2000 +++ p5-HTML-Mason/Makefile Fri Sep 15 13:06:19 2000 @@ -2,11 +2,11 @@ # Date created: 31 May 2000 # Whom: Denis Shaposhnikov # -# $FreeBSD: ports/www/p5-HTML-Mason/Makefile,v 1.4 2000/09/12 09:05:24 sobomax Exp $ +# $FreeBSD: ports/www/p5-HTML-Mason/Makefile,v 1.3 2000/09/01 02:47:27 kevlo Exp $ # PORTNAME= HTML-Mason -PORTVERSION= 0.87 +PORTVERSION= 0.89 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= HTML @@ -16,17 +16,15 @@ RUN_DEPENDS= ${SITE_PERL}/MLDBM.pm:${PORTSDIR}/databases/p5-MLDBM +PERL_CONFIGURE= yes SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/ -USE_PERL5= yes MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Bundle::HTML::Mason.3 HTML::Mason.3 HTML::Mason::Admin.3 \ HTML::Mason::ApacheHandler.3 HTML::Mason::Commands.3 \ HTML::Mason::Component.3 HTML::Mason::Components.3 \ HTML::Mason::Devel.3 HTML::Mason::Interp.3 \ - HTML::Mason::Parser.3 HTML::Mason::Request.3 - -do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + HTML::Mason::MethodMaker.3 HTML::Mason::Parser.3 \ + HTML::Mason::Request.3 .include diff -Nru p5-HTML-Mason.orig/files/md5 p5-HTML-Mason/files/md5 --- p5-HTML-Mason.orig/files/md5 Tue Sep 12 14:14:44 2000 +++ p5-HTML-Mason/files/md5 Fri Sep 15 13:07:35 2000 @@ -1 +1 @@ -MD5 (HTML-Mason-0.87.tar.gz) = d5cffa74a749b2530daaca6a4ab7caf6 +MD5 (HTML-Mason-0.89.tar.gz) = d03e77cd42b6995eefeeccb3a0d0b541 diff -Nru p5-HTML-Mason.orig/pkg/PLIST p5-HTML-Mason/pkg/PLIST --- p5-HTML-Mason.orig/pkg/PLIST Tue Sep 12 14:14:45 2000 +++ p5-HTML-Mason/pkg/PLIST Fri Sep 1 14:14:34 2000 @@ -17,6 +17,7 @@ lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/FakeApache.pm lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/Interp.pm lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/Interp.pod +lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/MethodMaker.pm lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/Parser.pm lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/Parser.pod lib/perl5/site_perl/%%PERL_VER%%/HTML/Mason/Preview.pm >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 Sep 18 5: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 3A23837B423 for ; Mon, 18 Sep 2000 05:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA44145; Mon, 18 Sep 2000 05:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 18 Sep 2000 05:50:02 -0700 (PDT) Message-Id: <200009181250.FAA44145@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: James Housley Subject: Re: ports/20930: Port Update: *-rtems-binutils Reply-To: James Housley Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20930; it has been noted by GNATS. From: James Housley To: freebsd-gnats-submit@FreeBSD.org, jim@thehousleys.net Cc: Subject: Re: ports/20930: Port Update: *-rtems-binutils Date: Mon, 18 Sep 2000 08:49:09 -0400 Submitted by MAINTAINER. This and ports/21004, ports/21019, ports/21027, ports/21048 and ports/21049 are not as scarry as they look. Contact me for more information. Jim -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 5:55: 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 D47F637B422; Mon, 18 Sep 2000 05:55:03 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA44849; Mon, 18 Sep 2000 05:55:03 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 05:55:03 -0700 (PDT) From: Message-Id: <200009181255.FAA44849@freefall.freebsd.org> To: dyfet@ostel.com, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21090: Common C++ ports for 1.2.1 release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Common C++ ports for 1.2.1 release State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Sep 18 05:54:36 PDT 2000 State-Changed-Why: Committed, thanks! Please send diffs next time instead of a whole new shar. http://www.freebsd.org/cgi/query-pr.cgi?pr=21090 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:10: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 AE13F37B43C; Mon, 18 Sep 2000 06:10:11 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA49234; Mon, 18 Sep 2000 06:10:11 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 06:10:11 -0700 (PDT) From: Message-Id: <200009181310.GAA49234@freefall.freebsd.org> To: dyfet@ostel.com, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21165: Updated Common C++ to fix freebsd dyn loader detection Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated Common C++ to fix freebsd dyn loader detection State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Sep 18 06:09:00 PDT 2000 State-Changed-Why: Committed along with ports/21090, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21165 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:13:46 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 A5A8137B422 for ; Mon, 18 Sep 2000 06:13:39 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13b0jk-0007Vq-00 for freebsd-ports@FreeBSD.org; Mon, 18 Sep 2000 15:13:32 +0200 Date: Mon, 18 Sep 2000 15:13:32 +0200 From: Johann Visagie To: freebsd-ports@FreeBSD.org Subject: Re: ports/21221: Update port: devel/omniORB Message-ID: <20000918151332.A28695@fling.sanbi.ac.za> References: <200009121220.FAA03242@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: <200009121220.FAA03242@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Tue, Sep 12, 2000 at 05:20:01AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The update has been committed (thanks), but the PR remains open(?) -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:21:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id 52AEE37B422 for ; Mon, 18 Sep 2000 06:21:17 -0700 (PDT) Received: by pawn.primelocation.net (Postfix, from userid 1016) id AD03F9B05; Mon, 18 Sep 2000 09:21:16 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by pawn.primelocation.net (Postfix) with ESMTP id A08B3BA03; Mon, 18 Sep 2000 09:21:16 -0400 (EDT) Date: Mon, 18 Sep 2000 09:21:16 -0400 (EDT) From: "Chris D. Faulhaber" X-Sender: cdf.lists@pawn.primelocation.net To: Johann Visagie Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21221: Update port: devel/omniORB In-Reply-To: <20000918151332.A28695@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 On Mon, 18 Sep 2000, Johann Visagie wrote: > The update has been committed (thanks), but the PR remains open(?) > Nope, looks like nbm closed it a while ago: State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Mon Sep 18 06:14:17 PDT 2000 State-Changed-Why: ejc committed this http://www.freebsd.org/cgi/query-pr.cgi?pr=21221 ----- 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 Sep 18 6:33: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 3B21C37B422; Mon, 18 Sep 2000 06:33:19 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA54880; Mon, 18 Sep 2000 06:33:19 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 06:33:19 -0700 (PDT) From: Message-Id: <200009181333.GAA54880@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, jhb@FreeBSD.org Subject: Re: ports/21351: ports/emulators/bfe sourcetarball no longer exists Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/emulators/bfe sourcetarball no longer exists Responsible-Changed-From-To: freebsd-ports->jhb Responsible-Changed-By: jedgar Responsible-Changed-When: Mon Sep 18 06:33:07 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21351 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:34: 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 1FAD137B423; Mon, 18 Sep 2000 06:34:04 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA55157; Mon, 18 Sep 2000 06:34:04 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 06:34:04 -0700 (PDT) From: Message-Id: <200009181334.GAA55157@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, fenner@FreeBSD.org Subject: Re: ports/21344: ports/benchmark/netperf missing checksum Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/benchmark/netperf missing checksum Responsible-Changed-From-To: freebsd-ports->fenner Responsible-Changed-By: jedgar Responsible-Changed-When: Mon Sep 18 06:33:47 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21344 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:35: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 3286A37B423; Mon, 18 Sep 2000 06:35:33 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA56633; Mon, 18 Sep 2000 06:35:33 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 06:35:33 -0700 (PDT) From: Message-Id: <200009181335.GAA56633@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/21348: ports/devel/pccts has a checksum error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/devel/pccts has a checksum error Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: jedgar Responsible-Changed-When: Mon Sep 18 06:35:19 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21348 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:36: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 271F137B422; Mon, 18 Sep 2000 06:36:53 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA62146; Mon, 18 Sep 2000 06:36:53 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 06:36:53 -0700 (PDT) From: Message-Id: <200009181336.GAA62146@freefall.freebsd.org> To: jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/21350: ports/editors/dedit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/editors/dedit Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: jedgar Responsible-Changed-When: Mon Sep 18 06:36:36 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21350 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:39:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 7FD3C37B424 for ; Mon, 18 Sep 2000 06:39:09 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13b18H-000J5s-00; Mon, 18 Sep 2000 15:38:53 +0200 Date: Mon, 18 Sep 2000 15:38:53 +0200 From: Neil Blakey-Milner To: "Chris D. Faulhaber" Cc: Johann Visagie , freebsd-ports@FreeBSD.org Subject: Re: ports/21221: Update port: devel/omniORB Message-ID: <20000918153853.A73384@mithrandr.moria.org> References: <20000918151332.A28695@fling.sanbi.ac.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from jedgar@fxp.org on Mon, Sep 18, 2000 at 09:21:16AM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon 2000-09-18 (09:21), Chris D. Faulhaber wrote: > > The update has been committed (thanks), but the PR remains open(?) > > > > Nope, looks like nbm closed it a while ago: > > State-Changed-From-To: open->closed > State-Changed-By: nbm > State-Changed-When: Mon Sep 18 06:14:17 PDT 2000 > State-Changed-Why: > ejc committed this > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21221 I closed it when I saw Johann complain. Johann complains a lot :P (and owes me Tex bars) Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Mon Sep 18 6:44:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 79FEA37B424 for ; Mon, 18 Sep 2000 06:43:58 -0700 (PDT) Received: (qmail 99434 invoked by uid 1001); 18 Sep 2000 13:38:00 -0000 Date: Mon, 18 Sep 2000 16:38:00 +0300 From: Peter Pentchev To: Hajimu UMEMOTO Cc: Manfred Antar , ports@FreeBSD.ORG Subject: Re: Fetchmaill 5.2.2 does not compile on current Message-ID: <20000918163800.C61416@ringwraith.office1.bg> References: <5.0.0.25.2.20000917082139.00a56f28@pozo.com> <5.0.0.25.2.20000917082139.00a56f28@pozo.com> <20000918.011450.74756657.ume@mahoroba.org> <5.0.0.25.2.20000917092336.00a57090@pozo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.0.25.2.20000917092336.00a57090@pozo.com>; from null@pozo.com on Sun, Sep 17, 2000 at 09:24:50AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hajimu, I see you've added --with-hesiod=no to the configure args; just a minor question - wouldn't it be more GNU-configure-ish to do --disable-hesiod instead? :) G'luck, Peter -- If I were you, who would be reading this sentence? On Sun, Sep 17, 2000 at 09:24:50AM -0700, Manfred Antar wrote: > At 01:14 AM 9/18/2000 +0900, Hajimu UMEMOTO wrote: > >>>>>> On Sun, 17 Sep 2000 08:23:12 -0700 [snip] > > > >Since recent 5-CURRENT has hesiod.h by nsswitch merge, fetchmail's > >configure script detects it. However, it seems not expected as > >fetchmail requires. You can avoid this with adding --with-hesiod=no > >to CONFIGURE_ARGS. > > Hajimu > Thanks, that works fine. > It should probably be included in the current Makefile > Manfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 6:51: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 ACDFD37B509; Mon, 18 Sep 2000 06:51:53 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA26237; Mon, 18 Sep 2000 06:51:53 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Mon, 18 Sep 2000 06:51:53 -0700 (PDT) From: Message-Id: <200009181351.GAA26237@freefall.freebsd.org> To: holger@flatline.de, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21349: Update port: mail/pgp4pine 1.74 -> 1.75.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/pgp4pine 1.74 -> 1.75.6 State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Sep 18 06:38:53 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21349 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 7:17:35 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 7751837B422; Mon, 18 Sep 2000 07:17:32 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8IEHVo04668; Mon, 18 Sep 2000 10:17:31 -0400 (EDT) Date: Mon, 18 Sep 2000 10:17:31 -0400 (EDT) From: Trevor Johnson To: Kris Kennaway Cc: Satoshi - Ports Wraith - Asami , ports@FreeBSD.ORG, qa@FreeBSD.ORG, taguchi@tohoku.iij.ad.jp Subject: Re: Making XFree86-4 the default In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 10 Sep 2000, Kris Kennaway wrote: > On 10 Sep 2000, Satoshi - Ports Wraith - Asami wrote: > > Kidding aside, if you think it is really necessary, why don't we > > include Xwrapper from 3.3.6 (we can make a separate port for this) as > > a requirement for a 4.0.1 Xserver? Will that work? > > Nope :-( I've submitted a port along these lines. It works for me. See: http://www.freebsd.org/cgi/query-pr.cgi?pr=21352 -- 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 Mon Sep 18 7:22:43 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 8130537B42C for ; Mon, 18 Sep 2000 07:22:38 -0700 (PDT) Received: from cobra.lovett.com ([10.0.0.3]) by hub.lovett.com with esmtp (Exim 3.16 #1) id 13b1ob-000BLR-00 for ports@FreeBSD.org; Mon, 18 Sep 2000 09:22:37 -0500 Received: (from ade@localhost) by cobra.lovett.com (8.11.0/8.11.0) id e8IEMXn04812; Mon, 18 Sep 2000 09:22:33 -0500 (CDT) (envelope-from ade) Date: Mon, 18 Sep 2000 09:22:33 -0500 From: Ade Lovett To: Foxfair Hu Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/net/tintin++ Makefile ports/net/tintin++/files md5 ports/net/tintin++/patches patch-aa patch-ab ports/net/tintin++/pkg DESCR PLIST Message-ID: <20000918092233.M507@FreeBSD.org> References: <200009171836.LAA36030@freefall.freebsd.org> <39C5D1ED17C.E88BFOXFAIR@intra.nextnode.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39C5D1ED17C.E88BFOXFAIR@intra.nextnode.com>; from foxfair@fomokka.net on Mon, Sep 18, 2000 at 04:27:25PM +0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 04:27:25PM +0800, Foxfair Hu wrote: > My suggestion about this port is "Please back it out, v1.8.x is > still under beta testing". You can make another port called tintin++-devel > and upgrade net/tintin++ to v1.5pl9, which is the final stable version. > Would you mind to do it? Only if you, or someone else, is willing to take over maintainership from ports@FreeBSD.org -- it seems that there are at least two people out there interested in this port.. Fight it out amongst yourselves for maintainership :) -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 Mon Sep 18 7:26: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 99BA837B424; Mon, 18 Sep 2000 07:26:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36488; Mon, 18 Sep 2000 07:26:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 07:26:52 -0700 (PDT) From: Message-Id: <200009181426.HAA36488@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21004: Port Update: *-rtems-gcc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: *-rtems-gcc Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 07:26:37 PDT 2000 Responsible-Changed-Why: I'll take a look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=21004 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 7:27: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 8D66937B42C; Mon, 18 Sep 2000 07:27:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36579; Mon, 18 Sep 2000 07:27:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 07:27:13 -0700 (PDT) From: Message-Id: <200009181427.HAA36579@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21019: Port Update: *-rtems-gcj Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: *-rtems-gcj Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 07:27:00 PDT 2000 Responsible-Changed-Why: I'll take a look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=21019 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 7:27: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 A9D3F37B422; Mon, 18 Sep 2000 07:27:29 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36658; Mon, 18 Sep 2000 07:27:29 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 07:27:29 -0700 (PDT) From: Message-Id: <200009181427.HAA36658@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21027: Port Update: devel/*-rtems-g77 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: devel/*-rtems-g77 Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 07:27:18 PDT 2000 Responsible-Changed-Why: I'll take a look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=21027 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 7:27: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 C256737B422; Mon, 18 Sep 2000 07:27:47 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA36751; Mon, 18 Sep 2000 07:27:47 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 07:27:47 -0700 (PDT) From: Message-Id: <200009181427.HAA36751@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21048: Port Update: *-rtems-gdb Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: *-rtems-gdb Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 07:27:36 PDT 2000 Responsible-Changed-Why: I'll take a look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=21048 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 7:29: 0 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 D230C37B422 for ; Mon, 18 Sep 2000 07:28:57 -0700 (PDT) Received: from cobra.lovett.com ([10.0.0.3]) by hub.lovett.com with esmtp (Exim 3.16 #1) id 13b1uZ-000BM4-00; Mon, 18 Sep 2000 09:28:47 -0500 Received: (from ade@localhost) by cobra.lovett.com (8.11.0/8.11.0) id e8IESlK04843; Mon, 18 Sep 2000 09:28:47 -0500 (CDT) (envelope-from ade) Date: Mon, 18 Sep 2000 09:28:46 -0500 From: Ade Lovett To: James Housley Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20930: Port Update: *-rtems-binutils Message-ID: <20000918092846.N507@FreeBSD.org> References: <200009181250.FAA44145@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: <200009181250.FAA44145@freefall.freebsd.org>; from jim@thehousleys.net on Mon, Sep 18, 2000 at 05:50:02AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 05:50:02AM -0700, James Housley wrote: > Submitted by MAINTAINER. > > This and ports/21004, ports/21019, ports/21027, ports/21048 and > ports/21049 are not as scarry as they look. Contact me for more > information. Ok. I'll take a peek at them shortly. I've already assigned them over to me, so other committers can breathe easy :) -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 Mon Sep 18 7: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 3721F37B424; Mon, 18 Sep 2000 07:49:50 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA41999; Mon, 18 Sep 2000 07:49:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 07:49:50 -0700 (PDT) From: Message-Id: <200009181449.HAA41999@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21049: Update port: devel/*-rtems-chill Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/*-rtems-chill Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 07:49:36 PDT 2000 Responsible-Changed-Why: I'll handle this one, too http://www.freebsd.org/cgi/query-pr.cgi?pr=21049 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 7:51:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 593A437B423; Mon, 18 Sep 2000 07:51:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA42708; Mon, 18 Sep 2000 07:51:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 07:51:52 -0700 (PDT) From: Message-Id: <200009181451.HAA42708@freefall.freebsd.org> To: hetzels@westbend.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18581: Change FP Exts from BSDI to FreeBSD Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Change FP Exts from BSDI to FreeBSD State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 07:51:38 PDT 2000 State-Changed-Why: Closed at submitters request http://www.freebsd.org/cgi/query-pr.cgi?pr=18581 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8: 0:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id 0F89B37B42C for ; Mon, 18 Sep 2000 08:00:47 -0700 (PDT) Received: from localhost (localhost [::1]) (authenticated) by peace.mahoroba.org (8.11.0/8.11.0/peace) with ESMTP/inet6 id e8IExmG03610; Mon, 18 Sep 2000 23:59:48 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Mon, 18 Sep 2000 23:59:45 +0900 (JST) Message-Id: <20000918.235945.74753971.ume@mahoroba.org> To: roam@orbitel.bg Cc: null@pozo.com, ports@FreeBSD.ORG Subject: Re: Fetchmaill 5.2.2 does not compile on current From: Hajimu UMEMOTO In-Reply-To: <20000918163800.C61416@ringwraith.office1.bg> References: <20000918.011450.74756657.ume@mahoroba.org> <5.0.0.25.2.20000917092336.00a57090@pozo.com> <20000918163800.C61416@ringwraith.office1.bg> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.7 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT 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 >>>>> On Mon, 18 Sep 2000 16:38:00 +0300 >>>>> Peter Pentchev said: roam> I see you've added --with-hesiod=no to the configure args; just a minor roam> question - wouldn't it be more GNU-configure-ish to do --disable-hesiod roam> instead? :) Yes, I think --disable-hesiod is more suitable, too. However, fetchmail's configure doesn't recognize --disable-hesiod but --with-hisiod=no. ;-) -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8: 7: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 D608237B423; Mon, 18 Sep 2000 08:07:16 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA47893; Mon, 18 Sep 2000 08:07:16 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:07:16 -0700 (PDT) From: Message-Id: <200009181507.IAA47893@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/20930: Port Update: *-rtems-binutils Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: *-rtems-binutils Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:06:51 PDT 2000 Responsible-Changed-Why: I'll handle this one as well http://www.freebsd.org/cgi/query-pr.cgi?pr=20930 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8: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 259DE37B43E for ; Mon, 18 Sep 2000 08:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA48445; Mon, 18 Sep 2000 08:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from vishnu.ms.mff.cuni.cz (vishnu.ms.mff.cuni.cz [195.113.17.144]) by hub.freebsd.org (Postfix) with ESMTP id 1F02837B423 for ; Mon, 18 Sep 2000 08:07:30 -0700 (PDT) Received: (from mencl@localhost) by vishnu.ms.mff.cuni.cz (8.9.3/8.9.3) id PAA28932; Mon, 18 Sep 2000 15:07:26 GMT (envelope-from mencl) Message-Id: <200009181507.PAA28932@vishnu.ms.mff.cuni.cz> Date: Mon, 18 Sep 2000 15:07:26 GMT From: mencl@nenya.ms.mff.cuni.cz Reply-To: mencl@nenya.ms.mff.cuni.cz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21355: evg port fails to run - syntax error in a module is reported Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21355 >Category: ports >Synopsis: evg port fails to run - syntax error in a module is reported >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 18 08:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vladimir Mencl >Release: FreeBSD 4.1-STABLE i386 >Organization: Department of Software Engineering Faculty of Mathematics and Physics Charles University, Prague >Environment: FreeBSD vishnu.ms.mff.cuni.cz 4.1-STABLE FreeBSD 4.1-STABLE #0: Wed Sep 6 10:42:34 GMT 2000 root@vishnu.ms.mff.cuni.cz:/usr/obj/usr/cvs/4-stable/src/sys/VISHNU i386 (Kernel is 4.1-STABLE about of Sep 6, world is 4.1-RELEASE) ENV=/home/mencl/.shrc FTP_PASSIVE_MODE=YES LOGNAME=mencl SSH_TTY=/dev/ttyp0 MAIL=/var/mail/mencl PAGER=more TERM=xterm HOSTTYPE=i386 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/bin:/usr/X11R6/bin:/home/mencl/bin HOME=/home/mencl SHELL=/bin/bash USER=mencl BLOCKSIZE=K DISPLAY=odin.ms.mff.cuni.cz:0 SSH_CLIENT=195.113.17.137 36154 22 OSTYPE=FreeBSD SHLVL=2 EDITOR=vi _=/usr/bin/env Python 1.5.2 (#2, Jul 19 2000, 19:09:55) [GCC 2.95.2 19991024 (release)] on freebsd4 >Description: The www/evg port, when installed, fails to run. evg is a Python script. evg uses a library eclipthtml.py, which is a part of the package. There's a syntax error in the library, which causes python to fail with the following message: Traceback (innermost last): File "/usr/local/bin/evg.py", line 8, in ? from eclipthtml import * SyntaxError: non-default argument follows default argument (line 66) Actually, I do not know, how could the file get packaged in such a condition - I do not know the python language, but the complaint looks really true about the line 66 of eclipthtml.py file. >How-To-Repeat: Install packages evg-1.0.1, python-1.5.2 (a dependency) and run /usr/local/bin/evg.py The above mentioned error message is produced. >Fix: Patch attached: *** eclipthtml.py Sat Apr 17 13:03:47 1999 --- /usr/local/lib/python1.5/site-packages/eclipthtml.py Mon Sep 18 14:29:58 2000 *************** *** 63,69 **** # ---------------------------------------------------------------------- # Start of the Body ! def BodyStart(text = "", bgcolor = "", link = "", alink = "", vlink = "", background): if (format == HTML) or (format == Roxen): line = "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 Sep 18 8:28: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 8092B37B42C; Mon, 18 Sep 2000 08:28:38 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA54302; Mon, 18 Sep 2000 08:28:38 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:28:38 -0700 (PDT) From: Message-Id: <200009181528.IAA54302@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/18788: Apache & module ports collection Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Apache & module ports collection Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:28:17 PDT 2000 Responsible-Changed-Why: From the audit trail, looks like dirk is interested in this. http://www.freebsd.org/cgi/query-pr.cgi?pr=18788 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:28:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 48BED37B423 for ; Mon, 18 Sep 2000 08:28:47 -0700 (PDT) Received: (qmail 313 invoked by uid 1001); 18 Sep 2000 15:23:34 -0000 Date: Mon, 18 Sep 2000 18:23:34 +0300 From: Peter Pentchev To: Bill Fenner Cc: ports@freebsd.org Subject: games/nethack3 unbreaking (was: Re: ports/21096: unbreak games/nethack; assume maintainership?) Message-ID: <20000918182333.B142@ringwraith.office1.bg> References: <200009080223.TAA06224@windsor.research.att.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009080223.TAA06224@windsor.research.att.com>; from fenner@research.att.com on Thu, Sep 07, 2000 at 07:23:53PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have sent the attached patch to the port maintainer (dscheidt@enteract.com) a week ago, and received no response as yet. I guess I'll wait a week or something, and then file a PR :) G'luck, Peter -- If this sentence were in Chinese, it would say something else. On Thu, Sep 07, 2000 at 07:23:53PM -0700, Bill Fenner wrote: > > If you *really* want to assume maintainership, you could upgrade > to 3.3.1? =) (Then the GNU mirrors become irrelevant since they > haven't picked that version up yet, but...) diff -urN ports/games/nethack3/Makefile myports/games/nethack3/Makefile --- ports/games/nethack3/Makefile Wed Aug 9 18:05:31 2000 +++ myports/games/nethack3/Makefile Sat Sep 9 15:47:47 2000 @@ -6,13 +6,17 @@ # PORTNAME= nethack -PORTVERSION= 3.3.0 +PORTVERSION= 3.3.1 CATEGORIES= games -MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/src/ \ +MASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh331/src/ \ ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= nethack +DISTNAME= ${PORTNAME}-331 +EXTRACT_SUFX= .tgz MAINTAINER= dscheidt@enteract.com + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_XPM= yes USE_GMAKE= yes diff -urN ports/games/nethack3/files/md5 myports/games/nethack3/files/md5 --- ports/games/nethack3/files/md5 Mon Jan 24 07:40:42 2000 +++ myports/games/nethack3/files/md5 Sat Sep 9 15:45:31 2000 @@ -1 +1 @@ -MD5 (nethack-3.3.0.tar.gz) = cf9f4039408321f39c3ef733455cb73a +MD5 (nethack-331.tgz) = d0600ce4698c80e5ad1f917ded1c36d2 diff -urN ports/games/nethack3/patches/patch-aa myports/games/nethack3/patches/patch-aa --- ports/games/nethack3/patches/patch-aa Wed Aug 9 18:05:31 2000 +++ myports/games/nethack3/patches/patch-aa Sat Sep 9 16:56:00 2000 @@ -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 04:13:51 2000 ++++ include/config.h Sat Sep 9 16:51:05 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 diff -urN ports/games/nethack3/patches/patch-ab myports/games/nethack3/patches/patch-ab --- ports/games/nethack3/patches/patch-ab Mon Jan 24 07:40:43 2000 +++ myports/games/nethack3/patches/patch-ab Thu Jan 1 02:00:00 1970 @@ -1,20 +0,0 @@ ---- ./include/system.h.orig Sat Dec 11 00:20:51 1999 -+++ ./include/system.h Sun Dec 12 20:44:40 1999 -@@ -80,7 +80,7 @@ - # if !defined(SUNOS4) || defined(RANDOM) - E void FDECL(srandom, (unsigned int)); - # else --# ifndef bsdi -+# if !defined(bsdi) && !defined(__FreeBSD__) - E int FDECL(srandom, (unsigned int)); - # endif - # endif -@@ -516,7 +516,7 @@ - # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) - E time_t FDECL(time, (time_t *)); - # else --E long FDECL(time, (time_t *)); -+E time_t FDECL(time, (time_t *)); - # endif /* ULTRIX */ - - #ifdef VMS diff -urN ports/games/nethack3/patches/patch-ac myports/games/nethack3/patches/patch-ac --- ports/games/nethack3/patches/patch-ac Wed Aug 9 18:05:31 2000 +++ myports/games/nethack3/patches/patch-ac Sat Sep 9 16:56:09 2000 @@ -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 04:03:51 2000 ++++ include/unixconf.h Sat Sep 9 16:51:05 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. */ diff -urN ports/games/nethack3/patches/patch-ad myports/games/nethack3/patches/patch-ad --- ports/games/nethack3/patches/patch-ad Mon Jan 24 07:40:44 2000 +++ myports/games/nethack3/patches/patch-ad Sat Sep 9 16:56:25 2000 @@ -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 13:52:57 2000 ++++ sys/unix/Makefile.src Sat Sep 9 16:51:05 2000 +@@ -144,8 +144,8 @@ # flags for debugging: # CFLAGS = -g -I../include -CFLAGS = -O -I../include --LFLAGS = -+CFLAGS += -O -I../include -I${X11BASE}/include -+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 @@ +-LFLAGS = ++CFLAGS = -O -I../include -I${X11BASE}/include ++LFLAGS = -L${X11BASE}/lib + + # 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 # diff -urN ports/games/nethack3/patches/patch-ae myports/games/nethack3/patches/patch-ae --- ports/games/nethack3/patches/patch-ae Mon Jan 24 07:40:44 2000 +++ myports/games/nethack3/patches/patch-ae Sat Sep 9 16:56:39 2000 @@ -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 03:42:05 2000 ++++ sys/unix/Makefile.top Sat Sep 9 16:51:05 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 diff -urN ports/games/nethack3/patches/patch-af myports/games/nethack3/patches/patch-af --- ports/games/nethack3/patches/patch-af Mon Jan 24 07:40:44 2000 +++ myports/games/nethack3/patches/patch-af Sat Sep 9 16:56:57 2000 @@ -1,6 +1,6 @@ ---- ./sys/unix/Makefile.doc.orig Mon Dec 13 14:49:15 1999 -+++ ./sys/unix/Makefile.doc Mon Dec 13 14:44:53 1999 -@@ -31,7 +31,7 @@ +--- sys/unix/Makefile.doc.orig Fri Jan 14 22:49:48 2000 ++++ sys/unix/Makefile.doc Sat Sep 9 16:51:05 2000 +@@ -34,7 +34,7 @@ GAME = nethack @@ -9,7 +9,7 @@ MANEXT = 6 # manual installation for most BSD-style systems -@@ -48,11 +48,11 @@ +@@ -51,11 +51,11 @@ # DLBMANCREATE = nroff -man dlb.6 > manpages: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8: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 8709537B424 for ; Mon, 18 Sep 2000 08:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57791; Mon, 18 Sep 2000 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rnocserv.urc.ac.ru (rnocserv.urc.ac.ru [193.233.85.2]) by hub.freebsd.org (Postfix) with ESMTP id 6F2D637B422 for ; Mon, 18 Sep 2000 08:39:34 -0700 (PDT) Received: (from anton@localhost) by rnocserv.urc.ac.ru (8.11.0/8.9.3) id e8IFdO251537; Mon, 18 Sep 2000 21:39:24 +0600 (ESS) (envelope-from anton) Message-Id: <200009181539.e8IFdO251537@rnocserv.urc.ac.ru> Date: Mon, 18 Sep 2000 21:39:24 +0600 (ESS) From: anton@urc.ac.ru Reply-To: anton@urc.ac.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21356: New port: mbone/rat30 (rat-3.0.35), the stable branch. Replaces PR ports/21343. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21356 >Category: ports >Synopsis: New port: mbone/rat30 (rat-3.0.35), the stable branch. Replaces PR ports/21343. >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 Sep 18 08:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Anton Voronin >Release: FreeBSD 4.1-STABLE i386 >Organization: Southern Ural State University, Chelyabinsk, Russia >Environment: >Description: This submittion contains fix for PR ports/21343 (where Makefile didn't satisfy to portlint) and an additional patch for mixer operations (by Orion Hodson, O.Hodson@cs.ucl.ac.uk). RAT is a network audio tool that allows users to particpate in audio conferences over the internet. These can be between two participants directly, or between a group of participants on a common multicast group. RAT features sender based loss mitigation mechanisms and receiver based audio repair techniques to compensate for packet loss, and load adaption in response to host performance. This is a stable branch version. Works with half-duplex casrd as well. WWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/ >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: # # rat30 # rat30/Makefile # rat30/pkg # rat30/pkg/COMMENT # rat30/pkg/DESCR # rat30/pkg/PLIST # rat30/patches # rat30/patches/patch-aa # rat30/patches/patch-ab # rat30/patches/patch-ac # rat30/files # rat30/files/md5 # echo c - rat30 mkdir -p rat30 > /dev/null 2>&1 echo x - rat30/Makefile sed 's/^X//' >rat30/Makefile << 'END-of-rat30/Makefile' X# New ports collection makefile for: rat X# Date created: 18 September 2000 X# Whom: anton X# X# $FreeBSD$ X# X XPORTNAME= rat XPORTVERSION= 3.0.35 XCATEGORIES= mbone audio X XMAINTAINER= anton@urc.ac.ru X XMASTER_SITES = http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/3.0.35/ XWRKSRC = ${WRKDIR}/rat-3.0 X XTCL_VER=8.3 XTCL_SHORTVER=83 XTK_VER=8.3 XTK_SHORTVER=83 X XLIB_DEPENDS = tk${TK_SHORTVER}.1:${PORTSDIR}/x11-toolkits/tk${TK_SHORTVER} \ X tcl${TK_SHORTVER}.1:${PORTSDIR}/lang/tcl${TCL_SHORTVER} XUSE_XLIB = yes X XDEPENDS = ${PORTSDIR}/x11-toolkits/tk${TK_SHORTVER} \ X ${PORTSDIR}/lang/tcl${TCL_SHORTVER} X XMAN1 = rat.1 XMANCOMPRESSED = no XUSE_GMAKE = yes XMAKE_ARGS = TCL_VER=${TCL_VER} TCL_SHORTVER=${TCL_SHORTVER} TK_VER=${TK_VER} TK_SHORTVER=${TK_SHORTVER} X11BASE=${X11BASE} OSTYPE=FreeBSD X XALL_TARGET = bin/rat X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/bin/rat ${PREFIX}/bin/rat X ${INSTALL_MAN} ${WRKSRC}/man/man1/rat.1 ${PREFIX}/man/man1 X X.include END-of-rat30/Makefile echo c - rat30/pkg mkdir -p rat30/pkg > /dev/null 2>&1 echo x - rat30/pkg/COMMENT sed 's/^X//' >rat30/pkg/COMMENT << 'END-of-rat30/pkg/COMMENT' XMulticast and unicast robust audio conferencing tool (stable branch) END-of-rat30/pkg/COMMENT echo x - rat30/pkg/DESCR sed 's/^X//' >rat30/pkg/DESCR << 'END-of-rat30/pkg/DESCR' XRAT is a network audio tool that allows users to particpate in Xaudio conferences over the internet. These can be between two Xparticipants directly, or between a group of participants on a Xcommon multicast group. RAT features sender based loss mitigation Xmechanisms and receiver based audio repair techniques to compensate Xfor packet loss, and load adaption in response to host performance. X XThis is a stable branch version. Works with half-duplex casrd as well. X XWWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/ END-of-rat30/pkg/DESCR echo x - rat30/pkg/PLIST sed 's/^X//' >rat30/pkg/PLIST << 'END-of-rat30/pkg/PLIST' Xbin/rat END-of-rat30/pkg/PLIST echo c - rat30/patches mkdir -p rat30/patches > /dev/null 2>&1 echo x - rat30/patches/patch-aa sed 's/^X//' >rat30/patches/patch-aa << 'END-of-rat30/patches/patch-aa' X*** src/auddev_freebsd.c.orig Wed Mar 24 16:22:19 1999 X--- src/auddev_freebsd.c Sat Sep 16 00:03:22 2000 X*************** X*** 89,102 **** X } X if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &mode) == -1) || (mode != AFMT_S16_LE)) { X printf("Device doesn't support 16bit linear format!\n"); X return -1; X } X if ((ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) == -1) || (stereo != 0)) { X printf("Device doesn't support mono!\n"); X return -1; X } X! if ((ioctl(audio_fd, SNDCTL_DSP_SPEED, &speed) == -1) || (speed != 8000)) { X printf("Device doesn't support 8kHz sampling!\n"); X return -1; X } X X--- 89,106 ---- X } X if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &mode) == -1) || (mode != AFMT_S16_LE)) { X printf("Device doesn't support 16bit linear format!\n"); X+ close(audio_fd); X return -1; X } X if ((ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) == -1) || (stereo != 0)) { X printf("Device doesn't support mono!\n"); X+ close(audio_fd); X return -1; X } X! // if ((ioctl(audio_fd, SNDCTL_DSP_SPEED, &speed) == -1) || (speed != 8000)) { X! if (ioctl(audio_fd, SNDCTL_DSP_SPEED, &speed) == -1){ X printf("Device doesn't support 8kHz sampling!\n"); X+ close(audio_fd); X return -1; X } X X*************** X*** 158,163 **** X--- 162,168 ---- X * be open to do this, so if we're passed -1 as a file-descriptor we open X * the device, do the ioctl, and then close it again... X */ X+ /* X snd_chan_param scp; X if (audio_fd == -1) { X audio_fd = audio_open_rw(O_RDONLY); X*************** X*** 174,179 **** X--- 179,197 ---- X if (ioctl(audio_fd, AIOSFMT, 0) == -1) { X return FALSE; X } X+ */ X+ int caps; X+ int was_defined = 1; X+ if (audio_fd == -1) { X+ audio_fd = audio_open_rw(O_RDWR); X+ was_defined = 0; X+ } X+ ioctl(audio_fd, SNDCTL_DSP_GETCAPS, &caps); X+ if ((caps & DSP_CAP_DUPLEX) == 0) { X+ if( was_defined == 0 ) audio_close(audio_fd); X+ return FALSE; X+ } X+ if( was_defined == 0 ) audio_close(audio_fd); X return TRUE; X } X END-of-rat30/patches/patch-aa echo x - rat30/patches/patch-ab sed 's/^X//' >rat30/patches/patch-ab << 'END-of-rat30/patches/patch-ab' X*** Makefile.orig Tue Sep 14 16:39:00 1999 X--- Makefile Mon Sep 18 13:30:23 2000 X*************** X*** 9,29 **** X # -DNDEBUG -DDEBUG -DTEST -DGSM -DDEBUG_MIX -DDEBUG_MEM X # -DDEBUG_RTP -DREPEAT X X! DEFS += -D$(OSTYPE) -D$(OSTYPE)_$(OSMVER) X CC = gcc X CFLAGS = -Wall -Werror -Wno-implicit-int $(INCS) $(DEFS) -g -O -fsigned-char X LDFLAGS= X- LDLIBS= $(LDLIBS) -lm X RANLIB = ranlib X RAT_HOME = $(PWD) X X GSMFLAGS = -DSASR -DFAST -DUSE_FLOAT_MUL X X! include Makefile_$(OSTYPE)_$(OSMVER) X X! BINDIR = bin/$(USER) X SRCDIR = src X! OBJDIR = objs/$(USER)/$(OSTYPE)_$(OSVERS) X OBJS = $(OBJDIR)/codec_encoder.o \ X $(OBJDIR)/codec_decoder.o \ X $(OBJDIR)/codec_lpc.o \ X--- 9,38 ---- X # -DNDEBUG -DDEBUG -DTEST -DGSM -DDEBUG_MIX -DDEBUG_MEM X # -DDEBUG_RTP -DREPEAT X X! DEFS += -D$(OSTYPE) X CC = gcc X CFLAGS = -Wall -Werror -Wno-implicit-int $(INCS) $(DEFS) -g -O -fsigned-char X LDFLAGS= X RANLIB = ranlib X RAT_HOME = $(PWD) X X GSMFLAGS = -DSASR -DFAST -DUSE_FLOAT_MUL X X! X11BASE ?= /usr/X11R6 X! TCL_VER ?= 8.2 X! TCL_SHORTVER ?= 82 X! TK_VER ?= 8.2 X! TK_SHORTVER ?= 82 X! TCL_HOME = /usr/local/include/tcl$(TCL_VER) X! TK_HOME = /usr/local/include/tk$(TK_VER) X! INCS = -I$(X11BASE)/include \ X! -I$(TCL_HOME)/generic -I$(TK_HOME)/generic X! LDLIBS = -L/usr/local/lib -L/usr/X11R6/lib \ X! -ltk$(TK_SHORTVER) -ltcl$(TCL_SHORTVER) -lXext -lX11 -lm X X! BINDIR = bin X SRCDIR = src X! OBJDIR = objs X OBJS = $(OBJDIR)/codec_encoder.o \ X $(OBJDIR)/codec_decoder.o \ X $(OBJDIR)/codec_lpc.o \ X*************** X*** 79,87 **** X $(OBJDIR)/crypt_random.o \ X $(OBJDIR)/md5c.o X X! $(BINDIR)/rat-$(OSTYPE)-$(OSVERS): $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(RATOBJS) X! rm -f $(BINDIR)/rat-$(OSTYPE)-$(OSVERS) X! $(CC) $(RATOBJS) $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(LDLIBS) $(LDFLAGS) -o $(BINDIR)/rat-$(OSTYPE)-$(OSVERS) X X $(OBJDIR)/%.o: $(SRCDIR)/%.c X $(CC) $(CFLAGS) $(GSMFLAGS) $(CRYPTFLAGS) -c $(SRCDIR)/$*.c -o $(OBJDIR)/$*.o X--- 88,96 ---- X $(OBJDIR)/crypt_random.o \ X $(OBJDIR)/md5c.o X X! $(BINDIR)/rat: $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(RATOBJS) X! rm -f $(BINDIR)/rat X! $(CC) $(RATOBJS) $(OBJS) $(GSMOBJS) $(CRYPTOBJS) $(LDLIBS) $(LDFLAGS) -o $(BINDIR)/rat X X $(OBJDIR)/%.o: $(SRCDIR)/%.c X $(CC) $(CFLAGS) $(GSMFLAGS) $(CRYPTFLAGS) -c $(SRCDIR)/$*.c -o $(OBJDIR)/$*.o X*************** X*** 134,139 **** X (cd ..; gtar zcvf rat-`date +%Y%m%d`.tgz rat-3.0) X X depend: X! makedepend $(DEFS) $(INCS) -f Makefile_$(OSTYPE)_$(OSMVER) $(SRCDIR)/*.[ch] X X X--- 143,148 ---- X (cd ..; gtar zcvf rat-`date +%Y%m%d`.tgz rat-3.0) X X depend: X! makedepend $(DEFS) $(INCS) $(SRCDIR)/*.[ch] X X END-of-rat30/patches/patch-ab echo x - rat30/patches/patch-ac sed 's/^X//' >rat30/patches/patch-ac << 'END-of-rat30/patches/patch-ac' X--- src/auddev_freebsd.c.p1 Mon Sep 18 10:27:40 2000 X+++ src/auddev_freebsd.c Mon Sep 18 10:30:42 2000 X@@ -204,18 +204,10 @@ X if (audio_fd <= 0) { X return; X } X- switch (iport) { X- case AUDIO_MICROPHONE : if (ioctl(audio_fd, MIXER_WRITE(SOUND_MIXER_MIC), &volume) == -1) { X- perror("Setting gain"); X- } X- return; X- case AUDIO_LINE_IN : if (ioctl(audio_fd, MIXER_WRITE(SOUND_MIXER_LINE), &volume) == -1) { X- perror("Setting gain"); X- } X- return; X+ if (ioctl(audio_fd, SOUND_MIXER_WRITE_RECLEV, &volume) == -1) { X+ perror("Setting gain"); X } X- printf("ERROR: Unknown iport in audio_set_gain!\n"); X- abort(); X+ return; X } X X int X@@ -226,17 +218,8 @@ X if (audio_fd <= 0) { X return (0); X } X- switch (iport) { X- case AUDIO_MICROPHONE : if (ioctl(audio_fd, MIXER_READ(SOUND_MIXER_MIC), &volume) == -1) { X- perror("Getting gain"); X- } X- break; X- case AUDIO_LINE_IN : if (ioctl(audio_fd, MIXER_READ(SOUND_MIXER_LINE), &volume) == -1) { X- perror("Getting gain"); X- } X- break; X- default : printf("ERROR: Unknown iport in audio_set_gain!\n"); X- abort(); X+ if (ioctl(audio_fd, SOUND_MIXER_READ_RECLEV, &volume) == -1) { X+ perror("Setting gain"); X } X return device_to_bat(volume & 0xff); X } X@@ -263,7 +246,7 @@ X if (audio_fd <= 0) { X return (0); X } X- if (ioctl(audio_fd, MIXER_READ(SOUND_MIXER_VOLUME), &volume) == -1) { X+ if (ioctl(audio_fd, MIXER_READ(SOUND_MIXER_PCM), &volume) == -1) { X perror("Getting volume"); X } X return device_to_bat(volume & 0x000000ff); /* Extract left channel volume */ END-of-rat30/patches/patch-ac echo c - rat30/files mkdir -p rat30/files > /dev/null 2>&1 echo x - rat30/files/md5 sed 's/^X//' >rat30/files/md5 << 'END-of-rat30/files/md5' XMD5 (rat-3.0.35.tar.gz) = fff6e4a4c9617c5b7ea80f63fda96a9a END-of-rat30/files/md5 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 Sep 18 8:46: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 E4F2A37B423; Mon, 18 Sep 2000 08:46:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA60205; Mon, 18 Sep 2000 08:46:41 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:46:41 -0700 (PDT) From: Message-Id: <200009181546.IAA60205@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/18867: Port name being changed from cdict into stardict Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port name being changed from cdict into stardict Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:46:08 PDT 2000 Responsible-Changed-Why: I'll apply the update after a repo-copy http://www.freebsd.org/cgi/query-pr.cgi?pr=18867 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:47:27 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 4F3B337B424; Mon, 18 Sep 2000 08:47:21 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13b38N-000Ah2-00; Mon, 18 Sep 2000 17:47:07 +0200 Date: Mon, 18 Sep 2000 17:47:07 +0200 From: Johann Visagie To: Neil Blakey-Milner Cc: "Chris D. Faulhaber" , freebsd-ports@FreeBSD.org, freebsd-gnats-submit@freebsd.org Subject: Re: ports/21221: Update port: devel/omniORB Message-ID: <20000918174707.D28695@fling.sanbi.ac.za> References: <20000918151332.A28695@fling.sanbi.ac.za> <20000918153853.A73384@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000918153853.A73384@mithrandr.moria.org>; from nbm@mithrandr.moria.org on Mon, Sep 18, 2000 at 03:38:53PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org nbm on 2000-09-18 (Mon) at 15:38:53 +0200: > > I closed it when I saw Johann complain. Johann complains a lot :P Here's another complaint. :-) (This one my own fault for not checking properly.) In the submitted update, I had two new patches (patch-aj, patch-ak). In a followup I submitted a third new patch (patch-al). It seems that none of these new patches were committed, though patch-ab through patch-ai were indeed deleted (as per request). In its current form, without patch-ai through patch-ak, devel/omniORB does not build. -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:48: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 DD51637B424; Mon, 18 Sep 2000 08:48:31 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA60911; Mon, 18 Sep 2000 08:48:31 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:48:31 -0700 (PDT) From: Message-Id: <200009181548.IAA60911@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, rse@FreeBSD.org Subject: Re: ports/19977: mod_php3 and mod_php4 ports doesn't recognize apache+mod_ssl-1.3.12+2.6.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mod_php3 and mod_php4 ports doesn't recognize apache+mod_ssl-1.3.12+2.6.5 Responsible-Changed-From-To: freebsd-ports->rse Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:48:11 PDT 2000 Responsible-Changed-Why: Over to maintainer of apache13-modssl http://www.freebsd.org/cgi/query-pr.cgi?pr=19977 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:51: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 C735537B423; Mon, 18 Sep 2000 08:51:23 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA61878; Mon, 18 Sep 2000 08:51:23 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:51:23 -0700 (PDT) From: Message-Id: <200009181551.IAA61878@freefall.freebsd.org> To: lioux@uol.com.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20634: Update port net/kicq to version 1.0.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port net/kicq to version 1.0.0 State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 08:50:48 PDT 2000 State-Changed-Why: Have you contacted the current maintainer of the net/kicq port about this change? paxvel@iname.com http://www.freebsd.org/cgi/query-pr.cgi?pr=20634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:52: 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 4D99037B42C; Mon, 18 Sep 2000 08:52:06 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA62146; Mon, 18 Sep 2000 08:52:06 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:52:06 -0700 (PDT) From: Message-Id: <200009181552.IAA62146@freefall.freebsd.org> To: lioux@uol.com.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20636: Update port net/icqlib to version 1.0.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port net/icqlib to version 1.0.0 State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 08:51:49 PDT 2000 State-Changed-Why: Have you contacted the current maintainer of the net/icqlib port about this change? paxvel@iname.com http://www.freebsd.org/cgi/query-pr.cgi?pr=20636 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:55: 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 D07FE37B423; Mon, 18 Sep 2000 08:55:05 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA62938; Mon, 18 Sep 2000 08:55:05 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:55:05 -0700 (PDT) From: Message-Id: <200009181555.IAA62938@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, msmith@FreeBSD.org Subject: Re: ports/20795: FBSD 4.x: Citrix client with drive mapping enabled core dumped Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FBSD 4.x: Citrix client with drive mapping enabled core dumped Responsible-Changed-From-To: freebsd-ports->msmith Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:54:04 PDT 2000 Responsible-Changed-Why: Over to maintainer, for what it's worth. Since (as billf points out in the audit-trail), this is a binary-only port, there's probably nothing that can be done here. http://www.freebsd.org/cgi/query-pr.cgi?pr=20795 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:57: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 17FA737B422; Mon, 18 Sep 2000 08:57:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA63866; Mon, 18 Sep 2000 08:57:15 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:57:15 -0700 (PDT) From: Message-Id: <200009181557.IAA63866@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20887: [PATCH] LDAP support and fixes for cyrus-sasl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] LDAP support and fixes for cyrus-sasl State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 08:55:58 PDT 2000 State-Changed-Why: Closed at the request of the maintainer (see audit trail). This is another shining example of why y'all need to at least try to talk to maintainers of ports (other than those owned by ports@FreeBSD.org -- ie: no-one) before submitting PRs. http://www.freebsd.org/cgi/query-pr.cgi?pr=20887 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:58: 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 D237937B424; Mon, 18 Sep 2000 08:58:02 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA64162; Mon, 18 Sep 2000 08:58:02 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:58:02 -0700 (PDT) From: Message-Id: <200009181558.IAA64162@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, stb@FreeBSD.org Subject: Re: ports/20888: [PATCH] Miscellaneous fixes for the cyrus port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Miscellaneous fixes for the cyrus port Responsible-Changed-From-To: freebsd-ports->stb Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:57:51 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20888 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 8:58: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 C673D37B422; Mon, 18 Sep 2000 08:58:53 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA64477; Mon, 18 Sep 2000 08:58:53 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 08:58:53 -0700 (PDT) From: Message-Id: <200009181558.IAA64477@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, rse@FreeBSD.org Subject: Re: ports/21211: the startup file installed by apache-modssl doesn't have 'stop' action Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: the startup file installed by apache-modssl doesn't have 'stop' action Responsible-Changed-From-To: freebsd-ports->rse Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 08:58:43 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21211 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9: 2: 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 6A28837B42C; Mon, 18 Sep 2000 09:02:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA66024; Mon, 18 Sep 2000 09:02:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 09:02:07 -0700 (PDT) From: Message-Id: <200009181602.JAA66024@freefall.freebsd.org> To: martti.kuparinen@piuha.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21286: [PATCH] ports/graphics/tiff fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] ports/graphics/tiff fix State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 09:01:01 PDT 2000 State-Changed-Why: Can you send in the exact error message that occurred on your system whilst building this port. It successfully builds on my box here, plus also on the bento cluster, so this sounds like a local issue more than anything else. http://www.freebsd.org/cgi/query-pr.cgi?pr=21286 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9: 2:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from aaz.links.ru (aaz.links.ru [193.125.152.37]) by hub.freebsd.org (Postfix) with ESMTP id 7FB3437B422 for ; Mon, 18 Sep 2000 09:02:56 -0700 (PDT) Received: (from babolo@localhost) by aaz.links.ru (8.9.3/8.9.3) id UAA05019; Mon, 18 Sep 2000 20:02:32 +0400 (MSD) Message-Id: <200009181602.UAA05019@aaz.links.ru> Subject: Re: Port Maintainers In-Reply-To: <002d01c0210a$beca4350$1200a8c0@zircon> from "Matthew Emmerton" at "Sep 17, 0 08:52:39 pm" To: matt@gsicomp.on.ca (Matthew Emmerton) Date: Mon, 18 Sep 2000 20:02:32 +0400 (MSD) Cc: freebsd-ports@FreeBSD.ORG From: "Aleksandr A.Babaylov" 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 Matthew Emmerton writes: ........ > What I'm wondering if is there is any mechanism in place to ensure that the > support channel (e-mail to the port maintainer) remains open and valid. I > know that at least one port for which the maintainer's email address bounces > mail. There may also be some ports for which the designated maintainers > simply don't maintain the port anymore. It would be advantageous to all if > a periodic validation of these contact points could be performed (once per > RELEASE would seem like a logical period to me.) It is reasonable -- @BABOLO http://links.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9: 7: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 4465937B423; Mon, 18 Sep 2000 09:07:31 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA69171; Mon, 18 Sep 2000 09:07:31 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 09:07:31 -0700 (PDT) From: Message-Id: <200009181607.JAA69171@freefall.freebsd.org> To: O.Hodson@cs.ucl.ac.uk, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21333: Update port mbone/rat to support newpcm mixer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port mbone/rat to support newpcm mixer State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 09:06:15 PDT 2000 State-Changed-Why: Update committed, thanks! Next time, please send unified diffs between the existing port and the new port, instead of a complete new tarball. http://www.freebsd.org/cgi/query-pr.cgi?pr=21333 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9: 8: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 46E1137B42C; Mon, 18 Sep 2000 09:08:50 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA69486; Mon, 18 Sep 2000 09:08:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 09:08:49 -0700 (PDT) From: Message-Id: <200009181608.JAA69486@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/21334: update port audio/spiralsynth Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port audio/spiralsynth Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 09:08:32 PDT 2000 Responsible-Changed-Why: Looks like will is wrestling with this one. Enjoy. http://www.freebsd.org/cgi/query-pr.cgi?pr=21334 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9:11: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 D7E0E37B424; Mon, 18 Sep 2000 09:11:38 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA70391; Mon, 18 Sep 2000 09:11:38 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 09:11:38 -0700 (PDT) From: Message-Id: <200009181611.JAA70391@freefall.freebsd.org> To: anders@fix.no, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21337: Update+fix of port: audio/xsidplay Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update+fix of port: audio/xsidplay State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 09:11:20 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21337 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9:13: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 E8DB437B50C; Mon, 18 Sep 2000 09:13:08 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA70765; Mon, 18 Sep 2000 09:13:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 09:13:08 -0700 (PDT) From: Message-Id: <200009181613.JAA70765@freefall.freebsd.org> To: anton@urc.ac.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21343: New port: mbone/rat30 (rat-3.0.35), the stable branch of rat (robust audio tool) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: mbone/rat30 (rat-3.0.35), the stable branch of rat (robust audio tool) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 09:12:47 PDT 2000 State-Changed-Why: Superceded by ports/21356 http://www.freebsd.org/cgi/query-pr.cgi?pr=21343 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9: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 10F8637B424 for ; Mon, 18 Sep 2000 09:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA72530; Mon, 18 Sep 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sapa.ivcme.elektra.ru (IVCME-NC-LL.Elektra.RU [193.125.127.58]) by hub.freebsd.org (Postfix) with ESMTP id 95AE037B423 for ; Mon, 18 Sep 2000 09:15:38 -0700 (PDT) Received: (from lukin@localhost) by sapa.ivcme.elektra.ru (8.9.3/8.8.8) id UAA53123; Mon, 18 Sep 2000 20:15:28 +0400 (MSD) (envelope-from lukin) Message-Id: <200009181615.UAA53123@sapa.ivcme.elektra.ru> Date: Mon, 18 Sep 2000 20:15:28 +0400 (MSD) From: Kostya Lukin Reply-To: lukin@sapa.ivcme.elektra.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21357: Update port: net/adns Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21357 >Category: ports >Synopsis: Update port: net/adns >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 Sep 18 09:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kostya Lukin >Release: FreeBSD 3.3-RELEASE i386 >Organization: IVC Mosenergo >Environment: >Description: Update adns port to 1.0 P.S. I am the maintainer. >How-To-Repeat: >Fix: diff -ruN adns.orig/Makefile adns/Makefile --- adns.orig/Makefile Mon Jun 19 18:38:31 2000 +++ adns/Makefile Mon Sep 18 19:25:47 2000 @@ -6,7 +6,7 @@ # PORTNAME= adns -PORTVERSION= 0.7 +PORTVERSION= 1.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GNU} \ ftp://ftp.chiark.greenend.org.uk/users/ian/adns/ @@ -18,7 +18,11 @@ INSTALLS_SHLIB= yes USE_GMAKE= yes +LIBVERSION= 1 +PLIST_SUB+= LIBVERSION="${LIBVERSION}" + post-install: - strip ${PREFIX}/bin/adnstest ${PREFIX}/bin/adnslogres ${PREFIX}/bin/adnshost + @${LN} -sf libadns.so.${LIBVERSION} ${PREFIX}/lib/libadns.so + strip ${PREFIX}/bin/adnslogres ${PREFIX}/bin/adnshost .include diff -ruN adns.orig/files/md5 adns/files/md5 --- adns.orig/files/md5 Sun Apr 2 09:37:21 2000 +++ adns/files/md5 Mon Sep 18 17:32:20 2000 @@ -1 +1 @@ -MD5 (adns-0.7.tar.gz) = dbf31b805b3d993d116a2ef9e45b93ae +MD5 (adns-1.0.tar.gz) = af4411ee10875b96c0d61f903018f438 diff -ruN adns.orig/pkg/PLIST adns/pkg/PLIST --- adns.orig/pkg/PLIST Sat Aug 5 20:21:20 2000 +++ adns/pkg/PLIST Mon Sep 18 18:59:51 2000 @@ -1,7 +1,6 @@ -bin/adnstest bin/adnslogres bin/adnshost -bin/adnsresfilter include/adns.h lib/libadns.a -lib/libadns.so.0 +lib/libadns.so +lib/libadns.so.%%LIBVERSION%% >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 Sep 18 9:49:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from md5.follo.net (ppp328.uio.no [129.240.241.89]) by hub.freebsd.org (Postfix) with ESMTP id 0296B37B423 for ; Mon, 18 Sep 2000 09:49:32 -0700 (PDT) Received: (from des@localhost) by md5.follo.net (8.11.0/8.11.0) id e8IGm2I02393; Mon, 18 Sep 2000 18:48:02 +0200 (CEST) (envelope-from des@ofug.org) X-Authentication-Warning: md5.follo.net: des set sender to des@ofug.org using -f To: ports@freebsd.org Subject: porteasy From: Dag-Erling Smorgrav Date: 18 Sep 2000 18:48:01 +0200 Message-ID: <86og1ld4u6.fsf@md5.follo.net> Lines: 13 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm working on a porteasy port, and have two short questions: 1) What's the maximum tolerated size for files placed in FILESDIR? 2) Could you guys please find a way to list MASTERDIR dependencies in ports/INDEX? Porteasy currently has no way to know that e.g. www/w3m-ssl depends on www/w3m to build. I can try to have porteasy extract MASTERDIR from the Makefile, but it'd be messy and extremely inefficient. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 9:53: 2 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 5B98937B42C for ; Mon, 18 Sep 2000 09:53:00 -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 JAA05362; Mon, 18 Sep 2000 09:52:49 -0700 (PDT) (envelope-from DougB@gorean.org) Message-ID: <39C64860.BB32C71@gorean.org> Date: Mon, 18 Sep 2000 09:52:48 -0700 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT-091 i386) X-Accept-Language: en MIME-Version: 1.0 To: Dag-Erling Smorgrav Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21296: [PATCH] INN port is outdated References: <200009161330.GAA18677@freefall.freebsd.org> <39C3FA43.3F10BA7F@gorean.org> <39C53BC1.C7D5E087@gorean.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dag-Erling Smorgrav wrote: > > Doug Barton writes: > > I still get exactly the same errors building on -current from friday > > that I described in the PR. > > With INN 2.2.2, perhaps, but 2.3.0 works fine. Ahhhh.. that's very different. Never mind. :) 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 Mon Sep 18 10: 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 B693937B424 for ; Mon, 18 Sep 2000 10:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA82653; Mon, 18 Sep 2000 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 8A82637B42C for ; Mon, 18 Sep 2000 09:58:52 -0700 (PDT) Received: from baby.int.thehousleys.net (baby.ipv6.thehousleys.net [3ffe:1ce3:6:0:260:8ff:fea3:7fb2]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e8IGwkQ09533 for ; Mon, 18 Sep 2000 12:58:46 -0400 (EDT) (envelope-from housley@thehousleys.net) Received: (from housley@localhost) by baby.int.thehousleys.net (8.11.0/8.11.0) id e8IGwjB00749; Mon, 18 Sep 2000 12:58:45 -0400 (EDT) (envelope-from housley) Message-Id: <200009181658.e8IGwjB00749@baby.int.thehousleys.net> Date: Mon, 18 Sep 2000 12:58:45 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21358: Port Update: devel/i386-rtems-binutils - md5 problem. by MAINTAINER Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21358 >Category: ports >Synopsis: Port Update: devel/i386-rtems-binutils - md5 problem. 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 Sep 18 10:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: The tar file from the origional site has changed. Remove from DISTFILES until I can verify and reroll. >How-To-Repeat: >Fix: --- Makefile.orig Mon Sep 18 11:53:14 2000 +++ Makefile Mon Sep 18 12:58:21 2000 @@ -9,8 +9,7 @@ PORTVERSION= 2.10 PORTREVISION= 2 CATEGORIES= devel -MASTER_SITES= ftp://ftp.oarcorp.com/pub/rtems/snapshots/c_tools/source/ \ - http://rtems.thehousleys.net/ +MASTER_SITES= http://rtems.thehousleys.net/ DISTFILES= ${BINNAME}.tar.gz PATCHFILES= ${BINNAME}-rtems-20000726.diff.gz PATCH_SITES= ftp://ftp.oarcorp.com/pub/rtems/snapshots/c_tools/source/ \ >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 Sep 18 10: 5: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 41CCD37B42C; Mon, 18 Sep 2000 10:05:30 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA85610; Mon, 18 Sep 2000 10:05:30 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 10:05:30 -0700 (PDT) From: Message-Id: <200009181705.KAA85610@freefall.freebsd.org> To: jim@thehousleys.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21358: Port Update: devel/i386-rtems-binutils - md5 problem. by MAINTAINER Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port Update: devel/i386-rtems-binutils - md5 problem. by MAINTAINER State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 10:04:59 PDT 2000 State-Changed-Why: Update commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21358 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 10: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 3B52D37B424 for ; Mon, 18 Sep 2000 10:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA86725; Mon, 18 Sep 2000 10:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 5F28637B422 for ; Mon, 18 Sep 2000 10:01:52 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8IH1pl10004 for ; Mon, 18 Sep 2000 13:01:51 -0400 (EDT) Message-Id: Date: Mon, 18 Sep 2000 13:01:51 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21359: update biology/xdrawchem to 0.83 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21359 >Category: ports >Synopsis: update biology/xdrawchem to 0.83 >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 Sep 18 10:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: - respect CXX and CXXFLAGS (Kato Tsuguru) - install data files (Kato Tsuguru) - bump version (myself) - use USE_NEWGCC (Will Andrews) - make whitespace changes to Makefile I'm the maintainer of the port. >How-To-Repeat: N/A >Fix: http://jpj.net/~trevor/freebsd/ports/xdrawchem.diff >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 Sep 18 10:17:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id D17FF37B43F; Mon, 18 Sep 2000 10:17:16 -0700 (PDT) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id MAA15620; Mon, 18 Sep 2000 12:36:00 -0400 Received: from virtual-estates.net (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.9.3/8.9.3) with ESMTP id NAA35746; Mon, 18 Sep 2000 13:16:49 -0400 (EDT) (envelope-from mi@virtual-estates.net) Message-Id: <200009181716.NAA35746@misha.privatelabs.com> Date: Mon, 18 Sep 2000 13:16:47 -0400 (EDT) From: mi@aldan.algebra.com Subject: Re: I'll be rolling a 4.1.1 release on September 25th To: stable@freebsd.org Cc: ports@freebsd.org In-Reply-To: <200009171502.e8HF2fp47484@cwsys.cwsent.com> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 17 Sep, Cy Schubert - ITSD Open Systems Group wrote: = That would be nice, but in my experience I've just submitted patches = to gnats and eventually someone would notice. "Eventually" is the keyword here. The event may not be happening for so long, the patches become unapplicable. I remember reading about Terry Lambert's frustration about this years ago. As far as ports -- well, maintainer of a few ports myself, I can testify about cases of the ported software going to a new release before my port submission is looked at. Sometimes you may be lucky and the committer will upgrade your port himself. = I don't have to bug anyone. The PR's get implemented eventually. Even = as a maintainer for a few ports who doesn't have commit privileges, I = don't find the process frustrating. I guess I don't see what all the = fuss is about. My current grudge is the two PRs: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20401 and http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19659 They are preventing me from submitting the port of Eddie (www.eddieware.org), which I think would be very usefull for people deploying FreeBSD servers (our main market, is not it?). -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 10:18: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 A370E37B423; Mon, 18 Sep 2000 10:18:11 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA88420; Mon, 18 Sep 2000 10:18:11 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Mon, 18 Sep 2000 10:18:11 -0700 (PDT) From: Message-Id: <200009181718.KAA88420@freefall.freebsd.org> To: lioux@uol.com.br, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/20636: Update port net/icqlib to version 1.0.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port net/icqlib to version 1.0.0 State-Changed-From-To: feedback->open State-Changed-By: sobomax State-Changed-When: Mon Sep 18 10:17:17 PDT 2000 State-Changed-Why: I'll take this. Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: sobomax Responsible-Changed-When: Mon Sep 18 10:17:17 PDT 2000 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=20636 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 10:32:58 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 E614937B42C; Mon, 18 Sep 2000 10:32:39 -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 UAA13472; Mon, 18 Sep 2000 20:32:35 +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 e8IHWbj56747; Mon, 18 Sep 2000 20:32:37 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C651B1.53ED6FBF@FreeBSD.org> Date: Mon, 18 Sep 2000 20:32:33 +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: Kris Kennaway Cc: committers@FreeBSD.org, doc@FreeBSD.org, ports@FreeBSD.org Subject: Re: Guidelines for new port version variables References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kris Kennaway wrote: > Hi all, > > This is a revised version of the original proposal document I sent to > -ports, which describes what the two new package version variables are > (PORTREVISION and PORTEPOCH) and how to use them. > > All committers who maintain a port, or who intend to commit changes to one > should read this document and make an effort to use the new variables. Can > one of the doc guys commit this to the porters handbook? > > Kris > > ==================================================================== > > FREEBSD PACKAGE VERSIONING CONVENTIONS > [Snip] Kris, Could you turn this writeup into Porter's Handbook chapter? It would be really better to do it that way. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 10:44:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ws106.nomadiclab.com (ws99.nomadiclab.com [195.165.196.99]) by hub.freebsd.org (Postfix) with ESMTP id 14C0D37B423; Mon, 18 Sep 2000 10:44:37 -0700 (PDT) Received: from ws67.nomadiclab.com (ws67.nomadiclab.com [195.165.196.67]) by ws106.nomadiclab.com (Postfix) with ESMTP id F359C72501; Mon, 18 Sep 2000 20:44:30 +0300 (EEST) Received: from ws125.nomadiclab.com (ws125.nomadiclab.com [195.165.196.125]) by ws67.nomadiclab.com (Postfix) with ESMTP id 186EBBA0A; Mon, 18 Sep 2000 20:44:30 +0300 (EEST) Date: Mon, 18 Sep 2000 20:44:29 +0300 (EEST) From: Martti Kuparinen To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21286: [PATCH] ports/graphics/tiff fix In-Reply-To: <200009181602.JAA66024@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 don't have a spare machine right now. I installed 4.1-200009xx-SNAP from releng4.freebsd.org on an empty disk, updated /usr/ports with cvsup and built KDE. I saw the error during the dependency build. If I remember correctly the error was something like "can't link, file already exists". And yes, I tried "make clean" many times but the error was there :-) /Martti To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 10:58:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 667C937B422; Mon, 18 Sep 2000 10:58:22 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13b5BM-000Ju5-00; Mon, 18 Sep 2000 19:58:20 +0200 Date: Mon, 18 Sep 2000 19:58:20 +0200 From: Neil Blakey-Milner To: Maxim Sobolev Cc: Kris Kennaway , committers@FreeBSD.org, doc@FreeBSD.org, ports@FreeBSD.org Subject: Re: Guidelines for new port version variables Message-ID: <20000918195819.A76435@mithrandr.moria.org> References: <39C651B1.53ED6FBF@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39C651B1.53ED6FBF@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Sep 18, 2000 at 08:32:33PM +0300 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon 2000-09-18 (20:32), Maxim Sobolev wrote: > > All committers who maintain a port, or who intend to commit changes to one > > should read this document and make an effort to use the new variables. Can > > one of the doc guys commit this to the porters handbook? ^^^^ - he suggested it. > > > > FREEBSD PACKAGE VERSIONING CONVENTIONS > > [Snip] > > Could you turn this writeup into Porter's Handbook chapter? It would be really > better to do it that way. If someone can remind me tomorrow (ie, 12-20 hours from now), I'll be likely to be able to finish it tomorrow. Otherwise it'll languish in my queue. (: (says he, adding it to his new shiny Zope queue, and hoping he checks it tomorrow) Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Mon Sep 18 11: 0: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 B6F4637B42C for ; Mon, 18 Sep 2000 11:00:18 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97071 for freebsd-ports@freebsd.org; Mon, 18 Sep 2000 11:00:17 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Sep 2000 11:00:17 -0700 (PDT) Message-Id: <200009181800.LAA97071@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/07/20] ports/20058 ports ugly bug in tcl-Mysql -- old code's legac o [2000/07/24] ports/20141 ports Hylafax fails to correctly lock serial de o [2000/07/26] ports/20199 ports ports/graphics/hdf patch failure o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS 5 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/12/21] kern/9163 ports [patch] squid does not join a multicast g o [2000/05/03] ports/18367 ports Staroffice personal dir cannot be on nfs o [2000/05/29] ports/18871 ports apache13-fp port doesn't install on FreeB o [2000/06/09] ports/19151 ports XFree86 X-Server make install Dies o [2000/06/12] ports/19232 ports port name changed and being updated o [2000/07/16] ports/19974 ports cd /usr/ports/japanese/w3m-ssl fails on O o [2000/07/19] ports/20046 ports plugger port broken (/usr/ports/www/plugg o [2000/08/02] ports/20360 ports rxvts randomly closing 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/08] ports/20490 ports Termios timeout parameters, VMIN, VTIME, o [2000/08/09] ports/20503 ports apache w/ mod_perl segfaults on 'use IO;' 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 o [2000/08/14] ports/20607 ports plugger fails to build o [2000/08/16] ports/20663 ports MD5 checksum mismatches for ports/databas o [2000/08/17] ports/20676 ports Problem by compiling the port sysutils/cd 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/22] ports/20792 ports Apache w/ Frontapge Fails to build o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/28] ports/20899 ports Update for security/bugs port o [2000/08/28] ports/20913 ports ports not linking against -ljpeg o [2000/09/04] ports/21054 ports guile does not build on CURRENT 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/21111 ports fix ports make bug o [2000/09/08] ports/21116 ports vmware2 does not compile on -current o [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/09] ports/21146 ports [patch] openssh with LOGIN_CAP don't setu o [2000/09/09] ports/21153 ports ports/net/ns fails o [2000/09/10] ports/21172 ports xemacs21 and xemacs21-mule implicitly LIB o [2000/09/11] ports/21210 ports acroread port missing lib o [2000/09/11] ports/21213 ports fix order of include headers. o [2000/09/14] ports/21263 ports Cannot use ImageMagick o [2000/09/14] ports/21264 ports tn3270 port receives segmentation fault o [2000/09/15] ports/21289 ports qpopauth doesn't work(qpopper ports) o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/16] ports/21320 ports ports submission - wmusic o [2000/09/18] ports/21355 ports evg port fails to run - syntax error in a 42 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1999/01/03] ports/9286 ports Patch for games/nethack-qt to fix compila a [1999/03/16] ports/10634 ports Update the hylafax port to do a client in f [1999/06/13] ports/12188 ports new port: misc/pbs - a batch scheduler a [1999/07/05] ports/12518 ports new port: mail/ifmail-os o [1999/09/18] ports/13808 ports linux-rvplayer port improved a'la netscap f [1999/09/21] ports/13887 ports New port (fmirror) a [1999/09/30] ports/14070 ports new port: devel/crossgo32-f77 a [1999/10/11] ports/14260 ports new port: www/woda - A Web Oriented Datab a [1999/11/01] ports/14643 ports new port: chinese/pydict - A Chinese/Engl f [1999/11/18] ports/14991 ports new port: devel/tcl-trf - Tcl Data transf a [1999/12/06] ports/15326 ports tcsh modification o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 f [1999/12/17] ports/15545 ports new port: x11/xterm 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 a [2000/04/14] ports/18004 ports new port: mail/pgp4pine 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 o [2000/05/21] ports/18732 ports New port mail/qmail-ldap a [2000/06/04] ports/19006 ports New port: biology/gaussian98 a [2000/06/05] ports/19014 ports new port: sysutils/rmm 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/14] ports/19258 ports Newport: category japanese 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/13] ports/19908 ports New Port: games/kite o [2000/07/15] ports/19965 ports New port print/sgf2tex: prettyprint the g 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 f [2000/07/26] ports/20200 ports Updated version of mathopd web server con 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/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/15] ports/20623 ports cyrus-sasl-1.5.24 does not build libkerbe f [2000/08/15] ports/20634 ports Update port net/kicq to version 1.0.0 o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 f [2000/08/16] ports/20645 ports Update Objective Caml to 3.00 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/21] ports/20768 ports Modify the x11/rxvt to include a -devel p o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/24] ports/20817 ports New port o [2000/08/25] ports/20837 ports new port: palm/palmpower - disassembler + o [2000/08/26] ports/20876 ports mod_php4 (and maybe mod_php3) misplace th o [2000/08/26] ports/20880 ports new fvwm2-beta port o [2000/08/27] ports/20885 ports new port request o [2000/08/27] ports/20892 ports new port : databases/mytop 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/04] ports/21044 ports new port x11-wm/sapphire-themes o [2000/09/05] ports/21069 ports Another GTK+ frontend for mysql 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/08] ports/21129 ports French staroffice52 port o [2000/09/10] ports/21164 ports port submission (Perl5 module) o [2000/09/10] ports/21167 ports port submission (Perl5 module) o [2000/09/10] ports/21168 ports New port: www/apache-contrib o [2000/09/12] ports/21217 ports New port: IIIM Emacs Client Framework o [2000/09/12] ports/21234 ports New port: vrfy f [2000/09/14] ports/21262 ports Fix port: mail/postfix-current f [2000/09/14] ports/21266 ports MD5 checksum out of date for cyrus-sasl f [2000/09/14] ports/21286 ports [PATCH] ports/graphics/tiff fix 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/17] ports/21340 ports new port for the Crypt::Blowfish perl mod o [2000/09/18] ports/21341 ports New port: devel/elib-emacs + devel/elib-e o [2000/09/18] ports/21345 ports ports/biology/molden has a checksum error o [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21347 ports New port: graphics/avifile o [2000/09/18] ports/21352 ports new port x11/wrapper o [2000/09/18] ports/21353 ports update www/p5-HTML-Mason to 0.89 o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21357 ports Update port: net/adns o [2000/09/18] ports/21359 ports update biology/xdrawchem to 0.83 o [2000/09/18] ports/21361 ports patchset from author that solves many pro 101 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11: 4: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 C87F537B422; Mon, 18 Sep 2000 11:04:14 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA98882; Mon, 18 Sep 2000 11:04:14 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:04:14 -0700 (PDT) From: Message-Id: <200009181804.LAA98882@freefall.freebsd.org> To: howardjp@wam.umd.edu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19908: New Port: games/kite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: games/kite State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 11:02:22 PDT 2000 State-Changed-Why: Just looked at this.. you're missing a PORTVERSION in the Makefile, which is a critical error, and looking at the MASTER_SITEs, the file appears to be gzipped and auto-gunzipping by the remote ftp/http daemon, if it exists at all, isn't happening. Can you fix the above two issues and reply to this PR with a new sharball of the port? Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=19908 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11: 5: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 41E1237B422; Mon, 18 Sep 2000 11:05:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA00960; Mon, 18 Sep 2000 11:05:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:05:33 -0700 (PDT) From: Message-Id: <200009181805.LAA00960@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/20634: Update port net/kicq to version 1.0.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port net/kicq to version 1.0.0 Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 11:04:46 PDT 2000 Responsible-Changed-Why: Max.. since you're dealing with 20636, and the circumstances around this port are almost identical, perhaps you can deal with this, too.. http://www.freebsd.org/cgi/query-pr.cgi?pr=20634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11: 9: 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 1E06D37B424; Mon, 18 Sep 2000 11:08: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 VAA14216; Mon, 18 Sep 2000 21:08:44 +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 e8II08j56848; Mon, 18 Sep 2000 21:00:08 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C65823.42396A80@FreeBSD.org> Date: Mon, 18 Sep 2000 21:00:03 +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 Subject: Extending BSD.[local,x11].dist to include GNU gettext locale dirs Content-Type: multipart/mixed; boundary="------------9E59805A541370D86B3EE296" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------9E59805A541370D86B3EE296 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hi, We have a large number (~200) of ports that use GNU gettext, which implies that they are sharing some common directories. Currently this behaviour is unhandled, so maintainer of each particular port is free to deal with it whatever he likes. The better solution of course is to add those dirs into our mtree files, so the wheel will not have to be reinvented each time. The only problem, though, is a lack of complete list of those dirs, which means that potentially each softwar author can name his favorite locale whatever he likes, however most of them are smart enough to choose common 2-letter names optionally followed by encoding name. Following patch was prepared by greeping all PLISTs, so it should be fairly complete. I would like to know what do people think about it. -Maxim --------------9E59805A541370D86B3EE296 Content-Type: text/plain; charset=koi8-r; name="gettext-mtree.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gettext-mtree.patch" --- BSD.local.dist 2000/09/05 18:56:44 1.1 +++ BSD.local.dist 2000/09/05 19:08:15 @@ -196,6 +196,332 @@ .. examples .. + locale + af + LC_MESSAGES + .. + .. + bg + LC_MESSAGES + .. + .. + bg_BG.cp1251 + LC_MESSAGES + .. + .. + br + LC_MESSAGES + .. + .. + ca + LC_MESSAGES + .. + .. + cs + LC_MESSAGES + .. + .. + cy + LC_MESSAGES + .. + .. + cz + LC_MESSAGES + .. + .. + da + LC_MESSAGES + .. + .. + de + LC_MESSAGES + .. + .. + de_DE + LC_MESSAGES + .. + .. + dk + LC_MESSAGES + .. + .. + el + LC_MESSAGES + .. + .. + el_GR + LC_MESSAGES + .. + .. + en + LC_MESSAGES + .. + .. + en_AU + LC_MESSAGES + .. + .. + en_GB + LC_MESSAGES + .. + .. + en_SE + LC_MESSAGES + .. + .. + en_UK + LC_MESSAGES + .. + .. + en_US + LC_MESSAGES + .. + .. + eo + LC_MESSAGES + .. + .. + es + LC_MESSAGES + .. + .. + es_DO + LC_MESSAGES + .. + .. + es_ES + LC_MESSAGES + .. + .. + es_GT + LC_MESSAGES + .. + .. + es_HN + LC_MESSAGES + .. + .. + es_MX + LC_MESSAGES + .. + .. + es_PA + LC_MESSAGES + .. + .. + es_PE + LC_MESSAGES + .. + .. + es_SV + LC_MESSAGES + .. + .. + et + LC_MESSAGES + .. + .. + eu + LC_MESSAGES + .. + .. + fi + LC_MESSAGES + .. + .. + fr + LC_MESSAGES + .. + .. + ga + LC_MESSAGES + .. + .. + gd + LC_MESSAGES + .. + .. + gl + LC_MESSAGES + .. + .. + gv + LC_MESSAGES + .. + .. + he + LC_MESSAGES + .. + .. + hr + LC_MESSAGES + .. + .. + hs + LC_MESSAGES + .. + .. + hu + LC_MESSAGES + .. + .. + id + LC_MESSAGES + .. + .. + is + LC_MESSAGES + .. + .. + it + LC_MESSAGES + .. + .. + ja + LC_MESSAGES + .. + .. + ja_JP.EUC + LC_MESSAGES + .. + .. + ko + LC_MESSAGES + .. + .. + kw + LC_MESSAGES + .. + .. + lt + LC_MESSAGES + .. + .. + mk + LC_MESSAGES + .. + .. + nl + LC_MESSAGES + .. + .. + nn + LC_MESSAGES + .. + .. + no + LC_MESSAGES + .. + .. + no@nynorsk + LC_MESSAGES + .. + .. + pl + LC_MESSAGES + .. + .. + pt + LC_MESSAGES + .. + .. + pt_BR + LC_MESSAGES + .. + .. + pt_PT + LC_MESSAGES + .. + .. + ro + LC_MESSAGES + .. + .. + ru + LC_MESSAGES + .. + .. + ru_RU + LC_MESSAGES + .. + .. + rudos + LC_MESSAGES + .. + .. + rukoi8 + LC_MESSAGES + .. + .. + ruwin + LC_MESSAGES + .. + .. + sk + LC_MESSAGES + .. + .. + sl + LC_MESSAGES + .. + .. + sp + LC_MESSAGES + .. + .. + sr + LC_MESSAGES + .. + .. + sr_YU + LC_MESSAGES + .. + .. + sv + LC_MESSAGES + .. + .. + th + LC_MESSAGES + .. + .. + tr + LC_MESSAGES + .. + .. + uk + LC_MESSAGES + .. + .. + wa + LC_MESSAGES + .. + .. + zh + LC_MESSAGES + .. + .. + zh_CN + LC_MESSAGES + .. + .. + zh_CN.EUC + LC_MESSAGES + .. + .. + zh_CN.GB2312 + LC_MESSAGES + .. + .. + zh_CN.GBK + LC_MESSAGES + .. + .. + zh_TW.Big5 + LC_MESSAGES + .. + .. + .. misc .. nls --- BSD.x11.dist 2000/09/05 19:09:14 1.1 +++ BSD.x11.dist 2000/09/05 19:12:17 @@ -296,5 +296,331 @@ .. examples .. + locale + af + LC_MESSAGES + .. + .. + bg + LC_MESSAGES + .. + .. + bg_BG.cp1251 + LC_MESSAGES + .. + .. + br + LC_MESSAGES + .. + .. + ca + LC_MESSAGES + .. + .. + cs + LC_MESSAGES + .. + .. + cy + LC_MESSAGES + .. + .. + cz + LC_MESSAGES + .. + .. + da + LC_MESSAGES + .. + .. + de + LC_MESSAGES + .. + .. + de_DE + LC_MESSAGES + .. + .. + dk + LC_MESSAGES + .. + .. + el + LC_MESSAGES + .. + .. + el_GR + LC_MESSAGES + .. + .. + en + LC_MESSAGES + .. + .. + en_AU + LC_MESSAGES + .. + .. + en_GB + LC_MESSAGES + .. + .. + en_SE + LC_MESSAGES + .. + .. + en_UK + LC_MESSAGES + .. + .. + en_US + LC_MESSAGES + .. + .. + eo + LC_MESSAGES + .. + .. + es + LC_MESSAGES + .. + .. + es_DO + LC_MESSAGES + .. + .. + es_ES + LC_MESSAGES + .. + .. + es_GT + LC_MESSAGES + .. + .. + es_HN + LC_MESSAGES + .. + .. + es_MX + LC_MESSAGES + .. + .. + es_PA + LC_MESSAGES + .. + .. + es_PE + LC_MESSAGES + .. + .. + es_SV + LC_MESSAGES + .. + .. + et + LC_MESSAGES + .. + .. + eu + LC_MESSAGES + .. + .. + fi + LC_MESSAGES + .. + .. + fr + LC_MESSAGES + .. + .. + ga + LC_MESSAGES + .. + .. + gd + LC_MESSAGES + .. + .. + gl + LC_MESSAGES + .. + .. + gv + LC_MESSAGES + .. + .. + he + LC_MESSAGES + .. + .. + hr + LC_MESSAGES + .. + .. + hs + LC_MESSAGES + .. + .. + hu + LC_MESSAGES + .. + .. + id + LC_MESSAGES + .. + .. + is + LC_MESSAGES + .. + .. + it + LC_MESSAGES + .. + .. + ja + LC_MESSAGES + .. + .. + ja_JP.EUC + LC_MESSAGES + .. + .. + ko + LC_MESSAGES + .. + .. + kw + LC_MESSAGES + .. + .. + lt + LC_MESSAGES + .. + .. + mk + LC_MESSAGES + .. + .. + nl + LC_MESSAGES + .. + .. + nn + LC_MESSAGES + .. + .. + no + LC_MESSAGES + .. + .. + no@nynorsk + LC_MESSAGES + .. + .. + pl + LC_MESSAGES + .. + .. + pt + LC_MESSAGES + .. + .. + pt_BR + LC_MESSAGES + .. + .. + pt_PT + LC_MESSAGES + .. + .. + ro + LC_MESSAGES + .. + .. + ru + LC_MESSAGES + .. + .. + ru_RU + LC_MESSAGES + .. + .. + rudos + LC_MESSAGES + .. + .. + rukoi8 + LC_MESSAGES + .. + .. + ruwin + LC_MESSAGES + .. + .. + sk + LC_MESSAGES + .. + .. + sl + LC_MESSAGES + .. + .. + sp + LC_MESSAGES + .. + .. + sr + LC_MESSAGES + .. + .. + sr_YU + LC_MESSAGES + .. + .. + sv + LC_MESSAGES + .. + .. + th + LC_MESSAGES + .. + .. + tr + LC_MESSAGES + .. + .. + uk + LC_MESSAGES + .. + .. + wa + LC_MESSAGES + .. + .. + zh + LC_MESSAGES + .. + .. + zh_CN + LC_MESSAGES + .. + .. + zh_CN.EUC + LC_MESSAGES + .. + .. + zh_CN.GB2312 + LC_MESSAGES + .. + .. + zh_CN.GBK + LC_MESSAGES + .. + .. + zh_TW.Big5 + LC_MESSAGES + .. + .. + .. .. .. --------------9E59805A541370D86B3EE296-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:11:32 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 40F0537B42C; Mon, 18 Sep 2000 11:11:27 -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 VAA14251; Mon, 18 Sep 2000 21:11:20 +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 e8IIBMj61298; Mon, 18 Sep 2000 21:11:22 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C65AC6.BD0891D2@FreeBSD.org> Date: Mon, 18 Sep 2000 21:11:18 +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: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20634: Update port net/kicq to version 1.0.0 References: <200009181805.LAA00960@freefall.freebsd.org> Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ade@FreeBSD.org wrote: > Synopsis: Update port net/kicq to version 1.0.0 > > Responsible-Changed-From-To: freebsd-ports->sobomax > Responsible-Changed-By: ade > Responsible-Changed-When: Mon Sep 18 11:04:46 PDT 2000 > Responsible-Changed-Why: > Max.. since you're dealing with 20636, and the circumstances around > this port are almost identical, perhaps you can deal with this, too.. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=20634 Oh no, I do not have kde installed and is unlikely to install it just to test this PR. Moreover, I strongly dislike KDE :). Please assign it to someone else (I would suggest to ab^H^Huse will instead ;-> ). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:11:57 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 6E37C37B42C; Mon, 18 Sep 2000 11:11:53 -0700 (PDT) Received: from cobra.lovett.com ([10.0.0.3]) by hub.lovett.com with esmtp (Exim 3.16 #1) id 13b5OS-000Bgr-00; Mon, 18 Sep 2000 13:11:52 -0500 Received: (from ade@localhost) by cobra.lovett.com (8.11.0/8.11.0) id e8IIBpu50824; Mon, 18 Sep 2000 13:11:51 -0500 (CDT) (envelope-from ade) Date: Mon, 18 Sep 2000 13:11:51 -0500 From: Ade Lovett To: mi@aldan.algebra.com Cc: stable@freebsd.org, ports@freebsd.org Subject: Re: I'll be rolling a 4.1.1 release on September 25th Message-ID: <20000918131151.U507@FreeBSD.org> References: <200009171502.e8HF2fp47484@cwsys.cwsent.com> <200009181716.NAA35746@misha.privatelabs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009181716.NAA35746@misha.privatelabs.com>; from mi@aldan.algebra.com on Mon, Sep 18, 2000 at 01:16:47PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 01:16:47PM -0400, mi@aldan.algebra.com wrote: > My current grudge is the two PRs: > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20401 > and > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19659 In both cases it is not evident from the PR submission that the submitters have discussed these changes with the lang/erlang port maintainer (seb@bluetail.com). Until such time as you can provide some kind of evidence that you've contacted the maintainer and they've agreed to the updates, or that they're not interested in maintaining the port any more, then the PRs are just going to sit in feedback. Perhaps if you and Jimmy Olgeni (originator of ports/19659) work together and with the maintainer to produce an all-in-one patch, then things might just get resolved to everyone's satisfaction. -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 Mon Sep 18 11:16:30 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 A522837B423; Mon, 18 Sep 2000 11:16:25 -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 VAA14349; Mon, 18 Sep 2000 21:16:19 +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 e8IIGHj61330; Mon, 18 Sep 2000 21:16:17 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C65BED.359FE28C@FreeBSD.org> Date: Mon, 18 Sep 2000 21:16: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: Martti Kuparinen Cc: ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21286: [PATCH] ports/graphics/tiff fix References: Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Martti Kuparinen wrote: > I don't have a spare machine right now. I installed 4.1-200009xx-SNAP > from releng4.freebsd.org on an empty disk, updated /usr/ports with cvsup > and built KDE. I saw the error during the dependency build. > > If I remember correctly the error was something like "can't link, file > already exists". And yes, I tried "make clean" many times but the error > was there :-) Should be fixed now. Please recvsup, try again and report your experience. 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 Sep 18 11:18: 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 3364237B422; Mon, 18 Sep 2000 11:18:02 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA03530; Mon, 18 Sep 2000 11:18:02 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:18:02 -0700 (PDT) From: Message-Id: <200009181818.LAA03530@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/21286: [PATCH] ports/graphics/tiff fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] ports/graphics/tiff fix Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 11:17:19 PDT 2000 Responsible-Changed-Why: Max just committed a fix, and took over maintainership, so he can have this one all to himself now :) http://www.freebsd.org/cgi/query-pr.cgi?pr=21286 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:22: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 E072537B423; Mon, 18 Sep 2000 11:22:26 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id LAA04355; Mon, 18 Sep 2000 11:22:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Mon, 18 Sep 2000 11:22:26 -0700 (PDT) From: Kris Kennaway To: Matthew Emmerton Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Port Maintainers In-Reply-To: <002d01c0210a$beca4350$1200a8c0@zircon> 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, 17 Sep 2000, Matthew Emmerton wrote: > For some time now I've seen many requests come to the ports mailing list > which really should be handled by the maintainers of individual ports, not > the people who look after committing PRs. As usual, the standard response > is "contact the port maintainer". At first I wondered whether it was simply > inexperience or ignorance that caused people to turn to the ports list for > assistance, but over the last few months, I'm beginning to think whether the > problem lies on the other side of the equation with the maintainers > themselves. If you're having problems getting a response from a maintainer, they can always be replaced by someone more responsive - after all, being a maintainer implies an active process. Send a polite summary of your attempts to contact the maintainer to the -ports list and we'll take a look at the problem. Same goes for bouncing emails, etc. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:22: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 1D96437B423; Mon, 18 Sep 2000 11:22:47 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA04488; Mon, 18 Sep 2000 11:22:47 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:22:47 -0700 (PDT) From: Message-Id: <200009181822.LAA04488@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, joerg@FreeBSD.org Subject: Re: ports/21336: team compiles with warnings on current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: team compiles with warnings on current Responsible-Changed-From-To: freebsd-ports->joerg Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 11:22:26 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21336 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11: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 294C137B423; Mon, 18 Sep 2000 11:36:12 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA07552; Mon, 18 Sep 2000 11:36:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:36:12 -0700 (PDT) From: Message-Id: <200009181836.LAA07552@freefall.freebsd.org> To: dbader@eece.unm.edu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12188: new port: misc/pbs - a batch scheduler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: misc/pbs - a batch scheduler State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 11:34:46 PDT 2000 State-Changed-Why: Timeout (4 months) in feedback state. There seems to be a distinct lack of interest here, and the licensing issues are unclear at best. http://www.freebsd.org/cgi/query-pr.cgi?pr=12188 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:38: 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 65B6237B423; Mon, 18 Sep 2000 11:38:01 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA07925; Mon, 18 Sep 2000 11:38:01 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:38:01 -0700 (PDT) From: Message-Id: <200009181838.LAA07925@freefall.freebsd.org> To: kkennawa@physics.adelaide.edu.au, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/9286: Patch for games/nethack-qt to fix compilation problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch for games/nethack-qt to fix compilation problems State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 11:37:15 PDT 2000 State-Changed-Why: Timeout (4 months) in feedback, waiting for submitter to produce a new set of patches that apply cleanly against current port. http://www.freebsd.org/cgi/query-pr.cgi?pr=9286 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:39: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 C792B37B505; Mon, 18 Sep 2000 11:39:25 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA08214; Mon, 18 Sep 2000 11:39:25 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:39:25 -0700 (PDT) From: Message-Id: <200009181839.LAA08214@freefall.freebsd.org> To: bero@ms-windows-2000.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/13887: New port (fmirror) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port (fmirror) State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 11:38:36 PDT 2000 State-Changed-Why: Timeout (3 months) in feedback. Port also refers to something that is not being actively maintained, as well as referring to a version that is no longer available. http://www.freebsd.org/cgi/query-pr.cgi?pr=13887 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 11:44: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 C570B37B423; Mon, 18 Sep 2000 11:44:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA09103; Mon, 18 Sep 2000 11:44:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 11:44:48 -0700 (PDT) From: Message-Id: <200009181844.LAA09103@freefall.freebsd.org> To: naddy@mips.rhein-neckar.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/15545: new port: x11/xterm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: x11/xterm State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 11:43:57 PDT 2000 State-Changed-Why: Timeout (5 months) in feedback. See audit-trail for more reasons why this shouldn't go in the tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=15545 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12: 3:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 939E537B61B; Mon, 18 Sep 2000 12:03:12 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13b6C3-000K8m-00; Mon, 18 Sep 2000 21:03:07 +0200 Date: Mon, 18 Sep 2000 21:03:07 +0200 From: Neil Blakey-Milner To: ports@FreeBSD.org Cc: asami@FreeBSD.org Subject: Zope virtual category? (Was: cvs commit: ports/www/knowledgekit ...) Message-ID: <20000918210306.A77368@mithrandr.moria.org> References: <200009181851.LAA10445@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200009181851.LAA10445@freefall.freebsd.org>; from nbm@FreeBSD.org on Mon, Sep 18, 2000 at 11:51:22AM -0700 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon 2000-09-18 (11:51), Neil Blakey-Milner wrote: > nbm 2000/09/18 11:51:22 PDT > > Log: > Add KnowledgeKit, a Zope product that manages knowledge bases and FAQs. Ok, now I have a few zope products in the tree (ok, just five, but I have at least a few more coming), so do I get a zope virtual category or what? ;) Can anyone explain if I'm missing something about the hardships or Bad Things involved with new virtual categories? Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Mon Sep 18 12:13: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 0F68137B423; Mon, 18 Sep 2000 12:13:08 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16392; Mon, 18 Sep 2000 12:13:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 12:13:08 -0700 (PDT) From: Message-Id: <200009181913.MAA16392@freefall.freebsd.org> To: doconnor@cain.gsoft.com.au, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/10634: Update the hylafax port to do a client install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update the hylafax port to do a client install State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 11:54:49 PDT 2000 State-Changed-Why: Timeout (long time) in analyzed. Whilst the audit trail mentions that someone was going to be updating the client-only bits and pieces from this PR, the port has changed so much since its BROKEN days, that there's just no way this is ever going to apply cleanly. If an enterprising soul really wants client-only support in hylafax, submit diffs against the current port in a new PR and we'll go from there. You will be required to take maintainership as part of this process. Just kidding. Maybe :) http://www.freebsd.org/cgi/query-pr.cgi?pr=10634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:15: 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 7774A37B43C; Mon, 18 Sep 2000 12:15:03 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16807; Mon, 18 Sep 2000 12:15:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 12:15:03 -0700 (PDT) From: Message-Id: <200009181915.MAA16807@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: ports/12518: new port: mail/ifmail-os Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: mail/ifmail-os Responsible-Changed-From-To: freebsd-ports->will Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 12:14:02 PDT 2000 Responsible-Changed-Why: According to the audit-trail, Will has converted this submission to new port standards, and is awaiting another UID for the port to use from the submitter. Remind Will to do something about this. http://www.freebsd.org/cgi/query-pr.cgi?pr=12518 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:19: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 7E2DC37B422; Mon, 18 Sep 2000 12:19:17 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA17791; Mon, 18 Sep 2000 12:19:17 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 12:19:17 -0700 (PDT) From: Message-Id: <200009181919.MAA17791@freefall.freebsd.org> To: root@aldan.algebra.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/13808: linux-rvplayer port improved a'la netscape port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: linux-rvplayer port improved a'la netscape port State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 12:18:02 PDT 2000 State-Changed-Why: The audio/linux-rvplayer port has changed so much since this update submission, that the included patch doesn't apply cleanly at all, and it seems as though the current port version negates the need for this kind of patch in the first place. http://www.freebsd.org/cgi/query-pr.cgi?pr=13808 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:22: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 23B6737B422; Mon, 18 Sep 2000 12:22:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA18439; Mon, 18 Sep 2000 12:22:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 12:22:11 -0700 (PDT) From: Message-Id: <200009181922.MAA18439@freefall.freebsd.org> To: hdcho@geni.knu.ac.kr, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14070: new port: devel/crossgo32-f77 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: devel/crossgo32-f77 State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 12:20:30 PDT 2000 State-Changed-Why: Timeout (3 months) in analyzed state, waiting for submitter to portlint this new port. If submitter is still interested in getting this into the tree, please submit a new PR with a port that portlint's cleanly. http://www.freebsd.org/cgi/query-pr.cgi?pr=14070 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:22:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id B0C8737B42C; Mon, 18 Sep 2000 12:22:21 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13b6UV-000KEb-00; Mon, 18 Sep 2000 21:22:11 +0200 Date: Mon, 18 Sep 2000 21:22:11 +0200 From: Neil Blakey-Milner To: Johann Visagie Cc: "Chris D. Faulhaber" , freebsd-ports@FreeBSD.org, freebsd-gnats-submit@freebsd.org, ejc@FreeBSD.org Subject: Re: ports/21221: Update port: devel/omniORB Message-ID: <20000918212211.A77734@mithrandr.moria.org> References: <20000918151332.A28695@fling.sanbi.ac.za> <20000918153853.A73384@mithrandr.moria.org> <20000918174707.D28695@fling.sanbi.ac.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000918174707.D28695@fling.sanbi.ac.za>; from wjv@cityip.co.za on Mon, Sep 18, 2000 at 05:47:07PM +0200 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon 2000-09-18 (17:47), Johann Visagie wrote: > It seems that none of these new patches were committed, though patch-ab > through patch-ai were indeed deleted (as per request). > > In its current form, without patch-ai through patch-ak, devel/omniORB does > not build. ejc just added them. (I also tend to forget cvs add) Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Mon Sep 18 12:25: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 7228237B422; Mon, 18 Sep 2000 12:25:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA19121; Mon, 18 Sep 2000 12:25:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 12:25:33 -0700 (PDT) From: Message-Id: <200009181925.MAA19121@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, sada@FreeBSD.org Subject: Re: ports/14643: new port: chinese/pydict - A Chinese/English dictionary Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: chinese/pydict - A Chinese/English dictionary Responsible-Changed-From-To: freebsd-ports->sada Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 12:23:43 PDT 2000 Responsible-Changed-Why: Sada-san.. since you appear to have done some work on this port submission (according to the audit-trail), could you finish off and commit the port? Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=14643 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:28: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 AD9F137B42C; Mon, 18 Sep 2000 12:28:28 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA19743; Mon, 18 Sep 2000 12:28:28 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 12:28:28 -0700 (PDT) From: Message-Id: <200009181928.MAA19743@freefall.freebsd.org> To: ob@seicom.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/15326: tcsh modification Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tcsh modification State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 12:27:08 PDT 2000 State-Changed-Why: Stop playing hunt-the-pea (see audit trail), and let this PR die in peace. Submitter, the best approach now would be to offer this patch to the tcsh maintainers, at which point it will be incorporated into the base system at next release. http://www.freebsd.org/cgi/query-pr.cgi?pr=15326 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:32: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id C1CEC37B422; Mon, 18 Sep 2000 12:31:59 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id EA6931A25; Mon, 18 Sep 2000 14:27:50 -0500 (EST) Date: Mon, 18 Sep 2000 14:27:50 -0500 From: Will Andrews To: Maxim Sobolev Cc: ade@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/20634: Update port net/kicq to version 1.0.0 Message-ID: <20000918142750.C35550@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009181805.LAA00960@freefall.freebsd.org> <39C65AC6.BD0891D2@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: <39C65AC6.BD0891D2@FreeBSD.org>; from sobomax@FreeBSD.ORG on Mon, Sep 18, 2000 at 09:11:18PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 09:11:18PM +0300, Maxim Sobolev wrote: > Oh no, I do not have kde installed and is unlikely to install it just to test > this PR. Moreover, I strongly dislike KDE :). Please assign it to someone else > (I would suggest to ab^H^Huse will instead ;-> ). At least I didn't have to port the bitch called SVGALIB. ;-> -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:33:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 11D1037B422 for ; Mon, 18 Sep 2000 12:33:28 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 00AED1A25; Mon, 18 Sep 2000 14:29:19 -0500 (EST) Date: Mon, 18 Sep 2000 14:29:19 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: ports@FreeBSD.ORG Subject: Re: porteasy Message-ID: <20000918142919.D35550@radon.gryphonsoft.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Dag-Erling Smorgrav , ports@FreeBSD.ORG References: <86og1ld4u6.fsf@md5.follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86og1ld4u6.fsf@md5.follo.net>; from des@ofug.org on Mon, Sep 18, 2000 at 06:48:01PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 06:48:01PM +0200, Dag-Erling Smorgrav wrote: > I'm working on a porteasy port, and have two short questions: What does it do? (No, it's not obvious from the name.) > 1) What's the maximum tolerated size for files placed in FILESDIR? No real limit. > 2) Could you guys please find a way to list MASTERDIR dependencies in > ports/INDEX? Porteasy currently has no way to know that e.g. > www/w3m-ssl depends on www/w3m to build. I can try to have > porteasy extract MASTERDIR from the Makefile, but it'd be messy > and extremely inefficient. make -V MASTERDIR is hard? -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:41: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 1615837B422; Mon, 18 Sep 2000 12:41:02 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 5C7E51A25; Mon, 18 Sep 2000 14:36:54 -0500 (EST) Date: Mon, 18 Sep 2000 14:36:54 -0500 From: Will Andrews To: ade@FreeBSD.ORG Cc: howardjp@wam.umd.edu, freebsd-ports@FreeBSD.ORG Subject: Re: ports/19908: New Port: games/kite Message-ID: <20000918143654.E35550@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009181804.LAA98882@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: <200009181804.LAA98882@freefall.freebsd.org>; from ade@FreeBSD.ORG on Mon, Sep 18, 2000 at 11:04:14AM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 11:04:14AM -0700, ade@FreeBSD.ORG wrote: > State-Changed-From-To: open->feedback > State-Changed-By: ade > State-Changed-When: Mon Sep 18 11:02:22 PDT 2000 > State-Changed-Why: > Just looked at this.. you're missing a PORTVERSION in the Makefile, > which is a critical error, and looking at the MASTER_SITEs, the > file appears to be gzipped and auto-gunzipping by the remote ftp/http > daemon, if it exists at all, isn't happening. > > Can you fix the above two issues and reply to this PR with a new > sharball of the port? Thanks. Additionally, while I understand why you made this port, I don't see this port being very useful in the tree. I would prefer if you ported an actual project rather than making up a C file with some stdio and then packaging it and calling it a port. Hell man, we have other things that do this and do it better. :P Can we close this PR now? -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 12:52:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id D39DA37B423; Mon, 18 Sep 2000 12:52:30 -0700 (PDT) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id PAA17808; Mon, 18 Sep 2000 15:10:08 -0400 Received: from virtual-estates.net (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.9.3/8.9.3) with ESMTP id PAA36315; Mon, 18 Sep 2000 15:50:42 -0400 (EDT) (envelope-from mi@virtual-estates.net) Message-Id: <200009181950.PAA36315@misha.privatelabs.com> Date: Mon, 18 Sep 2000 15:50:41 -0400 (EDT) From: mi@aldan.algebra.com Subject: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 release on September 25th) To: Ade Lovett Cc: stable@freebsd.org, ports@freebsd.org, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it In-Reply-To: <20000918131151.U507@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Sep, Ade Lovett wrote: = On Mon, Sep 18, 2000 at 01:16:47PM -0400, mi@aldan.algebra.com wrote: = > My current grudge is the two PRs: = > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20401 = > and = > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19659 = = In both cases it is not evident from the PR submission that the = submitters have discussed these changes with the lang/erlang port = maintainer (seb@bluetail.com). = = Until such time as you can provide some kind of evidence that you've = contacted the maintainer and they've agreed to the updates, or that = they're not interested in maintaining the port any more, then the PRs = are just going to sit in feedback. As a rule, I CC port maintainers (and the last committer chaning the port's Makefile) when I submit a PR regarding a port. In this case, I not only did that, but also keep bothering this fine people, without any response, regretfully. My last such bothering took place less then a week ago, when I wrote to the Eddie mailing list: http://www.eddieware.org/mail/talk/0404.html Both seb@bluetail.com and ruslan@shevchenko.kiev.ua did not reply :( Perhaps we (Jimmy Olgeni and yours truly) should merge our patches and resubmit, but it would be nice to see a confirmation, that it will be looked at before we spend any more effort... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13: 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 8858137B424 for ; Mon, 18 Sep 2000 13:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA26194; Mon, 18 Sep 2000 13:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CAB8137B423; Mon, 18 Sep 2000 12:50:43 -0700 (PDT) Message-Id: <20000918195043.CAB8137B423@hub.freebsd.org> Date: Mon, 18 Sep 2000 12:50:43 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21364: ports/lang/pike wrong mastersite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21364 >Category: ports >Synopsis: ports/lang/pike wrong 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: Mon Sep 18 13:00: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: a make fetch gives a file not found error for the original pike/Makefile. It looks like the ftp locations has been changed. >How-To-Repeat: Try a make fetch. >Fix: Change the MASTERSITE line to: ftp://ftp.roxen.com/pub/pike/all/0.6.110/ or upgrade the port to the current version of 7.0.xx :-), but that may be more work :-). >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 Sep 18 13: 6:26 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 00F8837B422; Mon, 18 Sep 2000 13:06:19 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13b7B4-000BwF-00; Mon, 18 Sep 2000 15:06:10 -0500 Date: Mon, 18 Sep 2000 15:06:10 -0500 From: Ade Lovett To: mi@aldan.algebra.com Cc: stable@freebsd.org, ports@freebsd.org, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 release on September 25th) Message-ID: <20000918150610.C44991@FreeBSD.org> Reply-To: ports@FreeBSD.org References: <20000918131151.U507@FreeBSD.org> <200009181950.PAA36315@misha.privatelabs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009181950.PAA36315@misha.privatelabs.com>; from mi@aldan.algebra.com on Mon, Sep 18, 2000 at 03:50:41PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 03:50:41PM -0400, mi@aldan.algebra.com wrote: > As a rule, I CC port maintainers (and the last committer chaning the > port's Makefile) when I submit a PR regarding a port. Then SAY SO. In the PR. And if you get no response within a , followup on the PR, saying you got no response. Committers are not mind-readers. If you don't give us all the information, then something is going to go wrong. > In this case, I not only did that, but also keep bothering this fine > people, without any response, regretfully. My last such bothering took > place less then a week ago, when I wrote to the Eddie mailing list: Ahh. The Eddie mailing list. That well known repository of useful information for -ports PRs. Is it really that hard to understand that if it's not in the PR, it doesn't exist? Tell us the steps you've taken to try and contact maintainers. They can always be overridden, but you *have* to (try to) speak to them first. > Perhaps we (Jimmy Olgeni and yours truly) should merge our patches and > resubmit, but it would be nice to see a confirmation, that it will be > looked at before we spend any more effort... Contact the maintainer again. Give them one more week. Then work on combining your patches, submit it as a new PR, choose one of you to be the new maintainer (if the current one hasn't replied), and indicate in this new PR that: (a) previous PRs (don't forget to mention the numbers) are superceded (b) that either you have maintainer approval, or politely explain that you've tried to contact the maintainer with no reply and that you wish to become the new maintainer and I'm sure it will happen. Handling PRs, especially -ports ones, where just the sheer number is a headache, requires co-operaton between PR submitters and committers. If submitters don't provide all the information, then running around screaming "no fair. my PR hasn't been touched." is pointless. Other committers may have differing views, the above happens to be mine. Of course, if you want to pay me, say, US$100 for each PR, then we have a contract, and you'll get all the appropriate benefits. Last time I looked, however, practically all ports work, on both submitter and comitter sides, was being done "for free". -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 Mon Sep 18 13:18: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 F422737B423; Mon, 18 Sep 2000 13:18:14 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA31375; Mon, 18 Sep 2000 13:18:14 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:18:14 -0700 (PDT) From: Message-Id: <200009182018.NAA31375@freefall.freebsd.org> To: ler@lerbsd.lerctr.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19151: XFree86 X-Server make install Dies Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XFree86 X-Server make install Dies State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 13:17:52 PDT 2000 State-Changed-Why: Submitter reports problem went away with XFree86 4.0.1 update http://www.freebsd.org/cgi/query-pr.cgi?pr=19151 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:24:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 14E8C37B422 for ; Mon, 18 Sep 2000 13:24:33 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id WAA05909; Mon, 18 Sep 2000 22:24:09 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: porteasy References: <86og1ld4u6.fsf@md5.follo.net> <20000918142919.D35550@radon.gryphonsoft.com> From: Dag-Erling Smorgrav Date: 18 Sep 2000 22:24:08 +0200 In-Reply-To: Will Andrews's message of "Mon, 18 Sep 2000 14:29:19 -0500" Message-ID: Lines: 38 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews writes: > On Mon, Sep 18, 2000 at 06:48:01PM +0200, Dag-Erling Smorgrav wrote: > > I'm working on a porteasy port, and have two short questions: > What does it do? (No, it's not obvious from the name.) Short version: it builds ports. Long version: it looks up the specified ports in the index file, builds a dependency list, optionally updates the port tree using CVS, and then, depending on command-line options, does a variety of things to the ports you specified (shows the comment file; fetches all distfiles; installs the port; builds packages for the port and its dependencies) > > 1) What's the maximum tolerated size for files placed in FILESDIR? > No real limit. Is 20 kB OK? > > 2) Could you guys please find a way to list MASTERDIR dependencies in > > ports/INDEX? Porteasy currently has no way to know that e.g. > > www/w3m-ssl depends on www/w3m to build. I can try to have > > porteasy extract MASTERDIR from the Makefile, but it'd be messy > > and extremely inefficient. > make -V MASTERDIR > is hard? No, but it means I have to add dependencies on the fly, then go back and start over until the dependency graph stabilizes. It would be a lot simpler to have a complete dependency graph from the start. But it doesn't really matter any more, as I went ahead and implemented it, and although it's inefficient (more invocations of cvs, which is costly if you're working against a remote repo), it's not a dog. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:27: 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 AE19137B42C; Mon, 18 Sep 2000 13:27:04 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA32703; Mon, 18 Sep 2000 13:27:04 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:27:04 -0700 (PDT) From: Message-Id: <200009182027.NAA32703@freefall.freebsd.org> To: ben@pavilion.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20360: rxvts randomly closing Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rxvts randomly closing State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 13:25:24 PDT 2000 State-Changed-Why: Port maintainer can't reproduce the problem, I can't reproduce the problem, and as the maintainer says, if there were a problem with XFree86 v4 and rxvt's, I think we'd know about it. A 'serious' PR that hasn't be responded to by the submitter in over a month isn't exactly serious. http://www.freebsd.org/cgi/query-pr.cgi?pr=20360 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:28:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mta03-svc.ntlworld.com (mta03-svc.ntlworld.com [62.253.162.43]) by hub.freebsd.org (Postfix) with ESMTP id 6A1C437B423; Mon, 18 Sep 2000 13:28:06 -0700 (PDT) Received: from parish ([62.253.86.122]) by mta03-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000918202800.UQOD13676.mta03-svc.ntlworld.com@parish>; Mon, 18 Sep 2000 21:28:00 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e8IKS0H03216; Mon, 18 Sep 2000 21:28:00 +0100 (BST) (envelope-from mark) Date: Mon, 18 Sep 2000 21:28:00 +0100 From: Mark Ovens To: doc@freebsd.org, ports@freebsd.org Subject: An opportunity for FreeBSD Message-ID: <20000918212800.L567@parish> Reply-To: doc@freebsd.org 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 Some time ago Andrew Boothman produced a couple of perl scripts to collate all the documentation for ports/packages installed on a machine and produce an HTML index file of it. It was suggested that this could be extended to become part of the ports/packages mechanism so that the index was automatically updated whenever a port/package was installed or uninstalled. This got a rather cool reception from the ports people (after all, no-one gets excited about having even more work to do :)). I recently picked up this project, partly because I think it's a good idea, and partly because it provides a good vehicle for me to use to learn perl(1). Nik Clayton told me about a similar project that was starting up: "There's another angle I think that's worth investigating. At the O'Reilly docs summit a couple of months back, representatives from the GNOME, KDE, and Linux documentation projects were all looking at the similar problem of getting apps to register their documentation, and also to try and provide an interface over and above simple HTML." I fired off an e-mail to a couple of contacts Nik gave me, one of the replies I got is included at the end of this mail. As you can see the project is only just getting started and as yet no code has been produced. Currently the webpage mentioned in the e-mail has been taken down as they discovered that the name "Dewey" (from the Dewey-decimel system used for cataloguing by libraries) was trade-marked. The project is looking for a new name. I believe that it would be a Good Thing (TM) for FreeBSD to join this project for several reasons: 1. We really should have a mechanism for indexing the docs installed by the ports/packages. 2. By adopting Dewey (or whatever it becomes known as) rather than developing our own system we will reduce the work involved in implementation and maintenance. 3. It will help raise the visibility of FreeBSD in a predominately Linux environment. If we get involved now, at the outset, we will have a say in the design and development of the system (i.e. prevent it becoming overly Linux-specific) and get FreeBSD-specifics in the base source code. As you might expect, this is going to be GPL'd (down Brett, down boy ;)) but I doubt that we will change that, however it would become an Open Source project, rather than a Linux project (that FreeBSD may possibly adopt in the future). As to the additional work that this will make for port maintainers if Dewey is adopted will be considerably less than using our own system. For larger ports whose projects support Dewey, e.g. KDE, GNOME, etc., there should be no work at all as the meta-data will be in the source tar-balls and for ports without the meta-data included we should be able to automate its generation (although some hand tweaking may be necessary). Furthermore, this extra work is likely to be a one-off occurrence since document files are rarely added/removed/renamed, only the content is changed. The only other areas where work will be needed is for bsd.port.mk(?) to be modified to call Dewey as part of the install target (I expect that Dewey will be able to determine if the port has any docs to register). pkg_add(1) will also need modifying to do the same thing when installing packages and pkg_delete(1) to call Dewey to de-register the docs when a port/package is uninstalled. I have subscribed to the mailing list (which is rather quiet at the moment, but should liven up once code is available) and would like to be able to announce that FreeBSD is "officially" supporting the project (which means a committment to adopting Dewey for the ports/packages when it reaches production quality). I am willing to act as co-ordinator for this and will attempt to do most of the work. I also intend to lobby the {Net,Open}BSD docs people to support Dewey. If all three projects get involved it will, IMHO, give *BSD a big presence (and influence) in a Linux project. Please honour the Reply-To: so we just get one thread, in -doc. ----- begin included message from Dan Mueth ---- We are trying to solve this problem with Dewey (http://dewey.sourceforge.net/). Here's the basic idea: Each document is accompanied by a 16-element OMF metadata description describing the document (title, author, language, subject, description, license, ...). Generally, this can be an external XML file or else built directly into DocBook/XML files. After both the doc and metadata file are installed, a command is sent to dewey which tells it to register the document. Dewey keeps track of where the document and its metadata are stored, as well as doing a few nice things like registering it in a subject-sorted Contents List and yanking out the TOC(table of contents) for DocBook docs. This info is stored in XML files. Then, the help browser can ask Dewey for paths to particular information, like the Contents List or the TOC for a particular doc, or to do simple searches on document metadata (eg. "all documents with 'GIMP' in the subject or title"). Note that this system also allows one to store metadata for documents which are not local to the particular machines. Further, in future versions, Dewey will be able to exchange information with servers on the Net which function as giant electronic card catalogs, storing and searching the metadata but not necessarily the documents themselves. If you are interested, join the mailing list from the URL above. A couple of us are also on IRC a lot at #dewey on irc.openprojects.net. We don't have much code yet, but we've made some progress on figuring out how we'll do the 0.1 version and should have more code very soon. We are hoping to have a basic functional system within a few weeks. Dan ------ end included message ------- -- 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 Sep 18 13:29: 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 52AA937B440; Mon, 18 Sep 2000 13:28:58 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA33026; Mon, 18 Sep 2000 13:28:58 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:28:58 -0700 (PDT) From: Message-Id: <200009182028.NAA33026@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, tg@FreeBSD.org Subject: Re: ports/20490: Termios timeout parameters, VMIN, VTIME, dont work with Python. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Termios timeout parameters, VMIN, VTIME, dont work with Python. Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 13:28:33 PDT 2000 Responsible-Changed-Why: Over to maintainer to decide what to do with this. http://www.freebsd.org/cgi/query-pr.cgi?pr=20490 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:29: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 6EED637B423; Mon, 18 Sep 2000 13:29:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA33182; Mon, 18 Sep 2000 13:29:41 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:29:41 -0700 (PDT) From: Message-Id: <200009182029.NAA33182@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, sheldonh@FreeBSD.org Subject: Re: ports/20503: apache w/ mod_perl segfaults on 'use IO;' on CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: apache w/ mod_perl segfaults on 'use IO;' on CURRENT Responsible-Changed-From-To: freebsd-ports->sheldonh Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 13:29:28 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20503 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:31:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82B3637B423; Mon, 18 Sep 2000 13:31:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA33602; Mon, 18 Sep 2000 13:31:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:31:35 -0700 (PDT) From: Message-Id: <200009182031.NAA33602@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, andreas@FreeBSD.org Subject: Re: ports/20663: MD5 checksum mismatches for ports/databases/pgaccess Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MD5 checksum mismatches for ports/databases/pgaccess Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 13:31:15 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20663 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:32: 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 80EA337B424; Mon, 18 Sep 2000 13:32:03 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA33690; Mon, 18 Sep 2000 13:32:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:32:03 -0700 (PDT) From: Message-Id: <200009182032.NAA33690@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/20676: Problem by compiling the port sysutils/cdrecord Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problem by compiling the port sysutils/cdrecord Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 13:31:50 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=20676 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:36: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 273EB37B422; Mon, 18 Sep 2000 13:36:26 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA34440; Mon, 18 Sep 2000 13:36:26 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:36:26 -0700 (PDT) From: Message-Id: <200009182036.NAA34440@freefall.freebsd.org> To: sean@mercury1.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18871: apache13-fp port doesn't install on FreeBSD4.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: apache13-fp port doesn't install on FreeBSD4.0 State-Changed-From-To: open->suspended State-Changed-By: ade State-Changed-When: Mon Sep 18 13:35:55 PDT 2000 State-Changed-Why: Waiting on response from port maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=18871 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:36:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A651837B443; Mon, 18 Sep 2000 13:36:58 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA34609; Mon, 18 Sep 2000 13:36:58 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:36:58 -0700 (PDT) From: Message-Id: <200009182036.NAA34609@freefall.freebsd.org> To: insane@lunatic.oneinsane.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20792: Apache w/ Frontapge Fails to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Apache w/ Frontapge Fails to build State-Changed-From-To: open->suspended State-Changed-By: ade State-Changed-When: Mon Sep 18 13:36:44 PDT 2000 State-Changed-Why: Waiting on response from port maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20792 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 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 3E6A937B423; Mon, 18 Sep 2000 13:39:47 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35160; Mon, 18 Sep 2000 13:39:47 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:39:47 -0700 (PDT) From: Message-Id: <200009182039.NAA35160@freefall.freebsd.org> To: larse@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20046: plugger port broken (/usr/ports/www/plugger) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: plugger port broken (/usr/ports/www/plugger) State-Changed-From-To: open->suspended State-Changed-By: ade State-Changed-When: Mon Sep 18 13:39:33 PDT 2000 State-Changed-Why: Waiting on response from port maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20046 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 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 6C88B37B43C for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35282; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 078C337B422; Mon, 18 Sep 2000 13:30:43 -0700 (PDT) Message-Id: <20000918203043.078C337B422@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:30:43 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21365: Update port: comms/conserver Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21365 >Category: ports >Synopsis: Update port: comms/conserver >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support CFLAGS/PREFIX properly >How-To-Repeat: >Fix: diff -urN /usr/ports/comms/conserver/Makefile comms/conserver/Makefile --- /usr/ports/comms/conserver/Makefile Fri Aug 25 19:07:51 2000 +++ comms/conserver/Makefile Wed Aug 30 20:06:42 2000 @@ -11,15 +11,17 @@ CATEGORIES= comms MASTER_SITES= ftp://ftp.uu.net/vendor/bitsko/config-mgmt/ \ ftp://unix.hensa.ac.uk/mirrors/uunet/vendor/bitsko/config-mgmt/ -DISTNAME= conserver-5.21-Beta +DISTNAME= ${PORTNAME}-5.21-Beta EXTRACT_SUFX= .shar.gz MAINTAINER= obrien@FreeBSD.org -EXTRACT_CMD= zcat -EXTRACT_BEFORE_ARGS= -EXTRACT_AFTER_ARGS= |sh +EXTRACT_CMD= ${GZIP_CMD} +EXTRACT_BEFORE_ARGS= -dc +EXTRACT_AFTER_ARGS= |${SH} + NO_WRKSUBDIR= yes + MAN5= conserver.cf.5 MAN8= console.8 conserver.8 @@ -31,15 +33,14 @@ # XXX we also have to work around ``new'' uudecode behavior, thanks guys! post-extract: ${CP} ${FILESDIR}/Makefile ${WRKSRC} - if [ -f ${WRKSRC}/group.c ]; then \ - ${MV} ${WRKSRC}/group.c ${WRKSRC}/conserver/group.c ; \ - fi +.if !exists(${WRKSRC}/group.c) + ${MV} ${WRKSRC}/group.c ${WRKSRC}/conserver/group.c +.endif post-install: - @if [ ! -f ${PREFIX}/etc/rc.d/conserver.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/conserver.sh startup file."; \ - ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/conserver.sh \ - ${PREFIX}/etc/rc.d/conserver.sh; \ - fi +.if !exists(${PREFIX}/etc/rc.d/conserver.sh) + @${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/conserver.sh startup file." + ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/conserver.sh ${PREFIX}/etc/rc.d +.endif .include diff -urN /usr/ports/comms/conserver/patches/patch-aa comms/conserver/patches/patch-aa --- /usr/ports/comms/conserver/patches/patch-aa Fri Feb 18 13:00:44 2000 +++ comms/conserver/patches/patch-aa Tue Sep 19 01:50:50 2000 @@ -1,33 +1,47 @@ ---- conserver/Makefile.orig Sat Nov 22 20:42:18 1997 -+++ conserver/Makefile Sat Nov 22 20:43:24 1997 -@@ -8,6 +8,6 @@ +--- conserver/Makefile.orig Tue Aug 8 20:13:39 2000 ++++ conserver/Makefile Tue Aug 8 20:15:34 2000 +@@ -7,8 +7,10 @@ + # (1) change ETC below to where you would like the console server installed # I would not change the name, you have to much with the docs then... PROG= conserver -ETC= ${DESTDIR}/usr/local/etc -DOC= ${DESTDIR}/usr/local/man +ETC= ${PREFIX}/sbin +DOC= ${PREFIX}/man/man8 ++ ++CONFIG= ${PREFIX}/etc/conserver.cf # if we have to PUCC ptyd daemon we can use it to get ptys, else use fallback.o -@@ -25,5 +25,5 @@ + # and change the CDEFS line below to =0 +@@ -23,9 +25,9 @@ + P= + INCLUDE= - DEBUG=-O +-DEBUG=-O -CDEFS= -DSUN5 -DHAVE_PTYD=0 -DDO_VIRTUAL=1 -+CDEFS= -DFREEBSD -DHAVE_PTYD=0 -DDO_VIRTUAL=1 -DPORT=782 - CFLAGS= ${DEBUG} ${CDEFS} ${INCLUDE} - -@@ -42,5 +42,5 @@ +-CFLAGS= ${DEBUG} ${CDEFS} ${INCLUDE} ++DEBUG= ++CDEFS= -DFREEBSD -DCONFIG=\"${CONFIG}\" -DHAVE_PTYD=0 -DDO_VIRTUAL=1 -DPORT=782 ++CFLAGS+= ${DEBUG} ${CDEFS} ${INCLUDE} + + HDR= cons.h \ + access.h client.h consent.h group.h main.h master.h \ +@@ -41,7 +43,7 @@ + all: ${PROG} ${PROG}:$P ${OBJ} - ${CC} -o $@ ${CFLAGS} ${OBJ} ${PUCCLIB} -lsocket -lnsl + ${CC} -o $@ ${CFLAGS} ${OBJ} ${PUCCLIB} -lcrypt clean: FRC -@@ -60,5 +60,6 @@ + rm -f Makefile.bak ${PROG} a.out *.o core errs lint.out tags +@@ -59,7 +61,8 @@ + distrib -c ${ETC}/${PROG} install: all dirs FRC - install -c -s ${PROG} ${ETC}/${PROG} -+ install -c -s -o bin -g bin -m 555 ${PROG} ${ETC}/${PROG} -+ install -c -o bin -g bin -m 444 ${MAN} ${DOC}/conserver.8 ++ ${BSD_INSTALL_PROGRAM} -o bin -g bin ${PROG} ${ETC}/${PROG} ++ ${BSD_INSTALL_MAN} ${MAN} ${DOC}/conserver.8 lint: ${HDR} ${SRC} FRC + lint -h ${CDEFS} ${INCLUDE} ${SRC} diff -urN /usr/ports/comms/conserver/patches/patch-ab comms/conserver/patches/patch-ab --- /usr/ports/comms/conserver/patches/patch-ab Mon Apr 20 12:52:46 1998 +++ comms/conserver/patches/patch-ab Tue Aug 8 19:17:16 2000 @@ -7,13 +7,6 @@ +#define HAVE_UWAIT !(defined(IBMR2)||defined(SUN5)||defined(HPUX8)||defined(HPUX9)||defined(PTX)||defined(IRIX5)||defined(FREEBSD)) #endif -@@ -86,5 +86,5 @@ - */ - #if !defined(CONFIG) --#define CONFIG "/usr/local/lib/conserver.cf" -+#define CONFIG "/usr/local/etc/conserver.cf" - #endif - @@ -171,5 +171,5 @@ #if !defined(HAVE_SETSID) diff -urN /usr/ports/comms/conserver/patches/patch-ae comms/conserver/patches/patch-ae --- /usr/ports/comms/conserver/patches/patch-ae Fri Feb 18 13:00:45 2000 +++ comms/conserver/patches/patch-ae Tue Sep 19 01:51:18 2000 @@ -1,5 +1,5 @@ ---- console/Makefile.orig Sat Nov 22 23:02:48 1997 -+++ console/Makefile Sat Nov 22 23:03:45 1997 +--- console/Makefile.orig Tue Aug 8 19:20:12 2000 ++++ console/Makefile Tue Aug 8 19:27:08 2000 @@ -6,8 +6,8 @@ # edit the ETC directory below to change where the console client # is installed. @@ -11,15 +11,19 @@ I=/usr/include S=/usr/include/sys -@@ -17,7 +17,7 @@ +@@ -16,9 +16,9 @@ + P= INCLUDE= -I$C - DEBUG=-O +-DEBUG=-O -CDEFS= -DSUN5 +-CFLAGS= ${DEBUG} ${CDEFS} ${INCLUDE} ++DEBUG= +CDEFS= -DFREEBSD -DHOST=\"${DEFAULTHOST}\" -DPORT=782 - CFLAGS= ${DEBUG} ${CDEFS} ${INCLUDE} ++CFLAGS+= ${DEBUG} ${CDEFS} ${INCLUDE} HDR= + ONEC= console.c @@ -29,7 +29,7 @@ all: ${PROG} @@ -34,8 +38,8 @@ install: all dirs FRC - install -cs ${PROG} ${ETC}/${PROG} -+ install -c -s -o bin -g bin -m 555 ${PROG} ${ETC}/${PROG} -+ install -c -o bin -g bin -m 444 ${MAN} ${DOC}/console.8 ++ ${BSD_INSTALL_PROGRAM} -o bin -g bin ${PROG} ${ETC}/${PROG} ++ ${BSD_INSTALL_MAN} ${MAN} ${DOC}/console.8 lint: ${HDR} ${ONEC} FRC lint -h ${CDEFS} ${INCLUDE} ${ONEC} diff -urN /usr/ports/comms/conserver/patches/patch-ag comms/conserver/patches/patch-ag --- /usr/ports/comms/conserver/patches/patch-ag Fri Feb 18 13:00:45 2000 +++ comms/conserver/patches/patch-ag Tue Sep 19 01:51:42 2000 @@ -29,8 +29,8 @@ install: all dirs FRC - install -c ${PROG} ${LIB}/${PROG} -+ install -c -o bin -g bin -m 444 ${PROG} ${LIB} -+ install -c -o bin -g bin -m 444 ${MAN} ${DOC}/conserver.cf.5 ++ ${BSD_INSTALL_DATA} -o bin -g bin ${PROG} ${LIB} ++ ${BSD_INSTALL_MAN} ${MAN} ${DOC}/conserver.cf.5 lint: FRC diff -urN /usr/ports/comms/conserver/patches/patch-ai comms/conserver/patches/patch-ai --- /usr/ports/comms/conserver/patches/patch-ai Fri Feb 18 13:00:45 2000 +++ comms/conserver/patches/patch-ai Tue Aug 8 19:44:27 2000 @@ -1,6 +1,6 @@ ---- autologin/Makefile Sun Apr 19 03:51:53 1998 -+++ autologin/Makefile Sun Apr 19 03:54:02 1998 -@@ -7,11 +7,11 @@ +--- autologin/Makefile.orig Tue Aug 8 19:20:30 2000 ++++ autologin/Makefile Tue Aug 8 19:30:16 2000 +@@ -7,12 +7,12 @@ # DESTDIR= @@ -10,8 +10,19 @@ INCLUDE= -DEBUG= -g -DEFS= -DPUCC -DSUN5 -+DEBUG= -O +-CFLAGS= ${DEBUG} ${DEFS} ${INCLUDE} ++DEBUG= +DEFS= -DFREEBSD - CFLAGS= ${DEBUG} ${DEFS} ${INCLUDE} ++CFLAGS+= ${DEBUG} ${DEFS} ${INCLUDE} GENC= main.c + GENH= main.h +@@ -56,7 +56,7 @@ + lint -h ${CDEFS} ${INCLUDE} ${GEN} ${SRC} + + install: all +- install -c -s -m 755 autologin ${BINDIR} ++ ${BSD_INSTALL_PROGRAM} autologin ${BINDIR} + + distrib: + distrib -c ${BINDIR}/autologin >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 Sep 18 13: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 833EB37B43E for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35291; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3E7B737B423; Mon, 18 Sep 2000 13:31:44 -0700 (PDT) Message-Id: <20000918203144.3E7B737B423@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:31:44 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21366: Update port: comms/mserver Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21366 >Category: ports >Synopsis: Update port: comms/mserver >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support CC/CFLAGS properly - Support NOPORTDOCS Remove file: patches/patch-aa >How-To-Repeat: >Fix: diff -urN /usr/ports/comms/mserver/Makefile comms/mserver/Makefile --- /usr/ports/comms/mserver/Makefile Fri May 19 19:11:10 2000 +++ comms/mserver/Makefile Wed Aug 30 20:11:18 2000 @@ -12,13 +12,17 @@ MAINTAINER= sobomax@FreeBSD.org +MAKE_ARGS= CC="${CC}" CCOPTS="${CFLAGS}" + do-install: - ${MKDIR} ${PREFIX}/share/doc/mserver ${INSTALL_PROGRAM} ${WRKSRC}/mserver ${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/tcpconn ${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/mserver.conf ${PREFIX}/etc/mserver.conf.default ${INSTALL_SCRIPT} ${WRKSRC}/mserver.sh.sample ${PREFIX}/etc/rc.d/mserver.sh.sample +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/mserver ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/mserver ${INSTALL_MAN} ${WRKSRC}/README.tcpconn ${PREFIX}/share/doc/mserver +.endif .include diff -urN /usr/ports/comms/mserver/patches/patch-aa comms/mserver/patches/patch-aa --- /usr/ports/comms/mserver/patches/patch-aa Thu Jul 8 14:11:38 1999 +++ comms/mserver/patches/patch-aa Thu Jan 1 09:00:00 1970 @@ -1,30 +0,0 @@ -diff -ruN mserver-0.23a.orig/Makefile mserver-0.23a/Makefile ---- Makefile.orig Thu Jan 15 21:12:33 1998 -+++ Makefile Fri May 21 11:10:30 1999 -@@ -1,8 +1,7 @@ - # - # Makefile for mserver - # --CC = gcc --CCOPTS = -O2 -+CC = cc - LIBS = - - INCLUDES = config.h stty.h -@@ -16,13 +15,13 @@ - $(CC) tcpconn.o stty.o -o tcpconn $(LIBS) - - mserver.o: mserver.c $(INCLUDES) -- $(CC) $(CCOPTS) -c -o mserver.o mserver.c -+ $(CC) $(CFLAGS) -c -o mserver.o mserver.c - - tcpconn.o: tcpconn.c $(INCLUDES) -- $(CC) $(CCOPTS) -c -o tcpconn.o tcpconn.c -+ $(CC) $(CFLAGS) -c -o tcpconn.o tcpconn.c - - stty.o: stty.c $(INCLUDES) -- $(CC) $(CCOPTS) -c -o stty.o stty.c -+ $(CC) $(CFLAGS) -c -o stty.o stty.c - - clean: - rm -f mserver tcpconn *.o core >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 Sep 18 13:40: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 99AC937B440 for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35300; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 880CC37B423; Mon, 18 Sep 2000 13:32:43 -0700 (PDT) Message-Id: <20000918203243.880CC37B423@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:32:43 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21367: Update port: comms/yaps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21367 >Category: ports >Synopsis: Update port: comms/yaps >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support CFLAGS/PREFIX properly - Support NOPORTDOCS >How-To-Repeat: >Fix: diff -urN /usr/ports/comms/yaps/Makefile comms/yaps/Makefile --- /usr/ports/comms/yaps/Makefile Sun Apr 9 15:43:32 2000 +++ comms/yaps/Makefile Tue Aug 8 20:32:09 2000 @@ -18,10 +18,12 @@ MAN1= yaps.1 post-install: - ${MKDIR} ${PREFIX}/share/doc/yaps; \ - ${INSTALL_DATA} ${WRKSRC}/yaps.rc ${PREFIX}/etc/yaps.rc.sample; \ - ${INSTALL_DATA} ${WRKSRC}/yaps.doc ${PREFIX}/share/doc/yaps; \ - ${INSTALL_DATA} ${WRKSRC}/yaps.html ${PREFIX}/share/doc/yaps; \ - ${INSTALL_MAN} ${WRKSRC}/yaps.1 ${PREFIX}/man/man1; + ${INSTALL_DATA} ${WRKSRC}/yaps.rc ${PREFIX}/etc/yaps.rc.sample + ${INSTALL_MAN} ${WRKSRC}/yaps.1 ${PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/yaps + ${INSTALL_DATA} ${WRKSRC}/yaps.doc ${PREFIX}/share/doc/yaps + ${INSTALL_DATA} ${WRKSRC}/yaps.html ${PREFIX}/share/doc/yaps +.endif .include diff -urN /usr/ports/comms/yaps/patches/patch-aa comms/yaps/patches/patch-aa --- /usr/ports/comms/yaps/patches/patch-aa Fri Oct 9 13:50:07 1998 +++ comms/yaps/patches/patch-aa Tue Aug 8 20:29:52 2000 @@ -1,7 +1,8 @@ -*** Config~ Tue Sep 29 15:15:18 1998 ---- Config Tue Sep 29 15:16:10 1998 +*** Config.orig Sat Jun 14 19:32:18 1997 +--- Config Tue Aug 8 20:29:41 2000 *************** -*** 2,8 **** +*** 1,9 **** + # -*- sh -*- # SECTION A.) Global configuration # Select compiler command ! CC = gcc @@ -9,7 +10,9 @@ ! CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes LDFLAGS = EXLIBS = ---- 2,8 ---- + # +--- 1,9 ---- + # -*- sh -*- # SECTION A.) Global configuration # Select compiler command ! #CC = gcc @@ -17,29 +20,68 @@ ! #CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes LDFLAGS = EXLIBS = + # *************** -*** 21,25 **** +*** 14,35 **** + #LUA = True + # + # Define this to disable debugging +! #NDEBUG = True + # + # + # # SECTION B.) yaps configuration # Name and location of global configuration file ! YAPS_CFGFILE = /etc/yaps.rc # Name of local configuration file (location is $HOME.) YAPS_LCFGFILE = .yapsrc ---- 21,25 ---- - # SECTION B.) yaps configuration - # Name and location of global configuration file -! YAPS_CFGFILE = /usr/local/etc/yaps.rc - # Name of local configuration file (location is $HOME.) - YAPS_LCFGFILE = .yapsrc -*************** -*** 30,34 **** + # Directory for installing the binary +! YAPS_BINDIR = /usr/local/bin + # Directory for optional support files +! YAPS_LIBDIR = /usr/local/lib/yaps # User/Group/Mode for yaps YAPS_USER = bin ! YAPS_GROUP = uucp YAPS_MODE = 2711 # User/Group/Mode for global configuration file ---- 30,34 ---- + YAPS_RCUSER = bin +--- 14,35 ---- + #LUA = True + # + # Define this to disable debugging +! NDEBUG = True + # + # + # + # SECTION B.) yaps configuration + # Name and location of global configuration file +! YAPS_CFGFILE = ${PREFIX}/etc/yaps.rc + # Name of local configuration file (location is $HOME.) + YAPS_LCFGFILE = .yapsrc + # Directory for installing the binary +! YAPS_BINDIR = ${PREFIX}/bin + # Directory for optional support files +! YAPS_LIBDIR = ${PREFIX}/share/yaps # User/Group/Mode for yaps YAPS_USER = bin ! YAPS_GROUP = dialer YAPS_MODE = 2711 # User/Group/Mode for global configuration file + YAPS_RCUSER = bin +*************** +*** 56,62 **** + # + ifdef NDEBUG + DDEFS = -DNDEBUG +! G = -O + else + G = -g + endif +--- 56,62 ---- + # + ifdef NDEBUG + DDEFS = -DNDEBUG +! G = + else + G = -g + endif diff -urN /usr/ports/comms/yaps/pkg/PLIST comms/yaps/pkg/PLIST --- /usr/ports/comms/yaps/pkg/PLIST Fri Oct 9 13:50:07 1998 +++ comms/yaps/pkg/PLIST Tue Aug 8 20:35:37 2000 @@ -1,7 +1,7 @@ bin/yaps -@exec mkdir %D/lib/yaps +@exec mkdir -p %D/share/yaps etc/yaps.rc.sample share/doc/yaps/yaps.doc share/doc/yaps/yaps.html @dirrm share/doc/yaps -@dirrm lib/yaps +@unexec rmdir %D/share/yaps 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 Mon Sep 18 13:40: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 BCD6437B43F for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35318; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A4DD637B422; Mon, 18 Sep 2000 13:34:25 -0700 (PDT) Message-Id: <20000918203425.A4DD637B422@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:34:25 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21369: Update port: graphics/flashplayer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21369 >Category: ports >Synopsis: Update port: graphics/flashplayer >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support X11BASE properly >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/flashplayer/Makefile graphics/flashplayer/Makefile --- /usr/ports/graphics/flashplayer/Makefile Tue Apr 25 06:38:13 2000 +++ graphics/flashplayer/Makefile Thu Aug 10 21:54:57 2000 @@ -13,17 +13,15 @@ DISTNAME= flash-${PORTVERSION} EXTRACT_SUFX= .tgz -PATCH_SITES= http://leed.t.u-tokyo.ac.jp/~yamagata/flash/ -PATCHFILES= flash-0.4.3-fbsd-19990512.patch +PATCH_SITES= http://leed.t.u-tokyo.ac.jp/~yamagata/flash/ +PATCHFILES= flash-0.4.3-fbsd-19990512.patch MAINTAINER= knu@FreeBSD.org USE_X_PREFIX= yes - -do-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} swfplayer +ALL_TARGET= swfplayer do-install: - cd ${WRKSRC} && ${INSTALL_PROGRAM} swfplayer ${X11BASE}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/swfplayer ${PREFIX}/bin .include diff -urN /usr/ports/graphics/flashplayer/patches/patch-ag graphics/flashplayer/patches/patch-ag --- /usr/ports/graphics/flashplayer/patches/patch-ag Fri Apr 21 19:06:04 2000 +++ graphics/flashplayer/patches/patch-ag Thu Aug 10 21:44:45 2000 @@ -1,13 +1,22 @@ ---- Makefile.orig Fri Apr 21 11:47:57 2000 -+++ Makefile Fri Apr 21 11:59:25 2000 +--- Makefile.orig Thu Aug 10 21:43:00 2000 ++++ Makefile Thu Aug 10 21:43:58 2000 @@ -1,8 +1,6 @@ -CC=cc -CXX=/usr/bin/c++ -CFLAGS=-I/usr/X11R6/include -I./Lib -I./Plugin -fpic -fno-rtti -DXP_UNIX -CFLAGS+=-O2 -+CFLAGS+=-I/usr/X11R6/include -I./Lib -I./Plugin -fpic -fno-rtti -DXP_UNIX ++CFLAGS+=-I${X11BASE}/include -I./Lib -I./Plugin -fpic -fno-rtti -DXP_UNIX CFLAGS+=-DCHECK_TEXT_PLAIN +CXXFLAGS+=${CFLAGS} OBJS = adpcm.o bitmap.o button.o character.o cxform.o \ displaylist.o flash.o font.o graphic.o matrix.o \ +@@ -25,7 +23,7 @@ + all: swfplayer libswf.so + + swfplayer: $(PLAYEROBJS) $(OBJS) +- $(CXX) -o $@ main.o $(OBJS) -L/usr/X11R6/lib -lXext -lX11 ++ $(CXX) -o $@ main.o $(OBJS) -L${X11BASE}/lib -lXext -lX11 + + libswf.so: $(PLUGINOBJS) $(OBJS) + $(CC) -shared -Wl,-x -o $@ `lorder npunix.o plugin.o $(OBJS)| /usr/bin/tsort -q` >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 Sep 18 13:40: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 A9F7037B424 for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35309; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8626D37B422; Mon, 18 Sep 2000 13:33:47 -0700 (PDT) Message-Id: <20000918203347.8626D37B422@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:33:47 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21368: Update port: games/xosmulti Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21368 >Category: ports >Synopsis: Update port: games/xosmulti >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support X11BASE properly >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xosmulti/patches/patch-aa games/xosmulti/patches/patch-aa --- /usr/ports/games/xosmulti/patches/patch-aa Sat Feb 20 09:50:09 1999 +++ games/xosmulti/patches/patch-aa Sat Aug 12 02:26:32 2000 @@ -29,7 +29,7 @@ -# INC_DIR = -I/usr/X11R6/include -# LIB_DIR = -L/usr/X11R6/lib -+INC_DIR = -I/usr/X11R6/include -+LIB_DIR = -L/usr/X11R6/lib ++INC_DIR = -I${X11BASE}/include ++LIB_DIR = -L${X11BASE}/lib all: $(TARGET) >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 Sep 18 13:40: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 D44D737B423 for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35327; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D7FE237B424; Mon, 18 Sep 2000 13:35:14 -0700 (PDT) Message-Id: <20000918203514.D7FE237B424@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:35:14 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21370: Update port: graphics/xdgagrab Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21370 >Category: ports >Synopsis: Update port: graphics/xdgagrab >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support CC/CFLAGS/X11BASE properly >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/xdgagrab/patches/patch-aa graphics/xdgagrab/patches/patch-aa --- /usr/ports/graphics/xdgagrab/patches/patch-aa Mon Sep 20 11:02:34 1999 +++ graphics/xdgagrab/patches/patch-aa Thu Aug 10 22:11:18 2000 @@ -5,5 +5,5 @@ xdgagrab : xdgagrab.c - gcc -O2 -m486 -Wall -I/usr/X11R6/include -o xdgagrab xdgagrab.c -L/usr/X11R6/lib -lX11 -lXxf86dga -lXext -+ gcc -O2 -Wall -I/usr/X11R6/include -o xdgagrab xdgagrab.c -L/usr/X11R6/lib -lX11 -lXxf86dga -lXext ++ ${CC} ${CFLAGS} -I${X11BASE}/include -o xdgagrab xdgagrab.c -L${X11BASE}/lib -lX11 -lXxf86dga -lXext >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 Sep 18 13:40: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 098C437B446 for ; Mon, 18 Sep 2000 13:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35345; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 56AA237B446; Mon, 18 Sep 2000 13:36:54 -0700 (PDT) Message-Id: <20000918203654.56AA237B446@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:36:54 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21372: Update port: sysutils/doconfig Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21372 >Category: ports >Synopsis: Update port: sysutils/doconfig >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support PREFIX properly >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/doconfig/patches/patch-aa sysutils/doconfig/patches/patch-aa --- /usr/ports/sysutils/doconfig/patches/patch-aa Mon Aug 3 15:28:04 1998 +++ sysutils/doconfig/patches/patch-aa Sat Aug 12 01:40:00 2000 @@ -14,7 +14,7 @@ $version = "1.1"; -$autokernconf = "/usr/sbin/autokernconf"; -+$autokernconf = "/usr/local/sbin/autokernconf"; ++$autokernconf = "%%PREFIX%%/sbin/autokernconf"; $autokernconf_args = ""; $autoinstall = 0; $autoreboot = 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 Mon Sep 18 13:40: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 E701237B449 for ; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35336; Mon, 18 Sep 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E0E6B37B423; Mon, 18 Sep 2000 13:36:08 -0700 (PDT) Message-Id: <20000918203608.E0E6B37B423@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:36:08 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21371: Update port: net/mars_nwe to 0.99.20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21371 >Category: ports >Synopsis: Update port: net/mars_nwe to 0.99.20 >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 Sep 18 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.99.20 New file: patches/patch-ab Remove file: scripts/configure >How-To-Repeat: >Fix: diff -urN /usr/ports/net/mars_nwe/Makefile net/mars_nwe/Makefile --- /usr/ports/net/mars_nwe/Makefile Fri Jul 7 21:23:57 2000 +++ net/mars_nwe/Makefile Tue Sep 19 02:15:01 2000 @@ -6,44 +6,51 @@ # PORTNAME= mars_nwe -PORTVERSION= 0.99.b19 +PORTVERSION= 0.99.20 CATEGORIES= net -MASTER_SITES= http://www.compu-art.de/download/ \ +MASTER_SITES= ftp://www.compu-art.de/mars_nwe/ \ ftp://ftp.gwdg.de/pub/linux/misc/ncpfs/mars_nwe/ \ ftp://ftp.butya.kz/pub/mars_nwe/ -DISTNAME= mars_nwe-0.99.pl19 +DISTNAME= ${PORTNAME}-0.99.pl20 EXTRACT_SUFX= .tgz MAINTAINER= bp@FreeBSD.org -WRKSRC= ${WRKDIR}/mars_nwe +WRKSRC= ${WRKDIR}/${PORTNAME} -PLIST= ${WRKDIR}/PLIST.DYN +MAKE_ENV= MAKE="${MAKE}" CC="${CC}" + +PLIST= ${WRKDIR}/PLIST.DYN NDOCDIR= ${PREFIX}/share/doc/mars_nwe -do-build: - @(cd ${WRKSRC} && ${MAKE} all) +post-patch: + @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/examples/config.h -do-install: - @(cd ${WRKSRC} && ./mk.li install) - @${INSTALL_DATA} ${WRKSRC}/examples/nw.ini ${PREFIX}/etc/nwserv.conf.example - @${ECHO} "Please read details in ${WORKDIR}/mars_nwe/doc directory." +pre-build: +.for file in config.h mk.li nw.ini + @${CP} -f ${WRKSRC}/examples/${file} ${WRKSRC}/${file} +.endfor pre-install: - @cp ${PKGDIR}/PLIST ${WRKDIR}/PLIST.DYN + @${CP} ${PKGDIR}/PLIST ${WRKDIR}/PLIST.DYN .if !defined(NOPORSDOCS) - @cat ${PKGDIR}/PLIST.DOC >> ${WRKDIR}/PLIST.DYN + @${CAT} ${PKGDIR}/PLIST.DOC >> ${WRKDIR}/PLIST.DYN .endif +do-install: +.for file in ncpserv nwbind nwconn nwclient nwserv + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/sbin +.endfor + ${INSTALL_DATA} ${WRKSRC}/examples/nw.ini ${PREFIX}/etc/nwserv.conf.example + @${ECHO_MSG} "Please read details in ${WRKDIR}/mars_nwe/doc directory." + post-install: - @${SED} -e "/%%PREFIX%%/s##${PREFIX}#g" \ - ${FILESDIR}/nwserv.sh \ - >${PREFIX}/etc/rc.d/nwserv.sh - @${CHMOD} 0755 ${PREFIX}/etc/rc.d/nwserv.sh + @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" \ + ${FILESDIR}/nwserv.sh > ${PREFIX}/etc/rc.d/nwserv.sh + @${CHMOD} 0751 ${PREFIX}/etc/rc.d/nwserv.sh .if !defined(NOPORTDOCS) - @if ! [ -d ${NDOCDIR} ]; then ${MKDIR} ${NDOCDIR}; fi - ${RM} -f ${WRKSRC}/doc/*.orig + @${MKDIR} ${NDOCDIR} ${INSTALL_DATA} ${WRKSRC}/doc/* ${NDOCDIR} .endif @${ECHO_MSG} "Look in ${NDOCDIR} for documentation." diff -urN /usr/ports/net/mars_nwe/files/md5 net/mars_nwe/files/md5 --- /usr/ports/net/mars_nwe/files/md5 Fri Jul 7 21:23:58 2000 +++ net/mars_nwe/files/md5 Tue Sep 19 02:06:29 2000 @@ -1 +1 @@ -MD5 (mars_nwe-0.99.pl19.tgz) = 3811a245364538d476255e55f40d360b +MD5 (mars_nwe-0.99.pl20.tgz) = 98b3bf022233035ce12a834c689605e5 diff -urN /usr/ports/net/mars_nwe/files/nwserv.sh net/mars_nwe/files/nwserv.sh --- /usr/ports/net/mars_nwe/files/nwserv.sh Tue May 16 16:45:36 2000 +++ net/mars_nwe/files/nwserv.sh Tue Sep 19 02:15:33 2000 @@ -1,6 +1,6 @@ #!/bin/sh -PREFIX=/usr/local +PREFIX=%%PREFIX%% PROG=${PREFIX}/sbin/nwserv diff -urN /usr/ports/net/mars_nwe/patches/patch-aa net/mars_nwe/patches/patch-aa --- /usr/ports/net/mars_nwe/patches/patch-aa Fri Jul 7 21:23:58 2000 +++ net/mars_nwe/patches/patch-aa Fri Aug 11 03:17:38 2000 @@ -1,25 +1,3 @@ -Index: doc/README.FREEBSD -=================================================================== -RCS file: /usr/local/cvsrp/mars/doc/README.FREEBSD,v -retrieving revision 1.1.1.3 -retrieving revision 1.5 -diff -u -r1.1.1.3 -r1.5 ---- doc/README.FREEBSD 1999/06/04 09:38:04 1.1.1.3 -+++ doc/README.FREEBSD 1999/06/04 09:42:09 1.5 -@@ -44,7 +44,6 @@ - with switch '-s'. Please use only patched version of IPXrouted if you - are run 2.2.8 or 3.x of FreeBSD. - -- - 4. Client configuration - - This port of Mars_nwe was tested with VLM, Client32 and -Index: examples/config.h -=================================================================== -RCS file: /usr/local/cvsrp/mars/examples/config.h,v -retrieving revision 1.1.1.1 -retrieving revision 1.2 -diff -u -r1.1.1.1 -r1.2 --- examples/config.h 1999/01/28 06:21:38 1.1.1.1 +++ examples/config.h 1999/01/28 06:23:09 1.2 @@ -11,9 +11,9 @@ @@ -27,9 +5,9 @@ # define PATHNAME_BINDERY "." /* directory for bindery-files */ #else -# define FILENAME_NW_INI "/etc/nwserv.conf" -+# define FILENAME_NW_INI "/usr/local/etc/nwserv.conf" ++# define FILENAME_NW_INI "%%PREFIX%%/etc/nwserv.conf" /* full name of ini (conf) file */ -# define PATHNAME_PROGS "/usr/sbin" /* where to find the executables */ -+# define PATHNAME_PROGS "/usr/local/sbin" /* where to find the executables */ ++# define PATHNAME_PROGS "%%PREFIX%%/sbin" /* where to find the executables */ # define PATHNAME_BINDERY "/var/nwserv/db" /* directory for bindery-files */ #endif diff -urN /usr/ports/net/mars_nwe/patches/patch-ab net/mars_nwe/patches/patch-ab --- /usr/ports/net/mars_nwe/patches/patch-ab Thu Jan 1 09:00:00 1970 +++ net/mars_nwe/patches/patch-ab Fri Aug 11 22:00:02 2000 @@ -0,0 +1,22 @@ +--- examples/mk.li.orig Sat Jan 15 20:11:20 2000 ++++ examples/mk.li Fri Aug 11 21:59:51 2000 +@@ -97,8 +97,8 @@ + freebsd) + V_VPATH=".." + OBJDIR="obj" +- CC=gcc +- CPP="gcc -E" ++ CC="$CC" ++ CPP="$CC -E" + if [ "x$CFLAGS" = "x" ]; then + CFLAGS="native" + fi +@@ -108,7 +108,7 @@ + CRYPTLIB="-lcrypt -lipx" + + NSLLIB="" +- MAKE=make ++ MAKE="$MAKE" + TMP="./" + INSTALL="install -c" + ;; diff -urN /usr/ports/net/mars_nwe/pkg/PLIST net/mars_nwe/pkg/PLIST --- /usr/ports/net/mars_nwe/pkg/PLIST Wed May 17 03:39:13 2000 +++ net/mars_nwe/pkg/PLIST Fri Aug 11 04:38:22 2000 @@ -1,7 +1,7 @@ etc/nwserv.conf.example etc/rc.d/nwserv.sh -sbin/nwserv sbin/ncpserv sbin/nwbind sbin/nwclient sbin/nwconn +sbin/nwserv diff -urN /usr/ports/net/mars_nwe/scripts/configure net/mars_nwe/scripts/configure --- /usr/ports/net/mars_nwe/scripts/configure Wed Jan 27 10:27:42 1999 +++ net/mars_nwe/scripts/configure Thu Jan 1 09:00:00 1970 @@ -1,5 +0,0 @@ -#!/bin/sh - -cp ${WRKSRC}/examples/config.h ${WRKSRC}/config.h -cp ${WRKSRC}/examples/nw.ini ${WRKSRC}/nw.ini -cp ${WRKSRC}/examples/mk.li ${WRKSRC}/mk.li >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 Sep 18 13:41: 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 1B73F37B506 for ; Mon, 18 Sep 2000 13:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35354; Mon, 18 Sep 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2D46F37B424; Mon, 18 Sep 2000 13:37:46 -0700 (PDT) Message-Id: <20000918203746.2D46F37B424@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:37:46 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21373: Update port: sysutils/libretto-config Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21373 >Category: ports >Synopsis: Update port: sysutils/libretto-config >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 Sep 18 13:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Support PREFIX properly >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/libretto-config/patches/patch-aa sysutils/libretto-config/patches/patch-aa --- /usr/ports/sysutils/libretto-config/patches/patch-aa Tue May 30 19:03:19 2000 +++ sysutils/libretto-config/patches/patch-aa Sat Aug 12 01:42:14 2000 @@ -17,9 +17,9 @@ +OWNER = -o root +GROUP = -g operator +MODE = -m 4550 -+BINDIR = /usr/local/sbin ++BINDIR = ${PREFIX}/sbin +MANSECT = 8 -+MANDIR = /usr/local/man ++MANDIR = ${PREFIX}/man +MANLANG = e -CFLAGS = -O2 #-DLIBRETTO -DDEBUG >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 Sep 18 13:41: 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 7207337B50C; Mon, 18 Sep 2000 13:40:10 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35395; Mon, 18 Sep 2000 13:40:10 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:40:10 -0700 (PDT) From: Message-Id: <200009182040.NAA35395@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: open->suspended State-Changed-By: ade State-Changed-When: Mon Sep 18 13:39:54 PDT 2000 State-Changed-Why: Waiting on response from port maintainer. 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 Mon Sep 18 13:41: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 33AF437B505 for ; Mon, 18 Sep 2000 13:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35363; Mon, 18 Sep 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C497537B422; Mon, 18 Sep 2000 13:38:50 -0700 (PDT) Message-Id: <20000918203850.C497537B422@hub.freebsd.org> Date: Mon, 18 Sep 2000 13:38:50 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21374: Update port: sysutils/wmapm to 3.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21374 >Category: ports >Synopsis: Update port: sysutils/wmapm to 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: Mon Sep 18 13:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.1-RELEASE i386 >Organization: >Environment: >Description: - Update to version 3.1 Remove file: patches/patch-ab >How-To-Repeat: >Fix: diff -urN /usr/ports/sysutils/wmapm/Makefile sysutils/wmapm/Makefile --- /usr/ports/sysutils/wmapm/Makefile Thu Aug 3 21:31:09 2000 +++ sysutils/wmapm/Makefile Tue Sep 19 05:21:37 2000 @@ -6,28 +6,22 @@ # PORTNAME= wmapm -PORTVERSION= 3.01 +PORTVERSION= 3.1 CATEGORIES= sysutils windowmaker MASTER_SITES= http://nis-www.lanl.gov/~mgh/WindowMaker/ MAINTAINER= taoka@FreeBSD.org -WRKSRC= ${WRKDIR}/${DISTNAME}/wmapm -USE_GMAKE= yes ONLY_FOR_ARCHS= i386 + +WRKSRC= ${WRKDIR}/${DISTNAME}/wmapm + USE_X_PREFIX= yes USE_XPM= yes +MAN1= wmapm.1 + BINMODE= 2755 BINGRP= operator - -pre-build: - cd ${WRKDIR}/${DISTNAME}/wmapm; ${GMAKE} clean - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wmapm ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/wmapm.1 ${PREFIX}/man/man1 - -MAN1= wmapm.1 .include diff -urN /usr/ports/sysutils/wmapm/files/md5 sysutils/wmapm/files/md5 --- /usr/ports/sysutils/wmapm/files/md5 Wed Aug 25 10:37:58 1999 +++ sysutils/wmapm/files/md5 Tue Sep 19 05:21:04 2000 @@ -1 +1 @@ -MD5 (wmapm-3.01.tar.gz) = 36f58c8125f5faabe3c9d16474d81cd3 +MD5 (wmapm-3.1.tar.gz) = 5a62620d49b5cc4c2250e013149ca1e9 diff -urN /usr/ports/sysutils/wmapm/patches/patch-aa sysutils/wmapm/patches/patch-aa --- /usr/ports/sysutils/wmapm/patches/patch-aa Fri Aug 27 06:02:33 1999 +++ sysutils/wmapm/patches/patch-aa Tue Sep 19 05:24:27 2000 @@ -1,28 +1,40 @@ ---- Makefile.orig Tue Dec 15 16:58:08 1998 -+++ Makefile Wed Aug 25 23:55:58 1999 -@@ -1,6 +1,6 @@ +--- Makefile.orig Wed Jan 12 01:42:25 2000 ++++ Makefile Tue Sep 19 05:24:13 2000 +@@ -1,20 +1,20 @@ -CC = gcc -CFLAGS = -O2 -Wall --INCDIR = -I/usr/X11R6/include/X11 -+CC? = gcc -+CFLAGS? = -O2 -Wall -+INCDIR = -I/usr/X11R6/include - DESTDIR= /usr/X11R6 - LIBDIR = -L/usr/X11R6/lib +-INCDIR = -I/usr/X11R6/include +-DESTDIR= /usr/X11R6 +-LIBDIR = -L/usr/X11R6/lib ++CC ?= gcc ++CFLAGS ?= -O2 -Wall ++INCDIR = -I${X11BASE}/include ++DESTDIR= ${PREFIX} ++LIBDIR = -L${X11BASE}/lib LIBS = -lXpm -lX11 -lXext -@@ -8,13 +8,13 @@ + OBJS = wmapm.o \ ../wmgeneral/wmgeneral.o .c.o: - $(CC) $(COPTS) -D$(shell echo `uname -s`) -c $< -o $*.o $(INCDIR) -+ $(CC) $(CFLAGS) -D$(shell echo `uname -s`) -c $< -o $*.o $(INCDIR) ++ $(CC) $(CFLAGS) -D$(OPSYS) -c $< -o $@ $(INCDIR) all: wmapm.o wmapm wmapm.o: wmapm_master.xpm wmapm_mask.xbm wmapm.h wmapm: $(OBJS) - $(CC) $(COPTS) $(SYSTEM) -o wmapm $^ $(INCDIR) $(LIBDIR) $(LIBS) -+ $(CC) $(CFLAGS) $(SYSTEM) -o wmapm $^ $(INCDIR) $(LIBDIR) $(LIBS) ++ $(CC) $(CFLAGS) $(SYSTEM) -o wmapm $(OBJS) $(LIBDIR) $(LIBS) clean: for i in $(OBJS) ; do \ +@@ -23,7 +23,6 @@ + rm -f wmapm + + install:: wmapm +- install -s -m 0755 wmapm $(DESTDIR)/bin +- install -m 0644 wmapm.1 $(DESTDIR)/man/man1 +- chmod +s $(DESTDIR)/bin/wmapm ++ ${BSD_INSTALL_PROGRAM} wmapm $(DESTDIR)/bin ++ ${BSD_INSTALL_MAN} wmapm.1 $(DESTDIR)/man/man1 + diff -urN /usr/ports/sysutils/wmapm/patches/patch-ab sysutils/wmapm/patches/patch-ab --- /usr/ports/sysutils/wmapm/patches/patch-ab Sat Oct 16 01:13:07 1999 +++ sysutils/wmapm/patches/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,153 +0,0 @@ ---- wmapm.c.orig Sun Jan 3 11:27:09 1999 -+++ wmapm.c Sat Oct 9 19:27:17 1999 -@@ -158,6 +158,20 @@ - #include "wmapm_master_LowColor.xpm" - #include "wmapm_mask.xbm" - -+#if !defined(MINIX) && !defined(WIN32) -+#include /* for NOFILE */ -+#endif -+ -+#if (BSD >= 199103) -+#define USE_POSIX_WAIT -+#define HAS_POSIX_SAVED_IDS -+#endif -+ -+#ifdef HAS_POSIX_SAVED_IDS -+#include -+#include -+#include -+#endif /* HAS_POSIX_SAVED_IDS */ - - - #ifdef Linux -@@ -308,6 +322,7 @@ - my_cur_info.ac_line_status = (int)temp_info.ai_acline; - my_cur_info.battery_status = (int)temp_info.ai_batt_stat; - my_cur_info.battery_percentage = (int)temp_info.ai_batt_life; -+ my_cur_info.battery_time = (int)temp_info.ai_batt_time; - #endif - - -@@ -385,7 +400,7 @@ - * If charging: Time left before battery gets to maximum - * - */ --#ifdef Linux /* FreeBSD's apm info does not support time left */ -+#ifdef Linux - if (my_cur_info.battery_time >= 1440) { - - /* -@@ -411,11 +426,16 @@ - - } - #endif --#ifdef FreeBSD -- /* -- * Show "NULL" time indicator. -- */ -- copyXPMArea(83, 106, 41, 9, 15, 7); -+#if FreeBSD -+ time_left = my_cur_info.battery_time / 60; -+ hour_left = time_left / 60; -+ min_left = time_left % 60; -+ -+ copyXPMArea( (hour_left / 10) * 7 + 5, 93, 7, 9, 21, 7); /* Show 10's (hour) */ -+ copyXPMArea((hour_left % 10) * 7 + 5, 93, 7, 9, 29, 7); /* Show 1's (hour) */ -+ copyXPMArea(76, 93, 2, 9, 38, 7); /* colon */ -+ copyXPMArea((min_left / 10) * 7 + 5, 93, 7, 9, 42, 7); /* Show 10's (min) */ -+ copyXPMArea((min_left % 10) * 7 + 5, 93, 7, 9, 50, 7); /* Show 1's (min) */ - #endif - - -@@ -643,6 +663,13 @@ - - int x=xev->x; - int y=xev->y; -+#ifdef HAS_POSIX_SAVED_IDS -+ uid_t euid = geteuid(); -+ gid_t egid = getegid(); -+ uid_t ruid = getuid(); -+ gid_t rgid = getgid(); -+#endif /* HAS_POSIX_SAVED_IDS */ -+ - - if(x>=5 && y>=48 && x<=17 && y<=58){ - -@@ -656,7 +683,32 @@ - */ - copyXPMArea(5, 106, 13, 11, 5, 48); - RedrawWindow(); -+#if FreeBSD -+ -+#ifdef HAS_POSIX_SAVED_IDS -+ if (setegid(rgid) == -1) -+ (void) fprintf(stderr, "setegid(%d): %s\n", -+ (int) rgid, strerror(errno)); -+ if (seteuid(ruid) == -1) -+ (void) fprintf(stderr, "seteuid(%d): %s\n", -+ (int) ruid, strerror(errno)); -+#endif /* HAS_POSIX_SAVED_IDS */ -+ -+ system("apm -Z"); -+ -+#ifdef HAS_POSIX_SAVED_IDS -+ if (seteuid(euid) == -1) -+ (void) fprintf(stderr, "seteuid(%d): %s\n", -+ (int) euid, strerror(errno)); -+ -+ if (setegid(egid) == -1) -+ (void) fprintf(stderr, "setegid(%d): %s\n", -+ (int) egid, strerror(errno)); -+#endif -+ -+#else - system("apm -S"); -+#endif - usleep(2000000L); - - } else if (x>=46 && y>=48 && x<=58 && y<=58){ -@@ -671,7 +723,31 @@ - */ - copyXPMArea(21, 106, 13, 11, 46, 48); - RedrawWindow(); -+#if FreeBSD -+ -+#ifdef HAS_POSIX_SAVED_IDS -+ if (setegid(rgid) == -1) -+ (void) fprintf(stderr, "setegid(%d): %s\n", -+ (int) rgid, strerror(errno)); -+ if (seteuid(ruid) == -1) -+ (void) fprintf(stderr, "seteuid(%d): %s\n", -+ (int) ruid, strerror(errno)); -+#endif /* HAS_POSIX_SAVED_IDS */ -+ -+ system("apm -z"); -+#ifdef HAS_POSIX_SAVED_IDS -+ if (seteuid(euid) == -1) -+ (void) fprintf(stderr, "seteuid(%d): %s\n", -+ (int) euid, strerror(errno)); -+ -+ if (setegid(egid) == -1) -+ (void) fprintf(stderr, "setegid(%d): %s\n", -+ (int) egid, strerror(errno)); -+#endif -+ -+#else - system("apm -s"); -+#endif - usleep(2000000L); - - } -@@ -693,7 +769,11 @@ - int apm_exists() - { - -+#if FreeBSD -+ if (open(APMDEV, O_RDONLY) == -1) -+#else - if (access(APMDEV, R_OK)) -+#endif - - /* - * Cannot find /proc/apm >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 Sep 18 13:42: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 C434037B423; Mon, 18 Sep 2000 13:42:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36030; Mon, 18 Sep 2000 13:42:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:42:49 -0700 (PDT) From: Message-Id: <200009182042.NAA36030@freefall.freebsd.org> To: stephane.legrand@bigfoot.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20899: Update for security/bugs port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update for security/bugs port State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 13:41:51 PDT 2000 State-Changed-Why: Update commited, thanks. In future, please use a more realistic Severity/Priority.. port updates are rarely anything other than non-critical/low. http://www.freebsd.org/cgi/query-pr.cgi?pr=20899 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:43:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 8C81537B424 for ; Mon, 18 Sep 2000 13:43:12 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 18A551B40; Mon, 18 Sep 2000 15:39:05 -0500 (EST) Date: Mon, 18 Sep 2000 15:39:05 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: porteasy Message-ID: <20000918153904.G35550@radon.gryphonsoft.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Dag-Erling Smorgrav , ports@FreeBSD.ORG References: <86og1ld4u6.fsf@md5.follo.net> <20000918142919.D35550@radon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Mon, Sep 18, 2000 at 10:24:08PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 10:24:08PM +0200, Dag-Erling Smorgrav wrote: > Short version: it builds ports. > > Long version: it looks up the specified ports in the index file, > builds a dependency list, optionally updates the port tree using CVS, > and then, depending on command-line options, does a variety of things > to the ports you specified (shows the comment file; fetches all > distfiles; installs the port; builds packages for the port and its > dependencies) Sounds neat. Seems like this sort of thing should be put under ports/Tools/scripts, not made into a port. > Is 20 kB OK? Fine with me. > No, but it means I have to add dependencies on the fly, then go back > and start over until the dependency graph stabilizes. It would be a > lot simpler to have a complete dependency graph from the start. Guess you can't have everything. Ports suck at complicated dependencies. Perhaps that will be resolved in the future. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:44: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 1C6C037B42C; Mon, 18 Sep 2000 13:44:14 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36233; Mon, 18 Sep 2000 13:44:14 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:44:14 -0700 (PDT) From: Message-Id: <200009182044.NAA36233@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21054: guile does not build on CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: guile does not build on CURRENT Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 13:44:03 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21054 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:46: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 65BAA37B422; Mon, 18 Sep 2000 13:46:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36737; Mon, 18 Sep 2000 13:46:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:46:52 -0700 (PDT) From: Message-Id: <200009182046.NAA36737@freefall.freebsd.org> To: larse@FreeBSD.ORG, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20046: plugger port broken (/usr/ports/www/plugger) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: plugger port broken (/usr/ports/www/plugger) State-Changed-From-To: suspended->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 13:46:09 PDT 2000 State-Changed-Why: : unknown user: "larse" Next time, try a real email address. http://www.freebsd.org/cgi/query-pr.cgi?pr=20046 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:48: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 9A8DC37B422; Mon, 18 Sep 2000 13:48:08 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36955; Mon, 18 Sep 2000 13:48:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:48:08 -0700 (PDT) From: Message-Id: <200009182048.NAA36955@freefall.freebsd.org> To: sean@mercury1.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18871: apache13-fp port doesn't install on FreeBSD4.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: apache13-fp port doesn't install on FreeBSD4.0 State-Changed-From-To: suspended->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 13:47:36 PDT 2000 State-Changed-Why: Maintainer reports problem fixed by committing of ports/18581 http://www.freebsd.org/cgi/query-pr.cgi?pr=18871 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:48: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 789CD37B424; Mon, 18 Sep 2000 13:48:54 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37091; Mon, 18 Sep 2000 13:48:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:48:54 -0700 (PDT) From: Message-Id: <200009182048.NAA37091@freefall.freebsd.org> To: insane@lunatic.oneinsane.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20792: Apache w/ Frontapge Fails to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Apache w/ Frontapge Fails to build State-Changed-From-To: suspended->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 13:48:16 PDT 2000 State-Changed-Why: Maintainer reports problem fixed by committing of ports/18581 http://www.freebsd.org/cgi/query-pr.cgi?pr=20792 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:55:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id E90EF37B424 for ; Mon, 18 Sep 2000 13:55:31 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id WAA18419; Mon, 18 Sep 2000 22:55:28 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: porteasy References: <86og1ld4u6.fsf@md5.follo.net> <20000918142919.D35550@radon.gryphonsoft.com> <20000918153904.G35550@radon.gryphonsoft.com> From: Dag-Erling Smorgrav Date: 18 Sep 2000 22:55:28 +0200 In-Reply-To: Will Andrews's message of "Mon, 18 Sep 2000 15:39:05 -0500" Message-ID: Lines: 18 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews writes: > Sounds neat. Seems like this sort of thing should be put under > ports/Tools/scripts, not made into a port. No, actually I'd like to see it in the base system. The whole point of porteasy is to abstract away the ports tree; once you've installed it, you don't need [to know that you have] a ports tree. It takes care of updating just what you need when you need it, and does all the right things (hopefully) to achieve what you want to do in one single command. In the very few cases where you'll need to do anything manually - like specifying additional parameters to make - porteasy can still do most of the job (check out updated versions of all the dependencies, fetch all distfiles in one batch, etc.) for you, and you only need to do the last bit ('make A4=yes') yourself. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:57: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id 17E1B37B423; Mon, 18 Sep 2000 13:57:00 -0700 (PDT) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id QAA18845; Mon, 18 Sep 2000 16:15:21 -0400 Received: from virtual-estates.net (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.9.3/8.9.3) with ESMTP id QAA36579; Mon, 18 Sep 2000 16:56:03 -0400 (EDT) (envelope-from mi@virtual-estates.net) Message-Id: <200009182056.QAA36579@misha.privatelabs.com> Date: Mon, 18 Sep 2000 16:56:01 -0400 (EDT) From: mi@aldan.algebra.com Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 rele ase on September 25th) To: ports@FreeBSD.org Cc: Ade Lovett , stable@FreeBSD.org, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it In-Reply-To: <20000918150610.C44991@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Sep, Ade Lovett wrote: = On Mon, Sep 18, 2000 at 03:50:41PM -0400, mi@aldan.algebra.com wrote: = > As a rule, I CC port maintainers (and the last committer chaning the = > port's Makefile) when I submit a PR regarding a port. = = Then SAY SO. In the PR. And if you get no response within a = , followup on the PR, saying you got no response. Ok, this is something new... = Committers are not mind-readers. If you don't give us all the = information, then something is going to go wrong. It seems, that in this case, Ruslan (who last committed the change to the port) is not even an e-mail-reader. The port maintainer does not appear on the list of committers. My previous grievances went to -ports at least twice too. I thought, that's were the committers interested in ports hang out. = > In this case, I not only did that, but also keep bothering this fine = > people, without any response, regretfully. My last such bothering = > took place less then a week ago, when I wrote to the Eddie mailing = > list: = = Ahh. The Eddie mailing list. That well known repository of useful = information for -ports PRs. If you read my message carefully, you'll see that I'm claiming that I cc-ed my mailing to both the committer and to the maintainer. Moreover, as the http://www.FreeBSD.org/cgi/search.cgi?words=erlang+eddie&max=50&sort=score&source=freebsd-ports confirms, this also went to freebsd-ports. = Is it really that hard to understand that if it's not in the PR, it = doesn't exist? Yes it is. Up until now, it was said, one has to talk committers. I believe by contacting Ruslan and -ports I was doing just that. Having to list all (some) of my steps in the PR is a new requirement -- I thought, the PR should only have the technical information. Should this entire conversation be documented there as well? = Tell us the steps you've taken to try and contact maintainers. They = can always be overridden, but you *have* to (try to) speak to them = first. I think, I'm telling just that. "The steps" are listed in this thread. = > Perhaps we (Jimmy Olgeni and yours truly) should merge our patches = > and resubmit, but it would be nice to see a confirmation, that it = > will be looked at before we spend any more effort... = = Contact the maintainer again. Ok, I did with my previous e-mail and am doing so again with this one (see CC-header). = Of course, if you want to pay me, say, US$100 for each PR, then we = have a contract, and you'll get all the appropriate benefits. Let's not get into bean-counting. I think I contributed enough of my own work and time for this not to come up. This would be a giant can of worms and ethics of even mentioning money here can be discussed to no end. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 13:58: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 3C6E537B422; Mon, 18 Sep 2000 13:58:43 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA38867; Mon, 18 Sep 2000 13:58:43 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 13:58:43 -0700 (PDT) From: Message-Id: <200009182058.NAA38867@freefall.freebsd.org> To: phj@cn.freebsd.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21111: fix ports make bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix ports make bug State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 13:57:23 PDT 2000 State-Changed-Why: You already have another PR (18867) which will result in this port being removed, and replaced (after repo-copy) followed by an update to version 1.3 of something to be called stardict. Which PR do you want to keep? http://www.freebsd.org/cgi/query-pr.cgi?pr=21111 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: 1: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 7121C37B422; Mon, 18 Sep 2000 14:01:27 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA39489; Mon, 18 Sep 2000 14:01:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:01:27 -0700 (PDT) From: Message-Id: <200009182101.OAA39489@freefall.freebsd.org> To: bwhite@cw.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21126: httpd warnings regarding attempts to free memory that has already freed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: httpd warnings regarding attempts to free memory that has already freed. State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 13:59:20 PDT 2000 State-Changed-Why: Which particular port does this refer to? www/p5-Apache-Radius? One of the base apache ports? We need a few more hints here. http://www.freebsd.org/cgi/query-pr.cgi?pr=21126 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: 2: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 2218F37B422; Mon, 18 Sep 2000 14:02:14 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA39621; Mon, 18 Sep 2000 14:02:14 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:02:14 -0700 (PDT) From: Message-Id: <200009182102.OAA39621@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, green@FreeBSD.org Subject: Re: ports/21146: [patch] openssh with LOGIN_CAP don't setup LANG & MM_CHARSET into environment Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] openssh with LOGIN_CAP don't setup LANG & MM_CHARSET into environment Responsible-Changed-From-To: freebsd-ports->green Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:02:03 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21146 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: 5: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 8CCAD37B422; Mon, 18 Sep 2000 14:05:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA40781; Mon, 18 Sep 2000 14:05:15 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:05:15 -0700 (PDT) From: Message-Id: <200009182105.OAA40781@freefall.freebsd.org> To: ji@research.att.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21153: ports/net/ns fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/net/ns fails State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 14:03:07 PDT 2000 State-Changed-Why: Well, the answer to your fix can be found as a subtle hint in the net/ns/Makefile: MAINTAINER= obonilla@fisicc-ufm.edu Since previous PRs from your good self have resulted in bounces from AT&T's mail system, I'm closing the PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=21153 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: 6: 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 5E5EE37B422; Mon, 18 Sep 2000 14:06:06 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA41774; Mon, 18 Sep 2000 14:06:06 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:06:06 -0700 (PDT) From: Message-Id: <200009182106.OAA41774@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, gj@FreeBSD.org Subject: Re: ports/21172: xemacs21 and xemacs21-mule implicitly LIB_DEPENDS on gdbm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xemacs21 and xemacs21-mule implicitly LIB_DEPENDS on gdbm Responsible-Changed-From-To: freebsd-ports->gj Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:05:50 PDT 2000 Responsible-Changed-Why: Over to maintainer (of xemacs21 at least) http://www.freebsd.org/cgi/query-pr.cgi?pr=21172 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: 7: 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 19ED837B424; Mon, 18 Sep 2000 14:07:05 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA41999; Mon, 18 Sep 2000 14:07:05 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:07:05 -0700 (PDT) From: Message-Id: <200009182107.OAA41999@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dima@FreeBSD.org Subject: Re: ports/21210: acroread port missing lib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: acroread port missing lib Responsible-Changed-From-To: freebsd-ports->dima Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:06:55 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21210 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: 9:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 795BE37B423; Mon, 18 Sep 2000 14:09:07 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13b89o-000KfF-00; Mon, 18 Sep 2000 23:08:56 +0200 Date: Mon, 18 Sep 2000 23:08:56 +0200 From: Neil Blakey-Milner To: mi@aldan.algebra.com Cc: ports@FreeBSD.org, Ade Lovett , stable@FreeBSD.org, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 rele ase on September 25th) Message-ID: <20000918230856.A79272@mithrandr.moria.org> References: <20000918150610.C44991@FreeBSD.org> <200009182056.QAA36579@misha.privatelabs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200009182056.QAA36579@misha.privatelabs.com>; from mi@aldan.algebra.com on Mon, Sep 18, 2000 at 04:56:01PM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon 2000-09-18 (16:56), mi@aldan.algebra.com wrote: > = Then SAY SO. In the PR. And if you get no response within a > = , followup on the PR, saying you got no response. > > Ok, this is something new... It may be new to you - I can't remember who drilled it into me. Think of PRs as a better memory than the typical committer's mailbox. It depends on the porter, but I just don't have time to act on things as I read them, and if I don't skim, I'll never keep up. I usually tag stuff from people I know well (Johann Visagie and his biotech stuff) and from the maintainers of the ports (my suggestion of putting MAINTAINER in he synopsis isn't taking off just yet) I know. Otherwise, I fire up tkgnats a few times a week, and start with any (update|upgrade).*MAINTAINER synopsis that I might have missed, and then unassigned "new port", and then "(update|upgrade)", and finally the other junk. Anything that isn't in that PR simply doesn't exist - I can't expend the effort to search the ports list for every PR I look at to find out what's up. > = Is it really that hard to understand that if it's not in the PR, it > = doesn't exist? > > Yes it is. Up until now, it was said, one has to talk committers. I > believe by contacting Ruslan and -ports I was doing just that. Having to > list all (some) of my steps in the PR is a new requirement -- I thought, > the PR should only have the technical information. Should this entire > conversation be documented there as well? I think it should be documented - it's "on-the-fly policy-making" (: I agree with the "if it's not in a PR, it doesn't exist" sentiment quite a bit - PRs contain information specific to a certain problem, and that allows me to look at your PR in tkgnats and discover it's being neglected, instead of just wondering what's up, and considering setting it to feedback to see what's up. Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Mon Sep 18 14: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 EC76D37B43E for ; Mon, 18 Sep 2000 14:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42385; Mon, 18 Sep 2000 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 18 Sep 2000 14:10:01 -0700 (PDT) Message-Id: <200009182110.OAA42385@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Vivek Khera Subject: Re: ports/20607: plugger fails to build Reply-To: Vivek Khera Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20607; it has been noted by GNATS. From: Vivek Khera To: freebsd-gnats-submit@FreeBSD.org, khera@onceler.kciLink.com Cc: Subject: Re: ports/20607: plugger fails to build Date: Mon, 18 Sep 2000 16:46:58 -0400 This is a multi-part message in MIME format. --------------C71362DE8953DE9C8AD4F796 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit One apparently needs to pull the c++rt0.o file from a FreeBSD 2.8.8 binary CD and install it in /usr/lib/aout/c++rt0.o to build this port. There is no other way to recreate that file in 4.x. --------------C71362DE8953DE9C8AD4F796 Content-Type: text/x-vcard; charset=us-ascii; name="vivek.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Vivek Khera Content-Disposition: attachment; filename="vivek.vcf" begin:vcard n:Khera;Vivek tel;fax:301-545-6899 tel;work:301-545-6996 x-mozilla-html:TRUE url:http://www.khera.org/~vivek/ org:Khera Communications, Inc. version:2.1 email;internet:vivek@khera.org adr;quoted-printable:;;1445 Research Blvd=0D=0A5th Floor;Rockville;MD;20850;USA x-mozilla-cpt:;0 fn:Vivek Khera end:vcard --------------C71362DE8953DE9C8AD4F796-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:11: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 15D5037B42C; Mon, 18 Sep 2000 14:11:55 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42718; Mon, 18 Sep 2000 14:11:55 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:11:55 -0700 (PDT) From: Message-Id: <200009182111.OAA42718@freefall.freebsd.org> To: phj@cn.freebsd.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21213: fix order of include headers. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix order of include headers. State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 14:11:16 PDT 2000 State-Changed-Why: Unless I'm very much mistaken, this patch already exists as patch-aa in the port. Can you verify this? http://www.freebsd.org/cgi/query-pr.cgi?pr=21213 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:12: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 9E6EF37B42C; Mon, 18 Sep 2000 14:12:36 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42846; Mon, 18 Sep 2000 14:12:36 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:12:36 -0700 (PDT) From: Message-Id: <200009182112.OAA42846@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21263: Cannot use ImageMagick Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Cannot use ImageMagick Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:12:10 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21263 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:13: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 E561337B423; Mon, 18 Sep 2000 14:13:18 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA42978; Mon, 18 Sep 2000 14:13:18 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:13:18 -0700 (PDT) From: Message-Id: <200009182113.OAA42978@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, markm@FreeBSD.org Subject: Re: ports/21264: tn3270 port receives segmentation fault Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tn3270 port receives segmentation fault Responsible-Changed-From-To: freebsd-ports->markm Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:13:10 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21264 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:14: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 7378B37B424; Mon, 18 Sep 2000 14:14:16 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43249; Mon, 18 Sep 2000 14:14:16 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:14:16 -0700 (PDT) From: Message-Id: <200009182114.OAA43249@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dima@FreeBSD.org Subject: Re: ports/21355: evg port fails to run - syntax error in a module is reported Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: evg port fails to run - syntax error in a module is reported Responsible-Changed-From-To: freebsd-ports->dima Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:14:06 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21355 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:17: 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 8AA6537B422; Mon, 18 Sep 2000 14:17:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43709; Mon, 18 Sep 2000 14:17:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:17:07 -0700 (PDT) From: Message-Id: <200009182117.OAA43709@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/21365: Update port: comms/conserver Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: comms/conserver Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:16:54 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21365 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:17: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 B09AA37B424; Mon, 18 Sep 2000 14:17:33 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43819; Mon, 18 Sep 2000 14:17:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:17:33 -0700 (PDT) From: Message-Id: <200009182117.OAA43819@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/21366: Update port: comms/mserver Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: comms/mserver Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:17:22 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21366 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:17: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 1423137B422; Mon, 18 Sep 2000 14:17:54 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43936; Mon, 18 Sep 2000 14:17:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:17:54 -0700 (PDT) From: Message-Id: <200009182117.OAA43936@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, se@FreeBSD.org Subject: Re: ports/21367: Update port: comms/yaps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: comms/yaps Responsible-Changed-From-To: freebsd-ports->se Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:17:45 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21367 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:18: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 DB79737B43F; Mon, 18 Sep 2000 14:18:19 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44027; Mon, 18 Sep 2000 14:18:19 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:18:19 -0700 (PDT) From: Message-Id: <200009182118.OAA44027@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, flathill@FreeBSD.org Subject: Re: ports/21368: Update port: games/xosmulti Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xosmulti Responsible-Changed-From-To: freebsd-ports->flathill Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:18:09 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21368 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:18:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sivka.rdy.com (sivka.rdy.com [207.33.166.86]) by hub.freebsd.org (Postfix) with ESMTP id 05DD637B42C; Mon, 18 Sep 2000 14:18:25 -0700 (PDT) Received: (from dima@localhost) by sivka.rdy.com (8.11.0/8.11.0) id e8ILIO607751; Mon, 18 Sep 2000 14:18:24 -0700 (PDT) (envelope-from dima) Message-Id: <200009182118.e8ILIO607751@sivka.rdy.com> Subject: Re: ports/21355: evg port fails to run - syntax error in a module is reported In-Reply-To: <200009182114.OAA43249@freefall.freebsd.org> "from ade@FreeBSD.org at Sep 18, 2000 02:14:16 pm" To: ade@FreeBSD.org Date: Mon, 18 Sep 2000 14:18:14 -0700 (PDT) Cc: freebsd-ports@FreeBSD.org, dima@FreeBSD.org Organization: HackerDome Reply-To: dima@rdy.com From: dima@rdy.com (Dima Ruban) 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 dima@FreeBSD.ORG != dima@Chg.RU In other words - I'm not a maintainer of www/evg ade@FreeBSD.org writes: > Synopsis: evg port fails to run - syntax error in a module is reported > > Responsible-Changed-From-To: freebsd-ports->dima > Responsible-Changed-By: ade > Responsible-Changed-When: Mon Sep 18 14:14:06 PDT 2000 > Responsible-Changed-Why: > Over to maintainer > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21355 > -- dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:18: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 09D7337B42C; Mon, 18 Sep 2000 14:18:44 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44154; Mon, 18 Sep 2000 14:18:44 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:18:44 -0700 (PDT) From: Message-Id: <200009182118.OAA44154@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/21369: Update port: graphics/flashplayer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/flashplayer Responsible-Changed-From-To: freebsd-ports->knu Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:18:35 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21369 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:19: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 9243A37B42C; Mon, 18 Sep 2000 14:19:09 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44260; Mon, 18 Sep 2000 14:19:09 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:19:09 -0700 (PDT) From: Message-Id: <200009182119.OAA44260@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, taoka@FreeBSD.org Subject: Re: ports/21370: Update port: graphics/xdgagrab Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/xdgagrab Responsible-Changed-From-To: freebsd-ports->taoka Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:19:00 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21370 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:19: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 3DF3A37B424; Mon, 18 Sep 2000 14:19:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44371; Mon, 18 Sep 2000 14:19:40 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:19:40 -0700 (PDT) From: Message-Id: <200009182119.OAA44371@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, bp@FreeBSD.org Subject: Re: ports/21371: Update port: net/mars_nwe to 0.99.20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/mars_nwe to 0.99.20 Responsible-Changed-From-To: freebsd-ports->bp Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:19:28 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21371 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14: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 267DA37B42C; Mon, 18 Sep 2000 14:20:02 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44474; Mon, 18 Sep 2000 14:20:02 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:20:02 -0700 (PDT) From: Message-Id: <200009182120.OAA44474@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, nectar@FreeBSD.org Subject: Re: ports/21372: Update port: sysutils/doconfig Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/doconfig Responsible-Changed-From-To: freebsd-ports->nectar Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:19:50 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21372 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:20: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 5D2B837B423; Mon, 18 Sep 2000 14:20:21 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44593; Mon, 18 Sep 2000 14:20:21 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:20:21 -0700 (PDT) From: Message-Id: <200009182120.OAA44593@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, shige@FreeBSD.org Subject: Re: ports/21373: Update port: sysutils/libretto-config Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/libretto-config Responsible-Changed-From-To: freebsd-ports->shige Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:20:12 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21373 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:20: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 83E2B37B422; Mon, 18 Sep 2000 14:20:43 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA44753; Mon, 18 Sep 2000 14:20:43 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:20:43 -0700 (PDT) From: Message-Id: <200009182120.OAA44753@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, taoka@FreeBSD.org Subject: Re: ports/21374: Update port: sysutils/wmapm to 3.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/wmapm to 3.1 Responsible-Changed-From-To: freebsd-ports->taoka Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:20:33 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21374 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:22: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 5A94637B422; Mon, 18 Sep 2000 14:22:40 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA45070; Mon, 18 Sep 2000 14:22:40 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:22:40 -0700 (PDT) From: Message-Id: <200009182122.OAA45070@freefall.freebsd.org> To: ade@FreeBSD.org, dima@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21355: evg port fails to run - syntax error in a module is reported Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: evg port fails to run - syntax error in a module is reported Responsible-Changed-From-To: dima->freebsd-ports Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:22:05 PDT 2000 Responsible-Changed-Why: Braino.. bad aDe, no biscuit, no more playing with GNATS today http://www.freebsd.org/cgi/query-pr.cgi?pr=21355 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:45: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 E715737B423; Mon, 18 Sep 2000 14:45:08 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA48171; Mon, 18 Sep 2000 14:45:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:45:08 -0700 (PDT) From: Message-Id: <200009182145.OAA48171@freefall.freebsd.org> To: mi@aldan.algebra.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20058: ugly bug in tcl-Mysql -- old code's legacy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ugly bug in tcl-Mysql -- old code's legacy State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 14:44:57 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20058 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:46:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scrabble.freeuk.net (scrabble.freeuk.net [212.126.144.6]) by hub.freebsd.org (Postfix) with ESMTP id E0B4137B423; Mon, 18 Sep 2000 14:46:51 -0700 (PDT) Received: from du-012-0203.freeuk.com ([212.126.155.203] helo=cream.org) by scrabble.freeuk.net with esmtp (Exim 3.12 #1) id 13b8jy-0002Wf-00; Mon, 18 Sep 2000 22:46:18 +0100 Content-Length: 336 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000918195819.A76435@mithrandr.moria.org> Date: Mon, 18 Sep 2000 22:46:17 +0100 (BST) From: Andrew Boothman To: Neil Blakey-Milner Subject: Re: Guidelines for new port version variables Cc: ports@FreeBSD.org, doc@FreeBSD.org, committers@FreeBSD.org, Kris Kennaway , Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18-Sep-00 Neil Blakey-Milner wrote: > If someone can remind me tomorrow (ie, 12-20 hours from now), I'll be > likely to be able to finish it tomorrow. Otherwise it'll languish in my > queue. (: I'll give it a go, Neil, if you'd prefer to be working on something else. --- Andrew Boothman http://sour.cream.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:49: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 E634037B422; Mon, 18 Sep 2000 14:49:19 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA48829; Mon, 18 Sep 2000 14:49:19 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:49:19 -0700 (PDT) From: Message-Id: <200009182149.OAA48829@freefall.freebsd.org> To: khera@kciLink.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20199: ports/graphics/hdf patch failure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/graphics/hdf patch failure State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 14:46:46 PDT 2000 State-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=20199 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:52: 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 4017737B42C; Mon, 18 Sep 2000 14:52:03 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA49306; Mon, 18 Sep 2000 14:52:02 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:52:02 -0700 (PDT) From: Message-Id: <200009182152.OAA49306@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/20199: ports/graphics/hdf patch failure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/graphics/hdf patch failure Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 14:49:40 PDT 2000 Responsible-Changed-Why: Hmm.. the text for the open->feedback just disappeared on me. Anyway, this port builds fine for me, bento reports it as successfully building on both 3.x and 4.x, and critical/high is not an appropriate level for something that doesn't have a concrete fix associated with it. This looks to be a localized problem. Make sure that you don't have any other "patch" programs in your path ahead of the system one, and that your system is fully up-to-date, for both src/ and ports/ http://www.freebsd.org/cgi/query-pr.cgi?pr=20199 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:56: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 CF40A37B422; Mon, 18 Sep 2000 14:56:23 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id OAA49850; Mon, 18 Sep 2000 14:56:23 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Mon, 18 Sep 2000 14:56:23 -0700 (PDT) From: Kris Kennaway To: Neil Blakey-Milner Cc: mi@aldan.algebra.com, ports@FreeBSD.org, Ade Lovett , stable@FreeBSD.org, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 rele ase on September 25th) In-Reply-To: <20000918230856.A79272@mithrandr.moria.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 18 Sep 2000, Neil Blakey-Milner wrote: > I agree with the "if it's not in a PR, it doesn't exist" sentiment quite > a bit - PRs contain information specific to a certain problem, and that > allows me to look at your PR in tkgnats and discover it's being > neglected, instead of just wondering what's up, and considering setting > it to feedback to see what's up. What this really boils down to is the same as in another thread recently - committers are a scarce resource, and so the submitter needs to do what he can to make the most efficient use of the resource (if he or she wants to get his change committed in a timely fashion). We've had some good suggestions here - the best thing would be to write up something for the handbook on "How to make the best use of FreeBSD committers to get changes applied", as Jordan has already suggested. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 14:58: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 7699037B424; Mon, 18 Sep 2000 14:58:23 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA50281; Mon, 18 Sep 2000 14:58:23 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 14:58:23 -0700 (PDT) From: Message-Id: <200009182158.OAA50281@freefall.freebsd.org> To: cr@jcmax.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20141: Hylafax fails to correctly lock serial devices Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Hylafax fails to correctly lock serial devices State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 14:58:13 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20141 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 15: 6: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 8ACE937B43E; Mon, 18 Sep 2000 15:06:41 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA53513; Mon, 18 Sep 2000 15:06:41 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 15:06:41 -0700 (PDT) From: Message-Id: <200009182206.PAA53513@freefall.freebsd.org> To: girgen@partitur.se, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18367: Staroffice personal dir cannot be on nfs mounted volume Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Staroffice personal dir cannot be on nfs mounted volume State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 15:03:47 PDT 2000 State-Changed-Why: Are you still having this problem? Have you tried updating your machine to the latest 4-STABLE and/or tried the staroffice 5.2 port. From what information you've given, this looks to be more of an NFS/Linuxulator issue, with staroffice just being something that shows up the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=18367 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 15: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 C4F0D37B423 for ; Mon, 18 Sep 2000 15:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA56030; Mon, 18 Sep 2000 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 86EF437B43C; Mon, 18 Sep 2000 15:17:43 -0700 (PDT) Message-Id: <20000918221743.86EF437B43C@hub.freebsd.org> Date: Mon, 18 Sep 2000 15:17:43 -0700 (PDT) From: gmarco@giovannelli.it To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21376: Updateing mail/minimalist port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21376 >Category: ports >Synopsis: Updateing mail/minimalist port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 18 15:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gianmarco Giovannelli >Release: FreeBSD 4.1-STABLE >Organization: Private >Environment: FreeBSD gmarco.ablia.org 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Sep 18 20:54:39 CEST 2000 gmarco@gmarco.ablia.org:/usr/obj/usr/src/sys/GMARCO i386 >Description: The minimalist web site is changed. >How-To-Repeat: Try to install minimalist port and you'll see that one of the fetching location is not valid anymore. >Fix: --- minimalist/Makefile Thu Apr 13 22:00:08 2000 +++ minimalist.new/Makefile Tue Sep 19 00:10:57 2000 @@ -8,7 +8,7 @@ PORTNAME= minimalist PORTVERSION= 2.0.2 CATEGORIES= mail -MASTER_SITES= http://www.webest.com/minimalist/ \ +MASTER_SITES= ftp://ftp.mml.org.ua/pub/minimalist/ \ http://www.giovannelli.it/~gmarco/files/ MAINTAINER= gmarco@giovannelli.it diff -ruN minimalist/pkg/DESCR minimalist.new/pkg/DESCR --- minimalist/pkg/DESCR Mon Nov 1 04:23:53 1999 +++ minimalist.new/pkg/DESCR Tue Sep 19 00:11:33 2000 @@ -19,6 +19,6 @@ users. author: Vladimir Litovka, doka@kiev.sovam.com -WWW: http://www.webest.com/minimalist +WWW: http://www.mml.org.ua/ Ported to FreeBSD by Gianmarco (gmarco@giovannelli.it) >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 Sep 18 15:49: 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 22B1E37B423; Mon, 18 Sep 2000 15:49:06 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA62196; Mon, 18 Sep 2000 15:49:06 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Mon, 18 Sep 2000 15:49:06 -0700 (PDT) From: Message-Id: <200009182249.PAA62196@freefall.freebsd.org> To: gmarco@giovannelli.it, nbm@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21376: Updateing mail/minimalist port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updateing mail/minimalist port State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Mon Sep 18 15:48:47 PDT 2000 State-Changed-Why: Patches applied, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21376 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 16:12: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 7B3C437B423; Mon, 18 Sep 2000 16:12:32 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA67092; Mon, 18 Sep 2000 16:12:32 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 16:12:32 -0700 (PDT) From: Message-Id: <200009182312.QAA67092@freefall.freebsd.org> To: dsh@neva.vlink.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21353: update www/p5-HTML-Mason to 0.89 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update www/p5-HTML-Mason to 0.89 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 16:12:19 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21353 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 16:15: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 359FC37B43C; Mon, 18 Sep 2000 16:15:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA67543; Mon, 18 Sep 2000 16:15:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 16:15:13 -0700 (PDT) From: Message-Id: <200009182315.QAA67543@freefall.freebsd.org> To: trevor@jpj.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21359: update biology/xdrawchem to 0.83 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update biology/xdrawchem to 0.83 State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 16:15:01 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21359 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 16:39: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 2C89737B424; Mon, 18 Sep 2000 16:39:20 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA70997; Mon, 18 Sep 2000 16:39:20 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 16:39:20 -0700 (PDT) From: Message-Id: <200009182339.QAA70997@freefall.freebsd.org> To: lukin@sapa.ivcme.elektra.ru, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21357: Update port: net/adns Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/adns State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 16:39:03 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21357 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 16:42: 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 5038E37B422; Mon, 18 Sep 2000 16:42:04 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA71360; Mon, 18 Sep 2000 16:42:04 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 16:42:04 -0700 (PDT) From: Message-Id: <200009182342.QAA71360@freefall.freebsd.org> To: keichii@peorth.iteration.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21361: patchset from author that solves many problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: patchset from author that solves many problems State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 16:40:41 PDT 2000 State-Changed-Why: Duplicate of ports/21377 http://www.freebsd.org/cgi/query-pr.cgi?pr=21361 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 16:47:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16BCE37B424; Mon, 18 Sep 2000 16:47:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA71905; Mon, 18 Sep 2000 16:47:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 16:47:52 -0700 (PDT) From: Message-Id: <200009182347.QAA71905@freefall.freebsd.org> To: keichii@peorth.iteration.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21377: update ports/chinese/xcin25 with the author's patches Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports/chinese/xcin25 with the author's patches State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Mon Sep 18 16:44:53 PDT 2000 State-Changed-Why: In a word. No. I am not just adding a > 800Kb file in the patches directory. This is why we have the PATCHFILES and PATCH_SITES directives in ports/Mk/bsd.port.mk If you'd like to submit an update that works along these lines, I'm sure it would get committed. Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 16:44:53 PDT 2000 Responsible-Changed-Why: I'll take care of this.. "explanations" are more interesting on irc :) http://www.freebsd.org/cgi/query-pr.cgi?pr=21377 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17: 0: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 24CD737B43C for ; Mon, 18 Sep 2000 17:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA73597; Mon, 18 Sep 2000 17: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 C193737B422 for ; Mon, 18 Sep 2000 16:50:24 -0700 (PDT) Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by mx1.FreeBSD.org (Postfix) with SMTP id 709FA6E3259 for ; Mon, 18 Sep 2000 16:50:23 -0700 (PDT) Received: (qmail 19364819 invoked from network); 18 Sep 2000 23:49:12 -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 ; 18 Sep 2000 23:49:12 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id BAA42092; Tue, 19 Sep 2000 01:49:11 +0200 (CEST) (envelope-from root) Message-Id: <200009182349.BAA42092@gits.dyndns.org> Date: Tue, 19 Sep 2000 01:49:11 +0200 (CEST) From: clefevre@citeweb.net (Cyrille Lefevre) Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21379: Updated port - net/isc-dhcp3 (beta 2 patch level 4) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21379 >Category: ports >Synopsis: Updated port - net/isc-dhcp3 (beta 2 patch level 4) >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 Sep 18 17:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.1-RC i386 >Organization: ACME >Environment: FreeBSD gits 4.1-RC FreeBSD 4.1-RC #0: Tue Jul 18 01:55:07 CEST 2000 root@gits:/disk2/4.0-stable/obj/disk2/4.0-stable/src/sys/CUSTOM i386 >Description: update ISC dhcp to the latest version, which is 3.0b2pl4. updated files: Makefile bind8 dependency and --with-nsupdate are no more needed added section 3 manual pages patches/patch-freebsd dhclient-script updated to accordingly bin/15046 and conf/18771 PR patches/patches-* almost the sames pkg/DESCR updated added files: patch-{dhcpctl,minires,omapip}-Makefile.dist DEBUG disabled (?=), CFLAGS augmented (+=). >How-To-Repeat: n/a >Fix: diff -bur isc-dhcp3.orig/Makefile isc-dhcp3/Makefile --- isc-dhcp3.orig/Makefile Fri Jul 21 07:42:17 2000 +++ isc-dhcp3/Makefile Tue Sep 19 01:05:59 2000 @@ -3,24 +3,22 @@ # Date created: 7 Mar 1996 # Whom: se # -# $FreeBSD: ports/net/isc-dhcp3/Makefile,v 1.38 2000/07/21 05:42:17 obrien Exp $ +# $FreeBSD$ # PORTNAME= isc-dhcp3 -PORTVERSION= 3.0.b1.17 +PORTVERSION= 3.0.b2.4 CATEGORIES= net MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/ -DISTNAME= dhcp-3.0b1pl17 +DISTNAME= dhcp-3.0b2pl4 MAINTAINER= obrien@FreeBSD.org -BUILD_DEPENDS= ${LOCALBASE}/include/bind/res_update.h:${PORTSDIR}/net/bind8 - Y2K= http://www.isc.org/y2k.html HAS_CONFIGURE= yes -CONFIGURE_ARGS= --with-nsupdate +MAN3= dhcpctl.3 omapi.3 MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-contrib.5 \ dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \ dhcpd.leases.5 diff -bur isc-dhcp3.orig/files/md5 isc-dhcp3/files/md5 --- isc-dhcp3.orig/files/md5 Fri Jul 21 07:42:18 2000 +++ isc-dhcp3/files/md5 Mon Sep 18 22:13:42 2000 @@ -1 +1 @@ -MD5 (dhcp-3.0b1pl17.tar.gz) = 9e5202eefc133bd30a46882239123be4 +MD5 (dhcp-3.0b2pl4.tar.gz) = 7c1b33c8a5fc5ed86d494905daed5dce diff -bur isc-dhcp3.orig/patches/patch-ae isc-dhcp3/patches/patch-ae --- isc-dhcp3.orig/patches/patch-ae Tue Jul 18 10:50:54 2000 +++ isc-dhcp3/patches/patch-ae Mon Sep 18 23:14:28 2000 @@ -1,13 +1,13 @@ ---- relay/Makefile.dist.orig Thu Jul 1 21:29:20 1999 -+++ relay/Makefile.dist Tue May 9 21:07:24 2000 +--- relay/Makefile.dist.orig Thu Aug 3 23:00:36 2000 ++++ relay/Makefile.dist Mon Sep 18 22:26:26 2000 @@ -24,10 +24,10 @@ PROG = dhcrelay MAN = dhcrelay.8 -DEBUG = -g +DEBUG ?= -g - INCLUDES = -I.. $(BINDINC) -I../includes - DHCPLIB = ../common/libdhcp.a + INCLUDES = -I$(TOP) $(BINDINC) -I$(TOP)/includes + DHCPLIB = ../common/libdhcp.a ../omapip/libomapi.a $(BINDLIB) -CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) +CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) diff -bur isc-dhcp3.orig/patches/patch-af isc-dhcp3/patches/patch-af --- isc-dhcp3.orig/patches/patch-af Tue Jul 18 10:50:54 2000 +++ isc-dhcp3/patches/patch-af Mon Sep 18 23:14:54 2000 @@ -1,13 +1,13 @@ ---- server/Makefile.dist.orig Thu Jul 1 20:21:36 1999 -+++ server/Makefile.dist Tue May 9 21:07:30 2000 -@@ -24,10 +24,10 @@ +--- server/Makefile.dist.orig Tue Jun 20 22:29:16 2000 ++++ server/Makefile.dist Mon Sep 18 22:27:17 2000 +@@ -26,10 +26,10 @@ PROG = dhcpd MAN = dhcpd.8 dhcpd.conf.5 dhcpd.leases.5 -DEBUG = -g +DEBUG ?= -g - INCLUDES = -I.. $(BINDINC) -I../includes - DHCPLIB = ../common/libdhcp.a + INCLUDES = -I$(TOP) $(BINDINC) -I$(TOP)/includes + DHCPLIB = ../common/libdhcp.a ../omapip/libomapi.a $(BINDLIB) -CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) +CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) diff -bur isc-dhcp3.orig/patches/patch-ai isc-dhcp3/patches/patch-ai --- isc-dhcp3.orig/patches/patch-ai Fri Jul 21 07:42:18 2000 +++ isc-dhcp3/patches/patch-ai Mon Sep 18 23:19:34 2000 @@ -1,5 +1,15 @@ ---- client/Makefile.dist.orig Wed Jul 19 21:13:09 2000 -+++ client/Makefile.dist Thu Jul 20 21:51:21 2000 -@@ -32 +32 @@ +--- client/Makefile.dist.orig Thu Jul 20 02:53:15 2000 ++++ client/Makefile.dist Mon Sep 18 23:16:50 2000 +@@ -26,10 +26,10 @@ + PROG = dhclient + MAN = dhclient.8 dhclient.conf.5 dhclient-script.8 dhclient.leases.5 + +-DEBUG = -g ++DEBUG ?= -g + INCLUDES = -I$(TOP) $(BINDINC) -I$(TOP)/includes + DHCPLIB = ../common/libdhcp.a ../omapip/libomapi.a $(BINDLIB) -CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) \ -+CFLAGS += $(PREDEFINES) $(INCLUDES) $(COPTS) \ ++CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) \ + -DCLIENT_PATH=${CLIENT_PATH} + + all: $(PROG) $(CATMANPAGES) diff -bur isc-dhcp3.orig/patches/patch-aj isc-dhcp3/patches/patch-aj --- isc-dhcp3.orig/patches/patch-aj Tue Jul 18 10:50:54 2000 +++ isc-dhcp3/patches/patch-aj Mon Sep 18 23:27:52 2000 @@ -1,6 +1,6 @@ ---- includes/dhcpd.h.orig Wed Feb 2 18:01:17 2000 -+++ includes/dhcpd.h Mon Jul 17 21:21:04 2000 -@@ -329,7 +329,7 @@ +--- includes/dhcpd.h.orig Sat Sep 2 01:08:07 2000 ++++ includes/dhcpd.h Mon Sep 18 22:27:59 2000 +@@ -431,7 +431,7 @@ #endif #ifndef CL_DEFAULT_SCRIPT_NAME @@ -9,7 +9,7 @@ #endif #ifndef CL_DEFAULT_REQUESTED_OPTIONS -@@ -771,11 +771,11 @@ +@@ -837,11 +837,11 @@ #define _PATH_DHCPD_DB "dhcpd.leases" #else #ifndef _PATH_DHCPD_CONF @@ -23,7 +23,7 @@ #endif #ifndef _PATH_DHCPD_PID -@@ -784,7 +784,7 @@ +@@ -850,7 +850,7 @@ #endif #ifndef _PATH_DHCLIENT_CONF @@ -32,7 +32,7 @@ #endif #ifndef _PATH_DHCLIENT_PID -@@ -792,7 +792,7 @@ +@@ -858,7 +858,7 @@ #endif #ifndef _PATH_DHCLIENT_DB diff -bur isc-dhcp3.orig/patches/patch-clparse.c isc-dhcp3/patches/patch-clparse.c --- isc-dhcp3.orig/patches/patch-clparse.c Fri Jul 21 07:42:18 2000 +++ isc-dhcp3/patches/patch-clparse.c Mon Sep 18 23:29:02 2000 @@ -1,5 +1,11 @@ ---- client/clparse.c.orig Wed Jul 19 21:13:10 2000 -+++ client/clparse.c Thu Jul 20 21:52:53 2000 -@@ -46 +46 @@ +--- client/clparse.c.orig Thu Aug 3 22:59:31 2000 ++++ client/clparse.c Mon Sep 18 22:58:49 2000 +@@ -50,7 +50,7 @@ + + static TIME parsed_time; + -char client_script_name [] = "/etc/dhclient-script"; +char client_script_name [] = CL_DEFAULT_SCRIPT_NAME; + + struct client_config top_level_config; + diff -bur isc-dhcp3.orig/patches/patch-common-Makefile.dist isc-dhcp3/patches/patch-common-Makefile.dist --- isc-dhcp3.orig/patches/patch-common-Makefile.dist Tue Jul 18 10:50:54 2000 +++ isc-dhcp3/patches/patch-common-Makefile.dist Mon Sep 18 23:29:56 2000 @@ -1,12 +1,12 @@ ---- common/Makefile.dist.orig Thu Oct 14 22:38:23 1999 -+++ common/Makefile.dist Tue May 9 21:07:17 2000 +--- common/Makefile.dist.orig Wed Aug 2 00:54:46 2000 ++++ common/Makefile.dist Mon Sep 18 23:05:44 2000 @@ -29,9 +29,9 @@ - inet_addr.o dns.o resolv.o execute.o discover.o auth.o nsupdate.o + inet_addr.o dns.o resolv.o execute.o discover.o comapi.o MAN = dhcp-options.5 dhcp-contrib.5 dhcp-eval.5 -DEBUG = -g +DEBUG ?= -g - INCLUDES = -I.. $(BINDINC) -I../includes + INCLUDES = -I$(TOP) $(BINDINC) -I$(TOP)/includes -CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) +CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) diff -bur isc-dhcp3.orig/patches/patch-dhclient.8 isc-dhcp3/patches/patch-dhclient.8 --- isc-dhcp3.orig/patches/patch-dhclient.8 Sun Jun 25 23:08:08 2000 +++ isc-dhcp3/patches/patch-dhclient.8 Mon Sep 18 23:30:40 2000 @@ -1,5 +1,5 @@ ---- client/dhclient.8.orig Wed May 10 02:36:03 2000 -+++ client/dhclient.8 Wed May 10 02:39:43 2000 +--- client/dhclient.8.orig Mon May 1 19:11:36 2000 ++++ client/dhclient.8 Mon Sep 18 23:06:03 2000 @@ -34,7 +34,7 @@ .B -q ] @@ -9,7 +9,7 @@ ] [ .B -lf -@@ -170,6 +170,11 @@ +@@ -173,6 +173,11 @@ .B -q flag prevents any messages other than errors from being printed to the standard error descriptor. diff -bur isc-dhcp3.orig/patches/patch-dhclient.c isc-dhcp3/patches/patch-dhclient.c --- isc-dhcp3.orig/patches/patch-dhclient.c Sun Aug 13 20:06:42 2000 +++ isc-dhcp3/patches/patch-dhclient.c Mon Sep 18 23:32:18 2000 @@ -1,32 +1,32 @@ ---- client/dhclient.c.orig Wed Jul 19 23:13:11 2000 -+++ client/dhclient.c Sun Aug 6 20:43:14 2000 -@@ -64,6 +64,7 @@ - int log_priority; +--- client/dhclient.c.orig Thu Sep 14 14:42:01 2000 ++++ client/dhclient.c Mon Sep 18 23:10:28 2000 +@@ -78,6 +78,7 @@ + u_int16_t remote_port; int no_daemon; int save_scripts; +int onetry; static void usage PROTO ((void)); -@@ -120,6 +121,8 @@ - if (++i == argc) - usage (); - server = argv [i]; +@@ -176,6 +177,8 @@ + } else if (!strcmp (argv [i], "-w")) { + /* do not exit if there are no broadcast interfaces. */ + persist = 1; + } else if (!strcmp (argv [i], "-1")) { + onetry = 1; } else if (argv [i][0] == '-') { usage (); } else { -@@ -273,7 +276,7 @@ +@@ -417,7 +420,7 @@ + log_info (arr); + log_info (url); - static void usage () - { - log_error ("Usage: dhclient [-d] [-D] [-q] [-p ] %s", + log_error ("Usage: dhclient [-d] [-D] [-q] [-1] [-p ] %s", "[-s server]"); - log_error (" [-lf lease-file] [-pf pid-file]%s", + log_fatal (" [-lf lease-file] [-pf pid-file]%s", "[-cf config-file] [interface]"); -@@ -1239,6 +1242,10 @@ +@@ -1402,6 +1405,10 @@ /* No leases were available, or what was available didn't work, so tell the shell script that we failed to allocate an address, and try again later. */ @@ -34,15 +34,6 @@ + exit(2); + log_info ("Unable to obtain a lease on first try - exiting.\n"); + } - log_info ("No working leases in persistent database - sleeping.\n"); + log_info ("No working leases in persistent database - sleeping."); script_init (client, "FAIL", (struct string_list *)0); if (client -> alias) -@@ -2157,7 +2164,7 @@ - - int dhcp_option_ev_name (buf, buflen, option) - char *buf; -- unsigned buflen; -+ size_t buflen; - struct option *option; - { - int i; diff -bur isc-dhcp3.orig/patches/patch-dhcpctl-Makefile.dist isc-dhcp3/patches/patch-dhcpctl-Makefile.dist --- isc-dhcp3.orig/patches/patch-dhcpctl-Makefile.dist Tue Sep 19 01:23:54 2000 +++ isc-dhcp3/patches/patch-dhcpctl-Makefile.dist Tue Sep 19 00:12:31 2000 @@ -0,0 +1,14 @@ +--- dhcpctl/Makefile.dist.orig Thu Aug 3 22:59:41 2000 ++++ dhcpctl/Makefile.dist Tue Sep 19 00:12:01 2000 +@@ -24,9 +24,9 @@ + MAN = dhcpctl.3 + HDRS = dhcpctl.h + +-DEBUG = -g ++DEBUG ?= -g + INCLUDES = $(BINDINC) -I$(TOP)/includes +-CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) ++CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) + + all: libdhcpctl.a svtest cltest $(CATMANPAGES) + diff -bur isc-dhcp3.orig/patches/patch-freebsd isc-dhcp3/patches/patch-freebsd --- isc-dhcp3.orig/patches/patch-freebsd Sun Jun 25 23:08:08 2000 +++ isc-dhcp3/patches/patch-freebsd Tue Sep 19 00:23:18 2000 @@ -1,25 +1,31 @@ ---- client/scripts/freebsd.orig Wed May 10 01:51:09 2000 -+++ client/scripts/freebsd Wed May 10 02:01:48 2000 -@@ -1,5 +1,11 @@ +--- client/scripts/freebsd.orig Mon May 1 19:17:19 2000 ++++ client/scripts/freebsd Tue Sep 19 00:22:54 2000 +@@ -1,26 +1,32 @@ #!/bin/sh +-make_resolv_conf() { +- echo search $new_domain_name >/etc/resolv.conf +if [ -x /usr/bin/logger ]; then + LOGGER="/usr/bin/logger -s -p user.notice -t dhclient" +else + LOGGER=echo +fi + - make_resolv_conf() { - echo search $new_domain_name >/etc/resolv.conf ++make_resolv_conf() { # file ++ echo search $new_domain_name > $1 for nameserver in $new_domain_name_servers; do -@@ -10,17 +16,17 @@ +- echo nameserver $nameserver >>/etc/resolv.conf ++ echo nameserver $nameserver >> $1 + done + } + # Must be used on exit. Invokes the local dhcp client exit hooks, if any. exit_with_hooks() { exit_status=$1 - if [ -x /etc/dhclient-exit-hooks ]; then - . /etc/dhclient-exit-hooks -+ if [ -x !!PREFIX!!/etc/dhclient-exit-hooks ]; then -+ . !!PREFIX!!/etc/dhclient-exit-hooks ++ if [ -x /usr/local/etc/dhclient-exit-hooks ]; then ++ . /usr/local/etc/dhclient-exit-hooks fi # probably should do something with exit status of the local script exit $exit_status @@ -27,10 +33,10 @@ # Invoke the local dhcp client enter hooks, if they exist. -if [ -x /etc/dhclient-enter-hooks ]; then -+if [ -x !!PREFIX!!/etc/dhclient-enter-hooks ]; then ++if [ -x /usr/local/etc/dhclient-enter-hooks ]; then exit_status=0 - . /etc/dhclient-enter-hooks -+ . !!PREFIX!!/etc/dhclient-enter-hooks ++ . /usr/local/etc/dhclient-enter-hooks # allow the local script to abort processing of this state # local script must set exit_status variable to nonzero. if [ $exit_status -ne 0 ]; then @@ -47,15 +53,15 @@ new_broadcast_arg="broadcast $new_broadcast_address" fi if [ x$old_broadcast_address != x ]; then -@@ -76,6 +81,7 @@ - if [ x$current_hostname = x ] || \ +@@ -77,6 +82,7 @@ [ x$current_hostname = x$old_host_name ]; then - if [ x$new_host_name != x$old_host_name ]; then + if [ x$current_hostname = x ] || \ + [ x$new_host_name != x$old_host_name ]; then + $LOGGER "New Hostname: $new_host_name" hostname $new_host_name fi fi -@@ -103,11 +109,18 @@ +@@ -105,11 +111,18 @@ [ x$reason = xBOUND ] || [ x$reason = xREBOOT ]; then ifconfig $interface inet $new_ip_address $new_netmask_arg \ $new_broadcast_arg $medium @@ -74,7 +80,19 @@ set $new_static_routes while [ $# -gt 1 ]; do route add $1 $2 -@@ -162,8 +175,12 @@ +@@ -122,10 +135,7 @@ + ifconfig $interface inet alias $alias_ip_address $alias_subnet_arg + route add $alias_ip_address 127.0.0.1 + fi +- echo search $new_domain_name >/etc/resolv.conf +- for nameserver in $new_domain_name_servers; do +- echo nameserver $nameserver >>/etc/resolv.conf +- done ++ make_resolv_conf /etc/resolv.conf + exit_with_hooks 0 + fi + +@@ -164,8 +174,12 @@ fi ifconfig $interface inet $new_ip_address $new_netmask_arg \ $new_broadcast_arg $medium @@ -87,3 +105,15 @@ set $new_routers if ping -q -c 1 $1; then if [ x$new_ip_address != x$alias_ip_address ] && \ +@@ -182,10 +196,7 @@ + route add $0 $1 + shift; shift + done +- echo search $new_domain_name >/etc/resolv.conf.std +- for nameserver in $new_domain_name_servers; do +- echo nameserver $nameserver >>/etc/resolv.conf.std +- done ++ make_resolv_conf /etc/resolv.conf.std + if [ -f /etc/resolv.conf ]; then + rm -f /etc/resolv.conf + fi diff -bur isc-dhcp3.orig/patches/patch-minires-Makefile.dist isc-dhcp3/patches/patch-minires-Makefile.dist --- isc-dhcp3.orig/patches/patch-minires-Makefile.dist Tue Sep 19 01:24:00 2000 +++ isc-dhcp3/patches/patch-minires-Makefile.dist Tue Sep 19 00:04:30 2000 @@ -0,0 +1,14 @@ +--- minires/Makefile.dist.orig Tue Jun 20 22:28:36 2000 ++++ minires/Makefile.dist Mon Sep 18 23:45:29 2000 +@@ -30,9 +30,9 @@ + dst_api.o hmac_link.o md5_dgst.o prandom.o support.o base64.o + HDRS = dst_internal.h md5.h md5_locl.h + +-DEBUG = -g ++DEBUG ?= -g + INCLUDES = $(BINDINC) -I$(TOP)/includes +-CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) -DHMAC_MD5 -DMINIRES_LIB ++CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) -DHMAC_MD5 -DMINIRES_LIB + + all: libres.a + diff -bur isc-dhcp3.orig/patches/patch-omapip-Makefile.dist isc-dhcp3/patches/patch-omapip-Makefile.dist --- isc-dhcp3.orig/patches/patch-omapip-Makefile.dist Tue Sep 19 01:24:05 2000 +++ isc-dhcp3/patches/patch-omapip-Makefile.dist Tue Sep 19 00:04:56 2000 @@ -0,0 +1,14 @@ +--- omapip/Makefile.dist.orig Thu Aug 17 19:39:51 2000 ++++ omapip/Makefile.dist Tue Sep 19 00:03:42 2000 +@@ -27,9 +27,9 @@ + convert.o hash.o auth.o + MAN = omapi.3 + +-DEBUG = -g ++DEBUG ?= -g + INCLUDES = $(BINDINC) -I$(TOP)/includes +-CFLAGS = $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) ++CFLAGS += $(DEBUG) $(PREDEFINES) $(INCLUDES) $(COPTS) + + all: libomapi.a svtest $(CATMANPAGES) + diff -bur isc-dhcp3.orig/patches/patch-site.conf isc-dhcp3/patches/patch-site.conf --- isc-dhcp3.orig/patches/patch-site.conf Sun Jun 25 23:08:08 2000 +++ isc-dhcp3/patches/patch-site.conf Tue Sep 19 00:42:14 2000 @@ -1,6 +1,6 @@ ---- site.conf Wed Jul 7 17:20:10 1999 -+++ site.conf Tue May 9 21:23:20 2000 -@@ -1,2 +1,21 @@ +--- site.conf.orig Wed Jul 7 17:20:10 1999 ++++ site.conf Tue Sep 19 00:39:08 2000 +@@ -1,2 +1,23 @@ # Put local site configuration stuff here to override the default # settings in Makefile.conf + @@ -14,6 +14,8 @@ +ADMMANEXT = .8 +FFMANDIR = $(PREFIX)/man/man5 +FFMANEXT = .5 ++LIBMANDIR = $(PREFIX)/man/man3 ++LIBMANEXT = .3 + +BINDLIBDEF = -L$(PREFIX)/lib -lbind +BINDINCDEF = -I$(PREFIX)/include/bind diff -bur isc-dhcp3.orig/pkg/DESCR isc-dhcp3/pkg/DESCR --- isc-dhcp3.orig/pkg/DESCR Tue Jul 18 10:50:54 2000 +++ isc-dhcp3/pkg/DESCR Tue Sep 19 01:01:27 2000 @@ -5,15 +5,24 @@ DHCP protocol is provided. BOOTP support is also provided for backwards compatibility. -Version 3 of the ISC DHCP Distribution adds conditional behaviour, -address pools with access control, and client classing. An interim -implementation of dynamic DNS updates for the server only is -included, but is not supported. +Version 3, Beta 2 of the ISC DHCP Distribution includes the following +features that are new since version 2.0: + + * DHCP Failover Protocol support + * OMAPI, an API for accessing and modifying the DHCP + server and client state. + * Conditional behaviour + * Storing arbitrary information on leases + * Address pools with access control + * Client classing + * Address allocation restriction by class + * Relay agent information option support + * Dynamic DNS updates + * Many bug fixes, performance enhancements, and minor + new DHCP protocol features. + +A fully-featured implementation of dynamic DNS updates is included in +this release. There are no build dependencies with any BIND version. -Features in upcoming releases, starting with 3.1, will include the -final asynchronous Dynamic DNS Support, DHCPv4 16-bit option codes, -asynchronous DNS query resolution, DHCP Authentication, and support -for a DHCP Interserver Protocol and live querying and update of the -DHCP database. WWW: http://www.isc.org/products/DHCP/ >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 Sep 18 17: 5:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tohokugw.tohoku.iij.ad.jp (tohokugw.tohoku.iij.ad.jp [202.232.14.98]) by hub.freebsd.org (Postfix) with ESMTP id 7BBEE37B423; Mon, 18 Sep 2000 17:05:03 -0700 (PDT) Received: by tohokugw.tohoku.iij.ad.jp; id JAA19764; Tue, 19 Sep 2000 09:05:02 +0900 (JST) From: Received: from hirose.tohoku.iij.ad.jp(192.168.144.2) by tohokugw.tohoku.iij.ad.jp via smap (V4.2) id xma019732; Tue, 19 Sep 00 09:04:18 +0900 Received: from hirose.tohoku.iij.ad.jp (localhost [127.0.0.1]) by hirose.tohoku.iij.ad.jp (8.9.3/3.7W99113014) with ESMTP id JAA85610; Tue, 19 Sep 2000 09:05:36 +0900 (JST) Date: Tue, 19 Sep 2000 09:05:35 +0900 Message-ID: To: trevor@jpj.net Cc: kris@FreeBSD.ORG, asami@FreeBSD.ORG, ports@FreeBSD.ORG, qa@FreeBSD.ORG, taguchi@tohoku.iij.ad.jp Subject: Re: Making XFree86-4 the default In-Reply-To: In your message of "Mon, 18 Sep 2000 10:17:31 -0400 (EDT)" References: User-Agent: Wanderlust/2.2.12 (Joyride) EMIKO/1.13.9 (Euglena tripteris) FLIM/1.13.2 (Kasanui) Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) MIME-Version: 1.0 (generated by EMIKO 1.13.9 - "Euglena tripteris") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > Kidding aside, if you think it is really necessary, why don't we > > > include Xwrapper from 3.3.6 (we can make a separate port for this) as > > > a requirement for a 4.0.1 Xserver? Will that work? > > > > Nope :-( > > I've submitted a port along these lines. It works for me. See: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21352 Great! -- T,Taguchi. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17: 7:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cn.FreeBSD.org (cn.freebsd.org [202.103.100.254]) by hub.freebsd.org (Postfix) with ESMTP id CDFA837B424; Mon, 18 Sep 2000 17:07:56 -0700 (PDT) Received: from cn.freebsd.org (unknown [202.103.100.243]) by cn.FreeBSD.org (Postfix) with ESMTP id AFE69DF24C; Tue, 19 Sep 2000 08:07:53 +0800 (CST) Message-ID: <39C6AE59.6EBB560B@cn.freebsd.org> Date: Tue, 19 Sep 2000 08:07:53 +0800 From: Peng HaiJie X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: zh, en, zh-CN, zh-TW MIME-Version: 1.0 To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21213: fix order of include headers. References: <200009182111.OAA42718@freefall.freebsd.org> Content-Type: text/plain; charset=gb2312 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ade@FreeBSD.org wrote: > Synopsis: fix order of include headers. > > State-Changed-From-To: open->feedback > State-Changed-By: ade > State-Changed-When: Mon Sep 18 14:11:16 PDT 2000 > State-Changed-Why: > Unless I'm very much mistaken, this patch already exists as > patch-aa in the port. Can you verify this? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21213 Yes,it is no use now. vanllila@freebsd.org commited the patch-aa after I submit the pr. I have no rights to commit. Thank you again.ade@freebsd.org. -phj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17: 9:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from cn.FreeBSD.org (cn.freebsd.org [202.103.100.254]) by hub.freebsd.org (Postfix) with ESMTP id 4392637B422 for ; Mon, 18 Sep 2000 17:09:18 -0700 (PDT) Received: from cn.freebsd.org (unknown [202.103.100.243]) by cn.FreeBSD.org (Postfix) with ESMTP id DE210DF24C for ; Tue, 19 Sep 2000 08:09:15 +0800 (CST) Message-ID: <39C6AEAB.216671ED@cn.freebsd.org> Date: Tue, 19 Sep 2000 08:09:15 +0800 From: Peng HaiJie X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 5.0-CURRENT i386) X-Accept-Language: zh, en, zh-CN, zh-TW MIME-Version: 1.0 To: freebsd-ports@FreeBSD.org Subject: Re: ports/21111: fix ports make bug References: <200009182058.NAA38867@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ade@FreeBSD.org wrote: > Synopsis: fix ports make bug > > State-Changed-From-To: open->feedback > State-Changed-By: ade > State-Changed-When: Mon Sep 18 13:57:23 PDT 2000 > State-Changed-Why: > You already have another PR (18867) which will result in this > port being removed, and replaced (after repo-copy) followed by > an update to version 1.3 of something to be called stardict. > > Which PR do you want to keep? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21111 I want to keep the new port(stardict). I fix the make bug of cdict,because I had submited the new ports but got no reply a long time. Thank you ade! -phj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17:16: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 6113437B422; Mon, 18 Sep 2000 17:16:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA77668; Mon, 18 Sep 2000 17:16:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 17:16:48 -0700 (PDT) From: Message-Id: <200009190016.RAA77668@freefall.freebsd.org> To: phj@cn.freebsd.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21111: fix ports make bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix ports make bug State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 17:16:09 PDT 2000 State-Changed-Why: Closed at submitters request. I will be updating this port per an earlier PR once a repo-copy has been performed. http://www.freebsd.org/cgi/query-pr.cgi?pr=21111 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17:17: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 287D337B424; Mon, 18 Sep 2000 17:17:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA77835; Mon, 18 Sep 2000 17:17:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 17:17:49 -0700 (PDT) From: Message-Id: <200009190017.RAA77835@freefall.freebsd.org> To: phj@cn.freebsd.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21213: fix order of include headers. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix order of include headers. State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 17:17:14 PDT 2000 State-Changed-Why: Closed at submitters request. Maintainer had indeed already applied this patch to the port. http://www.freebsd.org/cgi/query-pr.cgi?pr=21213 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17:19: 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 42B8C37B422; Mon, 18 Sep 2000 17:19:00 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA77985; Mon, 18 Sep 2000 17:19:00 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 17:19:00 -0700 (PDT) From: Message-Id: <200009190019.RAA77985@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/21379: Updated port - net/isc-dhcp3 (beta 2 patch level 4) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port - net/isc-dhcp3 (beta 2 patch level 4) Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 17:18:49 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21379 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17: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 67CD637B424 for ; Mon, 18 Sep 2000 17:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA78190; Mon, 18 Sep 2000 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from md5.follo.net (ppp328.uio.no [129.240.241.89]) by hub.freebsd.org (Postfix) with ESMTP id 0372737B422 for ; Mon, 18 Sep 2000 17:10:26 -0700 (PDT) Received: (from des@localhost) by md5.follo.net (8.11.0/8.11.0) id e8IMEwq11758; Tue, 19 Sep 2000 00:14:58 +0200 (CEST) (envelope-from des) Message-Id: <200009182214.e8IMEwq11758@md5.follo.net> Date: Tue, 19 Sep 2000 00:14:58 +0200 (CEST) From: des@ofug.org Reply-To: des@ofug.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21380: portlint is stupid. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21380 >Category: ports >Synopsis: portlint is stupid. >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 Sep 18 17:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dag-Erling Smorgrav >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: ports-current >Description: portlint is slightly anal. Though it works well in many (perhaps most) cases, there are some fairly common situations it does not recognize or handle well at all. Most notably, the portlint port itself fails portlint since, having no distfiles, it lacks a checksum file. >How-To-Repeat: des@md5 /usr/ports/devel/portlint% portlint OK: checking /usr/ports/devel/portlint/pkg/COMMENT. OK: checking /usr/ports/devel/portlint/pkg/DESCR. OK: checking Makefile. OK: checking /usr/ports/devel/portlint/files/md5. FATAL: no /usr/ports/devel/portlint/files/md5 in ".". 1 fatal errors and 0 warnings found. >Fix: Don't look for files/md5 if DISTFILES is empty. >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 Sep 18 17:24:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.bluetail.com (mail.bluetail.com [195.149.129.26]) by hub.freebsd.org (Postfix) with ESMTP id 5F33337B42C; Mon, 18 Sep 2000 17:24:31 -0700 (PDT) Received: from albatross.bluetail.com (albatross.bluetail.com [192.168.128.42]) by duva.bluetail.com (BLUETAIL Mail Robustifier 2.2.1) with ESMTP id 185881.323013.969duva-s0 ; Tue, 19 Sep 2000 02:23:33 +0200 Received: (from seb@localhost) by albatross.bluetail.com (8.9.3/8.9.3) id CAA53588; Tue, 19 Sep 2000 02:23:32 +0200 (CEST) (envelope-from seb) To: mi@aldan.algebra.com Cc: Ade Lovett , ports@freebsd.org, ruslan@shevchenko.kiev.ua, olgeni@uli.it Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 release on September 25th) References: <200009181950.PAA36315@misha.privatelabs.com> Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII From: Sebastian Strollo Date: 19 Sep 2000 02:23:32 +0200 In-Reply-To: mi@aldan.algebra.com's message of "Mon, 18 Sep 2000 15:50:41 -0400 (EDT)" Message-ID: Lines: 41 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org mi@aldan.algebra.com writes: > On 18 Sep, Ade Lovett wrote: > = On Mon, Sep 18, 2000 at 01:16:47PM -0400, mi@aldan.algebra.com wrote: > = > My current grudge is the two PRs: > = > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=20401 > = > and > = > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=19659 > = > = In both cases it is not evident from the PR submission that the > = submitters have discussed these changes with the lang/erlang port > = maintainer (seb@bluetail.com). ... > In this case, I not only did that, but also keep bothering this fine > people, without any response, regretfully. My last such bothering took > place less then a week ago, when I wrote to the Eddie mailing list: ... > Both seb@bluetail.com and ruslan@shevchenko.kiev.ua did not reply :( ... First of all I am sorry to have caused all this blood preasure rising from the email exchanged that followed. (The thing is that I am on parental leave and spend all day with my one year old son, and he gives me a hard time if I try to sit down at the computer for too long... ;-) > Perhaps we (Jimmy Olgeni and yours truly) should merge our patches and > resubmit, but it would be nice to see a confirmation, that it will be > looked at before we spend any more effort... I have in my inbox a patch from Jimmy Olgeni which includes both the mnesia upgrade and the ssl fix (thanks Jimmy!), I just have had too much other things to do when I get those short periods of time at the keyboard. Give me two more days to check it out and if it works fine then lets submit that patch and close pr:s 20401 and 19659. How does that sound? Rgds, /Sebastian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17:30: 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 0B4F137B424 for ; Mon, 18 Sep 2000 17:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA79490; Mon, 18 Sep 2000 17:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 18 Sep 2000 17:30:01 -0700 (PDT) Message-Id: <200009190030.RAA79490@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: ports/21380: portlint is stupid. Reply-To: Dag-Erling Smorgrav Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21380; it has been noted by GNATS. From: Dag-Erling Smorgrav To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/21380: portlint is stupid. Date: 19 Sep 2000 02:24:26 +0200 des@ofug.org writes: > des@md5 /usr/ports/devel/portlint% portlint > OK: checking /usr/ports/devel/portlint/pkg/COMMENT. > OK: checking /usr/ports/devel/portlint/pkg/DESCR. > OK: checking Makefile. > OK: checking /usr/ports/devel/portlint/files/md5. > FATAL: no /usr/ports/devel/portlint/files/md5 in ".". > 1 fatal errors and 0 warnings found. Oh, and need I add that this breaks addport? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17:30:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 042D337B422; Mon, 18 Sep 2000 17:30:45 -0700 (PDT) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.9.3/8.9.3) with SMTP id TAA08282; Mon, 18 Sep 2000 19:30:43 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <030901c021d0$d8c24b60$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: , , Cc: References: <200009171851.LAA40011@freefall.freebsd.org> Subject: Re: ports/21266: MD5 checksum out of date for cyrus-sasl Date: Mon, 18 Sep 2000 19:30:42 -0500 Organization: West Bend Internet 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 From: > Synopsis: MD5 checksum out of date for cyrus-sasl > > State-Changed-From-To: open->feedback > State-Changed-By: ade > State-Changed-When: Sun Sep 17 11:50:29 PDT 2000 > State-Changed-Why: > Do you have any idea what changed in the distfile? > A hard coded value was changed to a variable. > In addition, have you discussed this with the security/cyrus-sasl > maintainer, hetzels@westbend.net ? > I know about the problem, and will be submitting a fix when I have the LDAP & MySQL authentication patches ready. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 17:44:57 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 36C1237B424 for ; Mon, 18 Sep 2000 17:44:54 -0700 (PDT) Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by mx1.FreeBSD.org (Postfix) with SMTP id 4A9776E29C0 for ; Mon, 18 Sep 2000 17:44:53 -0700 (PDT) Received: (qmail 15498283 invoked from network); 19 Sep 2000 00:43:51 -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 ; 19 Sep 2000 00:43:51 -0000 Received: (from root@localhost) by gits.dyndns.org (8.9.3/8.9.3) id CAA44783; Tue, 19 Sep 2000 02:43:50 +0200 (CEST) (envelope-from root) From: Cyrille Lefevre Message-Id: <200009190043.CAA44783@gits.dyndns.org> Subject: Re: ports/dhcp3: memory hole in dhclient In-Reply-To: <200009180438.e8I4c1V07634@grosse.bisbee.fugue.com> "from Ted Lemon at Sep 17, 2000 09:38:01 pm" To: Ted Lemon Date: Tue, 19 Sep 2000 02:43:50 +0200 (CEST) Cc: freebsd-ports@freebsd.org, freebsd-security@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 Ted Lemon wrote: > > The current version of the software is 3.0b2pl4. I've fixed a number > of memory leaks, although I can't promise you that I've fixed yours. thanks. hope there is no more memory leaks. ports updated : http://www.freebsd.org/cgi/query-pr.cgi?pr=21379 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 Mon Sep 18 17: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 F024137B42C for ; Mon, 18 Sep 2000 17:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA82099; Mon, 18 Sep 2000 17:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bowhill.yi.org (bowhill.yi.org [216.122.158.78]) by hub.freebsd.org (Postfix) with ESMTP id CFEB137B423 for ; Mon, 18 Sep 2000 17:48:39 -0700 (PDT) Received: (from kosmos@localhost) by bowhill.yi.org (8.11.0/8.11.0) id e8J0mf510031; Mon, 18 Sep 2000 17:48:41 -0700 (PDT) (envelope-from kosmos) Message-Id: <200009190048.e8J0mf510031@bowhill.yi.org> Date: Mon, 18 Sep 2000 17:48:41 -0700 (PDT) From: kosmos@bowhill.yi.org Reply-To: kosmos@bowhill.yi.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21381: ruby-tk has two entries in INDEX Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21381 >Category: ports >Synopsis: ruby-tk has two entries in INDEX >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 18 17:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Allan Bowhill >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: Command shell, in /usr/ports. >Description: After cv-supping, rubytk has two entries in INDEX, and the pkgname field is odd-looking: "ruby-ruby-tk-1.6.0.p3". This could affect subsystems that depend on uniformity of INDEX entries. Make index in ports does not seem to fix the problem. >How-To-Repeat: 1. cvsup ports 2. grep -i "ruby-ruby" INDEX | wc -l >Fix: Not sure, I would guess something is wrong with one of the variables in Mk/bsd.ruby.mk or in /usr/ports/x11-toolkits/ruby-tk/Makefile >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 Sep 18 19: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 B881837B424 for ; Mon, 18 Sep 2000 19:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA97036; Mon, 18 Sep 2000 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id C82D937B424 for ; Mon, 18 Sep 2000 19:13:55 -0700 (PDT) Received: from jupiter.delta.ny.us (nyf-ny4-37.ix.netcom.com [198.211.16.229]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id WAA01671 for ; Mon, 18 Sep 2000 22:13:48 -0400 (EDT) Received: (from vsilyaev@localhost) by jupiter.delta.ny.us (8.9.3/8.9.3) id WAA82362; Mon, 18 Sep 2000 22:13:45 -0400 (EDT) (envelope-from vsilyaev) Message-Id: <200009190213.WAA82362@jupiter.delta.ny.us> Date: Mon, 18 Sep 2000 22:13:45 -0400 (EDT) From: vns@delta.odessa.ua Reply-To: vns@delta.odessa.ua To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21382: lang/pike port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21382 >Category: ports >Synopsis: lang/pike port update >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 Sep 18 19:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vladimir N. Silyaev >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD 4.1-STABLE i386 >Description: Update pike port to version 7.0.78 >How-To-Repeat: >Fix: Apply the following patch diff -ru ports/lang/pike.orig/Makefile ports/lang/pike/Makefile --- ports/lang/pike.orig/Makefile Wed Apr 12 02:19:54 2000 +++ ports/lang/pike/Makefile Mon Sep 18 22:01:35 2000 @@ -6,10 +6,10 @@ # PORTNAME= pike -PORTVERSION= 0.6 +PORTVERSION= 7.0.78 CATEGORIES= lang -MASTER_SITES= http://pike.idonex.se/download/ -DISTNAME= Pike-v0.6.110 +MASTER_SITES= ftp://ftp.roxen.com/pub/pike/all/${PORTVERSION} +DISTNAME= Pike-v${PORTVERSION} MAINTAINER= vns@delta.odessa.ua @@ -17,6 +17,9 @@ IS_INTERACTIVE= yes GNU_CONFIGURE= yes +.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) +.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" +.else CONFIGURE_ARGS?= \ --without-ttflib \ --without-gdbm \ @@ -24,6 +27,8 @@ --without-postgresql \ --without-msql \ --without-jpeg +.endif +CONFIGURE_ARGS+= --with-poll pre-fetch: .if !defined(BATCH) @@ -36,7 +41,10 @@ pre-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) -.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.endif +post-install: + ${INSTALL_PROGRAM} ${WRKSRC}pike ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}hilfe ${PREFIX}/bin + ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/include/pike/*.h + ${CHMOD} ${SHAREMODE} ${PREFIX}/include/pike/*.h + .include diff -ru ports/lang/pike.orig/files/md5 ports/lang/pike/files/md5 --- ports/lang/pike.orig/files/md5 Fri Apr 2 21:05:18 1999 +++ ports/lang/pike/files/md5 Mon Sep 18 19:27:32 2000 @@ -1 +1 @@ -MD5 (Pike-v0.6.110.tar.gz) = a6ed59464a11c09611c803e83fb62282 +MD5 (Pike-v7.0.78.tar.gz) = 9c0e5a8b0ba11a247a3ff4791849bc71 diff -ru ports/lang/pike.orig/patches/patch-aa ports/lang/pike/patches/patch-aa --- ports/lang/pike.orig/patches/patch-aa Sat Feb 12 20:06:16 2000 +++ ports/lang/pike/patches/patch-aa Mon Sep 18 21:27:36 2000 @@ -1,12 +1,20 @@ ---- configure.orig Mon Nov 9 19:53:49 1998 -+++ configure Fri Feb 11 09:05:44 2000 -@@ -5011,8 +5011,7 @@ - echo "$ac_t""no" 1>&6 - else - echo "$ac_t""yes" 1>&6 -- CFLAGS="${CFLAGS} -pthread" -- LD_FALLBACK_FLAGS="${LD_FALLBACK_FLAGS-} -lc_r" -+ LD_FALLBACK_FLAGS="${LD_FALLBACK_FLAGS-} -pthread" - fi - ;; +--- Makefile.in.orig Sun Jul 30 03:40:14 2000 ++++ Makefile.in Mon Sep 18 21:26:01 2000 +@@ -240,7 +240,7 @@ + hilfe: $(TMP_BINDIR)/hilfe Makefile + @echo "Creating ./hilfe..."; \ +- if [ "$(exec_prefix)" != "/usr/local/bin" -a \ ++ if [ true -o \ + "$(exec_prefix)" != "/usr/local/bin/" ]; then \ + ( sed -e 's!/usr/local/bin!$(exec_prefix)!' <$(TMP_BINDIR)/hilfe \ + >./hilfe && chmod 755 ./hilfe) || exit 1 ; \ +@@ -271,7 +271,7 @@ + + # install + install: pike hilfe pike-module aclocal +- @$(RUNPIKE) $(TMP_BINDIR)/install.pike --new-style \ ++ @$(RUNPIKE) $(TMP_BINDIR)/install.pike --traditional \ + exec_prefix="$(exec_prefix)" lib_prefix="$(lib_prefix)" \ + TMP_LIBDIR="$(TMP_LIBDIR)" LIBDIR_SRC="$(LIBDIR_SRC)" \ + SRCDIR="$(SRCDIR)" prefix="$(prefix)" MANDIR_SRC="$(MANDIR_SRC)" \ diff -ru ports/lang/pike.orig/pkg/PLIST ports/lang/pike/pkg/PLIST --- ports/lang/pike.orig/pkg/PLIST Fri Apr 2 21:05:18 1999 +++ ports/lang/pike/pkg/PLIST Mon Sep 18 22:07:31 2000 @@ -1,35 +1,39 @@ bin/pike -bin/pike-module bin/hilfe +include/pike/block_alloc.h include/pike/acconfig.h include/pike/array.h +include/pike/bignum.h include/pike/backend.h -include/pike/block_alloc.h -include/pike/builtin_functions.h include/pike/callback.h +include/pike/block_alloc_h.h include/pike/compilation.h +include/pike/errors.h +include/pike/dynamic_module_makefile +include/pike/builtin_functions.h include/pike/constants.h include/pike/cpp.h include/pike/cyclic.h +include/pike/efun.h +include/pike/dummy_ci.h include/pike/dmalloc.h include/pike/docode.h include/pike/dynamic_buffer.h include/pike/dynamic_load.h -include/pike/efun.h include/pike/encode.h include/pike/error.h include/pike/fd_control.h include/pike/fdlib.h include/pike/fsort.h -include/pike/fsort_template.h include/pike/gc.h +include/pike/interpreter.h +include/pike/fsort_template.h include/pike/global.h -include/pike/las.h include/pike/hashtable.h include/pike/interpret.h -include/pike/language.h +include/pike/las.h +include/pike/lexer.h include/pike/lex.h -include/pike/machine.h include/pike/main.h include/pike/mapping.h include/pike/module.h @@ -38,13 +42,15 @@ include/pike/object.h include/pike/opcodes.h include/pike/operators.h -include/pike/otable.h include/pike/peep.h include/pike/pike_macros.h -include/pike/pike_memory.h -include/pike/pike_types.h +include/pike/preprocessor.h include/pike/port.h +include/pike/pike_memory.h include/pike/program.h +include/pike/program_id.h +include/pike/pike_types.h +include/pike/security.h include/pike/program_areas.h include/pike/queue.h include/pike/rusage.h @@ -53,169 +59,409 @@ include/pike/stuff.h include/pike/svalue.h include/pike/threads.h -include/pike/time_stuff.h +include/pike/treeopt.h include/pike/version.h +include/pike/case_info.h +include/pike/time_stuff.h +include/pike/language.h +include/pike/machine.h include/pike/y.tab.h -include/pike/dynamic_module_makefile include/pike/aclocal.m4 +lib/pike/modules/ADT.pmod/Priority_queue.pike +lib/pike/modules/ADT.pmod/Heap.pike +lib/pike/modules/ADT.pmod/Heap.pike.o +lib/pike/modules/ADT.pmod/Queue.pike +lib/pike/modules/ADT.pmod/Table.pmod +lib/pike/modules/ADT.pmod/struct.pike +lib/pike/modules/ADT.pmod/module.pmod +lib/pike/modules/ADT.pmod/Priority_queue.pike.o +lib/pike/modules/ADT.pmod/Queue.pike.o +lib/pike/modules/ADT.pmod/Table.pmod.o +lib/pike/modules/ADT.pmod/struct.pike.o +lib/pike/modules/ADT.pmod/module.pmod.o +lib/pike/modules/Array.pmod +lib/pike/modules/CommonLog.so lib/pike/modules/Gdbm.so +lib/pike/modules/Gettext.so +lib/pike/modules/Image.so +lib/pike/modules/HTTPLoop.so lib/pike/modules/Gmp.so +lib/pike/modules/Java.pmod +lib/pike/modules/___Java.so lib/pike/modules/Gz.so -lib/pike/modules/Image.so -lib/pike/modules/MIME.so +lib/pike/modules/___MIME.so +lib/pike/modules/Math.so +lib/pike/modules/_Charset.pmod +lib/pike/modules/Odbc.so +lib/pike/modules/Oracle.pmod +lib/pike/modules/___Oracle.so +lib/pike/modules/Parser.pmod +lib/pike/modules/___Parser.so lib/pike/modules/MIME.pmod lib/pike/modules/Msql.so +lib/pike/modules/Regexp.pmod +lib/pike/modules/___Regexp.so +lib/pike/modules/SANE.so lib/pike/modules/Mysql.so lib/pike/modules/Pipe.so +lib/pike/modules/___Yp.so lib/pike/modules/Postgres.so -lib/pike/modules/Regexp.so +lib/pike/modules/____Charset.so +lib/pike/modules/_Crypto.so lib/pike/modules/Ssleay.so -lib/pike/modules/Yp.so +lib/pike/modules/_Image_TIFF.so lib/pike/modules/Yp.pmod -lib/pike/modules/_Charset.so -lib/pike/modules/_Charset.pmod lib/pike/modules/_Image_JPEG.so +lib/pike/modules/_math.pmod +lib/pike/modules/Java.pmod.o +lib/pike/modules/MIME.pmod.o lib/pike/modules/_Image_TTF.so lib/pike/modules/_Image_XFace.so -lib/pike/modules/_Lobotomized_Crypto.so -lib/pike/modules/call_out.pmod +lib/pike/modules/sybase.so lib/pike/modules/files.pmod -lib/pike/modules/math.pmod -lib/pike/modules/readline.so +lib/pike/modules/GL.so +lib/pike/modules/GLUT.so +lib/pike/modules/GTK.pmod +lib/pike/modules/___GTK.so +lib/pike/modules/Function.pmod +lib/pike/modules/Colors.pmod +lib/pike/modules/Crypto.pmod +lib/pike/modules/Process.pmod +lib/pike/modules/GDK.pmod +lib/pike/modules/GLU.pmod +lib/pike/modules/Getopt.pmod +lib/pike/modules/Gnome.pmod +lib/pike/modules/Calendar.pmod/Austrian.pmod.o +lib/pike/modules/Calendar.pmod/Austrian.pmod +lib/pike/modules/Calendar.pmod/Gregorian.pmod +lib/pike/modules/Calendar.pmod/ISO.pmod +lib/pike/modules/Calendar.pmod/Julian.pmod +lib/pike/modules/Calendar.pmod/Orthodox.pmod +lib/pike/modules/Calendar.pmod/Stardate.pmod +lib/pike/modules/Calendar.pmod/Swedish.pmod +lib/pike/modules/Calendar.pmod/module.pmod +lib/pike/modules/Calendar.pmod/Gregorian.pmod.o +lib/pike/modules/Calendar.pmod/ISO.pmod.o +lib/pike/modules/Calendar.pmod/Julian.pmod.o +lib/pike/modules/Calendar.pmod/Orthodox.pmod.o +lib/pike/modules/Calendar.pmod/Stardate.pmod.o +lib/pike/modules/Calendar.pmod/Swedish.pmod.o +lib/pike/modules/Calendar.pmod/module.pmod.o +lib/pike/modules/Crypto/des3_cbc.pike +lib/pike/modules/Crypto/des3.pike +lib/pike/modules/Crypto/des3.pike.o +lib/pike/modules/Crypto/dsa.pike.o +lib/pike/modules/Crypto/des_cbc.pike +lib/pike/modules/Crypto/dsa.pike +lib/pike/modules/Crypto/hmac.pike +lib/pike/modules/Crypto/idea_cbc.pike +lib/pike/modules/Crypto/randomness.pmod +lib/pike/modules/Crypto/rsa.pike +lib/pike/modules/Crypto/_rsa.pike +lib/pike/modules/Crypto/des3_cbc.pike.o +lib/pike/modules/Crypto/des_cbc.pike.o +lib/pike/modules/Crypto/hmac.pike.o +lib/pike/modules/Crypto/idea_cbc.pike.o +lib/pike/modules/Crypto/randomness.pmod.o +lib/pike/modules/Crypto/rsa.pike.o +lib/pike/modules/Crypto/_rsa.pike.o +lib/pike/modules/Program.pmod +lib/pike/modules/Simulate.pmod +lib/pike/modules/Stack.pmod +lib/pike/modules/String.pmod +lib/pike/modules/Thread.pmod +lib/pike/modules/_Image_PS.pmod +lib/pike/modules/_Image_PSD.pmod +lib/pike/modules/_Image_XCF.pmod +lib/pike/modules/_Image_XPM.pmod +lib/pike/modules/__builtin.pmod +lib/pike/modules/error.pmod +lib/pike/modules/Debug.pmod/werror.pmod.o +lib/pike/modules/Debug.pmod/werror.pmod +lib/pike/modules/Filesystem.pmod/System.pike.o +lib/pike/modules/Filesystem.pmod/System.pike +lib/pike/modules/Filesystem.pmod/Tar.pmod +lib/pike/modules/Filesystem.pmod/module.pmod +lib/pike/modules/Filesystem.pmod/Tar.pmod.o +lib/pike/modules/Filesystem.pmod/module.pmod.o +lib/pike/modules/GTKSupport.pmod/MenuFactory.pmod +lib/pike/modules/GTKSupport.pmod/Alert.pike +lib/pike/modules/GTKSupport.pmod/pDrawingArea.pike +lib/pike/modules/GTKSupport.pmod/SClist.pike +lib/pike/modules/GTKSupport.pmod/Util.pmod +lib/pike/modules/GTKSupport.pmod/pCtree.pike +lib/pike/modules/Graphics.pmod/Graph.pmod/create_bars.pike.o +lib/pike/modules/Graphics.pmod/Graph.pmod/create_bars.pike +lib/pike/modules/Graphics.pmod/Graph.pmod/create_graph.pike +lib/pike/modules/Graphics.pmod/Graph.pmod/create_pie.pike +lib/pike/modules/Graphics.pmod/Graph.pmod/doc.txt +lib/pike/modules/Graphics.pmod/Graph.pmod/graph.h +lib/pike/modules/Graphics.pmod/Graph.pmod/module.pmod +lib/pike/modules/Graphics.pmod/Graph.pmod/polyline.pike +lib/pike/modules/Graphics.pmod/Graph.pmod/test.pike +lib/pike/modules/Graphics.pmod/Graph.pmod/create_graph.pike.o +lib/pike/modules/Graphics.pmod/Graph.pmod/create_pie.pike.o +lib/pike/modules/Graphics.pmod/Graph.pmod/module.pmod.o +lib/pike/modules/Graphics.pmod/Graph.pmod/polyline.pike.o +lib/pike/modules/LR.pmod/Grammar_parser.pmod.o +lib/pike/modules/LR.pmod/Grammar_parser.pmod +lib/pike/modules/LR.pmod/item.pike +lib/pike/modules/LR.pmod/lr.pike +lib/pike/modules/LR.pmod/parser.pike +lib/pike/modules/LR.pmod/priority.pike +lib/pike/modules/LR.pmod/rule.pike +lib/pike/modules/LR.pmod/scanner.pike +lib/pike/modules/LR.pmod/item.pike.o +lib/pike/modules/LR.pmod/lr.pike.o +lib/pike/modules/LR.pmod/parser.pike.o +lib/pike/modules/LR.pmod/priority.pike.o +lib/pike/modules/LR.pmod/rule.pike.o +lib/pike/modules/LR.pmod/scanner.pike.o +lib/pike/modules/Languages.pmod/PLIS.pmod.o +lib/pike/modules/Languages.pmod/PLIS.pmod +lib/pike/modules/Locale.pmod/Charset.pmod.o +lib/pike/modules/Locale.pmod/Charset.pmod +lib/pike/modules/Locale.pmod/Gettext.pmod +lib/pike/modules/Locale.pmod/Gettext.pmod.o +lib/pike/modules/Protocols.pmod/HTTP.pmod/Query.pike.o +lib/pike/modules/Protocols.pmod/HTTP.pmod/Query.pike +lib/pike/modules/Protocols.pmod/HTTP.pmod/module.pmod +lib/pike/modules/Protocols.pmod/HTTP.pmod/module.pmod.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/dummy_server.pike.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/dummy_server.pike +lib/pike/modules/Protocols.pmod/IMAP.pmod/imap_server.pike +lib/pike/modules/Protocols.pmod/IMAP.pmod/parse_line.pike +lib/pike/modules/Protocols.pmod/IMAP.pmod/parser.pike +lib/pike/modules/Protocols.pmod/IMAP.pmod/requests.pmod +lib/pike/modules/Protocols.pmod/IMAP.pmod/server.pike +lib/pike/modules/Protocols.pmod/IMAP.pmod/types.pmod +lib/pike/modules/Protocols.pmod/IMAP.pmod/imap_server.pike.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/parse_line.pike.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/parser.pike.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/requests.pmod.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/server.pike.o +lib/pike/modules/Protocols.pmod/IMAP.pmod/types.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/db/convert_compose.pike +lib/pike/modules/Protocols.pmod/X.pmod/db/compose.db +lib/pike/modules/Protocols.pmod/X.pmod/db/compose +lib/pike/modules/Protocols.pmod/X.pmod/db/convert_compose.pike.o +lib/pike/modules/Protocols.pmod/X.pmod/db/keysyms +lib/pike/modules/Protocols.pmod/X.pmod/Auth.pmod +lib/pike/modules/Protocols.pmod/X.pmod/Atom.pmod +lib/pike/modules/Protocols.pmod/X.pmod/AUTHORS +lib/pike/modules/Protocols.pmod/X.pmod/Atom.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/Auth.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/Extensions.pmod +lib/pike/modules/Protocols.pmod/X.pmod/Requests.pmod +lib/pike/modules/Protocols.pmod/X.pmod/Types.pmod +lib/pike/modules/Protocols.pmod/X.pmod/XImage.pmod +lib/pike/modules/Protocols.pmod/X.pmod/XTools.pmod +lib/pike/modules/Protocols.pmod/X.pmod/Xlib.pmod +lib/pike/modules/Protocols.pmod/X.pmod/_Types.pmod +lib/pike/modules/Protocols.pmod/X.pmod/_Xlib.pmod +lib/pike/modules/Protocols.pmod/X.pmod/error.h +lib/pike/modules/Protocols.pmod/X.pmod/keysyms.h +lib/pike/modules/Protocols.pmod/X.pmod/Extensions.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/Requests.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/Types.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/XTools.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/Xlib.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/_Types.pmod.o +lib/pike/modules/Protocols.pmod/X.pmod/_Xlib.pmod.o +lib/pike/modules/Protocols.pmod/DNS.pmod +lib/pike/modules/Protocols.pmod/Ident.pmod +lib/pike/modules/Protocols.pmod/LPD.pmod +lib/pike/modules/Protocols.pmod/Line.pmod +lib/pike/modules/Protocols.pmod/NNTP.pmod +lib/pike/modules/Protocols.pmod/Ports.pmod +lib/pike/modules/Protocols.pmod/SMTP.pmod +lib/pike/modules/Protocols.pmod/TELNET.pmod +lib/pike/modules/Protocols.pmod/IRC.pmod/Requests.pmod +lib/pike/modules/Protocols.pmod/IRC.pmod/Client.pike +lib/pike/modules/Protocols.pmod/IRC.pmod/Error.pmod +lib/pike/modules/Protocols.pmod/IRC.pmod/Raw.pike +lib/pike/modules/Protocols.pmod/IRC.pmod/Error.pmod.o +lib/pike/modules/Protocols.pmod/IRC.pmod/Raw.pike.o +lib/pike/modules/Protocols.pmod/IRC.pmod/Requests.pmod.o +lib/pike/modules/Protocols.pmod/LDAP.pmod/ldap_errors.h +lib/pike/modules/Protocols.pmod/LDAP.pmod/client.pike +lib/pike/modules/Protocols.pmod/LDAP.pmod/ldap_privates.pmod +lib/pike/modules/Protocols.pmod/LDAP.pmod/ldap_globals.h +lib/pike/modules/Protocols.pmod/LDAP.pmod/client.pike.o +lib/pike/modules/Protocols.pmod/LDAP.pmod/protocol.pike +lib/pike/modules/Protocols.pmod/LDAP.pmod/ldap_privates.pmod.o +lib/pike/modules/Protocols.pmod/LDAP.pmod/protocol.pike.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Connection.pike +lib/pike/modules/Protocols.pmod/LysKOM.pmod/ASync.pmod +lib/pike/modules/Protocols.pmod/LysKOM.pmod/ProtocolTypes.pmod +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Helper.pmod +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Request.pmod +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Raw.pike +lib/pike/modules/Protocols.pmod/LysKOM.pmod/ASync.pmod.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Session.pike +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Threads.pike +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Connection.pike.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Helper.pmod.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/ProtocolTypes.pmod.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Raw.pike.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Request.pmod.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Session.pike.o +lib/pike/modules/Protocols.pmod/LysKOM.pmod/Threads.pike.o +lib/pike/modules/Protocols.pmod/DNS.pmod.o +lib/pike/modules/Protocols.pmod/Ident.pmod.o +lib/pike/modules/Protocols.pmod/LPD.pmod.o +lib/pike/modules/Protocols.pmod/Line.pmod.o +lib/pike/modules/Protocols.pmod/NNTP.pmod.o +lib/pike/modules/Protocols.pmod/Ports.pmod.o +lib/pike/modules/Protocols.pmod/TELNET.pmod.o +lib/pike/modules/Remote.pmod/connection.pike +lib/pike/modules/Remote.pmod/Client.pike +lib/pike/modules/Remote.pmod/Server.pike +lib/pike/modules/Remote.pmod/call.pike +lib/pike/modules/Remote.pmod/Client.pike.o +lib/pike/modules/Remote.pmod/context.pike +lib/pike/modules/Remote.pmod/obj.pike +lib/pike/modules/Remote.pmod/remote.h +lib/pike/modules/Remote.pmod/Server.pike.o +lib/pike/modules/Remote.pmod/call.pike.o +lib/pike/modules/Remote.pmod/connection.pike.o +lib/pike/modules/Remote.pmod/context.pike.o +lib/pike/modules/Remote.pmod/obj.pike.o +lib/pike/modules/Sql.pmod/mysql_result.pike +lib/pike/modules/Sql.pmod/msql.pike +lib/pike/modules/Sql.pmod/mysql.pike +lib/pike/modules/Sql.pmod/odbc_result.pike +lib/pike/modules/Sql.pmod/odbc.pike +lib/pike/modules/Sql.pmod/postgres.pike +lib/pike/modules/Sql.pmod/oracle.pike +lib/pike/modules/Sql.pmod/mysql_result.pike.o +lib/pike/modules/Sql.pmod/rsql.pike.o +lib/pike/modules/Sql.pmod/postgres_result.pike +lib/pike/modules/Sql.pmod/rsql.pike +lib/pike/modules/Sql.pmod/sql.pike +lib/pike/modules/Sql.pmod/sql_result.pike +lib/pike/modules/Sql.pmod/sql_util.pmod +lib/pike/modules/Sql.pmod/sybase.pike +lib/pike/modules/Sql.pmod/odbc_result.pike.o +lib/pike/modules/Sql.pmod/postgres_result.pike.o +lib/pike/modules/Sql.pmod/sql_result.pike.o +lib/pike/modules/Sql.pmod/sql_util.pmod.o +lib/pike/modules/Standards.pmod/ASN1.pmod/Decode.pmod.o +lib/pike/modules/Standards.pmod/ASN1.pmod/Decode.pmod +lib/pike/modules/Standards.pmod/ASN1.pmod/Encode.pmod +lib/pike/modules/Standards.pmod/ASN1.pmod/Types.pmod +lib/pike/modules/Standards.pmod/ASN1.pmod/Encode.pmod.o +lib/pike/modules/Standards.pmod/ASN1.pmod/Types.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/Certificate.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/CSR.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/Identifiers.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/DSA.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/Signature.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/PFX.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/RSA.pmod +lib/pike/modules/Standards.pmod/PKCS.pmod/CSR.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/Certificate.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/DSA.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/Identifiers.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/PFX.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/RSA.pmod.o +lib/pike/modules/Standards.pmod/PKCS.pmod/Signature.pmod.o +lib/pike/modules/Stdio.pmod/Terminfo.pmod.o +lib/pike/modules/Stdio.pmod/Readline.pike +lib/pike/modules/Stdio.pmod/Terminfo.pmod +lib/pike/modules/Stdio.pmod/module.pmod +lib/pike/modules/Tools.pmod/Hilfe.pmod.o +lib/pike/modules/Tools.pmod/Hilfe.pmod +lib/pike/modules/Tools.pmod/PEM.pmod +lib/pike/modules/Tools.pmod/X509.pmod +lib/pike/modules/Tools.pmod/_PEM.pmod +lib/pike/modules/Tools.pmod/sed.pmod +lib/pike/modules/Tools.pmod/X509.pmod.o +lib/pike/modules/Tools.pmod/_PEM.pmod.o +lib/pike/modules/Tools.pmod/sed.pmod.o +lib/pike/modules/Yabu.pmod/module.pmod.o +lib/pike/modules/Yabu.pmod/module.pmod +lib/pike/modules/Yabu.pmod/test.pike +lib/pike/modules/Yabu.pmod/test.pike.o +lib/pike/modules/_Image.pmod/module.pmod.o +lib/pike/modules/_Image.pmod/module.pmod +lib/pike/modules/Oracle.pmod.o +lib/pike/modules/Parser.pmod.o +lib/pike/modules/Regexp.pmod.o +lib/pike/modules/Yp.pmod.o +lib/pike/modules/_Charset.pmod.o +lib/pike/modules/_math.pmod.o +lib/pike/modules/call_out.pmod.o +lib/pike/modules/files.pmod.o +lib/pike/modules/sprintf.pmod.o +lib/pike/modules/system.pmod.o +lib/pike/modules/GTK.pmod.o +lib/pike/modules/Array.pmod.o +lib/pike/modules/Colors.pmod.o +lib/pike/modules/Crypto.pmod.o +lib/pike/modules/Function.pmod.o +lib/pike/modules/GDK.pmod.o +lib/pike/modules/GLU.pmod.o +lib/pike/modules/Getopt.pmod.o +lib/pike/modules/Gnome.pmod.o +lib/pike/modules/Process.pmod.o +lib/pike/modules/Program.pmod.o +lib/pike/modules/Simulate.pmod.o +lib/pike/modules/Stack.pmod.o +lib/pike/modules/String.pmod.o +lib/pike/modules/Thread.pmod.o +lib/pike/modules/error.pmod.o +lib/pike/modules/call_out.pmod lib/pike/modules/spider.so lib/pike/modules/sprintf.pmod lib/pike/modules/system.pmod +lib/pike/include/getopt.h +lib/pike/include/array.h +lib/pike/include/fifo.h +lib/pike/include/postgres.h +lib/pike/include/msql.h +lib/pike/include/mysql.h +lib/pike/include/process.h +lib/pike/include/simulate.h +lib/pike/include/sql.h +lib/pike/include/stack.h +lib/pike/include/stdio.h +lib/pike/include/string.h +lib/pike/include/syslog.h +lib/pike/master.pike.in lib/pike/master.pike -share/pike/include/getopt.h -share/pike/include/array.h -share/pike/include/fifo.h -share/pike/include/process.h -share/pike/include/mysql.h -share/pike/include/simulate.h -share/pike/include/sql.h -share/pike/include/stack.h -share/pike/include/stdio.h -share/pike/include/string.h -share/pike/include/syslog.h -share/pike/include/msql.h -share/pike/include/postgres.h -share/pike/modules/ADT.pmod/queue.pike -share/pike/modules/ADT.pmod/struct.pike -share/pike/modules/ADT.pmod/Table.pmod -share/pike/modules/Tools.pmod/Hilfe.pmod -share/pike/modules/Tools.pmod/sed.pmod -share/pike/modules/Tools.pmod/PEM.pmod -share/pike/modules/Tools.pmod/_PEM.pmod -share/pike/modules/Crypto/des3.pike -share/pike/modules/Crypto/des3_cbc.pike -share/pike/modules/Crypto/des_cbc.pike -share/pike/modules/Crypto/idea_cbc.pike -share/pike/modules/Crypto/randomness.pmod -share/pike/modules/Crypto/rsa.pike -share/pike/modules/Crypto/hmac.pike -share/pike/modules/LR.pmod/Grammar_parser.pmod -share/pike/modules/LR.pmod/item.pike -share/pike/modules/LR.pmod/kernel.pike -share/pike/modules/LR.pmod/lr.pike -share/pike/modules/LR.pmod/parser.pike -share/pike/modules/LR.pmod/priority.pike -share/pike/modules/LR.pmod/rule.pike -share/pike/modules/LR.pmod/scanner.pike -share/pike/modules/Sql.pmod/mysql.pike -share/pike/modules/Sql.pmod/mysql_result.pike -share/pike/modules/Sql.pmod/sql.pike -share/pike/modules/Sql.pmod/sql_result.pike -share/pike/modules/Sql.pmod/odbc.pike -share/pike/modules/Sql.pmod/odbc_result.pike -share/pike/modules/Sql.pmod/oracle.pike -share/pike/modules/Sql.pmod/msql.pike -share/pike/modules/Sql.pmod/postgres.pike -share/pike/modules/Sql.pmod/postgres_result.pike -share/pike/modules/Protocols.pmod/X.pmod/db/compose.db -share/pike/modules/Protocols.pmod/X.pmod/db/compose -share/pike/modules/Protocols.pmod/X.pmod/db/convert_compose.pike -share/pike/modules/Protocols.pmod/X.pmod/db/keysyms -share/pike/modules/Protocols.pmod/X.pmod/Atom.pmod -share/pike/modules/Protocols.pmod/X.pmod/AUTHORS -share/pike/modules/Protocols.pmod/X.pmod/Auth.pmod -share/pike/modules/Protocols.pmod/X.pmod/Extensions.pmod -share/pike/modules/Protocols.pmod/X.pmod/Requests.pmod -share/pike/modules/Protocols.pmod/X.pmod/Types.pmod -share/pike/modules/Protocols.pmod/X.pmod/XImage.pmod -share/pike/modules/Protocols.pmod/X.pmod/XTools.pmod -share/pike/modules/Protocols.pmod/X.pmod/Xlib.pmod -share/pike/modules/Protocols.pmod/X.pmod/_Types.pmod -share/pike/modules/Protocols.pmod/X.pmod/_Xlib.pmod -share/pike/modules/Protocols.pmod/X.pmod/error.h -share/pike/modules/Protocols.pmod/X.pmod/keysyms.h -share/pike/modules/Protocols.pmod/X.pmod/my_struct.pmod -share/pike/modules/Protocols.pmod/DNS.pmod -share/pike/modules/Protocols.pmod/NNTP.pmod -share/pike/modules/Protocols.pmod/LPD.pmod -share/pike/modules/Protocols.pmod/SMTP.pmod -share/pike/modules/Protocols.pmod/TELNET.pmod -share/pike/modules/Protocols.pmod/Line.pmod -share/pike/modules/Protocols.pmod/Ident.pmod -share/pike/modules/Protocols.pmod/Ports.pmod -share/pike/modules/Calendar.pmod/Gregorian.pmod -share/pike/modules/Calendar.pmod/ISO.pmod -share/pike/modules/Calendar.pmod/Julian.pmod -share/pike/modules/Calendar.pmod/Orthodox.pmod -share/pike/modules/Calendar.pmod/Swedish.pmod -share/pike/modules/Calendar.pmod/module.pmod -share/pike/modules/Languages.pmod/PLIS.pmod -share/pike/modules/Standards.pmod/ASN1.pmod/Encode.pmod -share/pike/modules/Standards.pmod/ASN1.pmod/Decode.pmod -share/pike/modules/Standards.pmod/ASN1.pmod/Types.pmod -share/pike/modules/Standards.pmod/PKCS.pmod/CSR.pmod -share/pike/modules/Standards.pmod/PKCS.pmod/Certificate.pmod -share/pike/modules/Standards.pmod/PKCS.pmod/Identifiers.pmod -share/pike/modules/Standards.pmod/PKCS.pmod/RSA.pmod -share/pike/modules/Standards.pmod/PKCS.pmod/Signature.pmod -share/pike/modules/Standards.pmod/PKCS.pmod/PFX.pmod -share/pike/modules/Yabu.pmod/module.pmod -share/pike/modules/Yabu.pmod/test.pike -share/pike/modules/Locale.pmod/Charset.pmod -share/pike/modules/Remote.pmod/Client.pike -share/pike/modules/Remote.pmod/Server.pike -share/pike/modules/Remote.pmod/call.pike -share/pike/modules/Remote.pmod/connection.pike -share/pike/modules/Remote.pmod/context.pike -share/pike/modules/Remote.pmod/obj.pike -share/pike/modules/Remote.pmod/remote.h -share/pike/modules/Array.pmod -share/pike/modules/Colors.pmod -share/pike/modules/Crypto.pmod -share/pike/modules/Getopt.pmod -share/pike/modules/Process.pmod -share/pike/modules/Simulate.pmod -share/pike/modules/Stdio.pmod -share/pike/modules/Stack.pmod -share/pike/modules/String.pmod -share/pike/modules/Thread.pmod -share/pike/modules/__builtin.pmod -share/pike/modules/error.pmod -share/pike/master.pike.in +lib/pike/tools/pike.el +lib/pike/master.pike.o @dirrm include/pike +@dirrm lib/pike/modules/ADT.pmod +@dirrm lib/pike/modules/Calendar.pmod +@dirrm lib/pike/modules/Crypto +@dirrm lib/pike/modules/Debug.pmod +@dirrm lib/pike/modules/Filesystem.pmod +@dirrm lib/pike/modules/GTKSupport.pmod +@dirrm lib/pike/modules/Graphics.pmod/Graph.pmod +@dirrm lib/pike/modules/Graphics.pmod +@dirrm lib/pike/modules/LR.pmod +@dirrm lib/pike/modules/Languages.pmod +@dirrm lib/pike/modules/Locale.pmod +@dirrm lib/pike/modules/Protocols.pmod/HTTP.pmod +@dirrm lib/pike/modules/Protocols.pmod/IMAP.pmod +@dirrm lib/pike/modules/Protocols.pmod/X.pmod/db +@dirrm lib/pike/modules/Protocols.pmod/X.pmod +@dirrm lib/pike/modules/Protocols.pmod/IRC.pmod +@dirrm lib/pike/modules/Protocols.pmod/LDAP.pmod +@dirrm lib/pike/modules/Protocols.pmod/LysKOM.pmod +@dirrm lib/pike/modules/Protocols.pmod +@dirrm lib/pike/modules/Remote.pmod +@dirrm lib/pike/modules/Sql.pmod +@dirrm lib/pike/modules/Standards.pmod/ASN1.pmod +@dirrm lib/pike/modules/Standards.pmod/PKCS.pmod +@dirrm lib/pike/modules/Standards.pmod +@dirrm lib/pike/modules/Stdio.pmod +@dirrm lib/pike/modules/Tools.pmod +@dirrm lib/pike/modules/Yabu.pmod +@dirrm lib/pike/modules/_Image.pmod @dirrm lib/pike/modules @dirrm lib/pike/include +@dirrm lib/pike/tools @dirrm lib/pike -@dirrm share/pike/include -@dirrm share/pike/modules/ADT.pmod -@dirrm share/pike/modules/Tools.pmod -@dirrm share/pike/modules/Crypto -@dirrm share/pike/modules/LR.pmod -@dirrm share/pike/modules/Sql.pmod -@dirrm share/pike/modules/Protocols.pmod/X.pmod/db -@dirrm share/pike/modules/Protocols.pmod/X.pmod -@dirrm share/pike/modules/Protocols.pmod -@dirrm share/pike/modules/Calendar.pmod -@dirrm share/pike/modules/Languages.pmod -@dirrm share/pike/modules/Standards.pmod/ASN1.pmod -@dirrm share/pike/modules/Standards.pmod/PKCS.pmod -@dirrm share/pike/modules/Standards.pmod -@dirrm share/pike/modules/Yabu.pmod -@dirrm share/pike/modules/Locale.pmod -@dirrm share/pike/modules/Remote.pmod -@dirrm share/pike/modules -@dirrm share/pike diff -ru ports/lang/pike.orig/scripts/configure.pike ports/lang/pike/scripts/configure.pike --- ports/lang/pike.orig/scripts/configure.pike Sat Aug 26 12:34:16 2000 +++ ports/lang/pike/scripts/configure.pike Mon Sep 18 19:45:28 2000 @@ -17,8 +17,8 @@ MySQL "MySQL database support" OFF \ PostgreSQL "PostgreSQL database support" OFF \ mSQL "mSQL database support" OFF \ +ssl "SSL support" OFF \ 2> /tmp/checklist.tmp.$$ -#ssl "SSL support" OFF \ retval=$? if [ -s /tmp/checklist.tmp.$$ ]; then @@ -86,6 +86,10 @@ echo "CONFIGURE_ARGS+= --with-msql=\${PREFIX}" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc mSQL=1 ;; + \"ssl\") + echo "CONFIGURE_ARGE+= --with-ssleay" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + ssl=1 + ;; esac shift done @@ -111,7 +115,7 @@ echo "CONFIGURE_ARGS+= --without-msql" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc fi if [ -z "$gmp" ]; then - echo "CONFIGURE_ARGS+= --without-gmp" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + echo "CONFIGURE_ARGS+= --without-gmp --without-bignums" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc fi if [ -z "$JPEG" ]; then echo "CONFIGURE_ARGS+= --without-jpeg" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc >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 Sep 18 19:30: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 ADD4537B423 for ; Mon, 18 Sep 2000 19:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA98062; Mon, 18 Sep 2000 19:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id C257137B422 for ; Mon, 18 Sep 2000 19:24:35 -0700 (PDT) Received: (from root@localhost) by mail.westbend.net (8.9.3/8.9.3) id VAA10314; Mon, 18 Sep 2000 21:24:35 -0500 (CDT) (envelope-from admin) Message-Id: <200009190224.VAA10314@mail.westbend.net> Date: Mon, 18 Sep 2000 21:24:35 -0500 (CDT) From: "Scot W. Hetzel" Reply-To: "Scot W. Hetzel" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21383: Update Cyrus-SASL (Maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21383 >Category: ports >Synopsis: Update Cyrus-SASL, Add MySQL & LDAP Authentication >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 Sep 18 19:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 4.1-STABLE i386 >Organization: West Bend Internet >Environment: >Description: Cyrus-SASL 1.5.24 sources changed on Aug 15th -- changed a hard coded value to a variable. Kerberos IV detection fails due to double check on krb_mk_priv (with/without com_err), used cached value from first check for krb_mk_priv. Added addtional pwcheck methods (MySQL & LDAP Authentication). Changed Files: New Files: Makefile files/Sendmail.README files/md5 patches/patch-ag patches/patch-ab patches/patch-ah pkg/INSTALL patches/patch-ai pkg/MESSAGE patches/patch-aj pkg/PLIST patches/patch-ak scripts/configure.sasl This PR also addresses the concerns for the following PRs: PR 21266 - MD5 checksum out of date for cyrus-sasl PR 20887 - LDAP support and fixes for cyrus-sasl [CLOSED] PR 20623 - cyrus-sasl-1.5.24 does not build libkerberos4 >How-To-Repeat: >Fix: Apply the following: diff -ruN cyrus-sasl.orig/Makefile cyrus-sasl/Makefile --- cyrus-sasl.orig/Makefile Sat Aug 19 03:56:57 2000 +++ cyrus-sasl/Makefile Mon Sep 18 20:07:41 2000 @@ -7,6 +7,7 @@ PORTNAME= cyrus-sasl PORTVERSION= 1.5.24 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ ${MASTER_SITE_LOCAL} \ @@ -19,8 +20,6 @@ INSTALLS_SHLIB= yes -.include - Y2K= http://asg.web.cmu.edu/cyrus/imapd/y2k.html MAN3= sasl.3 sasl_authorize_t.3 sasl_callbacks.3 sasl_checkpass.3 \ @@ -32,8 +31,11 @@ sasl_setprop.3 sasl_usererr.3 MAN8= sasldblistusers.8 saslpasswd.8 -USE_AUTOCONF= YES +USE_AUTOMAKE= YES USE_LIBTOOL= YES +AUTOHEADER= autoheader +AUTOMAKE= automake --add-missing --include-deps + CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ --with-plugindir=${PREFIX}/lib/sasl \ --with-dbpath=${PREFIX}/etc/sasldb \ @@ -43,7 +45,12 @@ --with-pwcheck=/var/pwcheck \ --with-rc4=openssl -# JavaSASL is currently Broken +SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ + PREFIX="${PREFIX}" \ + TOUCH="${TOUCH}" \ + MKDIR="${MKDIR}" + +# JavaSASL needs someone to look at to get it to build #JAVADIR= jdk1.1.8 #JAVALIBDIR= ${PREFIX}/${JAVADIR}/lib/i386/green_threads/ @@ -93,12 +100,18 @@ EBONES=${EBONES} \ NOPORTDOCS=${NODOCS} +pre-fetch: + @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.sasl + +pre-configure: + @(cd ${WRKSRC} && ${AUTOHEADER}) + # Create Cyrus user and group pre-install: @${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL post-install: - @${SED} -e "/%%PREFIX%%/s##${PREFIX}#g" ${FILESDIR}/pwcheck.sh \ + @${SED} -e "/%%PREFIX%%/s##${PREFIX}#g" ${FILESDIR}/pwcheck.sh \ > ${PREFIX}/etc/rc.d/pwcheck.sh @${CHMOD} 755 ${PREFIX}/etc/rc.d/pwcheck.sh ${INSTALL} -d -m 700 -o cyrus -g cyrus /var/pwcheck @@ -110,20 +123,19 @@ .for file in ${DOC2} @${INSTALL_DATA} ${WRKSRC}/doc/${file} ${PREFIX}/share/doc/SASL .endfor + @${INSTALL_DATA} ${FILESDIR}/Sendmail.README ${PREFIX}/share/doc .for file in ${HTDOCS} @${INSTALL_DATA} ${WRKSRC}/doc/${file}.html ${PREFIX}/share/doc/SASL/html .endfor .endif + @PKG_PREFIX=${PREFIX} BATCH=${BATCH} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL + @${CAT} ${PKGMESSAGE} -.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) post-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc +.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" -.elif ${PREFIX} != ${LOCALBASE} -# Save PREFIX so that it can be used during make install -.BEGIN: - @echo "PREFIX= ${PREFIX}" > ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc .endif -.include +.include diff -ruN cyrus-sasl.orig/files/Sendmail.README cyrus-sasl/files/Sendmail.README --- cyrus-sasl.orig/files/Sendmail.README Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/files/Sendmail.README Sat Sep 16 11:27:37 2000 @@ -0,0 +1,25 @@ +How to enable SMTP AUTH with FreeBSD default Sendmail 8.11 + +1. Edit /usr/src/usr.sbin/sendmail/Makefile, and change the line: + + LDADD= -lutil -lwrap +into + LDADD+= -lutil -lwrap + + NOTE: This change is in 5.0-CURRENT and will be MFC'd to + 4.1-STABLE later. + +2) Add the following to /etc/make.conf: + +# Add SMTP AUTH support to Sendmail +.if ${.CURDIR} == "/usr/src/usr.sbin/sendmail" +CFLAGS+=-DSASL -I/usr/local/include/sasl -L/usr/local/lib +LDADD+=-lsasl +.endif + +3) Rebuild FreeBSD (make buildworld, ...) + +4) Create /usr/local/lib/sasl/Sendmail.conf with the following. + + pwcheck_method: pwcheck + diff -ruN cyrus-sasl.orig/files/md5 cyrus-sasl/files/md5 --- cyrus-sasl.orig/files/md5 Sat Aug 19 03:56:57 2000 +++ cyrus-sasl/files/md5 Sat Sep 16 11:27:37 2000 @@ -1 +1 @@ -MD5 (cyrus-sasl-1.5.24.tar.gz) = aedc0f8b594e2a13503b375ed78f62b7 +MD5 (cyrus-sasl-1.5.24.tar.gz) = ac3837c071c258b80021325936db2583 diff -ruN cyrus-sasl.orig/patches/patch-ab cyrus-sasl/patches/patch-ab --- cyrus-sasl.orig/patches/patch-ab Sat Aug 19 03:56:58 2000 +++ cyrus-sasl/patches/patch-ab Sat Sep 16 14:01:30 2000 @@ -1,5 +1,5 @@ ---- configure.in.orig Thu Aug 3 14:34:08 2000 -+++ configure.in Thu Aug 3 14:39:24 2000 +--- configure.in.orig Thu Jul 20 21:35:01 2000 ++++ configure.in Sat Sep 16 13:58:02 2000 @@ -66,8 +66,9 @@ dnl check for -R, etc. switch CMU_GUESS_RUNPATH_SWITCH @@ -12,3 +12,112 @@ AM_DISABLE_STATIC +@@ -310,6 +311,88 @@ + fi + AM_CONDITIONAL(PWCHECK, test "$with_pwcheck" != no) + ++dnl MySQL ++AC_ARG_WITH(mysql, [ --with-mysql=PATH enable authentication from MySQL database [no] ], ++ with_mysql=$withval, ++ with_mysql=no) ++ ++if test -z "$with_mysql"; then ++ for mysqlloc in lib/mysql lib ++ do ++ if test -f ${prefix}/${mysqlloc}/libmysqlclient.a; then ++ with_mysql="${prefix}" ++ break ++ elif test -f /usr/local/${mysqlloc}/libmysqlclient.a; then ++ with_mysql="/usr/local" ++ break ++ elif test -f /usr/${mysqlloc}/libmysqlclient.a; then ++ with_mysql="/usr" ++ break ++ fi ++ done ++fi ++ ++LIB_MYSQL="" ++case "$with_mysql" in ++ no) true;; ++ ""|yes) AC_CHECK_LIB(mysqlclient, mysql_select_db, ++ AC_DEFINE(HAVE_MYSQL) ++ LIB_MYSQL="-lmysqlclient", ++ with_mysql=no);; ++ *) if test -d ${with_mysql}/include/mysql; then ++ CPPFLAGS="$CPPFLAGS -I${with_mysql}/include/mysql" ++ else ++ CPPFLAGS="$CPPFLAGS -I${with_mysql}/include" ++ fi ++ if test -d ${with_mysql}/lib/mysql; then ++ LDFLAGS="$LDFLAGS -L${with_mysql}/lib/mysql" ++ fi ++ AC_DEFINE(HAVE_MYSQL) ++ LIB_MYSQL="-lmysqlclient";; ++esac ++AC_SUBST(LIB_MYSQL) ++ ++dnl LDAP ++AC_ARG_WITH(ldap, [ --with-ldap=PATH enable authentication from LDAP [no] ], ++ with_ldap=$withval, ++ with_ldap=no) ++ ++if test -z "$with_ldap"; then ++ for ldaploc in lib/ldap lib ++ do ++ if test -f ${prefix}/${ldaploc}/libldap.a; then ++ with_ldap="${prefix}" ++ break ++ elif test -f /usr/local/${ldaploc}/libldap.a; then ++ with_ldap="/usr/local" ++ break ++ elif test -f /usr/${ldaploc}/libldap.a; then ++ with_ldap="/usr" ++ break ++ fi ++ done ++fi ++ ++LIB_LDAP="" ++case "$with_ldap" in ++ no) true;; ++ ""|yes) AC_CHECK_LIB(ldap, ldap_open, ++ AC_DEFINE(HAVE_LDAP) ++ LIB_LDAP="-lldap -llber", ++ with_ldap=no);; ++ *) if test -d ${with_ldap}/include/ldap; then ++ CPPFLAGS="${CPPFLAGS} -I${with_ldap}/include/ldap" ++ else ++ CPPFLAGS="${CPPFLAGS} -I${with_ldap}/include" ++ fi ++ if test -d ${with_ldap}/lib/ldap; then ++ LDFLAGS="$LDFLAGS -L${with_ldap}/lib/ldap" ++ fi ++ AC_DEFINE(HAVE_LDAP) ++ LIB_LDAP="-lldap -llber";; ++esac ++AC_SUBST(LIB_LDAP) ++ + dnl CRAM-MD5 + AC_ARG_ENABLE(cram, [ --enable-cram enable CRAM-MD5 authentication [yes] ], + cram=$enableval, +@@ -434,11 +517,15 @@ + fi + + if test "$with_des" != no; then ++ case "$host_os" in ++ freebsd*) ++ COM_ERR="-lcom_err" ++ ;; ++ esac + AC_CHECK_HEADER(krb.h, +- AC_CHECK_LIB(krb, krb_mk_priv, COM_ERR="", +- AC_CHECK_LIB(krb, krb_mk_priv, COM_ERR="-lcom_err", +- AC_WARN(No Kerberos V4 found); krb4=no, -ldes -lcom_err), +- -ldes), ++ AC_CHECK_LIB(krb, krb_mk_priv,:, ++ AC_WARN(No Kerberos V4 found); krb4=no, ++ -ldes $COM_ERR), + AC_WARN(No Kerberos V4 found); krb4=no) + else + AC_WARN(No DES library found for Kerberos V4 support) diff -ruN cyrus-sasl.orig/patches/patch-ag cyrus-sasl/patches/patch-ag --- cyrus-sasl.orig/patches/patch-ag Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/patches/patch-ag Sat Sep 16 11:27:56 2000 @@ -0,0 +1,15 @@ +--- acconfig.h.orig Wed Jul 5 11:59:25 2000 ++++ acconfig.h Fri Sep 15 20:56:28 2000 +@@ -84,6 +84,12 @@ + /* do we have PAM for plaintext password checking? */ + #undef HAVE_PAM + ++/* do we have MySQL for plaintext password checking? */ ++#undef HAVE_MYSQL ++ ++/* do we have LDAP for plaintext password checking? */ ++#undef HAVE_LDAP ++ + /* what flavor of GSSAPI are we using? */ + #undef HAVE_GSS_C_NT_HOSTBASED_SERVICE + diff -ruN cyrus-sasl.orig/patches/patch-ah cyrus-sasl/patches/patch-ah --- cyrus-sasl.orig/patches/patch-ah Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/patches/patch-ah Sat Sep 16 11:27:56 2000 @@ -0,0 +1,9 @@ +--- lib/Makefile.am.orig Thu Jul 20 21:35:02 2000 ++++ lib/Makefile.am Fri Sep 15 20:56:28 2000 +@@ -53,5 +53,5 @@ + EXTRA_libsasl_la_SOURCES = db_none.c db_ndbm.c db_gdbm.c db_berkeley.c db_testw32.c + libsasl_la_LDFLAGS = -version-info $(sasl_version) + libsasl_la_DEPENDENCIES = $(SASL_DB_BACKEND) @LTLIBOBJS@ +-libsasl_la_LIBADD = @LTLIBOBJS@ $(SASL_DB_BACKEND) $(SASL_DB_LIB) $(SASL_DL_LIB) $(PLAIN_LIBS) ++libsasl_la_LIBADD = @LTLIBOBJS@ $(SASL_DB_BACKEND) $(SASL_DB_LIB) $(SASL_DL_LIB) $(PLAIN_LIBS) ${LIB_LDAP} ${LIB_MYSQL} + # PLAIN_LIBS are linked in for sasl_checkpass diff -ruN cyrus-sasl.orig/patches/patch-ai cyrus-sasl/patches/patch-ai --- cyrus-sasl.orig/patches/patch-ai Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/patches/patch-ai Sat Sep 16 21:08:02 2000 @@ -0,0 +1,357 @@ +--- lib/checkpw.c.orig Wed Jul 19 20:24:13 2000 ++++ lib/checkpw.c Sat Sep 16 21:07:33 2000 +@@ -95,10 +95,19 @@ + #include + #ifdef HAVE_UNISTD_H + #include +-#endif ++#endif /* HAVE_UNISTD_H */ + + extern int errno; +-#endif ++#endif /* HAVE_PWCHECK */ ++ ++#ifdef HAVE_MYSQL ++#include ++#endif /* HAVE_MYSQL */ ++ ++#ifdef HAVE_LDAP ++#include ++#include ++#endif /* HAVE_LDAP */ + + #ifdef HAVE_KRB + +@@ -170,12 +179,20 @@ + memcpy (&temp_key, "kerberos", 8); + des_fixup_key_parity (&temp_key); + des_key_sched (&temp_key, schedule); ++#ifdef __FreeBSD__ ++ des_cbc_cksum ((const unsigned char *)password, &ivec, passlen, schedule, &ivec); ++#else + des_cbc_cksum ((des_cblock *)password, &ivec, passlen, schedule, &ivec); ++#endif + + memcpy (&temp_key, &ivec, sizeof temp_key); + des_fixup_key_parity (&temp_key); + des_key_sched (&temp_key, schedule); ++#ifdef __FreeBSD__ ++ des_cbc_cksum ((const unsigned char *)password, key, passlen, schedule, &ivec); ++#else + des_cbc_cksum ((des_cblock *)password, key, passlen, schedule, &ivec); ++#endif + + des_fixup_key_parity (key); + +@@ -210,10 +227,17 @@ + return (str); + } + ++#ifdef __FreeBSD__ ++static int use_key(const char *user __attribute__((unused)), ++ char *instance __attribute__((unused)), ++ const char *realm __attribute__((unused)), ++ const void *key, des_cblock *returned_key) ++#else + static int use_key(char *user __attribute__((unused)), + char *instance __attribute__((unused)), + char *realm __attribute__((unused)), + void *key, des_cblock *returned_key) ++#endif + { + memcpy (returned_key, key, sizeof(des_cblock)); + return 0; +@@ -838,7 +862,7 @@ + + + /* pwcheck daemon-authenticated login */ +-static int pwcheck_verify_password(sasl_conn_t *conn, ++static int pwcheck_verify_password(sasl_conn_t *conn __attribute__((unused)), + const char *userid, + const char *passwd, + const char *service __attribute__((unused)), +@@ -853,8 +877,10 @@ + static char response[1024]; + int start, n; + char pwpath[1024]; ++#if 0 /* Not used */ + sasl_getopt_t *getopt; + void *context; ++#endif + + if (reply) { *reply = NULL; } + +@@ -902,6 +928,260 @@ + + #endif + ++#ifdef HAVE_MYSQL ++/* DMZ mysql auth 12/29/1999 ++ * Updated to 1.5.24 by SWH 09/12/2000 ++ */ ++#ifdef USE_CRYPT_PASSWORD ++#define QUERY_STRING "select %s from %s where %s = '%s' and %s = password('%s')" ++#else ++#define QUERY_STRING "select %s from %s where %s = '%s' and %s = '%s'" ++#endif ++ ++static int mysql_verify_password(sasl_conn_t *conn, ++ const char *userid, ++ const char *password, ++ const char *service __attribute__((unused)), ++ const char *user_realm __attribute__((unused)), ++ const char **reply) ++{ ++ unsigned int numrows; ++ MYSQL mysql,*sock; ++ MYSQL_RES *result; ++ char qbuf[300]; ++ char *db_user="", ++ *db_passwd="", ++ *db_host="", ++ *db_uidcol="", ++ *db_pwcol="", ++ *db_database="", ++ *db_table=""; ++ sasl_getopt_t *getopt; ++ void *context; ++ ++ if (!userid || !password) { ++ return SASL_BADPARAM; ++ } ++ if (reply) { *reply = NULL; } ++ ++ /* check to see if the user configured a mysqluser/passwd/host/etc */ ++ if (_sasl_getcallback(conn, SASL_CB_GETOPT, &getopt, &context) == SASL_OK) { ++ getopt(context, NULL, "mysql_user", (const char **) &db_user, NULL); ++ if (!db_user) db_user = ""; ++ getopt(context, NULL, "mysql_passwd", (const char **) &db_passwd, NULL); ++ if (!db_passwd) db_passwd = ""; ++ getopt(context, NULL, "mysql_host", (const char **) &db_host, NULL); ++ if (!db_host) db_host = ""; ++ getopt(context, NULL, "mysql_database", (const char **) &db_database, NULL); ++ if (!db_database) db_database = ""; ++ getopt(context, NULL, "mysql_table", (const char **) &db_table, NULL); ++ if (!db_table) db_table = ""; ++ getopt(context, NULL, "mysql_uidcol", (const char **) &db_uidcol, NULL); ++ if (!db_uidcol) db_uidcol = ""; ++ getopt(context, NULL, "mysql_pwdcol", (const char **) &db_pwcol, NULL); ++ if (!db_pwcol) db_pwcol = ""; ++ } ++ ++ if (!(sock = mysql_connect(&mysql,db_host,db_user,db_passwd))) ++ { ++ if (reply) { *reply = "cannot connect to MySQL server"; } ++ return SASL_FAIL; ++ } ++ ++ if (mysql_select_db(sock,db_database) < 0) ++ { ++ mysql_close(sock); ++ if (reply) { *reply = "cannot select MySQL database"; } ++ return SASL_FAIL; ++ } ++ /* select DB_UIDCOL from DB_TABLE where DB_UIDCOL = 'userid' AND DB_PWCOL = password('password') */ ++ sprintf(qbuf,QUERY_STRING,db_uidcol,db_table,db_uidcol,userid,db_pwcol,password); ++ if (mysql_query(sock,qbuf) < 0 || !(result=mysql_store_result(sock))) ++ { ++ mysql_close(sock); ++ return SASL_FAIL; ++ } ++ ++ if (result) //There were some rows found ++ { ++ if ((numrows = mysql_affected_rows(&mysql)) != 1) ++ { ++ mysql_free_result(result); ++ mysql_close(sock); ++ if ((numrows > 1) && (reply)) { *reply = "Detected duplicate entries for user"; } ++ return SASL_BADAUTH; ++ } else { ++ mysql_free_result(result); ++ mysql_close(sock); ++ return SASL_OK; ++ } ++ } ++ mysql_free_result(result); ++ mysql_close(sock); ++ return SASL_BADAUTH; ++} ++#endif /* HAVE_MYSQL */ ++ ++#ifdef HAVE_LDAP ++/* simon@surf.org.uk LDAP auth 07/11/2000 ++ * Updated to 1.5.24 by SWH 09/12/2000 ++ */ ++ ++#define LDAP_SERVER "localhost" ++#define LDAP_BASEDN "o=JOFA, c=UK" ++#define LDAP_UIDATTR "uid" ++ ++#ifndef TRUE ++# define TRUE 1 ++# define FALSE 0 ++#endif ++ ++static int ldap_isdigits(char *value) ++{ ++ char *ptr; ++ int num = TRUE; ++ ++ for (ptr = value; *ptr != '\0' && num != FALSE; ptr++) { ++ if (!isdigit(*ptr)) ++ num = FALSE; ++ } ++ ++ return num; ++} ++ ++static int ldap_verify_password(sasl_conn_t *conn, ++ const char *userid, ++ const char *password, ++ const char *service __attribute__((unused)), ++ const char *user_realm __attribute__((unused)), ++ const char **reply) ++{ ++ ++ LDAP *ld; ++ LDAPMessage *result; ++ LDAPMessage *entry; ++ char *attrs[2]; ++ char filter[200]; ++ char *dn, ++ *ldap_server="", ++ *ldap_basedn="", ++ *ldap_uidattr="", ++ *port_num=""; ++ int ldap_port = LDAP_PORT; ++ int count; ++ sasl_getopt_t *getopt; ++ void *context; ++ ++ /* If the password is NULL, reject the login... ++ * Otherwise the bind will succed as a reference bind. Not good... ++ */ ++ if (strcmp(password,"") == 0) ++ { ++ return SASL_BADPARAM; ++ } ++ ++ if (reply) { *reply = NULL; } ++ ++ /* check to see if the user configured a mysqluser/passwd/host/etc */ ++ if (_sasl_getcallback(conn, SASL_CB_GETOPT, &getopt, &context) == SASL_OK) { ++ getopt(context, NULL, "ldap_server", (const char **) &ldap_server, NULL); ++ if (!ldap_server) ldap_server = LDAP_SERVER; ++ getopt(context, NULL, "ldap_basedn", (const char **) &ldap_basedn, NULL); ++ if (!ldap_basedn) { ++ if (reply) { *reply = "ldap_basedn not defined"; } ++ return SASL_BADPARAM; ++ } ++ getopt(context, NULL, "ldap_uidattr", (const char **) &ldap_uidattr, NULL); ++ if (!ldap_uidattr) ldap_uidattr = LDAP_UIDATTR; ++ getopt(context, NULL, "ldap_port", (const char **) &port_num, NULL); ++ if (!port_num) { ++ ldap_port = LDAP_PORT; ++ } else if (!ldap_isdigits(port_num)) { ++ if (reply) { *reply = "ldap_port - invalid value"; } ++ return SASL_BADPARAM; ++ } else { ++ ldap_port = atoi(port_num); ++ } ++ } ++ ++ /* Open the LDAP connection. */ ++ if ((ld = ldap_open(ldap_server, ldap_port)) == NULL) ++ { ++ if (reply) { *reply = "cannot connect to LDAP server"; } ++ return SASL_FAIL; ++ } ++ ++ /* Bind anonymously so that you can find the DN of the appropriate user. */ ++ if (ldap_simple_bind_s(ld,"","") != LDAP_SUCCESS) ++ { ++ ldap_unbind(ld); ++ if (reply) { *reply = "cannot bind to LDAP server"; } ++ return SASL_FAIL; ++ } ++ ++ /* Generate a filter that will return the entry with a matching UID */ ++ sprintf(filter,"(%s=%s)", ldap_uidattr,userid); ++ ++ /* Just return country...This doesn't actually matter, since we will ++ * not read the attributes and values, only the DN ++ */ ++ attrs[0] = "c"; ++ attrs[1] = NULL; ++ ++ /* Perform the search... */ ++ if (ldap_search_s(ld,ldap_basedn,LDAP_SCOPE_SUBTREE,filter,attrs,1,&result) != LDAP_SUCCESS ) ++ { ++ ldap_unbind(ld); ++ return SASL_BADAUTH; ++ } ++ ++ /* If the entry count is not equal to one, either the UID was not unique or ++ * there was no match ++ */ ++ if ((count = ldap_count_entries(ld,result)) != 1) ++ { ++ ldap_msgfree(result); ++ ldap_unbind(ld); ++ if ((count > 1) && (reply)) { *reply = "Detected duplicate entries for user"; } ++ return SASL_BADAUTH; ++ } ++ ++ /* Get the first entry */ ++ if ((entry = ldap_first_entry(ld,result)) == NULL) ++ { ++ ldap_msgfree(result); ++ ldap_unbind(ld); ++ return SASL_BADAUTH; ++ } ++ ++ /* Get the DN of the entry */ ++ if ((dn = ldap_get_dn(ld,entry)) == NULL) ++ { ++ ldap_msgfree(entry); ++ ldap_unbind(ld); ++ return SASL_BADAUTH; ++ } ++ ++ /* Now bind as the DN with the password supplied earlier... ++ * Successful bind means the password was correct, otherwise the ++ * password is invalid. ++ */ ++ if (ldap_simple_bind_s(ld,dn,(char *)password) != LDAP_SUCCESS) ++ { ++ free(dn); ++ ldap_msgfree(entry); ++ ldap_unbind(ld); ++ return SASL_BADAUTH; ++ } ++ ++ free(dn); ++ ldap_msgfree(entry); ++ ldap_unbind(ld); ++ return SASL_OK; ++} ++ ++#endif /* HAVE_LDAP */ ++ + struct sasl_verify_password_s _sasl_verify_password[] = { + { "sasldb", &sasldb_verify_password }, + #ifdef HAVE_KRB +@@ -921,6 +1201,12 @@ + #endif + #ifdef HAVE_PWCHECK + { "pwcheck", &pwcheck_verify_password }, ++#endif ++#ifdef HAVE_MYSQL ++ { "mysql", &mysql_verify_password }, ++#endif ++#ifdef HAVE_LDAP ++ { "ldap", &ldap_verify_password }, + #endif + { NULL, NULL } + }; diff -ruN cyrus-sasl.orig/patches/patch-aj cyrus-sasl/patches/patch-aj --- cyrus-sasl.orig/patches/patch-aj Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/patches/patch-aj Sat Sep 16 11:27:56 2000 @@ -0,0 +1,46 @@ +--- doc/sysadmin.html.orig Wed Jul 12 21:59:51 2000 ++++ doc/sysadmin.html Fri Sep 15 20:56:28 2000 +@@ -171,6 +171,43 @@ +
pwcheck
checks passwords with the use of a seperate, + helper daemon. needs to be documented.

+ ++

mysql
A MySQL database can be used for plaintext ++ password checking by setting "pwcheck_method" to "mysql".

++ ++

The following SASL options are used for MySQL Authentication:

++ ++

++
mysql_user: <user>
++
mysql_passwd: <cleartext pw>
++
mysql_host: <host>
++
mysql_database: <database>
++
mysql_table: <table>
++
mysql_uidcol: <username col>
++
mysql_pwdcol: <password col>
++
++ ++

MySQL pwcheck_method created by David Matthew Zendzian ++ the original patch may be found at http://www.dmzs.com/~dmz/projects/cyrus/.

++ ++

ldap
A LDAP server can be used for plaintext password ++ checking by setting "pwcheck_method" to "ldap".

++ ++

The following SASL options are used for LDAP Authentication:

++ ++

++
ldap_server: <LDAP Server [localhost]> ++
ldap_basedn: <LDAP base dn> ++
ldap_uidattr: <LDAP uid attribute [uid]> ++
ldap_port: <LDAP port [389]> ++
++ ++

It is a requirement that "ldap_basedn" be set to the appropriate ++ value for your site
++ (ex. ldap_basedn: o=surf, c=UK)

++ ++

LDAP pwcheck_method created by Simon@surf.org.uk ++ the original patch may be found at http://www.surf.org.uk/.

++ +

write your own
Last, but not least, the most flexible + method of authentication for PLAIN is to write your own. If you do + so, any application that calls the "sasl_checkpass()" diff -ruN cyrus-sasl.orig/patches/patch-ak cyrus-sasl/patches/patch-ak --- cyrus-sasl.orig/patches/patch-ak Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/patches/patch-ak Sat Sep 16 18:50:20 2000 @@ -0,0 +1,30 @@ +--- plugins/kerberos4.c.orig Wed Apr 19 11:18:48 2000 ++++ plugins/kerberos4.c Sat Sep 16 18:49:20 2000 +@@ -696,8 +696,13 @@ + + /* decrypt; verify checksum */ + ++#ifdef __FreeBSD__ ++ des_pcbc_encrypt((const unsigned char *)in, ++ (unsigned char *)in, ++#else + des_pcbc_encrypt((des_cblock *)in, + (des_cblock *)in, ++#endif + clientinlen, + text->init_keysched, + &text->session, +@@ -1192,8 +1197,13 @@ + } + sout[len]=0; + ++#ifdef __FreeBSD__ ++ des_pcbc_encrypt((const unsigned char *)sout, ++ (unsigned char *)sout, ++#else + des_pcbc_encrypt((des_cblock *)sout, + (des_cblock *)sout, ++#endif + len, + text->init_keysched, + (des_cblock *)text->session, diff -ruN cyrus-sasl.orig/pkg/INSTALL cyrus-sasl/pkg/INSTALL --- cyrus-sasl.orig/pkg/INSTALL Sun Jan 23 23:22:21 2000 +++ cyrus-sasl/pkg/INSTALL Mon Sep 18 20:53:06 2000 @@ -7,11 +7,15 @@ #set -vx +PKG_BATCH=${BATCH:=NO} + +PKG_PREFIX=${PKG_PREFIX:=/usr/local} + # # create 'cyrus' user and group before installing # -create() { +create_user() { if [ ! -x /usr/sbin/pw ]; then echo "*** Please add a user and a group named \`cyrus' before installing this package." exit 69 @@ -65,9 +69,31 @@ fi } +create_sasldb() { + if [ ! -f ${PGK_PREFIX}/etc/sasldb.db ]; then + touch ${PGK_PREFIX}/etc/sasldb.db + chown cyrus:mail ${PGK_PREFIX}/etc/sasldb.db + chmod 640 ${PGK_PREFIX}/etc/sasldb.db + fi +} + +# This should really be installed by Sendmail + +sendmail_conf() { + if [ ! -f ${PKG_PREFIX}/lib/sasl/Sendmail.conf ]; then + echo "pwcheck_method: pwcheck" > ${PKG_PREFIX}/lib/sasl/Sendmail.conf + fi +} + case $2 in PRE-INSTALL) - create + create_user + ;; + POST-INSTALL) + if [ "${PKG_BATCH}" = "NO" ]; then + create_sasldb + sendmail_conf + fi ;; esac diff -ruN cyrus-sasl.orig/pkg/MESSAGE cyrus-sasl/pkg/MESSAGE --- cyrus-sasl.orig/pkg/MESSAGE Sun Jan 23 23:22:21 2000 +++ cyrus-sasl/pkg/MESSAGE Sat Sep 16 11:27:56 2000 @@ -1,4 +1,15 @@ -Start the pwcheck program to have clients use the SASL libraries -as a non-root user: +PREFIX/etc/cyrusdb.db now needs to be created +before applications that depend on SASL are used. - /usr/local/etc/rc.d/pwcheck.sh [start|stop] + su cyrus + PREFIX/sbin/saslpasswd -c userid + +You will also need to start the pwcheck daemon: + + PREFIX/etc/rc.d/pwcheck.sh start + +Read the documentation in PREFIX/share/doc/SASL + +How to enable SMTP AUTH with system Sendmail 8.11 - Sendmail.README + +How to use LDAP or MySQL for passwords - see html/sysadmin.html diff -ruN cyrus-sasl.orig/pkg/PLIST cyrus-sasl/pkg/PLIST --- cyrus-sasl.orig/pkg/PLIST Sat Jun 17 03:56:22 2000 +++ cyrus-sasl/pkg/PLIST Mon Sep 18 20:51:56 2000 @@ -1,5 +1,7 @@ @unexec %D/etc/rc.d/pwcheck.sh stop ; echo "pwcheck stopped." etc/rc.d/pwcheck.sh +@comment remove ../etc/sasldb.db only if it exists and has a zero size. +@unexec [ -f %D/etc/sasldb.db -a ! -s %D/etc/sasldb.db ] && rm %D/etc/sasldb.db include/sasl/hmac-md5.h include/sasl/md5.h include/sasl/md5global.h @@ -31,7 +33,10 @@ lib/sasl/libplain.a lib/sasl/libplain.so lib/sasl/libplain.so.1 -@dirrm lib/sasl +@comment Sendmail.conf should be installed/uninstalled by Sendmail 8.11. +@comment We install it here because Sendmail 8.11 is in the base system. +@unexec echo "pwcheck_method: pwcheck" > %B/Sendmail.conf.tmp +@unexec if cmp -s %B/Sendmail.conf %B/Sendmail.conf.tmp; then rm -f %B/Sendmail.conf %B/Sendmail.conf.tmp; else rm -f %B/Sendmail.conf.tmp fi sbin/sasldblistusers sbin/saslpasswd sbin/pwcheck @@ -41,6 +46,7 @@ %%NOPORTDOCS%%share/doc/SASL/INSTALL %%NOPORTDOCS%%share/doc/SASL/NEWS %%NOPORTDOCS%%share/doc/SASL/README +%%NOPORTDOCS%%share/doc/SASL/Sendmail.README %%NOPORTDOCS%%share/doc/SASL/TODO %%NOPORTDOCS%%share/doc/SASL/draft-leach-digest-sasl-05.txt %%NOPORTDOCS%%share/doc/SASL/draft-newman-auth-scram-03.txt @@ -55,12 +61,13 @@ %%NOPORTDOCS%%share/doc/SASL/html/sysadmin.html %%NOPORTDOCS%%@dirrm share/doc/SASL/html %%NOPORTDOCS%%@dirrm share/doc/SASL +@dirrm lib/sasl @mode u=rwx,go= @cwd /var @exec mkdir pwcheck @exec chown cyrus:cyrus pwcheck @exec chmod go= pwcheck -@comment This file gets create by the pwcheck program -@unexec rm -f pwcheck/pwcheck +@comment This file gets created by the pwcheck program +@unexec rm -f /var/pwcheck/pwcheck @dirrm pwcheck @cwd %%PREFIX%% diff -ruN cyrus-sasl.orig/scripts/configure.sasl cyrus-sasl/scripts/configure.sasl --- cyrus-sasl.orig/scripts/configure.sasl Wed Dec 31 18:00:00 1969 +++ cyrus-sasl/scripts/configure.sasl Sat Sep 16 13:18:00 2000 @@ -0,0 +1,59 @@ +#!/bin/sh +# $FreeBSD$ + +if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then + exit +fi + +if [ "${BATCH}" ]; then + exit +else + /usr/bin/dialog --title "Additional pwcheck methods" --clear \ + --checklist "\n\ +Please select desired options:" -1 -1 16 \ +MySQL "MySQL password Authentication" OFF \ +OpenLDAP "OpenLDAP password Authentication" OFF \ +2> /tmp/checklist.tmp.$$ + + retval=$? + + if [ -s /tmp/checklist.tmp.$$ ]; then + set `cat /tmp/checklist.tmp.$$` + fi + rm -f /tmp/checklist.tmp.$$ + + case $retval in + 0) if [ -z "$*" ]; then + echo "Nothing selected" + fi + ;; + 1) echo "Cancel pressed." + exit 1 + ;; + esac +fi + +${MKDIR} ${WRKDIRPREFIX}${CURDIR} +exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + +echo "PREFIX= ${PREFIX}" + +while [ "$1" ]; do + case $1 in + \"MySQL\") + echo "LIB_DEPENDS+= mysqlclient.6:\${PORTSDIR}/databases/mysql322-client" + echo "CONFIGURE_ARGS+=--with-mysql=\${PREFIX}" + ;; + \"OpenLDAP\") + echo "LIB_DEPENDS+= ldap.1:\${PORTSDIR}/net/openldap" + echo "LIB_DEPENDS+= lber.1:\${PORTSDIR}/net/openldap" + echo "CONFIGURE_ARGS+=--with-ldap=\${PREFIX}" + ;; + *) + echo "Invalid option(s): $*" > /dev/stderr + rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + exit 1 + ;; + esac + shift +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 Mon Sep 18 19:48: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 0F10537B423; Mon, 18 Sep 2000 19:48:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA00420; Mon, 18 Sep 2000 19:48:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 19:48:49 -0700 (PDT) From: Message-Id: <200009190248.TAA00420@freefall.freebsd.org> To: missnglnk@sneakerz.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21266: MD5 checksum out of date for cyrus-sasl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MD5 checksum out of date for cyrus-sasl State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 19:48:28 PDT 2000 State-Changed-Why: Superceded by ports/21383 (maintainer) http://www.freebsd.org/cgi/query-pr.cgi?pr=21266 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 19:50: 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 9A05437B423; Mon, 18 Sep 2000 19:49:59 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA00620; Mon, 18 Sep 2000 19:49:59 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 19:49:59 -0700 (PDT) From: Message-Id: <200009190249.TAA00620@freefall.freebsd.org> To: olgeni@uli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20623: cyrus-sasl-1.5.24 does not build libkerberos4.la Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cyrus-sasl-1.5.24 does not build libkerberos4.la State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Mon Sep 18 19:49:27 PDT 2000 State-Changed-Why: Superceded by ports/21383 from maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=20623 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 19:50: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 62C7237B424; Mon, 18 Sep 2000 19:50:42 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA00807; Mon, 18 Sep 2000 19:50:42 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 19:50:42 -0700 (PDT) From: Message-Id: <200009190250.TAA00807@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21383: Update Cyrus-SASL, Add MySQL & LDAP Authentication Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Cyrus-SASL, Add MySQL & LDAP Authentication Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 19:50:12 PDT 2000 Responsible-Changed-Why: As promised, I will deal with presently http://www.freebsd.org/cgi/query-pr.cgi?pr=21383 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 20: 1: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 71AB137B422; Mon, 18 Sep 2000 20:01:50 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA02476; Mon, 18 Sep 2000 20:01:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 18 Sep 2000 20:01:50 -0700 (PDT) From: Message-Id: <200009190301.UAA02476@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/20491: AbiWord-0.7.10 fails to compile on FreeBSD-4.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: AbiWord-0.7.10 fails to compile on FreeBSD-4.1 Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Mon Sep 18 20:01:24 PDT 2000 Responsible-Changed-Why: I'll take a look at this.. was trying to build it the other night.. http://www.freebsd.org/cgi/query-pr.cgi?pr=20491 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 20: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 773B737B43C for ; Mon, 18 Sep 2000 20:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA10376; Mon, 18 Sep 2000 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from c1030098-a.wtrlo1.ia.home.com (c1030098-a.wtrlo1.ia.home.com [24.14.126.45]) by hub.freebsd.org (Postfix) with ESMTP id 2CFDA37B422 for ; Mon, 18 Sep 2000 20:49:07 -0700 (PDT) Received: (from mdharnois@localhost) by c1030098-a.wtrlo1.ia.home.com (8.11.0/8.11.0) id e8J3n6g01435; Mon, 18 Sep 2000 22:49:06 -0500 (CDT) (envelope-from mdharnois) Message-Id: <200009190349.e8J3n6g01435@c1030098-a.wtrlo1.ia.home.com> Date: Mon, 18 Sep 2000 22:49:06 -0500 (CDT) From: mdharnois@home.com Reply-To: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21386: compile fails on -current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21386 >Category: ports >Synopsis: compile fails on -current >Confidential: yes >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 18 20:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: i386, -current >Description: compile fails on -current In file included from /usr/ports/emulators/vmware2/work/vmware-distrib/vmmon-only/freebsd/driver.c:275: /sys/i386/isa/intr_machdep.h:146: syntax error before `*' /sys/i386/isa/intr_machdep.h:146: warning: type defaults to `int' in declaration of `intr_handler' /sys/i386/isa/intr_machdep.h:146: warning: data definition has no type or storage class /sys/i386/isa/intr_machdep.h:213: syntax error before `driver_intr_t' /sys/i386/isa/intr_machdep.h:214: warning: function declaration isn't a prototype /sys/i386/isa/intr_machdep.h:215: syntax error before `driver_intr_t' /sys/i386/isa/intr_machdep.h:215: warning: function declaration isn't a prototype /sys/i386/isa/intr_machdep.h:223: syntax error before `driver_intr_t' /sys/i386/isa/intr_machdep.h:224: warning: function declaration isn't a prototype /sys/i386/isa/intr_machdep.h:146: warning: array `intr_handler' assumed to have one element >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 Sep 18 21: 0: 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 D241037B424 for ; Mon, 18 Sep 2000 21:00:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA11491; Mon, 18 Sep 2000 21:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from geni.knu.ac.kr (geni.kyungpook.ac.kr [155.230.174.179]) by hub.freebsd.org (Postfix) with ESMTP id E3D9D37B422 for ; Mon, 18 Sep 2000 20:58:18 -0700 (PDT) Received: (from hdcho@localhost) by geni.knu.ac.kr (8.9.3/8.9.3) id MAA86528; Tue, 19 Sep 2000 12:57:01 +0900 (KST) (envelope-from hdcho) Message-Id: <200009190357.MAA86528@geni.knu.ac.kr> Date: Tue, 19 Sep 2000 12:57:01 +0900 (KST) From: hdcho@geni.knu.ac.kr Reply-To: hdcho@geni.knu.ac.kr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21387: g2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21387 >Category: ports >Synopsis: g2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 18 21:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Huidae Cho >Release: FreeBSD 3.3-RELEASE i386 >Organization: Hydro Eng. Lab., Kyungpook National University, South Korea >Environment: Architecture: i386 Requirements: crossgo32-djgpp2-2.01, g770523b.zip >Description: This package installs g2c libraries and f77 wrapper for DJGPP V2 crossgo32 crosscompiler. >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: # # devel/crossgo32-f77/ # devel/crossgo32-f77/pkg # devel/crossgo32-f77/pkg/PLIST # devel/crossgo32-f77/pkg/COMMENT # devel/crossgo32-f77/pkg/DESCR # devel/crossgo32-f77/files # devel/crossgo32-f77/files/md5 # devel/crossgo32-f77/Makefile # devel/crossgo32-f77/README.html # devel/crossgo32-f77/patches # devel/crossgo32-f77/patches/f77_Makefile.awk # echo c - devel/crossgo32-f77/ mkdir -p devel/crossgo32-f77/ > /dev/null 2>&1 echo c - devel/crossgo32-f77/pkg mkdir -p devel/crossgo32-f77/pkg > /dev/null 2>&1 echo x - devel/crossgo32-f77/pkg/PLIST sed 's/^X//' >devel/crossgo32-f77/pkg/PLIST << 'END-of-devel/crossgo32-f77/pkg/PLIST' Xbin/i386-go32-f77 Xi386-go32/bin/f77 Xi386-go32/include/f2c.h Xi386-go32/lib/libf2c.a END-of-devel/crossgo32-f77/pkg/PLIST echo x - devel/crossgo32-f77/pkg/COMMENT sed 's/^X//' >devel/crossgo32-f77/pkg/COMMENT << 'END-of-devel/crossgo32-f77/pkg/COMMENT' Xg2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler END-of-devel/crossgo32-f77/pkg/COMMENT echo x - devel/crossgo32-f77/pkg/DESCR sed 's/^X//' >devel/crossgo32-f77/pkg/DESCR << 'END-of-devel/crossgo32-f77/pkg/DESCR' XThis package installs g2c 0.5.23 libraries and f77 wrapper for XDJGPP V2 crossgo32 crosscompiler. X XSimple usage: X i386-go32-f77 -o fortran.exe fortran.f X XThe above command create the MS-DOS executable fortran.exe file from Xfortran.f fortran77 source file. X XEnjoy. X XHuidae Cho Xhdcho@geni.knu.ac.kr END-of-devel/crossgo32-f77/pkg/DESCR echo c - devel/crossgo32-f77/files mkdir -p devel/crossgo32-f77/files > /dev/null 2>&1 echo x - devel/crossgo32-f77/files/md5 sed 's/^X//' >devel/crossgo32-f77/files/md5 << 'END-of-devel/crossgo32-f77/files/md5' XMD5 (g772952b.zip) = 66eaf1479778aa0aebaea882a914b286 END-of-devel/crossgo32-f77/files/md5 echo x - devel/crossgo32-f77/Makefile sed 's/^X//' >devel/crossgo32-f77/Makefile << 'END-of-devel/crossgo32-f77/Makefile' X# New ports collection makefile for: crossgo32-f77 X# Version required: 2.95.2 X# Date created: 19 September 2000 X# Whom: Huidae Cho X# X# $FreeBSD$ X# X XDISTNAME= crossgo32-f77-2.95.2 XCATEGORIES= devel XDISTFILES= X XMAINTAINER= hdcho@geni.knu.ac.kr X XFETCH_DEPENDS= :${PORTSDIR}/lang/f77:fetch XBUILD_DEPENDS= ${PREFIX}/bin/unzip:${PORTSDIR}/archivers/unzip XRUN_DEPENDS= ${PREFIX}/i386-go32/bin/gcc:${PORTSDIR}/devel/crossgo32-djgpp2 \ X ${PREFIX}/bin/fc:${PORTSDIR}/lang/f77 X XGCCVERSION= 2.952 XG77= g772952b XG77PKGSITE= ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu X XUSE_ZIP= X Xdo-fetch: X @if [ ! -f ${DISTDIR}/${G77}.zip ]; then \ X ${FETCH_CMD} -o ${DISTDIR}/${G77}.zip \ X ${G77PKGSITE}/${G77}.zip; \ X fi X Xdo-extract: X @${MKDIR} ${WRKDIR} X @${CP} -Rp ${PORTSDIR}/lang/f77 ${WRKDIR} X @(cd ${WRKDIR}/f77; ${MAKE} extract) X @(${MKDIR} ${WRKDIR}/${G77}; cd ${WRKDIR}/${G77}; \ X ${EXTRACT_CMD} ${DISTDIR}/${G77}.zip \ X lib/gcc-lib/djgpp/${GCCVERSION}/libg2c.a \ X lib/gcc-lib/djgpp/${GCCVERSION}/include/g2c.h) Xdo-patch: X @(cd ${WRKDIR}/f77; \ X ${CP} ${MAKEFILE} ${MAKEFILE}.orig; \ X ${AWK} -f ${PATCHDIR}/f77_Makefile.awk \ X ${MAKEFILE}.orig > ${MAKEFILE}) X Xdo-build: X @(cd ${WRKDIR}/f77; ${MAKE} build) X Xdo-install: X ${INSTALL_DATA} \ X ${WRKDIR}/${G77}/lib/gcc-lib/djgpp/${GCCVERSION}/libg2c.a \ X ${PREFIX}/i386-go32/lib/libf2c.a X ${INSTALL_DATA} \ X ${WRKDIR}/${G77}/lib/gcc-lib/djgpp/${GCCVERSION}/include/g2c.h \ X ${PREFIX}/i386-go32/include/f2c.h X @(cd ${WRKDIR}/f77/work/f77*; \ X ${INSTALL_PROGRAM} f77 ${PREFIX}/i386-go32/bin/f77; \ X ${CP} ${PREFIX}/i386-go32/bin/f77 ${PREFIX}/bin/i386-go32-f77) X X.include END-of-devel/crossgo32-f77/Makefile echo x - devel/crossgo32-f77/README.html sed 's/^X//' >devel/crossgo32-f77/README.html << 'END-of-devel/crossgo32-f77/README.html' X X The FreeBSD Ports Collection (devel/crossgo32-f77) X

The FreeBSD Ports Collection ("devel/crossgo32-f77")


X X X

You are now in the directory for the port "devel/crossgo32-f77" (package name "crossgo32-f77-0.5.23"). X X

This is the one-line description for this port: X X


Xg2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler X


X X

Please read the file "pkg/DESCR" for a Xlonger description. X X

Go to the top of the ports tree for Xa summary on how to use the ports collection. X X

XThis port will fetch "f77-0.3" source and "g770523b.zip" file. X

XThis port requires package(s) "unzip-5.40" to build. X

XThis port requires package(s) "crossgo32-1.3 crossgo32-djgpp2-2.01" to run. X X


X Go up one level X| X Go to top of ports tree X X END-of-devel/crossgo32-f77/README.html echo c - devel/crossgo32-f77/patches mkdir -p devel/crossgo32-f77/patches > /dev/null 2>&1 echo x - devel/crossgo32-f77/patches/f77_Makefile.awk sed 's/^X//' >devel/crossgo32-f77/patches/f77_Makefile.awk << 'END-of-devel/crossgo32-f77/patches/f77_Makefile.awk' XBEGIN {i=0} X X/^MAKE_ARGS=/ {i=1 X gsub("^MAKE_ARGS","MAKE_ARG")} X X/^[A-Z]/ {if($1!="MAKE_ARG="&&i){ X i=0 X print \ X"MAKE_ARGS= ${MAKE_ARG}\" \\\n"\ X" -DF2C_INCLUDEDIR='\\\"-I/usr/local/i386-go32/include\\\"' \\\n"\ X" -DF2C_LIBDIR='\\\"-I/usr/local/i386-go32/lib\\\"' \\\n"\ X" -DCC_COMMAND='\\\"/usr/local/bin/i386-go32-gcc\\\"'\"\n"}} X X {print} END-of-devel/crossgo32-f77/patches/f77_Makefile.awk 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 Mon Sep 18 21:26:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id 29D4F37B422; Mon, 18 Sep 2000 21:26:53 -0700 (PDT) Received: by peorth.iteration.net (Postfix, from userid 1001) id D054557319; Mon, 18 Sep 2000 23:27:08 -0500 (CDT) Date: Mon, 18 Sep 2000 23:27:08 -0500 From: "Michael C . Wu" To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21377: update ports/chinese/xcin25 with the author's patches Message-ID: <20000918232708.A37391@peorth.iteration.net> Reply-To: "Michael C . Wu" Mail-Followup-To: "Michael C . Wu" , ade@FreeBSD.org, freebsd-ports@FreeBSD.org References: <200009182347.QAA71905@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="opJtzjQTFsWo+cga" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009182347.QAA71905@freefall.freebsd.org>; from ade@FreeBSD.org on Mon, Sep 18, 2000 at 04:47:52PM -0700 X-FreeBSD-Header: This is a subliminal message from the vast FreeBSD conspiracy project. X-Operating-System: FreeBSD peorth.iteration.net 4.1-STABLE FreeBSD 4.1-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Sep 18, 2000 at 04:47:52PM -0700, ade@FreeBSD.org scribbled: | In a word. No. I am not just adding a > 800Kb file in the | patches directory. This is why we have the PATCHFILES | and PATCH_SITES directives in ports/Mk/bsd.port.mk | Responsible-Changed-From-To: freebsd-ports->ade | Responsible-Changed-By: ade | Responsible-Changed-When: Mon Sep 18 16:44:53 PDT 2000 | Responsible-Changed-Why: | I'll take care of this.. "explanations" are more interesting on irc :) Oops, that was stupid of me. Here is the patch to the port in the attachment. :) It also includes md5 changes. -- I guess I have to buy you dinner@Jardin Cordonas? -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="chinese_xcin25.patch" diff -urN xcin25/Makefile xcin25.new/Makefile --- xcin25/Makefile Fri Aug 25 00:19:47 2000 +++ xcin25.new/Makefile Mon Sep 18 23:18:35 2000 @@ -11,6 +11,10 @@ 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 + MAINTAINER= keith@freebsd.sinica.edu.tw LIB_DEPENDS= tabe.0:${PORTSDIR}/chinese/libtabe \ diff -urN xcin25/files/md5 xcin25.new/files/md5 --- xcin25/files/md5 Fri Aug 25 00:19:48 2000 +++ xcin25.new/files/md5 Mon Sep 18 23:19:36 2000 @@ -1 +1,2 @@ MD5 (xcin-2.5.2-pre5.tar.gz) = 4fd07ab343f4027a2b3e87b277d0b451 +MD5 (xcin-2.5.2.pre5.diff3.gz) = 22eb30e0776d144e5b04b8882f56c036 --opJtzjQTFsWo+cga-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 21: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 86E1A37B424 for ; Mon, 18 Sep 2000 21:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA17273; Mon, 18 Sep 2000 21:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from epsilon.lucida.qc.ca (epsilon.lucida.qc.ca [216.95.146.6]) by hub.freebsd.org (Postfix) with SMTP id 13A6C37B424 for ; Mon, 18 Sep 2000 21:29:39 -0700 (PDT) Received: (qmail 85457 invoked by uid 1000); 19 Sep 2000 04:29:38 -0000 Message-Id: <20000919042938.85456.qmail@epsilon.lucida.qc.ca> Date: 19 Sep 2000 04:29:38 -0000 From: matt@LUCIDA.QC.CA Reply-To: matt@LUCIDA.QC.CA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21388: MAINTAINER UPDATE: ports/net/mmucl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21388 >Category: ports >Synopsis: Version update of ports/net/mmucl to 1.4.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: Mon Sep 18 21:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matt Heckaman >Release: FreeBSD 4.1-STABLE i386 >Organization: Lucida Communications >Environment: FreeBSD 3.x/4.x ports-current. >Description: This is a unified diff to update the port net/mmucl to version 1.4.1 from my original submission of 1.4.0. >How-To-Repeat: N/A >Fix: diff -Nru mmucl.orig/Makefile mmucl/Makefile --- mmucl.orig/Makefile Sat Sep 16 00:21:20 2000 +++ mmucl/Makefile Mon Sep 18 23:25:16 2000 @@ -6,7 +6,7 @@ # PORTNAME= mmucl -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= net MASTER_SITES= http://download.sourceforge.net/mmucl/ diff -Nru mmucl.orig/files/md5 mmucl/files/md5 --- mmucl.orig/files/md5 Sat Sep 16 00:21:20 2000 +++ mmucl/files/md5 Mon Sep 18 23:25:35 2000 @@ -1 +1 @@ -MD5 (mmucl-1.4.0.tar.gz) = 72c777348a1f48353786e10dc5ee5fef +MD5 (mmucl-1.4.1.tar.gz) = 906dab028c72767d2647dc162864f730 diff -Nru mmucl.orig/patches/patch-aa mmucl/patches/patch-aa --- mmucl.orig/patches/patch-aa Sat Sep 16 00:21:21 2000 +++ mmucl/patches/patch-aa Mon Sep 18 23:29:09 2000 @@ -1,5 +1,5 @@ ---- Makefile.orig Fri Jul 28 04:29:06 2000 -+++ Makefile Fri Jul 28 04:31:02 2000 +--- Makefile.orig Mon Sep 18 23:28:22 2000 ++++ Makefile Mon Sep 18 23:28:45 2000 @@ -3,7 +3,7 @@ # Mmucl installs itself under BASE_DIR @@ -18,30 +18,3 @@ # Location of install -@@ -34,17 +34,19 @@ - - .PHONY: install clean gzip zip dist rpm test - -+all: mmucl -+ - install: mmucl - - $(INSTALL) -d $(LIB_DIR)/lib $(LIB_DIR)/interface $(LIB_DIR)/images - $(INSTALL) -d $(BIN_DIR) $(INFO_DIR) -- $(INSTALL) -m 0664 lib/*.tcl $(LIB_DIR)/lib -- $(INSTALL) -m 0664 images/*.gif $(LIB_DIR)/images -- $(INSTALL) -m 0664 interface/*.tcl $(LIB_DIR)/interface -- $(INSTALL) -m 0664 .tkconf $(LIB_DIR) -- $(INSTALL) -m 0775 mmucl $(BIN_DIR) -- $(INSTALL) -m 0664 mmucl.info $(INFO_DIR) -- $(INSTALL_INFO) mmucl.info --info-dir=$(INFO_DIR) -+ $(INSTALL) -cm 0644 lib/*.tcl $(LIB_DIR)/lib -+ $(INSTALL) -cm 0644 images/*.gif $(LIB_DIR)/images -+ $(INSTALL) -cm 0644 interface/*.tcl $(LIB_DIR)/interface -+ $(INSTALL) -cm 0644 .tkconf $(LIB_DIR) -+ $(INSTALL) -cm 0755 mmucl $(BIN_DIR) -+ $(INSTALL) -cm 0644 mmucl.info $(INFO_DIR) -+ $(INSTALL_INFO) $(INFO_DIR)/mmucl.info --info-dir=$(INFO_DIR) - - mmucl: Makefile init - echo "#! /bin/sh" > mmucl diff -Nru mmucl.orig/pkg/PLIST mmucl/pkg/PLIST --- mmucl.orig/pkg/PLIST Sat Sep 16 00:21:21 2000 +++ mmucl/pkg/PLIST Mon Sep 18 23:26:52 2000 @@ -31,12 +31,12 @@ @dirrm lib/mmucl/lib lib/mmucl/.tkconf @dirrm lib/mmucl -share/doc/mmucl-1.4.0/examples/Arithon -share/doc/mmucl-1.4.0/examples/edit.tcl -share/doc/mmucl-1.4.0/examples/map.tcl -share/doc/mmucl-1.4.0/examples/mmucl.rc -@dirrm share/doc/mmucl-1.4.0/examples -share/doc/mmucl-1.4.0/CHANGES -share/doc/mmucl-1.4.0/FAQ -share/doc/mmucl-1.4.0/README -@dirrm share/doc/mmucl-1.4.0 +share/doc/mmucl-1.4.1/examples/Arithon +share/doc/mmucl-1.4.1/examples/edit.tcl +share/doc/mmucl-1.4.1/examples/map.tcl +share/doc/mmucl-1.4.1/examples/mmucl.rc +@dirrm share/doc/mmucl-1.4.1/examples +share/doc/mmucl-1.4.1/CHANGES +share/doc/mmucl-1.4.1/FAQ +share/doc/mmucl-1.4.1/README +@dirrm share/doc/mmucl-1.4.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 Sep 18 21:40: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 60E9A37B422 for ; Mon, 18 Sep 2000 21:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA18424; Mon, 18 Sep 2000 21:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from geni.knu.ac.kr (geni.kyungpook.ac.kr [155.230.174.179]) by hub.freebsd.org (Postfix) with ESMTP id 7C9D637B424 for ; Mon, 18 Sep 2000 21:34:01 -0700 (PDT) Received: (from hdcho@localhost) by geni.knu.ac.kr (8.9.3/8.9.3) id NAA89379; Tue, 19 Sep 2000 13:33:19 +0900 (KST) (envelope-from hdcho) Message-Id: <200009190433.NAA89379@geni.knu.ac.kr> Date: Tue, 19 Sep 2000 13:33:19 +0900 (KST) From: hdcho@geni.knu.ac.kr Reply-To: hdcho@geni.knu.ac.kr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21389: g2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21389 >Category: ports >Synopsis: g2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 18 21:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Huidae Cho >Release: FreeBSD 3.3-RELEASE i386 >Organization: Hydro Eng. Lab., Kyungpook National University, South Korea >Environment: Architecture: i386 Requirements: crossgo32-djgpp2-2.01, g772952b.zip >Description: Resend PR to correct some info. This package installs g2c libraries and f77 wrapper for DJGPP V2 crossgo32 crosscompiler. >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: # # devel/crossgo32-f77/ # devel/crossgo32-f77/pkg # devel/crossgo32-f77/pkg/PLIST # devel/crossgo32-f77/pkg/COMMENT # devel/crossgo32-f77/pkg/DESCR # devel/crossgo32-f77/files # devel/crossgo32-f77/files/md5 # devel/crossgo32-f77/Makefile # devel/crossgo32-f77/README.html # devel/crossgo32-f77/patches # devel/crossgo32-f77/patches/f77_Makefile.awk # echo c - devel/crossgo32-f77/ mkdir -p devel/crossgo32-f77/ > /dev/null 2>&1 echo c - devel/crossgo32-f77/pkg mkdir -p devel/crossgo32-f77/pkg > /dev/null 2>&1 echo x - devel/crossgo32-f77/pkg/PLIST sed 's/^X//' >devel/crossgo32-f77/pkg/PLIST << 'END-of-devel/crossgo32-f77/pkg/PLIST' Xbin/i386-go32-f77 Xi386-go32/bin/f77 Xi386-go32/include/f2c.h Xi386-go32/lib/libf2c.a END-of-devel/crossgo32-f77/pkg/PLIST echo x - devel/crossgo32-f77/pkg/COMMENT sed 's/^X//' >devel/crossgo32-f77/pkg/COMMENT << 'END-of-devel/crossgo32-f77/pkg/COMMENT' Xg2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler END-of-devel/crossgo32-f77/pkg/COMMENT echo x - devel/crossgo32-f77/pkg/DESCR sed 's/^X//' >devel/crossgo32-f77/pkg/DESCR << 'END-of-devel/crossgo32-f77/pkg/DESCR' XThis package installs g2c libraries and f77 wrapper for DJGPP V2 Xcrossgo32 crosscompiler. X XSimple usage: X i386-go32-f77 -o fortran.exe fortran.f X XThe above command creates the MS-DOS executable fortran.exe file from Xfortran.f fortran77 source file. X XEnjoy. X XHuidae Cho Xhdcho@geni.knu.ac.kr END-of-devel/crossgo32-f77/pkg/DESCR echo c - devel/crossgo32-f77/files mkdir -p devel/crossgo32-f77/files > /dev/null 2>&1 echo x - devel/crossgo32-f77/files/md5 sed 's/^X//' >devel/crossgo32-f77/files/md5 << 'END-of-devel/crossgo32-f77/files/md5' XMD5 (g772952b.zip) = 66eaf1479778aa0aebaea882a914b286 END-of-devel/crossgo32-f77/files/md5 echo x - devel/crossgo32-f77/Makefile sed 's/^X//' >devel/crossgo32-f77/Makefile << 'END-of-devel/crossgo32-f77/Makefile' X# New ports collection makefile for: crossgo32-f77 X# Version required: 2.95.2 X# Date created: 19 September 2000 X# Whom: Huidae Cho X# X# $FreeBSD$ X# X XDISTNAME= crossgo32-f77-2.95.2 XCATEGORIES= devel XDISTFILES= X XMAINTAINER= hdcho@geni.knu.ac.kr X XFETCH_DEPENDS= :${PORTSDIR}/lang/f77:fetch XBUILD_DEPENDS= ${PREFIX}/bin/unzip:${PORTSDIR}/archivers/unzip XRUN_DEPENDS= ${PREFIX}/i386-go32/bin/gcc:${PORTSDIR}/devel/crossgo32-djgpp2 \ X ${PREFIX}/bin/fc:${PORTSDIR}/lang/f77 X XGCCVERSION= 2.952 XG77= g772952b XG77PKGSITE= ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2gnu X XUSE_ZIP= X Xdo-fetch: X @if [ ! -f ${DISTDIR}/${G77}.zip ]; then \ X ${FETCH_CMD} -o ${DISTDIR}/${G77}.zip \ X ${G77PKGSITE}/${G77}.zip; \ X fi X Xdo-extract: X @${MKDIR} ${WRKDIR} X @${CP} -Rp ${PORTSDIR}/lang/f77 ${WRKDIR} X @(cd ${WRKDIR}/f77; ${MAKE} extract) X @(${MKDIR} ${WRKDIR}/${G77}; cd ${WRKDIR}/${G77}; \ X ${EXTRACT_CMD} ${DISTDIR}/${G77}.zip \ X lib/gcc-lib/djgpp/${GCCVERSION}/libg2c.a \ X lib/gcc-lib/djgpp/${GCCVERSION}/include/g2c.h) Xdo-patch: X @(cd ${WRKDIR}/f77; \ X ${CP} ${MAKEFILE} ${MAKEFILE}.orig; \ X ${AWK} -f ${PATCHDIR}/f77_Makefile.awk \ X ${MAKEFILE}.orig > ${MAKEFILE}) X Xdo-build: X @(cd ${WRKDIR}/f77; ${MAKE} build) X Xdo-install: X ${INSTALL_DATA} \ X ${WRKDIR}/${G77}/lib/gcc-lib/djgpp/${GCCVERSION}/libg2c.a \ X ${PREFIX}/i386-go32/lib/libf2c.a X ${INSTALL_DATA} \ X ${WRKDIR}/${G77}/lib/gcc-lib/djgpp/${GCCVERSION}/include/g2c.h \ X ${PREFIX}/i386-go32/include/f2c.h X @(cd ${WRKDIR}/f77/work/f77*; \ X ${INSTALL_PROGRAM} f77 ${PREFIX}/i386-go32/bin/f77; \ X ${CP} ${PREFIX}/i386-go32/bin/f77 ${PREFIX}/bin/i386-go32-f77) X X.include END-of-devel/crossgo32-f77/Makefile echo x - devel/crossgo32-f77/README.html sed 's/^X//' >devel/crossgo32-f77/README.html << 'END-of-devel/crossgo32-f77/README.html' X X The FreeBSD Ports Collection (devel/crossgo32-f77) X

The FreeBSD Ports Collection ("devel/crossgo32-f77")


X X X

You are now in the directory for the port "devel/crossgo32-f77" (package name "crossgo32-f77-2.95.2"). X X

This is the one-line description for this port: X X


Xg2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler X


X X

Please read the file "pkg/DESCR" for a Xlonger description. X X

Go to the top of the ports tree for Xa summary on how to use the ports collection. X X

XThis port will fetch "lang/f77" source and "g772952b.zip" file. X

XThis port requires package(s) "unzip" to build. X

XThis port requires package(s) "crossgo32 crossgo32-djgpp2" to run. X X


X Go up one level X| X Go to top of ports tree X X END-of-devel/crossgo32-f77/README.html echo c - devel/crossgo32-f77/patches mkdir -p devel/crossgo32-f77/patches > /dev/null 2>&1 echo x - devel/crossgo32-f77/patches/f77_Makefile.awk sed 's/^X//' >devel/crossgo32-f77/patches/f77_Makefile.awk << 'END-of-devel/crossgo32-f77/patches/f77_Makefile.awk' XBEGIN {i=0} X X/^MAKE_ARGS=/ {i=1 X gsub("^MAKE_ARGS","MAKE_ARG")} X X/^[A-Z]/ {if($1!="MAKE_ARG="&&i){ X i=0 X print \ X"MAKE_ARGS= ${MAKE_ARG}\" \\\n"\ X" -DF2C_INCLUDEDIR='\\\"-I/usr/local/i386-go32/include\\\"' \\\n"\ X" -DF2C_LIBDIR='\\\"-I/usr/local/i386-go32/lib\\\"' \\\n"\ X" -DCC_COMMAND='\\\"/usr/local/bin/i386-go32-gcc\\\"'\"\n"}} X X {print} END-of-devel/crossgo32-f77/patches/f77_Makefile.awk 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 Mon Sep 18 21:44:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 2CD7437B422 for ; Mon, 18 Sep 2000 21:44:58 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 0244F1A25; Mon, 18 Sep 2000 23:40:52 -0500 (EST) Date: Mon, 18 Sep 2000 23:40:52 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21380: portlint is stupid. Message-ID: <20000918234052.O35550@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009190030.RAA79490@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: <200009190030.RAA79490@freefall.freebsd.org>; from des@ofug.org on Mon, Sep 18, 2000 at 05:30:01PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 18, 2000 at 05:30:01PM -0700, Dag-Erling Smorgrav wrote: > Oh, and need I add that this breaks addport? Not really. addport has a -v option to ignore this. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 21:45: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 004CE37B424; Mon, 18 Sep 2000 21:45:45 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA19195; Mon, 18 Sep 2000 21:45:44 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Mon, 18 Sep 2000 21:45:44 -0700 (PDT) From: Message-Id: <200009190445.VAA19195@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/21380: portlint is stupid. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: portlint is stupid. Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: will Responsible-Changed-When: Mon Sep 18 21:45:13 PDT 2000 Responsible-Changed-Why: Over to maintainer. If Michael consents, I can perform the fix myself. http://www.freebsd.org/cgi/query-pr.cgi?pr=21380 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 21:55: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 0F75637B423; Mon, 18 Sep 2000 21:55:48 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA20455; Mon, 18 Sep 2000 21:55:48 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Mon, 18 Sep 2000 21:55:48 -0700 (PDT) From: Message-Id: <200009190455.VAA20455@freefall.freebsd.org> To: matt@LUCIDA.QC.CA, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21388: Version update of ports/net/mmucl to 1.4.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Version update of ports/net/mmucl to 1.4.1 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Mon Sep 18 21:55:33 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21388 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 18 22:30: 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 5A37A37B42C for ; Mon, 18 Sep 2000 22:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA29043; Mon, 18 Sep 2000 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id BF77B37B42C; Mon, 18 Sep 2000 22:25:18 -0700 (PDT) Message-Id: <20000919052518.BF77B37B42C@hub.freebsd.org> Date: Mon, 18 Sep 2000 22:25:18 -0700 (PDT) From: gmarco@giovannelli.it To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21390: Update ports misc/xtail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21390 >Category: ports >Synopsis: Update ports misc/xtail >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 Sep 18 22:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gianmarco Giovannelli >Release: FreeBSD 4.1-STABLE >Organization: Private >Environment: FreeBSD gmarco.ablia.org 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Sep 18 20:54:39 CEST 2000 gmarco@gmarco.ablia.org:/usr/obj/usr/src/sys/GMARCO i386 >Description: This is uuencoded patch to update xtail from xtail 0.1 (release '89 :-) to the current one. >How-To-Repeat: >Fix: begin 644 xtail.patch M9&EF9B`M'1A:6PO36%K969I;&4)1G)I($%P65S"BM0051#2$1)4CT**TA!4U]#3TY&24=54D4]"7EE'1A M:6PM,BXQ+G1ABD@/2`R930W,3=C-3DQ83)C8F)D-&%E8C8S9#`P8S@W M83!C8@ID:69F("UR=4X@>'1A:6PO<&%T8VAE'1A:6PO<&%T8VAE'1A:6PN;F5W M+W!A=&-H97,O<&%T8V@M86(*+2TM('AT86EL+W!A=&-H97,O<&%T8V@M86() M1G)I($%PPHM+2`@("!I9B`H'1A:6PO<&%T8VAE'1A:6PO<&%T M8VAE'1A:6PN,2YO2!A(&QI2!M;V1I9FEE9"!F:6QE2!#5%),+4,I('1O('-T;W`*+2`N25(@>'1A:6P@ M+@HM("Y32"!3144@04Q33PHM('1A:6PH,2D*9&EF9B`MRelease-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 Sep 18 23: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 9588237B423 for ; Mon, 18 Sep 2000 23:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA39386; Mon, 18 Sep 2000 23:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from vortex.jcmax.com (vortex.jcmax.com [204.69.248.1]) by hub.freebsd.org (Postfix) with ESMTP id 6A9EF37B422 for ; Mon, 18 Sep 2000 23:30:19 -0700 (PDT) Received: from plasma.jcmax.com (plasma.jcmax.com [204.69.248.13]) by vortex.jcmax.com (8.9.3/8.9.3) with ESMTP id CAA14684 for ; Tue, 19 Sep 2000 02:30:18 -0400 (EDT) (envelope-from cr@jcmax.com) Received: (from cr@localhost) by plasma.jcmax.com (8.9.3/8.9.3) id CAA03563; Tue, 19 Sep 2000 02:30:18 -0400 (EDT) (envelope-from cr@jcmax.com) Message-Id: <200009190630.CAA03563@plasma.jcmax.com> Date: Tue, 19 Sep 2000 02:30:18 -0400 (EDT) From: Cyrus Rahman Reply-To: cr@jcmax.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21392: New port: converters/tnef - Unpack data from Microsoft's ms-tnef format Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21392 >Category: ports >Synopsis: New port: converters/tnef - Unpack data from Microsoft's ms-tnef format >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 Sep 18 23:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Cyrus Rahman >Release: FreeBSD 4.1-STABLE i386 >Organization: J.C. Max, Inc. >Environment: FreeBSD 4.1-STABLE i386 >Description: This program decodes those annoying application/ms-tnef MIME attachments that Microsoft mail servers helpfully use to encapsulate your already MIME encoded attachments. Due to the proliferation of Microsoft Outlook and Exchange mail servers, more and more mail is encapsulated into this format. The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view them. >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: # # tnef # tnef/files # tnef/files/md5 # tnef/Makefile # tnef/pkg # tnef/pkg/COMMENT # tnef/pkg/PLIST # tnef/pkg/DESCR # echo c - tnef mkdir -p tnef > /dev/null 2>&1 echo c - tnef/files mkdir -p tnef/files > /dev/null 2>&1 echo x - tnef/files/md5 sed 's/^X//' >tnef/files/md5 << 'END-of-tnef/files/md5' XMD5 (tnef-0.12.tar.gz) = 443a005d7655a6c131bf95a785f06f51 END-of-tnef/files/md5 echo x - tnef/Makefile sed 's/^X//' >tnef/Makefile << 'END-of-tnef/Makefile' X# New ports collection makefile for: tnef X# Date created: 19 September 2000 X# Whom: Cyrus Rahman X# X# $FreeBSD$ X# X XPORTNAME= tnef XPORTVERSION= 0.12 XCATEGORIES= converters mail XMASTER_SITES= http://world.std.com/~damned/ X XMAINTAINER= cr@jcmax.com X XGNU_CONFIGURE= yes X X.include END-of-tnef/Makefile echo c - tnef/pkg mkdir -p tnef/pkg > /dev/null 2>&1 echo x - tnef/pkg/COMMENT sed 's/^X//' >tnef/pkg/COMMENT << 'END-of-tnef/pkg/COMMENT' XUnpack data encapsulated into Microsoft Outlook's application/ms-tnef format END-of-tnef/pkg/COMMENT echo x - tnef/pkg/PLIST sed 's/^X//' >tnef/pkg/PLIST << 'END-of-tnef/pkg/PLIST' Xbin/tnef END-of-tnef/pkg/PLIST echo x - tnef/pkg/DESCR sed 's/^X//' >tnef/pkg/DESCR << 'END-of-tnef/pkg/DESCR' XThis program decodes those annoying application/ms-tnef MIME attachments that XMicrosoft mail servers helpfully use to encapsulate your already MIME encoded Xattachments. X XDue to the proliferation of Microsoft Outlook and Exchange mail servers, Xmore and more mail is encapsulated into this format. X XThe TNEF program allows one to unpack the attachments which were encapsulated Xinto the TNEF attachment. Thus alleviating the need to use Microsoft Outlook Xto view them. X XWritten by: Mark Simpson XBased upon work by: Thomas Boll X XWWW: http://world.std.com/~damned/software.html X X- Cyrus Rahman Xcr@jcmax.com END-of-tnef/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 Tue Sep 19 0:19:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id A63B137B422 for ; Tue, 19 Sep 2000 00:19:55 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id JAA15622; Tue, 19 Sep 2000 09:19:52 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21380: portlint is stupid. References: <200009190030.RAA79490@freefall.freebsd.org> <20000918234052.O35550@radon.gryphonsoft.com> From: Dag-Erling Smorgrav Date: 19 Sep 2000 09:19:51 +0200 In-Reply-To: Will Andrews's message of "Mon, 18 Sep 2000 23:40:52 -0500" Message-ID: Lines: 10 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews writes: > On Mon, Sep 18, 2000 at 05:30:01PM -0700, Dag-Erling Smorgrav wrote: > > Oh, and need I add that this breaks addport? > Not really. addport has a -v option to ignore this. The -v option also drops lots of other tests. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 0:39:25 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 BD24637B423 for ; Tue, 19 Sep 2000 00:39:23 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id DAA11869; Tue, 19 Sep 2000 03:39:19 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8J7dEp41380; Tue, 19 Sep 2000 00:39:14 -0700 (PDT) (envelope-from asami) To: Martin Blapp Cc: ports@freebsd.org Subject: Re: ports/21129: French staroffice52 port (fwd) References: From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 19 Sep 2000 00:38:52 -0700 In-Reply-To: Martin Blapp's message of "Sun, 17 Sep 2000 16:35:47 +0200 (CEST)" 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: Martin Blapp * I've reworked the port and now someone should commit it. * But can we place it under /usr/ports/french/${port} ? I'd prefer * this because we have already /usr/ports/german/${port} Yes, I think that is fine. I will have to create a french category first, so please wait until it is done. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 0: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 79AD637B423 for ; Tue, 19 Sep 2000 00:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA50827; Tue, 19 Sep 2000 00:40: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 5974437B424 for ; Tue, 19 Sep 2000 00:36:41 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13bHxE-0001kp-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Sep 2000 09:36:36 +0200 Message-Id: Date: Tue, 19 Sep 2000 09:36:36 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21393: Update port: sysutils/lavaps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21393 >Category: ports >Synopsis: Update port: sysutils/lavaps >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 Sep 19 00:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 3.5-STABLE i386 >Organization: Electric Genetics >Environment: >Description: Update port sysutils/lavaps from 1.13 to 1.15 No changes to port besides version number and MD5 signature. >How-To-Repeat: >Fix: diff -ruN lavaps.bak/Makefile lavaps/Makefile --- lavaps.bak/Makefile Sat Jul 8 03:04:15 2000 +++ lavaps/Makefile Mon Sep 18 18:33:30 2000 @@ -6,7 +6,7 @@ # PORTNAME= lavaps -PORTVERSION= 1.13 +PORTVERSION= 1.15 CATEGORIES= sysutils MASTER_SITES= http://www.isi.edu/~johnh/SOFTWARE/LAVAPS/ diff -ruN lavaps.bak/files/md5 lavaps/files/md5 --- lavaps.bak/files/md5 Sat Jul 8 03:04:15 2000 +++ lavaps/files/md5 Mon Sep 18 18:34:54 2000 @@ -1 +1 @@ -MD5 (lavaps-1.13.tar.gz) = 09545db5fd2632e3fb350d6d8e8c3522 +MD5 (lavaps-1.15.tar.gz) = 36ad2964f9462a6f8194a9ced31680fc >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 Sep 19 0:45:33 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 BA28C37B63A; Tue, 19 Sep 2000 00:45:29 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id DAA29054; Tue, 19 Sep 2000 03:45:27 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8J7jPl41448; Tue, 19 Sep 2000 00:45:25 -0700 (PDT) (envelope-from asami) To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: Extending BSD.[local,x11].dist to include GNU gettext locale dirs References: <39C65823.42396A80@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 19 Sep 2000 00:45:21 -0700 In-Reply-To: Maxim Sobolev's message of "Mon, 18 Sep 2000 21:00:03 +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 * We have a large number (~200) of ports that use GNU gettext, which implies that * they are sharing some common directories. Currently this behaviour is * unhandled, so maintainer of each particular port is free to deal with it * whatever he likes. The better solution of course is to add those dirs into our * mtree files, so the wheel will not have to be reinvented each time. The only * problem, though, is a lack of complete list of those dirs, which means that * potentially each softwar author can name his favorite locale whatever he likes, * however most of them are smart enough to choose common 2-letter names * optionally followed by encoding name. Following patch was prepared by greeping * all PLISTs, so it should be fairly complete. I would like to know what do * people think about it. * + locale * + af * + LC_MESSAGES Thanks for doing all the work, but I have one question: what's the difference between "nls" and "locale" dirs? We already have a whole bunch of subdirectories under "nls" already, can't those be used? Also, are these "locale" directories only used by gettext (and gettext-using ports)? If so, maybe we should implement something to let gettext supply an additional mtree file (I can work out a bsd.port.mk patch for this) so they don't have to be on everyone's system. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 0:47:13 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 2FD3337B423 for ; Tue, 19 Sep 2000 00:47:09 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id DAA27876; Tue, 19 Sep 2000 03:47:04 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8J7kpK41459; Tue, 19 Sep 2000 00:46:51 -0700 (PDT) (envelope-from asami) To: Neil Blakey-Milner Cc: ports@FreeBSD.org Subject: Re: Zope virtual category? (Was: cvs commit: ports/www/knowledgekit ...) References: <200009181851.LAA10445@freefall.freebsd.org> <20000918210306.A77368@mithrandr.moria.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 19 Sep 2000 00:46:49 -0700 In-Reply-To: Neil Blakey-Milner's message of "Mon, 18 Sep 2000 21:03:07 +0200" Message-ID: Lines: 16 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Neil Blakey-Milner * Ok, now I have a few zope products in the tree (ok, just five, but I * have at least a few more coming), so do I get a zope virtual category or * what? ;) * * Can anyone explain if I'm missing something about the hardships or Bad * Things involved with new virtual categories? I don't have a problem with it. I'll add it to the list of valid categories if I don't hear an objection in the next few days. Neil, can you give me a one-line description I can put in the handbook and friends? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 1:54: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id D717337B422; Tue, 19 Sep 2000 01:53:56 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13bJA3-000M4a-00; Tue, 19 Sep 2000 10:53:55 +0200 Date: Tue, 19 Sep 2000 10:53:55 +0200 From: Neil Blakey-Milner To: Maxim Sobolev Cc: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: Extending BSD.[local,x11].dist to include GNU gettext locale dirs Message-ID: <20000919105354.A84780@mithrandr.moria.org> References: <39C65823.42396A80@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39C65823.42396A80@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Sep 18, 2000 at 09:00:03PM +0300 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On a similar vein, I've asked this before and got no feedback - I'd like to suggest that 'www' and 'www/cgi-bin.default' and 'www/data.default' be added to the BSD.local mtree. This will allow a whole bunch of PHP-related and CGI products to be made into packages, installing into the '.default' directories. I realize there's a huge insane thing going on with the incompatible apache ports, but this seems the most sane way to go ahead with this - we don't want ports installing stuff into someone's web and CGI trees without permission, but if they don't set up something else, it will be immediately available, if we set up apache properly. This is currently preventing me from making Zope almost entirely automatically working from install, and in the past has prevented me from making ports of other products that use CGI or PHP. apache or whatever web server can just symlink www/data to www/data.default and www/cgi-bin to www/cgi-bin.default by default, if they aren't there already. This also makes reinstalling much more sane. Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Tue Sep 19 2: 2:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 0407637B423; Tue, 19 Sep 2000 02:02:34 -0700 (PDT) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.9.3/8.9.3b) with SMTP id LAA15084; Tue, 19 Sep 2000 11:02:27 +0200 (CEST) Date: Tue, 19 Sep 2000 11:06:28 +0200 (CEST) From: Martin Blapp To: Satoshi - Ports Wraith - Asami Cc: ports@freebsd.org Subject: Re: ports/21129: French staroffice52 port (fwd) 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, Can you also commit the port ? I got positive feedback from the submitter, so we can commit it. You'll find it on http://www.attic.ch/ports/staroffice52-french.tar.gz Thank you very much. Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ On 19 Sep 2000, Satoshi - Ports Wraith - Asami wrote: > * From: Martin Blapp > > * I've reworked the port and now someone should commit it. > * But can we place it under /usr/ports/french/${port} ? I'd prefer > * this because we have already /usr/ports/german/${port} > > Yes, I think that is fine. I will have to create a french category > first, so please wait until it is done. > > Satoshi > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 2: 9:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 9B2E637B422 for ; Tue, 19 Sep 2000 02:09:38 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id LAA16009; Tue, 19 Sep 2000 11:09:34 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: porteasy References: <86og1ld4u6.fsf@md5.follo.net> <20000918142919.D35550@radon.gryphonsoft.com> From: Dag-Erling Smorgrav Date: 19 Sep 2000 11:09:33 +0200 In-Reply-To: Dag-Erling Smorgrav's message of "18 Sep 2000 22:24:08 +0200" Message-ID: Lines: 12 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dag-Erling Smorgrav writes: > Will Andrews writes: > > make -V MASTERDIR > > is hard? > No, but it means I have to add dependencies on the fly, [...] and it doesn't work with the various Netscape ports, since it uses .include hacks instead of MASTERDIR. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 2:28:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 94ACD37B423; Tue, 19 Sep 2000 02:28:42 -0700 (PDT) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.11.0/8.11.0) id e8J93Am07789; Tue, 19 Sep 2000 10:03:10 +0100 (BST) (envelope-from nik) Date: Tue, 19 Sep 2000 10:03:08 +0100 From: Nik Clayton To: Andrew Boothman , ports@freebsd.org Cc: Mark Ovens , doc@FreeBSD.org Subject: Scrollkeeper (was Re: An opportunity for FreeBSD) Message-ID: <20000919100308.A2019@canyon.nothing-going-on.org> Reply-To: doc@freebsd.org References: <20000918212800.L567@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from andrew@cream.org on Mon, Sep 18, 2000 at 11:17:02PM +0100 Organization: FreeBSD Project Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi chaps, I've added -ports in to this discussion, but reply-to is set back to -doc. Long quote kept for context. On Mon, Sep 18, 2000 at 11:17:02PM +0100, Andrew Boothman wrote: > On 18-Sep-00 Mark Ovens wrote: > > I fired off an e-mail to a couple of contacts Nik gave me, one of the > > replies I got is included at the end of this mail. As you can see the > > project is only just getting started and as yet no code has been > > produced. Currently the webpage mentioned in the e-mail has been taken > > down as they discovered that the name "Dewey" (from the Dewey-decimel > > system used for cataloguing by libraries) was trade-marked. The > > project is looking for a new name. > > Now called "ScrollKeeper", it would appear. > http://scrollkeeper.sourceforge.net > > >From what you've said, and from what information is available on their web > site, this certainly sounds like a project worth getting involved in. > > > I have subscribed to the mailing list (which is rather quiet at the > > moment, but should liven up once code is available) and would like to > > be able to announce that FreeBSD is "officially" supporting the > > project (which means a committment to adopting Dewey for the > > ports/packages when it reaches production quality). I am willing to > > act as co-ordinator for this and will attempt to do most of the work. > > Great. I've also subscribed to their list, just so I can stay in the loop and > offer up any help where I feel I can. > > With regard to "officially" deciding to support the project, I guess after > sufficent discussion Nik and Satoshi could a rubber-stamp our final decision. For the record, I'm fully in support of this, up to and including making sure that our documentation set is categorised using it. For those of you reading this on the -ports list I think this is an effort we need to support -- at the very least by making it possible (note: *not* mandatory) for our ports to 'install' this metadata where appropriate. If any interested parties would like to meet up at BSDCon to discuss this then let me know. N -- Internet connection, $19.95 a month. Computer, $799.95. Modem, $149.95. Telephone line, $24.95 a month. Software, free. USENET transmission, hundreds if not thousands of dollars. Thinking before posting, priceless. Somethings in life you can't buy. For everything else, there's MasterCard. -- Graham Reed, in the Scary Devil Monastery To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 2:57:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 829E537B422 for ; Tue, 19 Sep 2000 02:57:48 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 3977F192C; Tue, 19 Sep 2000 04:53:47 -0500 (EST) Date: Tue, 19 Sep 2000 04:53:47 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: Will Andrews , freebsd-ports@FreeBSD.ORG Subject: Re: ports/21380: portlint is stupid. Message-ID: <20000919045347.T35550@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009190030.RAA79490@freefall.freebsd.org> <20000918234052.O35550@radon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Sep 19, 2000 at 09:19:51AM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 19, 2000 at 09:19:51AM +0200, Dag-Erling Smorgrav wrote: > The -v option also drops lots of other tests. Got a better way to do this? I don't want to add a lot of extra options to specify which tests should be built and which shouldn't. That would just be butt-ugly. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 3:24:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from venus.virtual-earth.de (venus.virtual-earth.de [62.208.47.102]) by hub.freebsd.org (Postfix) with ESMTP id 4200737B422; Tue, 19 Sep 2000 03:24:22 -0700 (PDT) Received: from virtual-earth.de (venus.virtual-earth.de [127.0.0.1]) by venus.virtual-earth.de (8.9.3/8.9.3) with ESMTP id MAA39057; Tue, 19 Sep 2000 12:24:16 +0200 (CEST) (envelope-from mathiasp@virtual-earth.de) Message-Id: <200009191024.MAA39057@venus.virtual-earth.de> Date: Tue, 19 Sep 2000 12:24:13 +0200 (CEST) From: Mathias.Picker@virtual-earth.de Subject: Re: Scrollkeeper (was Re: An opportunity for FreeBSD) To: doc@freebsd.org, ports@freebsd.org In-Reply-To: <20000919100308.A2019@canyon.nothing-going-on.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Well, this slashdot thread (http://slashdot.org/askslashdot/00/09/18/2230256.shtml) brings me to the question if it might be beneficial if scrollkeeper could also be used to describe / catalogue the software, not only the documentation about it. Long quote still kept for context... On 19 Sep, Nik Clayton wrote: > Hi chaps, > > I've added -ports in to this discussion, but reply-to is set back to > -doc. > > Long quote kept for context. > > On Mon, Sep 18, 2000 at 11:17:02PM +0100, Andrew Boothman wrote: >> On 18-Sep-00 Mark Ovens wrote: >> > I fired off an e-mail to a couple of contacts Nik gave me, one of >> > the replies I got is included at the end of this mail. As you can >> > see the project is only just getting started and as yet no code has >> > been produced. Currently the webpage mentioned in the e-mail has >> > been taken down as they discovered that the name "Dewey" (from the >> > Dewey-decimel system used for cataloguing by libraries) was >> > trade-marked. The project is looking for a new name. >> >> Now called "ScrollKeeper", it would appear. >> http://scrollkeeper.sourceforge.net >> >> >From what you've said, and from what information is available on >> >their web >> site, this certainly sounds like a project worth getting involved in. >> >> > I have subscribed to the mailing list (which is rather quiet at the >> > moment, but should liven up once code is available) and would like >> > to be able to announce that FreeBSD is "officially" supporting the >> > project (which means a committment to adopting Dewey for the >> > ports/packages when it reaches production quality). I am willing to >> > act as co-ordinator for this and will attempt to do most of the >> > work. >> >> Great. I've also subscribed to their list, just so I can stay in the >> loop and offer up any help where I feel I can. >> >> With regard to "officially" deciding to support the project, I guess >> after sufficent discussion Nik and Satoshi could a rubber-stamp our >> final decision. > > For the record, I'm fully in support of this, up to and including > making sure that our documentation set is categorised using it. For > those of you reading this on the -ports list I think this is an effort > we need to support -- at the very least by making it possible (note: > *not* mandatory) for our ports to 'install' this metadata where > appropriate. > > If any interested parties would like to meet up at BSDCon to discuss > this then let me know. > > N -- virtual earth Mathias Picker Geschäftsführer Gesellschaft für Wissens re/prä sentation mbH Mathias.Picker@virtual-earth.de Fon +49 89 / 540 7425-1 Fax +49 89 / 540 7425-9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 3:28:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 883A537B422 for ; Tue, 19 Sep 2000 03:28:08 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id MAA19630; Tue, 19 Sep 2000 12:28:05 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21380: portlint is stupid. References: <200009190030.RAA79490@freefall.freebsd.org> <20000918234052.O35550@radon.gryphonsoft.com> <20000919045347.T35550@radon.gryphonsoft.com> From: Dag-Erling Smorgrav Date: 19 Sep 2000 12:28:04 +0200 In-Reply-To: Will Andrews's message of "Tue, 19 Sep 2000 04:53:47 -0500" Message-ID: Lines: 13 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews writes: > On Tue, Sep 19, 2000 at 09:19:51AM +0200, Dag-Erling Smorgrav wrote: > > The -v option also drops lots of other tests. > Got a better way to do this? I don't want to add a lot of extra options > to specify which tests should be built and which shouldn't. That would > just be butt-ugly. Fix portlint so it understand that ports that have no distfiles also have no checksum file. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 3:40:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 6D27137B422 for ; Tue, 19 Sep 2000 03:40:41 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 9A846192C; Tue, 19 Sep 2000 05:36:40 -0500 (EST) Date: Tue, 19 Sep 2000 05:36:40 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: Will Andrews , freebsd-ports@FreeBSD.ORG Subject: Re: ports/21380: portlint is stupid. Message-ID: <20000919053640.Y35550@radon.gryphonsoft.com> Reply-To: Will Andrews References: <200009190030.RAA79490@freefall.freebsd.org> <20000918234052.O35550@radon.gryphonsoft.com> <20000919045347.T35550@radon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Sep 19, 2000 at 12:28:04PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 19, 2000 at 12:28:04PM +0200, Dag-Erling Smorgrav wrote: > Fix portlint so it understand that ports that have no distfiles also > have no checksum file. This doesn't solve the problem that sometimes portlint won't be able to do everything you want/need it to do. But I'm discussing a solution with Michael privately; should see a commit soon if no problems. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 3:56: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 8117B37B422; Tue, 19 Sep 2000 03:56:49 -0700 (PDT) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA93321; Tue, 19 Sep 2000 03:56:49 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Tue, 19 Sep 2000 03:56:49 -0700 (PDT) Message-Id: <200009191056.DAA93321@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: jmz set sender to jmz@FreeBSD.org using -f From: Jean-Marc Zucconi To: Thomas Gellekum Cc: freebsd-ports@FreeBSD.org Subject: Re: cvs commit: ports/math/numpy Makefile ports/math/numpy/patches patch-setup.py In-Reply-To: References: <200009181138.EAA31788@freefall.freebsd.org> X-Mailer: Emacs 20.7.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> Thomas Gellekum writes: > Thomas Gellekum writes: >> Link against libg2c, so the lapack_lite module actually works. > I think the real fix is to add > LDADD+= g2c > DPADD+= g2c > to lapack's makefiles. Opinions? I won't object. Jean-Marc -- Jean-Marc Zucconi PGP Key: finger jmz@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 Sep 19 4:35:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 323BD37B423 for ; Tue, 19 Sep 2000 04:35:17 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id NAA20327; Tue, 19 Sep 2000 13:35:10 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21380: portlint is stupid. References: <200009190030.RAA79490@freefall.freebsd.org> <20000918234052.O35550@radon.gryphonsoft.com> <20000919045347.T35550@radon.gryphonsoft.com> <20000919053640.Y35550@radon.gryphonsoft.com> From: Dag-Erling Smorgrav Date: 19 Sep 2000 13:35:09 +0200 In-Reply-To: Will Andrews's message of "Tue, 19 Sep 2000 05:36:40 -0500" Message-ID: Lines: 16 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews writes: > On Tue, Sep 19, 2000 at 12:28:04PM +0200, Dag-Erling Smorgrav wrote: > > Fix portlint so it understand that ports that have no distfiles also > > have no checksum file. > This doesn't solve the problem that sometimes portlint won't be able to > do everything you want/need it to do. No, but it solves the problem that the portlint port doesn't pass its own tests. Ah, the delicious irony! One of these days, I swear I'm going to sit down and rewrite the ports system from scratch... (but until then, maybe I'd better shut up) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 5: 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 8C69B37B424 for ; Tue, 19 Sep 2000 05:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA10051; Tue, 19 Sep 2000 05: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 0C82337B423 for ; Tue, 19 Sep 2000 04:57:38 -0700 (PDT) Received: (qmail 12108 invoked by uid 1001); 19 Sep 2000 11:57:30 -0000 Message-Id: <20000919115730.12107.qmail@ringwraith.office1> Date: 19 Sep 2000 11:57:30 -0000 From: "Peter Pentchev" Reply-To: "Peter Pentchev" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21396: New port: net/ghtool - cmdline interface to the resolver Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21396 >Category: ports >Synopsis: New port: net/ghtool - cmdline interface to the resolver >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 Sep 19 05:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: "Peter Pentchev" >Release: FreeBSD 4.1-STABLE i386 >Organization: Orbitel JSCo. >Environment: current ports tree >Description: gh-tool is a command-line interface to gethostby*, in libresolv/libc. It allows one to check the local system's notion of an IP->DNS or DNS->IP mapping, including aliases, directly, rather than digging for mappings in DNS, which may or may not be relevant. >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: # # ghtool-1.0/ # ghtool-1.0/files # ghtool-1.0/files/md5 # ghtool-1.0/Makefile # ghtool-1.0/pkg # ghtool-1.0/pkg/COMMENT # ghtool-1.0/pkg/DESCR # ghtool-1.0/pkg/PLIST # echo c - ghtool-1.0/ mkdir -p ghtool-1.0/ > /dev/null 2>&1 echo c - ghtool-1.0/files mkdir -p ghtool-1.0/files > /dev/null 2>&1 echo x - ghtool-1.0/files/md5 sed 's/^X//' >ghtool-1.0/files/md5 << 'END-of-ghtool-1.0/files/md5' XMD5 (ghmain.c) = 063690f107086022b111648b73cad036 END-of-ghtool-1.0/files/md5 echo x - ghtool-1.0/Makefile sed 's/^X//' >ghtool-1.0/Makefile << 'END-of-ghtool-1.0/Makefile' X# New ports collection makefile for: ghtool X# Date created: 19 September 2000 X# Whom: roam@orbitel.bg X# X# $FreeBSD$ X# X XPORTNAME= ghtool XPORTVERSION= 1.0 XCATEGORIES= net XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR=gh-tool XDISTNAME= ghmain.c XEXTRACT_SUFX= X XMAINTAINER= roam@orbitel.bg X XWRKSRC= ${WRKDIR} X XTGT= gh XSRC= gh.c X XEXTRACT_CMD= ${CP} XEXTRACT_BEFORE_ARGS= XEXTRACT_AFTER_ARGS= ${WRKSRC}/${SRC} X Xdo-build: X ${CC} ${CFLAGS} -o ${WRKSRC}/${TGT} ${WRKSRC}/${SRC} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${TGT} ${PREFIX}/bin X X.include END-of-ghtool-1.0/Makefile echo c - ghtool-1.0/pkg mkdir -p ghtool-1.0/pkg > /dev/null 2>&1 echo x - ghtool-1.0/pkg/COMMENT sed 's/^X//' >ghtool-1.0/pkg/COMMENT << 'END-of-ghtool-1.0/pkg/COMMENT' XA command-line interface to the resolver library END-of-ghtool-1.0/pkg/COMMENT echo x - ghtool-1.0/pkg/DESCR sed 's/^X//' >ghtool-1.0/pkg/DESCR << 'END-of-ghtool-1.0/pkg/DESCR' XTo quote from the SourceForge project description: X X gh-tool is a command-line interface to gethostby*, in libresolv/libc. X It allows one to check the local system's notion of an IP->DNS or X DNS->IP mapping, including aliases, directly, rather than digging for X mappings in DNS, which may or may not be relevant. X XWWW: http://www.sourceforge.net/projects/gh-tool/ XAuthor: Ally Kendall X XMaintainer: Peter Pentchev END-of-ghtool-1.0/pkg/DESCR echo x - ghtool-1.0/pkg/PLIST sed 's/^X//' >ghtool-1.0/pkg/PLIST << 'END-of-ghtool-1.0/pkg/PLIST' Xbin/gh END-of-ghtool-1.0/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 Tue Sep 19 6: 0:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp-gw.csp.it (cspnsv.csp.it [130.192.68.9]) by hub.freebsd.org (Postfix) with ESMTP id 9DCBA37B423; Tue, 19 Sep 2000 06:00:12 -0700 (PDT) Received: from smtp.intranet.csp.it (rigel.intranet.csp.it [192.168.68.1]) by smtp-gw.csp.it (Postfix) with ESMTP id F280787C1C; Tue, 19 Sep 2000 13:00:05 +0000 (GMT) Received: from valdi (valdi.csp.it [130.192.64.9]) by smtp.intranet.csp.it (Postfix) with SMTP id B7E072E40; Tue, 19 Sep 2000 13:00:05 +0000 (GMT) Message-ID: <003501c02239$468efc70$0940c082@csp.it> From: "Maurizio Valdi" To: Cc: Subject: FreeBSD Port: p5-GD-1.27 Date: Tue, 19 Sep 2000 14:56:44 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0032_01C02249.D3A951E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0032_01C02249.D3A951E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Where can I found manual or information about how to use this module? Thanks. Maurizio ------------------------------------------------------- C.S.P.=20 Valdi Maurizio email : valdi@csp.it ------------------------------------------------------- ------=_NextPart_000_0032_01C02249.D3A951E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Where can I found manual or information = about how=20 to use this module?
Thanks.
Maurizio
 
 
-------------------------------------------------------
C.S.P.
Valdi Maurizio
email : valdi@csp.it
-------------------------------------------------------
 
------=_NextPart_000_0032_01C02249.D3A951E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 6: 6:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 3CF4037B42C for ; Tue, 19 Sep 2000 06:06:44 -0700 (PDT) Received: (qmail 12408 invoked by uid 1001); 19 Sep 2000 13:06:18 -0000 Date: Tue, 19 Sep 2000 16:06:18 +0300 From: Peter Pentchev To: Maurizio Valdi Cc: jfitz@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: p5-GD-1.27 Message-ID: <20000919160618.D5643@ringwraith.office1.bg> References: <003501c02239$468efc70$0940c082@csp.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <003501c02239$468efc70$0940c082@csp.it>; from valdi@csp.it on Tue, Sep 19, 2000 at 02:56:44PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As with most well-written Perl modules, this one includes its own documentation as part of the module itself. In this particular case, all you have to do is run: perldoc /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/GD.pm G'luck, Peter -- .siht ekil ti gnidaer eb d'uoy ,werbeH ni erew ecnetnes siht fI On Tue, Sep 19, 2000 at 02:56:44PM +0200, Maurizio Valdi wrote: > Where can I found manual or information about how to use this module? > Thanks. > Maurizio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 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 42BDE37B423 for ; Tue, 19 Sep 2000 06:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA28804; Tue, 19 Sep 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sand6.global.net.uk (sand6.global.net.uk [195.147.246.105]) by hub.freebsd.org (Postfix) with ESMTP id 7E1C137B423 for ; Tue, 19 Sep 2000 06:30:48 -0700 (PDT) Received: from [194.126.85.12] (helo=adsl.irrelevant.org) by sand6.global.net.uk with esmtp (Exim 3.03 #1) id 13bNVV-0001jJ-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 19 Sep 2000 14:32:21 +0100 Received: (from simond@localhost) by adsl.irrelevant.org (8.11.0/8.11.0) id e8JDVR001655; Tue, 19 Sep 2000 14:31:27 +0100 (BST) (envelope-from simond) Message-Id: <200009191331.e8JDVR001655@adsl.irrelevant.org> Date: Tue, 19 Sep 2000 14:31:27 +0100 (BST) From: simond@irrelevant.org Reply-To: simond@irrelevant.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21398: Ports update emulators/uae - patch-aa is incomplete Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21398 >Category: ports >Synopsis: Ports update emulators/uae - patch-aa is incomplete >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 19 06:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Simon Dick >Release: FreeBSD 4.1-STABLE i386 >Organization: N/A >Environment: FreeBSD 4.1S >Description: The existing patch-aa doesn't do everything it should >How-To-Repeat: cd /usr/ports/emulators/uae && make >Fix: --- patch-aa.orig Sun Sep 17 13:50:21 2000 +++ patch-aa Tue Sep 19 14:25:07 2000 @@ -1,5 +1,5 @@ ---- configure.orig Tue Aug 15 16:01:31 2000 -+++ configure Sun Sep 17 08:48:28 2000 +--- configure.orig Tue Sep 19 14:21:55 2000 ++++ configure Tue Sep 19 14:24:11 2000 @@ -5121,7 +5121,7 @@ echo "configure:5122: checking for pthread library" >&5 TMP_SAVE_CFLAGS=$CFLAGS @@ -9,3 +9,12 @@ cat > conftest.$ac_ext <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 Sep 19 7:48:48 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 415D137B423; Tue, 19 Sep 2000 07:48:32 -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 RAA05369; Tue, 19 Sep 2000 17:48:21 +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 e8JEmMS05330; Tue, 19 Sep 2000 17:48:22 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C77CA9.8AED84CA@FreeBSD.org> Date: Tue, 19 Sep 2000 17:48: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: doc@FreeBSD.org, ports@FreeBSD.org Subject: Porter's Handbook patch Content-Type: multipart/mixed; boundary="------------AE7302D1A9E4EF4E25D5C3B5" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------AE7302D1A9E4EF4E25D5C3B5 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Dear -doc and -ports people, Please review attached patch, which intended to replace outdated ldconfig-related chapter in Porter's Handbook with one matching reality (INSTALLS_SHLIB). -Maxim --------------AE7302D1A9E4EF4E25D5C3B5 Content-Type: text/html; charset=koi8-r; name="ph.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ph.diff" Index: book.sgml =================================================================== RCS file: /home/ncvs/doc/en_US.ISO_8859-1/books/porters-handbook/book.sgml,v retrieving revision 1.121 diff -d -u -r1.121 book.sgml --- book.sgml 2000/09/17 19:52:35 1.121 +++ book.sgml 2000/09/19 14:45:32 @@ -1089,39 +1089,46 @@ There are some more things you have to take into account when you create a port. This section explains the most common of those. - - <command>ldconfig</command> - - If your port installs a shared library, add a - post-install target to your - Makefile that runs ${LDCONFIG} - -m on the directory where the new library is installed - (usually PREFIX/lib) to - register it into the shared library cache. + + Shared Libraries - Also, add a matching @exec /sbin/ldconfig -m - and @unexec /sbin/ldconfig -R pair to your - pkg/PLIST file so that a user who installed the - package can start using the shared library immediately and + If your port installs a shared library(ies), define a + INSTALLS_SHLIB make variable, which will instruct + a bsd.port.mk to run + ${LDCONFIG} -m on the directory where the + new library is installed (usually + PREFIX/lib) during + post-install target to register it into the + shared library cache. Also this variable, when defined, will + facilitate addition a appropriate + @exec /sbin/ldconfig -m and + @unexec /sbin/ldconfig -R pair into your + pkg/PLIST file, so that a user who installed + the package can start using the shared library immediately and deinstallation will not cause the system to still believe the - library is there. These lines should immediately follow the line - for the shared library itself, as in: + library is there. + If you need, you can override default location where the new + library is installed by defining LDCONFIG_DIRS + make variable, which should contain list of directories into which + shared libraries are to be installed. For example if your port + installs shared libraries into + PREFIX/lib/foo and + PREFIX/lib/bar directories + you could use the following in your + Makefile: + -lib/libtvl80.so.1 -@exec /sbin/ldconfig -m %D/lib -@unexec /sbin/ldconfig -R +INSTALLS_SHLIB= yes +LDCONFIG_DIRS= %%PREFIX%%/lib/foo %%PREFIX%%/lib/bar - Never, ever, ever add a line that says - ldconfig without any arguments to your - Makefile or pkg/PLIST. - This will reset the shared library cache to the contents of - /usr/lib only, and will royally screw up the - user's machine ("Help, xinit does not run anymore after I install - this port!"). Anybody who does this will be shot and cut in 65,536 - pieces by a rusty knife and have his liver chopped out by a bunch of - crows and will eternally rot to death in the deepest bowels of hell - (not necessarily in that order…) + Note that content of LDCONFIG_DIRS is passed + through sed just like the rest of pkg/PLIST, + so PLIST_SUB substitutions also apply here. It is + recommended that you use %%PREFIX%% for + PREFIX, %%LOCALBASE%% for + LOCALBASE and %%X11BASE%% for + X11BASE. @@ -3387,7 +3394,7 @@ be added as noted in the info files section. Any libraries installed by the port should be listed as specified in the - ldconfig section. + shared libraries section. --------------AE7302D1A9E4EF4E25D5C3B5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 7:51: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 4C8F737B424; Tue, 19 Sep 2000 07:51:39 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA47832; Tue, 19 Sep 2000 07:51:39 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 07:51:39 -0700 (PDT) From: Message-Id: <200009191451.HAA47832@freefall.freebsd.org> To: hdcho@geni.knu.ac.kr, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21387: g2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: g2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 07:51:26 PDT 2000 State-Changed-Why: Superceded by ports/21389 http://www.freebsd.org/cgi/query-pr.cgi?pr=21387 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8: 0: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 B492037B449; Tue, 19 Sep 2000 08:00:24 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA51340; Tue, 19 Sep 2000 08:00:24 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Tue, 19 Sep 2000 08:00:24 -0700 (PDT) From: Message-Id: <200009191500.IAA51340@freefall.freebsd.org> To: simond@irrelevant.org, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21398: Ports update emulators/uae - patch-aa is incomplete Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ports update emulators/uae - patch-aa is incomplete State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Tue Sep 19 07:55:14 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21398 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8: 8:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [204.117.82.9]) by hub.freebsd.org (Postfix) with ESMTP id B438937B424; Tue, 19 Sep 2000 08:08:18 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [204.117.82.2]) by yertle.kciLink.com (Postfix) with ESMTP id ED4A42E446; Tue, 19 Sep 2000 11:08:07 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.0/8.11.0) id e8JF87N03406; Tue, 19 Sep 2000 11:08:07 -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: <14791.33111.87575.9387@onceler.kciLink.com> Date: Tue, 19 Sep 2000 11:08:07 -0400 (EDT) To: Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel In-Reply-To: <200009160902.CAA78123@freefall.freebsd.org> References: <200009160902.CAA78123@freefall.freebsd.org> X-Mailer: VM 6.72 under 21.1 (patch 11) "Carlsbad Caverns" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "k" == knu writes: k> Synopsis: vmware vmmon module locks kernel k> State-Changed-From-To: open->closed k> State-Changed-By: knu k> State-Changed-When: Sat Sep 16 17:56:24 JST 2000 k> State-Changed-Why: k> A similar patch was added. (set the second argument of ether_ifattach() k> to ETHER_BPF_SUPPORTED, instead of 0 (ETHER_BPF_UNSUPPORTED)) k> Please check it out. Thanks for the report! Before I check it out, does this fix avoid hanging the kernel as soon as the module is loaded? Last I tried on 4.1-STABLE it locked so tight that the keyboard didn't even respond to caps lock. Thanks. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Tue Sep 19 8:41: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 A707337B422; Tue, 19 Sep 2000 08:41:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA69458; Tue, 19 Sep 2000 08:41:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 08:41:48 -0700 (PDT) From: Message-Id: <200009191541.IAA69458@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jkoshy@FreeBSD.org Subject: Re: ports/14260: new port: www/woda - A Web Oriented Database System Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: www/woda - A Web Oriented Database System Responsible-Changed-From-To: freebsd-ports->jkoshy Responsible-Changed-By: ade Responsible-Changed-When: Tue Sep 19 08:40:45 PDT 2000 Responsible-Changed-Why: I also can't get this thing to unpack correctly. Koshy, since you seem to have the necessary shar-fu to get this sorted, can you deal with adding the port, please? http://www.freebsd.org/cgi/query-pr.cgi?pr=14260 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8:50: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 7B50137B424; Tue, 19 Sep 2000 08:50:11 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA73125; Tue, 19 Sep 2000 08:50:11 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 08:50:11 -0700 (PDT) From: Message-Id: <200009191550.IAA73125@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/18004: new port: mail/pgp4pine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: mail/pgp4pine State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 08:49:03 PDT 2000 State-Changed-Why: Please submit diffs against the current port (as per Sada-san's request of July 28th). In addition, the sharball you have here is broken (no PORTNAME/PORTVERSION), and the tarball on the MASTER_SITE appears to be version 1.75-6 http://www.freebsd.org/cgi/query-pr.cgi?pr=18004 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8:51:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04D0337B423; Tue, 19 Sep 2000 08:51:58 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA73835; Tue, 19 Sep 2000 08:51:57 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 08:51:57 -0700 (PDT) From: Message-Id: <200009191551.IAA73835@freefall.freebsd.org> To: lioux@uol.com.br, ade@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/18732: New port mail/qmail-ldap Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port mail/qmail-ldap State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 08:51:21 PDT 2000 State-Changed-Why: New port committed, sobomax missed closing the PR. Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: ade Responsible-Changed-When: Tue Sep 19 08:51:21 PDT 2000 Responsible-Changed-Why: sobomax imported the port http://www.freebsd.org/cgi/query-pr.cgi?pr=18732 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8:57: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 9F7F237B42C; Tue, 19 Sep 2000 08:57:28 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76039; Tue, 19 Sep 2000 08:57:28 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 08:57:28 -0700 (PDT) From: Message-Id: <200009191557.IAA76039@freefall.freebsd.org> To: chat95@mbox.kyoto-inet.or.jp, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19006: New port: biology/gaussian98 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: biology/gaussian98 State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 08:56:17 PDT 2000 State-Changed-Why: Timeout (3 months) in analyzed. As it stands, the port is broken in so many ways, we'd have to almost completely re-do it in order to get it to work. When you have something that works and passes portlint, please submit a new PR. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=19006 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8:58: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 6E1F837B423; Tue, 19 Sep 2000 08:58:24 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76327; Tue, 19 Sep 2000 08:58:24 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 08:58:24 -0700 (PDT) From: Message-Id: <200009191558.IAA76327@freefall.freebsd.org> To: leeym@cae.ce.ntu.edu.tw, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19014: new port: sysutils/rmm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: sysutils/rmm State-Changed-From-To: analyzed->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 08:57:52 PDT 2000 State-Changed-Why: Timeout (3 months) in analyzed. Submitter needs to resolve namespace conflict with mh/nmh ports and resubmit a new port. http://www.freebsd.org/cgi/query-pr.cgi?pr=19014 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 8:59: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 D2AE137B422; Tue, 19 Sep 2000 08:59:13 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76777; Tue, 19 Sep 2000 08:59:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 08:59:13 -0700 (PDT) From: Message-Id: <200009191559.IAA76777@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, knu@FreeBSD.org Subject: Re: ports/19258: Newport: category japanese Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Newport: category japanese Responsible-Changed-From-To: freebsd-ports->knu Responsible-Changed-By: ade Responsible-Changed-When: Tue Sep 19 08:58:55 PDT 2000 Responsible-Changed-Why: From the audit-trail, looks like knu is prepared to handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=19258 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9: 4: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 05F5E37B424; Tue, 19 Sep 2000 09:04:43 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA79125; Tue, 19 Sep 2000 09:04:42 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:04:42 -0700 (PDT) From: Message-Id: <200009191604.JAA79125@freefall.freebsd.org> To: spcoltri@omcl.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19965: New port print/sgf2tex: prettyprint the game of Go Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port print/sgf2tex: prettyprint the game of Go State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 09:04:28 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=19965 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9: 7:47 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 284A737B43C; Tue, 19 Sep 2000 09:07:38 -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 TAA06719; Tue, 19 Sep 2000 19:07:32 +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 e8JG7ZS17337; Tue, 19 Sep 2000 19:07:35 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C78F3A.27C87EA1@FreeBSD.org> Date: Tue, 19 Sep 2000 19:07: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: ade@FreeBSD.org Cc: lioux@uol.com.br, freebsd-ports@FreeBSD.org Subject: Re: ports/18732: New port mail/qmail-ldap References: <200009191551.IAA73835@freefall.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 ade@FreeBSD.org wrote: > Synopsis: New port mail/qmail-ldap > > State-Changed-From-To: open->closed > State-Changed-By: ade > State-Changed-When: Tue Sep 19 08:51:21 PDT 2000 > State-Changed-Why: > New port committed, sobomax missed closing the PR. > > Responsible-Changed-From-To: freebsd-ports->sobomax > Responsible-Changed-By: ade > Responsible-Changed-When: Tue Sep 19 08:51:21 PDT 2000 > Responsible-Changed-Why: > sobomax imported the port Not so fast Ade. I preffer to do things in batches, so PR closing usually scheduled after all PR are committed. I understand, hovewer, that order of things in Texas could differ from that ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:11: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 CAE6337B42C; Tue, 19 Sep 2000 09:11:53 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA83969; Tue, 19 Sep 2000 09:11:53 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:11:53 -0700 (PDT) From: Message-Id: <200009191611.JAA83969@freefall.freebsd.org> To: patrick@mindstep.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21340: new port for the Crypt::Blowfish perl module Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port for the Crypt::Blowfish perl module State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 09:11:42 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21340 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:12: 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 0467037B422; Tue, 19 Sep 2000 09:12:02 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA84052; Tue, 19 Sep 2000 09:12:01 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Tue, 19 Sep 2000 09:12:01 -0700 (PDT) From: Message-Id: <200009191612.JAA84052@freefall.freebsd.org> To: lioux@uol.com.br, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20768: Modify the x11/rxvt to include a -devel port (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Modify the x11/rxvt to include a -devel port (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Sep 19 09:11:30 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20768 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:13: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 EBC7337B422; Tue, 19 Sep 2000 09:13:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA84854; Tue, 19 Sep 2000 09:13:15 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:13:15 -0700 (PDT) From: Message-Id: <200009191613.JAA84854@freefall.freebsd.org> To: ats@first.gmd.de, ade@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: open->feedback State-Changed-By: ade State-Changed-When: Tue Sep 19 09:12:40 PDT 2000 State-Changed-Why: Can you determine exactly what has changed, and work with the maintainer to make any necessary adjustments. Thanks. 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 Tue Sep 19 9:14:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A10F37B43E; Tue, 19 Sep 2000 09:14:36 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA85722; Tue, 19 Sep 2000 09:14:36 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:14:36 -0700 (PDT) From: Message-Id: <200009191614.JAA85722@freefall.freebsd.org> To: ats@first.gmd.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21346: ports/biology/platon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/biology/platon State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Tue Sep 19 09:14:27 PDT 2000 State-Changed-Why: Can you determine exactly what has changed, and work with the maintainer to make any necessary adjustments. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21346 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:22: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 7BA9537B42C; Tue, 19 Sep 2000 09:22:48 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA88807; Tue, 19 Sep 2000 09:22:48 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:22:48 -0700 (PDT) From: Message-Id: <200009191622.JAA88807@freefall.freebsd.org> To: holger@eit.uni-kl.de, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21347: New port: graphics/avifile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: graphics/avifile State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 09:22:34 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21347 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:46: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 21B5637B423; Tue, 19 Sep 2000 09:46:31 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA96948; Tue, 19 Sep 2000 09:46:31 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:46:31 -0700 (PDT) From: Message-Id: <200009191646.JAA96948@freefall.freebsd.org> To: trevor@jpj.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21352: new port x11/wrapper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port x11/wrapper State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 09:46:20 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21352 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:49: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 2F13837B422; Tue, 19 Sep 2000 09:49:12 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA97792; Tue, 19 Sep 2000 09:49:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 09:49:12 -0700 (PDT) From: Message-Id: <200009191649.JAA97792@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/20876: mod_php4 (and maybe mod_php3) misplace the directive in apache.conf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mod_php4 (and maybe mod_php3) misplace the directive in apache.conf Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: ade Responsible-Changed-When: Tue Sep 19 09:48:59 PDT 2000 Responsible-Changed-Why: Over to maintainer of mod_php4 http://www.freebsd.org/cgi/query-pr.cgi?pr=20876 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:57: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 3238E37B423; Tue, 19 Sep 2000 09:57:44 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01180; Tue, 19 Sep 2000 09:57:44 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Tue, 19 Sep 2000 09:57:44 -0700 (PDT) From: Message-Id: <200009191657.JAA01180@freefall.freebsd.org> To: holger@flatline.de, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20817: New port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Tue Sep 19 09:56:27 PDT 2000 State-Changed-Why: Obsolete PR http://www.freebsd.org/cgi/query-pr.cgi?pr=20817 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 9:59: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 AC77D37B423; Tue, 19 Sep 2000 09:59:35 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01802; Tue, 19 Sep 2000 09:59:35 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Tue, 19 Sep 2000 09:59:35 -0700 (PDT) From: Message-Id: <200009191659.JAA01802@freefall.freebsd.org> To: kosmos@bowhill.yi.org, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21381: ruby-tk has two entries in INDEX Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ruby-tk has two entries in INDEX State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Wed Sep 20 01:48:26 JST 2000 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21381 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10: 0: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 7656937B424; Tue, 19 Sep 2000 10:00:40 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA02342; Tue, 19 Sep 2000 10:00:40 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 10:00:40 -0700 (PDT) From: Message-Id: <200009191700.KAA02342@freefall.freebsd.org> To: ilia@jane.cgu.chel.su, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21164: port submission (Perl5 module) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port submission (Perl5 module) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 10:00:01 PDT 2000 State-Changed-Why: New port committed, thanks. In future, please specify the port name somewhere in the Synopsis field as it will help committers do their work. http://www.freebsd.org/cgi/query-pr.cgi?pr=21164 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10: 1:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scientia.demon.co.uk (scientia.demon.co.uk [212.228.14.13]) by hub.freebsd.org (Postfix) with ESMTP id 0780037B422; Tue, 19 Sep 2000 10:01:05 -0700 (PDT) Received: from strontium.scientia.demon.co.uk ([192.168.91.36] ident=root) by scientia.demon.co.uk with esmtp (Exim 3.16 #1) id 13bQ9a-000HPk-00; Tue, 19 Sep 2000 17:21:54 +0100 Received: (from ben@localhost) by strontium.scientia.demon.co.uk (8.9.3/8.9.3) id RAA60421; Tue, 19 Sep 2000 17:21:54 +0100 (BST) (envelope-from ben) Date: Tue, 19 Sep 2000 17:21:54 +0100 From: Ben Smithurst To: Maxim Sobolev Cc: doc@FreeBSD.org, ports@FreeBSD.org Subject: Re: Porter's Handbook patch Message-ID: <20000919172154.B30774@strontium.scientia.demon.co.uk> References: <39C77CA9.8AED84CA@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <39C77CA9.8AED84CA@FreeBSD.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > Please review attached patch, which intended to replace outdated First, you need two spaces after a fullstop. One space is Wrong[tm]. (Of course, if a sentence ends at the end of a line, the existing newline is just as good.) > + If your port installs a shared library(ies), define a I think "If your port installs one or more shared libraries, ..." would sound better. That "library(ies)" looks ugly to me. > + shared library cache. Also this variable, when defined, will > + facilitate addition a appropriate I don't like that much. I'd prefer this: This variable, when defined, will also facilitate addition of an appropriate [...] > + make variable, which should contain list of directories into which s/contain list/contain a list/ > + through sed just like the rest of pkg/PLIST, "&man.sed.1;" instead of plain "sed", please. Other than that, it looks good to me. -- Ben Smithurst / ben@FreeBSD.org / PGP: 0x99392F7D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10: 7: 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 1FF6D37B42C; Tue, 19 Sep 2000 10:07:02 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA06251; Tue, 19 Sep 2000 10:07:02 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 10:07:02 -0700 (PDT) From: Message-Id: <200009191707.KAA06251@freefall.freebsd.org> To: ilia@jane.cgu.chel.su, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21167: port submission (Perl5 module) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port submission (Perl5 module) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 10:06:46 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21167 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10: 9: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id AF66C37B42C for ; Tue, 19 Sep 2000 10:08:58 -0700 (PDT) Received: (qmail 3018353 invoked from network); 19 Sep 2000 17:08:56 -0000 Received: from r121m50.cybercable.tm.fr (HELO qualys.com) ([195.132.121.50]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 19 Sep 2000 17:08:56 -0000 Message-ID: <39C79E28.809F105F@qualys.com> Date: Tue, 19 Sep 2000 19:11:04 +0200 From: Maxime Henrion X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev , ports@freebsd.org, doc@freebsd.org Subject: Re: Porter's Handbook patch References: <39C77CA9.8AED84CA@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 Maxim Sobolev wrote: > Dear -doc and -ports people, > > Please review attached patch, which intended to replace outdated > ldconfig-related chapter in Porter's Handbook with one matching reality > (INSTALLS_SHLIB). > The ldconfig's behaviour has changed when it's invoked without parameters, since 4.1-RELEASE. It now does a ldconfig -R by default and doesn't reset the shared libraries cache to the content of /usr/lib any longer. I think it's worth to precise it in the documentation. Regards, Maxime Henrion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10:23: 6 2000 Delivered-To: freebsd-ports@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 012D637B422; Tue, 19 Sep 2000 10:22:50 -0700 (PDT) Received: from localhost ([211.121.243.181]) by t-mta3.odn.ne.jp (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000919172248148.CCKX.940.t-mta3.odn.ne.jp@mta3.odn.ne.jp>; Wed, 20 Sep 2000 02:22:48 +0900 To: knu@idaemons.org Cc: ports@freebsd.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/ruby-gdbm Makefile ports/databases/ruby-gdbm/files md5 ports/lang/ruby Makefile ports/lang/ruby/files md5 ports/lang/ruby/pkg PLIST ports/lang/ruby-tcltklib Makefile ports/lang/ruby-tcltklib/files md5 ports/x11-toolkits/ruby-tk ... In-Reply-To: <86hf7ce48d.wl@archon.local.idaemons.org> References: <200009191520.IAA61473@freefall.freebsd.org> <20000920010612I.yasuf@bsdclub.org> <86hf7ce48d.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_Sep_20_02:22:25_2000_179)--" Message-Id: <20000920022249V.yasuf@bsdclub.org> Date: Wed, 20 Sep 2000 02:22:49 +0900 From: Yasuhiro Fukuma X-Dispatcher: imput version 20000228(IM140) Lines: 50 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ----Security_Multipart(Wed_Sep_20_02:22:25_2000_179)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, In the article <86hf7ce48d.wl@archon.local.idaemons.org>, "Akinori -Aki- MUSHA" wrote: > > Hey, you seem to have forgot to correct the obsolete MAINTAINER line! ;) > > As I hadn't received your reply, I didn't do that while I was there. > (I'm sure I sent you a mail in which I confirmed you about that 9 days > ago. Did I miss your reply?) Indeed I didn't ask you to change the MAINTAINER line, but I *did not* ask you to succeed the maintainership (at that time), either. However, I'm sorry if you think this commit is urgent enough to take precedence over the maintainership (i.e. committing without MAINTAINER's review). > Besides, should I take over your maintainership of ruby-gtk too? Ah, no, I'm not so hardhearted as to force the maintainership of the port you aren't using at all. :) --- 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_Sep_20_02:22:25_2000_179)-- Content-Type: Application/Pgp-Signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: pXSNFcG1Pw34AEgWVH2fqelHiUourLic iQCVAwUAOceg3QqHABIYLe0FAQExAAQAm9LY5AEMQ+2LSGbKxAYvrBrP0B8RREBt tFp6Kxa6Ak9A+zCzcTK34R2PRiOrCqzgfIE2BbCn0Vr6b0wpat+rpylVp8yLdl2d JbvHWgKGdqm+YBSKx9Roxhx+1ewZyhaCthj46sAWBfxdvk8yM2E2mTMLxZrnjWdg Mv5HuNZorkI= =PiLP -----END PGP SIGNATURE----- ----Security_Multipart(Wed_Sep_20_02:22:25_2000_179)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10: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 4231737B422 for ; Tue, 19 Sep 2000 10:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA18335; Tue, 19 Sep 2000 10:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 19 Sep 2000 10:50:03 -0700 (PDT) Message-Id: <200009191750.KAA18335@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: OKAZAKI Tetsurou Subject: Re: ports/21217: New port: IIIM Emacs Client Framework Reply-To: OKAZAKI Tetsurou Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21217; it has been noted by GNATS. From: OKAZAKI Tetsurou To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/21217: New port: IIIM Emacs Client Framework Date: Wed, 20 Sep 2000 02:46:32 +0900 In the message <200009120700.AAA51255@freefall.freebsd.org> gnats-admin@FreeBSD.org wrote: > >Category: ports > >Responsible: freebsd-ports > >Synopsis: New port: IIIM Emacs Client Framework > >Arrival-Date: Tue Sep 12 00:00:01 PDT 2000 IIIMECF Version 0.2 is released. Please apply the following patch to update the port. diff -urN iiimecf-0.1/Makefile iiimecf/Makefile --- iiimecf-0.1/Makefile Tue Sep 19 19:51:27 2000 +++ iiimecf/Makefile Mon Sep 18 07:23:14 2000 @@ -6,7 +6,7 @@ # PORTNAME= iiimecf -PORTVERSION= 0.1 +PORTVERSION= 0.2 CATEGORIES= editors elisp MASTER_SITES= ftp://ftp.kddlabs.co.jp/Japan/m17n.org/mule/IIIM/ \ ftp://ftp.etl.go.jp/pub/mule/IIIM/ \ diff -urN iiimecf-0.1/files/md5 iiimecf/files/md5 --- iiimecf-0.1/files/md5 Tue Sep 19 19:51:27 2000 +++ iiimecf/files/md5 Mon Sep 18 07:23:51 2000 @@ -1 +1 @@ -MD5 (IIIMECF-0.1.tar.gz) = 4f40689cc4e4f2fbb84adff61f7ffa28 +MD5 (IIIMECF-0.2.tar.gz) = 00a7a361f582eac94a71db3722e19fb7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 10:58: 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 1136A37B422; Tue, 19 Sep 2000 10:58:07 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA20480; Tue, 19 Sep 2000 10:58:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 10:58:07 -0700 (PDT) From: Message-Id: <200009191758.KAA20480@freefall.freebsd.org> To: okazaki@be.to, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21217: New port: IIIM Emacs Client Framework Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: IIIM Emacs Client Framework State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 10:57:56 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21217 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 11:11: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 CAD6A37B423; Tue, 19 Sep 2000 11:10:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA26048; Tue, 19 Sep 2000 11:10:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 11:10:52 -0700 (PDT) From: Message-Id: <200009191810.LAA26048@freefall.freebsd.org> To: trevor@jpj.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21044: new port x11-wm/sapphire-themes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port x11-wm/sapphire-themes State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 11:10:41 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21044 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 11:22: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 10BA437B423; Tue, 19 Sep 2000 11:22:12 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28946; Tue, 19 Sep 2000 11:22:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 11:22:12 -0700 (PDT) From: Message-Id: <200009191822.LAA28946@freefall.freebsd.org> To: joseph.scott@owp.csus.edu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21069: Another GTK+ frontend for mysql Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Another GTK+ frontend for mysql State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 11:22:00 PDT 2000 State-Changed-Why: New port committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21069 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 11:27:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from uni-sb.de (uni-sb.de [134.96.252.33]) by hub.freebsd.org (Postfix) with ESMTP id BFE8237B422 for ; Tue, 19 Sep 2000 11:27:39 -0700 (PDT) Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.11.0/2000072000) with ESMTP id UAA05434 for ; Tue, 19 Sep 2000 20:27:08 +0200 (CEST) Received: from wjpserver.cs.uni-sb.de (wjpserver.cs.uni-sb.de [134.96.247.42]) by cs.uni-sb.de (8.11.0/2000072000) with ESMTP id UAA19470 for ; Tue, 19 Sep 2000 20:28:19 +0200 (CEST) Received: (from schuerge@localhost) by wjpserver.cs.uni-sb.de (8.11.0/8.11.0/wjp-SVR4/1999052600) id e8JIRWn02526 for freebsd-ports@freebsd.org; Tue, 19 Sep 2000 20:27:32 +0200 (MET DST) From: Thomas Schuerger Message-Id: <200009191827.e8JIRWn02526@wjpserver.cs.uni-sb.de> Subject: Request: SDL_image To: freebsd-ports@freebsd.org Date: Tue, 19 Sep 2000 20:27:32 +0200 (MET DST) X-Mailer: ELM [version 2.4ME+ PL57 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I'd like to see a port of SDL-image (libSDL_image) for FreeBSD. The library is required for a couple of good games. The source code is available at http://www.devolution.com/~slouken/SDL/projects/SDL_image/index.html Ciao, Thomas Schürger. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 11:30: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 1A70337B423; Tue, 19 Sep 2000 11:30:47 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA30861; Tue, 19 Sep 2000 11:30:47 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Tue, 19 Sep 2000 11:30:47 -0700 (PDT) From: Message-Id: <200009191830.LAA30861@freefall.freebsd.org> To: gmarco@giovannelli.it, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21390: Update ports misc/xtail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports misc/xtail State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Sep 19 11:30:36 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21390 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 11:33:52 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 9BB0D37B424; Tue, 19 Sep 2000 11:33: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 DAA26345; Wed, 20 Sep 2000 03:33:35 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8JIWwM41545; Wed, 20 Sep 2000 03:32:59 +0900 (JST) Date: Wed, 20 Sep 2000 03:32:57 +0900 Message-ID: <86g0mwdyg6.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: Yasuhiro Fukuma Cc: ports@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: ports/databases/ruby-gdbm Makefile ports/databases/ruby-gdbm/files md5 ports/lang/ruby Makefile ports/lang/ruby/files md5 ports/lang/ruby/pkg PLIST ports/lang/ruby-tcltklib Makefile ports/lang/ruby-tcltklib/files md5 ports/x11-toolkits/ruby-tk ... In-Reply-To: In your message of "Wed, 20 Sep 2000 02:22:49 +0900" <20000920022249V.yasuf@bsdclub.org> References: <200009191520.IAA61473@freefall.freebsd.org> <20000920010612I.yasuf@bsdclub.org> <86hf7ce48d.wl@archon.local.idaemons.org> <20000920022249V.yasuf@bsdclub.org> User-Agent: Wanderlust/2.3.0 (Roam) 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 Wed, 20 Sep 2000 02:22:49 +0900, Yasuhiro Fukuma wrote: > In the article <86hf7ce48d.wl@archon.local.idaemons.org>, > "Akinori -Aki- MUSHA" wrote: > > > > Hey, you seem to have forgot to correct the obsolete MAINTAINER line! ;) > > > > As I hadn't received your reply, I didn't do that while I was there. > > (I'm sure I sent you a mail in which I confirmed you about that 9 days > > ago. Did I miss your reply?) > > Indeed I didn't ask you to change the MAINTAINER line, but I *did not* > ask you to succeed the maintainership (at that time), either. Oh, now I see. Sorry for my misunderstanding. I thought you stated that you were throwing up your maintainership, judging from the last private mail and the previous mail on this thread. > However, I'm sorry if you think this commit is urgent enough to take > precedence over the maintainership (i.e. committing without > MAINTAINER's review). No, that wasn't that urgent. I just thought you were so busy it wasn't worth bothering you with a trivial update. I promise I'll ask you for approval next time. > > Besides, should I take over your maintainership of ruby-gtk too? > > Ah, no, I'm not so hardhearted as to force the maintainership of > the port you aren't using at all. :) Thanks very much. You know, now that Ruby 1.6.0 was officially released, the new version of Ruby/GTK is (hopefully) drawing near. Please submit the patch to me when it's ready. :) Regards, -- / /__ __ / ) ) ) ) / 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 Sep 19 11:34:58 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 483A337B422 for ; Tue, 19 Sep 2000 11:34:56 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13bSEF-000Diw-00; Tue, 19 Sep 2000 13:34:51 -0500 Date: Tue, 19 Sep 2000 13:34:51 -0500 From: Ade Lovett To: Thomas Schuerger Cc: freebsd-ports@freebsd.org Subject: Re: Request: SDL_image Message-ID: <20000919133451.M51091@FreeBSD.org> References: <200009191827.e8JIRWn02526@wjpserver.cs.uni-sb.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009191827.e8JIRWn02526@wjpserver.cs.uni-sb.de>; from schuerge@wjpserver.CS.Uni-SB.DE on Tue, Sep 19, 2000 at 08:27:32PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 19, 2000 at 08:27:32PM +0200, Thomas Schuerger wrote: > Hi! > > I'd like to see a port of SDL-image (libSDL_image) for FreeBSD. The > library is required for a couple of good games. The source code is > available at > > http://www.devolution.com/~slouken/SDL/projects/SDL_image/index.html Patches (or, in this case, a port submission) welcome :) -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 Tue Sep 19 12:43:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id EF8B737B423 for ; Tue, 19 Sep 2000 12:43:08 -0700 (PDT) Received: (qmail 16146938 invoked from network); 19 Sep 2000 19:42:25 -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 ; 19 Sep 2000 19:42:25 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.0/8.11.0) id e8JJgMc03338; Tue, 19 Sep 2000 21:42:22 +0200 (CEST) (envelope-from root) From: Cyrille Lefevre Message-Id: <200009191942.e8JJgMc03338@gits.dyndns.org> Subject: Re: wats so special about freeBSD? In-Reply-To: <89731E9AF92BD411869200D0B71BB4DC0FC297@ASERVER> "from Akbar at Sep 19, 2000 12:29:35 pm" To: Akbar Date: Tue, 19 Sep 2000 21:42:20 +0200 (CEST) Cc: freebsd-advocacy@freebsd.org, freebsd-chat@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 Akbar wrote: [snip] > wat is so special about BSD? wat is the major difference between BSD and > Linux?? if its so robust then why is linux so hyped? i am a bit confused. i BSD vs GNU/Linux central development (non central development dor linux boxes) ports system (aka rpm for linux boxes) from my point of view, much more unix philosophy compliant public domain (/usr/local) != userland (/) where linux boxes merges both and many more reasons... > am seeking out a career in security area and i am seriously thinking of > learning 1 unix based OS. and i am stuck. which one would be best to learn?? for security purpose, OpenBSD is well suitable. > linux or BSD?? and how far the knowledge of each OS would allow me to shift > to other OS? i mean, if i learn BSD would be easy for me to program in > Linux? or vice versa?? you'll probably get better habits w/ BSD than w/ GNU/Linux. much better is to follow standards and not to use all those non-standard libraries whatever they are easy to use. so, your programs would runs on many unix flavors. > p.s. if i start to learn BSD which version or distribution is best suited? for x86, FreeBSD 4.1 would be apropriate and have a bigger audience than others BSD (OpenBSD and NetBSD). > (i have programming experience of C, C++ and java and i have worked on Unix > some 3 yrs back) sounds good :) much better is to follow this thread in freebsd-advocacy@freebsd.org or freebsd-chat@freebsd.org. CC: positionned. 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 Tue Sep 19 12: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 1587737B423 for ; Tue, 19 Sep 2000 12:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA48813; Tue, 19 Sep 2000 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cocoja.holywar.net (cocoja.holywar.net [210.102.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 1422437B423 for ; Tue, 19 Sep 2000 12:45:56 -0700 (PDT) Received: (from jhp@localhost) by cocoja.holywar.net (8.11.0/8.11.0) id e8JJjuI68133; Wed, 20 Sep 2000 04:45:56 +0900 (KST) (envelope-from jhp) Message-Id: <200009191945.e8JJjuI68133@cocoja.holywar.net> Date: Wed, 20 Sep 2000 04:45:56 +0900 (KST) From: jhp@freebsd.hanirc.org Reply-To: jhp@freebsd.hanirc.org To: FreeBSD-gnats-submit@freebsd.org Cc: wmtop@tanelorn.demon.co.uk X-Send-Pr-Version: 3.2 Subject: ports/21401: Update sysutils/wmtop 0.81 to 0.83 with fix for current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21401 >Category: ports >Synopsis: Update port sysutils/wmtop to 0.83 with fix for 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: Tue Sep 19 12:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Park JongHwan >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: FreeBSD jhp.yi.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Sep 14 11:02:12 KST 2000 jhp@jhp.yi.org:/usr/obj/usr/src/sys/JHP i386 >Description: In -CURRENT with recent SMPng commit, there is system process named 'idle' which reports cpu idle as its utilization. we have to prevent system processes displayed from wmtop to get top 3 processes. :) >How-To-Repeat: run wmtop on -current with SMPng. >Fix: if (ppid == 0 && !strcmp(procname, "idle")) rather than if (ppid == 0 && !show_system) would be better for not display 'idle' process. (remove show_system crap then) diff -urN ../sysutils/wmtop/Makefile wmtop/Makefile --- ../sysutils/wmtop/Makefile Mon Aug 7 16:28:54 2000 +++ wmtop/Makefile Wed Sep 20 04:02:45 2000 @@ -5,9 +5,10 @@ # $FreeBSD: ports/sysutils/wmtop/Makefile,v 1.3 2000/08/03 09:26:42 asami Exp $ PORTNAME= wmtop -PORTVERSION= 0.81 +PORTVERSION= 0.83 CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITES= http://wmtop.sourceforge.net/ \ + ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= wmtop@tanelorn.demon.co.uk diff -urN ../sysutils/wmtop/files/md5 wmtop/files/md5 --- ../sysutils/wmtop/files/md5 Mon May 8 06:06:09 2000 +++ wmtop/files/md5 Wed Sep 20 03:53:14 2000 @@ -1 +1 @@ -MD5 (wmtop-0.81.tar.gz) = 76c520de993daf649a34a0a6981b8628 +MD5 (wmtop-0.83.tar.gz) = 948bdcbd0b18c119532153d1ec20ee64 diff -urN ../sysutils/wmtop/patches/patch-ab wmtop/patches/patch-ab --- ../sysutils/wmtop/patches/patch-ab Thu Jan 1 09:00:00 1970 +++ wmtop/patches/patch-ab Wed Sep 20 03:48:56 2000 @@ -0,0 +1,55 @@ +--- wmtop.c.orig Wed May 17 05:08:20 2000 ++++ wmtop.c Wed Sep 20 03:48:43 2000 +@@ -78,6 +78,10 @@ + */ + int mode = 0; + ++#if defined(FREEBSD) ++int show_system = 0; ++#endif ++ + #if defined(DEBUG) + /* + * Memory handler +@@ -234,7 +238,7 @@ + char deparenthesised_name[WMTOP_BUFLENGTH]; + #endif /* defined(LINUX) */ + #if defined(FREEBSD) +- int us,um,ks,km; ++ int us,um,ks,km,ppid; + #endif /* defined(FREEBSD) */ + + #if defined(PARANOID) +@@ -298,11 +302,18 @@ + * Extract cpu times from data in /proc//stat + * XXX: Process name extractor for FreeBSD is untested right now. + */ +- rc = sscanf(line,"%s %*s %*s %*s %*s %*s %*s %*s %d,%d %d,%d", +- procname, ++ rc = sscanf(line,"%s %*s %d %*s %*s %*s %*s %*s %d,%d %d,%d", ++ procname, &ppid, + &us,&um,&ks,&km); + if (rc<5) + return 1; ++ ++ if (ppid == 0 && !show_system) ++ { ++ process->time_stamp=0; ++ return 1; ++ } ++ + if (process->name) + wmtop_free(process->name); + process->name = wmtop_strdup(procname); +@@ -725,6 +736,11 @@ + i++; + } + break; ++#if defined (FREEBSD) ++ case 'S': ++ show_system = 1; ++ break; ++#endif + case 'r': + if (argc > (i+1)) { + refresh_rate = (atoi(argv[i+1]) * 1000); >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 Sep 19 13:16:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bowhill.yi.org (bowhill.yi.org [216.122.158.78]) by hub.freebsd.org (Postfix) with ESMTP id 49C8D37B422; Tue, 19 Sep 2000 13:16:43 -0700 (PDT) Received: from localhost (kosmos@localhost) by bowhill.yi.org (8.11.0/8.11.0) with ESMTP id e8JKGgK11580; Tue, 19 Sep 2000 13:16:43 -0700 (PDT) (envelope-from kosmos@bowhill.yi.org) Date: Tue, 19 Sep 2000 13:16:42 -0700 (PDT) From: kosmos To: knu@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21381: ruby-tk has two entries in INDEX In-Reply-To: <200009191659.JAA01802@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 In what way has this been fixed? I have cvsupped and am still getting duplicate entries in the INDEX file. It would be nice if you put a comment on this when you close it so we know what was done to fix it. --Allan On Tue, 19 Sep 2000 knu@FreeBSD.ORG wrote: > Synopsis: ruby-tk has two entries in INDEX > > State-Changed-From-To: open->closed > State-Changed-By: knu > State-Changed-When: Wed Sep 20 01:48:26 JST 2000 > State-Changed-Why: > Fixed, thanks! > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21381 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 13:28:43 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 3103337B424; Tue, 19 Sep 2000 13:28:40 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13bU0A-000Duw-00; Tue, 19 Sep 2000 15:28:26 -0500 Date: Tue, 19 Sep 2000 15:28:26 -0500 From: Ade Lovett To: kosmos Cc: knu@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/21381: ruby-tk has two entries in INDEX Message-ID: <20000919152826.P51091@FreeBSD.org> References: <200009191659.JAA01802@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: ; from kosmos@bowhill.yi.org on Tue, Sep 19, 2000 at 01:16:42PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 19, 2000 at 01:16:42PM -0700, kosmos wrote: > In what way has this been fixed? > > I have cvsupped and am still getting duplicate entries > in the INDEX file. /usr/ports/INDEX is generated from time to time by asami-san, it does not get automagically updated every time a new port is added, or upgraded, or whatever. If you want to create your own index file, do a: cd /usr/ports make index (bear in mind that it will be overwritten on your next cvsup unless you explicitly tell cvsup to ignore it) cobra 59# grep '^ruby-tk' INDEX.20000919.1500 | wc -l 1 > It would be nice if you put a comment on this when you > close it so we know what was done to fix it. The cvs-all mailing list, and web interface to the up-to-date CVS repository are both tools that you can make use of. More details can be found in the Handbook. -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 Tue Sep 19 13:53:44 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 6E06237B424; Tue, 19 Sep 2000 13:53:41 -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 FAA08753; Wed, 20 Sep 2000 05:53:38 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8JKqrM44320; Wed, 20 Sep 2000 05:52:54 +0900 (JST) Date: Wed, 20 Sep 2000 05:52:53 +0900 Message-ID: <86em2gdryy.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: kosmos Cc: knu@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/21381: ruby-tk has two entries in INDEX In-Reply-To: In your message of "Tue, 19 Sep 2000 13:16:42 -0700 (PDT)" References: <200009191659.JAA01802@freefall.freebsd.org> User-Agent: Wanderlust/2.3.0 (Roam) 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 Tue, 19 Sep 2000 13:16:42 -0700 (PDT), kosmos wrote: > In what way has this been fixed? Just by removing extra PKGNAMEPREFIX line. > I have cvsupped and am still getting duplicate entries > in the INDEX file. You have to regenerate INDEX by yourself since INDEX in the CVS repository is not updated everytime a port is fixed, updated, added, removed, or renamed. It's done periodically by Ports Wraith (asami). Try "cd /usr/ports; make -j4 index" and you will see the problem is fixed. > It would be nice if you put a comment on this when you > close it so we know what was done to fix it. Sorry, I thought the fix was trivial enough to omit the mention. FYI, here is the commit log and the diff: http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/x11-toolkits/ruby-tk/Makefile http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/x11-toolkits/ruby-tk/Makefile.diff?r1=1.16&r2=1.17&f=u Actually I found the problem myself while working on 1.6.0 update before noticing your PR, so I couldn't mention the PR... -- / /__ __ / ) ) ) ) / 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 Sep 19 16:44:34 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 3336537B424; Tue, 19 Sep 2000 16:44:23 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id TAA11142; Tue, 19 Sep 2000 19:43:42 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8JNgMj64933; Tue, 19 Sep 2000 16:42:22 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Tue, 19 Sep 2000 16:42:22 -0700 (PDT) Message-Id: <200009192342.e8JNgMj64933@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: jkh@FreeBSD.org Cc: ports@FreeBSD.org, hetzels@westbend.net Subject: PR ports/13649, ports/13650 (conflicts) From: asami@FreeBSD.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Jordan, Please review the following patch to pkg_install tools to add two things: -C (conflicts) support and wildcard matching (also used for conflict checking, but it will also enable users to do things like "pkg_info -e 'emacs*'" to see which, if any, emacs ports are installed). This is basically the patch in PR #13649 by Scot W. Hetzel with one conflicting hunk removed and one message slightly changed. It seems to work fine here but not being a pkg_* buff, I can't say I quite understand how it's supposed to work. :) FYI, it is intended to be used with the following patch to bsd.port.mk. This is based on Scot's patch in PR #13650. Note that I removed the __FreeBSD_version check part -- I can deal with it by delaying the commit to bsd.port.mk and bumping BSDPORTMKVERSION to an appropriate date after making sure the upgrade kits are properly built and distributed to all the mirror sites. === Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v retrieving revision 1.350 diff -u -r1.350 bsd.port.mk --- bsd.port.mk 2000/09/13 07:16:49 1.350 +++ bsd.port.mk 2000/09/19 18:56:41 @@ -200,6 +200,16 @@ # DEPENDS_TARGET - The default target to execute when a port is calling a # dependency (default: "install"). # +# Conflict checking. Use if your port conflicts with annother port or version. +# +# CONFLICTS - A list of package names/patterns that the port conflicts with. +# +# For example: +# CONFLICTS= apache*-1.2* apache*-1.3.[012345] apache-*+ssl_* apache<1.3.9 +# +# the pkg_install tools use use shell metacharactes for pattern matching ( []*?<>,<=,>= ) +# (see pkg_info(1)) +# # Various directory definitions and variables to control them. # You rarely need to redefine any of these except WRKSRC and NO_WRKSUBDIR. # @@ -1035,6 +1051,9 @@ PKG_INFO?= /usr/sbin/pkg_info .if !defined(PKG_ARGS) PKG_ARGS= -v -c ${COMMENT} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | sort -u`" ${EXTRA_PKG_ARGS} +.if defined(CONFLICTS) +PKG_ARGS+= -C "${CONFLICTS}" +.endif .if exists(${PKGINSTALL}) PKG_ARGS+= -i ${PKGINSTALL} .endif @@ -1558,6 +1577,7 @@ FILESDIR=${FILESDIR} PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} \ DEPENDS="${DEPENDS}" BUILD_DEPENDS="${BUILD_DEPENDS}" \ RUN_DEPENDS="${RUN_DEPENDS}" X11BASE=${X11BASE} \ + CONFLICTS="${CONFLICTS}" \ ${ALL_HOOK} .endif @@ -1955,6 +1975,23 @@ .if make(real-install) @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} check-categories .if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER) +.if defined(CONFLICTS) + @${RM} -f ${WRKDIR}/.CONFLICTS +.for conflict in ${CONFLICTS} + @found="`${PKG_INFO} -e \"${conflict}\" || ${TRUE}`"; \ + if [ X"$$found" != X"" ]; then \ + ${ECHO} "$$found" >> ${WRKDIR}/.CONFLICTS; \ + fi +.endfor + @if [ -s ${WRKDIR}/.CONFLICTS ]; then \ + found=`cat ${WRKDIR}/.CONFLICTS | ${SED} -e s'|${PKG_DBDIR}/||g' | tr '\012' ' '`; \ + ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): $$found found."; \ + ${ECHO_MSG} " They install the same files into the same place."; \ + ${ECHO_MSG} " Please remove $$found first with pkg_delete(1)."; \ + ${RM} -f ${WRKDIR}/.CONFLICTS; \ + exit 1; \ + fi +.endif # CONFLICTS @if [ -d ${PKG_DBDIR}/${PKGNAME} ]; then \ ${ECHO} "===> ${PKGNAME} is already installed - perhaps an older version?"; \ ${ECHO} " If so, you may wish to \`\`make deinstall'' and install"; \ === The patch is relative to 4-stable, if it makes any difference. Thanks. Satoshi === begin 755 pkg_install5.diff.gz M'XL(`+?WQSD"`\0[:W/:R):?Q:_H<#,:QV%M9VZFDA0K M1&-4%I)&+4R8F?SW/>=TM]028,=S9W=]$2L8O?FV+L!:WH[G;D!2)Q?+^5+5V_ M+\4\B3U^[P6W+(8/X84!LYN=?K/3[)8FWG3*&@O6B/4CIG!N-!K&%JQ.N]UN MM?=;]@%KVX->>]#N6RF46JVV/K;?LOO,[@_:G4&G77KSAC7LO?UZG]7P`UZ] M>5-B%H,_[@O.O"FK5*[X/$QXE;UXP3SQ\>JB$M,#V%JU"H,M^"(^N[.O[!43 M2>Q&JPH\"9PYIZ=UE@T_-&'_;EE6:Y?Q;Y$33!@0B$5.,J-Y+`G9=.'[\L=N MJU2S+'?FQ&Q7')9JN"8B-N7?/)&(RJX3W]Y7JPR`Q7S*8YKN$%O8Q(NYF_@K M!`+3<'$#W9@[/BXJ0=29B3<@V[`LC2G`]L/PCDW#F"4S+H%[`7V''<`:?,(B MWW%3?%/Z>0+`PBH)CP.%*[ZWD)X5\6KJ!9,Q%\G<2=P9B`,B4`&T\7,43M6, M.DVQY`[&CN#YU[#[?[)VE?V.PW`(+OPSC\>AX'*U*/:"9%HI?Q0H2Y M^!*4ZZ+.))1#/5M_;B*56",3#/ZN6*HG;B)71=&@^@#=6(;]LXH;P;HX\PQ( M]'8UQ-4O/UY<:'2E]%E+)PZ^5.;><[3P7.^5L?LP>]?99AK,U!^D1IN=UJ=UFG,^CU!YU]BV!H M:U`<2@:A8P^Z,/HE&81NK_Z2U>!_NT?F`)!-/)>1`EZ$MR=>_/GL_.+T\NC] MZ>C]T:>OA^D0$#'VFQ/)08>D-=>S<.%/V!)4D?L\X0K":^)VJ08C7"`%"`'H MK."D,4`B,#1@$4#F)BNFJ`5#',%$..N?B!(4"H4]LI] MZ$VJVNSAB[K$@=0"^+F(`]:&[]_1;.'2N+N1XD%%PMM%-0-9_IVH_W(?J;__ MLKY/Q,<_&@9*LHIXL$;Z=`#_EL2.FXP`[X0'B=@^-,+&*N0,'N M%R`(*R:=RC,2F0(&56AHE?WQ!\BG[P5W29@]K4KK2\/9O5B)A,\KY1;J M_/P.5VA$K#%G^[T>F%VP2FH632*S%,??*G:=E4^'\']6)JLT>P3=!`-YRC;0&U0+OL M@+Z!K*"Y%.6C-*D$/E&J>D@H^>9U2`X!5KGWGGK,Y,+]*6IQ2"5T\[(=9 M4^"',-AI"&(=F#WQB+.6%FE@O\\#/;[*&LQ.!017C+BX6[&`+X'FG#B#\M7O MHZ+8=K]N=U,!4VZ(H>DY%\Q+F`.[3:)!JS4-P^;8B>'?;RT4Y&9R^QL3X(*\ MJ>>":0@#:90LZ;0QT*$0)^70FC//7FLGI-X(M$88TH1+,%M`;P`&)"YK]\C* MD<\=C`^D^0%I#$CZGI6E/P7LF\TF6P2)YRO.<;:(V-)+9L"X,<=EP!CZ"\2; M#1HM!E1[=Z9BC]L0K.DXG(\/%>ID?@S7^@[A2>?Z+Y[@5J5CI1U)'NHM+0)G M#+$.1F0<(A3V/^!4V7B%6RK+">19E:VSI>[;]@'8+X@I>W6I_%;*&%/?P13J M,$^!HJV[8;0B$15.X"6K'3#[H*UHD=&58#@)\F=.EGS3VT/H\PBA`\D;9=I/ M0X:,Z`,*R[X0XRI[]8J='9U?*&82C8J<3J=4-1"KJR$4I."V-4BB4 M5*%*;ITT8C'8"4^^$X4[[0Y2N--M*T>Q@6%*?XEESS9"ST&6@M)``P(!'?`A M4P+IK4FKCM%U&MQA&+U/."CNA`>NI^,XHC8-&)&SE<.WN`>^^@_K*7 MJN[P[O;2(;&LR,`OF(PB'XQQY<40/^IL>'%^?3-"2T+V/6K\DY@_8&4G"(/5 M/%R(\J%A]JYE/+'D.V#_M%&+^2T``_\W040;)(XJ.);>"83FN6B1C7Z2=ZGK M'525C]H*EHRU.9QEY@4=BIQ`"=>SLS!VN92CU,9(N2%%S';EAO%$QDAI3%/. MK6&ANX;=V/B=&"\6+L3=XI!TSH=4@?$@7-S.B+NWH&1Q,(=(@BW#^"ZU].A7 M:GD";PC*PBE;B,U1G'8EOUL@9Q1JC!?38K"BWJ2SMKR7^:#TNI!+@>;'[BRN MJ%W7V4YC!YCU[!5#\U;5AER9'U@VQS.96P$NHJ&>UNROKW9V=S:_Z\`["F%4 M4*'_*#4%X2<5L[A*>R.W4= MUG=+QQ2U(N\1-U"N&'U4,/4]%Z,2;=O$!K;C8J3@I-3-&>SCD$4,_[TBE0:K M)??_F`0HOL.L."':KB1%5.*J_+BH:E5>BM" M.EQ\UL1,F:6"I6Q/5>$!]%@Z8I!N4M&('$D6"V)":"2!TY`U?LU,OX((>R?: M/R1&:NP/B9(6>B5,Q^M<8BJ[43')0O`OP9?D2QFQ5$G;<_&E#!89HG+T*\H# M>XE\!#$H,Z6/J15K-9D@&"%I+;7-E^%28D^E@$BF#PQ%@B1DS:'\)Z+#UF1' M.:A-HG-R.JPJ9YB)#LN+#MLN.A)QP4!3'Q2;!D%,92.3""[3`T,!D2NHDLSQI(96DJ@V:6_+$6>$):+ATYB4`Q"5$M M)B+2'V,:`#33ZX]N/@S+59-31DU*5QP1FJH^T7;QMPQ\.SU,W&O=3J]NMU5< MIF>[D=I_49BLG#A=A`[M#=4+MP8HDA#!="I)K@N.,YG`*!(;!17BDW+CGI4Q M-I)3%26W3U80\KYLZ]\PYE/O&RT3Z66>.E5]47-U@#LW>O4]U2MW,K9.L7N[S)0;QAEX*R^8%GIB!7?.5J`#WT'VSLYNAE!73SF0[T>);KAU_N+PYO;RY3I,CJT!0 MGE51`?C,P8R6I=-H&Z^!L#C3RBUFF31K%*C3L-(D(]]C2"6R$BW!ID,ZGBU6 M97^P3%`;UUNDO+@3/>5AR="%^L?-S+WG('VE>3&J[/D\4;-3*ELNZAX$<>`]:$D$A8W M7*Q%M01/L!Z`@T;@440%K*<$7X0PQ*HV)&F'!&$:@_KAS)B+)(SU9&.N_LQ` MO\BA@LEV#O!Z!^.)FE\[AL*[==MO M;=?J`IU^3+-9CDH_:/@?,V!_AK9;9>E+0C@KEJOL#.LSJTV2A#'SXHY3N`RL MBL+8B5>Z*Z#U&4P&J(IZ6*&(@8R5E=.Q@A*MZ1#;9J8W>J,?WT8C-;$/[T2- MRV^FJHI?69W*J/>J5#4K_ZZ%6";AL6*U=&21EG(?'6(]+B4J.J`>(O7*9!FN MV^_I,IQV_]]UT;-`.!,1L,5KF3QBDE8CC('/Q>:Q^<2?Y4K_%'5B'0!,7%N& M,-T^56;W^K:)L%D:2BN.9KU@R7T?6.G$B0=QMJ2(+/0A)_X/"FC6$ZIG5MIS MU'MX(%L[2E#F*/^E5!;K9JF]A2%H:IN2L*H.)R/[O6X;&PVU7J=;[\JJI85I M\(AZVV5,@H\_O'\/%E$;Q'0ZRQU7.#F_'EX<_:+LM4:O`"HWR`!5(WVFDPZR MC+F6*+72:8 M7O$"\`B"6DBWV->`R,*?N$YLU'U7U73M3Y\^I:!5NTE7:I>$T^6'&^IFA>'D MF92A'TWLLW3R@"P1A=?VKHR/2[41C5:#B) MR:Y69L#77F[DB[;"U`J"4#4D[YT!=,I54YB?T<"JT?.1&09.,[>7=I:>@>Q* M(W:`9K_6ZZ?'"Y21'Z2%.57Q6ZO*:72R:AS$[[DK%1K]=6W^*#4CMKE3K M4"70Z+P0U9Y-E927W9RCTKI[[8$D^NPYM@-=[MUCL0KLFQ,@OHM(&7#AW>I% MK+0(A>6FS&'`C_10@K;%:30,/K<13V5![NKT_8>?3T?'[T\,T84,5+XYB45&]Z;!Y-DG-NT_YZ#27KUK0>3NKW@'9<"?1A_Z< M>T@#J`D*>,K^/XA"PIN,W8>EA^KS5+M3P+I--N=IJV`L,LP`?ZR\REM<0F9*GJV!<2J MK/D6&`7N#M))3Y3HS(>G3G&H?O)!O=-F-?SLRLHE(@,3KV?LYO3XW>7Y\=$% M^*N;H_.+:]JY9G>I`383,J\82">\>>0CH<\335W!N./.M"O=$:QLVI4RS`[H MO"8=Q0"=!A&\Q;>2'6&\HKA38#,IJ9<:&+P#;P(6+X`/R2RF%A8=,@SQP`5. M%?S7!5A`KL^1ID=9:)RV9(-2[0=1K#V&(@8Y+?3H%8AD_@L=_DMVZ5:6SA78D5 ML64;L"5MRH["D1:$`?%JSA,I`9`EUUD2RX,>=+X6*3;W!)XD+C5,/':RQB^= MZ5XD84/7+V'2_%#1>\5DP#)6O4?0CACS$6>2VMY<\"%%`[).)B5?X.!?%UZ< M49(.&V!"[\JRAF^DR:1]S)'AOBD'M!O$5"/I8?BI9$+M,).-]!R>/&4:QN8* M-.51J677W(&05IZ_"U8R(]_O4PGAH%^7+06TN*>7/Y]??;C$=+($3HNS>\=? M<+5]&')ZS]#*#(]NWI'Y!1L_0>(Z[!8X'IA(&W0F!XAM_WLO#F6S_]Z)/725 ML.T?A5*7$@NCY8E)+``G(8CHT)&Q113&B1OAX)C%&@8:- MPACZ*D#`Z-0CUHK=T`?W"_LX15'%(>#&\:0NIM8XRS&,,B8@34D^)17&2P@` M<$60`(_JV)(7![(ZTFYK7@RCTG::I7R@M*[44*<)2?S!`&!VY:`&IH%#>B!^ MS1*PB3KV"93Z*\"`S$_XU%GX238+'+]D$FR@-1ECQ,6:C^Q19)N4+DU'J-** MM.1'<_;_'J,6UM\:I=KY*-7NL11E#%(+8"R[W^^WV@>M#MVHL?<'O0.+@&"8 M6AR\+5#M[M?M#JAT>J,&W#C'%`=27&OW])OK+R;\#"S=8>'5^P2"O>+#(1ET M3,B+C\$K%9^^77C^Y&=Y5FCCN_-@&A96&$**,N3!YZ_9!.']QD>)?G,-O[(Y M$`Q9)YRNVF"PDG]!F>"'P%]EL/#Q%?=)A"^\X$X47Z%_C"&A$G1D`(_48Q4" M3R-0=BD+`W6FSUGL8AJ%,ZT-9^GQG8(01BN5GVZ$4&+_P/;>%&M6H_/+ZYO1 M\=7IT'(J>WUY>?^;[H[E5M]^?<;W0"5C__`"DFM6]KUQMXF-3 MJ3>^0Z4N+*&5NGCT:5VS82(^#*<5]5#KEZ'D%EV]R&NX?%9;4^_<\U2W%83T MKA`J*800J(ZCT;`B;]*07M(M&+J#M&^GIVCHY(A>&3CRR^FU+HF-0;CN<&+- MHC+USM7.0)7?C/7U64AC!M;=Y(P(9J@U9&/R%0NCQ(EO"VN0V'?DQ8-N/X^< MY.BVF1EVQX2=)5EM#(=G:WB])KR4(]I%;M8+7 MCMT/%VE!2%4KTM*E,\6>(+XT\_(Z)77!*G>I31J@[-::/GZ!IS%32UL\)GVE MVHY(OW3Y@>QW+&=8?,W!Q:9&).^%0QI7>2'?@1%B7Q*CSXW+[\KCD6`%G4EZ M\2,R+W[(<]WJ(&3->ACI?/N<*OAJGC[3_I1MZZ9\\10S5B78=>QB)P&/`<7> MA(HGD!+7L:B-F7(0+G/7Y.1PVVAPO)G1Q?7IYI-Q_\^ MJ'KK`E)FC)(P*#*61"GA*7(6__&2[[&H1L$FXE%?&"5G8!Y M-!_DB/"4YM=LO?EU<_7QE`Y:7,M^'$F,;H5UNQ1I=WNZ:V?;%N!];:SMM7V"1MJ M`M1YA?_EACW?HL)Y#$/ZWN&]O:N-H]OY;?(J-GDJ0T`HC"6,, MQB['QC858_L`>?.\E;@H(230B9`4K3!Q8K[[Z>M,S^RNN,0IIRI8.SO7GMF> MGI[N7],MP&0POT*%J-/IP/J:#4_(?#-C_>`A""T?#O<.Y0IJ]?TT>35*2%I; M:OBG`_/X(GD^8ZD&"G'2!TP*4J:40I^D2QM00;U\(.F\C=O61B=M/7(:R_OSMD39*_TD#Q`C]8=-U%49=NSW!PV>44]83]4[V^F'?/DN;5\'1^KI<7 MJ/2.>MXX[,]%\S4D4Z18<\\L@M216HB5CT-V1\NRRPM&&R!U(^Q9\WXV1>=R MV*"ZK&>D*B8#5S>!7?`-#BG&NR`N=:$N;/13?SQ$\0GX[&Q^3BIR=(TD#=YG M),`%2.[#*2I82^X2%`XCX,_=ZP29I=Z\H=,V"6@G?:!P?=41 MZ6"I<=!OTG&'MGK5=`Y-"[^?/2#.J_`E9/:"CF7H'CD][Y[T@7$N-:B2%-8A ME.HB!`*<,(/ZKH:C$6GW+_`H1TK@D[ZX!:$>%T@`XP5R6I4K%&0MN%M3,F(< M\%+R"KV+X?W+/P)*L-E"FQ;<.AZ[6[3BS*72:=]>6>TKN_HM(E?HRJSA=Y^)N4+@E^TTS1>]GLC7-Y=OR+I1@C5]K0D;6:I-<751!O3 MU<3?9^`7UX694X$<+A/=6")C4ZB345+N2C;K9N:0@!@@]]TQ"SSX,G7?V4E5!\6,`:"0]ZO4^"@"(N/+/QNCFK^5U[&[0Z(2_AE*UE-<7'_$%&I(Y MNV$R/^2!8`LI#PI^_H!==`63!N)2;$M60;LZG_$CVZ:1,X%,3)V$8,A/[QL- MJ;;7:/B6KVT/B#I#[`$4&B9/)#\^:)D*CGJ,5F\_R"S">!SM.`GQ,WH].&.M MKCZ`4T]'W(&A^SM)9SMOO';;^GZ(Z$CD0#@/`N\H?%MW=G`"E)-31KVZ-+A? M^%W0%T$&Y7A_VIV=]6DKIA0T*?K?RTPM-IU1IBX!7E#2:VON>#EV"Z[.MM#> MP5J-YS@/55KEJEP5U]X"7GHHI)%\954&PQ&8(ZW?EK>3XEUER=D:\59DBP;R M@3`%F^HP`[8WFX`X..ZSLVQPXPF[`4'#Y$"/(!M^,(QK1.K7E4_3E@(=:4+; M!KQ*$RA0W_9]FZG$@4R+#W4O]PZ.#_;=[6V)D)%PL1R#F['"MN9N M:LA79\ABA&%D$=Z085`(WO2IG`7AV\1]H_"1]LB3"=-[;N'+!UPG'N*S>H-5 MGN5W$T-Z)052GN0CD#%.)^.^UQMX9P5G[XPJM*=H[IRZ#[_0GSDV>][9":@M M:P_']BOPBH]2'!9#M+0J?^#B("*D2=&0.?6"-27_4C?5&GPG<1V.NZGL`H_= MF,GH7DC]XG!(NMYEG(WX:(\5XQ#<"TA$=T!AO,J2W.4B'GW-]2!Z):,"O1E! M9D&7,>>V?3&7%W(I(TSULBO(#$HMH*J(!V/2091C*&US(#HLA47!BJ8 M:.RBZYNRTV7AG+_XY:7ZNRCQW*)L>M>87+F]UW!NW76N,GZ-+2YV>/"".T.V MX_D&KQ>61NKZXCRSZ#"<)SV!>/S:Z7PD6@06^[S_.$<5[L0S^7>+J9!W(?`N MBOLO'[Y"#Q"N!YK)N05'BPC*P$8B^C4RAD'=3A-SPEOWF=%-.*H0QF<$CC09 MHTUZ%9K;$L_J;8/-@?/,8E"P(,N^^0R.-[US1U+!7\#;*[<,]#:.5US$F?3. MRY;A):#%@B507@@6@)9P:_@6;3%KTI(X^$9C47Y<#%NA5.-0!GCB5'IB1PRW M'*13S_3'%M(C]/+3Y3`B7"G%DP)"/XDQ80R.5"RQ5"SB22#KT4S!"EB%U8*& MO\D/R>'QWJO](\^]::"8"&39$F;-7TI`KFW9;H16N29=-6_?_;2ENOK@DM@X M?@2'&CG.(&5$LH3?XCER;>](PW9>O.'N"GE^@7]P(V[RIZQVNZ=P:.P)4`>< MK&E$`>F**__Q[4_%E9^`Y/#[/6MWE[KQB^MH<1FPHA=O=E_\=/CS_O&;W>) MG21R>H6XJN,WR?BCT=K<4".0_^`M+`CC1^_?_[CW&GEL75'QP='AWLO7M=;R)L"V1O5JQ'$A?#)H%%?8O+G=)`T05KU M6?G`0ZXP/GO=U5:1BX;:FA:JD,<5'!,=&_ MR/IAMV`'$JIP&?'BA4/Q_+AW;H24<'#PL=A:+"E,3DNVG6*R8>[&K6G6N)%D MC9ABC=L3K.'HU;@EN1I).;4:MR56XRZT(I]GE,U5<L5G,)4) MB6NB?'L[M*$*4!9=EF9@9C5FS7;-R(^J,ZQO6RV!SQK@(9_D$)&G3N?(8."F M5XN`HH6%MEODR87_"#[H'3RV"7SLUGZZQO-/SQ1NC%,%,!4M7`R1=6?_7?%_ M=;`3VI(#2C5WJQX=.A%(S\XFWO:WT;!,K$'^7*6-(QC*E\/71&L'_`1\@._M,AO4+H-"YOLZQ.Z6AM< MCGOJ]2":+G:@@=(YLJ*6(>@1QP"0,G"FKTTG68:'UWHB3LJK6%.DS[KM4O5M M&>)H_[VA'+\;%)WX!C#9A7#:4J8`P)(FE",KM!^V4P^!K6H#IP)@-;H[6;O3 MY,`>)^D((`17.10^>SW>J`-VH4NSG'@&\H4S,E>'&,HC:\FA6@J&HQZ0""V[%S[`,AQ, M@Q,V=(!Z14"?+*U1QF:++PU^&R\K;-BD8BY9?TBZX3E,IXD]$T( MT&91;K=$\R6T#]-+-[#!]&J&N'67\UX-.RHI2FUA.DX13P"@0']OT($H@@_P MSS=PYC!MEU_SM7)[-"0+/[[/#G9WZ:A^ M[]+0N!:'W#_^_YSUNEJD[RUO!&)+$22C#%/%4CGMT!EP+PHF0+%,0.42">Q!41^UP[_7> MNR-!Z;BQ[-MTE%(F>CP2A[2L+ M9B5\&60YJMV=)IBVY"*X6;P7P)`KKDX4%N0HT#W):ETR_^3R!\?O?V+5IU*^ ML1/,KE:BT43"`X:[[7@^&NUY(%\44;J-5UC`P*)YP73G9]GO[;E MCD/P>A&:'F>BKF%.;%`4E8M\'(AFA6NA8"^\1&R*+A))(^%)_)?9 M,4F/E"7%CP%GCX`HOM#3N_54 M44$))TRT3V.+2Q\%+$:')WL"KAPKDVZWV`+O:I@1$AEY:S,J'_*CR:R^FB/+ M+1F@HT+A?6UI9`)EB-1Z8%P`]4Q/9A3J@ENK/GGZZ\=G*W]7/8PW!CT;$_2* MCX=F#@)"@.]*T;JU:IUZ9VIOYPC:82`64W4`AVV/0GP2BN'UI"&MF`:++)9N MIJBXNYC:-FN)\Z$K0_FJBJH.UY52E:[YY;9>E*9T3AZ>N4A9[39)+UO-BT3J+1;[S7BYR:66"T7HD&,4%\I+18SJQ MPU\1C,0XMLD>&ZA'*D#R^+ MO8C8668$N(/($6,V]:V!*'3>G69+37A+EB2('57WT1)81\6NPL@6M975B]B7I'ABRP^"5(WOP4E7&PIZ";"`Z\CU"X M@Z7&)<&5L*'QJU'RQU*#";&*/&J/+9T)U\,9(C.M&V)IG"5=X*,(+H7@+UUD M@!C]:T9X'VK21`P%>W6&)2C(E46-=-;+U!E&R!F,F0MUT!`?$WK9>=)"EOT9 M.-3?Z;7#N$!\2@2L[(XRW`7[XX2X&%HE@F3W?2Y`G\_Y2LJSGM"5(3<4@F,VP5 M=A=@Y5WL7LBJ!YL;W;!X!X(8G*&AFCG=-M+'@10'!="4@^X$RH.OM5Y MC=LNU_'DN1(G)=)IQY'XN4S'$W&C('.A:\X&N>9T(B2#)]GG[`'>;F>1<3>F MXT[H+;Q9AD`0)<*7HBM,MEE+JED MY\>8BWS#Z)Y=D''8EY/$]4IE!7+]0:HHS`9\A=SJKQ!MC)+CO)]8W9'/+2\H M_[7T9UND/`K9ZJPZ&2F3QI)<7&:$#D17Y_U3[WC0S1)U_F.)M(L`DE"8$"*L MW,9-D4[K$X$Y(!'^KGB3F[121?&D4JF^HO4&#\EU:C*A,V&E2@Z.E+'ZVQR2 M8#:*\NY3WOZ?_9[+O/O?W1<<0"7*^V;_/==\?C$Q=6-R0FC!N0+O?WG'!=!M MT1>`Y)("KP\^<(&SV=04@.3B`JQ8HB+BO>T*\7/!F-FF*JU0H#_Z&[XGH&&H MD>YDM+H/Q@.JH,Z?WR'5L-3E."`FOR@BY^$!Y6<;J"U7`)+Q'%Z*[6EP!%G$@^*UP>#`6`'[`^7&YQU_"DJ3@@P+D^-\KBRGEK3,YE+<]=GL MPA5^V7?A((P%,5ZNE4X=Z0FQIN'9&*'<:?M]]NQ9@;5 M1P)1WH1L:\3IRT"4.:^HI!964H]ZP,Y]V#B+%#DB8)0"?E5,?G3<9O*CSU1< M.HRW%=30;,$WSVNVP@X5:`.\[4\'L1I\/IR/W$7?P%WQD>%..WW4:3DQU7=*&'P^3>R^T61%PPI35`1>[[UD.*>C@96^MJ5"RA9:L]H]IVM MHG381PK38;OX6A1P``IB^!<$VZSA27JF!HPZTK)Q>%M>64E\PW)C"6)W_]*, MWJX?UG+9I.X7I1KC8Y/*VV!1);R#%[S!;;@@6?;`@C>\MQ6\H&VKL"IK\&Q> M,),O;@+X][\S%Z4VL2Z:[>]C%*/4CYQ8Q?>G2>W[K,Z<"E-"@Y\X0,BM6&`A MO+_TKADR6EH8020/5ZW(GU*WBJ!WJY[64DGU8CMN6G"2TQW'L%\^!A'E7!-. MEKM#_;KT2YIP\J)KQ(B,=QD&<\FRR1"1W4^'E]H9](K8W&VYW.*.$%LN[0@? M!4Q'W&G@JW>$]H'2CO`1PW3$G3*^=D>4QY5UQ1U=?&?\Z>4.:T!WF*;99)FY MWUQ*=IF2+MY"TEZES@O9_H'`S0!#=QL"[Q4E?9=SG*-M?)2[`X'=YE/2E#^5 MN=;*#F9W:%4WMI)&W4DN-\+P,'>'%F7'+&E03W^Y]L(#X)WHRCMQ*5GYQ.@: M7'QHO*EAM[G*X<*;HNM6J;;H=]]SFZ%O1N#Q[0W26'4M`4]R?AK6S4+4E:/A MR0.DZS?05OJFRT'CUE;;J^T0.(Z2$NDS*BM]/5Y7N8$`%`\WM];;%5<+ZBIS M>0NLQ-=150E_QGF$)F<-3N MPX=IFR]K]*)2#C/N`MM%&L"84V0=1:@[#'1!,13\TD7UGQC2(?HX9IE/T*(@ M.+L77M*>!/>N["XW4'^Y$[+I?/5\[RV>M0^/]P[?OONIEIVHVUN][B/5\K7M MXM+PF4:E*S%R%]ZXZA!A!-\%@BX M265)4QNX1.,=$:.C\?Z3,='31/"+T):>8[!-!YFI+X9N"!4S8J&=D)+F8'C,4(&;VZ4"V4U M,(&LQ*^V.((5!ED;%,7_](XQ"3?O40.3H'V'U.#=^F\YO,#[)AAB<3-)@#J( MC2#`.]]KVUHH50%T$=-NDR_'!8,\B$<%V:O/@%[`;V9DH3CJ1%&"U4NX`G3T0O4`1J,9LC$$IW^/H4'F_:RJ$$`CPC!O MW+6:47$]L>6/]YW(=YW0ZEKDRK>^\="X_03>7K`=PG;],UD=#"[F:-4"!ZA> MWUM3$-S;9+!%0A5Y4=TJ-ZPB6EK?OZK\(JAS&#P+!H-V!E5":^8,+PLSP,=8 MM<(WB9/?1/:FEN]AU,T]5LF;GDH$;V/+'6?-R]V/'J>=QTD#_MG8H#F%:3D2 M*QZQWTBJC'U5+033DX@Z*)R121`CO#IG;XSE<[#[:N^_Q_\/N7>EZE,P9@+= MP-,RP"!?$@['WZB3F2@!X;!I`)DLI)2?KND9-A>-8<;]_FG&9D1=BEJ6?1[W M&*%0K`\@;775&FNPYQTU[&_S%88IN+!)\$8K%6`;?W,?H/VZ^W>KP`O*\/VY MU6:EH48I#30X05F.EAM<3GNE:AJJ,X*"-R8M11DIQZ0&QQJUL*L9-B22*-`A(CX1O%8 M8[1NWP"\*)D\1NQ:F7>'H^(YH)M:'`L!_,!8M/:BS%0-#1Q^V,S%X\9NB8:, M1OR?X6",&2(,$W@A/#!ZD3`^$;RG*#VXRNE[02DM#W>UDZRG-"LB@<1(*6P! M9;"PT`QX`^\Y\S!9\*K3$2.#AIEHY^/,)OKG[+(L8>2L3+NMN[T)VH:QMX`= MAV:M?%<;#2YZL]0 M#6Q&*(0+PF;'+SUT5\[ALR%9PL#<;FKK$HZG,J6%%4U[8H[ M1(&DY8)CUA>`:'=G0@M>>EQX)ES4/])^]8?$M+$>ZFUP#HW'X\G'4*=R$)JX M<]!\@C_<\6CVW"/"BV![2@$9R2/0SY5ZQ:Y3O@WD1ZSFC'`(UD'8Z/4D?#0NSB-FO`Y-*B&.`$(D=+$_;"!ZYHZRXMH"-46 MC9D7,@8?A:.CVPV*P^B98R!PXV]T!4,ME\=T"(^`'?3I'9N+%WJ*@;\WM]8> M5:BL'OTX6ZEU.'TO\+?-IWFK^?[0'[^5Z)HY#7B03V33I,7 M$J,4]?1:@/%S$?]F5;"_!.(4O4+(>X#$"MG&3I,?R)610J7:K8TR:0R$^81# M_HXA`QXC@=8N4?;>!\%.G%Q-9K\+``O#]"[<9MV5S4IO1_#B#)W4RVIEZE[* M6"VP\`%WOI@F'",8:!*2Y`JW%@9R/Z4!`Q&R[H`[NOJU2;!8RDID*[4PG6#X@5MKBNV@55-):H.6U*T M,0I_W!]S('(@YV36A9,,1\-`ARD3>YRC#<`YJ(_7UQCQ]_/D;^G8V%^AU(YUNHKUU6SH_EVSJ[<=^4Y>,I984C$#W*._TM2"6!ZKMGW,H-9!! M+Y@%Q:J92+DCWF"DUZ$L@5E-@1L82(KB!2;B=.\XVU;EAD/!ZTW.QD-QU5)W M,1!\C_,**FV/4S_+MJHB#N2OP MU[IN57M7I^BO9;RS*JV*>'54897XE^039%[V%A1$LU'S=C]\RV:E\#[T3S(Y MT(3#E&?G+O-^YJ:]^2Z9?O.)HP^A_IJF3RL]W%9U#.K MLA;EH$\GRB9>0#XKW>FX`;$7EVE+;/-<+ M2]50;ZF:;G0#2T)'W46F-O5$L2)/_NK/)M@]AVB1&X45ZI@> M?"O?>O0HW4#;IM9:VN9S/0,B12?VS)UNE/I\[T",>@7^F5J+)W@.SGE)(VFO M?235>7L-J3*X/#UC^>:B^R=FI]MS#<'I@P^L9"&N4B]\S+QAE0@.4)68.N0! MQ-T[,=\*])`7I^K51H$(X%D>"8878@X3L$7DLRO#*!ZBZZO=D$U1UP[J/3 M`7O4(RTKE48CU%'32F(KQB!-TS`N4Y)'%6\T<%*X4OGPG54;K8N&?:(! MXWI!BDPMFI7@/!+!:)O]FA;+2BW M?T,YV9#S)7EK7ER8]NJ"1G'37ER2=_&BHK"?+R[*&WQ14=CJ;R"M[/T%A144 M?U%Q$0ORI7GGOTUAEAC*:B#987$U',\[5QY9V>*"*F?DRXK$L;BXB"#YTBR, MW+!.2/;(EQ5QM*(P-4,Y(Z# M#D@;C]+-%FR.&QMI^Z%3>B^QM51.=$(H*E9\#Z8^>%*`34TM!3&.FJ'3-.W7 M;``L'K_L47RCN[.J/@;3-'$P4USV;OY\844]Y\V7)L#J@`<\/UA8<:-PS-M& M7*BHN%#J\Q=UP7K\W;(7Y:Y^4=W>!^]^-8=.?E'EUL7OGAVWSGU1[12_9E'= MZ+MFGK:2ZIU<^*+F:$/YZNT93[VH/=J%OG9[H4->O-2M.][]YLL[XI7XV9'" MH9M,QOWF?`B=1B\&-8)0UE/8.]^XJ#+O&7>_84;N<%'M@3/<_1H( M/=^B^JW?V_VJ#]S,=$3$S*&W;[Y9248BAX9O*Q[!KT&?VJ@LY\`+G=XF,V$1U1$9! M'4@Q<3$1722'1H1249#6\LTTBOAUK;$BB\4813M1GZHXW0XFD&BH8G+QL"5V MN"9_6!/U_,\R.XRM??`<0S\K\ZLD'LNH\?DB8N)W.IHLX@E[,I+P.Q$/":NU-9NBZ!PN)V#&^ M9,,%BK?91U4E.D08"(;$03`P#HW`OY`))RP$^9D+'"FXZ8@BJE&>75:)(R&Q M"]=%A1!%;701&AO_0ILYX\-ZSO](^U`8@A-]=DH"/[(;5QSW$;)7V(*/C*2> MB7:C8F)&8(-!=Y.&T*9Q<\;B`245WTL3F,>`W# M`4-ML$P$4H`*B442^RA-9CV47ZJ\?%!E^OFJ^WF5W)PQBKVDKU9#,Q08PS>Z MMZ*62V^M-H)+JXV$^ZDW5O14*G%3'%^-$@M<'3/`SYG+%C$GF(864:JGVG,!2B M#*BZ6LV'#LRP#/5'X9RK#P:3235I/E5"5!]4`R1G>`[KH2CO-3&9K>&VS!4V M$);8=WJ>F-Z)HKW7*^TUR2BH49>;\HO^!;I8#\>)IVHU0ER630BRDIMLXHA:+!,]J_52O,U4Y'#5)BP]2LI?KRK.WOW6_P&"8O\W;:ZB2-1YO&-!$; M*#&V13>S*$PSSC6F.]4"$G.%YFVYN8R:&GP;Q\1%XM=#?8UDBRT9,\TFM."V MW&Q+J=H*_^!&$2>)+9TH%=L"1A?7O"). M[N*]L"MA[H:G)%!>3?@E_.T-8;TZ'-Y<%'K,15L17V>EIAL3%[[LQH_G7 MJ0%>/[$//?+`-#+U]K87DU>Z)+OAKKYR$HEQ/8H5L98+]8LR9Q?C%)^7=Y.NO;*@,K4X.]*TEK#SQE;;R;+:^R->FWJ.9$.:3TGMAYJ MMG9BZSF)ZF'!@?H/[36A".L#325V-)X2T)KI,,?N=3E.6-?GB*AMUSZD4NWR6]=]B>8M$.V-_RGNC;(W6_EV_>9^*AU[>P'(4WZ`E8MX1ITS`'A9L/R=H: MWMCUP&^/T,&FJT&K@+:AVQ3B.,B@M$(J)5'W[;%;8MBD?-F)$T#WC_!1^*%\6Q947M0.K$O!S$PTQ]Q[U`RLI[IC M#V/\Y=(#3N#E1NIU2L(BC%6U'#[P5/#!+XY,Z75RBZ1'&-FF2:M'$-+'Z M@%AN"D9?H'$H9'3EW="Y-T%.HKTCC),2],WRR3OW:^79KQ\7]2M6371><7;)Q:[3B.)1'OPLS3T;]!*RA&='N M0>+$R%;.[<+>`3N^?D:C_GPY2\XG4[IEF:$3_V0\PBCE?72P!M;VYE7XR65P MK,>9H=!7*2]H<>TV'^"JKNFEQD+?W'RD=NV_>.GJQUT4#TXMUH?D=`5O==]& M)QSS'[9B3QKVO_"]+[H:#QHGQGA< M4.##8$TU6^'J$?.2&EU.HAGP*[V%.C^4N8+4JFQ;LKH7O M-8,Y(40W9D9@=%/DZZB'NQ_EDYV.R]`\VS85`,#M?C>(G"+2$)B1(\AV@3B* M"9XCHUNWAI`GI:Y$C^)3-2/A8'BW(;`>7&)94JO^C5'PD'$]TY5/")&>AZ?, MM=?\&B_UZ"[9233PG@VZIYA.4BHQ9//Q?AD==-EW(>> M$J'SH1@+RAX/QC=\FMC?HN_0ZU%7LK;[EK)6D?AE9+BL;3)@C4$._P'B*_(? M8F-87,1.O,)&7Q^!;-N6)2CVPUQ=GC472%7D5XC$K]TSKC(`$C MI[,\#-\%4D=HS$_=X0B]"5<=*`%>1=R(2E#&9:,I+-+F\&M\L_9QARV>W<3D MPSY2+$9E#R6+C.\,\;P-TP52--=-YVJH/KC6$$4TYB^F@#7QXU&-(.+F!1F.;C0``,B) ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 17: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 0FED537B424 for ; Tue, 19 Sep 2000 17:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA04209; Tue, 19 Sep 2000 17:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bowhill.yi.org (bowhill.yi.org [216.122.158.78]) by hub.freebsd.org (Postfix) with ESMTP id 0186A37B422 for ; Tue, 19 Sep 2000 17:19:14 -0700 (PDT) Received: (from kosmos@localhost) by bowhill.yi.org (8.11.0/8.11.0) id e8K0JAo11899; Tue, 19 Sep 2000 17:19:10 -0700 (PDT) (envelope-from kosmos) Message-Id: <200009200019.e8K0JAo11899@bowhill.yi.org> Date: Tue, 19 Sep 2000 17:19:10 -0700 (PDT) From: kosmos@bowhill.yi.org Reply-To: kosmos@bowhill.yi.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21403: ruby14-tk has duplicate entries in INDEX Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21403 >Category: ports >Synopsis: ruby14-tk has duplicate entries in INDEX >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 19 17:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Allan Bowhill >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: Command shell, in /usr/ports. >Description: like ports/21381, duplicate entries are appearing in INDEX file for this port. Like 21381, the PORTNAME(PREFIX?) field is duplicated too. >How-To-Repeat: cd /usr/ports make -j 12 index grep "ruby14-ruby14-tk-1.4.6" INDEX I think this is the last one because: uniq INDEX | wc -l (3908) wc -l INDEX (3909) >Fix: Probably the same way ruby-tk was fixed :) (Sorry Akinori, I missed this one...) >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 Sep 19 19:10:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scrabble.freeuk.net (scrabble.freeuk.net [212.126.144.6]) by hub.freebsd.org (Postfix) with ESMTP id 9E69837B422; Tue, 19 Sep 2000 19:10:34 -0700 (PDT) Received: from du-004-0133.freeuk.com ([212.126.149.133] helo=cream.org) by scrabble.freeuk.net with esmtp (Exim 3.12 #1) id 13bZLA-0005nW-00; Wed, 20 Sep 2000 03:10:29 +0100 Content-Length: 2522 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Wed, 20 Sep 2000 03:10:25 +0100 (BST) From: Andrew Boothman To: Kris Kennaway Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r Cc: olgeni@uli.it, ruslan@shevchenko.kiev.ua, seb@bluetail.com, Ade Lovett , ports@FreeBSD.org, mi@aldan.algebra.com, Neil Blakey-Milner , doc@FreeBSD.org, stable@FreeBSD.org, jkh@winston.osd.bsdi.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Now CC'ed to -doc as this is a Docs issue now] On 18-Sep-00 Kris Kennaway wrote: > On Mon, 18 Sep 2000, Neil Blakey-Milner wrote: > >> I agree with the "if it's not in a PR, it doesn't exist" sentiment quite >> a bit - PRs contain information specific to a certain problem, and that >> allows me to look at your PR in tkgnats and discover it's being >> neglected, instead of just wondering what's up, and considering setting >> it to feedback to see what's up. > > What this really boils down to is the same as in another thread recently - > committers are a scarce resource, and so the submitter needs to do what he > can to make the most efficient use of the resource (if he or she wants to > get his change committed in a timely fashion). We've had some good > suggestions here - the best thing would be to write up something for the > handbook on "How to make the best use of FreeBSD committers to get changes > applied", as Jordan has already suggested. Agreed. Here's my synopsis of what should go into such a document (probably changes to the existing "How To Contribute" page - http://www.FreeBSD.org/handbook/contrib-how.html ) * File all changes to either source, docs or a port as a PR under the appropriate catagory. And a message, or a CC of the PR, should be sent to the maintainer. * If the PR is for a port make sure that "port update" is in the synopsis field, if only so that it catches Neil Blakey-Milner's regular check for such PR's, but also to act as a good description. * If you are the MAINTAINER of a piece of code (or more likely a port) and don't have commit privs, put "MAINTAINER update" in the synopsis, for the same reasons as before. * If no reply is recieved within 1-2 weeks, then a reply to the PR should be sent to gnats-submit@FreeBSD.org detailing the attempts made to contact the maintainer. * Do we then recommend a general e-mail to -doc, -ports, -hackers or whatever the appropriate "development" list is, to find a more interested committer who may want to look at the PR? I don't think we should talk down the PR system in the Handbook, after all we do want to encourage people to take the time to write PRs. However, a carefully worded phrase to ensure that nobody has any "unrealistic expectations of the process" as Jordan democratically put it, should probably be included. I don't really have much experience of all this, I'm just trying to surmise what others have been saying. How have I done? --- Andrew Boothman http://sour.cream.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 19 21: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 475DB37B42C for ; Tue, 19 Sep 2000 21:40:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA48558; Tue, 19 Sep 2000 21:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 9711F37B423 for ; Tue, 19 Sep 2000 21:35:35 -0700 (PDT) Received: (from root@localhost) by spare.westbend.net (8.9.3/8.9.3) id WAA95772; Tue, 19 Sep 2000 22:36:49 -0500 (CDT) (envelope-from admin) Message-Id: <200009200336.WAA95772@spare.westbend.net> Date: Tue, 19 Sep 2000 22:36:49 -0500 (CDT) From: "Scot W. Hetzel" Reply-To: "Scot W. Hetzel" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21411: Cyrus-SASL DB3 Fix (Maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21411 >Category: ports >Synopsis: Cyrus-SASL autodetected DB3, but fails to find includes >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 Sep 19 21:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 4.1-STABLE i386 >Organization: West Bend Internet >Environment: >Description: By default cyrus-sasl autodetects the databases (berkeley, gdbm, ndbm, none) that it is going to use. When DB3 is installed on a system, it fails to build db_berkley.c, due to it doesn't know where the DB3 include files are located. >How-To-Repeat: >Fix: Fixed the problem by defaulting Cyrus-SASL to use ndbm, and made DB3 an option. Changed Files: Makefile patches/patch-ab scripts/configure.sasl diff -ruN cyrus-sasl.orig/Makefile cyrus-sasl/Makefile --- cyrus-sasl.orig/Makefile Mon Sep 18 21:59:24 2000 +++ cyrus-sasl/Makefile Tue Sep 19 22:18:48 2000 @@ -43,12 +43,18 @@ --enable-static \ --enable-login \ --with-pwcheck=/var/pwcheck \ + --with-dblib=ndbm \ --with-rc4=openssl SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ PREFIX="${PREFIX}" \ TOUCH="${TOUCH}" \ - MKDIR="${MKDIR}" + MKDIR="${MKDIR}" \ + ENABLE_DB3="${ENABLE_DB3}" \ + ENABLE_MYSQL="${ENABLE_MYSQL}" \ + ENABLE_LDAP="${ENABLE_LDAP}" + +# ENABLE_* variables can be used by depending ports to enable options. # JavaSASL needs someone to look at to get it to build #JAVADIR= jdk1.1.8 diff -ruN cyrus-sasl.orig/patches/patch-ab cyrus-sasl/patches/patch-ab --- cyrus-sasl.orig/patches/patch-ab Sat Sep 16 14:01:30 2000 +++ cyrus-sasl/patches/patch-ab Tue Sep 19 22:01:21 2000 @@ -1,5 +1,5 @@ --- configure.in.orig Thu Jul 20 21:35:01 2000 -+++ configure.in Sat Sep 16 13:58:02 2000 ++++ configure.in Tue Sep 19 21:51:11 2000 @@ -66,8 +66,9 @@ dnl check for -R, etc. switch CMU_GUESS_RUNPATH_SWITCH @@ -12,7 +12,21 @@ AM_DISABLE_STATIC -@@ -310,6 +311,88 @@ +@@ -232,6 +233,13 @@ + SASL_DB_BACKEND="db_${dblib}.lo" + AC_DEFINE(SASL_BERKELEYDB) + SASL_DB_LIB="-ldb" ++ for db3loc in ${prefix} /usr/local /usr ++ do ++ if test -d ${db3loc}/include/db3; then ++ CPPFLAGS="-I${db3loc}/include/db3 $CPPFLAGS" ++ break ++ fi ++ done + ;; + *) + AC_MSG_WARN([Disabling SASL authentication database support]) +@@ -310,6 +318,88 @@ fi AM_CONDITIONAL(PWCHECK, test "$with_pwcheck" != no) @@ -101,7 +115,7 @@ dnl CRAM-MD5 AC_ARG_ENABLE(cram, [ --enable-cram enable CRAM-MD5 authentication [yes] ], cram=$enableval, -@@ -434,11 +517,15 @@ +@@ -434,11 +524,15 @@ fi if test "$with_des" != no; then diff -ruN cyrus-sasl.orig/scripts/configure.sasl cyrus-sasl/scripts/configure.sasl --- cyrus-sasl.orig/scripts/configure.sasl Mon Sep 18 21:59:29 2000 +++ cyrus-sasl/scripts/configure.sasl Tue Sep 19 22:17:43 2000 @@ -6,13 +6,43 @@ fi if [ "${BATCH}" ]; then - exit + if [ "x${ENABLE_DB3}" = "xYES" ]; then + OPTIONS=\"DB3\" + fi + if [ "x${ENABLE_MYSQL}" = "xYES" ]; then + OPTIONS="${OPTIONS} \"MySQL\"" + fi + if [ "x${ENABLE_LDAP}" = "xYES" ]; then + OPTIONS="${OPTIONS} \"OpenLDAP\"" + fi + if [ "x${OPTIONS}" != "x" ]; then + set ${OPTIONS} + fi else - /usr/bin/dialog --title "Additional pwcheck methods" --clear \ + + if [ "x${ENABLE_DB3}" = "xYES" -o -f ${PREFIX}/lib/libdb3.so ] ; then + SET_DB3="ON" + else + SET_DB3="OFF" + fi + if [ "x${ENABLE_MYSQL}" = "xYES" -o -f ${PREFIX}/lib/libmysqlclient.so ] ; then + SET_MYSQL="ON" + else + SET_MYSQL="OFF" + fi + if [ "x${ENABLE_LDAP}" = "xYES" -o \ + -f ${PREFIX}/lib/libldap.so -a -f ${PREFIX}/lib/liblber.so ] ; then + SET_LDAP="ON" + else + SET_LDAP="OFF" + fi + + /usr/bin/dialog --title "Additional SASL options" --clear \ --checklist "\n\ Please select desired options:" -1 -1 16 \ -MySQL "MySQL password Authentication" OFF \ -OpenLDAP "OpenLDAP password Authentication" OFF \ +DB3 "Berkeley DB package, revision 3" ${SET_DB3} \ +MySQL "MySQL password Authentication" ${SET_MYSQL} \ +OpenLDAP "OpenLDAP password Authentication" ${SET_LDAP} \ 2> /tmp/checklist.tmp.$$ retval=$? @@ -40,6 +70,13 @@ while [ "$1" ]; do case $1 in + \"DB3\") + #Can't use LIB_DEPENDS - no libdb3.so.1 in db3 port + #echo "LIB_DEPENDS+= db3.1:\${PORTSDIR}/databases/db3" + echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libdb3.1.so:\${PORTSDIR}/databases/db3" + echo "RUN_DEPENDS+= \${LOCALBASE}/lib/libdb3.1.so:\${PORTSDIR}/databases/db3" + echo "CONFIGURE_ARGS+=--with-dblib=berkeley" + ;; \"MySQL\") echo "LIB_DEPENDS+= mysqlclient.6:\${PORTSDIR}/databases/mysql322-client" echo "CONFIGURE_ARGS+=--with-mysql=\${PREFIX}" >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 Sep 19 22:24: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 1A6AA37B423; Tue, 19 Sep 2000 22:24:50 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA58723; Tue, 19 Sep 2000 22:24:50 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Tue, 19 Sep 2000 22:24:50 -0700 (PDT) From: Message-Id: <200009200524.WAA58723@freefall.freebsd.org> To: kosmos@bowhill.yi.org, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21403: ruby14-tk has duplicate entries in INDEX Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ruby14-tk has duplicate entries in INDEX State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Wed Sep 20 14:24:32 JST 2000 State-Changed-Why: Fixed, thanks! ;> http://www.freebsd.org/cgi/query-pr.cgi?pr=21403 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 0:17:45 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 AA7B637B424 for ; Wed, 20 Sep 2000 00:17: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 KAA17759; Wed, 20 Sep 2000 10:17:29 +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 e8K7HMS20278; Wed, 20 Sep 2000 10:17:22 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C86477.D017925A@FreeBSD.org> Date: Wed, 20 Sep 2000 10:17:11 +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: Thomas Schuerger Cc: freebsd-ports@FreeBSD.org Subject: Re: Request: SDL_image References: <200009191827.e8JIRWn02526@wjpserver.cs.uni-sb.de> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas Schuerger wrote: > Hi! > > I'd like to see a port of SDL-image (libSDL_image) for FreeBSD. The > library is required for a couple of good games. The source code is > available at > > http://www.devolution.com/~slouken/SDL/projects/SDL_image/index.html I've just added it. Enjoy! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 1:41: 3 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 41EFB37B422 for ; Wed, 20 Sep 2000 01:41:01 -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 RAA27043; Wed, 20 Sep 2000 17:40:59 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8K8eOW01755; Wed, 20 Sep 2000 17:40:24 +0900 (JST) Date: Wed, 20 Sep 2000 17:40:24 +0900 Message-ID: <861yyfjw1z.wl@daemon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: Vivek Khera Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel In-Reply-To: In your message of "Tue, 19 Sep 2000 11:08:07 -0400 (EDT)" <14791.33111.87575.9387@onceler.kciLink.com> References: <200009160902.CAA78123@freefall.freebsd.org> <14791.33111.87575.9387@onceler.kciLink.com> User-Agent: Wanderlust/2.3.0 (Roam) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 Emacs/20.7 (i386--freebsd) MULE/4.0 (HANANOEN) 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 Tue, 19 Sep 2000 11:08:07 -0400 (EDT), Vivek Khera wrote: > Before I check it out, does this fix avoid hanging the kernel as soon > as the module is loaded? Last I tried on 4.1-STABLE it locked so > tight that the keyboard didn't even respond to caps lock. At least it doesn't lock or freeze on my 4-STABLE and 5-CURRENT boxen. Anyone else suffered a freeze? -- / /__ __ / ) ) ) ) / 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 Wed Sep 20 1:50: 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 DEC0937B42C; Wed, 20 Sep 2000 01:49:53 -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 LAA19602; Wed, 20 Sep 2000 11:49:42 +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 e8K8mNS20864; Wed, 20 Sep 2000 11:48:23 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C879CB.D63CCF39@FreeBSD.org> Date: Wed, 20 Sep 2000 11:48:11 +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: reg@FreeBSD.org Cc: ports@FreeBSD.org Subject: Patch for libtool port to keep USE_LIBTOOL hack compatible with configure scripts generated for libtool1.4 Content-Type: multipart/mixed; boundary="------------659E79F0B379F57254BB96F1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------659E79F0B379F57254BB96F1 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hi, I wonder if anyone noticed that configure scrripts generated for libtool1.4 could not be uses unmodified with USE_LIBTOOL hack. The problem is that those configures calls ltconfig with "--build=blabla" option, which doesn't exists in libtool1.3.1, so configure script bails out. Of course patch can be applied to all those configure scripts, but given increasing number of software based on 1.4 it probably would be better to patch out libtool port. With this message I'm attaching patch against current libtool port which should solve the problem. To give you a point for estimating usability of this patch following is the list of patches, which contain workarrounds mentioned above: audio/sdl_mixer/patches/patch-ab databases/metakit/patches/patch-ad devel/sdl/patches/patch-ac graphics/ImageMagick/patches/patch-aj net/icqlib/patches/patch-ad textproc/aspell/patches/patch-ah textproc/pspell/patches/patch-aa textproc/pspell/patches/patch-ab textproc/pspell-ispell/patches/patch-aa -Maxim --------------659E79F0B379F57254BB96F1 Content-Type: text/plain; charset=koi8-r; name="libtool.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="libtool.patch" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/libtool/Makefile,v retrieving revision 1.11 diff -d -u -r1.11 Makefile --- Makefile 2000/04/11 21:28:49 1.11 +++ Makefile 2000/09/20 08:44:42 @@ -7,6 +7,7 @@ PORTNAME= libtool PORTVERSION= 1.3.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool Index: patches/patch-ac =================================================================== RCS file: /home/ncvs/ports/devel/libtool/patches/patch-ac,v retrieving revision 1.9 diff -d -u -r1.9 patch-ac --- patches/patch-ac 2000/04/02 08:26:22 1.9 +++ patches/patch-ac 2000/09/20 08:44:42 @@ -1,5 +1,5 @@ ---- ltconfig.orig Tue Dec 7 13:50:48 1999 -+++ ltconfig Mon Jan 17 16:31:24 2000 +--- ltconfig.orig Tue Dec 7 23:50:48 1999 ++++ ltconfig Wed Sep 20 11:11:39 2000 @@ -169,7 +169,7 @@ # Constants: PROGRAM=ltconfig @@ -18,7 +18,12 @@ enable_dlopen=unknown enable_win32_dll=no ltmain= -@@ -246,6 +248,9 @@ +@@ -242,10 +244,14 @@ + + Generate a system-specific libtool script. + ++ --build no-op to keep compatability with configure scripts generated for 1.4 + --debug enable verbose shell tracing --disable-shared do not build shared libraries --disable-static do not build static libraries --disable-fast-install do not optimize for fast installation @@ -28,7 +33,16 @@ --enable-dlopen enable dlopen support --enable-win32-dll enable building dlls on win32 hosts --help display this help and exit -@@ -279,6 +284,12 @@ +@@ -268,6 +274,8 @@ + exit 0 + ;; + ++ --build=*) ;; ++ + --debug) + echo "$progname: enabling shell trace mode" + set -x +@@ -279,6 +287,12 @@ --disable-fast-install) enable_fast_install=no ;; @@ -41,7 +55,7 @@ --enable-dlopen) enable_dlopen=yes ;; --enable-win32-dll) enable_win32_dll=yes ;; -@@ -971,11 +982,11 @@ +@@ -971,11 +985,11 @@ $rm conftest.dat if ln -s X conftest.dat 2>/dev/null; then $rm conftest.dat @@ -55,7 +69,7 @@ echo "$ac_t"yes 1>&6 else echo "$ac_t"no 1>&6 -@@ -1226,8 +1237,8 @@ +@@ -1226,8 +1240,8 @@ *) if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then @@ -66,7 +80,7 @@ else ld_shlibs=no fi -@@ -1353,14 +1364,6 @@ +@@ -1353,14 +1367,6 @@ hardcode_shlibpath_var=no ;; @@ -81,7 +95,7 @@ hpux9* | hpux10* | hpux11*) case "$host_os" in hpux9*) archive_cmds='$rm $objdir/$soname~$LD -b +b $install_libdir -o $objdir/$soname $libobjs $deplibs $linkopts~test $objdir/$soname = $lib || mv $objdir/$soname $lib' ;; -@@ -1775,7 +1778,7 @@ +@@ -1775,7 +1781,7 @@ version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" @@ -90,7 +104,7 @@ file_magic_cmd= file_magic_test_file= deplibs_check_method='unknown' -@@ -1874,18 +1877,21 @@ +@@ -1874,18 +1880,21 @@ case "$version_type" in freebsd-elf*) deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object' @@ -120,7 +134,7 @@ shlibpath_var=LD_LIBRARY_PATH case "$host_os" in freebsd2* | freebsd3.[01]* | freebsdelf3.[01]*) -@@ -2776,6 +2782,15 @@ +@@ -2776,6 +2785,15 @@ # Shell to use when invoking shell scripts. SHELL=$LTSHELL --------------659E79F0B379F57254BB96F1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 1:50:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from uni-sb.de (uni-sb.de [134.96.252.33]) by hub.freebsd.org (Postfix) with ESMTP id 10C4037B422; Wed, 20 Sep 2000 01:50:13 -0700 (PDT) Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.11.0/2000072000) with ESMTP id KAA10543; Wed, 20 Sep 2000 10:49:45 +0200 (CEST) Received: from wjpserver.cs.uni-sb.de (wjpserver.cs.uni-sb.de [134.96.247.42]) by cs.uni-sb.de (8.11.0/2000072000) with ESMTP id KAA28792; Wed, 20 Sep 2000 10:50:56 +0200 (CEST) Received: (from schuerge@localhost) by wjpserver.cs.uni-sb.de (8.11.0/8.11.0/wjp-SVR4/1999052600) id e8K8o9X06522; Wed, 20 Sep 2000 10:50:09 +0200 (MET DST) From: Thomas Schuerger Message-Id: <200009200850.e8K8o9X06522@wjpserver.cs.uni-sb.de> Subject: Re: Request: SDL_image In-Reply-To: <39C86477.D017925A@FreeBSD.org> from Maxim Sobolev at "Sep 20, 2000 10:17:11 am" To: Maxim Sobolev Date: Wed, 20 Sep 2000 10:50:09 +0200 (MET DST) Cc: freebsd-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL57 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Thomas Schuerger wrote: > > > Hi! > > > > I'd like to see a port of SDL-image (libSDL_image) for FreeBSD. The > > library is required for a couple of good games. The source code is > > available at > > > > http://www.devolution.com/~slouken/SDL/projects/SDL_image/index.html > > I've just added it. Enjoy! Wow, that was quick. Thanks!! Ciao, Thomas Schürger. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 2:29:29 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 BEBF637B422; Wed, 20 Sep 2000 02:29:26 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id FAA07748; Wed, 20 Sep 2000 05:29:20 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8K9TEH67316; Wed, 20 Sep 2000 02:29:14 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Wed, 20 Sep 2000 02:29:14 -0700 (PDT) Message-Id: <200009200929.e8K9TEH67316@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: jkh@FreeBSD.org, ports@FreeBSD.org, hetzels@westbend.net In-reply-to: <200009192342.e8JNgMj64933@silvia.hip.berkeley.edu> (asami@FreeBSD.org) Subject: Re: PR ports/13649, ports/13650 (conflicts) From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) References: <200009192342.e8JNgMj64933@silvia.hip.berkeley.edu> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Please review the following patch to pkg_install tools to add two * things: -C (conflicts) support and wildcard matching (also used for * conflict checking, but it will also enable users to do things like * "pkg_info -e 'emacs*'" to see which, if any, emacs ports are * installed). Oops, found one bug...it's what's been causing the pkg_add: can't open dependency file '/var/db/pkg/m4-1.4/+REQUIRED_BY/+REQUIRED_BY'! type of errors in the most recent (aborted) log. Please comment out the two lines: === strcat(contents, "/"); strcat(contents, REQUIRED_BY_FNAME); === near the end of the add/perform.c patch. "/+REQUIRED_BY" is already added a few lines above. Also, I noticed this patch makes pkg_add -f exit with an error when the package is already installed. Looking at the manual, this is probably the correct thing to do (the manual only says it will ignore prerequisite or requirement failures). I will adjust my package build scripts accordingly. It is easy, I just need to do a "pkg_info -e" first. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 3:17:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lh00.opsion.fr (lh00.opsion.fr [212.73.208.226]) by hub.freebsd.org (Postfix) with SMTP id 4FB3237B424 for ; Wed, 20 Sep 2000 03:17:13 -0700 (PDT) Received: from 193.190.156.207 [193.190.156.207] by lh00.opsion.fr; Wed, 20 Sep 2000 10:15:39 GMT Message-ID: <39C891DD.5040500@ifrance.com> Date: Wed, 20 Sep 2000 12:30:53 +0200 From: Olivier Cherrier Organization: CEDITI User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.0-RELEASE i386; en-US; m16) Gecko/20000613 X-Accept-Language: en MIME-Version: 1.0 To: peter@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: librsaintl-1.1 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Peter. Is the librsaintl-1.1 removal the cause of the ssh2 port removal ? Thanks a lot. Olivier. ______________________________________________________________________________ Vous avez un site perso ? 2 millions de francs à gagner sur i(france) ! Webmasters : ZE CONCOURS ! http://www.ifrance.com/_reloc/concours.emailif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 3: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 8F9B237B42C for ; Wed, 20 Sep 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA12324; Wed, 20 Sep 2000 03:30: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 033E837B422 for ; Wed, 20 Sep 2000 03:23:56 -0700 (PDT) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id OAA30298; Wed, 20 Sep 2000 14:23:52 +0400 (MSD) (envelope-from dima) Message-Id: <200009201023.OAA30298@chg.ru> Date: Wed, 20 Sep 2000 14:23:52 +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/21413: New port: net/zebra-server Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21413 >Category: ports >Synopsis: New port: net/zebra-server >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 Sep 20 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: Z39.50 protocol server. Depends on yaz port I just submitted. Actually, this software is called 'zebra', I changed this to zebra-server due to conflict with the existing net/zebra port. >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: # # . # ./COMMENT # ./DESCR # ./PLIST # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./COMMENT sed 's/^X//' >./COMMENT << 'END-of-./COMMENT' XZ39.50/SR server software END-of-./COMMENT echo x - ./DESCR sed 's/^X//' >./DESCR << 'END-of-./DESCR' XThe Zebra server combines a versatile fielded/free-text indexing/search Xengine with a Z39.50-1995 frontend to provide a powerful and flexible Xinformation mining tool. X X X- Dmitry Sivachenko, Xdima@Chg.RU END-of-./DESCR echo x - ./PLIST sed 's/^X//' >./PLIST << 'END-of-./PLIST' Xbin/zebraidx Xbin/zebrasrv Xshare/zebra-server/tab/bib1.att Xshare/zebra-server/tab/dan1.att Xshare/zebra-server/tab/danmarc.abs Xshare/zebra-server/tab/default.idx Xshare/zebra-server/tab/explain.abs Xshare/zebra-server/tab/explain.att Xshare/zebra-server/tab/explain.tag Xshare/zebra-server/tab/generic.tag Xshare/zebra-server/tab/gils-a.est Xshare/zebra-server/tab/gils-b.est Xshare/zebra-server/tab/gils-f.est Xshare/zebra-server/tab/gils-g.est Xshare/zebra-server/tab/gils-summary.map Xshare/zebra-server/tab/gils-usmarc.map Xshare/zebra-server/tab/gils-variant.est Xshare/zebra-server/tab/gils.abs Xshare/zebra-server/tab/gils.att Xshare/zebra-server/tab/gils.tag Xshare/zebra-server/tab/hci.flt Xshare/zebra-server/tab/mail.flt Xshare/zebra-server/tab/meta-b.est Xshare/zebra-server/tab/meta-usmarc.map Xshare/zebra-server/tab/meta.abs Xshare/zebra-server/tab/meta.tag Xshare/zebra-server/tab/news.flt Xshare/zebra-server/tab/numeric.chr Xshare/zebra-server/tab/nwi.flt Xshare/zebra-server/tab/refer.flt Xshare/zebra-server/tab/scan.chr Xshare/zebra-server/tab/sgml.flt Xshare/zebra-server/tab/soif.flt Xshare/zebra-server/tab/string.chr Xshare/zebra-server/tab/summary.abs Xshare/zebra-server/tab/summary.tag Xshare/zebra-server/tab/tagsetg.tag Xshare/zebra-server/tab/tagsetm.tag Xshare/zebra-server/tab/urx.chr Xshare/zebra-server/tab/usmarc-b.est Xshare/zebra-server/tab/usmarc.abs Xshare/zebra-server/tab/usmarc.flt Xshare/zebra-server/tab/usmarc.mar Xshare/zebra-server/tab/usmarc.tag Xshare/zebra-server/tab/var1.var Xshare/zebra-server/tab/wais-b.est Xshare/zebra-server/tab/wais-variant.est Xshare/zebra-server/tab/wais.abs Xshare/doc/zebra-server/Makefile Xshare/doc/zebra-server/README Xshare/doc/zebra-server/gils-1.html Xshare/doc/zebra-server/gils-2.html Xshare/doc/zebra-server/gils-3.html Xshare/doc/zebra-server/gils-4.html Xshare/doc/zebra-server/gils-5.html Xshare/doc/zebra-server/gils-6.html Xshare/doc/zebra-server/gils.html Xshare/doc/zebra-server/gils.sgml Xshare/doc/zebra-server/gils.txt Xshare/doc/zebra-server/zebra-1.html Xshare/doc/zebra-server/zebra-2.html Xshare/doc/zebra-server/zebra-3.html Xshare/doc/zebra-server/zebra-4.html Xshare/doc/zebra-server/zebra-5.html Xshare/doc/zebra-server/zebra-6.html Xshare/doc/zebra-server/zebra-7.html Xshare/doc/zebra-server/zebra-8.html Xshare/doc/zebra-server/zebra-9.html Xshare/doc/zebra-server/zebra.html Xshare/doc/zebra-server/zebra.sgml Xshare/doc/zebra-server/zebra.txt X@dirrm share/zebra-server/tab X@dirrm share/doc/zebra-server END-of-./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 Wed Sep 20 3: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 71BC237B423 for ; Wed, 20 Sep 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA12315; Wed, 20 Sep 2000 03:30: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 94D4037B422 for ; Wed, 20 Sep 2000 03:21:05 -0700 (PDT) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id OAA30106; Wed, 20 Sep 2000 14:20:32 +0400 (MSD) (envelope-from dima) Message-Id: <200009201020.OAA30106@chg.ru> Date: Wed, 20 Sep 2000 14:20:32 +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/21412: New port: net/yaz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21412 >Category: ports >Synopsis: New port: net/yaz >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 Sep 20 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: YAZ is Z39.50 protocol API and sample 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: # # . # ./files # ./files/md5 # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./Makefile # ./patches # ./patches/patch-aa # ./patches/patch-ab # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (yaz-1.6.tar.gz) = 1c90c1b7c1f646786363f13cd13254e6 END-of-./files/md5 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XZ39.50/SR client and API library END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XYAZ is a compact toolkit that provides access to the Z39.50/SR Xprotocol, as well as a set of higher-level tools for implementing the Xserver and client roles, respectively. END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/yaz-comp Xbin/yaz-config Xbin/yaz-client Xbin/yaz-ztest Xshare/yaz/tab/bib1.att Xshare/yaz/tab/dan1.att Xshare/yaz/tab/danmarc.abs Xshare/yaz/tab/explain.abs Xshare/yaz/tab/explain.att Xshare/yaz/tab/explain.tag Xshare/yaz/tab/generic.tag Xshare/yaz/tab/gils-a.est Xshare/yaz/tab/gils-b.est Xshare/yaz/tab/gils-f.est Xshare/yaz/tab/gils-g.est Xshare/yaz/tab/gils-summary.map Xshare/yaz/tab/gils-usmarc.map Xshare/yaz/tab/gils-variant.est Xshare/yaz/tab/gils.abs Xshare/yaz/tab/gils.att Xshare/yaz/tab/gils.tag Xshare/yaz/tab/meta-b.est Xshare/yaz/tab/meta-usmarc.map Xshare/yaz/tab/meta.abs Xshare/yaz/tab/meta.tag Xshare/yaz/tab/summary.abs Xshare/yaz/tab/summary.tag Xshare/yaz/tab/tagsetg.tag Xshare/yaz/tab/tagsetm.tag Xshare/yaz/tab/usmarc-b.est Xshare/yaz/tab/usmarc.abs Xshare/yaz/tab/usmarc.mar Xshare/yaz/tab/usmarc.tag Xshare/yaz/tab/var1.var Xshare/yaz/tab/wais-b.est Xshare/yaz/tab/wais-variant.est Xshare/yaz/tab/wais.abs Xshare/doc/yaz/yaz.sgml Xshare/doc/yaz/profiles.sgml Xshare/doc/yaz/yaz.txt Xshare/doc/yaz/yaz.ps Xshare/doc/yaz/profiles.txt Xshare/doc/yaz/profiles.ps Xshare/doc/yaz/yaz.html Xshare/doc/yaz/yaz-1.html Xshare/doc/yaz/yaz-2.html Xshare/doc/yaz/yaz-3.html Xshare/doc/yaz/yaz-4.html Xshare/doc/yaz/yaz-5.html Xshare/doc/yaz/yaz-6.html Xshare/doc/yaz/yaz-7.html Xshare/doc/yaz/yaz-8.html Xshare/doc/yaz/yaz-9.html Xinclude/yaz/backend.h Xinclude/yaz/ccl.h Xinclude/yaz/comstack.h Xinclude/yaz/d1_attset.h Xinclude/yaz/d1_map.h Xinclude/yaz/data1.h Xinclude/yaz/diagbib1.h Xinclude/yaz/log.h Xinclude/yaz/logrpn.h Xinclude/yaz/marcdisp.h Xinclude/yaz/nmem.h Xinclude/yaz/odr.h Xinclude/yaz/oid.h Xinclude/yaz/options.h Xinclude/yaz/otherinfo.h Xinclude/yaz/pquery.h Xinclude/yaz/prt-ext.h Xinclude/yaz/readconf.h Xinclude/yaz/statserv.h Xinclude/yaz/tcpip.h Xinclude/yaz/tpath.h Xinclude/yaz/wrbuf.h Xinclude/yaz/xmalloc.h Xinclude/yaz/yaz-ccl.h Xinclude/yaz/yaz-util.h Xinclude/yaz/yaz-version.h Xinclude/yaz/yconfig.h Xinclude/yaz/proto.h Xinclude/yaz/ill.h Xinclude/yaz/ill-core.h Xinclude/yaz/item-req.h Xinclude/yaz/z-accdes1.h Xinclude/yaz/z-accform1.h Xinclude/yaz/z-acckrb1.h Xinclude/yaz/z-core.h Xinclude/yaz/z-date.h Xinclude/yaz/z-diag1.h Xinclude/yaz/z-espec1.h Xinclude/yaz/z-estask.h Xinclude/yaz/z-exp.h Xinclude/yaz/z-grs.h Xinclude/yaz/z-opac.h Xinclude/yaz/z-proto.h Xinclude/yaz/z-rrf1.h Xinclude/yaz/z-rrf2.h Xinclude/yaz/z-sum.h Xinclude/yaz/z-sutrs.h Xinclude/yaz/z-uifr1.h Xinclude/yaz/z-univ.h Xinclude/yaz/zes-expi.h Xinclude/yaz/zes-exps.h Xinclude/yaz/zes-order.h Xinclude/yaz/zes-pquery.h Xinclude/yaz/zes-psched.h Xinclude/yaz/zes-pset.h Xinclude/yaz/zes-update.h Xinclude/yaz/zes-update0.h Xinclude/yaz/prt-acc.h Xinclude/yaz/prt-add.h Xinclude/yaz/prt-arc.h Xinclude/yaz/prt-dat.h Xinclude/yaz/prt-dia.h Xinclude/yaz/prt-esp.h Xinclude/yaz/prt-exd.h Xinclude/yaz/prt-exp.h Xinclude/yaz/prt-grs.h Xinclude/yaz/prt-proto.h Xinclude/yaz/prt-rsc.h Xinclude/yaz/prt-univ.h Xlib/libyaz.a X@dirrm include/yaz X@dirrm share/yaz/tab X@dirrm share/yaz X@dirrm share/doc/yaz END-of-./pkg/PLIST echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: yaz X# Date created: 16 Sep 2000 X# Whom: Dmitry Sivachenko X# X# $FreeBSD:$ X# X XPORTNAME= yaz XPORTVERSION= 1.6 XCATEGORIES= net XMASTER_SITES= ftp://ftp.indexdata.dk/pub/yaz/ X XMAINTAINER= dima@Chg.RU X XGNU_CONFIGURE= yes X Xpost-install: X.if !defined(NOPORTDOCS) X @(cd ${WRKSRC}/doc; ${MAKE} install) X.endif X X.include END-of-./Makefile echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-aa sed 's/^X//' >./patches/patch-aa << 'END-of-./patches/patch-aa' X--- doc/Makefile.in.orig Sun Sep 10 19:25:39 2000 X+++ doc/Makefile.in Sun Sep 10 19:26:24 2000 X@@ -37,6 +37,7 @@ X pkgdatadir = $(datadir)/@PACKAGE@ X pkglibdir = $(libdir)/@PACKAGE@ X pkgincludedir = $(includedir)/@PACKAGE@ X+docdir = $(datadir)/doc/@PACKAGE@ X X top_builddir = .. X X@@ -78,7 +79,6 @@ X SUBDIRS_VAR = @SUBDIRS_VAR@ X VERSION = @VERSION@ X X-docdir = $(pkgdatadir)/doc X X doc_DATA = yaz.sgml profiles.sgml yaz.txt yaz.ps profiles.txt profiles.ps yaz.html yaz-1.html yaz-2.html yaz-3.html yaz-4.html yaz-5.html yaz-6.html yaz-7.html yaz-8.html yaz-9.html X END-of-./patches/patch-aa echo x - ./patches/patch-ab sed 's/^X//' >./patches/patch-ab << 'END-of-./patches/patch-ab' X--- odr/ber_int.c.orig Sat Sep 16 14:19:39 2000 X+++ odr/ber_int.c Sat Sep 16 14:18:46 2000 X@@ -71,6 +71,9 @@ X #ifdef WIN32 X #include X #else X+#include X+#include X+#include X #include X #endif X END-of-./patches/patch-ab 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 Sep 20 3:30: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 AB43837B422 for ; Wed, 20 Sep 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA12333; Wed, 20 Sep 2000 03:30: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 BE2A237B43C for ; Wed, 20 Sep 2000 03:27:07 -0700 (PDT) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id OAA30477; Wed, 20 Sep 2000 14:27:06 +0400 (MSD) (envelope-from dima) Message-Id: <200009201027.OAA30477@chg.ru> Date: Wed, 20 Sep 2000 14:27:06 +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/21414: New port: www/mod_zap Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21414 >Category: ports >Synopsis: New port: www/mod_zap >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 Sep 20 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: An Apache module which privides Z39.50 access through WWW. >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: # # . # ./files # ./files/md5 # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (zap-1.0.tar.gz) = e54d68acf9edc4ce9cf533a5d3a8e71a END-of-./files/md5 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XAn Apache module that provides Z39.50 access through WWW END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XThe ZAP package is an Apache module that provides Z39.50 access through XWorld Wide Web. X X XDmitry Sivachenko, Xdima@Chg.RU END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xlibexec/apache/mod_zap.so Xshare/mod_zap/advanced.html Xshare/mod_zap/advanced.zap Xshare/mod_zap/ccl.html Xshare/mod_zap/cgi.html Xshare/mod_zap/default.zap Xshare/mod_zap/full.zap Xshare/mod_zap/gils-display-f.zap Xshare/mod_zap/search.html Xshare/mod_zap/simple.html Xshare/mod_zap/simple.zap Xshare/mod_zap/thesaurus.zap Xshare/mod_zap/try.html X@dirrm share/mod_zap END-of-./pkg/PLIST echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: mod_zap Apache module X# Date created: 20 Sep 2000 X# Whom: Dmitry Sivachenko X# X# $FreeBSD:$ X# X XPORTNAME= mod_zap XPORTVERSION= 1.0 XCATEGORIES= www XMASTER_SITES= ftp://ftp.indexdata.dk/pub/yaz/ XDISTNAME= zap-${PORTVERSION} X XMAINTAINER= dima@Chg.RU X XBUILD_DEPENDS= ${LOCALBASE}/bin/yaz-config:${PORTSDIR}/net/yaz \ X ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 XRUN_DEPENDS= ${LOCALBASE}/bin/yaz-config:${PORTSDIR}/net/yaz \ X ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-yazconfig=${LOCALBASE}/bin \ X --with-apxs=${LOCALBASE}/sbin/apxs X Xpost-install: X @${MKDIR} ${PREFIX}/share/mod_zap X @${INSTALL_DATA} ${WRKSRC}/htdocs/zap/* ${PREFIX}/share/mod_zap X X.include END-of-./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 Sep 20 3:57:22 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 044C837B424 for ; Wed, 20 Sep 2000 03:57:20 -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 e8KAvEQ22020 for ; Wed, 20 Sep 2000 06:57:14 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39C89800.DB9A4EB3@thehousleys.net> Date: Wed, 20 Sep 2000 06:57:04 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: bento Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms0E7ECA8BD5089030DBE8C398" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms0E7ECA8BD5089030DBE8C398 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit What is bento.freebsd.org's schedule? It looks like it starts cvs update on Monday and then builds. The logs don't show it starting this week. I had several ports updated last week and want to make sure bento builds them fine for 4.1.1 on Sept 25th. Jim -- Unix is like a wigwam -- no Gates, no Windows, and an Apache inside. --------------ms0E7ECA8BD5089030DBE8C398 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIH7gYJKoZIhvcNAQcCoIIH3zCCB9sCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC Bb8wggKjMIICDKADAgECAgMDLRswDQYJKoZIhvcNAQEEBQAwgZQxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZU aGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25h bCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MB4XDTAwMDgzMTExMjUzM1oXDTAxMDgzMTExMjUz M1owRTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEiMCAGCSqGSIb3DQEJARYT amltQHRoZWhvdXNsZXlzLm5ldDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAoecaMx4y p2rGru9O4EGcnetN3YJekZy3C7BvhxuvN+fboBpG2MSEUMBZzGX0CSZwBC1SapoZnyqzRItc OgUjSRrUhGfcSQ0nZv/dxaWb3L68+f4pDkALZ4WxR7feY8Cur2SrybM0wtpGcTioNWKbMNRd wDBxD/jgggHAa8hSo3sCAwEAAaNRME8wHgYDVR0RBBcwFYETamltQHRoZWhvdXNsZXlzLm5l dDAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFIir8WCDZlX05FjHRh3AYb0j18OMMA0GCSqG SIb3DQEBBAUAA4GBAE2PrU05luhZFcnuwpIpcqFqg+F5uuN4XO9tSX1KTCI1/YIUoTUuMyQa FO/n+Xm9xxv36v+RzVFbXjaDbg6m89qyWeawORQplL0JhXQmh10Anjg/RkBwt02FeLjbTZ7Z 6PiLOLKfuLPFYTcaSBavOIRbvVSWrK6o7DmZKhe1YgWVMIIDFDCCAn2gAwIBAgIBCzANBgkq hkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAG A1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3 dGUuY29tMB4XDTk5MDkxNjE0MDE0MFoXDTAxMDkxNTE0MDE0MFowgZQxCzAJBgNVBAYTAlpB MRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQK EwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJz b25hbCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB gQCzaVqX1NAWC3q1xV3pIZwjcs0STEv3fs/H+8pyJPRCUqxXleN7YXoXhOf9cjk4lLTq7WWn kgZeveBl9hm7lHl2TD65aHB1hBz0EXQAvAUsTwkDFzHM9EHUcsamXeKIRLCLLsRN8fDWhT5s 85WUeJF+QOmc0Y0VV47Cc+Uw3kb1TwIDAQABozcwNTASBgNVHRMBAf8ECDAGAQH/AgEAMB8G A1UdIwQYMBaAFHJJwnM0xlX0C3ZygX539IfnxrIOMA0GCSqGSIb3DQEBBAUAA4GBAGvGWekx +um27LED2N9ycv6RYEjqxlXde/BnjsZhcOdtwqU32J23FyhWBYvdXHVvxpGQxmxmcRPQEHxr kW+G4CE2LcHX6rIJrc8tbcaDUpv7u/6ch538t+l0kuRcl678fqzKDW9yemcsa3P1hvmd9QBu 9B0Hzp2egmMp75MJflXeMYIB9zCCAfMCAQEwgZwwgZQxCzAJBgNVBAYTAlpBMRUwEwYDVQQI EwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVl bWFpbCBSU0EgMTk5OS45LjE2AgMDLRswCQYFKw4DAhoFAKCBsTAYBgkqhkiG9w0BCQMxCwYJ KoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMDA5MjAxMDU3MTBaMCMGCSqGSIb3DQEJBDEW BBQcM3LR9QKyWpt+mvWH81UGi4VFoDBSBgkqhkiG9w0BCQ8xRTBDMAoGCCqGSIb3DQMHMA4G CCqGSIb3DQMCAgIAgDAHBgUrDgMCBzANBggqhkiG9w0DAgIBQDANBggqhkiG9w0DAgIBKDAN BgkqhkiG9w0BAQEFAASBgFMhdr5ZG/ULIt8by+UyuqLZpIZ3KExr64uewud5tt1KqEe1YBXJ QMBN72joGifo3/Ne0dtyx4wdORhnT9IVzEUWQYX5tnFpQzEIPKPaxCzHkdcRzuLbhHGZfP3j KGuDPk0Bq8sImi3niSabZiffx94me/5hs0n5aGGVCgvEO6GB --------------ms0E7ECA8BD5089030DBE8C398-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 4: 0: 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 D311E37B422 for ; Wed, 20 Sep 2000 04:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA15312; Wed, 20 Sep 2000 04:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 20 Sep 2000 04:00:02 -0700 (PDT) Message-Id: <200009201100.EAA15312@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dmitry Sivachenko Subject: Re: ports/21413: New port: net/zebra-server Reply-To: Dmitry Sivachenko Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21413; it has been noted by GNATS. From: Dmitry Sivachenko To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/21413: New port: net/zebra-server Date: Wed, 20 Sep 2000 14:49:09 +0400 On Wed, Sep 20, 2000 at 02:23:52PM +0400, Dmitry S. Sivachenko wrote: > > >Number: 21413 > >Category: ports > >Synopsis: New port: net/zebra-server Whoops! It seems I submitted only pkg/ directory. Use this shar instead. --dima # 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: # # . # ./files # ./files/md5 # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./patches # ./patches/patch-aa # ./patches/patch-ab # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (zebra-1.0pl1.tar.gz) = b09e0e90179df4e44ac02e8303568664 END-of-./files/md5 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XZ39.50/SR server software END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XThe Zebra server combines a versatile fielded/free-text indexing/search Xengine with a Z39.50-1995 frontend to provide a powerful and flexible Xinformation mining tool. X X X- Dmitry Sivachenko, Xdima@Chg.RU END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/zebraidx Xbin/zebrasrv Xshare/zebra-server/tab/bib1.att Xshare/zebra-server/tab/dan1.att Xshare/zebra-server/tab/danmarc.abs Xshare/zebra-server/tab/default.idx Xshare/zebra-server/tab/explain.abs Xshare/zebra-server/tab/explain.att Xshare/zebra-server/tab/explain.tag Xshare/zebra-server/tab/generic.tag Xshare/zebra-server/tab/gils-a.est Xshare/zebra-server/tab/gils-b.est Xshare/zebra-server/tab/gils-f.est Xshare/zebra-server/tab/gils-g.est Xshare/zebra-server/tab/gils-summary.map Xshare/zebra-server/tab/gils-usmarc.map Xshare/zebra-server/tab/gils-variant.est Xshare/zebra-server/tab/gils.abs Xshare/zebra-server/tab/gils.att Xshare/zebra-server/tab/gils.tag Xshare/zebra-server/tab/hci.flt Xshare/zebra-server/tab/mail.flt Xshare/zebra-server/tab/meta-b.est Xshare/zebra-server/tab/meta-usmarc.map Xshare/zebra-server/tab/meta.abs Xshare/zebra-server/tab/meta.tag Xshare/zebra-server/tab/news.flt Xshare/zebra-server/tab/numeric.chr Xshare/zebra-server/tab/nwi.flt Xshare/zebra-server/tab/refer.flt Xshare/zebra-server/tab/scan.chr Xshare/zebra-server/tab/sgml.flt Xshare/zebra-server/tab/soif.flt Xshare/zebra-server/tab/string.chr Xshare/zebra-server/tab/summary.abs Xshare/zebra-server/tab/summary.tag Xshare/zebra-server/tab/tagsetg.tag Xshare/zebra-server/tab/tagsetm.tag Xshare/zebra-server/tab/urx.chr Xshare/zebra-server/tab/usmarc-b.est Xshare/zebra-server/tab/usmarc.abs Xshare/zebra-server/tab/usmarc.flt Xshare/zebra-server/tab/usmarc.mar Xshare/zebra-server/tab/usmarc.tag Xshare/zebra-server/tab/var1.var Xshare/zebra-server/tab/wais-b.est Xshare/zebra-server/tab/wais-variant.est Xshare/zebra-server/tab/wais.abs Xshare/doc/zebra-server/Makefile Xshare/doc/zebra-server/README Xshare/doc/zebra-server/gils-1.html Xshare/doc/zebra-server/gils-2.html Xshare/doc/zebra-server/gils-3.html Xshare/doc/zebra-server/gils-4.html Xshare/doc/zebra-server/gils-5.html Xshare/doc/zebra-server/gils-6.html Xshare/doc/zebra-server/gils.html Xshare/doc/zebra-server/gils.sgml Xshare/doc/zebra-server/gils.txt Xshare/doc/zebra-server/zebra-1.html Xshare/doc/zebra-server/zebra-2.html Xshare/doc/zebra-server/zebra-3.html Xshare/doc/zebra-server/zebra-4.html Xshare/doc/zebra-server/zebra-5.html Xshare/doc/zebra-server/zebra-6.html Xshare/doc/zebra-server/zebra-7.html Xshare/doc/zebra-server/zebra-8.html Xshare/doc/zebra-server/zebra-9.html Xshare/doc/zebra-server/zebra.html Xshare/doc/zebra-server/zebra.sgml Xshare/doc/zebra-server/zebra.txt X@dirrm share/zebra-server/tab X@dirrm share/doc/zebra-server END-of-./pkg/PLIST echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-aa sed 's/^X//' >./patches/patch-aa << 'END-of-./patches/patch-aa' X--- index/lockutil.c.orig Sat Sep 16 14:24:25 2000 X+++ index/lockutil.c Sat Sep 16 14:24:40 2000 X@@ -79,7 +79,7 @@ X (O_BINARY|O_CREAT|O_RDWR), 0666); X #else X h->fd= open (name, ((h->excl_flag > 1) ? O_EXCL : 0)| X- (O_BINARY|O_CREAT|O_RDWR|O_SYNC), 0666); X+ (O_BINARY|O_CREAT|O_RDWR), 0666); X #endif X if (h->fd == -1) X { END-of-./patches/patch-aa echo x - ./patches/patch-ab sed 's/^X//' >./patches/patch-ab << 'END-of-./patches/patch-ab' X--- Makefile.in.orig Wed Sep 20 13:24:26 2000 X+++ Makefile.in Wed Sep 20 13:25:10 2000 X@@ -37,8 +37,8 @@ X INCDIR=$(prefix)/include X # Misc tables, etc. X ZEBRADIR=$(prefix)/lib/@PROGPREFIX@ X-ZEBRATAB=$(prefix)/lib/@PROGPREFIX@/tab X-ZEBRADOC=$(prefix)/lib/@PROGPREFIX@/doc X+ZEBRATAB=$(prefix)/share/zebra-server/tab X+ZEBRADOC=$(prefix)/share/doc/zebra-server X X SUBDIR=@SUBDIR@ X END-of-./patches/patch-ab echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: zebra-server X# Date created: 16 Sep 2000 X# Whom: Dmitry Sivachenko X# X# $FreeBSD:$ X# X XPORTNAME= zebra-server XPORTVERSION= 1.0pl1 XCATEGORIES= net XMASTER_SITES= ftp://ftp.indexdata.dk/pub/yaz/ XDISTNAME= zebra-${PORTVERSION} X XMAINTAINER= dima@Chg.RU X XBUILD_DEPENDS= ${LOCALBASE}/bin/yaz-config:${PORTSDIR}/net/yaz XRUN_DEPENDS= ${LOCALBASE}/bin/yaz-config:${PORTSDIR}/net/yaz X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-yazconfig=${LOCALBASE}/bin X X.include END-of-./Makefile exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 4: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 3CFF037B43F for ; Wed, 20 Sep 2000 04:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA21934; Wed, 20 Sep 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9D2EC37B42C; Wed, 20 Sep 2000 04:10:06 -0700 (PDT) Message-Id: <20000920111006.9D2EC37B42C@hub.freebsd.org> Date: Wed, 20 Sep 2000 04:10:06 -0700 (PDT) From: gonza@techline.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21415: update ports: mail/smapi (new version) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21415 >Category: ports >Synopsis: update ports: mail/smapi (new version) >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 Sep 20 04:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Samolyloff >Release: 3.4-RELEASE (i386) >Organization: TECHLine Systems LTD >Environment: >Description: update ports: mail/smapi (new version) >How-To-Repeat: >Fix: --- smapi/Makefile.orig Sun Aug 27 19:28:55 2000 +++ smapi/Makefile Wed Sep 20 15:05:55 2000 @@ -2,11 +2,11 @@ # Date created: 19 June 2000 # Whom: Sergey Samoyloff # -# $FreeBSD: ports/mail/smapi/Makefile,v 1.3 2000/08/25 16:15:48 kevlo Exp $ +# $FreeBSD$ # PORTNAME= smapi -PORTVERSION= 000823 +PORTVERSION= 000919 CATEGORIES= mail MASTER_SITES= http://cvs.physcip.uni-stuttgart.de/cvs2/ @@ -18,7 +18,7 @@ ALL_TARGET= libsmapibsd.a FILES= alc.h api_brow.h compiler.h ffind.h msgapi.h patmat.h prog.h \ - progprot.h stamp.h typedefs.h unused.h + progprot.h stamp.h typedefs.h unused.h semaphor.h do-install: ${MKDIR} ${PREFIX}/include/smapi --- smapi/files/md5.orig Sun Aug 27 19:28:55 2000 +++ smapi/files/md5 Wed Sep 20 14:55:17 2000 @@ -1 +1 @@ -MD5 (smapi-000823.tar.gz) = 2be41e4fe062555e5d1b1b9445637776 +MD5 (smapi-000919.tar.gz) = c77df45287010f4d941b1095cedf3d0d >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 Sep 20 5: 7:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 2B1EF37B424 for ; Wed, 20 Sep 2000 05:07:10 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id DC4BF1950; Wed, 20 Sep 2000 07:03:20 -0500 (EST) Date: Wed, 20 Sep 2000 07:03:20 -0500 From: Will Andrews To: ports@FreeBSD.org Subject: mod_* port standards / review process Message-ID: <20000920070320.G35550@radon.gryphonsoft.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , ports@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 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi guys, How would I go about reviewing and testing submitted mod_* ports for Apache? I am happy to upgrade my Apache installation (currently using apache+php-1.3.12+3.0.15, which I believe is the pre-modules-based version of Apache+PHP3 port). But then, when I install a mod_* port, does it take care of the APXS stuff such that Apache will load it on the next restart of the webserver? Or does the config file need to be changed to add LoadModule directives, etc.? When I deinstall a mod_* port, does it take care of disabling the LoadModule directive / APXS stuff? I'd like to know so that I could take care of the mod_* ports, which I currently don't bother touching due to lack of knowledge about how the apxs stuff works, and so I can port a couple more modules from apache.org and other people. Thanks, -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 5: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 40CDD37B422 for ; Wed, 20 Sep 2000 05:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA30815; Wed, 20 Sep 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 20 Sep 2000 05:10:02 -0700 (PDT) Message-Id: <200009201210.FAA30815@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21412: New port: net/yaz Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21412; it has been noted by GNATS. From: Will Andrews To: "Dmitry S. Sivachenko" Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21412: New port: net/yaz Date: Wed, 20 Sep 2000 06:58:18 -0500 On Wed, Sep 20, 2000 at 02:20:32PM +0400, Dmitry S. Sivachenko wrote: > >Synopsis: New port: net/yaz Hi Dmitry, Just a little nag..: > # ./files > # ./files/md5 > # ./pkg > # ./pkg/COMMENT > # ./pkg/DESCR > # ./pkg/PLIST > # ./Makefile > # ./patches > # ./patches/patch-aa > # ./patches/patch-ab Please DTRT in the future; use the canonical name of the directory these files belong in. I.e., yaz/files, yaz/files/md5, and so forth. Thanks. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 5:17:10 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 4B01337B423 for ; Wed, 20 Sep 2000 05:17:08 -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 e8KCH1Q22484; Wed, 20 Sep 2000 08:17:01 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39C8AAB4.E14782E9@thehousleys.net> Date: Wed, 20 Sep 2000 08:16:52 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: mod_* port standards / review process References: <20000920070320.G35550@radon.gryphonsoft.com> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msC89DDAC7B75C4DD17BACB58A" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msC89DDAC7B75C4DD17BACB58A Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Will Andrews wrote: > > changed to add LoadModule directives, etc.? When I deinstall a mod_* > port, does it take care of disabling the LoadModule directive / APXS > stuff? > Yes apxs does and and comment out the module directives. Jim -- Studies show that 1 out of every 4 Americans suffer some form of mental illness. So look at your three best friends, if they are okay it is YOU! --------------msC89DDAC7B75C4DD17BACB58A Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIH7gYJKoZIhvcNAQcCoIIH3zCCB9sCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC Bb8wggKjMIICDKADAgECAgMDLRswDQYJKoZIhvcNAQEEBQAwgZQxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZU aGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25h bCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MB4XDTAwMDgzMTExMjUzM1oXDTAxMDgzMTExMjUz M1owRTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEiMCAGCSqGSIb3DQEJARYT amltQHRoZWhvdXNsZXlzLm5ldDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAoecaMx4y p2rGru9O4EGcnetN3YJekZy3C7BvhxuvN+fboBpG2MSEUMBZzGX0CSZwBC1SapoZnyqzRItc OgUjSRrUhGfcSQ0nZv/dxaWb3L68+f4pDkALZ4WxR7feY8Cur2SrybM0wtpGcTioNWKbMNRd wDBxD/jgggHAa8hSo3sCAwEAAaNRME8wHgYDVR0RBBcwFYETamltQHRoZWhvdXNsZXlzLm5l dDAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFIir8WCDZlX05FjHRh3AYb0j18OMMA0GCSqG SIb3DQEBBAUAA4GBAE2PrU05luhZFcnuwpIpcqFqg+F5uuN4XO9tSX1KTCI1/YIUoTUuMyQa FO/n+Xm9xxv36v+RzVFbXjaDbg6m89qyWeawORQplL0JhXQmh10Anjg/RkBwt02FeLjbTZ7Z 6PiLOLKfuLPFYTcaSBavOIRbvVSWrK6o7DmZKhe1YgWVMIIDFDCCAn2gAwIBAgIBCzANBgkq hkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAG A1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3 dGUuY29tMB4XDTk5MDkxNjE0MDE0MFoXDTAxMDkxNTE0MDE0MFowgZQxCzAJBgNVBAYTAlpB MRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQK EwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJz b25hbCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB gQCzaVqX1NAWC3q1xV3pIZwjcs0STEv3fs/H+8pyJPRCUqxXleN7YXoXhOf9cjk4lLTq7WWn kgZeveBl9hm7lHl2TD65aHB1hBz0EXQAvAUsTwkDFzHM9EHUcsamXeKIRLCLLsRN8fDWhT5s 85WUeJF+QOmc0Y0VV47Cc+Uw3kb1TwIDAQABozcwNTASBgNVHRMBAf8ECDAGAQH/AgEAMB8G A1UdIwQYMBaAFHJJwnM0xlX0C3ZygX539IfnxrIOMA0GCSqGSIb3DQEBBAUAA4GBAGvGWekx +um27LED2N9ycv6RYEjqxlXde/BnjsZhcOdtwqU32J23FyhWBYvdXHVvxpGQxmxmcRPQEHxr kW+G4CE2LcHX6rIJrc8tbcaDUpv7u/6ch538t+l0kuRcl678fqzKDW9yemcsa3P1hvmd9QBu 9B0Hzp2egmMp75MJflXeMYIB9zCCAfMCAQEwgZwwgZQxCzAJBgNVBAYTAlpBMRUwEwYDVQQI EwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVl bWFpbCBSU0EgMTk5OS45LjE2AgMDLRswCQYFKw4DAhoFAKCBsTAYBgkqhkiG9w0BCQMxCwYJ KoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMDA5MjAxMjE3MDFaMCMGCSqGSIb3DQEJBDEW BBT+sYNvMbpWUFyAfcFq8Q/CYgMwdzBSBgkqhkiG9w0BCQ8xRTBDMAoGCCqGSIb3DQMHMA4G CCqGSIb3DQMCAgIAgDAHBgUrDgMCBzANBggqhkiG9w0DAgIBQDANBggqhkiG9w0DAgIBKDAN BgkqhkiG9w0BAQEFAASBgB/PsKn6o6KokIfeWDI8oE3Yo4bRFhyOmoXOvxjpA/JcdGstxgbL 7FDUdLlskOfLu6jaGXrgdPOFhDkY4Hjh5i9mEujbfBtnoI+i3D15gM8aqBaaqCATH03spvBc deozOfCUbtuim1Ch92hpQl434lV4Ra+7I/Ofs7KgdQ9z76mr --------------msC89DDAC7B75C4DD17BACB58A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 5:21:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 1592A37B423 for ; Wed, 20 Sep 2000 05:21:42 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 59ED61950; Wed, 20 Sep 2000 07:17:53 -0500 (EST) Date: Wed, 20 Sep 2000 07:17:53 -0500 From: Will Andrews To: James Housley Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: mod_* port standards / review process Message-ID: <20000920071753.L35550@radon.gryphonsoft.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , James Housley , ports@FreeBSD.ORG References: <20000920070320.G35550@radon.gryphonsoft.com> <39C8AAB4.E14782E9@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: <39C8AAB4.E14782E9@thehousleys.net>; from jim@thehousleys.net on Wed, Sep 20, 2000 at 08:16:52AM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 08:16:52AM -0400, James Housley wrote: > Yes apxs does and and comment out the module directives. Wow, APXS rocks. Thanks, I'll check out some of those mod_* foo. I think I'd like to upgrade my Apache installation anyway, so I might as well do that too. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 5:25:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from toe.nx.nextra.sk (toe.nx.nextra.sk [195.168.1.27]) by hub.freebsd.org (Postfix) with SMTP id BE71937B422 for ; Wed, 20 Sep 2000 05:25:08 -0700 (PDT) Received: (qmail 87893 invoked from network); 20 Sep 2000 12:24:41 -0000 Received: from unknown (HELO 127.0.0.1) (195.168.1.77) by smtp2.nextra.sk with SMTP; 20 Sep 2000 12:24:41 -0000 Date: Wed, 20 Sep 2000 14:24:40 +0200 From: Tomas TPS Ulej X-Mailer: The Bat! (v1.46c) Business Reply-To: Tomas TPS Ulej Organization: NEXTRA X-Priority: 3 (Normal) Message-ID: <2378210050.20000920142440@ncc.nextra.sk> To: staffanu@nada.kth.se Cc: ports@FreeBSD.org Subject: FreeBSD Port: gnokii-0.2.3 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 have n5110 & FreeBSD r4 with: root@[SCREEN0.gh0st /usr/ports/comms/gnokii] # gnokii --version GNOKII Version 0.2.3 Copyright (C) Hugh Blemings 1999. Built 14:20:37 Sep 20 2000 for 5110 on /dev/cuaia1 ... and this software quits with root@[SCREEN0.gh0st /usr/ports/comms/gnokii] # gnokii --monitor Monitor mode... Initialising GSM interface... GSM/fbus init failed! (Unknown model ?). Quitting. Can you please help me with this? gnokii mailing list can't :( Regards -- Tomas TPS Ulej more? http://tps.sk PGP? http://tps.sk/pgp.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 6: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 BE97937B424 for ; Wed, 20 Sep 2000 06:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA44029; Wed, 20 Sep 2000 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E19A337B422; Wed, 20 Sep 2000 06:04:27 -0700 (PDT) Message-Id: <20000920130427.E19A337B422@hub.freebsd.org> Date: Wed, 20 Sep 2000 06:04:27 -0700 (PDT) From: riccardo@torrini.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21416: Patch-ab for port emulators/xmame refer to wrong path (xmake instead of xmame) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21416 >Category: ports >Synopsis: Patch-ab for port emulators/xmame refer to wrong path (xmake instead of xmame) >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 Sep 20 06:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Riccardo Torrini >Release: 5.0-CURRENT >Organization: >Environment: FreeBSD trudy.home.torrini.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Sep 9 10:19:55 CEST 2000 root@trudy.home.torrini.org:/usr/obj/usr/src/sys/TRUDY i386 >Description: The patch-ab for emulators/xmame refer to xmake instead of xmame, resulting in xmame unable to find roms. >How-To-Repeat: Look (with more/vi) into /usr/ports/emulators/xmame/patches/patch-ab or try with "grep /xmake" on the same file >Fix: Change xmake into xmame _BEFORE_ compile and install the port _OR_ change the contents of /usr/X11R6/share/xmame/xmamerc _AFTER_ >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 Sep 20 6:20:31 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 7E64037B422 for ; Wed, 20 Sep 2000 06:20:24 -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 QAA02544; Wed, 20 Sep 2000 16:19: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 e8KBIXS46497; Wed, 20 Sep 2000 14:18:33 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C89CF8.C5897E14@FreeBSD.org> Date: Wed, 20 Sep 2000 14:18:16 +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: Thomas Schuerger Cc: freebsd-ports@FreeBSD.org Subject: Re: Request: SDL_image References: <200009200850.e8K8o9X06522@wjpserver.cs.uni-sb.de> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas Schuerger wrote: > > Thomas Schuerger wrote: > > > > > Hi! > > > > > > I'd like to see a port of SDL-image (libSDL_image) for FreeBSD. The > > > library is required for a couple of good games. The source code is > > > available at > > > > > > http://www.devolution.com/~slouken/SDL/projects/SDL_image/index.html > > > > I've just added it. Enjoy! > > Wow, that was quick. Thanks!! We are waiting when you will submit ports of those "couple of good games" ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 6: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 B82DF37B423 for ; Wed, 20 Sep 2000 06:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69752; Wed, 20 Sep 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mlss15.cl.msu.edu (mlss15.cl.msu.edu [35.9.4.115]) by hub.freebsd.org (Postfix) with ESMTP id A1E6B37B422 for ; Wed, 20 Sep 2000 06:36:59 -0700 (PDT) Received: (from buchanon@localhost) by mlss15.cl.msu.edu (8.9.3/8.9.3) id JAA06956; Wed, 20 Sep 2000 09:36:56 -0400 (EDT) (envelope-from buchanon) Message-Id: <200009201336.JAA06956@mlss15.cl.msu.edu> Date: Wed, 20 Sep 2000 09:36:56 -0400 (EDT) From: Mike Buchanon Reply-To: buchanon@mlss15.cl.msu.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21418: update gaim make file so that we can use the oscar protocol Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21418 >Category: ports >Synopsis: update gaim make file so that we can use the oscar protocol >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 Sep 20 06:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Buchanon >Release: FreeBSD 4.1-STABLE i386 >Organization: MSU >Environment: >Description: cannot use the oscar protocol in gaim. >How-To-Repeat: >Fix: apply this patch to the port of gaim :) --- gaim/Makefile Wed Sep 20 08:13:02 2000 +++ gaim/Makefile Wed Sep 20 08:12:40 2000 @@ -23,7 +23,7 @@ USE_BZIP2= yes USE_GMAKE= yes USE_X_PREFIX= yes -CONFIGURE_ARGS= --disable-esd +CONFIGURE_ARGS= --disable-esd --enable-oscar CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ GLIB_CONFIG="${GLIB_CONFIG}" >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 Sep 20 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 7F27E37B424 for ; Wed, 20 Sep 2000 06:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69743; Wed, 20 Sep 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lurza.secnetix.de (lurza.secnetix.de [212.66.1.130]) by hub.freebsd.org (Postfix) with ESMTP id EA4D637B422 for ; Wed, 20 Sep 2000 06:34:06 -0700 (PDT) Received: (from olli@localhost) by lurza.secnetix.de (8.9.3/8.9.3) id PAA69809; Wed, 20 Sep 2000 15:34:00 +0200 (CEST) (envelope-from olli) Message-Id: <200009201334.PAA69809@lurza.secnetix.de> Date: Wed, 20 Sep 2000 15:34:00 +0200 (CEST) From: olli@secnetix.de Reply-To: olli@secnetix.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21417: ports/news/trn/pkg/PLIST misses bin/inews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21417 >Category: ports >Synopsis: ports/news/trn/pkg/PLIST misses bin/inews >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 Sep 20 06:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Oliver Fromme >Release: FreeBSD 4.1-RELEASE i386 >Organization: secnetix GmbH & Co KG >Environment: Current version of the ports collection. >Description: The file bin/inews is missing from the PLIST of news/trn, even though it gets installed during a "make install". (NB: I'm submitting this with severity "serious" because we had some downtime on our server, which was caused by bin/inews being overwritten without us noticing. :-( YMMV. BTW, the same problem probably applies to the news/trn4 port, but I didn't verify this. >How-To-Repeat: Type "make install" in /usr/ports/news/trn, the check /usr/local/bin/inews and compare with "pkg_info -L". >Fix: --- ports/news/trn/pkg/PLIST.orig Wed Jul 5 09:16:42 2000 +++ ports/news/trn/pkg/PLIST Wed Sep 20 15:33:01 2000 @@ -1,6 +1,7 @@ @exec echo "Be sure to edit %D/bin/Pnews and %D/bin/newsetup to set the Distribution codes" bin/Pnews bin/Rnmail +bin/inews bin/newsetup bin/newsgroups bin/nntplist >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 Sep 20 7: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 14D4B37B424 for ; Wed, 20 Sep 2000 07:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA34231; Wed, 20 Sep 2000 07:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 20 Sep 2000 07:40:03 -0700 (PDT) Message-Id: <200009201440.HAA34231@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dmitry Sivachenko Subject: Re: ports/21412: New port: net/yaz Reply-To: Dmitry Sivachenko Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21412; it has been noted by GNATS. From: Dmitry Sivachenko To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21412: New port: net/yaz Date: Wed, 20 Sep 2000 18:28:32 +0400 On Wed, Sep 20, 2000 at 06:58:18AM -0500, Will Andrews wrote: > On Wed, Sep 20, 2000 at 02:20:32PM +0400, Dmitry S. Sivachenko wrote: > > >Synopsis: New port: net/yaz > > Hi Dmitry, > > Just a little nag..: > > > # ./files > > # ./files/md5 > > # ./pkg > > # ./pkg/COMMENT > > # ./pkg/DESCR > > # ./pkg/PLIST > > # ./Makefile > > # ./patches > > # ./patches/patch-aa > > # ./patches/patch-ab > > Please DTRT in the future; use the canonical name of the directory these > files belong in. I.e., yaz/files, yaz/files/md5, and so forth. > Thank you, noted. --dima To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 7: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 0277137B43E for ; Wed, 20 Sep 2000 07:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA34244; Wed, 20 Sep 2000 07:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A8B9637B422; Wed, 20 Sep 2000 07:32:29 -0700 (PDT) Message-Id: <20000920143229.A8B9637B422@hub.freebsd.org> Date: Wed, 20 Sep 2000 07:32:29 -0700 (PDT) From: gonza@techline.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21419: update ports: mail/smapi (fix PLIST file) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21419 >Category: ports >Synopsis: update ports: mail/smapi (fix PLIST file) >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 Sep 20 07:40:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Samoyloff >Release: 3.4-RELEASE (i386) >Organization: TECHLine Systems LTD >Environment: >Description: add semaphor.h to PLIST file >How-To-Repeat: >Fix: --- smapi/pkg/PLIST.orig Mon Jul 3 11:47:39 2000 +++ smapi/pkg/PLIST Wed Sep 20 15:06:33 2000 @@ -8,6 +8,7 @@ include/smapi/prog.h include/smapi/progprot.h include/smapi/stamp.h +include/smapi/semaphor.h include/smapi/typedefs.h include/smapi/unused.h @dirrm include/smapi >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 Sep 20 7:43: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from relay-1.ziplink.net (relay-1.ziplink.net [206.15.170.62]) by hub.freebsd.org (Postfix) with ESMTP id 5953137B424; Wed, 20 Sep 2000 07:42:52 -0700 (PDT) Received: from aldan.algebra.com (bronx-ip-1-229.dynamic.ziplink.net [205.208.96.229]) by relay-1.ziplink.net (8.10.2/8.10.2) with ESMTP id e8KEgk700795; Wed, 20 Sep 2000 10:42:46 -0400 (EDT) Received: (from mi@localhost) by aldan.algebra.com (8.11.0/8.9.3) id e8KEdli71369; Wed, 20 Sep 2000 10:39:47 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <200009201439.e8KEdli71369@aldan.algebra.com> Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r In-Reply-To: from Andrew Boothman at "Sep 20, 2000 03:10:25 am" To: Andrew Boothman Date: Wed, 20 Sep 2000 10:39:06 -0400 (EDT) Cc: Kris Kennaway , olgeni@uli.it, ruslan@shevchenko.kiev.ua, seb@bluetail.com, Ade Lovett , ports@FreeBSD.org, Neil Blakey-Milner , doc@FreeBSD.org, stable@FreeBSD.org, jkh@winston.osd.bsdi.com X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w hJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" To: Jesse McConnell Cc: ports@FreeBSD.org Subject: Re: Entity port: PR/20061 Message-ID: <20000920164439.A2990@mithrandr.moria.org> References: <39C8C7F8.7105542A@cylant.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39C8C7F8.7105542A@cylant.com>; from jesse@cylant.com on Wed, Sep 20, 2000 at 07:21:44AM -0700 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed 2000-09-20 (07:21), Jesse McConnell wrote: > I submitted this new port a couple of months ago and I thought I would > have heard at least something back by now. It is a really great piece > of software and under active development... I tried to get it to work, and I couldn't. If you have an updated port (using the new ports methods) I'd be happy to try again. Or I can try again and send you error messages. (: > Is there another group I should speak to about this port or is there > just a really big ugly queue... There is a slight queue, but some ports are harder than others. The correct place to talk about ports is ports@FreeBSD.org. Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Wed Sep 20 7:50: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 3CEDC37B423; Wed, 20 Sep 2000 07:49:56 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13blBt-0000os-00; Wed, 20 Sep 2000 16:49:41 +0200 Date: Wed, 20 Sep 2000 16:49:41 +0200 From: Neil Blakey-Milner To: Mikhail Teterin Cc: Andrew Boothman , ports@FreeBSD.org, doc@FreeBSD.org, stable@FreeBSD.org, steve@FreeBSD.org Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r Message-ID: <20000920164941.A3105@mithrandr.moria.org> References: <200009201439.e8KEdli71369@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200009201439.e8KEdli71369@aldan.algebra.com>; from mi@aldan.algebra.com on Wed, Sep 20, 2000 at 10:39:06AM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ Gad, what a Cc list. Steve added, some trimmed. ] > =* If you are the MAINTAINER of a piece of code (or more likely a port) > =and don't have commit privs, put "MAINTAINER update" in the synopsis, > =for the same reasons as before. > > Use of synopsis for this worries me. Perhaps, this warrants two > new classes: ``update'' and ``maintainer-update'' in addition to the > all-including ``change-request''? I think synopsis is fine, but I like your suggestion. Steve, is this possible or sufficiently easy? Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Wed Sep 20 8:50:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scaup.prod.itd.earthlink.net (scaup.prod.itd.earthlink.net [207.217.121.49]) by hub.freebsd.org (Postfix) with ESMTP id D65D737B422; Wed, 20 Sep 2000 08:50:49 -0700 (PDT) Received: from gaea.mindspring.com (1Cust107.tnt1.hershey.pa.da.uu.net [63.23.225.107]) by scaup.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with ESMTP id IAA16735; Wed, 20 Sep 2000 08:50:47 -0700 (PDT) Message-Id: <5.0.0.25.2.20000920115500.0328f0a0@pop.mindspring.com> X-Sender: marisombra@pop.mindspring.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Wed, 20 Sep 2000 11:55:19 -0400 To: questions@FreeBSD.org From: "Dan Z." Subject: Staroffice 5.2 Port & Linux Base 6.1 Cc: ports@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 Greets, I'm having difficulty installing Staroffice 5.2 on 4.1-Stable, I can't think of a way around this, so I'm wondering if I could get some help :) Builds fail with the following: ===> Extracting for staroffice-5.2 >> Checksum OK for staroffice52/soa-5_2-ga-bin-linux-en.bin. >> Checksum OK for staroffice52/so-5_2-ga-bin-linux-en.bin. ===> staroffice-5.2 depends on: /usr/ports/emulators/linux_base ===> Verifying install for /usr/ports/emulators/linux_base ===> Installing for linux_base-6.1 setup-2.0.5-1.noarch.rpm filesystem-1.3.5-1.noarch.rpm basesystem-6.0-4.noarch.rpm ldconfig-1.9.5-15.i386.rpm glibc-2.1.2-11.i386.rpm termcap-9.12.6-15.i386.rpm libtermcap-2.0.8-18.i386.rpm bash-1.14.7-16.i386.rpm ncurses-4.2-25.i386.rpm zlib-1.1.3-5.i386.rpm info-3.12h-2.i386.rpm fileutils-4.0-8.i386.rpm grep-2.3-2.i386.rpm binutils-2.9.1.0.23-6.i386.rpm gd-1.3-5.i386.rpm gdbm-1.8.0-2.i386.rpm glib-1.2.5-1.i386.rpm package glib-1.2.6-2 (which is newer) is already installed error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be installed *** Error code 1 Thanks for any help anyone can provide. Daniel J. Zaccariello To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 9:18: 8 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 EDE2D37B423; Wed, 20 Sep 2000 09:18:00 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13bmZE-000ENF-00; Wed, 20 Sep 2000 18:17:52 +0200 Date: Wed, 20 Sep 2000 18:17:51 +0200 From: Johann Visagie To: tg@freebsd.org Cc: ports@freebsd.org Subject: Problems building math/numpy Message-ID: <20000920181750.A52034@fling.sanbi.ac.za> 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 there, There are some problems with the math/numpy port. Firstly, they made a minor bugfix and bumped the version number from 16.1 to 16.1.1, removing the source tarballs for 16.1. That's easy to fix. I was going to patch and send it to you / submit it myself, but then noticed that it still doesn't build on a 3.5-STABLE box, due to libg2c not being found. In fact, on the particular box libg2c.a is to be found here: /usr/local/lib/gcc-lib/i386-portbld-freebsd3.4/2.95.2/ (gcc 2.95.2 having been installed from the port on this box prior to 3.5, I would presume.) Anyway, due to the version-specific path I couldn't just patch it into setup.py the way you did with BLASLIBDIR and LAPACKLIBDIR. Not quite sure how one would go about automating this. -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 9:23:50 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 5574737B424; Wed, 20 Sep 2000 09:23:45 -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 TAA01733; Wed, 20 Sep 2000 19:23: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 e8KGNaS50428; Wed, 20 Sep 2000 19:23:36 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39C8E474.4643152A@FreeBSD.org> Date: Wed, 20 Sep 2000 19:23:16 +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: Johann Visagie Cc: tg@FreeBSD.org, ports@FreeBSD.org Subject: Re: Problems building math/numpy References: <20000920181750.A52034@fling.sanbi.ac.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Johann Visagie wrote: > Hi there, > > There are some problems with the math/numpy port. Firstly, they made a minor > bugfix and bumped the version number from 16.1 to 16.1.1, removing the source > tarballs for 16.1. > > That's easy to fix. I was going to patch and send it to you / submit it > myself, but then noticed that it still doesn't build on a 3.5-STABLE box, due > to libg2c not being found. > > In fact, on the particular box libg2c.a is to be found here: > /usr/local/lib/gcc-lib/i386-portbld-freebsd3.4/2.95.2/ > > (gcc 2.95.2 having been installed from the port on this box prior to 3.5, I > would presume.) > > Anyway, due to the version-specific path I couldn't just patch it into > setup.py the way you did with BLASLIBDIR and LAPACKLIBDIR. > > Not quite sure how one would go about automating this. Probably OT, but have to note that 3-STABLE is not supported by the ports tree anymore (since the time of 4.1-RELEASE). So would be really better for you to upgrade if you want to use updated ports. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 10: 0: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 5330837B42C for ; Wed, 20 Sep 2000 10:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA81979; Wed, 20 Sep 2000 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-223-as.acessonet.com.br (200-227-201-223-as.acessonet.com.br [200.227.201.223]) by hub.freebsd.org (Postfix) with ESMTP id 6FB5037B422 for ; Wed, 20 Sep 2000 09:56:20 -0700 (PDT) Received: (qmail 5100 invoked by uid 1001); 20 Sep 2000 16:33:59 -0000 Message-Id: <20000920163359.5099.qmail@Fedaykin.here> Date: 20 Sep 2000 16:33:59 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21420: New port math/p5-Math-Logic perl module Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21420 >Category: ports >Synopsis: New port math/p5-Math-Logic perl module >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 Sep 20 10:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Here.here 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 18:08:03 BRT 2000 root@Here.here:/usr/obj/usr/src/sys/LIOUX i386 >Description: Perl module providing pure 2, 3 or multi-value logic >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: # # p5-Math-Logic # p5-Math-Logic/files # p5-Math-Logic/files/md5 # p5-Math-Logic/pkg # p5-Math-Logic/pkg/COMMENT # p5-Math-Logic/pkg/DESCR # p5-Math-Logic/pkg/PLIST # p5-Math-Logic/Makefile # echo c - p5-Math-Logic mkdir -p p5-Math-Logic > /dev/null 2>&1 echo c - p5-Math-Logic/files mkdir -p p5-Math-Logic/files > /dev/null 2>&1 echo x - p5-Math-Logic/files/md5 sed 's/^X//' >p5-Math-Logic/files/md5 << 'END-of-p5-Math-Logic/files/md5' XMD5 (Math-Logic-1.19.tar.gz) = 01352cf5bf8f4be78779ac57c033b7b5 END-of-p5-Math-Logic/files/md5 echo c - p5-Math-Logic/pkg mkdir -p p5-Math-Logic/pkg > /dev/null 2>&1 echo x - p5-Math-Logic/pkg/COMMENT sed 's/^X//' >p5-Math-Logic/pkg/COMMENT << 'END-of-p5-Math-Logic/pkg/COMMENT' XPerl module providing pure 2, 3 or multi-value logic END-of-p5-Math-Logic/pkg/COMMENT echo x - p5-Math-Logic/pkg/DESCR sed 's/^X//' >p5-Math-Logic/pkg/DESCR << 'END-of-p5-Math-Logic/pkg/DESCR' XPerl's built-in logical operators, C, C, C and C Xsupport 2-value logic. This means that they always produce a result Xwhich is either true or false. In fact perl sometimes returns 0 Xand sometimes returns undef for false depending on the operator Xand the order of the arguments. For "true" Perl generally returns Xthe first value that evaluated to true which turns out to be Xextremely useful in practice. Given the choice Perl's built-in Xlogical operators are to be preferred -- but when you really want Xpure 2-degree logic or 3-degree logic or multi-degree logic they Xare available through this module END-of-p5-Math-Logic/pkg/DESCR echo x - p5-Math-Logic/pkg/PLIST sed 's/^X//' >p5-Math-Logic/pkg/PLIST << 'END-of-p5-Math-Logic/pkg/PLIST' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Logic/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Math/Logic.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Logic X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math END-of-p5-Math-Logic/pkg/PLIST echo x - p5-Math-Logic/Makefile sed 's/^X//' >p5-Math-Logic/Makefile << 'END-of-p5-Math-Logic/Makefile' X# New ports collection makefile for: p5-Math-Logic X# Date created: 20 Sep 2000 X# Whom: Mario S F Ferreira et al. X# X# $FreeBSD$ X# X XPORTNAME= Math-Logic XPORTVERSION= 1.19 XCATEGORIES= math perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Math XPKGNAMEPREFIX= p5- X XMAINTAINER= lioux@linf.unb.br X XUSE_PERL5= yes XPERL_CONFIGURE= yes XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Math::Logic.3 X X.include END-of-p5-Math-Logic/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 Sep 20 10: 0: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 6A98A37B423 for ; Wed, 20 Sep 2000 10:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA81988; Wed, 20 Sep 2000 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-223-as.acessonet.com.br (200-227-201-223-as.acessonet.com.br [200.227.201.223]) by hub.freebsd.org (Postfix) with ESMTP id 3BA2037B422 for ; Wed, 20 Sep 2000 09:56:24 -0700 (PDT) Received: (qmail 6775 invoked by uid 1001); 20 Sep 2000 16:51:14 -0000 Message-Id: <20000920165114.6774.qmail@Fedaykin.here> Date: 20 Sep 2000 16:51:14 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21421: New port p5-Math-Expr perl module Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21421 >Category: ports >Synopsis: New port p5-Math-Expr perl module >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 Sep 20 10:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Here.here 4.0-STABLE FreeBSD 4.0-STABLE #2: Fri Jun 9 13:22:10 EST 2000 lioux@Here.here:/usr/src/sys/compile/LIOUX i386 >Description: Perl module for parsing mathematical expressions into a tree structure >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: # # p5-Math-Expr # p5-Math-Expr/files # p5-Math-Expr/files/md5 # p5-Math-Expr/pkg # p5-Math-Expr/pkg/COMMENT # p5-Math-Expr/pkg/DESCR # p5-Math-Expr/pkg/PLIST # p5-Math-Expr/Makefile # echo c - p5-Math-Expr mkdir -p p5-Math-Expr > /dev/null 2>&1 echo c - p5-Math-Expr/files mkdir -p p5-Math-Expr/files > /dev/null 2>&1 echo x - p5-Math-Expr/files/md5 sed 's/^X//' >p5-Math-Expr/files/md5 << 'END-of-p5-Math-Expr/files/md5' XMD5 (Math-Expr-0.4.tar.gz) = 2c4f7eb097bca918f4748f7843bca02b END-of-p5-Math-Expr/files/md5 echo c - p5-Math-Expr/pkg mkdir -p p5-Math-Expr/pkg > /dev/null 2>&1 echo x - p5-Math-Expr/pkg/COMMENT sed 's/^X//' >p5-Math-Expr/pkg/COMMENT << 'END-of-p5-Math-Expr/pkg/COMMENT' XPerl module for parsing mathematical expressions into a tree structure END-of-p5-Math-Expr/pkg/COMMENT echo x - p5-Math-Expr/pkg/DESCR sed 's/^X//' >p5-Math-Expr/pkg/DESCR << 'END-of-p5-Math-Expr/pkg/DESCR' XMath::Expr parses mathematical expressions into a tree structure. XThe expressions may contain integers, real numbers, alphanumeric Xvariable names, alphanumeric function names and most other characters Xmight be used as operators. The operators can consist of multiple Xcharacters. The only limitation is that a variable or function Xname may not start on a digit, and not all chars are accepted in Xoperation names. END-of-p5-Math-Expr/pkg/DESCR echo x - p5-Math-Expr/pkg/PLIST sed 's/^X//' >p5-Math-Expr/pkg/PLIST << 'END-of-p5-Math-Expr/pkg/PLIST' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Expr/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/FormulaDB.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/MatchSet.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Node.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Num.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Opp.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/OpperationDB.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Rule.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/TypeDB.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/Var.pm Xlib/perl5/site_perl/%%PERL_VER%%/Math/Expr/VarSet.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/Math/Expr X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Math/Expr END-of-p5-Math-Expr/pkg/PLIST echo x - p5-Math-Expr/Makefile sed 's/^X//' >p5-Math-Expr/Makefile << 'END-of-p5-Math-Expr/Makefile' X# New ports collection makefile for: p5-Math-Expr X# Date created: 20 Sep 2000 X# Whom: Mario S F Ferreira et al. X# X# $FreeBSD$ X# X XPORTNAME= Math-Expr XPORTVERSION= 0.4 XCATEGORIES= math perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Math XPKGNAMEPREFIX= p5- X XMAINTAINER= lioux@linf.unb.br X XUSE_PERL5= yes XPERL_CONFIGURE= yes XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= Math::Expr.3 Math::Expr::FormulaDB.3 \ X Math::Expr::MatchSet.3 Math::Expr::Node.3 \ X Math::Expr::Num.3 Math::Expr::Opp.3 \ X Math::Expr::OpperationDB.3 Math::Expr::Rule.3 \ X Math::Expr::TypeDB.3 Math::Expr::Var.3 \ X Math::Expr::VarSet.3 X X.include END-of-p5-Math-Expr/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 Sep 20 10:42:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 871CB37B423; Wed, 20 Sep 2000 10:42:16 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id NAA06924; Wed, 20 Sep 2000 13:42:15 -0400 (EDT) (envelope-from mwlucas) Date: Wed, 20 Sep 2000 13:42:15 -0400 From: Michael Lucas To: "Dan Z." Cc: questions@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Staroffice 5.2 Port & Linux Base 6.1 Message-ID: <20000920134215.A6879@blackhelicopters.org> References: <5.0.0.25.2.20000920115500.0328f0a0@pop.mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <5.0.0.25.2.20000920115500.0328f0a0@pop.mindspring.com>; from marisombra@mindspring.com on Wed, Sep 20, 2000 at 11:55:19AM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dan, Try this (off the top of my head, not responsible for damage to system, make backups, blah blah blah blah): Install linux-base first, get it working, then go after SO. It looks like your package installation failed sometime during the install phase, so be sure you blow away /compat/linux first. If you have an old linux_base, pkg_delete it, make sure /compat/linux is empty or nonexistent. If the port fails, and you have bandwidth or a CD, install linux-base from the package. Then proceed to staroffice. You should be fine. Good luck! ==ml On Wed, Sep 20, 2000 at 11:55:19AM -0400, Dan Z. wrote: > Greets, > > I'm having difficulty installing Staroffice 5.2 on 4.1-Stable, I can't > think of a way around this, so I'm wondering if I could get some help > :) Builds fail with the following: > > ===> Extracting for staroffice-5.2 > >> Checksum OK for staroffice52/soa-5_2-ga-bin-linux-en.bin. > >> Checksum OK for staroffice52/so-5_2-ga-bin-linux-en.bin. > ===> staroffice-5.2 depends on: /usr/ports/emulators/linux_base > ===> Verifying install for /usr/ports/emulators/linux_base > ===> Installing for linux_base-6.1 > setup-2.0.5-1.noarch.rpm > filesystem-1.3.5-1.noarch.rpm > basesystem-6.0-4.noarch.rpm > ldconfig-1.9.5-15.i386.rpm > glibc-2.1.2-11.i386.rpm > termcap-9.12.6-15.i386.rpm > libtermcap-2.0.8-18.i386.rpm > bash-1.14.7-16.i386.rpm > ncurses-4.2-25.i386.rpm > zlib-1.1.3-5.i386.rpm > info-3.12h-2.i386.rpm > fileutils-4.0-8.i386.rpm > grep-2.3-2.i386.rpm > binutils-2.9.1.0.23-6.i386.rpm > gd-1.3-5.i386.rpm > gdbm-1.8.0-2.i386.rpm > glib-1.2.5-1.i386.rpm > package glib-1.2.6-2 (which is newer) is already installed > error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be installed > *** Error code 1 > > > Thanks for any help anyone can provide. > > Daniel J. Zaccariello > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 10: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 4A10B37B43E for ; Wed, 20 Sep 2000 10:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA95582; Wed, 20 Sep 2000 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from icc.cgu.chel.su (gw.csu.ru [195.54.14.5]) by hub.freebsd.org (Postfix) with ESMTP id AB41637B422 for ; Wed, 20 Sep 2000 10:45:08 -0700 (PDT) Received: from mail.cgu.chel.su (mail.cgu.chel.su [195.54.14.68]) by icc.cgu.chel.su (8.9.3/8.9.2) with ESMTP id XAA90008 for ; Wed, 20 Sep 2000 23:44:49 +0600 (ESS) (envelope-from ilia@jane.cgu.chel.su) Received: (from uucp@localhost) by mail.cgu.chel.su (8.9.3/8.8.6) with UUCP id XAA19893 for FreeBSD-gnats-submit@freebsd.org; Wed, 20 Sep 2000 23:48:24 +0600 (ESS) Received: (from ilia@localhost) by jane.cgu.chel.su (8.11.0/8.9.2) id e8KHgxm02092; Wed, 20 Sep 2000 23:42:59 +0600 (ESS) (envelope-from ilia) Message-Id: <200009201742.e8KHgxm02092@jane.cgu.chel.su> Date: Wed, 20 Sep 2000 23:42:59 +0600 (ESS) From: ilia@jane.cgu.chel.su Reply-To: ilia@jane.cgu.chel.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21425: Perl5 module, port submission (converters/p5-Unicode-Map8) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21425 >Category: ports >Synopsis: Perl5 module, port submission (converters/p5-Unicode-Map8) >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 Sep 20 10:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Ilia Chipitsine >Release: FreeBSD 4.1-STABLE i386 >Organization: Chelyabinsk State University >Environment: >Description: >How-To-Repeat: >Fix: here's the port: begin 644 p5-Unicode-Map8.tar M8V]N=F5R=&5R2!5;FEC;V1E+"!);F,N(&%N9"!T:&4@8V]D92`@ M("`@("`@("`@(`IT86)L97,@:6X@4D9#(#$S-#4N("!.97<@;6%P6UB;VPN8FEN"FQI8B]P97)L-2]S:71E7W!ETQ/0T%,0D%317TO;&EB+W!EU!%4DQ?5D52?2\D>U!%4DQ?05)#2'TO56YI8V]D92]#:&%R3F%M M92YP;3HD>U!/4E131$E2?2]C;VYV97)T97)S+W`U+55N:6-O9&4M4W1R:6YG M(%P*"0DD>TQ/0T%,0D%317TO;&EB+W!EU!%4DQ? M5D52?2\D>U!%4DQ?05)#2'TO56YI8V]D92]3=')I;FU!2 M149)6'TO;&EB+W!EU=22U-20WT[("1[4T5414Y6?2`D>TU!2T5?14Y6?2`D>U!% M4DPU?2!-86ME9FEL92Y03`H*+FEN8VQU9&4@/&)S9"YP;W)T+FUK/@H````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` M```````````````````````````````````````````````````````````` >Release-Note: >Audit-Trail: >Unformatted: >```````````````````````````````````````` ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 11: 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 F1EFD37B423 for ; Wed, 20 Sep 2000 11:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA98189; Wed, 20 Sep 2000 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 0115837B423; Wed, 20 Sep 2000 10:57:44 -0700 (PDT) Message-Id: <20000920175744.0115837B423@hub.freebsd.org> Date: Wed, 20 Sep 2000 10:57:44 -0700 (PDT) From: n_hibma@qubesoft.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21426: Wrong name in Name field of passwd file for mailman port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21426 >Category: ports >Synopsis: Wrong name in Name field of passwd file for mailman port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 20 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: current >Organization: Qube Software Ltd. >Environment: >Description: Just noticed the script to add users for the mailman port sets the comment field of the passwd entry to 'MySQL user'. >How-To-Repeat: See /usr/ports/mail/mailman/*/INSTALL >Fix: Change the name >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 Sep 20 11:48: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 7AD6637B422; Wed, 20 Sep 2000 11:48:13 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA11880; Wed, 20 Sep 2000 11:48:13 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Wed, 20 Sep 2000 11:48:13 -0700 (PDT) From: Message-Id: <200009201848.LAA11880@freefall.freebsd.org> To: lioux@uol.com.br, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21421: New port p5-Math-Expr perl module Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port p5-Math-Expr perl module State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Sep 20 11:48:04 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21421 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 12: 5: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 1AA9837B424; Wed, 20 Sep 2000 12:05:13 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA16162; Wed, 20 Sep 2000 12:05:13 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Wed, 20 Sep 2000 12:05:13 -0700 (PDT) From: Message-Id: <200009201905.MAA16162@freefall.freebsd.org> To: ilia@jane.cgu.chel.su, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21425: Perl5 module, port submission (converters/p5-Unicode-Map8) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Perl5 module, port submission (converters/p5-Unicode-Map8) State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Sep 20 12:04:59 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21425 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 12: 7:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from scaup.prod.itd.earthlink.net (scaup.prod.itd.earthlink.net [207.217.121.49]) by hub.freebsd.org (Postfix) with ESMTP id B9F3637B422 for ; Wed, 20 Sep 2000 12:07:16 -0700 (PDT) Received: from gaea.mindspring.com (1Cust227.tnt2.hershey.pa.da.uu.net [63.25.19.227]) by scaup.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with ESMTP id MAA05302 for ; Wed, 20 Sep 2000 12:07:11 -0700 (PDT) Message-Id: <5.0.0.25.2.20000920150352.009e63d0@pop.mindspring.com> X-Sender: marisombra@pop.mindspring.com X-Mailer: QUALCOMM Windows Eudora Version 5.0 Date: Wed, 20 Sep 2000 15:11:38 -0400 To: ports@FreeBSD.org From: "Dan Z." Subject: Staroffice 5.2 Port Broken? 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 Greets, Sorry for posting what appears to be the same message, but I have a different conclusion now: when building the StarOffice 5.2 port, it tries to install linux_base 6.1 regardless of if it's installed already. This behavior doesn't appear to occur when I build other ports that depend on linux_base. linux_base also builds fine without error by itself. Please note that this is an install from the port, I did not download from Sun directly. > uname -a FreeBSD requiem.smite.lan 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 17 12:58:24 EDT 2000 sunship@requiem.smite.lan:/usr/obj/usr/src/sys/REQUIEM-SMP i386 > kldstat Id Refs Address Size Name 1 3 0xc0100000 21bb68 kernel 2 1 0xc0d1d000 11000 linux.ko > pkg_info | grep linux linux_base-6.1 The base set of packages needed in Linux mode > From /usr/ports/emulators/linux_base .if (${MACHINE_ARCH} == "i386") LIBC5_COMPAT= ld.so-1.9.5-11.i386.rpm libc-5.3.12-31.i386.rpm RPM_BINUTILS= binutils-2.9.1.0.23-6.i386.rpm RPM_GLIB= glib-1.2.5-1.i386.rpm <------- this is where it stops but nothing shows in pkg_info for the updated version below, so I'm confused here RPM_GLIBC= glibc-2.1.2-11.i386.rpm RPM_LDCONFIG= ldconfig-1.9.5-15.i386.rpm RPM_RPM= rpm-3.0.3-2.i386.rpm RPM_X_LIBS= XFree86-libs-3.3.5-3.i386.rpm UPDATES= glib-1.2.6-2.i386.rpm <-----this is what it says I have installed already (newer) and last but not least, the original error: ===> Extracting for staroffice-5.2 >> Checksum OK for staroffice52/soa-5_2-ga-bin-linux-en.bin. >> Checksum OK for staroffice52/so-5_2-ga-bin-linux-en.bin. ===> staroffice-5.2 depends on: /usr/ports/emulators/linux_base ===> Verifying install for /usr/ports/emulators/linux_base ===> Installing for linux_base-6.1 setup-2.0.5-1.noarch.rpm filesystem-1.3.5-1.noarch.rpm basesystem-6.0-4.noarch.rpm ldconfig-1.9.5-15.i386.rpm glibc-2.1.2-11.i386.rpm termcap-9.12.6-15.i386.rpm libtermcap-2.0.8-18.i386.rpm bash-1.14.7-16.i386.rpm ncurses-4.2-25.i386.rpm zlib-1.1.3-5.i386.rpm info-3.12h-2.i386.rpm fileutils-4.0-8.i386.rpm grep-2.3-2.i386.rpm binutils-2.9.1.0.23-6.i386.rpm gd-1.3-5.i386.rpm gdbm-1.8.0-2.i386.rpm glib-1.2.5-1.i386.rpm package glib-1.2.6-2 (which is newer) is already installed error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be installed *** Error code 1 Thanks for anybody's assistance (thanks Michael for your help too). Daniel J. Zaccariello To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 12: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 6E5AF37B422 for ; Wed, 20 Sep 2000 12:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA18103; Wed, 20 Sep 2000 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 20 Sep 2000 12:10:02 -0700 (PDT) Message-Id: <200009201910.MAA18103@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21425: Perl5 module, port submission (converters/p5-Unicode-Map8) Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21425; it has been noted by GNATS. From: Will Andrews To: ilia@jane.cgu.chel.su Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21425: Perl5 module, port submission (converters/p5-Unicode-Map8) Date: Wed, 20 Sep 2000 13:59:19 -0500 On Wed, Sep 20, 2000 at 11:42:59PM +0600, ilia@jane.cgu.chel.su wrote: > >Synopsis: Perl5 module, port submission (converters/p5-Unicode-Map8) Thanks for your submission; I'll be committing shortly. But be careful with uuencoded files: > begin 644 p5-Unicode-Map8.tar [..snip..] > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > M```````````````````````````````````````````````````````````` > >Release-Note: > >Audit-Trail: > >Unformatted: > >```````````````````````````````````````` > ` > end As you can see, GNATS cut some of the uuencoding off near the bottom, and this results in a missing Makefile in the tarball. If problems like this happen often with you, I suggest just posting a pointer at the tarball on the web somewhere. Also, while reviewing your port, I found that the header was missing from the Makefile (could be because of the truncated uuencoding). So I added the default, which includes your name. You also had two BUILD_DEPENDS that simply look for different files originating from the same port. That's gratuitous, and should be avoided. Also, the long lines as a result of site_perl etc. I shortened by consolidating the common directories in a ${SITE_PERL} variable. Another thing I noticed is that your port does not make the Perl Makefile respect CFLAGS. So I fixed that too (I think I noticed converters/p5-Unicode-String doesn't respect it either). -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 12:28: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 D358637B422; Wed, 20 Sep 2000 12:28:47 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13bpXy-000FXL-00; Wed, 20 Sep 2000 14:28:46 -0500 Date: Wed, 20 Sep 2000 14:28:46 -0500 From: Ade Lovett To: Will Andrews Cc: ports@FreeBSD.org Subject: SITE_PERL variable (Was Re: ports/21425...) Message-ID: <20000920142846.F54766@FreeBSD.org> References: <200009201910.MAA18103@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: <200009201910.MAA18103@freefall.freebsd.org>; from will@physics.purdue.edu on Wed, Sep 20, 2000 at 12:10:02PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 12:10:02PM -0700, Will Andrews wrote: > [snip] > > I shortened > by consolidating the common directories in a ${SITE_PERL} variable. A bunch of ports use various methods to create their own site perl variables. Perhaps it's something we should include from bsd.port.mk if WITH_PERL5 is defined. If it sounds useful, I'm willing to go write up the patch, and once committed, start bouncing around the tree doing cleanups. Thinking about it, we probably need a few variables: SITE_PERL_BASE ?= ${LOCALBASE} SITE_PERL = ${SITE_PERL_BASE}/lib/perl5/site_perl/${PERL_VER} SITE_PERL_ARCH = ${SITE_PERL}/${PERL_ARCH} Thoughts? Would certainly clean up a bunch of Makefiles. -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 Sep 20 12:51:51 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 4D35637B423; Wed, 20 Sep 2000 12:51:49 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id PAA01057; Wed, 20 Sep 2000 15:51:46 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8KJpY771163; Wed, 20 Sep 2000 12:51:34 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Wed, 20 Sep 2000 12:51:34 -0700 (PDT) Message-Id: <200009201951.e8KJpY771163@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: jkh@FreeBSD.org, ports@FreeBSD.org, hetzels@westbend.net In-reply-to: <200009200929.e8K9TEH67316@silvia.hip.berkeley.edu> (asami@FreeBSD.org) Subject: Re: PR ports/13649, ports/13650 (conflicts) From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) References: <200009192342.e8JNgMj64933@silvia.hip.berkeley.edu> <200009200929.e8K9TEH67316@silvia.hip.berkeley.edu> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * * Please review the following patch to pkg_install tools to add two * * things: -C (conflicts) support and wildcard matching (also used for * * conflict checking, but it will also enable users to do things like * * "pkg_info -e 'emacs*'" to see which, if any, emacs ports are * * installed). Found another problem after running the entire package build through it. The "another version already installed" check is too strict. The following are cases it rejected where it shouldn't. mule-2.3 / mule-common-2.3 (these two are designed to always work together) tcl-8.0.5 / tcl-8.2.3 (these two are designed to not conflict) docbook-241 / docbook-3.0 (ditto) mule/mule-common is a bug, as the code should be looking at the wrong hyphen (the last one delimits the version). But I don't know why it's even checking for different versions. There are many ports that are designed to work with different versions of itself. Either we should take this check away and leave them to CONFLICTS, or introduce another variable (DOESNT_CONFLICT?) to explicitly state that there is no conflict. What do you guys think? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 12:55:24 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 23DB037B424; Wed, 20 Sep 2000 12:55:21 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13bpxg-000Faz-00; Wed, 20 Sep 2000 14:55:20 -0500 Date: Wed, 20 Sep 2000 14:55:20 -0500 From: Ade Lovett To: Satoshi - Ports Wraith - Asami Cc: jkh@FreeBSD.org, ports@FreeBSD.org, hetzels@westbend.net Subject: Re: PR ports/13649, ports/13650 (conflicts) Message-ID: <20000920145520.G54766@FreeBSD.org> References: <200009192342.e8JNgMj64933@silvia.hip.berkeley.edu> <200009200929.e8K9TEH67316@silvia.hip.berkeley.edu> <200009201951.e8KJpY771163@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: <200009201951.e8KJpY771163@silvia.hip.berkeley.edu>; from asami@FreeBSD.org on Wed, Sep 20, 2000 at 12:51:34PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 12:51:34PM -0700, Satoshi - Ports Wraith - Asami wrote: > tcl-8.0.5 / tcl-8.2.3 (these two are designed to not conflict) The various tcl/tk ports/packages do conflict, however, with significant overlapping of the manual pages for each version. I've got all three installed right now, since one of my other projects is to try and kill off tcl/tk 8.0 and 8.2 .. Just a data point. -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 Sep 20 14:17: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 CA91737B43F; Wed, 20 Sep 2000 14:17:44 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43665; Wed, 20 Sep 2000 14:17:44 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Date: Wed, 20 Sep 2000 14:17:44 -0700 (PDT) From: Message-Id: <200009202117.OAA43665@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org, jim@FreeBSD.org Subject: Re: ports/21418: update gaim make file so that we can use the oscar protocol Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update gaim make file so that we can use the oscar protocol Responsible-Changed-From-To: freebsd-ports->jim Responsible-Changed-By: dannyboy Responsible-Changed-When: Wed Sep 20 14:17:15 PDT 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21418 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 14:29: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 9D9F037B443; Wed, 20 Sep 2000 14:29:56 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA45701; Wed, 20 Sep 2000 14:29:56 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Date: Wed, 20 Sep 2000 14:29:56 -0700 (PDT) From: Message-Id: <200009202129.OAA45701@freefall.freebsd.org> To: ats@first.gmd.de, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21364: ports/lang/pike wrong mastersite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/lang/pike wrong mastersite State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Wed Sep 20 14:27:51 PDT 2000 State-Changed-Why: PR 21382 has an update to a newer version which is fetchable. http://www.freebsd.org/cgi/query-pr.cgi?pr=21364 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 14: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 02A5037B446 for ; Wed, 20 Sep 2000 14:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA45737; Wed, 20 Sep 2000 14:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 7C98B37B443 for ; Wed, 20 Sep 2000 14:27:45 -0700 (PDT) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e8KLRiN10030 for ; Wed, 20 Sep 2000 23:27:44 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.10.1/8.10.1) with ESMTP id e8KLRhE14841 for ; Wed, 20 Sep 2000 23:27:43 +0200 (MET DST) Received: from alaska.cert.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.11.0/8.11.0/Siemens CERT [ $Revision: 1.8 ]) with ESMTP id e8KLRhp14823 for ; Wed, 20 Sep 2000 23:27:43 +0200 (CEST) Received: (from ust@localhost) by alaska.cert.siemens.de (8.11.0/8.11.0/alaska [ $Revision: 1.4 ]) id e8KLRh570117; Wed, 20 Sep 2000 21:27:43 GMT (envelope-from ust) Message-Id: <200009202127.e8KLRh570117@alaska.cert.siemens.de> Date: Wed, 20 Sep 2000 21:27:43 GMT From: Udo Schweigert Reply-To: ust@cert.siemens.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21432: Maintainer update of port net/iplog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21432 >Category: ports >Synopsis: Maintainer update of port net/iplog >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 Sep 20 14:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Udo Schweigert >Release: FreeBSD 4.1-STABLE i386 >Organization: Siemens AG >Environment: >Description: Update to iplog-2.2.1. Submitted by: KATO Tsuguru >How-To-Repeat: >Fix: diff -ru iplog.orig/Makefile iplog/Makefile --- iplog.orig/Makefile Sun Jul 9 14:40:37 2000 +++ iplog/Makefile Wed Sep 20 23:19:59 2000 @@ -6,41 +6,39 @@ # PORTNAME= iplog -PORTVERSION= 2.2.0 +PORTVERSION= 2.2.1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ - ftp://ftp.karlsbakk.net/pub/ojnk/iplog/ + http://misc.ojnk.net/~odin/stuff/ MASTER_SITE_SUBDIR= ojnk -PATCH_SITES= http://ojnk.sourceforge.net/stuff/ \ - ftp://ftp.karlsbakk.net/pub/ojnk/iplog/ -PATCH_DIST_STRIP=-p1 - MAINTAINER= ust@cert.siemens.de -GNU_CONFIGURE= yes -MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX}" USE_GMAKE= yes +GNU_CONFIGURE= yes MAN5= iplog.conf.5 MAN8= iplog.8 .include +post-patch: +.for file in example-iplog.conf iplog.8 iplog.conf.5 src/iplog.h + @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${file} +.endfor post-install: - @strip ${PREFIX}/sbin/iplog + ${INSTALL_DATA} ${WRKSRC}/example-iplog.conf ${PREFIX}/etc .if !exists(${PREFIX}/etc/iplog.conf) - @${CP} ${WRKSRC}/example-iplog.conf ${PREFIX}/etc/iplog.conf + ${INSTALL_DATA} ${WRKSRC}/example-iplog.conf ${PREFIX}/etc/iplog.conf .else - @echo - @echo "============================================================================" - @echo "Hint: iplog changed its configuration file from ${PREFIX}/etc/iplog.rules" - @echo " to ${PREFIX}/etc/iplog.conf" - @echo - @echo "See ${PREFIX}/etc/example-iplog.conf for an example" - @echo "============================================================================" - @echo + @${ECHO_MSG} + @${ECHO_MSG} "============================================================================" + @${ECHO_MSG} "Hint: iplog changed its configuration file from ${PREFIX}/etc/iplog.rules" + @${ECHO_MSG} " to ${PREFIX}/etc/iplog.conf" + @${ECHO_MSG} + @${ECHO_MSG} "See ${PREFIX}/etc/example-iplog.conf for an example" + @${ECHO_MSG} "============================================================================" + @${ECHO_MSG} .endif - @${CP} ${WRKSRC}/example-iplog.conf ${PREFIX}/etc/example-iplog.conf .include diff -ru iplog.orig/files/md5 iplog/files/md5 --- iplog.orig/files/md5 Sun Jul 9 14:40:38 2000 +++ iplog/files/md5 Wed Sep 20 22:02:38 2000 @@ -1 +1 @@ -MD5 (iplog-2.2.0.tar.gz) = ca906ef470c4313fe622d0a545a16cfe +MD5 (iplog-2.2.1.tar.gz) = 5411e3a556b0635361a2aa94a6e9faae Only in iplog: ktrace.out diff -ru iplog.orig/patches/patch-aa iplog/patches/patch-aa --- iplog.orig/patches/patch-aa Fri Jul 7 20:34:09 2000 +++ iplog/patches/patch-aa Wed Sep 20 22:02:38 2000 @@ -5,7 +5,7 @@ ** ** Example iplog configuration file. -** Edit me and copy me to /etc/iplog.conf -+** Edit me and copy me to /usr/local/etc/iplog.conf ++** Edit me and copy me to %%PREFIX%%/etc/iplog.conf ** ** See iplog.conf(5) for details on syntax and a full description ** of available options. diff -ru iplog.orig/patches/patch-ab iplog/patches/patch-ab --- iplog.orig/patches/patch-ab Fri Jul 7 20:34:09 2000 +++ iplog/patches/patch-ab Wed Sep 20 22:02:38 2000 @@ -5,7 +5,7 @@ .SH FILES .TP -.B /etc/iplog.conf -+.B /usr/local/etc/iplog.conf ++.B %%PREFIX%%/etc/iplog.conf The .B iplog configuration file. diff -ru iplog.orig/patches/patch-ac iplog/patches/patch-ac --- iplog.orig/patches/patch-ac Fri Jul 7 20:34:09 2000 +++ iplog/patches/patch-ac Wed Sep 20 22:02:38 2000 @@ -5,7 +5,7 @@ Upon execution and upon being restarted, iplog reads a list of configuration rules from its configuration file. The default location of this file is -.B /etc/iplog.conf. -+.B /usr/local/etc/iplog.conf. ++.B %%PREFIX%%/etc/iplog.conf. .SH NOTATION Throughout this document, required parameters will be denoted by enclosing the parameter in angle brackets . diff -ru iplog.orig/patches/patch-ad iplog/patches/patch-ad --- iplog.orig/patches/patch-ad Fri Jul 7 20:34:09 2000 +++ iplog/patches/patch-ad Wed Sep 20 22:02:38 2000 @@ -5,7 +5,7 @@ */ -#define CONFFILE "/etc/iplog.conf" -+#define CONFFILE "/usr/local/etc/iplog.conf" ++#define CONFFILE "%%PREFIX%%/etc/iplog.conf" /* ** Making these smaller will probably do bad things. diff -ru iplog.orig/pkg/DESCR iplog/pkg/DESCR --- iplog.orig/pkg/DESCR Sat Oct 9 18:40:11 1999 +++ iplog/pkg/DESCR Wed Sep 20 22:02:38 2000 @@ -3,3 +3,5 @@ should be relatively easy. iplog contains a built-in packet filter, allowing for logging or excluding packets that fit a given set of criteria. + +WWW: http://ojnk.sourceforge.net/ diff -ru iplog.orig/pkg/PLIST iplog/pkg/PLIST --- iplog.orig/pkg/PLIST Sun Jul 9 14:40:38 2000 +++ iplog/pkg/PLIST Wed Sep 20 22:02:38 2000 @@ -1,2 +1,4 @@ sbin/iplog +@unexec if cmp -s %D/etc/iplog.conf %D/etc/example-iplog.conf; then rm -f %D/etc/iplog.conf; fi etc/example-iplog.conf +@exec test -f %B/iplog.conf || cp %B/%f %B/iplog.conf >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 Sep 20 15: 9:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from netplex.com.au (adsl-63-207-30-186.dsl.snfc21.pacbell.net [63.207.30.186]) by hub.freebsd.org (Postfix) with ESMTP id 2AE0C37B42C for ; Wed, 20 Sep 2000 15:09:30 -0700 (PDT) Received: from netplex.com.au (peter@localhost [127.0.0.1]) by netplex.com.au (8.11.0/8.9.3) with ESMTP id e8KM9PG38280; Wed, 20 Sep 2000 15:09:25 -0700 (PDT) (envelope-from peter@netplex.com.au) Message-Id: <200009202209.e8KM9PG38280@netplex.com.au> X-Mailer: exmh version 2.1.1 10/15/1999 To: Olivier Cherrier Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: librsaintl-1.1 In-Reply-To: <39C891DD.5040500@ifrance.com> Date: Wed, 20 Sep 2000 15:09:25 -0700 From: Peter Wemm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Olivier Cherrier wrote: > Hi Peter. > > > Is the librsaintl-1.1 removal the cause of the ssh2 port removal ? No, because the reason for its existance is gone. The RSA patent expired today, that was the sole reason for this port - ie: to enable people stuck in the US the option to use the superior international implementation of the RSA algorithms. The non-US versions of FreeBSD built and installed the librsaintl library automatically. I believe the librsaintl package is still available for people to use 'pkg_add -r librsaintl' over the net. I am not sure quite what the FreeBSD 4.x install cd's install, I believe the package is on there somewhere though. (I have never installed a full system from CD, I have always installed a minimum system and recompiled the rest from scratch) Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 15:51: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.bluetail.com (mail.bluetail.com [195.149.129.26]) by hub.freebsd.org (Postfix) with ESMTP id CD16437B422; Wed, 20 Sep 2000 15:50:56 -0700 (PDT) Received: from albatross.bluetail.com (albatross.bluetail.com [192.168.128.42]) by duva.bluetail.com (BLUETAIL Mail Robustifier 2.2.1) with ESMTP id 972699.490212.969duva-s1 ; Thu, 21 Sep 2000 00:50:12 +0200 Received: (from seb@localhost) by albatross.bluetail.com (8.9.3/8.9.3) id AAA71693; Thu, 21 Sep 2000 00:50:09 +0200 (CEST) (envelope-from seb) To: Jimmy Olgeni Cc: , Ade Lovett , ruslan@shevchenko.kiev.ua, ports@freebsd.org Subject: Re: erlang patch References: Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII From: Sebastian Strollo Date: 21 Sep 2000 00:50:09 +0200 In-Reply-To: Jimmy Olgeni's message of "Wed, 6 Sep 2000 22:42:39 +0200 (CEST)" Message-ID: Lines: 29 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [I hope you don't mind that I widened the reply a bit, to inform other interested parties...] Jimmy Olgeni writes: > Hi Sebastian, > > Here is the patch. It should apply cleanly over the current port. ... Jimmy, Thank you very much for the patch, it seems to work fine, I suggest you submit it and also state that it superceed pr:s 20401 and 19659. [I said was working on a R7 port] > > Will the R7A be a separate port? It would be nice to keep R6A around > for some time to support older systems, if there are any potential > incompatibilities in R7. Well, I don't know. I guess if the demand is really big. But I really don't think we need to make R7 into a separate port - it shouldn't be backwards incompatible. Thanks for waiting! /Sebastian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 15:59: 3 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 A26A137B422 for ; Wed, 20 Sep 2000 15:59:01 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13bsos-000FwV-00; Wed, 20 Sep 2000 17:58:26 -0500 Date: Wed, 20 Sep 2000 17:58:26 -0500 From: Ade Lovett To: Sebastian Strollo Cc: Jimmy Olgeni , mi@aldan.algebra.com, ruslan@shevchenko.kiev.ua, ports@freebsd.org Subject: Re: erlang patch Message-ID: <20000920175826.A61243@FreeBSD.org> 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 seb@bluetail.com on Thu, Sep 21, 2000 at 12:50:09AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 21, 2000 at 12:50:09AM +0200, Sebastian Strollo wrote: > Thank you very much for the patch, it seems to work fine, I suggest > you submit it and also state that it superceed pr:s 20401 and 19659. Ok. Jimmy, please do put the above information in the first couple of lines on the port, mark it for my attention, and directly cc me a copy so that I'll pick up on it. -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 Sep 20 15:59: 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 3FD4F37B50F for ; Wed, 20 Sep 2000 15:59:04 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id PAA60254 for ; Wed, 20 Sep 2000 15:59:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 15:59:04 -0700 (PDT) From: Kris Kennaway To: ports@freebsd.org Subject: Package Vulnerability scanner (CVS commit: pkgsrc (fwd)) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Anyone care to adapt this for FreeBSD? I don't have time right now. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe ---------- Forwarded message ---------- Date: Tue, 19 Sep 2000 22:23:17 +0300 (EEST) From: Alistair G. Crooks To: source-changes@netbsd.org Subject: CVS commit: pkgsrc Module Name: pkgsrc Committed By: agc Date: Tue Sep 19 19:23:17 UTC 2000 Update of /cvsroot/pkgsrc/security/audit-packages In directory netbsd.hut.fi:/tmp/cvs-serv6663 Log Message: Initial import of a package to scan a vulnerability list, looking for installed packages which are insecure and open to exploitation. The original idea came from Roland Dowdeswell and Bill Sommerfeld, quite independently, the unorthodox implementation by me. This package contains two scripts: (1) download-vulnerability-list, which downloads a list of vulnerable packages from the NetBSD ftp server, and (2) audit-packages, which scans all the packages installed on the local machine, looking for packages which are vulnerable. Status: Vendor Tag: TNF Release Tags: pkgsrc-base N pkgsrc/security/audit-packages/Makefile N pkgsrc/security/audit-packages/files/download-vulnerability-list N pkgsrc/security/audit-packages/files/audit-packages N pkgsrc/security/audit-packages/pkg/COMMENT N pkgsrc/security/audit-packages/pkg/DESCR N pkgsrc/security/audit-packages/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 16:26: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 6F00237B422; Wed, 20 Sep 2000 16:26:32 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id QAA65773; Wed, 20 Sep 2000 16:26:32 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 16:26:32 -0700 (PDT) From: Kris Kennaway To: asami@freebsd.org, ports@freebsd.org Subject: Bento not updating? 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 Bento hasn't updated the website in a week: the most recent logs are from September 13. Is there a problem there? I thought the new cluster only took 18 hours to crank out a full build. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 16:37: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 105D137B422; Wed, 20 Sep 2000 16:37:49 -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 e8KNbhQ26868; Wed, 20 Sep 2000 19:37:43 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39C94A46.6E954068@thehousleys.net> Date: Wed, 20 Sep 2000 19:37:42 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Kris Kennaway Cc: ports@FreeBSD.ORG Subject: Re: Package Vulnerability scanner (CVS commit: pkgsrc (fwd)) References: Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms4661DBD1F004A9225272F74A" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms4661DBD1F004A9225272F74A Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Kris Kennaway wrote: > > Anyone care to adapt this for FreeBSD? I don't have time right now. > Unless I hear someone has started I will take a crack at this. Jim -- Unix is very user-friendly. It's just picky who its friends are. --------------ms4661DBD1F004A9225272F74A Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIH7gYJKoZIhvcNAQcCoIIH3zCCB9sCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC Bb8wggKjMIICDKADAgECAgMDLRswDQYJKoZIhvcNAQEEBQAwgZQxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZU aGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25h bCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MB4XDTAwMDgzMTExMjUzM1oXDTAxMDgzMTExMjUz M1owRTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEiMCAGCSqGSIb3DQEJARYT amltQHRoZWhvdXNsZXlzLm5ldDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAoecaMx4y p2rGru9O4EGcnetN3YJekZy3C7BvhxuvN+fboBpG2MSEUMBZzGX0CSZwBC1SapoZnyqzRItc OgUjSRrUhGfcSQ0nZv/dxaWb3L68+f4pDkALZ4WxR7feY8Cur2SrybM0wtpGcTioNWKbMNRd wDBxD/jgggHAa8hSo3sCAwEAAaNRME8wHgYDVR0RBBcwFYETamltQHRoZWhvdXNsZXlzLm5l dDAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFIir8WCDZlX05FjHRh3AYb0j18OMMA0GCSqG SIb3DQEBBAUAA4GBAE2PrU05luhZFcnuwpIpcqFqg+F5uuN4XO9tSX1KTCI1/YIUoTUuMyQa FO/n+Xm9xxv36v+RzVFbXjaDbg6m89qyWeawORQplL0JhXQmh10Anjg/RkBwt02FeLjbTZ7Z 6PiLOLKfuLPFYTcaSBavOIRbvVSWrK6o7DmZKhe1YgWVMIIDFDCCAn2gAwIBAgIBCzANBgkq hkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAG A1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3 dGUuY29tMB4XDTk5MDkxNjE0MDE0MFoXDTAxMDkxNTE0MDE0MFowgZQxCzAJBgNVBAYTAlpB MRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQK EwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJz b25hbCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB gQCzaVqX1NAWC3q1xV3pIZwjcs0STEv3fs/H+8pyJPRCUqxXleN7YXoXhOf9cjk4lLTq7WWn kgZeveBl9hm7lHl2TD65aHB1hBz0EXQAvAUsTwkDFzHM9EHUcsamXeKIRLCLLsRN8fDWhT5s 85WUeJF+QOmc0Y0VV47Cc+Uw3kb1TwIDAQABozcwNTASBgNVHRMBAf8ECDAGAQH/AgEAMB8G A1UdIwQYMBaAFHJJwnM0xlX0C3ZygX539IfnxrIOMA0GCSqGSIb3DQEBBAUAA4GBAGvGWekx +um27LED2N9ycv6RYEjqxlXde/BnjsZhcOdtwqU32J23FyhWBYvdXHVvxpGQxmxmcRPQEHxr kW+G4CE2LcHX6rIJrc8tbcaDUpv7u/6ch538t+l0kuRcl678fqzKDW9yemcsa3P1hvmd9QBu 9B0Hzp2egmMp75MJflXeMYIB9zCCAfMCAQEwgZwwgZQxCzAJBgNVBAYTAlpBMRUwEwYDVQQI EwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVl bWFpbCBSU0EgMTk5OS45LjE2AgMDLRswCQYFKw4DAhoFAKCBsTAYBgkqhkiG9w0BCQMxCwYJ KoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMDA5MjAyMzM3NDNaMCMGCSqGSIb3DQEJBDEW BBSngDOFbvi+BciLrzN8P/0fFY/bCDBSBgkqhkiG9w0BCQ8xRTBDMAoGCCqGSIb3DQMHMA4G CCqGSIb3DQMCAgIAgDAHBgUrDgMCBzANBggqhkiG9w0DAgIBQDANBggqhkiG9w0DAgIBKDAN BgkqhkiG9w0BAQEFAASBgHvywQNO5ePJz0OTsc6YAQzw2xTY1QTGkcVJGfVCf+XV2J/jlbwp oDqKIHcDx2rc7FO9MvRHXa6QH9Om6DM61c6B6tsvVHBEyi1rcTMMusJxpTz5RUrDUOfzDtk3 9i3PS9HbOsevMOvboAdQmjRkANSrC363zQS+XU4R2B9VUqqs --------------ms4661DBD1F004A9225272F74A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 16:39:53 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 57F9537B423; Wed, 20 Sep 2000 16:39:51 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA03203; Wed, 20 Sep 2000 19:39:44 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8KNdQj74592; Wed, 20 Sep 2000 16:39:26 -0700 (PDT) (envelope-from asami) To: Kris Kennaway Cc: ports@FreeBSD.org Subject: Re: Bento not updating? References: From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 20 Sep 2000 16:39:06 -0700 In-Reply-To: Kris Kennaway's message of "Wed, 20 Sep 2000 16:26:32 -0700 (PDT)" Message-ID: Lines: 12 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Kris Kennaway * Bento hasn't updated the website in a week: the most recent logs are from * September 13. Is there a problem there? I thought the new cluster only * took 18 hours to crank out a full build. Sorry -- the new bento (onigiri) is ready but the rename has not been done. I've swapped bento's errorlogs page to point to onigiri. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 16:42: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 C494737B423; Wed, 20 Sep 2000 16:42:39 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id QAA68398; Wed, 20 Sep 2000 16:42:39 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 16:42:39 -0700 (PDT) From: Kris Kennaway To: asami@freebsd.org, ports@freebsd.org Subject: Re: Bento not updating? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Sep 2000, Kris Kennaway wrote: > Bento hasn't updated the website in a week: the most recent logs are from > September 13. Is there a problem there? I thought the new cluster only > took 18 hours to crank out a full build. Found out from Paul Saab that bento is in the process of being replace by a new machine, onigiri. Build logs are here: http://onigiri.FreeBSD.org/errorlogs/ (redirect from the main page doesnt work right now) Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 16:48:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id E9FA737B424; Wed, 20 Sep 2000 16:48:43 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id F3DCB1B41; Wed, 20 Sep 2000 18:44:58 -0500 (EST) Date: Wed, 20 Sep 2000 18:44:58 -0500 From: Will Andrews To: James Housley Cc: Kris Kennaway , ports@FreeBSD.ORG Subject: Re: Package Vulnerability scanner (CVS commit: pkgsrc (fwd)) Message-ID: <20000920184458.S35550@radon.gryphonsoft.com> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , James Housley , Kris Kennaway , ports@FreeBSD.ORG References: <39C94A46.6E954068@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: <39C94A46.6E954068@thehousleys.net>; from jim@thehousleys.net on Wed, Sep 20, 2000 at 07:37:42PM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 07:37:42PM -0400, James Housley wrote: > Unless I hear someone has started I will take a crack at this. Beat you to it. I already submitted one to Kris. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17: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 D9DE037B423 for ; Wed, 20 Sep 2000 17:11:06 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id RAA73828 for ; Wed, 20 Sep 2000 17:11:06 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 17:11:06 -0700 (PDT) From: Kris Kennaway To: ports@freebsd.org Subject: XFree86-4 and USE_XLIB 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 A number of ports are currently broken because onigiri is building against the XFree86-4 library packages when USE_XLIB is enabled, and they expect that USE_XLIB will pull in all of X (in particular, binaries - ssh is one such casualty) - this is the case for 4.x packages also (this may be why they havent been updated in a few days). Aside from the fact that XFree86-4 is not yet ready to be used as the default for package dependencies, we would need appropriate USE_XBIN variables to deal with this before the change is made. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:14: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 C00EC37B43C; Wed, 20 Sep 2000 17:14:30 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id RAA74282; Wed, 20 Sep 2000 17:14:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 17:14:30 -0700 (PDT) From: Kris Kennaway To: Peter Wemm Cc: Olivier Cherrier , ports@FreeBSD.org Subject: Re: FreeBSD Port: librsaintl-1.1 In-Reply-To: <200009202209.e8KM9PG38280@netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Sep 2000, Peter Wemm wrote: > The non-US versions of FreeBSD built and installed the librsaintl library > automatically. I believe the librsaintl package is still available for > people to use 'pkg_add -r librsaintl' over the net. I am not sure quite > what the FreeBSD 4.x install cd's install, I believe the package is on > there somewhere though. (I have never installed a full system from CD, I > have always installed a minimum system and recompiled the rest from > scratch) librsaintl was never available automatically via pkg_add -r, nor was it available on the CD (the reason for both is "we weren't allowed to - that was the whole point"). It was allegedly built once long ago on ftp.internat.freebsd.org but I could never find exactly where. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:16:51 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 7382837B422; Wed, 20 Sep 2000 17:16:47 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA19434; Wed, 20 Sep 2000 20:16:43 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8L0GSG74770; Wed, 20 Sep 2000 17:16:28 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Wed, 20 Sep 2000 17:16:28 -0700 (PDT) Message-Id: <200009210016.e8L0GSG74770@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ade@FreeBSD.org Cc: ports@FreeBSD.org, ps@FreeBSD.org Subject: oaf port From: asami@FreeBSD.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, After many months, I finally chased down the problem with gconf in the package build cluster -- it was leaving the oafd running behind so the calling ssh process did not terminate (which was causing the entire build to stall). The following will "fix" it, does it look ok for you? Although (I assume) it's gconf and oaf that's running it, I think it should be in oaf's PLIST since that's the safest place to kill the process -- people deinstalling oaf probably don't need the oafd to keep running. :) Satoshi P.S. I'm not using killall because it doesn't work well inside the chroot environment. ------- Index: pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/devel/oaf/pkg/PLIST,v retrieving revision 1.4 diff -u -r1.4 PLIST --- pkg/PLIST 2000/08/17 16:39:50 1.4 +++ pkg/PLIST 2000/09/20 19:58:10 @@ -33,3 +33,4 @@ @unexec rmdir %D/share/gnome 2>/dev/null || true @dirrm include/liboaf @dirrm etc/oaf +@unexec ps gx | grep '[0-9]:[0-9][0-9]\.[0-9][0-9] oafd --ac-activate' | awk '{print $1}' | xargs kill 2>/dev/null || true To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:18: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 D98E337B422; Wed, 20 Sep 2000 17:18:13 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id RAA74892; Wed, 20 Sep 2000 17:18:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 17:18:13 -0700 (PDT) From: Kris Kennaway To: Will Andrews Cc: James Housley , ports@FreeBSD.ORG, security@FreeBSD.org Subject: Re: Package Vulnerability scanner (CVS commit: pkgsrc (fwd)) In-Reply-To: <20000920184458.S35550@radon.gryphonsoft.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Sep 2000, Will Andrews wrote: > On Wed, Sep 20, 2000 at 07:37:42PM -0400, James Housley wrote: > > Unless I hear someone has started I will take a crack at this. > > Beat you to it. I already submitted one to Kris. The real difficulty here is developing the list of vulnerable packages - in order for it to be useful, we should at least cover the advisories released this year. NetBSD also integrated it into their bsd.pkg.mk somehow - I didn't check what they did. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:24:32 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 1BF2037B422; Wed, 20 Sep 2000 17:24:30 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA15894; Wed, 20 Sep 2000 20:24:21 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8L0OBb74799; Wed, 20 Sep 2000 17:24:11 -0700 (PDT) (envelope-from asami) To: Ade Lovett Cc: jkh@FreeBSD.org, ports@FreeBSD.org, hetzels@westbend.net Subject: Re: PR ports/13649, ports/13650 (conflicts) References: <200009192342.e8JNgMj64933@silvia.hip.berkeley.edu> <200009200929.e8K9TEH67316@silvia.hip.berkeley.edu> <200009201951.e8KJpY771163@silvia.hip.berkeley.edu> <20000920145520.G54766@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 20 Sep 2000 17:24:07 -0700 In-Reply-To: Ade Lovett's message of "Wed, 20 Sep 2000 14:55:20 -0500" Message-ID: Lines: 28 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ade Lovett * The various tcl/tk ports/packages do conflict, however, with * significant overlapping of the manual pages for each version. I know that -- we decided that is ok. Otherwise, we'll have to rename all the manpages or something. * I've got all three installed right now, since one of my other projects * is to try and kill off tcl/tk 8.0 and 8.2 .. As I've mentioned it in the past, that is a worthy goal but is a losing proposition, as a new version of tcl/tk is almost guaranteed to have yet another incompatibility leaving some dependent ports behind. We've done the same thing with tcl73 and tcl74 and tcl75. And right now, we're at the exact same corner. And the problem is not going to get any easier with more dependent ports coming in over time. (Assuming tcl/tk is not going out of vogue.) This is one reason why I am advocating the "stowage" system with true files installed in its own prefix and ${PREFIX} just being a symlink tree. Dealing with cases like this, with multiple ports installing interchangable files, will be a snap -- all tcl8* needs to do is to check for other tcl8* ports during deinstallation and run their "recreate symlinks" scripts. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:25: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 C5F1437B423; Wed, 20 Sep 2000 17:25:31 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13buB5-000G3Q-00; Wed, 20 Sep 2000 19:25:27 -0500 Date: Wed, 20 Sep 2000 19:25:27 -0500 From: Ade Lovett To: Satoshi Asami Cc: ports@FreeBSD.org, ps@FreeBSD.org Subject: Re: oaf port Message-ID: <20000920192527.C61243@FreeBSD.org> References: <200009210016.e8L0GSG74770@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: <200009210016.e8L0GSG74770@silvia.hip.berkeley.edu>; from asami@FreeBSD.org on Wed, Sep 20, 2000 at 05:16:28PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 05:16:28PM -0700, Satoshi Asami wrote: > After many months, I finally chased down the problem with gconf in the > package build cluster -- it was leaving the oafd running behind so the > calling ssh process did not terminate (which was causing the entire > build to stall). Do I win a prize? :) > The following will "fix" it, does it look ok for you? Looks fine to me. -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 Sep 20 17:30: 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 E12F637B43C for ; Wed, 20 Sep 2000 17:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA76686; Wed, 20 Sep 2000 17:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 4613E37B422 for ; Wed, 20 Sep 2000 17:26:04 -0700 (PDT) Received: from baby.int.thehousleys.net (baby.ipv6.thehousleys.net [3ffe:1ce3:6:0:260:8ff:fea3:7fb2]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e8L0PxQ27146 for ; Wed, 20 Sep 2000 20:25:59 -0400 (EDT) (envelope-from housley@thehousleys.net) Received: (from housley@localhost) by baby.int.thehousleys.net (8.11.0/8.11.0) id e8L0Pxu13225; Wed, 20 Sep 2000 20:25:59 -0400 (EDT) (envelope-from housley) Message-Id: <200009210025.e8L0Pxu13225@baby.int.thehousleys.net> Date: Wed, 20 Sep 2000 20:25:59 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21434: MAINTAINER update: devel/sparc-rtems-gdb, forgot option Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21434 >Category: ports >Synopsis: MAINTAINER update: devel/sparc-rtems-gdb, forgot option >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 Sep 20 17:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: Forgot to add --enable-sim to CONFIGURE_ARGS. This target wants to build the simulator and needs that option >How-To-Repeat: >Fix: --- Makefile.orig Wed Sep 20 20:22:01 2000 +++ Makefile Wed Sep 20 20:16:02 2000 @@ -10,4 +10,5 @@ MAINTAINER= jim@thehousleys.net LCLTARGET= sparc-rtems +CONFIGURE_ARGS= --verbose --enable-sim .include "${.CURDIR}/../i386-rtems-gdb/Makefile" >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 Sep 20 17:30:46 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 0C7A737B423; Wed, 20 Sep 2000 17:30: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 e8L0UhQ27190; Wed, 20 Sep 2000 20:30:43 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39C956AD.47196F89@thehousleys.net> Date: Wed, 20 Sep 2000 20:30:37 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.ORG Subject: Re: Bento not updating? References: Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms1EDA67951E9F8380E57F3DF2" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms1EDA67951E9F8380E57F3DF2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Satoshi - Ports Wraith - Asami wrote: > > Sorry -- the new bento (onigiri) is ready but the rename has not been > done. > Kris asked and we were told what "gohan" and "bento" means. What does "onigiri" mean? Jim -- Do not meddle in the affairs of dragons, for you are crunchy and taste good with ketchup. --------------ms1EDA67951E9F8380E57F3DF2 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIH7gYJKoZIhvcNAQcCoIIH3zCCB9sCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC Bb8wggKjMIICDKADAgECAgMDLRswDQYJKoZIhvcNAQEEBQAwgZQxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZU aGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25h bCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MB4XDTAwMDgzMTExMjUzM1oXDTAxMDgzMTExMjUz M1owRTEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEiMCAGCSqGSIb3DQEJARYT amltQHRoZWhvdXNsZXlzLm5ldDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAoecaMx4y p2rGru9O4EGcnetN3YJekZy3C7BvhxuvN+fboBpG2MSEUMBZzGX0CSZwBC1SapoZnyqzRItc OgUjSRrUhGfcSQ0nZv/dxaWb3L68+f4pDkALZ4WxR7feY8Cur2SrybM0wtpGcTioNWKbMNRd wDBxD/jgggHAa8hSo3sCAwEAAaNRME8wHgYDVR0RBBcwFYETamltQHRoZWhvdXNsZXlzLm5l dDAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFIir8WCDZlX05FjHRh3AYb0j18OMMA0GCSqG SIb3DQEBBAUAA4GBAE2PrU05luhZFcnuwpIpcqFqg+F5uuN4XO9tSX1KTCI1/YIUoTUuMyQa FO/n+Xm9xxv36v+RzVFbXjaDbg6m89qyWeawORQplL0JhXQmh10Anjg/RkBwt02FeLjbTZ7Z 6PiLOLKfuLPFYTcaSBavOIRbvVSWrK6o7DmZKhe1YgWVMIIDFDCCAn2gAwIBAgIBCzANBgkq hkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAG A1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3 dGUuY29tMB4XDTk5MDkxNjE0MDE0MFoXDTAxMDkxNTE0MDE0MFowgZQxCzAJBgNVBAYTAlpB MRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQK EwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJz b25hbCBGcmVlbWFpbCBSU0EgMTk5OS45LjE2MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB gQCzaVqX1NAWC3q1xV3pIZwjcs0STEv3fs/H+8pyJPRCUqxXleN7YXoXhOf9cjk4lLTq7WWn kgZeveBl9hm7lHl2TD65aHB1hBz0EXQAvAUsTwkDFzHM9EHUcsamXeKIRLCLLsRN8fDWhT5s 85WUeJF+QOmc0Y0VV47Cc+Uw3kb1TwIDAQABozcwNTASBgNVHRMBAf8ECDAGAQH/AgEAMB8G A1UdIwQYMBaAFHJJwnM0xlX0C3ZygX539IfnxrIOMA0GCSqGSIb3DQEBBAUAA4GBAGvGWekx +um27LED2N9ycv6RYEjqxlXde/BnjsZhcOdtwqU32J23FyhWBYvdXHVvxpGQxmxmcRPQEHxr kW+G4CE2LcHX6rIJrc8tbcaDUpv7u/6ch538t+l0kuRcl678fqzKDW9yemcsa3P1hvmd9QBu 9B0Hzp2egmMp75MJflXeMYIB9zCCAfMCAQEwgZwwgZQxCzAJBgNVBAYTAlpBMRUwEwYDVQQI EwxXZXN0ZXJuIENhcGUxFDASBgNVBAcTC0R1cmJhbnZpbGxlMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVl bWFpbCBSU0EgMTk5OS45LjE2AgMDLRswCQYFKw4DAhoFAKCBsTAYBgkqhkiG9w0BCQMxCwYJ KoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wMDA5MjEwMDMwNDNaMCMGCSqGSIb3DQEJBDEW BBQdPa6oJ5aniHnI7+WEibLK0aMymDBSBgkqhkiG9w0BCQ8xRTBDMAoGCCqGSIb3DQMHMA4G CCqGSIb3DQMCAgIAgDAHBgUrDgMCBzANBggqhkiG9w0DAgIBQDANBggqhkiG9w0DAgIBKDAN BgkqhkiG9w0BAQEFAASBgExUCkk+KGOMW5jLn8YGtEIBQThrK+1W4Cfxk4cUf6Q00W58xUwv ZGM7H1OnoUDPstjpCbde4moGbmhjeDWm1Kt5iSlVRnGQhqY/sftmVdRX8eUFDdOVvWsW3SRq RkYTeQGd0GlvCcOseLr2KcsN7gg2QJZWpz5HNzbPVd5PtJ8n --------------ms1EDA67951E9F8380E57F3DF2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:30:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from c1030098-a.wtrlo1.ia.home.com (c1030098-a.wtrlo1.ia.home.com [24.14.126.45]) by hub.freebsd.org (Postfix) with ESMTP id 0DE9737B423 for ; Wed, 20 Sep 2000 17:30:53 -0700 (PDT) Received: (from mdharnois@localhost) by c1030098-a.wtrlo1.ia.home.com (8.11.0/8.11.0) id e8L0UqG24617; Wed, 20 Sep 2000 19:30:52 -0500 (CDT) (envelope-from mdharnois@home.com) X-Authentication-Warning: mharnois.workgroup.net: mdharnois set sender to mdharnois@home.com using -f To: freebsd-ports@FreeBSD.ORG Subject: Re: ports/20624: vmware vmmon module locks kernel References: <200009160902.CAA78123@freefall.freebsd.org> <14791.33111.87575.9387@onceler.kciLink.com> <861yyfjw1z.wl@daemon.local.idaemons.org> From: Michael Harnois Date: 20 Sep 2000 19:30:19 -0500 In-Reply-To: "Akinori -Aki- MUSHA"'s message of "Wed, 20 Sep 2000 17:40:24 +0900" Message-ID: <86ya0mmvs4.fsf@mharnois.workgroup.net> Lines: 13 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.2 (Nike) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Sep 2000 17:40:24 +0900, "Akinori -Aki- MUSHA" said: > Anyone else suffered a freeze? I've been experiencing apparently random freezes after some uptime for the past few days with -current. I've no idea if this is the culprit, but I'm rebuilding now ... -- Michael D. Harnois, Redeemer Lutheran Church, Washburn, IA mdharnois@home.com aa0bt@aa0bt.ampr.org Democracy is also a form of worship. It is the worship of Jackals by Jackasses. -- H. L. Mencken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:41:13 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 C748D37B423 for ; Wed, 20 Sep 2000 17:41:09 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA02948; Wed, 20 Sep 2000 20:40:40 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8L0eQf74928; Wed, 20 Sep 2000 17:40:26 -0700 (PDT) (envelope-from asami) To: James Housley Cc: ports@FreeBSD.ORG Subject: Re: Bento not updating? References: <39C956AD.47196F89@thehousleys.net> From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: 20 Sep 2000 17:39:55 -0700 In-Reply-To: James Housley's message of "Wed, 20 Sep 2000 20:30:37 -0400" Message-ID: Lines: 33 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- * From: James Housley * Kris asked and we were told what "gohan" and "bento" means. What does * "onigiri" mean? It's a rice ball, usually with pickled sour plum ("umeboshi") or bonito flakes ("katsuobushi") inside. You often find them in your bento's. :) * Content-Type: application/x-pkcs7-signature; name="smime.p7s" * Content-Transfer-Encoding: base64 * Content-Disposition: attachment; filename="smime.p7s" * Content-Description: S/MIME Cryptographic Signature <90+ lines deleted> You know, I really don't need to know with this much certainty that this message came from you. My answer would have been the same regardless. ;> Satoshi, showing off his mailcrypt skills -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use Comment: Processed by Mailcrypt 3.5.5, an Emacs/PGP interface Charset: noconv iQCVAwUBOclY04NA0SoeCNiJAQGEawP/UT/7uNy6BrQbEf++mrR72Hnw6hO8jMfF /l4OjKxLx+B3FAil8Fu0ni7TUQioxCHVJIxgKb5kTmD9lKnER3FhS1+ino+NrDDJ El0DU5/J1HdeBrlwnqW7xEuMLYnU/6djDxMgQFsuksOsutAHkOA81asf5mG0I1en H2/mqUUcyQ0= =HBSt -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 17:57:30 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 505F937B422; Wed, 20 Sep 2000 17:57:22 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA00958; Wed, 20 Sep 2000 20:57:16 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8L0v9J75035; Wed, 20 Sep 2000 17:57:09 -0700 (PDT) (envelope-from asami) To: Ade Lovett Cc: ports@FreeBSD.org, ps@FreeBSD.org Subject: Re: oaf port References: <200009210016.e8L0GSG74770@silvia.hip.berkeley.edu> <20000920192527.C61243@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 20 Sep 2000 17:56:59 -0700 In-Reply-To: Ade Lovett's message of "Wed, 20 Sep 2000 19:25:27 -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 * Do I win a prize? :) For causing me to lose numerous hours of sleep and many other package builds to fail because I had to implement a clumsy "timeout" mechanism that sometimes caught legitimately long-running builds? Hmm.... :) * Looks fine to me. Ok, will commit, thanks! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 18:50:52 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 2BB9F37B42C; Wed, 20 Sep 2000 18:50:50 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA04614; Wed, 20 Sep 2000 21:50:36 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8L1oVj75299; Wed, 20 Sep 2000 18:50:31 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Wed, 20 Sep 2000 18:50:31 -0700 (PDT) Message-Id: <200009210150.e8L1oVj75299@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ade@freebsd.org Cc: ports@freebsd.org Subject: gconf plist fix From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ade, Here's another one for you. I'm not sure who these directories belong to. It's actually the eog build that creates these directories but the names seem to suggest they are more generic than just eog so I thought maybe it's better to put them in gconf. Satoshi ------- Index: pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/devel/gconf/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- pkg/PLIST 2000/08/04 01:28:54 1.3 +++ pkg/PLIST 2000/09/21 00:12:34 @@ -52,7 +52,9 @@ @dirrm etc/gconf/schemas @dirrm etc/gconf/gconf.xml.defaults/schemas/desktop/standard @dirrm etc/gconf/gconf.xml.defaults/schemas/desktop +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps @dirrm etc/gconf/gconf.xml.defaults/schemas +@dirrm etc/gconf/gconf.xml.defaults/apps @dirrm etc/gconf/gconf.xml.defaults @dirrm etc/gconf/1 @dirrm etc/gconf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 18:55: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 D494837B440; Wed, 20 Sep 2000 18:55:21 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA02954; Wed, 20 Sep 2000 18:55:21 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Wed, 20 Sep 2000 18:55:21 -0700 (PDT) From: Message-Id: <200009210155.SAA02954@freefall.freebsd.org> To: n_hibma@qubesoft.com, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21426: Wrong name in Name field of passwd file for mailman port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Wrong name in Name field of passwd file for mailman port State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Wed Sep 20 18:51:05 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21426 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 19: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 B9BA037B424 for ; Wed, 20 Sep 2000 19:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA14482; Wed, 20 Sep 2000 19:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp-server.tampabay.rr.com (smtp-server1.tampabay.rr.com [24.92.1.13]) by hub.freebsd.org (Postfix) with ESMTP id C3A2F37B42C for ; Wed, 20 Sep 2000 19:37:57 -0700 (PDT) Received: from jaguar.jaydaniel.com (ubr-26.106.26.palmbayI.cfl.rr.com [24.26.106.26]) by smtp-server.tampabay.rr.com (8.9.3/8.9.3) with ESMTP id WAA15520 for ; Wed, 20 Sep 2000 22:37:56 -0400 (EDT) Received: (from leo@localhost) by jaguar.jaydaniel.com (8.11.0/8.11.0) id e8L2bpm25327; Wed, 20 Sep 2000 22:37:51 -0400 (EDT) (envelope-from leo) Message-Id: <200009210237.e8L2bpm25327@jaguar.jaydaniel.com> Date: Wed, 20 Sep 2000 22:37:51 -0400 (EDT) From: leo@florida.sarang.net Reply-To: leo@florida.sarang.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21435: New port java/jakarta-ant Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21435 >Category: ports >Synopsis: New port Jakarta Ant (A Java based build 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: Wed Sep 20 19:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Leo Kim >Release: FreeBSD 4.1-STABLE i386 >Organization: JDC >Environment: FreeBSD 4.1-STABLE i386 >Description: Ant is a Java based build tool. In theory it is kind of like "make" without makes wrinkles and with the full portability of pure java code. >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: # # jakarta-ant # jakarta-ant/files # jakarta-ant/files/ant # jakarta-ant/files/md5 # jakarta-ant/pkg # jakarta-ant/pkg/COMMENT # jakarta-ant/pkg/DESCR # jakarta-ant/pkg/PLIST # jakarta-ant/Makefile # echo c - jakarta-ant mkdir -p jakarta-ant > /dev/null 2>&1 echo c - jakarta-ant/files mkdir -p jakarta-ant/files > /dev/null 2>&1 echo x - jakarta-ant/files/ant sed 's/^X//' >jakarta-ant/files/ant << 'END-of-jakarta-ant/files/ant' X#! /bin/sh X Xif [ -f $HOME/.antrc ] ; then X . $HOME/.antrc Xfi X Xif [ "$ANT_HOME" = "" ] ; then X # try to find ANT X if [ -d /usr/local/share/java/classes ] ; then X ANT_HOME=/usr/local/share/java/classes X fi X X if [ -d ${HOME}/opt/ant ] ; then X ANT_HOME=${HOME}/opt/ant X fi Xfi X X# Allow .antrc to specifiy flags to java cmd Xif [ "$JAVACMD" = "" ] ; then X JAVACMD=java Xfi X XLOCALCLASSPATH=`echo $ANT_HOME/*.jar | tr ' ' ':'` X Xif [ "$CLASSPATH" != "" ] ; then X LOCALCLASSPATH=$CLASSPATH:$LOCALCLASSPATH Xfi X Xif [ "$JAVA_HOME" != "" ] ; then X if test -f $JAVA_HOME/lib/tools.jar ; then X LOCALCLASSPATH=$LOCALCLASSPATH:$JAVA_HOME/lib/tools.jar X fi X X if test -f $JAVA_HOME/lib/classes.zip ; then X LOCALCLASSPATH=$LOCALCLASSPATH:$JAVA_HOME/lib/classes.zip X fi Xfi X Xexec ${JAVACMD} -classpath ${LOCALCLASSPATH} -Dant.home=${ANT_HOME} ${ANT_OPTS} org.apache.tools.ant.Main $@ X END-of-jakarta-ant/files/ant echo x - jakarta-ant/files/md5 sed 's/^X//' >jakarta-ant/files/md5 << 'END-of-jakarta-ant/files/md5' XMD5 (jakarta-ant.tar.gz) = 90592dd9f487486f4ace983725efa307 END-of-jakarta-ant/files/md5 echo c - jakarta-ant/pkg mkdir -p jakarta-ant/pkg > /dev/null 2>&1 echo x - jakarta-ant/pkg/COMMENT sed 's/^X//' >jakarta-ant/pkg/COMMENT << 'END-of-jakarta-ant/pkg/COMMENT' XAnt is a Java based build tool END-of-jakarta-ant/pkg/COMMENT echo x - jakarta-ant/pkg/DESCR sed 's/^X//' >jakarta-ant/pkg/DESCR << 'END-of-jakarta-ant/pkg/DESCR' XAnt is a Java based build tool. In theory it is kind of like "make" Xwithout makes wrinkles and with the full portability of pure java code. X XWWW: http://jakarta.apache.org/ant/ X X- Leo Kim Xleo@florida.sarang.net END-of-jakarta-ant/pkg/DESCR echo x - jakarta-ant/pkg/PLIST sed 's/^X//' >jakarta-ant/pkg/PLIST << 'END-of-jakarta-ant/pkg/PLIST' Xbin/ant Xshare/java/classes/ant.jar Xshare/java/classes/jaxp.jar Xshare/java/classes/parser.jar Xshare/java/jakarta/ant/LICENSE Xshare/java/jakarta/ant/README Xshare/java/jakarta/ant/TODO Xshare/java/jakarta/ant/docs/api/allclasses-frame.html Xshare/java/jakarta/ant/docs/api/com/oreilly/servlet/MailMessage.html Xshare/java/jakarta/ant/docs/api/com/oreilly/servlet/package-frame.html Xshare/java/jakarta/ant/docs/api/com/oreilly/servlet/package-summary.html Xshare/java/jakarta/ant/docs/api/com/oreilly/servlet/package-tree.html Xshare/java/jakarta/ant/docs/api/deprecated-list.html Xshare/java/jakarta/ant/docs/api/help-doc.html Xshare/java/jakarta/ant/docs/api/index-all.html Xshare/java/jakarta/ant/docs/api/index.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/BuildEvent.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/BuildException.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/BuildListener.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/DefaultLogger.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/DesirableFilter.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/DirectoryScanner.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/EnumeratedAttribute.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/IntrospectionHelper.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Location.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Main.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Map.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Path.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/PathTokenizer.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Project.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/ProjectHelper.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Target.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/Task.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/TaskAdapter.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/XmlLogger.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/package-frame.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/package-summary.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/package-tree.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Ant.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/AntStructure.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Available.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Chmod.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/CompileTask.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Copydir.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Copyfile.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Cvs.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Delete.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Deltree.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Echo.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Exec.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Expand.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Filter.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/FixCRLF.AddAsisRemove.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/FixCRLF.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/GUnzip.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/GZip.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Get.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Jar.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Java.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Javac.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Javadoc.DocletInfo.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Javadoc.DocletParam.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Javadoc.GroupArgument.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Javadoc.LinkArgument.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Javadoc.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Jikes.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/JikesOutputParser.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/KeySubst.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/MatchingTask.NameEntry.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/MatchingTask.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Mkdir.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Patch.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Property.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Rename.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Replace.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Rmic.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/SignJar.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Tar.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/TaskOutputStream.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Taskdef.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Touch.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Tstamp.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Untar.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/XSLTLiaison.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/XSLTProcess.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/Zip.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/NetRexxC.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/RenameExtensions.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/Script.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/XalanLiaison.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/XslpLiaison.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/DDCreator.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/DDCreatorHelper.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.DescriptorHandler.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/Ejbc.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/EjbcHelper.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/WLRun.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/WLStop.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/package-frame.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/package-summary.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb/package-tree.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/package-frame.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/package-summary.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/package-tree.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/vss/MSVSS.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/vss/MSVSSGET.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/vss/package-frame.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/vss/package-summary.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/vss/package-tree.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/package-frame.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/package-summary.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/package-tree.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/TarBuffer.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/TarConstants.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/TarEntry.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/TarInputStream.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/TarOutputStream.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/TarUtils.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/package-frame.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/package-summary.html Xshare/java/jakarta/ant/docs/api/org/apache/tools/tar/package-tree.html Xshare/java/jakarta/ant/docs/api/overview-frame.html Xshare/java/jakarta/ant/docs/api/overview-summary.html Xshare/java/jakarta/ant/docs/api/overview-tree.html Xshare/java/jakarta/ant/docs/api/package-list Xshare/java/jakarta/ant/docs/api/packages.html Xshare/java/jakarta/ant/docs/api/serialized-form.html Xshare/java/jakarta/ant/docs/api/stylesheet.css Xshare/java/jakarta/ant/docs/index.html X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools/tar X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/vss X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional/ejb X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs/optional X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools/ant/taskdefs X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools/ant X@dirrm share/java/jakarta/ant/docs/api/org/apache/tools X@dirrm share/java/jakarta/ant/docs/api/org/apache X@dirrm share/java/jakarta/ant/docs/api/org X@dirrm share/java/jakarta/ant/docs/api/com/oreilly/servlet X@dirrm share/java/jakarta/ant/docs/api/com/oreilly X@dirrm share/java/jakarta/ant/docs/api/com X@dirrm share/java/jakarta/ant/docs/api X@dirrm share/java/jakarta/ant/docs X@dirrm share/java/jakarta/ant X@dirrm share/java/jakarta END-of-jakarta-ant/pkg/PLIST echo x - jakarta-ant/Makefile sed 's/^X//' >jakarta-ant/Makefile << 'END-of-jakarta-ant/Makefile' X# New ports collection makefile for: jakarta-ant X# Date created: 20 September 2000 X# Whom: Leo Kim X# X# $FreeBSD$ X# X XPORTNAME= ant XPORTVERSION= 1.1 XCATEGORIES= java XMASTER_SITES= http://jakarta.apache.org/builds/ant/release/v1.1/bin/ XPKGNAMEPREFIX= jakarta- XDISTNAME= jakarta-ant X XMAINTAINER= leo@florida.sarang.net X XRUN_DEPENDS= ${LOCALBASE}/jdk${JDK_VERSION}/bin/javac:${PORTSDIR}/java/jdk X XNO_BUILD= yes X XJDK_VERSION= 1.1.8 XWRKSRC= ${WRKDIR}/${DISTNAME} X XJAKARTADIR= `echo ${PKGNAMEPREFIX} | sed 's,-,,g'` X Xdo-install: X @${MKDIR} ${PREFIX}/share/java/classes X @${MKDIR} ${PREFIX}/share/java/${JAKARTADIR}/${PORTNAME} X @${MKDIR} ${PREFIX}/share/java/${JAKARTADIR}/${PORTNAME}/docs X @(cd ${WRKSRC} && \ X ${INSTALL_DATA} lib/*.jar ${PREFIX}/share/java/classes; \ X ${CP} [LRT]* ${PREFIX}/share/java/${JAKARTADIR}/${PORTNAME}; \ X ${CP} -R docs/* ${PREFIX}/share/java/${JAKARTADIR}/${PORTNAME}/docs; \ X ) X Xpost-install: X @${INSTALL_DATA} -m 755 -o root -g wheel ${FILESDIR}/ant ${PREFIX}/bin X X.include END-of-jakarta-ant/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 Sep 20 19:43:44 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 704E837B423 for ; Wed, 20 Sep 2000 19:43:42 -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 e8L2hS620193 for ; Wed, 20 Sep 2000 19:43:28 -0700 (PDT) (envelope-from jkh@winston.osd.bsdi.com) To: ports@freebsd.org Subject: How to build packages on the fly... Date: Wed, 20 Sep 2000 19:43:28 -0700 Message-ID: <20189.969504208@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What I'm about to describe is something I'd like, not something which currently exists, and I'm just collecting some feedback on it before actualling diving into the implementation details. In a nutshell, what I'd like to be able to do is build a fresh version of package X and all the packages it has RUN_DEPENDS on easily so that I can pack those up and drop them into a packages tree somewhere. This is particularly useful for the big and complex packages, like KDE or GNOME. To be more specific, I'd like to be able to do: mkdir /usr/ports/packages cd /usr/ports/x11/kde2 make all install package .. and wind up with, in /usr/ports/packages/All, a complete set of packages required to support KDE version 2. What will happen now is something less desirable, which is essentially a make and install of the KDE master port and all the things it depends on, but only *one* package, that being for the KDE master port. Then I basically have to grep through all the output of the builds to find out which other ports were built so that I can individually package each one. Not quite the auto-recursion effect I was looking for. :( - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 19:58:31 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 8F0C937B42C; Wed, 20 Sep 2000 19:58:29 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13bwZA-000GEy-00; Wed, 20 Sep 2000 21:58:28 -0500 Date: Wed, 20 Sep 2000 21:58:28 -0500 From: Ade Lovett To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: gconf plist fix Message-ID: <20000920215828.A61840@FreeBSD.org> References: <200009210150.e8L1oVj75299@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: <200009210150.e8L1oVj75299@silvia.hip.berkeley.edu>; from asami@freebsd.org on Wed, Sep 20, 2000 at 06:50:31PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 06:50:31PM -0700, Satoshi Asami wrote: > Here's another one for you. I'm not sure who these directories belong > to. It's actually the eog build that creates these directories but > the names seem to suggest they are more generic than just eog so I > thought maybe it's better to put them in gconf. Yes, that one looks fine to me, though we'd have to change it to the @unexec ... || true bit in order to avoid a package deinstallation failure if only gconf has been 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 Wed Sep 20 20: 6:13 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 1142037B422; Wed, 20 Sep 2000 20:06:08 -0700 (PDT) Received: (from chad@localhost) by freeway.dcfinc.com (8.8.8/8.8.8) id UAA03694; Wed, 20 Sep 2000 20:05:45 -0700 (MST) (envelope-from chad) From: "Chad R. Larson" Message-Id: <200009210305.UAA03694@freeway.dcfinc.com> Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r In-Reply-To: <200009201439.e8KEdli71369@aldan.algebra.com> from Mikhail Teterin at "Sep 20, 0 10:39:06 am" To: mi@aldan.algebra.com (Mikhail Teterin) Date: Wed, 20 Sep 2000 20:05:45 -0700 (MST) Cc: andrew@cream.org, kris@FreeBSD.ORG, olgeni@uli.it, ruslan@shevchenko.kiev.ua, seb@bluetail.com, ade@FreeBSD.ORG, ports@FreeBSD.ORG, nbm@mithrandr.moria.org, doc@FreeBSD.ORG, stable@FreeBSD.ORG, jkh@winston.osd.bsdi.com 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 As I recall, Mikhail Teterin wrote: > Andrew Boothman once stated: > > =* If the PR is for a port make sure that "port update" is in the > =synopsis field, if only so that it catches Neil Blakey-Milner's regular > =check for such PR's, but also to act as a good description. > = > =* If you are the MAINTAINER of a piece of code (or more likely a port) > =and don't have commit privs, put "MAINTAINER update" in the synopsis, > =for the same reasons as before. > > Use of synopsis for this worries me. Perhaps, this warrants two > new classes: ``update'' and ``maintainer-update'' in addition to the > all-including ``change-request''? I too am a bit worried. Are we saying that one of the ports committers doesn't expect to do that job unless certain keywords are in the PR? If so, that should be documented other than in e-mail here. -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 Wed Sep 20 21: 0: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 3B50937B423; Wed, 20 Sep 2000 21:00:30 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id VAA26993; Wed, 20 Sep 2000 21:00:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Wed, 20 Sep 2000 21:00:29 -0700 (PDT) From: Kris Kennaway To: "Chad R. Larson" Cc: Mikhail Teterin , andrew@cream.org, olgeni@uli.it, ruslan@shevchenko.kiev.ua, seb@bluetail.com, ade@FreeBSD.ORG, ports@FreeBSD.ORG, nbm@mithrandr.moria.org, doc@FreeBSD.ORG, stable@FreeBSD.ORG, jkh@winston.osd.bsdi.com Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r In-Reply-To: <200009210305.UAA03694@freeway.dcfinc.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Sep 2000, Chad R. Larson wrote: > > =* If the PR is for a port make sure that "port update" is in the > > =synopsis field, if only so that it catches Neil Blakey-Milner's regular > > =check for such PR's, but also to act as a good description. > > = > > =* If you are the MAINTAINER of a piece of code (or more likely a port) > > =and don't have commit privs, put "MAINTAINER update" in the synopsis, > > =for the same reasons as before. > > > > Use of synopsis for this worries me. Perhaps, this warrants two > > new classes: ``update'' and ``maintainer-update'' in addition to the > > all-including ``change-request''? > > I too am a bit worried. Are we saying that one of the ports > committers doesn't expect to do that job unless certain keywords > are in the PR? If so, that should be documented other than in > e-mail here. No, you didnt read what was said earlier. This is a matter of prioritisation - you have to make it as easy as possible for the committer to do their job if you want them to get to your PR in a timely manner..if it's obscure or incomplete it will probably take (much) longer for anyone to spend their time on it since there are always other things they "should be doing." Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 21:20:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ice.cream.org (ice.cream.org [195.8.71.30]) by hub.freebsd.org (Postfix) with SMTP id 3F1E537B424 for ; Wed, 20 Sep 2000 21:19:58 -0700 (PDT) Received: (qmail 28456 invoked from network); 21 Sep 2000 04:19:56 -0000 Received: from ice.cream.org (HELO cream.org) (195.8.71.30) by ice.cream.org with SMTP; 21 Sep 2000 04:19:56 -0000 Content-Length: 616 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200009210305.UAA03694@freeway.dcfinc.com> Date: Thu, 21 Sep 2000 05:19:58 +0100 (BST) From: Andrew Boothman To: "Chad R. Larson" Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r Cc: jkh@winston.osd.bsdi.com, stable@FreeBSD.ORG, doc@FreeBSD.ORG, nbm@mithrandr.moria.org, ports@FreeBSD.ORG, ade@FreeBSD.ORG, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it, kris@FreeBSD.ORG, (Mikhail Teterin) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 21-Sep-00 Chad R. Larson wrote: >> =* If you are the MAINTAINER of a piece of code (or more likely a port) >> =and don't have commit privs, put "MAINTAINER update" in the synopsis, >> =for the same reasons as before. > I too am a bit worried. Are we saying that one of the ports > committers doesn't expect to do that job unless certain keywords > are in the PR? If so, that should be documented other than in > e-mail here. Not really, see Kris Kennaway's reply. I will write this up for the Handbook once we've decided on the wording though. --- Andrew Boothman http://sour.cream.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 21:27:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hawk.prod.itd.earthlink.net (hawk.prod.itd.earthlink.net [207.217.120.22]) by hub.freebsd.org (Postfix) with ESMTP id 4B8A837B422 for ; Wed, 20 Sep 2000 21:27:22 -0700 (PDT) Received: from localhost (1Cust35.tnt2.montgomery.al.da.uu.net [63.27.156.35]) by hawk.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with SMTP id VAA09658 for ; Wed, 20 Sep 2000 21:27:21 -0700 (PDT) Message-Id: <200009210427.VAA09658@hawk.prod.itd.earthlink.net> From: "Michael G." To: "freebsd-ports@FreeBSD.ORG" , "ichael Harnois" Date: Wed, 20 Sep 2000 23:20:55 Reply-To: "Michael G." X-Mailer: Emerald Mail (Evaluation) 1.30 running on FreeBSD 4.1-STABLE Java 1.1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Kdegraphics 1.94 fails References: <86ya0mmvs4.fsf@mharnois.workgroup.net> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm doing a fresh install of the latest KDE snapshot on a 4.1 -Stable machine and the kdegraphics port is failing here (all others compiled fine): any help would be appreciated magick.cpp: In function `void process(...)': magick.cpp:711: passing `void (*)(const char *, long int, long int)' as argument 1 of `SetMonitorHandler(void (*)(const char *, long long int, long long int))' gmake[4]: *** [magick.lo] Error 1 gmake[4]: Leaving directory `/usr/ports/graphics/kdegraphics2/work/kdegraphics-1.94/pixie/plugins/ magick' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/graphics/kdegraphics2/work/kdegraphics-1.94/pixie/plugins' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/graphics/kdegraphics2/work/kdegraphics-1.94/pixie' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/kdegraphics2/work/kdegraphics-1.94' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/graphics/kdegraphics2. *** Error code 1 Stop in /usr/ports/graphics/kdegraphics2. *** Error code 1 Stop in /usr/ports/graphics/kdegraphics2. nikki# Michael G. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 22: 0: 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 C2D1737B424 for ; Wed, 20 Sep 2000 22:00:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA38847; Wed, 20 Sep 2000 22:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from gilmore.nas.nasa.gov (gilmore.nas.nasa.gov [129.99.32.17]) by hub.freebsd.org (Postfix) with ESMTP id 066C537B422; Wed, 20 Sep 2000 21:51:24 -0700 (PDT) Received: (from tweten@localhost) by gilmore.nas.nasa.gov (8.11.0/8.11.0) id e8L4pH746576; Wed, 20 Sep 2000 21:51:17 -0700 (PDT) (envelope-from tweten) Message-Id: <200009210451.e8L4pH746576@gilmore.nas.nasa.gov> Date: Wed, 20 Sep 2000 21:51:17 -0700 (PDT) From: tweten@nas.nasa.gov Reply-To: tweten@nas.nasa.gov To: FreeBSD-gnats-submit@freebsd.org Cc: markm@freebsd.org, welch@acm.org X-Send-Pr-Version: 3.2 Subject: ports/21437: port update to correct mail/exmh2 support of security/pgp5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21437 >Category: ports >Synopsis: port update to correct mail/exmh2 support of security/pgp5 >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 Sep 20 22:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dave Tweten >Release: FreeBSD 4.1-STABLE i386 >Organization: NASA Ames Research Center >Environment: FreeBSD gilmore.nas.nasa.gov 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 11:54:56 PDT 2000 root@gilmore.nas.nasa.gov:/usr/obj/usr/src/sys/GILMORE i386 Exmh 2.1.1 PGP 5.0i Tk 8.2 Tcl 8.2 >Description: There are four problems with support of the pgp5 port by the exmh2 port: 1. Exmh will not use pgpv to check a Multipart/MIME Clear signature. Since the call to pgpv is in batch mode, there is nobody to ask if the user would like to overwrite /dev/null. (!) 2. It will not make any kind of Application/PGP message. If you try, it will fail with an error message about not finding a variable named "typeparams." 3. When asked to make a Plain Detached signature, instead it generates a Plain Encrypted and Signed message. 4. Generated MIME headers violate RFC-1341 in that they contain double semicolons. RFC-1341 makes it clear that a parameter must fit between each pair of semicolons and that a minimal parameter contains three characters, the middle one being an equal sign. >How-To-Repeat: Try to send yourself messages of the above types, or in the case of Multipart/MIME with Clear signature, try to read one you've already sent. >Fix: For each of the above problems, there is a fix: 1. Make batch mode PGP 5.0i calls use the "+force" option, thereby eliminating the dubious need to request confirmation for overwriting /dev/null. 2. Add the "typeparams" variable as an argument in the call to Pgp_ProcessAP. That way it will be defined when it is used in that routine. 3. For some bizzarre reason, the code in pgpMain.tcl goes out of its way to convert a request for a Plain Detached signature into a request for a Plain Standard signature. Eliminate that code. 4. When the "typeparams" variable is given its initial value, it is defined with a trailing semicolon. Everywhere anything is concatenated onto the end of typeparams, the added value starts with a semicolon. Trailing or doubled semicolons are therefore inevitable. Just get rid of the initial trailing semicolon. The following two files worth of patches take care of all problems. --- lib/pgpMain.tcl.orig Tue Oct 12 14:04:42 1999 +++ lib/pgpMain.tcl Wed Sep 20 20:29:30 2000 @@ -589,13 +589,13 @@ if {$pgp(format,$id) == "app"} { Exmh_Debug app format if {$pgp(encrypt,$id)} { - set typeparams "; x-action=encrypt;" + set typeparams "; x-action=encrypt" } else { switch $pgp(sign,$id) { detached - - standard {set typeparams "; x-action=signbinary;"} - clearsign {set typeparams "; x-action=signclear;"} - encryptsign {set typeparams "; x-action=encryptsign;"} + standard {set typeparams "; x-action=signbinary"} + clearsign {set typeparams "; x-action=signclear"} + encryptsign {set typeparams "; x-action=encryptsign"} } } } @@ -655,11 +655,7 @@ # write the message to be encrypted set msgfile [Mime_TempFile "msg"] set msg [open $msgfile w 0600] - if {$pgp(format,$id) == "plain" && $pgp(sign,$id) == "detached"} { - set pgp(sign,$id) "standard" - } else { - foreach line $pgpheaders { puts $msg [Pgp_Misc_FixHeader $line] } - } + foreach line $pgpheaders { puts $msg [Pgp_Misc_FixHeader $line] } puts $msg "" puts -nonewline $msg [read $orig] close $orig @@ -693,7 +689,7 @@ switch $pgp(format,$id) { app { - Pgp_ProcessAP $v $dstfile $pgpfile $mailheaders + Pgp_ProcessAP $v $dstfile $pgpfile $mailheaders $typeparams } pm { Pgp_ProcessPM $v $dstfile $pgpfile $mailheaders $msgfile $id @@ -706,7 +702,7 @@ File_Delete $msgfile $pgpfile } -proc Pgp_ProcessAP {v dstfile pgpfile mailheaders} { +proc Pgp_ProcessAP {v dstfile pgpfile mailheaders typeparams} { global pgp lappend mailheaders \ --- lib/pgpPgp5.tcl.orig Tue Oct 12 14:04:43 1999 +++ lib/pgpPgp5.tcl Wed Sep 20 19:36:48 2000 @@ -85,7 +85,7 @@ ############# # Exec_Batch # Batchmode flags -set pgp(pgp5,flags_batch) {+armorlines=0 +batchmode=on +verbose=0} +set pgp(pgp5,flags_batch) {+armorlines=0 +batchmode=on +force +verbose=0} # proc Pgp_pgp5_PassFdSet {} { global env >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 Sep 20 22: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 3E7DF37B424 for ; Wed, 20 Sep 2000 22:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA48992; Wed, 20 Sep 2000 22:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from volyn.dppl.com (cc167606-a.union1.nj.home.com [24.3.170.57]) by hub.freebsd.org (Postfix) with ESMTP id A7C2D37B422; Wed, 20 Sep 2000 22:24:30 -0700 (PDT) Received: by volyn.dppl.com (Postfix, from userid 1001) id 2A3781B20E; Thu, 21 Sep 2000 01:24:28 -0400 (EDT) Message-Id: <20000921052428.2A3781B20E@volyn.dppl.com> Date: Thu, 21 Sep 2000 01:24:28 -0400 (EDT) From: yds@dppl.com Reply-To: yds@dppl.com To: FreeBSD-gnats-submit@FreeBSD.org Cc: missnglnk@sneakerz.org, torstenb@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: ports/21439: FIX: mail/postfix-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21439 >Category: ports >Synopsis: FIX: mail/postfix-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: Wed Sep 20 22:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yarema >Release: FreeBSD 4.1-STABLE i386 >Organization: DPPL >Environment: FreeBSD 4.1-STABLE i386 >Description: Cleaned up the Makefile to be easier to read and maintain. The port now uses the ${CFLAGS} setting from /etc/make.conf which was previously ignored. Updated the PLIST file to accurately reflect what's actually installed. Removed man files from PLIST since they don't belong there. Changed @dirrm /var/spool/postfix to @unexec rm -rf /var/spool/postfix in PLIST since in practice a) the original line was trying to remove /usr/local//var/spool/postfix which did not exist and b) @dirrm wouldn't work even if it were pointing at the correct path because Postfix creates a number of subdirectories which are not accounted for in PLIST and which may not be empty even if they were accounted for. Rewrote the do-install target to use ${INSTALL_PROGRAM}, ${INSTALL_SCRIPT} ${INSTALL_DATA} and ${INSTALL_MAN} macros where appropriate. Added an install for ${PREFIX}/etc/postfix/postfix-script which was missing and is required by the postfix command. Added a check for NOPORTDOCS before installing HTML documentation. Fixed the call to ${PKGDIR}/INSTALL in the pre-install target and added an analogous post-install target. In ${PKGDIR}/INSTALL the permissions for postdrop should be 2555 not 2755 since ${BINMODE} used by ${INSTALL_PROGRAM} is 0555. Now that post-install handles the chown and chmod for postdrop there is no need for special handling of this issue elsewhere in the Makefile so that was removed. Finally added a call to ${PKG_PREFIX}/sbin/postfix check in ${PKGDIR}/INSTALL to create all the /var/spool/postfix/* subdirectories at install time instead of when Postfix is first run. Hope this helps and actually gets committed unlike a similar PR I sent months ago for the postfix stable port. >How-To-Repeat: cd /usr/ports/mail/postfix-current && make install >Fix: diff -ruN postfix-current.orig/Makefile postfix-current/Makefile --- postfix-current.orig/Makefile Fri Sep 15 04:58:22 2000 +++ postfix-current/Makefile Wed Sep 20 19:25:40 2000 @@ -25,12 +25,10 @@ .endif .if defined(CC) -MAKEFILEFLAGS+= CC=$(CC) +MAKEFILEFLAGS+= CC=${CC} .endif -.if defined(OPT) -MAKEFILEFLAGS+= OPT=$(OPT) -.endif +MAKEFILEFLAGS+= OPT="${CFLAGS}" .if defined(WITH_MYSQL) BUILD_DEPENDS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a:${PORTSDIR}/databases/mysql322-client @@ -56,6 +54,21 @@ POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/libsasl.a -lpam -lcrypt .endif +CONF1= access aliases canonical main.cf master.cf \ + regexp_table relocated transport virtual + +CONF2= sample-aliases.cf sample-canonical.cf sample-debug.cf \ + sample-filter.cf sample-local.cf sample-misc.cf \ + sample-rate.cf sample-regexp.cf sample-relocated.cf \ + sample-resource.cf sample-rewrite.cf sample-smtp.cf \ + sample-smtpd.cf sample-transport.cf sample-virtual.cf + +BIN1= bounce cleanup error lmtp local master nqmgr pickup \ + pipe qmgr showq smtp smtpd trivial-rewrite + +BIN2= postalias postcat postconf postdrop postfix \ + postkick postlog postmap postsuper sendmail + MAN1= mailq.1 newaliases.1 postalias.1 postcat.1 postconf.1 postdrop.1 \ postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postsuper.1 \ sendmail.1 @@ -63,12 +76,33 @@ MAN5= access.5 aliases.5 canonical.5 regexp_table.5 relocated.5 \ transport.5 virtual.5 +MAN8= bounce.8 cleanup.8 defer.8 error.8 lmtp.8 local.8 master.8 \ + pickup.8 pipe.8 qmgr.8 showq.8 smtp.8 smtpd.8 trivial-rewrite.8 + .ifdef(WITH_PCRE) -MAN5+= pcre_table.5 +CONF1+= pcre_table +CONF2+= sample-pcre.cf +MAN5+= pcre_table.5 +PLIST_SUB+= WITH_PCRE="" +.else +PLIST_SUB+= WITH_PCRE="@comment " .endif -MAN8= bounce.8 cleanup.8 defer.8 error.8 lmtp.8 local.8 master.8 \ - pickup.8 pipe.8 qmgr.8 showq.8 smtp.8 smtpd.8 trivial-rewrite.8 +.ifdef(WITH_SASL) +CONF2+= sample-auth.cf +PLIST_SUB+= WITH_SASL="" +.else +PLIST_SUB+= WITH_SASL="@comment " +.endif + +.ifdef(WITH_LDAP) +CONF2+= sample-ldap.cf +PLIST_SUB+= WITH_LDAP="" +.else +PLIST_SUB+= WITH_LDAP="@comment " +.endif + +DOCDIR= ${PREFIX}/share/doc/postfix post-patch: (cd ${WRKSRC} && make -f Makefile.init makefiles ${MAKEFILEFLAGS} \ @@ -76,105 +110,89 @@ ${ECHO} "all: default" >> Makefile) pre-install: - @/bin/sh @${PKGDIR}/INSTALL Postfix PRE-INSTALL - -do-install: - @${MKDIR} -m 755 ${PREFIX}/etc/postfix - @${CHOWN} root:wheel ${PREFIX}/etc/postfix - @${INSTALL} -C -o root -g wheel -m 0644 ${WRKSRC}/conf/LICENSE \ - ${PREFIX}/etc/postfix/LICENSE - - @for f in access aliases canonical main.cf master.cf \ - regexp_table relocated transport virtual ; do \ - ${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/conf/$$f ${PREFIX}/etc/postfix/sample-$$f ; \ - done - -.if defined(WITH_PCRE) - @${INSTALL} -C -o root -g wheel -m 0644 ${WRKSRC}/conf/pcre_table \ - ${PREFIX}/etc/postfix/sample-pcre_table -.endif - - @for f in sample-aliases.cf sample-canonical.cf \ - sample-debug.cf sample-filter.cf sample-ldap.cf \ - sample-local.cf sample-misc.cf sample-rate.cf \ - sample-regexp.cf sample-relocated.cf sample-resource.cf \ - sample-rewrite.cf sample-smtp.cf sample-smtpd.cf \ - sample-transport.cf sample-virtual.cf ; do \ - ${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/conf/$$f ${PREFIX}/etc/postfix/$$f ; \ - done + @PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL -.if defined(WITH_PCRE) - @${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/conf/sample-pcre.cf \ - ${PREFIX}/etc/postfix/sample-pcre.cf -.endif +post-install: + @PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL -.if defined(WITH_SASL) - @${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/conf/sample-auth.cf \ - ${PREFIX}/etc/postfix/sample-auth.cf -.endif - - @${MKDIR} -m 755 ${PREFIX}/libexec/postfix - @${CHOWN} root:wheel ${PREFIX}/libexec/postfix - - @for f in bounce cleanup error lmtp local master nqmgr pickup \ - pipe qmgr showq smtp smtpd trivial-rewrite ; do \ - ${INSTALL} -C -o root -g wheel -m 0755 \ - ${WRKSRC}/libexec/$$f \ - ${PREFIX}/libexec/postfix/$$f ; \ - done - - @for f in postalias postcat postconf postfix postkick postlog \ - postmap postsuper sendmail ; do \ - ${INSTALL} -C -o root -g wheel -m 0755 \ - ${WRKSRC}/$$f/$$f ${PREFIX}/sbin/$$f ; \ - done - - @${INSTALL} -C -o root -g maildrop -m 2755 \ - ${WRKSRC}/postdrop/postdrop ${PREFIX}/sbin/postdrop - - @for f in ${MAN1} ; do \ - ${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/man/man1/$$f ${PREFIX}/man/man1/$$f ; \ - done - - @for f in ${MAN5} ; do \ - ${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/man/man5/$$f ${PREFIX}/man/man5/$$f ; \ - done - - @for f in ${MAN8} ; do \ - ${INSTALL} -C -o root -g wheel -m 0644 \ - ${WRKSRC}/man/man8/$$f ${PREFIX}/man/man8/$$f ; \ - done - - @${MKDIR} -m 755 /var/spool/postfix - @${CHOWN} root:wheel /var/spool/postfix - - @${MKDIR} -m 755 ${PREFIX}/share/doc/postfix - @${INSTALL} -d -m 555 -o root -g wheel ${PREFIX}/share/doc/postfix - @cd ${WRKSRC} && ${INSTALL_DATA} \ - html/*.html html/*.gif ${PREFIX}/share/doc && \ - ${ECHO_MSG} "Installed HTML documentation in ${PREFIX}/share/doc" - - @${ECHO_MSG} "--------------------------------------------------" - @${ECHO_MSG} "- To replace your existing sendmail with postfix -" - @${ECHO_MSG} "- type \"make replace\" -" - @${ECHO_MSG} "--------------------------------------------------" +do-install: + @${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 0755 \ + ${PREFIX}/etc/postfix \ + ${PREFIX}/libexec/postfix \ + /var/spool/postfix + @${INSTALL_DATA} ${WRKSRC}/conf/LICENSE ${PREFIX}/etc/postfix + +.for file in ${CONF1} + @${INSTALL_DATA} \ + ${WRKSRC}/conf/${file} \ + ${PREFIX}/etc/postfix/sample-${file} +.endfor + +.for file in ${CONF2} + @${INSTALL_DATA} \ + ${WRKSRC}/conf/${file} \ + ${PREFIX}/etc/postfix +.endfor + + @${INSTALL_SCRIPT} \ + ${WRKSRC}/conf/postfix-script-sgid \ + ${PREFIX}/etc/postfix/postfix-script + +.for file in ${BIN1} + @${INSTALL_PROGRAM} \ + ${WRKSRC}/libexec/${file} \ + ${PREFIX}/libexec/postfix +.endfor + +.for file in ${BIN2} + @${INSTALL_PROGRAM} \ + ${WRKSRC}/${file}/${file} \ + ${PREFIX}/sbin +.endfor + +.for file in ${MAN1} + @${INSTALL_MAN} \ + ${WRKSRC}/man/man1/${file} \ + ${PREFIX}/man/man1 +.endfor + +.for file in ${MAN5} + @${INSTALL_MAN} \ + ${WRKSRC}/man/man5/${file} \ + ${PREFIX}/man/man5 +.endfor + +.for file in ${MAN8} + @${INSTALL_MAN} \ + ${WRKSRC}/man/man8/${file} \ + ${PREFIX}/man/man8 +.endfor + +.if !defined(NOPORTDOCS) + @${INSTALL} -d -o ${DOCOWN} -g ${DOCGRP} -m 555 ${DOCDIR} + @cd ${WRKSRC}/html && ${INSTALL_DATA} *.html *.gif ${DOCDIR} && \ + ${ECHO_MSG} "Installed HTML documentation in ${DOCDIR}" +.endif + + @${ECHO_MSG} '--------------------------------------------------' + @${ECHO_MSG} '- To replace your existing sendmail with postfix -' + @${ECHO_MSG} '- type "make replace" -' + @${ECHO_MSG} '--------------------------------------------------' .include replace: .if ${OSVERSION} >= 400014 - @${ECHO_MSG} "===> Activating postfix in /etc/mail/mailer.conf" + @${ECHO_MSG} "===> Activating postfix in /etc/mail/mailer.conf" ${MV} -f /etc/mail/mailer.conf /etc/mail/mailer.conf.bak - ${ECHO} 'sendmail ${PREFIX}/sbin/sendmail' > /etc/mail/mailer.conf - ${ECHO} 'send-mail ${PREFIX}/sbin/sendmail' >>/etc/mail/mailer.conf - ${ECHO} 'mailq ${PREFIX}/sbin/sendmail' >>/etc/mail/mailer.conf - ${ECHO} 'newaliases ${PREFIX}/sbin/sendmail' >>/etc/mail/mailer.conf + ${ECHO} "#" > /etc/mail/mailer.conf + ${ECHO} -n "# Execute the Postfix sendmail program" >> /etc/mail/mailer.conf + ${ECHO} ", named /usr/local/sbin/sendmail" >> /etc/mail/mailer.conf + ${ECHO} "#" >> /etc/mail/mailer.conf + ${ECHO} "sendmail ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf + ${ECHO} "send-mail ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf + ${ECHO} "mailq ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf + ${ECHO} "newaliases ${PREFIX}/sbin/sendmail" >>/etc/mail/mailer.conf .else @${ECHO_MSG} "===> Replacing sendmail" @if [ -e /usr/sbin/sendmail ]; then \ diff -ruN postfix-current.orig/pkg/INSTALL postfix-current/pkg/INSTALL --- postfix-current.orig/pkg/INSTALL Sun May 28 02:43:40 2000 +++ postfix-current/pkg/INSTALL Wed Sep 20 19:33:47 2000 @@ -85,6 +85,7 @@ cp -p ${PKG_PREFIX}/etc/postfix/sample-master.cf \ ${PKG_PREFIX}/etc/postfix/master.cf fi - chown root:maildrop ${PKG_PREFIX}/sbin/postdrop - chmod 2755 ${PKG_PREFIX}/sbin/postdrop + /usr/sbin/chown root:maildrop ${PKG_PREFIX}/sbin/postdrop + /bin/chmod 2555 ${PKG_PREFIX}/sbin/postdrop + ${PKG_PREFIX}/sbin/postfix check fi diff -ruN postfix-current.orig/pkg/PLIST postfix-current/pkg/PLIST --- postfix-current.orig/pkg/PLIST Thu Sep 14 02:33:09 2000 +++ postfix-current/pkg/PLIST Wed Sep 20 19:21:51 2000 @@ -1,28 +1,32 @@ etc/postfix/LICENSE +etc/postfix/postfix-script etc/postfix/sample-access etc/postfix/sample-aliases -etc/postfix/sample-canonical -etc/postfix/sample-main.cf -etc/postfix/sample-master.cf -etc/postfix/sample-regexp_table -etc/postfix/sample-relocated -etc/postfix/sample-transport -etc/postfix/sample-virtual etc/postfix/sample-aliases.cf +%%WITH_SASL%%etc/postfix/sample-auth.cf +etc/postfix/sample-canonical etc/postfix/sample-canonical.cf etc/postfix/sample-debug.cf etc/postfix/sample-filter.cf -etc/postfix/sample-ldap.cf +%%WITH_LDAP%%etc/postfix/sample-ldap.cf etc/postfix/sample-local.cf +etc/postfix/sample-main.cf +etc/postfix/sample-master.cf etc/postfix/sample-misc.cf +%%WITH_PCRE%%etc/postfix/sample-pcre.cf +%%WITH_PCRE%%etc/postfix/sample-pcre_table etc/postfix/sample-rate.cf etc/postfix/sample-regexp.cf +etc/postfix/sample-regexp_table +etc/postfix/sample-relocated etc/postfix/sample-relocated.cf etc/postfix/sample-resource.cf etc/postfix/sample-rewrite.cf etc/postfix/sample-smtp.cf etc/postfix/sample-smtpd.cf +etc/postfix/sample-transport etc/postfix/sample-transport.cf +etc/postfix/sample-virtual etc/postfix/sample-virtual.cf libexec/postfix/bounce libexec/postfix/cleanup @@ -38,40 +42,6 @@ libexec/postfix/smtp libexec/postfix/smtpd libexec/postfix/trivial-rewrite -man/man1/mailq.1.gz -man/man1/postalias.1.gz -man/man1/postcat.1.gz -man/man1/postconf.1.gz -man/man1/postdrop.1.gz -man/man1/postfix.1.gz -man/man1/postlock.1.gz -man/man1/postlog.1.gz -man/man1/postmap.1.gz -man/man1/postsuper.1.gz -man/man1/sendmail.1.gz -man/man1/newaliases.1.gz -man/man1/postkick.1.gz -man/man5/access.5.gz -man/man5/canonical.5.gz -man/man5/regexp_table.5.gz -man/man5/relocated.5.gz -man/man5/transport.5.gz -man/man5/virtual.5.gz -man/man5/aliases.5.gz -man/man8/bounce.8.gz -man/man8/defer.8.gz -man/man8/error.8.gz -man/man8/lmtp.8.gz -man/man8/local.8.gz -man/man8/master.8.gz -man/man8/pickup.8.gz -man/man8/pipe.8.gz -man/man8/qmgr.8.gz -man/man8/smtp.8.gz -man/man8/smtpd.8.gz -man/man8/cleanup.8.gz -man/man8/showq.8.gz -man/man8/trivial-rewrite.8.gz sbin/postalias sbin/postcat sbin/postconf @@ -84,4 +54,4 @@ sbin/sendmail @dirrm etc/postfix @dirrm libexec/postfix -@dirrm /var/spool/postfix +@unexec rm -rf /var/spool/postfix >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 Sep 20 22: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 1C52437B424 for ; Wed, 20 Sep 2000 22:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA51120; Wed, 20 Sep 2000 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B434F37B422; Wed, 20 Sep 2000 22:32:39 -0700 (PDT) Message-Id: <20000921053239.B434F37B422@hub.freebsd.org> Date: Wed, 20 Sep 2000 22:32:39 -0700 (PDT) From: marisombra@mindspring.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21440: StarOffice 5.2 port tries to install linux_base when linux_base is already installed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21440 >Category: ports >Synopsis: StarOffice 5.2 port tries to install linux_base when linux_base is already installed >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 Sep 20 22:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Daniel J. Zaccariello >Release: 4.1-Stable >Organization: >Environment: FreeBSD requiem.smite.lan 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 17 12:58:24 EDT 2000 sunship@requiem.smite.lan:/usr/obj/usr/src/sys/REQUIEM-SMP i386 >Description: when building the StarOffice 5.2 port, it tries to install linux_base 6.1 regardless of if it's installed already. This behavior doesn't appear to occur when I build other ports that depend on linux_base. linux_base also builds fine without error by itself. Please note that this is an install from the port, I did not download from Sun directly. From /usr/ports/emulators/linux_base/Makefile .if (${MACHINE_ARCH} == "i386") LIBC5_COMPAT= ld.so-1.9.5-11.i386.rpm libc-5.3.12-31.i386.rpm RPM_BINUTILS= binutils-2.9.1.0.23-6.i386.rpm RPM_GLIB= glib-1.2.5-1.i386.rpm <------- this is where it stops but nothing shows in pkg_info for the updated version below, so I'm confused here RPM_GLIBC= glibc-2.1.2-11.i386.rpm RPM_LDCONFIG= ldconfig-1.9.5-15.i386.rpm RPM_RPM= rpm-3.0.3-2.i386.rpm RPM_X_LIBS= XFree86-libs-3.3.5-3.i386.rpm UPDATES= glib-1.2.6-2.i386.rpm <-----this is what it says I have installed already (newer) ===> Extracting for staroffice-5.2 >How-To-Repeat: install linux_base, make install editors/staroffice52 >Fix: it's a voodoo workaround, i deinstalled linux_base, then made staroffice52 to reinstall it.... >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for staroffice52/soa-5_2-ga-bin-linux-en.bin. >> Checksum OK for staroffice52/so-5_2-ga-bin-linux-en.bin. ===> staroffice-5.2 depends on: /usr/ports/emulators/linux_base ===> Verifying install for /usr/ports/emulators/linux_base ===> Installing for linux_base-6.1 setup-2.0.5-1.noarch.rpm filesystem-1.3.5-1.noarch.rpm basesystem-6.0-4.noarch.rpm ldconfig-1.9.5-15.i386.rpm glibc-2.1.2-11.i386.rpm termcap-9.12.6-15.i386.rpm libtermcap-2.0.8-18.i386.rpm bash-1.14.7-16.i386.rpm ncurses-4.2-25.i386.rpm zlib-1.1.3-5.i386.rpm info-3.12h-2.i386.rpm fileutils-4.0-8.i386.rpm grep-2.3-2.i386.rpm binutils-2.9.1.0.23-6.i386.rpm gd-1.3-5.i386.rpm gdbm-1.8.0-2.i386.rpm glib-1.2.5-1.i386.rpm package glib-1.2.6-2 (which is newer) is already installed error: /usr/ports/distfiles/rpm/glib-1.2.5-1.i386.rpm cannot be installed *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 22: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 4C04137B43C for ; Wed, 20 Sep 2000 22:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA51151; Wed, 20 Sep 2000 22:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from volyn.dppl.com (cc167606-a.union1.nj.home.com [24.3.170.57]) by hub.freebsd.org (Postfix) with ESMTP id 33FDA37B423 for ; Wed, 20 Sep 2000 22:37:05 -0700 (PDT) Received: by volyn.dppl.com (Postfix, from userid 1001) id 3BF7E1B20E; Thu, 21 Sep 2000 01:37:04 -0400 (EDT) Message-Id: <20000921053704.3BF7E1B20E@volyn.dppl.com> Date: Thu, 21 Sep 2000 01:37:04 -0400 (EDT) From: yds@dppl.com Reply-To: yds@dppl.com To: FreeBSD-gnats-submit@freebsd.org Cc: dom@myrddin.demon.co.uk X-Send-Pr-Version: 3.2 Subject: ports/21441: FIX: devel/pcre to install a working pgrep binary Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21441 >Category: ports >Synopsis: FIX: devel/pcre to install a working pgrep binary >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 Sep 20 22:40:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Yarema >Release: FreeBSD 4.1-STABLE i386 >Organization: DPPL >Environment: FreeBSD 4.1-STABLE i386 >Description: @${LN} -f ${WRKSRC}/.libs/pgrep ${WRKSRC}/pgrep in the pre-install target otherwise we get a broken pgrep shell script installed instead of the binary we really want. >How-To-Repeat: cd /usr/ports/devel/pcre && make install && pgrep >Fix: diff -ruN pcre.prev/Makefile pcre/Makefile --- pcre.prev/Makefile Wed Apr 12 02:12:33 2000 +++ pcre/Makefile Thu Sep 21 01:29:42 2000 @@ -18,4 +18,9 @@ MAN3= pcre.3 pcreposix.3 MAN1= pgrep.1 +# Otherwise we get a broken pgrep shell script installed +# instead of the binary we really want. +pre-install: + @${LN} -f ${WRKSRC}/.libs/pgrep ${WRKSRC}/pgrep + .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 Wed Sep 20 22:53:18 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 F1D8237B424 for ; Wed, 20 Sep 2000 22:53:15 -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 OAA09559; Thu, 21 Sep 2000 14:52:55 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8L5q9W72515; Thu, 21 Sep 2000 14:52:10 +0900 (JST) Date: Thu, 21 Sep 2000 14:52:09 +0900 Message-ID: <86lmwmqol2.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: jkh@winston.osd.bsdi.com Cc: ports@FreeBSD.ORG Subject: Re: How to build packages on the fly... In-Reply-To: In your message of "Wed, 20 Sep 2000 19:43:28 -0700" <20189.969504208@winston.osd.bsdi.com> References: <20189.969504208@winston.osd.bsdi.com> 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, 20 Sep 2000 19:43:28 -0700, Jordan Hubbard wrote: > To be more specific, I'd like to be able to do: > > mkdir /usr/ports/packages > cd /usr/ports/x11/kde2 > make all install package > > .. and wind up with, in /usr/ports/packages/All, a complete set of > packages required to support KDE version 2. "make DEPENDS_TARGET=package package" would work. :) By the way, I modified NetBSD's pkg_tarup a bit to work on FreeBSD. http://people.FreeBSD.org/~knu/misc/pkg_tarup Any comments on importing this as a port? The original version is available at: http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/pkgtools/pkg_tarup/ -- / /__ __ / ) ) ) ) / 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 Wed Sep 20 23:28:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from radon.gryphonsoft.com (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 0906537B42C for ; Wed, 20 Sep 2000 23:28:29 -0700 (PDT) Received: by radon.gryphonsoft.com (Postfix, from userid 1000) id 1A2571B70; Thu, 21 Sep 2000 01:24:48 -0500 (EST) Date: Thu, 21 Sep 2000 01:24:48 -0500 From: Will Andrews To: "Michael G." Cc: "freebsd-ports@FreeBSD.ORG" , ichael Harnois Subject: Re: Kdegraphics 1.94 fails Message-ID: <20000921012448.Z35550@radon.gryphonsoft.com> Reply-To: Will Andrews References: <86ya0mmvs4.fsf@mharnois.workgroup.net> <200009210427.VAA09658@hawk.prod.itd.earthlink.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009210427.VAA09658@hawk.prod.itd.earthlink.net>; from mikegoe@earthlink.net on Wed, Sep 20, 2000 at 11:20:55PM +0000 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 20, 2000 at 11:20:55PM +0000, Michael G. wrote: > any help would be appreciated This was fixed by adding a patch to kdegraphics a few days ago. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 20 23:58:56 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 56DDB37B43C for ; Wed, 20 Sep 2000 23:58:54 -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 PAA22607; Thu, 21 Sep 2000 15:58:44 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8L6w7W73695; Thu, 21 Sep 2000 15:58:07 +0900 (JST) Date: Thu, 21 Sep 2000 15:58:07 +0900 Message-ID: <86k8c6qlj4.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: jkh@winston.osd.bsdi.com Cc: ports@FreeBSD.ORG Subject: Re: How to build packages on the fly... In-Reply-To: In your message of "Thu, 21 Sep 2000 14:52:09 +0900" <86lmwmqol2.wl@archon.local.idaemons.org> References: <20189.969504208@winston.osd.bsdi.com> <86lmwmqol2.wl@archon.local.idaemons.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 Thu, 21 Sep 2000 14:52:09 +0900, I wrote: > By the way, I modified NetBSD's pkg_tarup a bit to work on FreeBSD. > > http://people.FreeBSD.org/~knu/misc/pkg_tarup > > Any comments on importing this as a port? Give this a try: http://people.FreeBSD.org/~knu/ports/misc/ -- / /__ __ / ) ) ) ) / 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 Thu Sep 21 0: 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 EAF7937B43E for ; Thu, 21 Sep 2000 00:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA67518; Thu, 21 Sep 2000 00:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from grisu.evk-koeln.de (grisu.evk-koeln.de [194.77.188.194]) by hub.freebsd.org (Postfix) with ESMTP id 2527F37B423 for ; Wed, 20 Sep 2000 23:55:13 -0700 (PDT) Received: from sauerbruch.evk-koeln.de([139.64.201.254]) (2288 bytes) by grisu.evk-koeln.de via sendmail with P:esmtp/R:inet_hosts/T:smtp (sender: ) id for ; Thu, 21 Sep 2000 08:55:11 +0200 (CEST) (Smail-3.2.0.111 2000-Feb-17 #1 built 2000-Mar-14) Received: from localhost (1729 bytes) by sauerbruch.evk-koeln.de via sendmail with P:stdio/R:smart_host/T:smtp (sender: ) (ident using unix) id for ; Thu, 21 Sep 2000 08:55:11 +0200 (CEST) (Smail-3.2.0.107 1999-Sep-8 #1 built 2000-Jan-25) Message-Id: Date: Thu, 21 Sep 2000 08:55:11 +0200 (CEST) From: holger@eit.uni-kl.de Reply-To: holger@eit.uni-kl.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21442: Upgrade/fix port: graphics/avifile (checksum) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21442 >Category: ports >Synopsis: Upgrade/fix port graphics/avifile (checksum error) >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 Sep 21 00:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Holger Lamm >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: >Description: One file (binaries.zip) has no version numbering. The Mastersite has now put up a new version. (I'm still upgrading the port) >How-To-Repeat: >Fix: There are two possibilities. Remove the checksum (it works fine with the new version) or mirror it with version numbering and take that as Mastersite: --- graphics/avifile/Makefile.orig Thu Sep 21 08:27:38 2000 +++ graphics/avifile/Makefile Thu Sep 21 08:43:53 2000 @@ -8,8 +8,10 @@ PORTNAME= avifile PORTVERSION= 0.47.1 CATEGORIES= graphics -MASTER_SITES= http://divx.euro.ru/ -DISTFILES= avifile-${PORTVERSION}${EXTRACT_SUFX} binaries.zip +MASTER_SITES= http://ernie.eit.uni-kl.de/avifile/ \ + http://divx.euro.ru/ +DISTFILES= avifile-${PORTVERSION}${EXTRACT_SUFX} \ + binaries-${PORTVERSION}.zip EXTRACT_ONLY= avifile-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= holger@eit.uni-kl.de @@ -33,6 +35,7 @@ --with-win32-path=${LOCALBASE}/lib/win32 pre-install: - unzip ${DISTDIR}/binaries.zip -d ${LOCALBASE}/lib/win32 + unzip ${DISTDIR}/binaries-${PORTVERSION}.zip \ + -d ${LOCALBASE}/lib/win32 strip ${WRKSRC}/bin/aviplay ${WRKSRC}/bin/benchmark .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 Sep 21 0:20:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from volyn.dppl.com (cc167606-a.union1.nj.home.com [24.3.170.57]) by hub.freebsd.org (Postfix) with ESMTP id D686D37B422 for ; Thu, 21 Sep 2000 00:20:16 -0700 (PDT) Received: by volyn.dppl.com (Postfix, from userid 1001) id DBAF11B20E; Thu, 21 Sep 2000 03:20:15 -0400 (EDT) Date: Thu, 21 Sep 2000 03:20:15 -0400 (EDT) From: Yarema To: Lars Doelle Cc: Kevin Street , ports@FreeBSD.org Subject: Re: Bug#11134: konsole: chownpty failed for device /dev/ptyp5::/dev/ttyp5. In-Reply-To: <00092106591800.08868@hal9> Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-890268809-969520815=:86274" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-890268809-969520815=:86274 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 21 Sep 2000, Lars Doelle wrote: > On Tue, 19 Sep 2000, Yarema wrote: > > Package: konsole > > Version: 1.0.1 (KDE 1.94 >= 20000911) > > Severity: grave > > > > This error happens for both the locally built KDE on a FreeBSD 4.1-STABLE > > w/ XFree86 4.01 and the prebuilt beta 5 FreeBSD packages downloaded from > > ftp.kde.org. Please let me know if there's any way I can help debug this. > > Hmm, perhaps things are simpler now. > Tracking down a loosely related issue, > i wonder if FreeBSD doesn't support > UNIX 98 Ptys. > > If this is the case one can get rid of > the konsole_grantpty stuff for FreeBSD > at all. > > So you should check if you have a /dev/ptmx > and grantpt routines (as offered in > glibc2.0). > > If this is the case, please try the most recent > version. Thanks for your replies. Unfortunatly FreeBSD does not have UNIX 98 Ptys, /dev/ptmx does not exist and niether does glibc2.x. I'm attaching the two messages touching on this subject found on the FreeBSD-Ports list. Apperantly UnixWare7 is having the same problem. I'm also adding Kevin Street to CC since he's credited with the FreeBSD port of konsole. For what it's worth when starting KDE2 kwrited crashes with SIGABRT and the same output in the logfile. konsole also crashes with SIGABRT when started from any of the menus. However when started from an xterm konsole still spits out: konsole_grantpty: cannot determine the name of device. konsole: chownpty failed for device /dev/ptyp8::/dev/ttyp8. : This means the session can be eavesdroped. : Make sure konsole_grantpty is installed in : /usr/local/bin/ and setuid root. but does not crash and everything seems to work fine. The following PR http://www.freebsd.org/cgi/query-pr.cgi?pr=9770 seems to include patches to add the same functionality as konsole_grantpty to FreeBSD. AFAIK the PR is still open. I'm in a little over my head as far as tweaking the code to fix this, but I can cvsup the KDE2 sources and/or apply patches for testing. -- Yarema --0-890268809-969520815=:86274 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN; name="konsole_grantpty.2" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="konsole_grantpty.2" RGF0ZTogU2F0LCAyMiBKdWwgMjAwMCAyMToxMDozNSAtMDMwMCAoQURUKQ0K RnJvbTogVGhlIEhlcm1pdCBIYWNrZXIgPHNjcmFwcHlAaHViLm9yZz4NClRv OiBrZGUtZGV2ZWxAbWF4LnRhdC5waHlzaWsudW5pLXR1ZWJpbmdlbi5kZQ0K Q2M6IGZyZWVic2QtcG9ydHNAZnJlZWJzZC5vcmcNClN1YmplY3Q6IEtERTIg YW5kIGtvbnNvbGVfZ3JhbnRwdHkgKFdhczogUmU6IE1vcmUgb24gU2Vzc2lv biBoYW5ncyAuLi4gKQ0KDQpva2F5LCB0aGlzIG1pZ2h0IG1ha2Ugc2Vuc2Ug dG8gc29tZW9uZSBvdXQgdGhlcmUgLi4uIGxvb2tpbmcgYXQNCmtvbnNvbGVf Z3JhbnRwdHksIHRoZSBmb2QgdGhhdCBpcyBmYWlsaW5nIGFwcGVhcnMgdG8g YmU6DQoNCiAgcHR5ID0gdHR5bmFtZShQVFlfRklMRU5PKTsgICAgICAgICAg LyogcG9zaXggKi8NCiAgaWYgKHB0eSA9PSBOVUxMKQ0KICB7DQogICAgZnBy aW50ZihzdGRlcnIsIiVzOiBjYW5ub3QgZGV0ZXJtaW5lIHRoZSBuYW1lIG9m IGRldmljZS5cbiIsYXJndlswXSk7DQogICAgcmV0dXJuIDE7IC8qIEZBSUwg Ki8NCiAgfQ0KICBjbG9zZShQVFlfRklMRU5PKTsNCg0Kd2hlcmUgUFRZX0ZJ TEVOTyBpcyBoYXJkY29kZWQgYXMgMzoNCg0KI2RlZmluZSBQVFlfRklMRU5P IDMgICAgLyoga2VlcCBpbiBzeW5jIHdpdGggZ3JhbnRwdHkgKi8NCg0KV2hh dCBkb2VzIHRoZSAzIHNpZ25pZnk/ICBJcyB0aGlzIHNvbWV0aGluZyBzcGVj aWZpYyB0byBMaW51eCB0aGF0IG5lZWRzDQp0byBiZSBzZXQgdG8gYSBkaWZm ZXJlbnQgdmFsdWUgZm9yICpCU0QgKGFuZCwgYXBwYXJlbnRseSwgVW5peFdh cmU3KT8gIA0KDQoNCg0KT24gU2F0LCAyMiBKdWwgMjAwMCwgVGhlIEhlcm1p dCBIYWNrZXIgd3JvdGU6DQoNCj4gT24gU3VuLCAyMyBKdWwgMjAwMCwgUmFs ZiBOb2xkZW4gd3JvdGU6DQo+IA0KPiA+IFRoZSBIZXJtaXQgSGFja2VyIHdy b3RlOg0KPiA+ID4gDQo+ID4gPiBEbyB0aGUgZm9sbG93aW5nIG1lYW4gYW55 dGhpbmcgY29uY2VybmluZyB0aGUgJ3Nlc3Npb24gaGFuZ3MnIEknbQ0KPiA+ ID4gZXhwZXJpZW5jaW5nPw0KPiA+ID4gDQo+ID4gPiBfSWNlVHJhbnNta2Rp cjogT3duZXIgb2YgL3RtcC8uSUNFLXVuaXggc2hvdWxkIGJlIHNldCB0byBy b290DQo+ID4gPiBrb25zb2xlX2dyYW50cHR5OiBjYW5ub3QgZGV0ZXJtaW5l IHRoZSBuYW1lIG9mIGRldmljZS4NCj4gPiA+IGtvbnNvbGU6IGNob3ducHR5 IGZhaWxlZCBmb3IgZGV2aWNlIC9kZXYvcHR5cDg6Oi9kZXYvdHR5cDguDQo+ ID4gPiAgICAgICAgOiBUaGlzIG1lYW5zIHRoZSBzZXNzaW9uIGNhbiBiZSBl YXZlc2Ryb3BlZC4NCj4gPiA+ICAgICAgICA6IE1ha2Ugc3VyZSBrb25zb2xl X2dyYW50cHR5IGlzIGluc3RhbGxlZCBpbg0KPiA+ID4gICAgICAgIDogL3Vz ci9sb2NhbC9iaW4vIGFuZCBzZXR1aWQgcm9vdC4NCj4gPiBXaGF0IE9TIGFy ZSB5b3UgcnVubmluZyA/IEkgaGF2ZSB0aGUgc2FtZSBlcnJvciB3aGVuIGRl YnVnZ2luZyB3aXRoDQo+ID4gS0RldmVsb3AgdW5kZXIgVW5peFdhcmU3IGFu ZCBJtG0gaGVscGxlc3MgaGVyZSwgdG9vIGFsdGhvdWdoDQo+ID4ga29uc29s ZV9ncmFudHB0eSBpcyBzZXVpZCByb290IGFuZCBpbnN0YWxsZWQgOy0oDQo+ IA0KPiBSdW5uaW5nIEZyZWVCU0QgYXQgdGhpcyBlbmQgLi4uIGFwcGFyZW50 bHkgdGhpcyBpcyBhIGNvbW1vbiBGcmVlQlNEDQo+IHByb2JsZW0gYWxzbyAu Li4NCj4gDQo+IE1hcmMgRy4gRm91cm5pZXIgICAgICAgICAgICAgICAgICAg SUNRIzc2MTU2NjQgICAgICAgICAgICAgICBJUkMgTmljazogU2NyYXBweQ0K PiBTeXN0ZW1zIEFkbWluaXN0cmF0b3IgQCBodWIub3JnIA0KPiBwcmltYXJ5 OiBzY3JhcHB5QGh1Yi5vcmcgICAgICAgICAgIHNlY29uZGFyeTogc2NyYXBw eUB7ZnJlZWJzZHxwb3N0Z3Jlc3FsfS5vcmcgDQo+IA0KPiAgDQo+ID4+IFZp c2l0IGh0dHA6Ly9tYXN0ZXIua2RlLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2tk ZS1kZXZlbCN1bnN1YiB0byB1bnN1YnNjcmliZSA8PA0KPiANCj4gDQoNCk1h cmMgRy4gRm91cm5pZXIgICAgICAgICAgICAgICAgICAgSUNRIzc2MTU2NjQg ICAgICAgICAgICAgICBJUkMgTmljazogU2NyYXBweQ0KU3lzdGVtcyBBZG1p bmlzdHJhdG9yIEAgaHViLm9yZyANCnByaW1hcnk6IHNjcmFwcHlAaHViLm9y ZyAgICAgICAgICAgc2Vjb25kYXJ5OiBzY3JhcHB5QHtmcmVlYnNkfHBvc3Rn cmVzcWx9Lm9yZyANCg== --0-890268809-969520815=:86274 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="konsole_grantpty.1" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="konsole_grantpty.1" RGF0ZTogU3VuLCAyMyBKdWwgMjAwMCAwMDozNjowOSAtMDQwMCAoRURUKQ0K RnJvbTogVHJldm9yIEpvaG5zb24gPHRyZXZvckBqcGoubmV0Pg0KVG86IFRo ZSBIZXJtaXQgSGFja2VyIDxzY3JhcHB5QGh1Yi5vcmc+DQpDYzoga2RlLWRl dmVsQG1heC50YXQucGh5c2lrLnVuaS10dWViaW5nZW4uZGUsDQoJZnJlZWJz ZC1wb3J0c0BGcmVlQlNELk9SRywgUm9uYWxkIEt1ZWhuIDxrdWVobkByei50 dS1jbGF1c3RoYWwuZGU+DQpTdWJqZWN0OiBSZTogS0RFMiBhbmQga29uc29s ZV9ncmFudHB0eSAoV2FzOiBSZTogTW9yZSBvbiBTZXNzaW9uIGhhbmdzIC4u LiApDQoNCj4gb2theSwgdGhpcyBtaWdodCBtYWtlIHNlbnNlIHRvIHNvbWVv bmUgb3V0IHRoZXJlIC4uLiBsb29raW5nIGF0DQo+IGtvbnNvbGVfZ3JhbnRw dHksIHRoZSBmb2QgdGhhdCBpcyBmYWlsaW5nIGFwcGVhcnMgdG8gYmU6DQo+ IA0KPiAgIHB0eSA9IHR0eW5hbWUoUFRZX0ZJTEVOTyk7ICAgICAgICAgIC8q IHBvc2l4ICovDQo+ICAgaWYgKHB0eSA9PSBOVUxMKQ0KPiAgIHsNCj4gICAg IGZwcmludGYoc3RkZXJyLCIlczogY2Fubm90IGRldGVybWluZSB0aGUgbmFt ZSBvZiBkZXZpY2UuXG4iLGFyZ3ZbMF0pOw0KPiAgICAgcmV0dXJuIDE7IC8q IEZBSUwgKi8NCj4gICB9DQo+ICAgY2xvc2UoUFRZX0ZJTEVOTyk7DQo+IA0K PiB3aGVyZSBQVFlfRklMRU5PIGlzIGhhcmRjb2RlZCBhcyAzOg0KPiANCj4g I2RlZmluZSBQVFlfRklMRU5PIDMgICAgLyoga2VlcCBpbiBzeW5jIHdpdGgg Z3JhbnRwdHkgKi8NCj4gDQo+IFdoYXQgZG9lcyB0aGUgMyBzaWduaWZ5PyAg SXMgdGhpcyBzb21ldGhpbmcgc3BlY2lmaWMgdG8gTGludXggdGhhdCBuZWVk cw0KPiB0byBiZSBzZXQgdG8gYSBkaWZmZXJlbnQgdmFsdWUgZm9yICpCU0Qg KGFuZCwgYXBwYXJlbnRseSwgVW5peFdhcmU3KT8gIA0KDQpJIHNlYXJjaGVk IHRoZSBXZWIgZm9yICJQVFlfRklMRU5PIiBhbmQgZm91bmQNCmh0dHA6Ly93 d3cuZHJhcGVyLm5ldC9nbGliYy0yLjEvUy9sb2dpbiUyMHByb2dyYW1zJTIw cHRfY2hvd24uYy5odG1sIC4gIA0KSXQncyBhIGRhZW1vbiB0aGF0IGNvbWVz IHdpdGggdGhlIEdOVSBDIGxpYnJhcnkgdGhhdCBzZWVtcyB0byBkbyB0aGUg c2FtZQ0KdGhpbmcgdGhhdCBrb25zb2xlX2dyYW50cHR5IGlzIGZvci4gIFBU WV9GSUxFTk8gaXMgZGVmaW5lZCBpbiB0aGUNCmFjY29tcGFueWluZyBwdHkt cHJpdmF0ZS5oDQooaHR0cDovL3d3dy5kcmFwZXIubmV0L2dsaWJjLTIuMS9T L2xvZ2luJTIwcHR5LXByaXZhdGUuaC5odG1sKSB3aGljaCBzYXlzOg0KDQog IDI3IC8qIFRoZSBmaWxlIGRlc2NyaXB0b3IgY29ubmVjdGVkIHRvIHRoZSBt YXN0ZXIgcHNldWRvIHRlcm1pbmFsLiAgKi8NCiAgMjggI2RlZmluZSBQVFlf RklMRU5PIDMNCg0KQXQNCmh0dHA6Ly93d3cuc2VjdXJpdGVhbS5jb20vdW5p eGZvY3VzL0VtYWNzX2ZvdW5kX3RvX2NvbnRhaW5fc2V2ZXJhbF9zZWN1cml0 eV92dWxuZXJhYmlsaXRpZXNfX2VhdmVzZHJvcF9fdG1wX19wYXNzd29yZF8u aHRtbA0KSSByZWFkOg0KDQogICAgICAgIEZvciBGcmVlQlNELCBhbiBlbmhh bmNlbWVudCB0byBvcGVucHR5KCkgaGFzIGJlZW4gcHJvcG9zZWQgd2hpY2gN CiAgICAgICAgc2V0cyBwcm9wZXIgcGVybWlzc2lvbnMgb24gdGhlIHNsYXZl IFRUWSBkZXZpY2UgKHNlZSBwcm9ibGVtDQogICAgICAgIHJlcG9ydCBiaW4v OTc3MCkuIFRoZSBwcm9wb3NhbCBoYXMgeWV0IHRvIGJlIGFkb3B0ZWQsIHRo b3VnaC4NCg0KSSBhZGRlZCBSb25hbGQgS3VlaG4sIHdobyBzdWJtaXR0ZWQg dGhlIFBSLCB0byB0aGUgQ0MgbGluZS4gIEkgb25seSB0b29rIGENCmN1cnNv cnkgbG9vayBhdCBoaXMgcHJvZ3JhbSwgYnV0IGl0IHNlZW1zIHRvIHNlcnZl IGEgc2ltaWxhciBmdW5jdGlvbiB0bw0Ka29uc29sZV9ncmFudHB0eSBvciBw dF9jaG93biwgZXhjZXB0IHRoYXQgaGUgd3JvdGUgaXQgZXNwZWNpYWxseSBm b3INCkZyZWVCU0QuICBJIGd1ZXNzIG1vc3Qgb2YgdGhlIExpbnV4IGZvbGtz IGNhbiB1c2UgVU5JWCA5OCBwdHlzDQooaHR0cDovL3d3dy51bml4LXN5c3Rl bXMub3JnL3NpbmdsZV91bml4X3NwZWNpZmljYXRpb25fdjIveHNoL2dyYW50 cHQuaHRtbCkNCm5vdywgYW5kIGRvbid0IG5lZWQgc3VjaCBkYWVtb25zLg0K LS0gDQpUcmV2b3IgSm9obnNvbg0KaHR0cDovL2pwai5uZXQvfnRyZXZvci9n cGdrZXkudHh0DQo= --0-890268809-969520815=:86274-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 1:33:16 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 2679F37B423; Thu, 21 Sep 2000 01:33:08 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13c1my-0009m9-00; Thu, 21 Sep 2000 10:33:04 +0200 Date: Thu, 21 Sep 2000 10:33:04 +0200 From: Johann Visagie To: Maxim Sobolev Cc: tg@FreeBSD.org, ports@FreeBSD.org Subject: Re: Problems building math/numpy Message-ID: <20000921103304.A31045@fling.sanbi.ac.za> References: <20000920181750.A52034@fling.sanbi.ac.za> <39C8E474.4643152A@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: <39C8E474.4643152A@FreeBSD.org>; from sobomax@FreeBSD.org on Wed, Sep 20, 2000 at 07:23:16PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev on 2000-09-20 (Wed) at 19:23:16 +0300: > > Probably OT, but have to note that 3-STABLE is not supported by the ports tree > anymore (since the time of 4.1-RELEASE). So would be really better for you to > upgrade if you want to use updated ports. Fair enough, I didn't realise 3-STABLE was officially out of the running. My suggested update for the port has been tested on -CURRENT (and I would assume it works on 4-STABLE) - I'll package it up and submit it to tg. -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 2: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 E765437B42C for ; Thu, 21 Sep 2000 02:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA02343; Thu, 21 Sep 2000 02:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from adelie.btinternet.com (host212-140-200-211.btinteractive.net [212.140.200.211]) by hub.freebsd.org (Postfix) with ESMTP id B464F37B422 for ; Thu, 21 Sep 2000 02:27:46 -0700 (PDT) Received: (from oh@localhost) by adelie.btinternet.com (8.9.3/8.9.3) id KAA05155; Thu, 21 Sep 2000 10:27:40 +0100 (BST) (envelope-from oh) Message-Id: <200009210927.KAA05155@adelie.btinternet.com> Date: Thu, 21 Sep 2000 10:27:40 +0100 (BST) From: Orion Hodson Reply-To: Orion Hodson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21445: Update for ports/mbone/rat to enable IPv6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21445 >Category: ports >Synopsis: Patch to enable IPv6 >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 Sep 21 02:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Orion Hodson >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: >Description: Shirasaki Yashiro supplied the patch below to enable IPv6 support. It works fine and we should definitely have it. >How-To-Repeat: >Fix: cd ports/mbone/rat; then apply the patch below. Thanks, Orion --- Makefile.orig Tue Sep 19 13:42:22 2000 +++ Makefile Thu Sep 21 10:36:18 2000 @@ -7,7 +7,7 @@ PORTNAME= rat PORTVERSION= 4.2.9 -CATEGORIES= mbone audio +CATEGORIES= mbone audio ipv6 MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/4.2.9/ \ ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= cpiazza @@ -25,6 +25,12 @@ RAT_BUILD_DIRS= common rat +.include + +.if ${OSVERSION} >= 400014 +ENABLE_IPv6= --enable-ipv6 +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/rat/rat ${PREFIX}/bin/rat ${INSTALL_PROGRAM} ${WRKSRC}/rat/rat-ui ${PREFIX}/bin/rat-ui @@ -39,7 +45,7 @@ done do-configure: - cd ${WRKSRC}/common && ./configure - cd ${WRKSRC}/rat && autoconf && ./configure --with-tcl=${LOCALBASE} --with-tk=${LOCALBASE} + cd ${WRKSRC}/common && autoconf && ./configure ${ENABLE_IPv6} + cd ${WRKSRC}/rat && autoconf && ./configure --with-tcl=${LOCALBASE} --with-tk=${LOCALBASE} ${ENABLE_IPv6} -.include "bsd.port.mk" +.include "bsd.port.post.mk" --- patches/patch-aa Tue Sep 19 13:42:22 2000 +++ patches/patch-aa Thu Sep 21 10:34:39 2000 @@ -919,29 +919,23 @@ /* GSM related */ #undef SASR -diff -uPr rat/configure.in /home/oh/src/rat-newpcm/rat/configure.in ---- rat/configure.in Fri Sep 8 21:03:02 2000 -+++ /home/oh/src/rat-newpcm/rat/configure.in Sat Sep 16 20:34:08 2000 -@@ -1,5 +1,5 @@ - dnl UCL RAT configure script. --dnl $Header: /cs/research/mice/starship/src/local/CVS_repository/rat/configure.in,v 1.38 2000/03/23 10:00:53 ucacoxh Exp $ -+dnl $Header: /cs/research/mice/starship/src/local/CVS_repository/rat/configure.in,v 1.39 2000/09/16 17:43:25 ucacoxh Exp $ - dnl - dnl Process this file with GNU autoconf to generate a configure script. - -@@ -195,9 +195,12 @@ - AU_OBJ="$AU_OBJ auddev_pca.o" - AC_DEFINE(HAVE_PCA_AUDIO) - fi -- # Luigi's driver -- AU_OBJ="$AU_OBJ auddev_luigi.o" -- AC_DEFINE(HAVE_LUIGI_AUDIO) -+ # Note luigi and newpcm have compatible soundcard.h files but -+ # mixer behaves differently under both systems. During runtime -+ # only one of these modules will be used. -+ AU_OBJ="$AU_OBJ auddev_luigi.o auddev_newpcm.o" -+ AC_DEFINE(HAVE_LUIGI_AUDIO) -+ AC_DEFINE(HAVE_NEWPCM_AUDIO) - ;; - *netbsd*) - AU_OBJ="$AUDIOBJ auddev_netbsd.o" +diff -uPr common/configure.in /home/oh/src/rat-newpcm/common/configure.in +--- common/configure.in Sat Sep 9 05:02:27 2000 ++++ /home/oh/src/rat-newpcm/common/configure.in Thu Sep 21 10:15:12 2000 +@@ -179,7 +179,7 @@ + AC_DEFINE(HAVE_IPv6) + case "$host_os" in + # FreeBSD Kame uses seperate libinet6 +- freebsd*) ++ freebsd[23]*) + LIBS="$LIBS -L/usr/local/v6/lib -linet6" + ;; + *) ;; +@@ -216,6 +216,7 @@ + #ifdef HAVE_NETINET6_IN6_H + #include + #else ++ #include + #include + #endif /* HAVE_NETINET_IN6_H */ + ],[ --- patches/patch-ac Tue Sep 19 13:42:22 2000 +++ patches/patch-ac Thu Sep 21 10:51:59 2000 @@ -1,6 +1,29 @@ ---- rat/configure.in.pre Sun Sep 17 02:34:18 2000 -+++ rat/configure.in Sun Sep 17 02:36:23 2000 -@@ -280,12 +280,12 @@ +--- rat/configure.in.orig Thu Sep 21 10:50:51 2000 ++++ rat/configure.in Thu Sep 21 10:51:20 2000 +@@ -1,5 +1,5 @@ + dnl UCL RAT configure script. +-dnl $Header: /cs/research/mice/starship/src/local/CVS_repository/rat/configure.in,v 1.38 2000/03/23 10:00:53 ucacoxh Exp $ ++dnl $Header: /cs/research/mice/starship/src/local/CVS_repository/rat/configure.in,v 1.39 2000/09/16 17:43:25 ucacoxh Exp $ + dnl + dnl Process this file with GNU autoconf to generate a configure script. + +@@ -195,9 +195,12 @@ + AU_OBJ="$AU_OBJ auddev_pca.o" + AC_DEFINE(HAVE_PCA_AUDIO) + fi +- # Luigi's driver +- AU_OBJ="$AU_OBJ auddev_luigi.o" +- AC_DEFINE(HAVE_LUIGI_AUDIO) ++ # Note luigi and newpcm have compatible soundcard.h files but ++ # mixer behaves differently under both systems. During runtime ++ # only one of these modules will be used. ++ AU_OBJ="$AU_OBJ auddev_luigi.o auddev_newpcm.o" ++ AC_DEFINE(HAVE_LUIGI_AUDIO) ++ AC_DEFINE(HAVE_NEWPCM_AUDIO) + ;; + *netbsd*) + AU_OBJ="$AUDIOBJ auddev_netbsd.o" +@@ -277,12 +280,12 @@ # We could be dealing with a source installation or a full installation. # Expect a source installation to have headers in TCL8_HOME/generic and libs in # TCL8_HOME/unix. A full installation should have headers in @@ -16,7 +39,7 @@ AC_ARG_WITH(tcl, [ --with-tcl=DIR specify location of Tcl installation], -@@ -295,7 +295,7 @@ +@@ -292,7 +295,7 @@ #----------------------------------------------------------------------------- # Depending on config expect tcl.h to be tcl source dir or include path #----------------------------------------------------------------------------- @@ -25,7 +48,7 @@ do if test -d $i ; then TCL_INC=$i -@@ -330,7 +330,7 @@ +@@ -327,7 +330,7 @@ SAVED_LIBS=$LIBS LIBS="" FOUND_TCL_LIB=no @@ -34,7 +57,7 @@ FOUND_TCL_LIB=yes, , -L${TCL_LIB} ${SAVED_LIBS} -lm) -@@ -346,8 +346,8 @@ +@@ -343,8 +346,8 @@ exit fi @@ -45,7 +68,7 @@ AC_ARG_WITH(tk, [ --with-tk=DIR specify location of Tk installation], -@@ -359,7 +359,7 @@ +@@ -356,7 +359,7 @@ # include tcl.h, Xlib.h, Xutil.h before tk.h. #----------------------------------------------------------------------------- FOUND_TK_INC=0 @@ -54,7 +77,7 @@ do AC_MSG_CHECKING(for $i/tk.h) if test -r $i/tk.h ; then -@@ -391,7 +391,7 @@ +@@ -388,7 +391,7 @@ SAVED_LIBS=$LIBS LIBS="" FOUND_TK_LIB=no @@ -63,7 +86,16 @@ FOUND_TK_LIB=yes, , -L${TK_LIB} ${TCL_LIB} $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS ${SAVED_LIBS} -lm) -@@ -466,20 +466,8 @@ +@@ -419,7 +422,7 @@ + AC_DEFINE(HAVE_IPv6) + case "$host_os" in + # FreeBSD Kame uses seperate libinet6 +- freebsd*) ++ freebsd[23]*) + LIBS="$LIBS -L/usr/local/v6/lib -linet6" + ;; + *) ;; +@@ -463,20 +466,8 @@ COMMON_LIB=${COMMON_LIB}/lib fi >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 Sep 21 3:20: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 EA23D37B42C; Thu, 21 Sep 2000 03:20:28 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id DAA13386; Thu, 21 Sep 2000 03:20:28 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 21 Sep 2000 03:20:28 -0700 (PDT) From: Kris Kennaway To: ZGabor@CoDe.HU, ache@FreeBSD.org, adam@algroup.co.uk, alexlh@funk.org, dima@Chg.RU, green@FreeBSD.org, greg@hewgill.com, hetzels@westbend.net, issei@jp.FreeBSD.org, ks@itp.ac.ru, martti.kuparinen@ericsson.com, nobutaka@nobutaka.com, nsayer@freebsd.org, obrien@FreeBSD.org, patrick@mindstep.com, peterh@sapros.com, ports@FreeBSD.org, rse@engelschall.com, sec@42.org, shipley@dis.org, sumikawa@FreeBSD.org, veers@disturbed.net Subject: For review: RSA ports patch 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 all, You guys are all maintainers of a port which uses RSA. Can you please review the patch at http://www.freebsd.org/~kris/openssl-rsa.patch For most ports it's a trivial patch, so please take a look and verify your port builds properly. Since the release is coming up fast I'd like to have swift action on this, and will probably commit it in the next day or two. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 3:49: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 56A7937B423; Thu, 21 Sep 2000 03:49:04 -0700 (PDT) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.9.3/8.9.3b) with SMTP id MAA11757; Thu, 21 Sep 2000 12:48:54 +0200 (CEST) Date: Thu, 21 Sep 2000 12:52:53 +0200 (CEST) From: Martin Blapp To: "Dan Z." Cc: ports@freebsd.org, adrian@freebsd.org Subject: Re: ports/21440: StarOffice 5.2 port tries to install linux_base when linux_base is already installed [PATCH] In-Reply-To: <5.0.0.25.2.20000921062908.03aa6c00@pop.mindspring.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, This is fixed but not yet committed. http://www.attic.ch/ports/Makefile5-en.diff for /usr/ports/editors/staroffice52 http://www.attic.ch/ports/Makefile5-de.diff for /usr/ports/german/staroffice52 Cheers Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ On Thu, 21 Sep 2000, Dan Z. wrote: > Greets, > > Please see http://www.freebsd.org/cgi/query-pr.cgi?pr=21440 > > Thanks, > > Daniel J. Zaccariello > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 3:58:55 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 A4CA037B424 for ; Thu, 21 Sep 2000 03:58:52 -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 NAA01913; Thu, 21 Sep 2000 13:06:33 +0200 Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id NAA69245; Thu, 21 Sep 2000 13:03:19 +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: Johann Visagie Cc: ports@freebsd.org Subject: Re: Problems building math/numpy References: <20000920181750.A52034@fling.sanbi.ac.za> From: Thomas Gellekum In-Reply-To: Johann Visagie's message of "Wed, 20 Sep 2000 18:17:51 +0200" Date: 21 Sep 2000 13:03:19 +0200 Message-ID: Lines: 17 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 Johann Visagie writes: > Hi there, > > There are some problems with the math/numpy port. Firstly, they made a minor > bugfix and bumped the version number from 16.1 to 16.1.1, removing the source > tarballs for 16.1. > > That's easy to fix. I was going to patch and send it to you / submit it > myself, but then noticed that it still doesn't build on a 3.5-STABLE box, due > to libg2c not being found. I've yet to see 16.1.1, but I have patches for lapack to DTRT for 3.x and later systems (Paul Magwene tested them). I'll update the port as soon as Jean-Marc gives his ok. numpy should be fine afterwards. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 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 58C5A37B423 for ; Thu, 21 Sep 2000 04:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA25071; Thu, 21 Sep 2000 04:10: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 75A3537B422; Thu, 21 Sep 2000 04:08:29 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13c4DH-000BcU-00; Thu, 21 Sep 2000 13:08:23 +0200 Message-Id: Date: Thu, 21 Sep 2000 13:08:23 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org Cc: tg@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21446: Port update: math/numpy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21446 >Category: ports >Synopsis: Port update: math/numpy >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 Sep 21 04:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 5.0-CURRENT i386 >Organization: Electric Genetics >Environment: >Description: Update port math/numpy from 16.1 to 16.1.1, which is a bugfix releases that simply adds one file to the distribution. The distfiles for 16.1 have been removed from the master sites and are not yet on the FreeBSD mirrors. Hence, the 16.1 port is currently broken. Note: As indicated in a posting to -ports, the numpy port does now not build on 3-STABLE. >How-To-Repeat: >Fix: diff -ruN numpy.bak/Makefile numpy/Makefile --- numpy.bak/Makefile Tue Sep 19 15:24:29 2000 +++ numpy/Makefile Thu Sep 21 11:08:00 2000 @@ -6,8 +6,7 @@ # PORTNAME= numeric -PORTVERSION= 16.1 -PORTREVISION= 1 +PORTVERSION= 16.1.1 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= numpy diff -ruN numpy.bak/files/md5 numpy/files/md5 --- numpy.bak/files/md5 Fri Sep 15 12:30:01 2000 +++ numpy/files/md5 Thu Sep 21 10:53:47 2000 @@ -1 +1 @@ -MD5 (Numeric-16.1.tar.gz) = 588c5f6b34c918d499d0b3128dbb467e +MD5 (Numeric-16.1.1.tar.gz) = a20f535b1761a19fb791456cee37b812 diff -ruN numpy.bak/pkg/PLIST numpy/pkg/PLIST --- numpy.bak/pkg/PLIST Fri Sep 15 12:30:01 2000 +++ numpy/pkg/PLIST Thu Sep 21 10:59:27 2000 @@ -7,6 +7,8 @@ lib/%%PYTHON_VERSION%%/site-packages/FFT/__init__.pyc lib/%%PYTHON_VERSION%%/site-packages/MA/MA.py lib/%%PYTHON_VERSION%%/site-packages/MA/MA.pyc +lib/%%PYTHON_VERSION%%/site-packages/MA/version.py +lib/%%PYTHON_VERSION%%/site-packages/MA/version.pyc lib/%%PYTHON_VERSION%%/site-packages/MA/__init__.py lib/%%PYTHON_VERSION%%/site-packages/MA/__init__.pyc lib/%%PYTHON_VERSION%%/site-packages/Numeric.pth >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 Sep 21 4:16: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 C701437B423; Thu, 21 Sep 2000 04:16:51 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA25840; Thu, 21 Sep 2000 04:16:51 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Thu, 21 Sep 2000 04:16:51 -0700 (PDT) From: Message-Id: <200009211116.EAA25840@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-ports@FreeBSD.org, tg@FreeBSD.org Subject: Re: ports/21446: Port update: math/numpy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: math/numpy Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: nbm Responsible-Changed-When: Thu Sep 21 04:16:40 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21446 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 5:22:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.mdanderson.org (mail.mdanderson.org [143.111.87.47]) by hub.freebsd.org (Postfix) with ESMTP id C299137B424 for ; Thu, 21 Sep 2000 05:22:14 -0700 (PDT) Received: from jef-nt.mdacc.tmc.edu.mdacc.tmc.edu (jef-nt.mdacc.tmc.edu [143.111.64.202]) by mail.mdanderson.org (8.9.1b+Sun/8.9.1) with SMTP id HAA28427; Thu, 21 Sep 2000 07:11:31 -0500 (CDT) From: Jonathan Fosburgh MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14793.64431.545000.641443@jef-nt.mdacc.tmc.edu> Date: Thu, 21 Sep 2000 07:14:39 -0500 (GMT-6:00) To: "Michael G." Cc: "freebsd-ports@FreeBSD.ORG" , "ichael Harnois" Subject: Re: Kdegraphics 1.94 fails In-Reply-To: <200009210427.VAA09658@hawk.prod.itd.earthlink.net> References: <86ya0mmvs4.fsf@mharnois.workgroup.net> <200009210427.VAA09658@hawk.prod.itd.earthlink.net> 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 * Michael G writes: > I'm doing a fresh install of the latest KDE snapshot on a 4.1 -Stable > machine and the kdegraphics port is failing here (all others compiled > fine): That's interesting, mine failed on kdelibs with a syntax error. I'll make more available when I am able to get back to the machine. -- Jonathan Fosburgh Open Systems Communications and Computer Services UT MD Anderson Cancer Center Houston, TX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 5:28: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (ppp169.max-01.intercom.com [198.143.0.169]) by hub.freebsd.org (Postfix) with ESMTP id E21F937B423; Thu, 21 Sep 2000 05:27:42 -0700 (PDT) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id HAA02001; Thu, 21 Sep 2000 07:46:33 -0400 Received: from virtual-estates.net (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.9.3/8.9.3) with ESMTP id IAA42894; Thu, 21 Sep 2000 08:27:05 -0400 (EDT) (envelope-from mi@virtual-estates.net) Message-Id: <200009211227.IAA42894@misha.privatelabs.com> Date: Thu, 21 Sep 2000 08:27:04 -0400 (EDT) From: mi@aldan.algebra.com Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r To: Andrew Boothman Cc: chad@DCFinc.com, jkh@winston.osd.bsdi.com, stable@FreeBSD.ORG, doc@FreeBSD.ORG, nbm@mithrandr.moria.org, ports@FreeBSD.ORG, ade@FreeBSD.ORG, seb@bluetail.com, ruslan@shevchenko.kiev.ua, olgeni@uli.it, kris@FreeBSD.ORG In-Reply-To: MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 21 Sep, Andrew Boothman wrote: = On 21-Sep-00 Chad R. Larson wrote: = >> =* If you are the MAINTAINER of a piece of code (or more likely a = >> =port) and don't have commit privs, put "MAINTAINER update" in the = >> =synopsis, for the same reasons as before. = > I too am a bit worried. Are we saying that one of the ports = > committers doesn't expect to do that job unless certain keywords are = > in the PR? If so, that should be documented other than in e-mail = > here. = = Not really, see Kris Kennaway's reply. = = I will write this up for the Handbook once we've decided on the = wording though. Please, consider new PR-class(es) (port-update, port-maintainer) for this -- that's much more formal, easier to search for and more obvious for a person filling it the PR out. One person so far agreed and no one objected... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 5:44: 9 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 80E7437B422 for ; Thu, 21 Sep 2000 05:44:07 -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 e8LCi1Q30403 for ; Thu, 21 Sep 2000 08:44:01 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39CA0291.C291F9D1@thehousleys.net> Date: Thu, 21 Sep 2000 08:44:01 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-ports@freebsd.org Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r References: <200009211227.IAA42894@misha.privatelabs.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org mi@aldan.algebra.com wrote: > > Please, consider new PR-class(es) (port-update, port-maintainer) for > this -- that's much more formal, easier to search for and more obvious > for a person filling it the PR out. One person so far agreed and no one > objected... > Here is my message of support. Let me see if I have this straight. "port-update" is for changes/fixes/etc from everyone but the maintainer. "port-maintainer" is for changes/fixes/etc from the maintainer. Which is used for a new port? Jim -- If it happens once, it's a bug. If it happens twice, it's a feature. If it happens more than twice, it's windows. -- Luiz de Barros To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 7: 8:47 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 9B49A37B422; Thu, 21 Sep 2000 07:08:38 -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 RAA20472; Thu, 21 Sep 2000 17:08:22 +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 e8LE8NS61302; Thu, 21 Sep 2000 17:08:23 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39CA163F.3CFDB512@FreeBSD.org> Date: Thu, 21 Sep 2000 17:08:00 +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: nakai@FreeBSD.org Cc: ports@FreeBSD.org Subject: Update of sawfish port to the latest version [patch for approval] Content-Type: multipart/mixed; boundary="------------2EFB9336145016E9F68EA8D1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------2EFB9336145016E9F68EA8D1 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Dear Nakai, Please approve update (see attached patch). Thanks! -Maxim --------------2EFB9336145016E9F68EA8D1 Content-Type: application/x-gzip; name="sawfish,librep,repgtk-patch.gz" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="sawfish,librep,repgtk-patch.gz" H4sICPIUyjkCA3Nhd2Zpc2gsbGlicmVwLHJlcGd0ay1wYXRjaACsXftT20i2/hn+Cl2W1IQV si3Zxo+9VIUkDMNuAilMdqZq5xbbltpGg14jyQEm4X+/3a23/NA5LVIEsPR95zvdfdRvNZa9 WCiaFa6uFN+xuo49D2nQ/Uwe6MJ2qOLRx/q1fU3TNmH3bldU+efKUYyhog+mvd60f6IYvV5v X1VVZQ18v1JmNFAMnYON3nTYS8Dv3inayfFIUfm3d+/2lb/tK/vKl+ub26uzz+ene4mhfY1f +ff5zezy+up0r9fRjc5gX61f7O8rH85uzy+uby7PZ4xLvOW+8vlsdnt+cze7vOXXDr+XPt/N rr/efDj/+frm4vylgrybfX3/8fKG4zNfXvatjZnH0xd1XWtYzr38Yj378hug/CuhKxk41Kf9 SZGBuqLqPPO0zx+HytuEqyWZ1IlJ2Fn+daScKv0hmQ+NIR1OFsZ8qI8tc0yH+nwymJ8sSH/I 8rNG75fIE6qPeosT42RM59bJZDyaDAcno+F81B8ZZo+OtmRO8LDsfvl0ObstZ05+sZ45+Y29 z74nMkcfKfpkOuhPh8Za5hTocuYMp3pvapwUmWP0eHiJ7zy+3tEnaiq2F8XEcTTbW/jKm49d /jP1olO5ZtnhPhfMbjqk8jHy97XKx85kX61e0HuCwWW73O03b9KQffOG/X5x9fWX69kt+/3j 9QcYcGnN3cwPGJh5KXJifHwyZlkxPh4MRV6ADNA4pk8xtwHCh5RYju1RsIc5Ic1LAMH0Q0sL Qp8/HlxHhsbUVBgt6FokJt2YzNnDyOWkeBg9Wx97ecZjBCtElCKL9HkeWTI0vFokpxZJqJWD UoqH1It884HGEVYuoyHVYtulIVosZWG0eIO64fFrxcfof3O7EVlQVmvHNAxCyr6j9DfxofVa hKl1sxgFgYuKBQMHW8+DAwNfL5UCkrWdxLFJRKO63QLIrse+72y3xD7fmb63sJed++1mwhVP r/uwr0T3JKRdYjq+SRyO67iDfS25Wk+UY0dBl6xi3/GJ1fnD2YmbE/Phz5UfUwzQ3I18jlmg W1Sz6CJqNFsDw0yDzSYmlR1Ic2lrrN3gBmGw3R6avhuwhzvUSOQ2OVnDAg3PSWSbYNMZGmrc 9izbW0Zw+wUBKMHCPorB9jM00LjtiUYLaj2HA807JADbTrBAw65viWcdarzAAwX8AJ7nCRZo mNdFUMMJFmg4Mu+pCy/KHA41H8IfogQLNLyKbQdekBm6oZJK4Y21VIHbbZD1z2mTsRSzO9kW na+WTanNQE2mFoBnN0c1JNCOSBRRdw7ItRq2wcuV2xjwKWa3Iep9s0Pfa7JVwHYneEl8pymh KWa3X7ZnN1YVKWa3R/ybZvlmk1cl3G6DLrEdYlmiPPmofsJG9bqijobHRs8Qw/pdZOr69l/N geOu2BCyyeUMtDsng0fR2Xebq94Kcrd/f67oKmkoQKgGD5OhSNjoX4Hb7V0yxGl0r4A1mXNZ j1NbxEGzxRJyd6JTaGg2PscVJMjTtDUEI0GeglqUGhZiGGYSYCzQoMMNjg3YSIIsaYTENjvB /jsQoymuqUABJZkUobobIybDuC0gDmaw68//oGYcQQ2X8ECBoqbBwYHmS1UFEg8VYOMSuPUE DDQd+WEMNp2CoaZj7op4juEKFQ5U6Nmd+44mJlXgSlVSs5SYl33KJmYBMnUCQMIXq0XaPfEs h0/hQFTWOXihUjUqT5WW7aatYju6vHzafrajt5Cn7eRpO/m8TW5rQMIFvjYpo5zwZARtx5IL 84wJFsXkKTj7WP1IiQs1XaCbjYt5/cocKpoBFOFDexJn4yk8BSgjhupLGoJFSgSwRDbOx8Gh 5hE5hMqa8toJVKDKAQq5JL4HK6RgoOnygA9LaJbgA/RuNkLHgAGmxYSnFj1HMXVB5muEZgmP xiwgmFue5hEXFKDrlGaZkC7pE6jtypHNRlmdtTLjVQirPytogHFwpiNyO4GWZ8HQDLBIdSJG htQsFd/zJfOomD/CEuAS4L5HndAssYpgdUOKAxiM+VOezg4Aba9RgDJzEtGTAVgihwPNZ3Pm GDDQdDZ5iwEDTbMP1IEbz+FA88W0KhYPFMgmdTBgoGm+4g82nYKbTX9zu5WVByQeJLC2xC7B QQlhRcAC5ZUtHBxlvpuvmsuQkFKlNXRJHk6wWPSWYuHE0iVwPAUnU1oQl6Ph5Dxf491drFxB w8kBJy/WKTiZYgldioUUC9HPV7aujuGsPLlUlXhIQWhvaxMJJFVfq8ZTQDIBpcG970BzrgRv Nv/4+FjeSYWDw8wvaGzea6vQgQqUCTAJMSWDkSgTGpaT0sUIAGb3QlcSxVq2pgSHgsy6dmQC zaZQkNno2YvJk7ZgDyHQepWBEEHZh5oGrcDWsLvjoajEQKgGL9PlKACmwVB18QkO3f18JckA rYNWoSCzWczCoSCztZhFMxAiKPtQ06B2q4ZtiNnaiiECuzvsYhJq5XWDptjbgG8QSCZCGu3m sAZz2XoIBMRMvbPsMHQhu9CbsFvu7+TvDABodwrcfcqAoKe9DgaahjzxdTDQNOKp38JBCSE1 EvNpEQNoECwcmfZ6oNBSfxhOgSJ5jQXFpo81FJ7M/0LRHo2hUL7iAcWKN3iB2C1LzLJ0OA+M 1MceFMtrAiB2X2mE7Yas382Vt9WvKrwur0c05l0xNEm8ISjBwlPKZYl5HRRLwuCbsJvu19/b 5jsDl/FD9UiA+sX8ve36jQ3vbfeL97bX0LX3to2pMYadCpBaWj8WoE/WTwUYVE8FeNJ1jb+W 9mDH0WueDiBexB9wp8V37vXns8urW/b/nEE98kDsdz+HlL6ffez44ZKn6NPl+7uP51/Orz4y cZYg3egY08TojAm8dMvOdgVA+X1f2+MZ0JlUkGKdOj0tQU0Aem8rQunYC+V/kk0F1ttfL29/ uf56e3dxdf35/Kjilsr8cgjrwg0qtiz6jTrcmLjJfFL29pae79ZxzP+uuM6gEYNtibbqGQpr V9firTgXARRw245RMCZTvbftGIWULA5CIKWTEIambhrGfGDOF2TSN6z54uRkMqdj68S0Fgsj O0ahRC8fwkCJTufjRV83xvpoNDesRc9c9E7mZDgZEEIH23KoepDC2tW1HCodjpCeM6GzJBvT Ifs6Wc+hbWcp9EfT4bCUQ73jCcuk3nF/IAKcVz4sZKZv3mx7eVMU/sre8LpqCRM/bHg/tXqf v5AKUFvZiaJ4LRiDR9rvmsT7RiItsJ/mqwVWrcaW05YURasxBFqKcyR0kppGQiwhYhVZWGK1 kkhWdwKTaG7EILxlD+jSepAItioR4DnUe4kUyJRvmQbxPn4ONh7RsQ3Ja6VmVzIXtLxqwZNw SkiNnbVrxFuhPGMgsMhvGgAUTwQMybpqAFy97YvI48KO7qt90frFvOWr36gfsDRmvYOi4VtH l9q9k+mgV+kZ7OqLppaqfVGFdTz77KvaGxVX9fXu6KPbtiPKnHBtJ3khUB8ej1kjzb9zd2V7 maxHd+nyinxYwS5DEtzbZtS1+U1Ib1Sr9DWvrtNeZnMnVUV0Uk0SBA6Na93P6DkSk7pJrJq+ F4e+Y1K+HZV1ganHAm5fef/18tPHIoMOv3+6/nD26f3Z7PylW47Ww+9nNx9+edG0BevEzyPr 8Pv17Ob800taF27P0Wy0wgunbxyzrqrKfhhJF+rr7Pzu7Ovt9Yfrq59P9575eRr818uLrzfs xs0F80jTxIEXUUxiyh6iUyZ0c/7z5W8sfXzEnpSVJla4Nt3WtEc7vteys2y2lsfO3K76pHKn qMentbU059kjwfuPPCLZ3aTmOj044NnsREx0gwG+fFu2oDZjWFpZ3JSui4JlCbSWNI7yuzzB /irWisZvs3vvTN91WTgoB0U4FE6cX/37dO/Dly8/fzpjxXCgXVZCw/ZMZ8XGPvzyb7peuXiQ lMnF7b/uEnOnB4ffi08v2X0ewyVA8TFDsCtc+VM9KBXNeQqWg4N9dV8NQqoFJDbvpyz1rPQs 5fD7rzf/mt18eFF+f6uIPbnKwd87fzgHiuaH5Qsd22NCR8qPJOeeSLiMGPvi5vzLC5NQDjqd rog9lqIa5sv5zSeGCWxFY8aiH793fs+wPxgr+Uo/Lw94NRT4Uaylh8dMWeIqZ7BpWkTN2Pa9 0wOWmcojS4b/qLjEI0saHqyPHLP6uzpyXLu61jpsPX9vc/Ow9QA+fojhtpFjStaSJqA0+DP6 QzK0+pPhcEzmY2PIRoEDa9g76Q/mZk+3zHToWOLrJfa4vxhNxpPReD4YkUmPWKO+aQznk5Gh k7Fh9rZlkYgNlgrxUyNmJafqN9cyrA6ojCf7096E5cV6vq2zKsPKwWiql6Z6dDGqZN94FnIH kkOBViFlAdrxQ3u5N1sl43xlwob60/5wqqelpXHZMr4+4B1MB3oK5VrDEW/LxXempm5W+5Va ibesjI2pMZr2enka62prCUvVVKEmeg7DtOugsqcgyyJeU/90+D2ttF+y/P6JIfiUbXq7AL+w 9ucbDSP2iLyISd2f9jXF8x/8pR3au9EZitlOWhLaYF1gGFqtoHNX8/tZWngTmYLSBrOcpLLp w+/3rBa44/3Ml5+AAWvtClirKWCtNB48Fq0sJHhh9vXGgLVEuf6TeIqiK70+P56ThYA+GWUB y0pZ7R338ohNFpGSXhivWEUYJZNTzAafQpkOx9O+UQraGqXiZ2/aH097g3LcGiKSjCSSNIX/ e/t4Tz3lLWFVPu83KW89P1ayltFzoqPkyttkl8JpAjr4cHB0dJRaUPhE1Z8rm3UTfkrfNi3d 4nsx+aXk5Q6W0PTGQZprB8pb+hQw+WQdOmlXSk1GVpGJsy1YZLBWO2S1vB8+cwdUoLVyU9Jk M/O88Lowf5Qkm3394x8K31WvsPbHs0hoiRNFSWizzhcsJBe7QnLRFJKL7cG1IyQXtSEKny7X izqUB6Mq4jKr1iIztAPW/cyGOLy24vBub9I1sspbH+7pHT2p10CEfj+p2fpiqrs/yGo21rGa 3c6U6WnaH7i7S6uxu7sfh2/T349+8KZcVfaUHJVWDQKV/s5QvKpUtYu7L5e/fT77csf61KwB PHwr+m3sw1HSte2yvp1Lgoi53whN5m9yAjOvvOELycpU/OROHb5l/R7e67u8ub464nOjSrZ0 q2iL7HdtzstDOfxfYKwsd8XKsilWllKxsqzFytBg5bYeK708VuYr27FET6xW4kOdtWlFiOzC DcdJZOh9sQjSPz5JIoP/+/FD4eN8MWJeeQ+e/+glZfAf1h1VDg5F7/bjNV8wOVD+j8eIltJK d07/a3lR8lTzyuG/IpQ2wpoxJSe2FWNlxn3t6nrBrc24Fz3LTT2kjTPuJ9PBMIeLzDSOh7yw 2HgxObNXnEqcGhFHFWvDjYcaN3So+fAtDp9PD/6eeTTNO55HnWKaKHN316nFGhS8cOwgSE+j xJPKk1xNpGXIuioshZUpLzAJpRQ/aFH8zCeioJTAIc9aRNygdnoxhleeDW3iZU0mmbMxMTxl GY0NkFdose6jm7wxVC7z9kYkkp0bKcdEeyNtPKkFwKvYaeNPRJ2krmjlTWGljS9PrXx4Qj27 lXRLsDBaTygNkY50X2XS8+1apPvpw93n89ns7OJ8ljcB7hqOwnDUu7t4D4RGMNzCBuJCGG7p wHB2DMP9AczCBx+G84D+eUB7AdBeEN99uYVBwxUMFwGlo28wXAws4tXDVlyx/lXuwaeT+Foy i9+dpQ9SJx8GYol+aNEQSSKsNSIh8UzKX45nLVPMxo4di0YPsR8gbWUvPLa3tPDN1SuYccUY 4hXMPNmu/dcr5JBLY/IKVuzIfAUr/rdXSBFruE3KFx7am4r8lWe1N/Pohw9RQDYHtLLZFHsK ou6MxjEP301PIo6XPIgozu7nUKzcTsRU3WBwbPRrW5aaze8sJpSlraWEsrKzkLQy/9EtQTJ+ DlVlq1ZVpmpVX7FqVV+talVfp2pVX6dqVV+talVfpWpVX6VqVV+lalVfr2pVX6dqVV+valU3 zE7mvaCA//2yzVo1qFY8NhgWtZaUj60xHPEoCIIGIzj+0scIiIeEWiiK7bFnAseITIHnjcRY zK6prK3oj3Y0EnUb0b0fxuYqjjDCfFdIbAcoTh5Bab4n2E1jSLGm1Le0e2I+lF7NA0DNaig2 NCDAkakKHJlWcdQB4naNYFXgCFYFjmBV4Ai2ilsCs2YJTPL2ka4KHOmqwJGuChzpqsCRrgoc 6arwka4KHOmqwJGuChzpqsCRrgoc6VZxf93ffbjqXLw3+rqxjaE0PNbEs13NX8XZiThIvNlM WFm2r9FvrKWLQAJVPEQg9rWQ2BHM/zLabKz1yue0N5meUz/SktUTMRMuyWl2KjmnFFJp50iI 0WyrCshuAQaYXoWRH0YgwzkUYjaKfZcfz0VWTgw0X6c0x1fCgRRmjoQaTQ+CE6t3+uhYNxRV 10+S1dAmC7xDBksADUM/LB8VgCU0F0XS0wMUQAYEmAyJS2E2MyTA6MoT8/EwuyVwcy4n20v5 LlGWb6Cabo0BFbG9OA+bgX6s8z3c/UG6ibvJQshqmiDryDWi44fQBKUlBTYXwT11Akjup7hm gzarjOzFM8RmAQWYZXkd0rRuBhmvEZpz94E+uySAZG+ObPY7gYICvIA2m3XJA9VicWBPENJv NgXlyUZWc8YUNEjmVNAQ43xmpShX8Rid6MejAX8fd8DGd33Ig5TNrMA0WdMOqhMyIKBA+BxI 0lyCSqICB3jM8SGN0iYKBwd4/+iCvH50Qeayfata1vMF2N7Aac4W37GwXbx1SnN62HDa0xzf B43My+Bm02LWC1Gt1fAggWdN9OKB5gs0wLg4YFqjT3FIQHVcnQCWgAVoGdwcPcWZ2mBks79i MFPpeKAZzZ6H2Z9OggLzSaKtyOwGf8fSZIOssNywtCHjpFk/PJkAkyHhpJJ3jzTLJo6/xErW yVLSMY1iSeGUKiMrpygpFnUJuyOpWZDlpEUoykpnZDlpsQ1bUjnlSgr7nnRup1w54TbF3KqU A2JLF3LKlRQO/SUb7Epr53S4/Mrm66zOM0azxEEJpX/gHaeUk1BSbBi8CpBKGQclxI9/Quqk FJQM60X5qxgplJMkpKLyQLMVGyXOd+sjFVMKSia6r/4NCAwHJ+T42FJLKSgZ/udHNIefxIQU qxBRkkWrJrqZSN11tpS4WEaQlM64UsJiTjLZ7S8pX7Ug5QSf7pJUT6lSssW0VhuylHR9bqe9 CSk3in0cS+q7NA6fJZ3ZaAjnkouVxvUPcPbRxsV6I+Gz8N3SImVLPs6B0gogglYej8vRTBle 13w2HSopmpPlpC3KXwudS6uX+HIOJOcnSapnZElp3jeMpLUztrR4vqbT2oCcC9mqTguunHBt Gry9iRZuFNPl7U3IubE+F/gqVuSc4SmRaIu3m5B0w7Gt1n5Ubcg5wqcnAz+MNd4MEelwXTcj 586T1qqtKOiS8jENXWnxlIyTLrahSLGQYmubU1qxJcSlNOWkJKq9Eg8lKJmjsllJn+LyLllp Jlq0vm+uHV1Cvryrrg0ZLb1pH117E2g3+AYrTWx5x+uXuXjh+n6tlny0A7Kj6M10tPyGNfbW FtBOMDRr8e9Zn0ymCKpstHi+8x+vXKKiZdMsu7cj/gqXhPiaAZQL+SZCCQ5OKN9aKENCSdX+ UDGCgpMRb2LYXkyXoZjtwGpu4Es40KLi2GhAxoVsp5U0EyUqsQhSYaHEZNImlara34tCUFAy +Qt4SK0yT06wG7kklJbN2bLiMVku0e3KJj7KgYiG+NYsJyGlIn48G6tR7BgtWKFKyUrM19ao UrIR+UYlZVMqTjZmQwvbW2IlCxpWLqbV10RasSXEZSZ4q0wJ0dL+8hZcGWGxodySE865EsKl rc2tyDLS2PWkCk9CsLLTthVbQpwPE6Qe4ApXQjgOiRfZ+JZ3nS0h/uhqUUBNKemCixN+5G+9 o9u+nIUS468isJLZ8srEaxlq6VJrV7Au8J0kSNGUgpPhZ7sVL0hKM/GiFjV9NuiXmrHbaEDC BXaR76f//9bOZjltGIrC+zwFe0EzQ6Bpdtl18gBZdwi4rQcIHWNoH7+2kYT8h845Yp3z3SPb ipEl3SvpC2w4At8Il5gog7yltPraJgVTlxungrwlv7OmR/KmLk9GsQ1Y3ridSJJEC+bdRJPU AHIT6BFRD1atdV/J1OeYqCBvaScsm+pTinOH1xsg7W0ajqA0ovxdB/hzKrUWhDhl79aySdsA o+zsvar3hJGObVIwPUqGdK/2GwZZu4CLZ4PZoyhaq9sCE89tc5CbRif1sAERGwvbFP4lsiy7 AGLhZvNgJfBg26tenBwLb793cSlwK9objTg5EL6zgYjUAwb7ZrPVZdWGEUOh3RwsLoXCujlW XAqFdXOouBQJuyrKWWu1gUcAm2A+ltBCgev5fvIKBqD4f2i48kxo49fQmnFixPE2D+yr45H4 FYRjFUIbD9wZlXDy+O3pr+rTBGziB9J1UY350/P0eTkxTy8vlwPb0CBEdbHO0JWTA4/mOlWJ S4Gw4SiNEcdvSLCrE5febLH7hn+sfnPyqkPECkt6vS+w4RNIJWrNYb1SAkk0be4yWDWMtPPr YRLFmrmUWYkizVzarAKxVnUJ3p9NyVTaMERJ22vGroZJdkewPBTCkw1wmbsKRFr57F2JYs1s Bq8CkVbtLF4dJW17ZUuSaM3cFS5JYCVj0VO1C4qXJNGiuS9fkkTL5j5RPJEXG+CTxZNo0dyV b0mBVetDwmX7Ci4a3U6Tv0MMsSEuVT4FFq2vi3ppuGif9L5Je910twvfI4jYFFfSJwVWra9F fRJ5sQHD1QruF4ptlnAroosy4bfrje/i5hyP6md0XebnVZl9+bs6A/L1Ll9vsw2o/lW9rpoZ 81pez5Mslt+m868Ts1wupot5ZKKk2XtzrOcnt1nxuK+Gx5FL6gE/8s8zB/kNQ7PXTV4Ue/Rs QkQ/pgmPDLGK+AEqEWjwqCTfgNuzJYDs8nwBob27q4/jYXcqs1mGMx/FqfpO2czq03h2OObO IiWIcouL9/m6OHx/fyOIw+cBVx/z+uDSBzOov2hG/mifyQR2anr8SDC2ZWPXbej7apjHZuhe YbTuZ4Sejj4JoHOM/gxJrJ3gIFjg+m33M9ArpruxQsDsNk2BbLbXKtwlgUEg/cKUwDbvc4HL /iluruyAgPryQzzLEteyUQLpej9NskRQj1JASQSUx19KI2+Fm7/49j02GDs8Fw4f3RhhdGO4 IdvoO4jnVZTlEP2Y5uE/mx/iw+bcAAA= --------------2EFB9336145016E9F68EA8D1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 7: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 1894937B43C for ; Thu, 21 Sep 2000 07:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA68361; Thu, 21 Sep 2000 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DC52B37B422; Thu, 21 Sep 2000 07:04:48 -0700 (PDT) Message-Id: <20000921140448.DC52B37B422@hub.freebsd.org> Date: Thu, 21 Sep 2000 07:04:48 -0700 (PDT) From: merlingermany@t-online.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21450: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21450 >Category: ports >Synopsis: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 21 07:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sascha Valckenier Kips >Release: 4.1-STABLE >Organization: Privat >Environment: FreeBSD rq00130.ruv.de 4.1-STABLE FreeBSD 4.1-STABLE #0: Tue Aug 15 16:10:48 GMT 2000 ve0381@rq00130.ruv.de:/usr/obj/usr/src/sys/RQ00130 i386 >Description: cdrecord tool can't find my recorder TEAC CDR-55S on SCSI-ID 0:4:0. Log from dmesg: ahc0: port 0xf800-0xf8ff mem 0xfedf7000-0xfedf7fff irq 5 at device 20.0 on pci0 ahc0: aic7860 Single Channel A, SCSI Id=7, 3/255 SCBs Waiting 15 seconds for SCSI devices to settle cd0 at ahc0 bus 0 target 3 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 15) cd0: Attempt to query device size failed: NOT READY, Medium not present cd1 at ahc0 bus 0 target 4 lun 0 cd1: Removable CD-ROM SCSI-2 device cd1: 10.000MB/s transfers (10.000MHz, offset 15) cd1: Attempt to query device size failed: NOT READY, Medium not present da1 at ahc0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 20.000MB/s transfers (20.000MHz, offset 15), Tagged Queueing Enabled da1: 8748MB (17916240 512 byte sectors: 255H 63S/T 1115C) da0 at ahc0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 20.000MB/s transfers (20.000MHz, offset 15), Tagged Queueing Enabled da0: 8715MB (17850000 512 byte sectors: 255H 63S/T 1111C) (da2:ahc0:0:2:0): SCB 0xb - timed out while idle, SEQADDR == 0xb (da2:ahc0:0:2:0): Queuing a BDR SCB (da2:ahc0:0:2:0): Bus Device Reset Message Sent (da2:ahc0:0:2:0): no longer in timeout, status = 34b ahc0: Bus Device Reset on A:2. 1 SCBs aborted da2 at ahc0 bus 0 target 2 lun 0 da2: Removable Direct Access SCSI-2 device da2: 20.000MB/s transfers (20.000MHz, offset 15) da2: 1911MB (3915600 512 byte sectors: 255H 63S/T 243C) Log from "cdrecord -scanbus": Cdrecord 1.9 (i386-unknown-freebsd4.1) Copyright (C) 1995-2000 Jörg Schilling Using libscg version 'schily-0.1' scsibus0: 0,0,0 0) 'IBM ' 'DDRS-39130D ' 'DC1B' Disk 0,1,0 1) 'IBM ' 'DNES-309170W ' 'SA50' Disk 0,2,0 2) 'iomega ' 'jaz 2GB ' 'E.17' Removable Disk 0,3,0 3) 'PLEXTOR ' 'CD-ROM PX-12TS ' '1.01' Removable CD-ROM 0,4,0 4) * 0,5,0 5) * 0,6,0 6) * 0,7,0 7) * How can I correct this problem. >How-To-Repeat: It's repeated every Time. >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 Sep 21 7:11:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gifw.genroco.com (genroco.com [205.254.195.202]) by hub.freebsd.org (Postfix) with ESMTP id 08A6837B43F for ; Thu, 21 Sep 2000 07:11:09 -0700 (PDT) Received: from gi2.genroco.com (gi2.genroco.com [192.133.120.3]) by gifw.genroco.com (8.9.3/8.9.3) with ESMTP id JAA16860; Thu, 21 Sep 2000 09:10:40 -0500 Received: from scot.genroco.com (scot.genroco.com [192.133.120.125]) by gi2.genroco.com (8.9.3/8.9.3) with SMTP id JAA00498; Thu, 21 Sep 2000 09:10:39 -0500 Message-ID: <00e901c023d5$b8f2cce0$7d7885c0@genroco.com> From: "Scot W. Hetzel" To: "James Housley" Cc: , References: <200009211227.IAA42894@misha.privatelabs.com> <39CA0291.C291F9D1@thehousleys.net> Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r Date: Thu, 21 Sep 2000 09:10:38 -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.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: "James Housley" > mi@aldan.algebra.com wrote: > > Please, consider new PR-class(es) (port-update, port-maintainer) for > > this -- that's much more formal, easier to search for and more obvious > > for a person filling it the PR out. One person so far agreed and no one > > objected... > > Here is my message of support. Let me see if I have this straight. > > "port-update" is for changes/fixes/etc from everyone but the maintainer. > > "port-maintainer" is for changes/fixes/etc from the maintainer. > > Which is used for a new port? > How about adding another PR class for new ports (port-new). Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 7:13:44 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 430D537B422 for ; Thu, 21 Sep 2000 07:13:42 -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 e8LEDeQ30737; Thu, 21 Sep 2000 10:13:40 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39CA1794.D9D9F7BD@thehousleys.net> Date: Thu, 21 Sep 2000 10:13:40 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Scot W. Hetzel" Cc: freebsd-ports@FreeBSD.ORG, mi@aldan.algebra.com Subject: Re: erlang port -- a poster child (Re: I'll be rolling a 4.1.1 r References: <200009211227.IAA42894@misha.privatelabs.com> <39CA0291.C291F9D1@thehousleys.net> <00e901c023d5$b8f2cce0$7d7885c0@genroco.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Scot W. Hetzel" wrote: > > > > > Here is my message of support. Let me see if I have this straight. > > > > "port-update" is for changes/fixes/etc from everyone but the maintainer. > > > > "port-maintainer" is for changes/fixes/etc from the maintainer. > > > > Which is used for a new port? > > > How about adding another PR class for new ports (port-new). > That would make it easier. I just found kde-foo and want to add it. I check and it is not in the ports system. Checking the PR database would be easier to only check the "port-new" class. Jim -- 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 Thu Sep 21 7:18: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 C256037B423; Thu, 21 Sep 2000 07:18:43 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA70884; Thu, 21 Sep 2000 07:18:43 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 21 Sep 2000 07:18:43 -0700 (PDT) From: Message-Id: <200009211418.HAA70884@freefall.freebsd.org> To: jim@thehousleys.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21434: MAINTAINER update: devel/sparc-rtems-gdb, forgot option Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER update: devel/sparc-rtems-gdb, forgot option State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Sep 21 07:18:30 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21434 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 7: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 1233937B422 for ; Thu, 21 Sep 2000 07:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA71178; Thu, 21 Sep 2000 07:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 21 Sep 2000 07:20:02 -0700 (PDT) Message-Id: <200009211420.HAA71178@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Chris D. Faulhaber" Subject: Re: ports/21450: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 Reply-To: "Chris D. Faulhaber" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21450; it has been noted by GNATS. From: "Chris D. Faulhaber" To: merlingermany@t-online.de Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/21450: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 Date: Thu, 21 Sep 2000 10:14:45 -0400 (EDT) On Thu, 21 Sep 2000 merlingermany@t-online.de wrote: > >Synopsis: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 > > >Description: > cdrecord tool can't find my recorder TEAC CDR-55S on SCSI-ID 0:4:0. > Do you have enough /dev/pass* devices made? From your dmesg output, you need at least pass0 - pass4 . Try 'cd /dev && ./MAKEDEV pass5' to make the 5 devices. ----- 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 Sep 21 8:36:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from got.wedgie.org (got.wedgie.org [216.181.169.146]) by hub.freebsd.org (Postfix) with ESMTP id 826E837B43F for ; Thu, 21 Sep 2000 08:36:11 -0700 (PDT) Received: by got.wedgie.org (Postfix, from userid 1012) id 08F70D905; Thu, 21 Sep 2000 11:36:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by got.wedgie.org (Postfix) with ESMTP id F1A679B19; Thu, 21 Sep 2000 11:36:02 -0400 (EDT) Date: Thu, 21 Sep 2000 11:36:02 -0400 (EDT) From: Keith Jones To: James Housley Cc: ports@FreeBSD.ORG Subject: Re: Package Vulnerability scanner (CVS commit: pkgsrc (fwd)) In-Reply-To: <39C94A46.6E954068@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 I can help take a look at it too. Do you want to work together? Keith. On Wed, 20 Sep 2000, James Housley wrote: > Kris Kennaway wrote: > > > > Anyone care to adapt this for FreeBSD? I don't have time right now. > > > Unless I hear someone has started I will take a crack at this. > > Jim > -- > Unix is very user-friendly. It's just picky who its friends are. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 9:15:28 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 87F5F37B423 for ; Thu, 21 Sep 2000 09:15:26 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 47B5E1A75; Thu, 21 Sep 2000 11:11:05 -0500 (EST) Date: Thu, 21 Sep 2000 11:11:05 -0500 From: Will Andrews To: Akinori -Aki- MUSHA Cc: jkh@winston.osd.bsdi.com, ports@FreeBSD.ORG Subject: Re: How to build packages on the fly... Message-ID: <20000921111105.A706@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Akinori -Aki- MUSHA , jkh@winston.osd.bsdi.com, ports@FreeBSD.ORG References: <20189.969504208@winston.osd.bsdi.com> <86lmwmqol2.wl@archon.local.idaemons.org> <86k8c6qlj4.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: <86k8c6qlj4.wl@archon.local.idaemons.org>; from knu@idaemons.org on Thu, Sep 21, 2000 at 03:58:07PM +0900 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 21, 2000 at 03:58:07PM +0900, Akinori -Aki- MUSHA wrote: > > Any comments on importing this as a port? > > Give this a try: > > http://people.FreeBSD.org/~knu/ports/misc/ This should be imported in ports/Tools/scripts, not as a separate port. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 9: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 BDA0537B43F for ; Thu, 21 Sep 2000 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04697; Thu, 21 Sep 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-170-as.acessonet.com.br (200-227-201-170-as.acessonet.com.br [200.227.201.170]) by hub.freebsd.org (Postfix) with ESMTP id 3D9A137B423 for ; Thu, 21 Sep 2000 09:24:20 -0700 (PDT) Received: (qmail 479 invoked by uid 1001); 21 Sep 2000 16:00:07 -0000 Message-Id: <20000921160007.478.qmail@Fedaykin.here> Date: 21 Sep 2000 16:00:07 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21453: Port update MAINTAINER email change net/kicq net/icqlib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21453 >Category: ports >Synopsis: Port update MAINTAINER email change net/kicq net/icqlib >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 Sep 21 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Here.here 4.0-STABLE FreeBSD 4.0-STABLE #2: Fri Jun 9 13:22:10 EST 2000 lioux@Here.here:/usr/src/sys/compile/LIOUX i386 >Description: I would like to update my email address from lioux at uol.com.br to lioux at linf.unb.br. >How-To-Repeat: n/a >Fix: diff -ruN /usr/ports/net/kicq/Makefile kicq/Makefile --- /usr/ports/net/kicq/Makefile Tue Sep 19 21:32:44 2000 +++ kicq/Makefile Thu Sep 21 12:56:43 2000 @@ -11,7 +11,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= lioux@uol.com.br +MAINTAINER= lioux@linf.unb.br LIB_DEPENDS= icq.1:${PORTSDIR}/net/icqlib \ kdecore.3:${PORTSDIR}/x11/kdelibs11 diff -ruN /usr/ports/net/icqlib/Makefile icqlib/Makefile --- /usr/ports/net/icqlib/Makefile Tue Sep 19 21:32:43 2000 +++ icqlib/Makefile Thu Sep 21 12:57:07 2000 @@ -11,7 +11,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= lioux@uol.com.br +MAINTAINER= lioux@linf.unb.br INSTALLS_SHLIB= yes USE_LIBTOOL= 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 Thu Sep 21 9: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 E098A37B440 for ; Thu, 21 Sep 2000 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04712; Thu, 21 Sep 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-170-as.acessonet.com.br (200-227-201-170-as.acessonet.com.br [200.227.201.170]) by hub.freebsd.org (Postfix) with ESMTP id C9AF737B422 for ; Thu, 21 Sep 2000 09:24:22 -0700 (PDT) Received: (qmail 1606 invoked by uid 1001); 21 Sep 2000 16:19:41 -0000 Message-Id: <20000921161941.1605.qmail@Fedaykin.here> Date: 21 Sep 2000 16:19:41 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21454: Port updates for JX family ports (MAINTAINER update) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21454 >Category: ports >Synopsis: Port updates for JX family ports (MAINTAINER 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: Thu Sep 21 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Here.here 4.0-STABLE FreeBSD 4.0-STABLE #2: Fri Jun 9 13:22:10 EST 2000 lioux@Here.here:/usr/src/sys/compile/LIOUX i386 >Description: Some simple changes. Mostly implementing Mr. Sada Kenji patches. 1. nonexistent -> ${NONEXISTENT} 2. Allow you to define WRKDIRPREFIX. -JXPORT_WRKSRC= ${JXPORT}/work/JX-1.5.3 +JXPORT_WRKSRC!= cd ${JXPORT} && ${MAKE} -V WRKSRC My most sincere apologies for the uuencoded file, yet the patches were over 20Kb. + No files were added/removed. + No directories were added/removed. + The patches only touch the port Makefile. deskutils/notebook -> notebook.patch devel/codecrusader -> codecrusader.patch devel/codemedic -> codecrusader.patch mail/arrow -> arrow.patch math/glove -> glove.patch math/thx_1138 -> thx_1138.patch x11-fm/systemg -> systemg.patch x11-toolkits/libj2dplot -> libj2dplot.patch x11-toolkits/libjparser -> libjparser.patch x11-toolkits/libjree -> libjtree.patch x11-toolkits/libjtoolbar -> libjtoolbar.patch >How-To-Repeat: n/a >Fix: begin 600 jx-patches.tar.gz M'XL(`-,RRCD``^V;;6_:2!#'\Q8^Q5ZOZAL"WO43Q+J<0HG;(R4D@K3EI$J6 MP29Q<#"RH:6J^.ZWZP>,;8AS:2`MF;^48*]G;;,[[&]FO=9=U_E6F>C3PTHIDWU5V$#FS+ MF;..[4X^YTR^9TYAG]RXO.U4(9...A=3US3?2E6$K5>/VC?=%6 M>\WNE=JFINLKH4+ACGX%]A=;%%&K^38^T>V\3#1)$RHD-@FJWGJF[@YNRI@> MEBN8'F8'NZ?-SH*;$U*>.HX]LFCKVE8_M`TKLB-]W?5KBGDU0^.HJFN:](:( M5O5OZ+YZU)(UY>?.AVZG<5R@34(W?=NS7IE4I(I0+!?1QZZJ]>@W/BY\-[U@ M]_UY_8,:[K--K=YY3UNBT3A^]?I'H[%XA1J]GK_=Z]&=+WXO2^20\*@D'D6] M_">B7C5&MW-DT)YSK?YL:CECQ/S%0V/3-*C/#!T7]6>6;5CCZR)J7%S^JYWU MZ"W2JUGC@3TSS&7INV9+I<5+#RX52Y70!OW5]XP*\^3*Q#4K=Z._Z=%-UV=F MZ)L[\MQ!$07]Z;?-AI:\G1?+@946->32#;AOCCN*&[.4L/OCN#`P4.PR;][0 M'=::"U3^A`(;=@.:W\*-BW;WJMZ^8@X7N(I&'96.;>.IAR(72!31WHWW:4>6 M[VD-^HNK6$-Z_8ON)[73;5ZT%^CO8R1@IB*JMUK:%>UCE;;$D)Z7UA_WF)7_)?(#06(((@8N#_+K26_X;YU;2Y5=>( MXX"UI>EPX)X3%,Z=,"RH(4P4L:9(.`X+UE=)10OPIM,F?OGC0H)+ MM=.2UH<(/OQK?H@GR8=$#N%OSO6[B!ZR2. M:I<=]5VSQ_HGV%IPWHWNFEQT*B[X2NWZN;K8$_YO.4A:&U]`-+$_8@/NG6E8 M@RW.`>3R'\?YOR`(+/^7<17XOPOE\-]WC23\DT6;R9^T2\\&R$N&1]A/V2>9 M+V!%(,D9`3&8$>#WBOJ/GQ'805K_MMF]:&]F.,O<*7-CZE`BY%WR*D#>=' M*(]%^Y-1\[<('1XX=0!DWV==V\Y7\YGG_S&_PG^QZL__$YC_WXDVS/]/;SC? M,V+T)W>S\_^9&GZB?S:S$<$(8T7$"EZ9_T_99F@OBB^`]KPQL9TII;VL27FT M#VS#BA/=]4S7YWTMC_>![0XG\L5:,)$OPT3^3](XZ/-5&@>="3P&/9'BH65[ M04`N_P5YR7\1$\;_J@#Y_TZTEO\;X!,'`VO*TA%!WCD2X0%1L$0CA#@\6%]:T41H>3LC3QNVCX,G`0Q/T=88AUC/0VQ.^_V00M"D*BL,@B`1`_U_QL/%L M_"=548KY3UC^3S\A_]^)'L;_P$.2_$^5Y?(_99_F?TWAQ23_TQ62_!=IP"`E M^<\'_,?[P?\GQ[@48%S8#<8SF2I@_%?$^,KJD:T!('?]MQBO_Q)9+D@$FA/" M^+\+/6S\#STD"8!T82X!TA422\%XA:T&$Y((R-1(Y8!'"B\G5H+Y.6!UWW+` M[3S<31#B\=.],@F6;AU%CWVWRY7,XB,`R\/`LGXI%SS=?=F*!HUM/@+.R_]D M$L__2C1\1X07JS+P?Q=Z(/^IAZ3@OUJ23_Y5ZS783V5^2?-4WH<57MC?U=_T M#E?G7.7=)&LI#`!1'_#8>3]8.7:F9M]Q1L\X_O.8K?F)QG_>?_]7XF'^;R?: ML/[7&]$?B^UQD7O$@W^F)+L">&/E]")@4<%R//)GS5,C/U'(2U@#O(\O]\*: MH*=:$P0OWX">4-YW.OS=76]U!7#^^I_X^9\D^?F?4"7`_UUH8_XWO.-"WXC9 MGRY8E_>MJ9?"OB@E7OG-6&>H'UD#]7\WZLL!]46@/E`?]"MJ>C/7"!%JSYO_ MXYC_LL3X3R18_[L3;7[_)_*,&/^9DK5O`66LTO@7$B\"9Release-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 Sep 21 9:33:30 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 DF33C37B422; Thu, 21 Sep 2000 09:33:25 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id B4FDB1A75; Thu, 21 Sep 2000 11:29:03 -0500 (EST) Date: Thu, 21 Sep 2000 11:29:03 -0500 From: Will Andrews To: Maxim Sobolev Cc: ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: cvs commit: ports/devel/portlint/src portlint.pl Message-ID: <20000921112903.B706@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maxim Sobolev , ports@FreeBSD.org, mharo@FreeBSD.org References: <200009211622.JAA02447@freefall.freebsd.org> <39CA3677.2F1DD80D@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: <39CA3677.2F1DD80D@FreeBSD.org>; from sobomax@FreeBSD.org on Thu, Sep 21, 2000 at 07:25:28PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 21, 2000 at 07:25:28PM +0300, Maxim Sobolev wrote: > Can you as well add my INSTALLS_SHLIB-related changes, which I introduced a > while ago? Sure, I guess. Basically you want portlint to check whether someone's using the old-stype @unexec /sbin/ldconfig ... and @exec /sbin/ldconfig... and assign fatal status to that, right? -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 9:38: 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 9A30637B423; Thu, 21 Sep 2000 09:38:01 -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 TAA22832; Thu, 21 Sep 2000 19:37:55 +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 e8LGbsS61995; Thu, 21 Sep 2000 19:37:54 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39CA394A.F097C75E@FreeBSD.org> Date: Thu, 21 Sep 2000 19:37:30 +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: Will Andrews Cc: ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: cvs commit: ports/devel/portlint/src portlint.pl References: <200009211622.JAA02447@freefall.freebsd.org> <39CA3677.2F1DD80D@FreeBSD.org> <20000921112903.B706@puck.firepipe.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote: > On Thu, Sep 21, 2000 at 07:25:28PM +0300, Maxim Sobolev wrote: > > Can you as well add my INSTALLS_SHLIB-related changes, which I introduced a > > while ago? > > Sure, I guess. Basically you want portlint to check whether someone's > using the old-stype @unexec /sbin/ldconfig ... and @exec > /sbin/ldconfig... and assign fatal status to that, right? Yuip (I sent patches to michael and -ports a while ago). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 9:55:59 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 9D86637B424 for ; Thu, 21 Sep 2000 09:55:51 -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 BAA06002; Fri, 22 Sep 2000 01:54:47 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8LGs3W83793; Fri, 22 Sep 2000 01:54:03 +0900 (JST) Date: Fri, 22 Sep 2000 01:54:01 +0900 Message-ID: <864s39bs9i.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: will@physics.purdue.edu, knu@idaemons.org, jkh@winston.osd.bsdi.com, ports@FreeBSD.ORG Subject: Re: How to build packages on the fly... In-Reply-To: In your message of "Thu, 21 Sep 2000 11:11:05 -0500" <20000921111105.A706@puck.firepipe.net> References: <20189.969504208@winston.osd.bsdi.com> <86lmwmqol2.wl@archon.local.idaemons.org> <86k8c6qlj4.wl@archon.local.idaemons.org> <20000921111105.A706@puck.firepipe.net> 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 Thu, 21 Sep 2000 11:11:05 -0500, Will Andrews wrote: > > On Thu, Sep 21, 2000 at 03:58:07PM +0900, Akinori -Aki- MUSHA wrote: > > > Any comments on importing this as a port? > > > > Give this a try: > > > > http://people.FreeBSD.org/~knu/ports/misc/ > > This should be imported in ports/Tools/scripts, not as a separate port. I don't think so. It's for normal users rather than for ports workers. -- / /__ __ / ) ) ) ) / 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 Thu Sep 21 10: 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 81C1937B43F for ; Thu, 21 Sep 2000 10:00:09 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA14232 for ports@freebsd.org; Thu, 21 Sep 2000 10:00:09 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Date: Thu, 21 Sep 2000 10:00:09 -0700 (PDT) From: Message-Id: <200009211700.KAA14232@freefall.freebsd.org> To: ports@freebsd.org Subject: Unfetchable distfiles reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://people.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. In addition, the list of all ports with any unfetchable distfile is http://people.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 10:20: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 8BC3137B42C for ; Thu, 21 Sep 2000 10:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA19946; Thu, 21 Sep 2000 10:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nbf-27.umd.edu (nbf-27.umd.edu [128.8.38.27]) by hub.freebsd.org (Postfix) with ESMTP id 48A1337B422 for ; Thu, 21 Sep 2000 10:18:00 -0700 (PDT) Received: (from root@localhost) by nbf-27.umd.edu (8.11.0/8.11.0) id e8LHHwI00661; Thu, 21 Sep 2000 13:17:58 -0400 (EDT) (envelope-from bfoz) Message-Id: <200009211717.e8LHHwI00661@nbf-27.umd.edu> Date: Thu, 21 Sep 2000 13:17:58 -0400 (EDT) From: Brandon Fosdick Reply-To: bfoz@nbf-27.umd.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21455: update graphics/giram Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21455 >Category: ports >Synopsis: update graphics/giram to 0.1.7 >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 Sep 21 10:20:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brandon Fosdick >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD nbf-27.umd.edu 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 14:48:26 EDT 2000 bfoz@nbf-27.umd.edu:/usr/obj/usr/src/sys/TUNGSTEN i386 >Description: Update port to newest version. Fixes unfetchable dist problem. >How-To-Repeat: >Fix: *** Makefile Thu Sep 21 12:51:28 2000 --- Makefile.orig Thu Sep 21 13:11:35 2000 *************** PORTNAME= giram *** 9 **** ! PORTVERSION= 0.1.7 --- 9 ---- ! PORTVERSION= 0.1.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 Thu Sep 21 10:39: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 505B137B42C; Thu, 21 Sep 2000 10:39:12 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23787; Thu, 21 Sep 2000 10:39:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 21 Sep 2000 10:39:12 -0700 (PDT) From: Message-Id: <200009211739.KAA23787@freefall.freebsd.org> To: bfoz@nbf-27.umd.edu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21455: update graphics/giram to 0.1.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update graphics/giram to 0.1.7 State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Thu Sep 21 10:37:31 PDT 2000 State-Changed-Why: As it stands, this PR is missing a whole bucketload of information for a port update. You cannot simply just bump the PORTVERSION. At a minimum, files/md5 will also need to be updated, and you may need to make modifications to the patches and PLIST for any updates that have occurred. Please submit a unified diff to fully update the port, and it will stand a much better chance of being committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=21455 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 10: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 7C04137B43C for ; Thu, 21 Sep 2000 10:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23976; Thu, 21 Sep 2000 10:40: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 4F8D937B506 for ; Thu, 21 Sep 2000 10:33:38 -0700 (PDT) Received: (qmail 3102 invoked by uid 1001); 21 Sep 2000 17:33:33 -0000 Message-Id: <20000921173333.3101.qmail@ringwraith.office1> Date: 21 Sep 2000 17:33:33 -0000 From: "Peter Pentchev" Reply-To: "Peter Pentchev" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21456: 3 port updates (appr.by: maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21456 >Category: ports >Synopsis: 3 port updates, assume maintainership? (appr-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 Sep 21 10:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: "Peter Pentchev" >Release: FreeBSD 4.1-STABLE i386 >Organization: Orbitel JSCo. >Environment: current ports tree >Description: The devel/makedepend, textproc/texi2html and www/cgihtml ports are all maintained by Ian Vaudrey , and all appear on Bill Fenner's unfetchable distfiles list. I have submitted upgrade patches to the maintainer sometime ago, he replied with the following: -------- forwarded message From: "Ian Vaudrey" To: "Peter Pentchev" Subject: Re: cgihtml FreeBSD port upgrade to 1.69 Date: Tue, 12 Sep 2000 06:56:02 +0100 Peter, Many thanks for your patches to the cgihtml, makedepend and texi2html ports. Unfortunately I have not had a FreeBSD system available to me for some time and it doesn't look as if that will change in the near future, so could you submit your patches directly to ports@freebsd.org? If you would like to take over as maintainer for any of these ports, then FWIW you would have my blessing! Thanks again, - Ian --------- end forwarded message >How-To-Repeat: look at Bill Fenner's unfetchable distfiles' list ;) >Fix: Here are the patches needed to the three ports (no newlines between the patches so they can be applied cleanly at once, without the need to manually divide them). Files added: devel/texi2html/patches/patch-ab - install docs in share/doc/texi2html Files removed: devel/texi2html/patches/patch-aa - no longer needed with new ver Files changed: devel/makedepend/Makefile - distsite, version devel/makedepend/files/md5 - regen textproc/texi2html/Makefile - distsite, version textproc/texi2html/files/md5 - regen textproc/texi2html/pkg/PLIST - add texi2html.info www/cgihtml/Makefile - distfile only, same version diff -urN ports/devel/makedepend/Makefile myports/devel/makedepend/Makefile --- ports/devel/makedepend/Makefile Thu Sep 21 09:34:21 2000 +++ myports/devel/makedepend/Makefile Thu Sep 21 20:21:22 2000 @@ -6,12 +6,12 @@ # PORTNAME= makedepend -PORTVERSION= 1995.07.05 +PORTVERSION= 2000.09.07 CATEGORIES= devel MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ -DISTNAME= cyrus-imapd-v1.5.14 +DISTNAME= cyrus-imapd-2.0.7 -MAINTAINER= i.vaudrey@bigfoot.com +MAINTAINER= roam@orbitel.bg WRKSRC= ${WRKDIR}/${DISTNAME}/makedepend GNU_CONFIGURE= YES @@ -23,3 +23,4 @@ ${INSTALL_MAN} ${WRKSRC}/mkdepend.man ${PREFIX}/man/man1/makedepend.1 .include +# DO NOT DELETE diff -urN ports/devel/makedepend/files/md5 myports/devel/makedepend/files/md5 --- ports/devel/makedepend/files/md5 Thu Sep 21 09:34:21 2000 +++ myports/devel/makedepend/files/md5 Thu Sep 21 20:21:02 2000 @@ -1 +1 @@ -MD5 (cyrus-imapd-v1.5.14.tar.gz) = e90555be60ec3a647f1661e10cc16458 +MD5 (cyrus-imapd-2.0.7.tar.gz) = a80870882128cd1ed99c203846f164a1 diff -urN ports/textproc/texi2html/Makefile myports/textproc/texi2html/Makefile --- ports/textproc/texi2html/Makefile Sat Apr 15 13:03:23 2000 +++ myports/textproc/texi2html/Makefile Thu Sep 21 20:25:36 2000 @@ -6,27 +6,16 @@ # PORTNAME= texi2html -PORTVERSION= 1.52 +PORTVERSION= 1.64 CATEGORIES= textproc -MASTER_SITES= http://wwwcn.cern.ch/dci/texi2html/ -DISTNAME= ${PORTNAME} -EXTRACT_SUFX= .shar.Z +MASTER_SITES= http://www.mathematik.uni-kl.de/~obachman/Texi2html/Distrib/ -MAINTAINER= i.vaudrey@bigfoot.com +MAINTAINER= roam@orbitel.bg -EXTRACT_CMD= uncompress -EXTRACT_BEFORE_ARGS= -c -EXTRACT_AFTER_ARGS= | sh -NO_WRKSUBDIR= yes -NO_BUILD= yes +USE_AUTOMAKE= yes +USE_AUTOCONF= yes +GNU_CONFIGURE= yes MAN1= texi2html.1 - -post-extract: - @cd ${WRKSRC}; split -l 1940 texi2html texi2html. - -do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/texi2html.aa ${PREFIX}/bin/texi2html - ${INSTALL_MAN} ${WRKDIR}/texi2html.ab ${PREFIX}/man/man1/${MAN1} .include diff -urN ports/textproc/texi2html/files/md5 myports/textproc/texi2html/files/md5 --- ports/textproc/texi2html/files/md5 Mon Jan 19 15:18:54 1998 +++ myports/textproc/texi2html/files/md5 Thu Sep 21 20:24:43 2000 @@ -1 +1 @@ -MD5 (texi2html.shar.Z) = a0292ee56320bbbd79afc74555bd69ee +MD5 (texi2html-1.64.tar.gz) = f0fa30e58ed930431c43a07d907593f5 diff -urN ports/textproc/texi2html/patches/patch-aa myports/textproc/texi2html/patches/patch-aa --- ports/textproc/texi2html/patches/patch-aa Mon Jan 19 15:18:55 1998 +++ myports/textproc/texi2html/patches/patch-aa Thu Jan 1 02:00:00 1970 @@ -1,33 +0,0 @@ ---- texi2html.aa.orig Mon Jan 5 21:10:38 1998 -+++ texi2html.aa Mon Jan 5 21:12:14 1998 -@@ -1,6 +1,4 @@ --#!/usr/local/bin/perl --'di '; --'ig 00 '; -+#!/usr/bin/perl - #+############################################################################## - # # - # File: texi2html # -@@ -11,8 +9,6 @@ - - # @(#)texi2html 1.52 01/05/98 Written (mainly) by Lionel Cons, Lionel.Cons@cern.ch - --# The man page for this program is included at the end of this file and can be --# viewed using the command 'nroff -man texi2html'. - # Please read the copyright at the end of the man page. - - #+++############################################################################ -@@ -1928,13 +1924,3 @@ - $key2alpha{$a} cmp $key2alpha{$b}; - } - --############################################################################## -- -- # These next few lines are legal in both Perl and nroff. -- --.00 ; # finish .ig -- --'di \" finish diversion--previous line must be blank --.nr nl 0-1 \" fake up transition to first page again --.nr % 0 \" start at page 1 --'; __END__ ############# From here on it's a standard manual page ############ diff -urN ports/textproc/texi2html/patches/patch-ab myports/textproc/texi2html/patches/patch-ab --- ports/textproc/texi2html/patches/patch-ab Thu Jan 1 02:00:00 1970 +++ myports/textproc/texi2html/patches/patch-ab Thu Sep 21 20:24:43 2000 @@ -0,0 +1,11 @@ +--- Makefile.am.orig Tue Jul 11 13:04:34 2000 ++++ Makefile.am Thu Sep 7 21:52:29 2000 +@@ -8,7 +8,7 @@ + MySimple.pm MySimple.pod version.texi + info_TEXINFOS = texi2html.texi + +-htmldir = $(prefix)/html ++htmldir = $(prefix)/share/doc/texi2html + html_DATA = texi2html.html + + TEXI2HTML = texi2html diff -urN ports/textproc/texi2html/pkg/PLIST myports/textproc/texi2html/pkg/PLIST --- ports/textproc/texi2html/pkg/PLIST Wed Aug 19 23:48:44 1998 +++ myports/textproc/texi2html/pkg/PLIST Thu Sep 21 20:24:43 2000 @@ -1 +1,6 @@ bin/texi2html +@unexec install-info --delete %D/info/texi2html.info %D/info/dir +info/texi2html.info +@exec install-info %D/info/texi2html.info %D/info/dir +share/doc/texi2html/texi2html.html +@dirrm share/doc/texi2html diff -urN ports/www/cgihtml/Makefile myports/www/cgihtml/Makefile --- ports/www/cgihtml/Makefile Sat Jun 17 00:52:05 2000 +++ myports/www/cgihtml/Makefile Thu Sep 21 20:27:44 2000 @@ -8,9 +8,9 @@ PORTNAME= cgihtml PORTVERSION= 1.69 CATEGORIES= devel www -MASTER_SITES= ftp://ftp.eekim.com/pub/users/eekim/cgihtml/ +MASTER_SITES= ftp://hcs.harvard.edu/pub/web/tools/cgihtml/ -MAINTAINER= i.vaudrey@bigfoot.com +MAINTAINER= roam@orbitel.bg INSTALLS_SHLIB= 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 Thu Sep 21 10:50: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 F099637B43F for ; Thu, 21 Sep 2000 10:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25671; Thu, 21 Sep 2000 10:50:00 -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 5A8ED37B423 for ; Thu, 21 Sep 2000 10:40:24 -0700 (PDT) Received: (qmail 3271 invoked by uid 1001); 21 Sep 2000 17:40:20 -0000 Message-Id: <20000921174020.3270.qmail@ringwraith.office1> Date: 21 Sep 2000 17:40:20 -0000 From: "Peter Pentchev" Reply-To: "Peter Pentchev" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21457: port upgrade/unbreak: mail/rlytest; no response from MAINTAINER Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21457 >Category: ports >Synopsis: port upgrade/unbreak: mail/rlytest; no response 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: Thu Sep 21 10:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: "Peter Pentchev" >Release: FreeBSD 4.1-STABLE i386 >Organization: Orbitel JSCo. >Environment: current ports tree >Description: mail/rlytest appears on Bill Fenner's unfetchable distfiles' list. Some time ago - Sep 08, to be precise - I sent an upgrade/unbreak patch to the port maintainer - paul@it.ca; so far, I have received no reply, and today, mail/rlytest appears on Bill Fenner's list again. Attached is a proposed patch for a port upgrade to version 1.20, which also deals with some changes in the distfile - no longer gzipped, only available as a Perl script, no manpage, no docs, no nothing :\ >How-To-Repeat: N/A >Fix: diff -urN ports/mail/rlytest/Makefile myports/mail/rlytest/Makefile --- ports/mail/rlytest/Makefile Thu Apr 13 23:00:45 2000 +++ myports/mail/rlytest/Makefile Fri Sep 8 00:11:27 2000 @@ -6,26 +6,23 @@ # PORTNAME= rlytest -PORTVERSION= 1.16 +PORTVERSION= 1.20 CATEGORIES= mail security MASTER_SITES= http://www.unicom.com/sw/rlytest/ DISTNAME= ${PORTNAME} +EXTRACT_SUFX= MAINTAINER= paul@it.ca -MAN1= rlytest.1 - USE_PERL5= yes -NO_WRKSUBDIR= yes +EXTRACT_ONLY= # defined NO_BUILD= -post-patch: - ${MV} ${WRKSRC}/rlytest ${WRKSRC}/rlytest.chip; \ - ${SED} 's:/usr/local/bin/perl:${PERL}:' < ${WRKSRC}/rlytest.chip > ${WRKSRC}/rlytest +pre-patch: + perl -pe 's,^#!/usr/local/bin/perl$$,#!/usr/bin/perl,' < ${_DISTDIR}${DISTFILES} > ${WRKDIR}/rlytest do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/rlytest ${PREFIX}/bin/rlytest; \ - ${INSTALL_MAN} ${WRKSRC}/rlytest.1 ${MANPREFIX}/man/man1/rlytest.1 + ${INSTALL_SCRIPT} ${WRKDIR}/rlytest ${PREFIX}/bin/rlytest post-install: ${CAT} ${PKGDIR}/MESSAGE diff -urN ports/mail/rlytest/files/md5 myports/mail/rlytest/files/md5 --- ports/mail/rlytest/files/md5 Sun Jul 11 01:42:40 1999 +++ myports/mail/rlytest/files/md5 Fri Sep 8 00:01:33 2000 @@ -1 +1 @@ -MD5 (rlytest.tar.gz) = 08363332149b91d8aeef00749fb236e1 +MD5 (rlytest) = 4e403049f563e3e67096961ee06e6d62 >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 Sep 21 10:50: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 18EEA37B443 for ; Thu, 21 Sep 2000 10:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25680; Thu, 21 Sep 2000 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 24E6837B443 for ; Thu, 21 Sep 2000 10:43:15 -0700 (PDT) Received: (from scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) id KAA73768; Thu, 21 Sep 2000 10:43:14 -0700 (PDT) (envelope-from scottj) Message-Id: <200009211743.KAA73768@pebkac.owp.csus.edu> Date: Thu, 21 Sep 2000 10:43:14 -0700 (PDT) From: Joseph Scott To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21458: MASTER_SITES port update games/crossfire Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21458 >Category: ports >Synopsis: MASTER_SITES port update games/crossfire >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 Sep 21 10:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: >Description: According to: http://people.freebsd.org/~fenner/portsurvey/games.html#crossfire none of the distfiles are available for download. This is probably because there is a newer version of crossfire that only a couple of the sites actually carry (that I could verify) in an old/ directory. I've included a diff to point MASTER_SITES to the old/ dir on the sites that carry it. This list came from: http://crossfire.real-time.com/Website_Index/Download/download.html I don't know much of anything about this port, otherwise I would have taken a stab at updating it, which would be the correct way to deal with this. >How-To-Repeat: >Fix: diff -ruN games/crossfire.orig/Makefile games/crossfire/Makefile --- games/crossfire.orig/Makefile Thu Sep 21 10:27:58 2000 +++ games/rossfire/Makefile Thu Sep 21 10:34:41 2000 @@ -8,13 +8,8 @@ PORTNAME= crossfire PORTVERSION= ${MAJ}.${MIN}.${PL} CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://ftp.real-time.com/pub/games/crossfire/ \ - ftp://ftp.ifi.uio.no/pub/crossfire/ \ - ftp://ftp.pyramid.com/pub/crossfire/ \ - ftp://ftp.sunet.se/pub/unix/games/crossfire/ \ - ftp://ftp.cs.titech.ac.jp/pub/games/crossfire/ -MASTER_SITE_SUBDIR= andreas +MASTER_SITES= ftp://ftp.ifi.uio.no:/pub/crossfire/old/ \ + ftp://ftp.sunet.se:/pub/unix/games/crossfire/old/ DISTFILES= ${CF_SOURCES} ${CF_DOC} ${CF_MAPS} ${CF_SOUNDS} \ ${CF_ARCH} ${CF_CLSERV} >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 Sep 21 10:57: 5 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 DE63037B43C; Thu, 21 Sep 2000 10:57:00 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13cAai-000HG1-00; Thu, 21 Sep 2000 12:57:00 -0500 Date: Thu, 21 Sep 2000 12:57:00 -0500 From: Ade Lovett To: asami@FreeBSD.org Cc: ports@FreeBSD.org Subject: Cleaning up use of site_perl directories in Makefiles Message-ID: <20000921125700.S61840@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="45Z9DzgjV8m4Oswq" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --45Z9DzgjV8m4Oswq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Asami-san (and -porters) A lot of perl-related modules have various slightly different methods of referring to other perl module dependencies in their Makefiles - some explicitly use the horrendously long pathnames, whereas others define local ${site_perl} variables and use those. The following is a patch that introduces three new variables to bsd.port.mk, PERL_BASE, PERL_SITE, and PERL_SITE_ARCH, allowing for a major amount of cleanup to be performed in these makefiles -- further along down the line, it may be advisable to have a bsd.perl.mk for USE_PERL ports in a similar manner to ruby, python (eventually gnome/kde) etc. but that is beyond the scope of what I would like to do now. Please review and, if appropriate, commit. Thanks, -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ --45Z9DzgjV8m4Oswq Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mk.patch" Index: bsd.port.mk =================================================================== RCS file: /home/src/FreeBSD/ports/Mk/bsd.port.mk,v retrieving revision 1.350 diff -u -r1.350 bsd.port.mk --- bsd.port.mk 2000/09/13 07:16:49 1.350 +++ bsd.port.mk 2000/09/21 17:51:47 @@ -854,6 +854,10 @@ PERL_VER=${PERL_VER} \ PERL_ARCH=${PERL_ARCH} +PERL_BASE?= ${LOCALBASE} +PERL_SITE= ${PERL_BASE}/lib/perl5/site_perl/${PERL_VER} +PERL_SITE_ARCH= ${PERL_SITE}/${PERL_ARCH} + .if exists(/usr/bin/perl5) && ${OSVERSION} >= 300000 # 3.0-current after perl5 import .if !exists(/usr/bin/perl${PERL_VERSION}) && defined(USE_PERL5) --45Z9DzgjV8m4Oswq-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 11: 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 8024B37B440 for ; Thu, 21 Sep 2000 11:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA28116; Thu, 21 Sep 2000 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 8EBD637B423 for ; Thu, 21 Sep 2000 10:54:00 -0700 (PDT) Received: (from scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) id KAA73982; Thu, 21 Sep 2000 10:53:56 -0700 (PDT) (envelope-from scottj) Message-Id: <200009211753.KAA73982@pebkac.owp.csus.edu> Date: Thu, 21 Sep 2000 10:53:56 -0700 (PDT) From: Joseph Scott To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21459: MASTER_SITES port update: games/powerpak Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21459 >Category: ports >Synopsis: MASTER_SITES port update: games/powerpak >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 Sep 21 11:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 3.4-STABLE i386 >Organization: >Environment: ports collection >Description: According to: http://people.freebsd.org/~fenner/portsurvey/games.html#powerpak the distfiles for games/powerpak are not fetchable. It looks like the web site from games/powerpak has moved and distfiles along with it. The new site is at: http://www.imperialpenguin.com/software/powerpak/ I've included a diff to games/powerpak to update the MASTER_SITES. >How-To-Repeat: >Fix: diff -ruN games/powerpak.orig games/powerpak diff -ruN games/powerpak.orig/Makefile games/powerpak/Makefile --- games/powerpak.orig/Makefile Thu Sep 21 10:47:09 2000 +++ games/powerpak/Makefile Thu Sep 21 10:49:06 2000 @@ -8,7 +8,7 @@ PORTNAME= powerpak PORTVERSION= 991203 CATEGORIES= games -MASTER_SITES= http://www.angelfire.com/va/powerpakgsdk/ +MASTER_SITES= http://www.imperialpenguin.com/software/powerpak/ DISTNAME= PowerPak MAINTAINER= ports@FreeBSD.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 Sep 21 11:25: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 E09BA37B43C; Thu, 21 Sep 2000 11:25:09 -0700 (PDT) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34428; Thu, 21 Sep 2000 11:25:09 -0700 (PDT) (envelope-from sumikawa@FreeBSD.org) Date: Thu, 21 Sep 2000 11:25:09 -0700 (PDT) From: Message-Id: <200009211825.LAA34428@freefall.freebsd.org> To: O.Hodson@cs.ucl.ac.uk, sumikawa@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21445: Patch to enable IPv6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to enable IPv6 State-Changed-From-To: open->closed State-Changed-By: sumikawa State-Changed-When: Fri Sep 22 03:24:47 JST 2000 State-Changed-Why: commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21445 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 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 876AD37B446 for ; Thu, 21 Sep 2000 11:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA44806; Thu, 21 Sep 2000 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 3D81637B423 for ; Thu, 21 Sep 2000 11:41:31 -0700 (PDT) Received: from baby.int.thehousleys.net (baby.ipv6.thehousleys.net [3ffe:1ce3:6:0:260:8ff:fea3:7fb2]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e8LIfUQ32343 for ; Thu, 21 Sep 2000 14:41:30 -0400 (EDT) (envelope-from housley@thehousleys.net) Received: (from housley@localhost) by baby.int.thehousleys.net (8.11.0/8.11.0) id e8LIfUG15210; Thu, 21 Sep 2000 14:41:30 -0400 (EDT) (envelope-from housley) Message-Id: <200009211841.e8LIfUG15210@baby.int.thehousleys.net> Date: Thu, 21 Sep 2000 14:41:30 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21460: Patch net/trafshow: Allow showing ipv6 proto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21460 >Category: ports >Synopsis: Patch net/trafshow: Allow showing ipv6 proto >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 Sep 21 11:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1-STABLE i386 >Organization: The Housleys dot Net >Environment: >Description: Currently trafshow show proto 41 for IPv6 tunnel traffic. This patch shows it as ipv6 for the protocol. >How-To-Repeat: >Fix: diff -ruN patches.orig/patch-ag patches/patch-ag --- patches.orig/patch-ag Wed Dec 31 19:00:00 1969 +++ patches/patch-ag Thu Sep 21 14:36:05 2000 @@ -0,0 +1,12 @@ +--- util.c.orig Fri Sep 15 06:51:11 2000 ++++ util.c Thu Sep 21 14:35:33 2000 +@@ -129,6 +129,9 @@ + #ifdef IPPROTO_ENCAP + { "encap",IPPROTO_ENCAP}, + #endif ++#ifdef IPPROTO_IPV6 ++ { "ipv6", IPPROTO_IPV6}, ++#endif + { "ip", IPPROTO_IP }, + { "raw", IPPROTO_RAW }, + { NULL, -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 Thu Sep 21 14: 4: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 C940437B43E; Thu, 21 Sep 2000 14:04:44 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id OAA73290; Thu, 21 Sep 2000 14:04:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 21 Sep 2000 14:04:44 -0700 (PDT) From: Kris Kennaway To: Victor Ivanov Cc: freebsd-ports@freebsd.org Subject: Re: Ports upgrade [was Package Vulnerability scanner...] 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 Thu, 21 Sep 2000, Victor Ivanov wrote: > Hi and sorry, this message is not related to security So it should have gone to -ports. Don't send off-topic messages. > I have updated the ports collection and the 3.5 stable base source, tar-ed > everything and then use it to upgrade a newly installed 3.4-release to > 3.5-stable. But the pm3 port was the old 1.1.13 and cvsup depended on > 1.1.14 (on the newest ports collection). Now I have to download 20 > megabytes just for this reason: 'Upgrade to pm3-1.1.14. This eliminates > 103 patch files. :-)' > > Is there any way to update the ports distfiles (something like cvsup)? Not currently. > I see there are both pm3-1.1.13 and pm3-1.1.14 distfiles on > ftp.freebsd.org... Maybe a target in the makefile which extracts the > package distfile (first find what version we have), download the > (small) patches, apply them and optionaly re-create the archive (and > rename it)? > > Ofcorse, someone should create the patches :) Indeed :-) It would probably be difficult because there's no foolproof way to associate a particular old distfile with a given port, since file names can and do change. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 14:12: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 9426F37B42C; Thu, 21 Sep 2000 14:12:16 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id OAA76003; Thu, 21 Sep 2000 14:12:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Thu, 21 Sep 2000 14:12:16 -0700 (PDT) From: Kris Kennaway To: Jonathan Fosburgh Cc: "Michael G." , "freebsd-ports@FreeBSD.ORG" , ichael Harnois Subject: Re: Kdegraphics 1.94 fails In-Reply-To: <14793.64431.545000.641443@jef-nt.mdacc.tmc.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, 21 Sep 2000, Jonathan Fosburgh wrote: > * Michael G writes: > > > I'm doing a fresh install of the latest KDE snapshot on a 4.1 -Stable > > machine and the kdegraphics port is failing here (all others compiled > > fine): > > That's interesting, mine failed on kdelibs with a syntax error. I'll > make more available when I am able to get back to the machine. There was a missing patch from the initial commit of the port - make sure you have it. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 14:39: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 1416C37B423; Thu, 21 Sep 2000 14:39:49 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA80415; Thu, 21 Sep 2000 14:39:49 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Thu, 21 Sep 2000 14:39:49 -0700 (PDT) From: Message-Id: <200009212139.OAA80415@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/21460: Patch net/trafshow: Allow showing ipv6 proto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch net/trafshow: Allow showing ipv6 proto Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: ade Responsible-Changed-When: Thu Sep 21 14:39:24 PDT 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21460 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 15:40: 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 80D6837B422 for ; Thu, 21 Sep 2000 15:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA92414; Thu, 21 Sep 2000 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 21 Sep 2000 15:40:02 -0700 (PDT) Message-Id: <200009212240.PAA92414@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Anton Berezin Subject: Re: ports/20200: Updated version of mathopd web server contains bugfix Reply-To: Anton Berezin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20200; it has been noted by GNATS. From: Anton Berezin To: freebsd-gnats-submit@freebsd.org Cc: mikko@dynas.se Subject: Re: ports/20200: Updated version of mathopd web server contains bugfix Date: Fri, 22 Sep 2000 00:38:05 +0200 > State-Changed-From-To: open->feedback > State-Changed-By: ade > Have you discussed this with the maintainer of the www/mathopd port, > tobez@tobez.org? I am perfectly alright with this fix. Thanks, Mikko! Cheers, Anton. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 16:39:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from anchor-post-34.mail.demon.net (anchor-post-34.mail.demon.net [194.217.242.92]) by hub.freebsd.org (Postfix) with ESMTP id 8498F37B423 for ; Thu, 21 Sep 2000 16:39:30 -0700 (PDT) Received: from yossarian.demon.co.uk ([194.222.87.49] helo=brooking) by anchor-post-34.mail.demon.net with smtp (Exim 2.12 #1) id 13cFw5-000OS9-0Y; Fri, 22 Sep 2000 00:39:25 +0100 Reply-To: From: "Steve H" To: Cc: Subject: FreeBSD Port: apache-jserv-1.1.2 Date: Fri, 22 Sep 2000 00:25:03 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I installed the jserv port recently. However, I got a file format error when trying to loadmodule mod_jserv.so when starting apache. On closer inspection, I looked at the file format of mod_jserv.so, and found it to be an archive library file. So I ran: mkdir tmp mv mod_jserv.so tmp ; cd tmp ar x mod_jserv.so cc -shared *.o -o mod_jserv.so mv mod_jserv.so .. This time when I started apache, all worked correctly. Any ideas, thoughts, reasons for the mod_jserv.so file being installed as an archive library file? Rgds, Steve Huckle Yossarian Computing Ltd. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 16:50:40 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 4037A37B43C for ; Thu, 21 Sep 2000 16:50:37 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA14934; Thu, 21 Sep 2000 19:50:14 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8LNnh182570; Thu, 21 Sep 2000 16:49:43 -0700 (PDT) (envelope-from asami) To: Warner Losh Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports INDEX References: <20000921093434.D61840@FreeBSD.org> <200009210226.TAA11548@freefall.freebsd.org> <200009211715.LAA59967@harmony.village.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 21 Sep 2000 16:49:01 -0700 In-Reply-To: Warner Losh's message of "Thu, 21 Sep 2000 11:15:21 -0600" 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: Warner Losh * 7! is 5040 ports. We are now within striking distance. However, 6! * * 5! is 86400, which also happens to be the number of seconds in a day. * We're not within striking distance of that number. We passed 4! * 5! * some time ago (it was only 2880). 6! * 6 is 4320. This is a * particularlly perfect number. 6 is the smallest perfect number, so 6! * * 6 must be momentous, no? Maybe I should let you commit the indexes.... ;) * We're only 400 ports away from 6!*6. That's just a long weekend for * Steve Price, so we should see that before 4.2 :-) By the way, we're within striking distance of 4,110, but that might be a little hard given that we only have a few days left.... Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 16:53:13 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 D993F37B43C; Thu, 21 Sep 2000 16:53:10 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id TAA05025; Thu, 21 Sep 2000 19:53:08 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8LNr5582593; Thu, 21 Sep 2000 16:53:05 -0700 (PDT) (envelope-from asami) To: Ade Lovett Cc: ports@FreeBSD.org Subject: Re: gconf plist fix References: <200009210150.e8L1oVj75299@silvia.hip.berkeley.edu> <20000920215828.A61840@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 21 Sep 2000 16:52:55 -0700 In-Reply-To: Ade Lovett's message of "Wed, 20 Sep 2000 21:58:28 -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: Ade Lovett * Yes, that one looks fine to me, though we'd have to change * it to the @unexec ... || true bit in order to avoid a package * deinstallation failure if only gconf has been installed. Ok, will change and commit. Thanks. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 17: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 E92AF37B440 for ; Thu, 21 Sep 2000 17:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA10234; Thu, 21 Sep 2000 17:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id AD86937B424; Thu, 21 Sep 2000 17:03:10 -0700 (PDT) Message-Id: <20000922000310.AD86937B424@hub.freebsd.org> Date: Thu, 21 Sep 2000 17:03:10 -0700 (PDT) From: nakaji@jp.freebsd.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21462 >Category: ports >Synopsis: Port update: japanese/samba from 1.2a to 1.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 21 17:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: 5.0-current >Organization: >Environment: FreeBSD nakaji.tutrp.tut.ac.jp 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Mon Aug 28 14:07:52 JST 2000 root@nakaji.tutrp.tut.ac.jp:/home2/obj/usr/src/sys/NAKAJI i386 >Description: Update of japanese/samba from samba-2.0.7-ja-1.2a to samba-2.0.7-ja-1.3. >How-To-Repeat: >Fix: Patch is at http://www.rc.tutrp.tut.ac.jp/~nakaji/install/FreeBSD/ref/ja-samba.diff >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 Sep 21 17:12:23 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 B611F37B423; Thu, 21 Sep 2000 17:12:21 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13cGRo-000Hhg-00; Thu, 21 Sep 2000 19:12:12 -0500 Date: Thu, 21 Sep 2000 19:12:12 -0500 From: Ade Lovett To: Satoshi - Ports Wraith - Asami Cc: Warner Losh , ports@FreeBSD.org Subject: Re: cvs commit: ports INDEX Message-ID: <20000921191212.A61840@FreeBSD.org> References: <20000921093434.D61840@FreeBSD.org> <200009210226.TAA11548@freefall.freebsd.org> <200009211715.LAA59967@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: ; from asami@FreeBSD.org on Thu, Sep 21, 2000 at 04:49:01PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 21, 2000 at 04:49:01PM -0700, Satoshi - Ports Wraith - Asami wrote: > By the way, we're within striking distance of 4,110, but that might be > a little hard given that we only have a few days left.... No chance. We don't have that many PRs open for new ports. But I feel a spot of Sheldon-itis coming on, hassling people about their owned but unactioned ports PRs real soon, so be ready :) -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 Sep 21 17:23:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nakaji.tutrp.tut.ac.jp (nakaji.tutrp.tut.ac.jp [133.15.188.118]) by hub.freebsd.org (Postfix) with ESMTP id DE37D37B43C; Thu, 21 Sep 2000 17:23:45 -0700 (PDT) Received: from nakaji.tutrp.tut.ac.jp (localhost.tutrp.tut.ac.jp [127.0.0.1]) by nakaji.tutrp.tut.ac.jp (8.11.0/8.11.0) with ESMTP id e8M0Na739144; Fri, 22 Sep 2000 09:23:38 +0900 (JST) (envelope-from nakaji@tutrp.tut.ac.jp) To: gnats-admin@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 References: <20000922000310.AD86937B424@hub.freebsd.org> <200009220010.RAA10230@freefall.freebsd.org> From: nakaji@jp.freebsd.org MIME-Version: 1.0 (generated by REMI 1.14.3 - "Matsudai") Content-Type: text/plain; charset=US-ASCII Date: 22 Sep 2000 09:23:36 +0900 In-Reply-To: <200009220010.RAA10230@freefall.freebsd.org> (gnats-admin@FreeBSD.org's message of "Thu, 21 Sep 2000 17:10:00 -0700 (PDT)") Message-ID: <87pulxuvef.fsf@nakaji.tutrp.tut.ac.jp> Lines: 3 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 03) REMI/1.14.3 (Matsudai) FLIM/1.13.2 (Kasanui) APEL/10.2 Emacs/20.7 (i386--freebsd) MULE/4.0 (HANANOEN) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oops, I have not checked the PLIST. Please don't commit. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 17:30: 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 BF83137B423 for ; Thu, 21 Sep 2000 17:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA12584; Thu, 21 Sep 2000 17:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 21 Sep 2000 17:30:02 -0700 (PDT) Message-Id: <200009220030.RAA12584@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: nakaji@jp.freebsd.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Reply-To: nakaji@jp.freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21462; it has been noted by GNATS. From: nakaji@jp.freebsd.org To: gnats-admin@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Date: 22 Sep 2000 09:23:36 +0900 Oops, I have not checked the PLIST. Please don't commit. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 17:55:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nakaji.tutrp.tut.ac.jp (nakaji.tutrp.tut.ac.jp [133.15.188.118]) by hub.freebsd.org (Postfix) with ESMTP id 6AE3D37B443; Thu, 21 Sep 2000 17:55:03 -0700 (PDT) Received: from nakaji.tutrp.tut.ac.jp (localhost.tutrp.tut.ac.jp [127.0.0.1]) by nakaji.tutrp.tut.ac.jp (8.11.0/8.11.0) with ESMTP id e8M0sh754231; Fri, 22 Sep 2000 09:54:51 +0900 (JST) (envelope-from nakaji@tutrp.tut.ac.jp) From: nakaji@jp.freebsd.org To: gnats-admin@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 References: <200009220030.RAA12584@freefall.freebsd.org> MIME-Version: 1.0 (generated by REMI 1.14.3 - "Matsudai") Content-Type: text/plain; charset=US-ASCII Date: 22 Sep 2000 09:54:43 +0900 In-Reply-To: <200009220030.RAA12584@freefall.freebsd.org> (nakaji@jp.freebsd.org's message of "22 Sep 2000 02:30:09 +0200") Message-ID: <87n1h1utyk.fsf@nakaji.tutrp.tut.ac.jp> Lines: 13 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 03) REMI/1.14.3 (Matsudai) FLIM/1.13.2 (Kasanui) APEL/10.2 Emacs/20.7 (i386--freebsd) MULE/4.0 (HANANOEN) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> In <200009220030.RAA12584@freefall.freebsd.org> >>>>> nakaji@jp.freebsd.org wrote: > Oops, I have not checked the PLIST. Please don't commit. I changed pkg/PLIST and 'make install' and 'make deinstall' are successful. The patch is placed at the same URL: http://www.rc.tutrp.tut.ac.jp/~nakaji/install/FreeBSD/ref/ja-samba.diff Please check. Thanks. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 18: 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 C62B037B43F for ; Thu, 21 Sep 2000 18:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA18773; Thu, 21 Sep 2000 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 21 Sep 2000 18:00:02 -0700 (PDT) Message-Id: <200009220100.SAA18773@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: nakaji@jp.freebsd.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Reply-To: nakaji@jp.freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21462; it has been noted by GNATS. From: nakaji@jp.freebsd.org To: gnats-admin@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Date: 22 Sep 2000 09:54:43 +0900 >>>>> In <200009220030.RAA12584@freefall.freebsd.org> >>>>> nakaji@jp.freebsd.org wrote: > Oops, I have not checked the PLIST. Please don't commit. I changed pkg/PLIST and 'make install' and 'make deinstall' are successful. The patch is placed at the same URL: http://www.rc.tutrp.tut.ac.jp/~nakaji/install/FreeBSD/ref/ja-samba.diff Please check. Thanks. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 18: 0: 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 21A7237B443 for ; Thu, 21 Sep 2000 18:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA18784; Thu, 21 Sep 2000 18:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CA93237B440; Thu, 21 Sep 2000 17:56:48 -0700 (PDT) Message-Id: <20000922005648.CA93237B440@hub.freebsd.org> Date: Thu, 21 Sep 2000 17:56:48 -0700 (PDT) From: kris@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21464: linux_base port installs insecure glibc rpm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21464 >Category: ports >Synopsis: linux_base port installs insecure glibc rpm >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 21 18:00:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kris Kennaway >Release: >Organization: >Environment: >Description: The linux_base port installs an out of date RPM which has security vulnerabilities when used with privileged applications. By default no such applications are installed by the linux compatability ports, but there may be others in the ports tree which I don't know about. An updated glibc rpm is available but it is only in the redhat 6.2 directories on the redhat mirror sites. The port currently installs redhat 6.1 rpms, although the newer glibc rpm is apparently suitable for 6.1 as well. The redhat advisory is available at http://www.redhat.com/support/errata/RHSA-2000-057-04.html which points to the fixed glibc rpm. I'm not sure if we currently install other vulnerable RPMs - the redhat security advisories should be checked at http://www.redhat.com/apps/support/updates.html >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 Sep 21 18: 0:25 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 8835037B43C; Thu, 21 Sep 2000 18:00:21 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA15570; Thu, 21 Sep 2000 21:00:10 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8M106x91397; Thu, 21 Sep 2000 18:00:06 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Thu, 21 Sep 2000 18:00:06 -0700 (PDT) Message-Id: <200009220100.e8M106x91397@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: committers@freebsd.org Subject: HEADS UP: Ports Freeze in 6 hours From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Sorry for not giving enough advance notice, but the cutoff for ports for the upcoming 4.1.1 release will be at midnight tonight PST (~6 hours from now, 7AM GMT). As been the case for recent releases, the "freeze" itself will only last a couple of hours while I lay down the tag, and then the tree will be open again for commits. The packages will be built with the tree at the state of the tag. Thanks for your help and sorry for the short notice. The packages are already looking real good, so don't worry! -PW P.S. Please do not send any last-minute updates to me, I have enough things to do already. Bug other committers if you must. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 18: 1: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 DB15B37B449; Thu, 21 Sep 2000 18:01:41 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA19201; Thu, 21 Sep 2000 18:01:41 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Thu, 21 Sep 2000 18:01:41 -0700 (PDT) From: Message-Id: <200009220101.SAA19201@freefall.freebsd.org> To: kris@FreeBSD.org, freebsd-ports@FreeBSD.org, marcel@FreeBSD.org Subject: Re: ports/21464: linux_base port installs insecure glibc rpm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: linux_base port installs insecure glibc rpm Responsible-Changed-From-To: freebsd-ports->marcel Responsible-Changed-By: kris Responsible-Changed-When: Thu Sep 21 18:01:20 PDT 2000 Responsible-Changed-Why: Marcel is the responsible maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21464 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 18:19:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mfo00.iij.ad.jp (mfo00.iij.ad.jp [202.232.2.117]) by hub.freebsd.org (Postfix) with ESMTP id 6839137B446 for ; Thu, 21 Sep 2000 18:19:17 -0700 (PDT) Received: from sh0.po.iijnet.or.jp (sh0.po.iijnet.or.jp [202.232.2.1]) by mfo00.iij.ad.jp (8.8.8/MFO1.3) with ESMTP id KAA00499; Fri, 22 Sep 2000 10:19:15 +0900 (JST) Received: from nemotot (ppp9090.po.iijnet.or.jp [202.232.16.99]) by sh0.po.iijnet.or.jp (8.8.8+ACL/PO1.1) with SMTP id KAA23667; Fri, 22 Sep 2000 10:19:14 +0900 (JST) Message-ID: <000001c02433$25acfd80$7032a8c0@ced.nishimatsu.co.jp> From: "nemoto takayosi" To: Cc: Subject: FreeBSD Port: ja-gp-2.5.p2 Date: Thu, 21 Sep 2000 11:34:36 +0900 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ---------------------------------------------- $B@>>>7z@_3t<02q; Thu, 21 Sep 2000 18:22:06 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA30588; Thu, 21 Sep 2000 21:22:03 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8M1Lx591567; Thu, 21 Sep 2000 18:21:59 -0700 (PDT) (envelope-from asami) To: Martin Blapp Cc: ports@freebsd.org Subject: Re: ports/21129: French staroffice52 port (fwd) References: From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 21 Sep 2000 18:21:46 -0700 In-Reply-To: Martin Blapp's message of "Tue, 19 Sep 2000 11:06:28 +0200 (CEST)" Message-ID: Lines: 12 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Can you also commit the port ? I got positive feedback from the * submitter, so we can commit it. * * You'll find it on http://www.attic.ch/ports/staroffice52-french.tar.gz I'll commit it before the freeze. I'll also move textproc/fr-ispell to french/ispell. I'm assuming that's all in french for now since "grep '^fr-' /usr/ports/INDEX" only turns up fr-ispell. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 18:30: 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 7CD5737B443 for ; Thu, 21 Sep 2000 18:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA25943; Thu, 21 Sep 2000 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from drugs.dv.isc.org (drugs.dv.isc.org [130.155.191.236]) by hub.freebsd.org (Postfix) with ESMTP id CC8C037B42C for ; Thu, 21 Sep 2000 18:27:59 -0700 (PDT) Received: (from marka@localhost) by drugs.dv.isc.org (8.11.0/8.11.0) id e8M1Tkj51714; Fri, 22 Sep 2000 12:29:46 +1100 (EST) (envelope-from marka) Message-Id: <200009220129.e8M1Tkj51714@drugs.dv.isc.org> Date: Fri, 22 Sep 2000 12:29:46 +1100 (EST) From: marka@nominum.com Reply-To: marka@drugs.dv.isc.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: 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 >Number: 21465 >Category: ports >Synopsis: nmh-1.0.4: multiple simultaneous "inc"s step on each other >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 21 18:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Andrews >Release: FreeBSD 4.1-STABLE i386 >Organization: Nominum >Environment: nmh-1.0.4 A cleaned up MH mailer suite >Description: Mail is lost if two "inc"s are running at the same time. This is easy to do in a windowed evirionment specially when you have multiple mailboxes. >How-To-Repeat: inc -host foo enter password and background inc -file ... >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 Sep 21 18:30:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id 7BAE737B42C for ; Thu, 21 Sep 2000 18:30:53 -0700 (PDT) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id VAA298564 for ; Thu, 21 Sep 2000 21:30:47 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: Date: Thu, 21 Sep 2000 21:31:04 -0400 To: ports@freebsd.org From: Garance A Drosihn Subject: Status of CAP (appletalk) under FreeBSD 4.-something? Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was wondering about the current status of the CAP port in freebsd. (yes, I know about netatalk, but I was wondering about CAP). I am running 4.1-stable as of a week or so ago, and I tried to make the CAP port. It built and installed fine, but ... [...garance types and types, trys various things, and...] Hmm. Well, it was not working for me, but in the process of describing exactly how it was not working I managed to get it to start working. So, I guess I don't have to ask how to get it working. Still, I wondered if anyone was actively maintaining the port. The makefile doesn't list a maintainer. --- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or drosih@rpi.edu Rensselaer Polytechnic Institute To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 18: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 27E5E37B505 for ; Thu, 21 Sep 2000 18:40:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA28343; Thu, 21 Sep 2000 18:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2933437B43F; Thu, 21 Sep 2000 18:39:47 -0700 (PDT) Message-Id: <20000922013947.2933437B43F@hub.freebsd.org> Date: Thu, 21 Sep 2000 18:39:47 -0700 (PDT) From: eighner@io.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21466: port xpaint-2.5.7 won't make install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21466 >Category: ports >Synopsis: port xpaint-2.5.7 won't make install >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 21 18:40:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Lars Eighner >Release: 4.1STABLE >Organization: Lars Eighner, Author >Environment: FreeBSD dumpster 4.1-STABLE FreeBSD 4.1-STABLE #0; Tues Aug 1 07:48:24 CDT 2000 root@dumpster:/usr/obj/usr/src/sys/AUGUST00D i386 >Description: Port xpaint-2.5.7 freshly cvsuped won't make install. Port appears to be unable to find the tiff, jpeg, and png includes, expecting them to be in *sub* directories of /usr/local/include (i.e. /usr/local/include/tiff, etc.) Patch aa *does* appear to correctly alter Local.config file, indicating that the includes are *not* in subdirectories, but for some reason this doesn't seem to help make install. By creating subdirectories and symbolic links to the tiff, jpeg, and png files, I got xpaint to install and it runs. There is someplace else these include paths need to be corrected. >How-To-Repeat: attempt to make install with a freshly cvsupped xpaint-2.5.7 port >Fix: There is some place else that the include paths must be corrected and patch-aa is not addressing the problem in that other place. Stinky hack solution is to create directories /usr/local/include/tiff, /usr/local/includ/jpeg, and /usr/local/include/png and in .../tiff do ln -s ../tiff* . , in .../jpeg do ln -s ../j* . , and in .../png do ln -s ../png* . . I hold my nose while I do this, but the port make installs and xpaint then runs. >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 Sep 21 18:51:54 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 484AF37B422 for ; Thu, 21 Sep 2000 18:51:52 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by blount.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA31091; Thu, 21 Sep 2000 21:51:47 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8M1phr91737; Thu, 21 Sep 2000 18:51:43 -0700 (PDT) (envelope-from asami) To: Martin Blapp Cc: ports@freebsd.org Subject: Re: ports/21129: French staroffice52 port (fwd) References: From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 21 Sep 2000 18:51:36 -0700 In-Reply-To: asami@freebsd.org's message of "21 Sep 2000 18:21:46 -0700" Message-ID: Lines: 10 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I'll commit it before the freeze. I'll also move textproc/fr-ispell * to french/ispell. Err, this port has accents, which might confuse various tools out there. Can you send me English versions of the messages? , If I don't get them in time, I'll just do a massive "e" -> "e" type substitution and commit it. Satoshi (note, you need fixed width fonts to make sense of this mail) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 19: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 5C98A37B422 for ; Thu, 21 Sep 2000 19:20:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA37668; Thu, 21 Sep 2000 19:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 21 Sep 2000 19:20:04 -0700 (PDT) Message-Id: <200009220220.TAA37668@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Mario Sergio Fujikawa Ferreira" Subject: Re: ports/21454 Reply-To: "Mario Sergio Fujikawa Ferreira" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21454; it has been noted by GNATS. From: "Mario Sergio Fujikawa Ferreira" To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/21454 Date: Thu, 21 Sep 2000 23:16:24 -0300 Bad, bad, bad lioux The last patch batch had some typos. This one is clean and okay. I gotta get some sleep. :) begin 600 jx-patches.tar.gz M'XL(`+B[RCD``^V;_6_:.!C'^ROY*WR[:;_0$#MOT.@ZE=%L1T=I!6S'22=% M@80V!1*4P,8T\;^?G9>&O-!PVTAOS(_4)K$?!]MQ/E_;L777=3[7%OIR?']R M*$,0RA""$P!074+;1]^0#&4`ZDCF)4&2!7R.>"C*)P`>+$=;MO*6N@O`R M]L\KMF.;:\M;FO92>?GU:GA[TQMLE+%C3ZR[E6N"?YAJ*L7+K]V;KCIL]P=J M%[OF)P*5RAP7@/S%'@SHM-_$-WI8LTB3-*&&8I<@Z8-GZN[XGH4X6JY!'$TB M^Y?MWH9;(\0N'6X_FWPL`8&+J5K MC59+R[$!J5D/V*9IF`:8."X8K:R98=EW#&C=W/ZM70WQC^$\6O9XMC+,Q]"W M[8Z*@Q^?=96IUD(?\,?(,VKDF=<6KEF;3U_CV%V_3]S`9W?JN6,&!&4_KU1V MEO-AS;"!E_97[WV_UR*/(:PR[K/C3KFK(8MJ4DU@J@F_W\XK8P/$U?OJ%;ZX M;KY7-X#]"`(?D@&-A&FMFVY_T.P.R,,)JE7##Q53P%YZX('D9J2[B2#7-.-K MAF78)VH#M\Z:-<&_?]/_J/;Z[9ON!KP^!P(DQH!FIZ,-FKUW*JZ)";XO3B_4 MULSSO?]CQS#'[LK3#=,]E`P4\;\NUU/\%P2Y3OE?AN7RWS`_F3-NNVG$.I`; MFI:#)VY0N79"66@`B!2QH4@PEH7\)$EU$,\4'FZI0]U7A_J1J4,((E\>Q")Y M")TC?6B<(@GK`S[(H3Z8:WV^P&K``'78O+[MJ`'Y*X;I39?.`O-[[#J)6.VV MI[YM#TEA@[,-Y]WKKLE%M^*"''6;U^KF2"3BP#J:*T'/+#CDA9N;AC4^X!B@ MD/_U-/]Y6424_V58`?_]II&$?S)H-_F3?NG1@*Q(9TGLI_RSS*8^0/$7K3[*L;\E.$ MNH\^/M,"BD4$#MG$D5)_LQ#\,,;^%$*SYUBD!!VXFSF?S&>>_Y%D*3/_(XB4 M_V78COF?Y3WGMXP8_]Y8S)PEIKVL246T#WPCVC?\^1]RH/,_W\7:"\!"F-P(.( MQI9&B'X/F!R$HU*)`$@X&FD-/_H)E0A\2=DC@.(LXE/?^Q&>N.1M@L!.IZ_U M_\3Y.*]\,0GHP(>^J@T?1P$DT`]Z1[@97OL(Q43#F6ZUSE^\_-IJ;5Z`UG#H MGP^'^"(0*4$\E4%5X$/1KE3P#X6()*[QE9\"Q^>,,`(APMZ[XJ*T[6ZK\^&2 M3%L1[_AJ\X*IYI45$,TB#0N8]B?+=>PY?N@,(%4;)L;E8]M;XZ!HD/,P=O!3 MS8]:1_-O\BD205622),DA8^R'TZZX=8X`OYH:>]A59YC*-,9$3L2O?[.3LVN M7DW>/0___)S(N^#*.?D49EP(9%\N1\X"@3GL)3GO[5ZY&``*%[_E>G_\SQ=_UN*[??^ARTD"8!T8"$!T@F*$9!) MD?E.!,7C94"T$@SW2_SYOWK1_!_Q]&M"1OYL*#G()71=,VN8:-]UO[YK_HJP M,M<;1\WFD$L`"O=_H,S^#PE)E/]EV)[\QRTD!?_MD&+R;WOG8#\U\Y-TSS`? M\&?B]")@48%R3/ZL>Y;\C:-?%?8=^S[HNK`?M2[L MU]D%Z'W!+\#\[J`K@(OW?_-I_HN0\K\4V]G_G\RYL&W$[$\'Y/7[<]*EL"]* MB2U_&>\,]7F>4O\)ZLL!]65*?4K]_VS+^[6&D-!XUOX_1&G^(YG._Y=BN_=_ M1"TCQG\F)'<72,8KC7\AL1$DZY[E__'W^K]]+\A90/\S2G^Z%X0:-6K4J%'; +T_X%KX<]W`!0```K ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 19:22:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from chupacabras.flash.net (chupacabras.flash.net [209.30.2.16]) by hub.freebsd.org (Postfix) with ESMTP id BBE6437B422 for ; Thu, 21 Sep 2000 19:22:26 -0700 (PDT) Received: from gw.fosburgh.org (p187.amax19.dialup.hou1.flash.net [209.30.163.187]) by chupacabras.flash.net (8.9.3/Pro-8.9.3) with ESMTP id VAA03380 for ; Thu, 21 Sep 2000 21:22:20 -0500 (CDT) Received: from gw.fosburgh.org (localhost [127.0.0.1]) by gw.fosburgh.org (8.11.0/8.11.0) with SMTP id e8M2MT831534 for ; Thu, 21 Sep 2000 21:22:30 -0500 (CDT) (envelope-from wotan@ns.fosburgh.org) From: Jonathan E Fosburgh To: freebsd-ports@freebsd.org Subject: Fwd: Re: Kdegraphics 1.94 fails Date: Thu, 21 Sep 2000 21:22:24 -0500 X-Mailer: KMail [version 1.1.90] Content-Type: Multipart/Mixed; boundary="------------Boundary-00=_CXN9VBX7S6Y7D3P1U1WN" MIME-Version: 1.0 Message-Id: <00092121222402.01109@gw.fosburgh.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------Boundary-00=_CXN9VBX7S6Y7D3P1U1WN Content-Type: text/plain Content-Transfer-Encoding: 8bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Resend after fixing sendmail.cf (post upgrade trauma.) - ---------- Forwarded Message ---------- Subject: Re: Kdegraphics 1.94 fails Date: Thu, 21 Sep 2000 21:13:45 -0500 From: Jonathan E Fosburgh To: Kris Kennaway , Jonathan Fosburgh On Thu, 21 Sep 2000, Kris Kennaway wrote: > On Thu, 21 Sep 2000, Jonathan Fosburgh wrote: > > * Michael G writes: > > > I'm doing a fresh install of the latest KDE snapshot on a 4.1 -Stable > > > machine and the kdegraphics port is failing here (all others compiled > > > fine): > > > > That's interesting, mine failed on kdelibs with a syntax error. I'll > > make more available when I am able to get back to the machine. > > There was a missing patch from the initial commit of the port - make sure > you have it. I just updated my ports (~21:00 CDT on 9/21) and I still get the error. A log is attached. - -- Jonathan Fosburgh Open Systems MD Anderson Cancer Center Houston, TX Home Page: http://www.fosburgh.org Manager, FreeBSD Webring: http://www.fosburgh.org/computer/freebsdring.html ICQ: 32742908 AIM: Namthorien - ------------------------------------------------------- - -- Jonathan Fosburgh Open Systems MD Anderson Cancer Center Houston, TX Home Page: http://www.fosburgh.org Manager, FreeBSD Webring: http://www.fosburgh.org/computer/freebsdring.html ICQ: 32742908 AIM: Namthorien -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.0 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE5ysJhqUvQmqp7omYRAr99AKC26Dmn8gBNAuqUO5dNq23F7sJd+QCgzkFt 7jVRvUf6UMTVICm0AdggQFM= =QPjy -----END PGP SIGNATURE----- --------------Boundary-00=_CXN9VBX7S6Y7D3P1U1WN Content-Type: text/x-c; name="kdelib_errs" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="kdelib_errs" /bin/sh ../libtool --mode=3Dcompile c++ -DHAVE_CONFIG_H -I. -I. -I.. -I..= /dcop -I../kdecore -I../kdeui -I../kssl -I/usr/X11R6/include/qt2 -I/usr/X= 11R6/include -I/usr/local/include -I/usr/local/include -I/usr/local/in= clude -O -pipe -frtti -DQT_CLEAN_NAMESPACE -DQT_NO_COMPAT -DQT_NO_ASCII_= CAST -c kssl.cc c++ -DHAVE_CONFIG_H -I. -I. -I.. -I../dcop -I../kdecore -I../kdeui -I../k= ssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include -I/usr/local/include -I= /usr/local/include -I/usr/local/include -O -pipe -frtti -DQT_CLEAN_NAMESP= ACE -DQT_NO_COMPAT -DQT_NO_ASCII_CAST -c kssl.cc -fPIC -DPIC -o .libs/ks= sl.o kssl.cc: In method `bool KSSL::initialize()': kssl.cc:89: passing `const char *' as argument 2 of `SSL_CTX_set_cipher_l= ist(SSL_CTX *, char *)' discards qualifiers gmake: *** [kssl.lo] Error 1 --------------Boundary-00=_CXN9VBX7S6Y7D3P1U1WN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 20:26: 8 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 C477637B422 for ; Thu, 21 Sep 2000 20:26:03 -0700 (PDT) Received: from dwcjr (dwcjr.inethouston.com [216.118.21.147]) by leviathan.inethouston.com (Postfix) with SMTP id 16F36177E3E for ; Thu, 21 Sep 2000 22:27:34 -0500 (CDT) Message-ID: <006c01c02445$09fea2c0$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Subject: SASL-PWCHECK Date: Thu, 21 Sep 2000 22:27:30 -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 Anyone have any luck getting the SASL port with the pwcheck method instead of sasl_db working with anything, particularly postfix? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 21 21:42:31 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 6B9B037B423 for ; Thu, 21 Sep 2000 21:42:29 -0700 (PDT) Received: from zircon (matt.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.10.1/8.9.2) with SMTP id e8M4gKs69213; Fri, 22 Sep 2000 00:42:20 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <001401c0244f$893e1f20$1200a8c0@zircon> From: "Matthew Emmerton" To: "Victor Ivanov" Cc: References: Subject: Re: Ports upgrade [was Package Vulnerability scanner...] Date: Fri, 22 Sep 2000 00:42:37 -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 > On Thu, 21 Sep 2000, Victor Ivanov wrote: > > > Hi and sorry, this message is not related to security > > So it should have gone to -ports. Don't send off-topic messages. > > > I have updated the ports collection and the 3.5 stable base source, tar-ed > > everything and then use it to upgrade a newly installed 3.4-release to > > 3.5-stable. But the pm3 port was the old 1.1.13 and cvsup depended on > > 1.1.14 (on the newest ports collection). Now I have to download 20 > > megabytes just for this reason: 'Upgrade to pm3-1.1.14. This eliminates > > 103 patch files. :-)' Why not use cvsup-bin from the ports collection? It's a pre-packaged, statically-compiled version of cvsup which is 1.5 MB to download. This will save you the agony of downloading and building the huge pm3 port all for one shared library which cvsup requires (and which you'll probably never use for anything else). -- 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 Thu Sep 21 23: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 0A5D337B43C for ; Thu, 21 Sep 2000 23:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA87098; Thu, 21 Sep 2000 23:20: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 9987837B422 for ; Thu, 21 Sep 2000 23:12:37 -0700 (PDT) Received: by ada.eu.org (Postfix, from userid 10) id 7819A190B7; Fri, 22 Sep 2000 08:12:32 +0200 (CEST) Received: by trillian.enst.fr (Postfix, from userid 1000) id E73BE3F0; Fri, 22 Sep 2000 09:12:06 +0300 (EEST) Message-Id: <20000922061206.E73BE3F0@trillian.enst.fr> Date: Fri, 22 Sep 2000 09:12:06 +0300 (EEST) From: sam@inf.enst.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21467: New version of net/adasockets Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21467 >Category: ports >Synopsis: New version of net/adasockets >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 Sep 21 23:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 4.1-STABLE i386 >Organization: TELECOM Paris >Environment: >Description: A new upstream version is available. >How-To-Repeat: >Fix: --- Makefile.orig Fri Sep 22 09:06:56 2000 +++ Makefile Fri Sep 22 09:07:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= adasockets -PORTVERSION= 0.1.8 +PORTVERSION= 0.1.10 CATEGORIES= net MASTER_SITES= http://www.infres.enst.fr/ANC/ >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 Sep 22 0:19: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 8433037B42C; Fri, 22 Sep 2000 00:19:49 -0700 (PDT) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA02374; Fri, 22 Sep 2000 00:19:49 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Fri, 22 Sep 2000 00:19:49 -0700 (PDT) From: Message-Id: <200009220719.AAA02374@freefall.freebsd.org> To: e-masson@kisoft-services.com, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21129: French staroffice52 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: French staroffice52 port State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Fri Sep 22 00:19:10 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21129 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 1:12: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 74B8537B423; Fri, 22 Sep 2000 01:12:14 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA13256; Fri, 22 Sep 2000 01:12:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Fri, 22 Sep 2000 01:12:14 -0700 (PDT) From: Message-Id: <200009220812.BAA13256@freefall.freebsd.org> To: jhs@freebsd.org, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19974: cd /usr/ports/japanese/w3m-ssl fails on OpenSSL Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cd /usr/ports/japanese/w3m-ssl fails on OpenSSL State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Fri Sep 22 01:10:09 PDT 2000 State-Changed-Why: Unless you can show me otherwise, the error message is correct and you need to do what it says. The exact handbook reference is wrong however - see this URL: http://www.freebsd.org/handbook/openssl.html http://www.freebsd.org/cgi/query-pr.cgi?pr=19974 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 1:37:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ruv.de (mail-1.ruv.de [195.145.180.2]) by hub.freebsd.org (Postfix) with ESMTP id 4398337B423 for ; Fri, 22 Sep 2000 01:37:30 -0700 (PDT) Received: from ruv.de (localhost [127.0.0.1]) by ruv.de (8.9.3/8.9.3) with ESMTP id KAA20645 for ; Fri, 22 Sep 2000 10:40:08 +0200 (MET DST) From: Sascha.Valckenierkips@RUV.de Received: from sv0160e.ruv.de (mail-intern [10.193.132.39]) by ruv.de (8.9.3/8.9.3) with ESMTP id KAA20641 for ; Fri, 22 Sep 2000 10:40:07 +0200 (MET DST) Received: by SV0160E.ruv.de with Internet Mail Service (5.5.2650.21) id ; Fri, 22 Sep 2000 10:38:17 +0200 Message-ID: <5BA78FCA5AF2D21190820000D11B921C0124BA96@SV01641.ruv.de> To: freebsd-ports@FreeBSD.org Subject: ports/21450 Date: Fri, 22 Sep 2000 10:38:16 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, please close the Problem ports/21450 from me (Sascha Valckenier Kips @ merlingermany@t-online.de). The problem was corrected with following corrections: cd /dev :/MAKEDEV pass5 Thanks for speedley help Sascha Valckenier Kips To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 2: 0: 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 69F9037B423 for ; Fri, 22 Sep 2000 02:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA30041; Fri, 22 Sep 2000 02:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hole.etrust.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 098DB37B423 for ; Fri, 22 Sep 2000 01:50:03 -0700 (PDT) Received: (from osa@localhost) by hole.etrust.ru (8.9.3/8.9.3) id MAA72860; Fri, 22 Sep 2000 12:49:20 +0400 (MSD) (envelope-from osa) Message-Id: <200009220849.MAA72860@hole.etrust.ru> Date: Fri, 22 Sep 2000 12:49:20 +0400 (MSD) From: osa@FreeBSD.org.ru Reply-To: osa@FreeBSD.org.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21469: Fix shared libs environment in databases/db3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21469 >Category: ports >Synopsis: Fix shared libs environment in databases/db3 >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 Sep 22 02:00:03 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 5.0-CURRENT i386 >Organization: Russian FreeBSD Team >Environment: FreeBSD 5.0-CURRENT i386 >Description: Fix shared libs environment in databases/db3 >How-To-Repeat: >Fix: diff -ruN db3.old/Makefile db3/Makefile --- db3.old/Makefile Fri Sep 22 02:48:44 2000 +++ db3/Makefile Fri Sep 22 02:49:15 2000 @@ -2,7 +2,7 @@ # Date created: 16 August 2000 # Whom: Sergey Osokin aka oZZ # -# $FreeBSD: ports/databases/db3/Makefile,v 1.23 2000/09/16 22:57:40 will Exp $ +# $FreeBSD$ # PORTNAME= db3 @@ -27,5 +27,9 @@ --prefix=${PREFIX} \ --includedir=${PREFIX}/include/db3 CONFIGURE_TARGET= $(ARCH)-unknown-freebsd$(OSREL) + +post-install: + ${LN} -s ${PREFIX}/lib/libdb3.1.so ${PREFIX}/lib/libdb3.so.1 + ${LN} -s ${PREFIX}/lib/libdb_cxx3.1.so ${PREFIX}/lib/libdb_cxx3.so.1 .include diff -ruN db3.old/pkg/PLIST db3/pkg/PLIST --- db3.old/pkg/PLIST Fri Sep 22 02:48:44 2000 +++ db3/pkg/PLIST Fri Sep 22 02:40:42 2000 @@ -15,10 +15,12 @@ lib/libdb.so lib/libdb3.1.la lib/libdb3.1.so +lib/libdb3.so.1 lib/libdb3.so lib/libdb_cxx.so lib/libdb_cxx3.1.la lib/libdb_cxx3.1.so +lib/libdb_cxx3.so.1 lib/libdb_cxx3.so share/doc/db3/api_c/c_pindex.html share/doc/db3/api_c/pindex.src >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 Sep 22 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 637CD37B422 for ; Fri, 22 Sep 2000 02:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA38808; Fri, 22 Sep 2000 02:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 02:10:03 -0700 (PDT) Message-Id: <200009220910.CAA38808@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Sascha.Valckenierkips@RUV.de Subject: Re: ports/21450: cdrecord can't find my recorder TEAC CDR-55S on SCSI Reply-To: Sascha.Valckenierkips@RUV.de Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21450; it has been noted by GNATS. From: Sascha.Valckenierkips@RUV.de To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/21450: cdrecord can't find my recorder TEAC CDR-55S on SCSI Date: Fri, 22 Sep 2000 11:05:24 +0200 Hello, please close the Problem ports/21450 from me (Sascha Valckenier Kips @ merlingermany@t-online.de). The problem was corrected with following corrections: cd /dev ./MAKEDEV pass5 Thanks for speedley help Sascha Valckenier Kips To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 2:47:40 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 AF3D737B422; Fri, 22 Sep 2000 02:47:36 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id FAA25760; Fri, 22 Sep 2000 05:47:28 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8M9kwt95095; Fri, 22 Sep 2000 02:46:58 -0700 (PDT) (envelope-from asami) To: ports@FreeBSD.org Cc: committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT avail References: <200009220938.CAA48089@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 22 Sep 2000 02:46:07 -0700 In-Reply-To: Satoshi Asami's message of "Fri, 22 Sep 2000 02:38:06 -0700 (PDT)" Message-ID: Lines: 37 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, You guys can start committing again. (I'm sure sobomax's fingers are itching. :p) By the way, since I'm going to sleep soon, please check this URL: http://onigiri.FreeBSD.org/errorlogs/errorlogs/e.4.20000922/ periodically to see if there is anything suspicious. Particularly important is if something with a large "Aff." (affected ports) field shows up, since that means a lot of other packages aren't building. If there is a problem and you know how to fix it, please send me a private mail (you can send it to ports too, but make sure you have "asami@FreeBSD.org" in To: or CC: so I will notice it right away). Remember, this is a net-only release, so no "please put this update in" type requests please. ;) Thanks! -PW ------- From: Satoshi Asami Date: Fri, 22 Sep 2000 02:38:06 -0700 (PDT) Sender: owner-cvs-committers@FreeBSD.org asami 2000/09/22 02:38:06 PDT Modified files: . avail Log: The ports freeze is over. Thanks for your cooperation! :> Revision Changes Path 1.126 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 3:10: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 BFB9237B449 for ; Fri, 22 Sep 2000 03:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA55729; Fri, 22 Sep 2000 03:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hole.etrust.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 2B12037B422 for ; Fri, 22 Sep 2000 03:06:02 -0700 (PDT) Received: (from osa@localhost) by hole.etrust.ru (8.9.3/8.9.3) id OAA73526; Fri, 22 Sep 2000 14:05:11 +0400 (MSD) (envelope-from osa) Message-Id: <200009221005.OAA73526@hole.etrust.ru> Date: Fri, 22 Sep 2000 14:05:11 +0400 (MSD) From: osa@FreeBSD.org.ru Reply-To: osa@FreeBSD.org.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21470: Fix shared libs environment in databases/db3 and remove ports/21469 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21470 >Category: ports >Synopsis: Fix shared libs environment in databases/db3 and remove ports/21469 >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 Sep 22 03:10:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 5.0-CURRENT i386 >Organization: Russian FreeBSD Team >Environment: FreeBSD 5.0-CURRENT i386 >Description: Fix shared libs environment in databases/db3 and remove ports/21469 >How-To-Repeat: >Fix: Please remove ports/21469 and add following patch diff -ruN db3.old/Makefile db3/Makefile --- db3.old/Makefile Fri Sep 22 02:48:44 2000 +++ db3/Makefile Fri Sep 22 02:49:15 2000 @@ -27,5 +27,9 @@ --prefix=${PREFIX} \ --includedir=${PREFIX}/include/db3 CONFIGURE_TARGET= $(ARCH)-unknown-freebsd$(OSREL) + +post-install: + ${LN} -s ${PREFIX}/lib/libdb3.1.so ${PREFIX}/lib/libdb3.so.1 + ${LN} -s ${PREFIX}/lib/libdb_cxx3.1.so ${PREFIX}/lib/libdb_cxx3.so.1 .include diff -ruN db3.old/pkg/PLIST db3/pkg/PLIST --- db3.old/pkg/PLIST Fri Sep 22 02:48:44 2000 +++ db3/pkg/PLIST Fri Sep 22 02:40:42 2000 @@ -15,10 +15,12 @@ lib/libdb.so lib/libdb3.1.la lib/libdb3.1.so +lib/libdb3.so.1 lib/libdb3.so lib/libdb_cxx.so lib/libdb_cxx3.1.la lib/libdb_cxx3.1.so +lib/libdb_cxx3.so.1 lib/libdb_cxx3.so share/doc/db3/api_c/c_pindex.html share/doc/db3/api_c/pindex.src >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 Sep 22 3: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 0626A37B424; Fri, 22 Sep 2000 03:34:12 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA60223; Fri, 22 Sep 2000 03:34:11 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Date: Fri, 22 Sep 2000 03:34:11 -0700 (PDT) From: Message-Id: <200009221034.DAA60223@freefall.freebsd.org> To: merlingermany@t-online.de, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21450: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cdrecord can't find my recorder TEAC CDR-55S on SCSI id 0:4:0 State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Fri Sep 22 03:33:40 PDT 2000 State-Changed-Why: Submitter reports MAKEDEV'ing /dev/pass4 solved the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=21450 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 4:20: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 BCB2037B424 for ; Fri, 22 Sep 2000 04:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA73562; Fri, 22 Sep 2000 04:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rantantan.pinpott.spnet.ne.jp (rantantan.pinpott.spnet.ne.jp [211.0.149.42]) by hub.freebsd.org (Postfix) with ESMTP id 3EE2F37B422 for ; Fri, 22 Sep 2000 04:18:38 -0700 (PDT) Received: (from makoto@localhost) by rantantan.pinpott.spnet.ne.jp (8.9.3/8.9.3) id UAA47502; Fri, 22 Sep 2000 20:18:45 +0900 (JST) (envelope-from makoto) Message-Id: <200009221118.UAA47502@rantantan.pinpott.spnet.ne.jp> Date: Fri, 22 Sep 2000 20:18:45 +0900 (JST) From: makoto@pinpott.spnet.ne.jp Reply-To: makoto@pinpott.spnet.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21472: Update port: japanese/zangband (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21472 >Category: ports >Synopsis: Update port: japanese/zangband (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: Fri Sep 22 04:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Makoto YAMAKURA >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: o Imported some variables from master port. Please commit this PR and master port's PR at the same time. Thanks. >How-To-Repeat: >Fix: diff -x work -x *~ -x *gz -x *.orig -ruN zangband-master/Makefile zangband/Makefile --- zangband-master/Makefile Thu Aug 10 02:37:47 2000 +++ zangband/Makefile Wed Sep 20 12:30:33 2000 @@ -16,5 +16,10 @@ DESCR= ${.CURDIR}/pkg/DESCR JAPANESE= yes +JA_MASTER_SITE= http://www.geocities.co.jp/SiliconValley-SanJose/9606/zg/ +ANGBANDLIB?= lib/jzangband +ANGBANDBIN?= bin/jzangband +JA_PLIST= PLIST.ja +MAKE_ARGS+= JAPANESE_CFLAGS="-DJP -DEUC" .include "${MASTERDIR}/Makefile" >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 Sep 22 4:20: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 93A9437B423 for ; Fri, 22 Sep 2000 04:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA73551; Fri, 22 Sep 2000 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rantantan.pinpott.spnet.ne.jp (rantantan.pinpott.spnet.ne.jp [211.0.149.42]) by hub.freebsd.org (Postfix) with ESMTP id E000837B422 for ; Fri, 22 Sep 2000 04:18:32 -0700 (PDT) Received: (from makoto@localhost) by rantantan.pinpott.spnet.ne.jp (8.9.3/8.9.3) id UAA47406; Fri, 22 Sep 2000 20:18:38 +0900 (JST) (envelope-from makoto) Message-Id: <200009221118.UAA47406@rantantan.pinpott.spnet.ne.jp> Date: Fri, 22 Sep 2000 20:18:38 +0900 (JST) From: makoto@pinpott.spnet.ne.jp Reply-To: makoto@pinpott.spnet.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21471: Update port: games/zangband (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21471 >Category: ports >Synopsis: Update port: games/zangband (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: Fri Sep 22 04:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Makoto YAMAKURA >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: o Update patch for japanese/zangband satellite port. o Some variables moved to satellite port's Makefile. o No files added/removed. This update doesn't affect to games/zangband package, so I don't increase PORTREVISON. Satellite port have its own version (.j000922). Please commit this PR and satellite port's PR at the same time. Thanks. >How-To-Repeat: >Fix: diff -x work -x *~ -x *gz -x *.orig -ruN zangband-master/Makefile zangband/Makefile --- zangband-master/Makefile Thu Sep 21 03:37:13 2000 +++ zangband/Makefile Fri Sep 22 19:21:24 2000 @@ -6,18 +6,16 @@ # PORTNAME= zangband -PORTVERSION= 2.4.0${JP_VERSION} +PORTVERSION= 2.4.0${JA_VERSION} PORTREVISION= 1 CATEGORIES+= games MASTER_SITES= ftp://export.andrew.cmu.edu/angband/Variant/ \ ftp://ftp.sunet.se/pub/games/Angband/Variant/ \ - http://www.geocities.co.jp/SiliconValley-SanJose/9606/zg/ -DISTFILES= zangband-${E_VERSION:S/.//g}-src.zip -.if defined(JAPANESE) -DISTFILES+= zj${E_VERSION:S/.//g}ux-${PATCH_VERSION}.tgz -.endif -DIST_SUBDIR= zangband -EXTRACT_ONLY= zangband-${E_VERSION:S/.//g}-src.zip + ${JA_MASTER_SITE} +DISTFILES= ${PORTNAME}-${E_VERSION:S/.//g}-src.zip \ + ${JA_DISTFILE} +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${PORTNAME}-${E_VERSION:S/.//g}-src.zip MAINTAINER= makoto@pinpott.spnet.ne.jp @@ -40,27 +38,24 @@ BINMODE= 2755 MAKE_ARGS+= ANGBANDLIB=${PREFIX}/${ANGBANDLIB} -.if !defined(JAPANESE) -ANGBANDLIB?= lib/zangband -ANGBANDBIN?= bin/zangband -.else -ANGBANDLIB?= lib/jzangband -ANGBANDBIN?= bin/jzangband -.endif +ANGBANDLIB?= lib/${PORTNAME} +ANGBANDBIN?= bin/${PORTNAME} + +E_VERSION= ${PORTVERSION:S/${JA_VERSION}//} -E_VERSION= ${PORTVERSION:S/${JP_VERSION}//} .if defined(JAPANESE) -PATCH_VERSION?= 000901 -JP_VERSION= .j${PATCH_VERSION} -PLIST_ADD= ${PKGDIR}/PLIST.ja -MAKE_ARGS+= JAPANESE_CFLAGS="-DJP -DEUC" +PATCH_VERSION?= 000922 +JA_VERSION= .j${PATCH_VERSION} +JA_DISTFILE= zj${E_VERSION:S/.//g}ux-${PATCH_VERSION}.tgz .endif -pre-patch: .if defined(JAPANESE) +pre-patch: (cd ${WRKSRC} ; ${TAR} zxf ${DISTDIR}/${DIST_SUBDIR}/zj${E_VERSION:S/.//g}ux-${PATCH_VERSION}.tgz) (cd ${WRKSRC}/src ; ${PATCH} -p1 -l -s < ../zj${E_VERSION:S/.//g}.patch ; ${PATCH} -p1 -l -s < ${FILESDIR}/makefile-adjust.patch) .endif + +pre-build: ${CP} ${FILESDIR}/Makefile.in ${WRKSRC}/Makefile ${CP} ${WRKSRC}/src/makefile.std ${WRKSRC}/src/Makefile @${SED} -e "s|%%PREFIX%%|${PREFIX}|g;s|%%ANGBANDBIN%%|${ANGBANDBIN}|g;s|%%ANGBANDLIB%%|${ANGBANDLIB}|g" ${FILESDIR}/MESSAGE.in > ${PKGMESSAGE} @@ -89,8 +84,8 @@ post-build: @${RM} -f ${PLIST} -.for i in ${PKGDIR}/PLIST.a ${PLIST_ADD} ${PKGDIR}/PLIST.b - @${CAT} ${i} >> ${PLIST} +.for i in PLIST.a ${JA_PLIST} PLIST.b + @${CAT} ${PKGDIR}/${i} >> ${PLIST} .endfor .include diff -x work -x *~ -x *gz -x *.orig -ruN zangband-master/files/md5 zangband/files/md5 --- zangband-master/files/md5 Thu Sep 21 03:37:13 2000 +++ zangband/files/md5 Fri Sep 22 19:24:03 2000 @@ -1,2 +1,2 @@ MD5 (zangband/zangband-240-src.zip) = 4854d25e7297b5523304398e082cf069 -MD5 (zangband/zj240ux-000901.tgz) = 418692eb496d7bdd51c7794741605130 +MD5 (zangband/zj240ux-000922.tgz) = cd3650c30a9d779eecc7a8e15409d90e >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 Sep 22 4:32:34 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 C77EB37B422; Fri, 22 Sep 2000 04:32:32 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8MBWVQ19842; Fri, 22 Sep 2000 07:32:31 -0400 (EDT) Date: Fri, 22 Sep 2000 07:32:31 -0400 (EDT) From: Trevor Johnson To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT avail 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 > By the way, since I'm going to sleep soon, please check this URL: > > http://onigiri.FreeBSD.org/errorlogs/errorlogs/e.4.20000922/ > > periodically to see if there is anything suspicious. Particularly > important is if something with a large "Aff." (affected ports) field > shows up, since that means a lot of other packages aren't building. Something bad happened with netatalk: - the "Repository" column is blank, whereas it should say "net/netatalk" - the "Maintainer" column says "make" but should say "stb@freebsd.org" - the logfile contains this horkage: maintained by: stb@freebsd.org build started at Fri Sep 22 09:27:15 GMT 2000 ================================================================ ======================================== >> mpd-3.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/a 262877 bytes transferred in 1.9 seconds (137.75 kBps) >> Checksum OK for netatalk-1.4b2.tar.gz. ========================================= ===> Extracting for mpd-2.0.b2 >> Checksum OK for mpd-2.0b2.tar===> ===> Patching for mpd-2.0.b2 ===> Applying FreeBSD patches for mpd-2.0.b2 -- 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 Sep 22 4:48:15 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 5F6FE37B423 for ; Fri, 22 Sep 2000 04:48:13 -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 NAA06585; Fri, 22 Sep 2000 13:56:04 +0200 Received: (from tg@localhost) by cip12.melaten.rwth-aachen.de (8.9.3/8.9.3) id NAA15022; Fri, 22 Sep 2000 13:52:47 +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: Johann Visagie Cc: ports@freebsd.org Subject: Re: Problems building math/numpy References: <20000920181750.A52034@fling.sanbi.ac.za> From: Thomas Gellekum In-Reply-To: Johann Visagie's message of "Wed, 20 Sep 2000 18:17:51 +0200" Date: 22 Sep 2000 13:52:47 +0200 Message-ID: Lines: 13 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 Johann Visagie writes: > There are some problems with the math/numpy port. Firstly, they made a minor > bugfix and bumped the version number from 16.1 to 16.1.1, removing the source > tarballs for 16.1. > > That's easy to fix. I was going to patch and send it to you / submit it > myself, but then noticed that it still doesn't build on a 3.5-STABLE box, due > to libg2c not being found. Ok, try again. Build the new math/lapack first, though. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 5: 7:37 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 5FE7D37B42C; Fri, 22 Sep 2000 05:07:33 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 9ECAB1A25; Fri, 22 Sep 2000 07:03:17 -0500 (EST) Date: Fri, 22 Sep 2000 07:03:17 -0500 From: Will Andrews To: Ade Lovett Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Cleaning up use of site_perl directories in Makefiles Message-ID: <20000922070317.E3094@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Ade Lovett , asami@FreeBSD.ORG, ports@FreeBSD.ORG References: <20000921125700.S61840@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: <20000921125700.S61840@FreeBSD.org>; from ade@FreeBSD.ORG on Thu, Sep 21, 2000 at 12:57:00PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 21, 2000 at 12:57:00PM -0500, Ade Lovett wrote: > further along down the line, it may be advisable to have a bsd.perl.mk Having touched a large number of p5-* ports, I can safely say I know quite a number of things that are common amongst perl ports and could be consolidated in a bsd.perl.mk. > =================================================================== > RCS file: /home/src/FreeBSD/ports/Mk/bsd.port.mk,v > retrieving revision 1.350 > diff -u -r1.350 bsd.port.mk > --- bsd.port.mk 2000/09/13 07:16:49 1.350 > +++ bsd.port.mk 2000/09/21 17:51:47 > @@ -854,6 +854,10 @@ > PERL_VER=${PERL_VER} \ > PERL_ARCH=${PERL_ARCH} > > +PERL_BASE?= ${LOCALBASE} > +PERL_SITE= ${PERL_BASE}/lib/perl5/site_perl/${PERL_VER} > +PERL_SITE_ARCH= ${PERL_SITE}/${PERL_ARCH} > + > .if exists(/usr/bin/perl5) && ${OSVERSION} >= 300000 > # 3.0-current after perl5 import > .if !exists(/usr/bin/perl${PERL_VERSION}) && defined(USE_PERL5) This is fine for the interim. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 5: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 A419337B42C for ; Fri, 22 Sep 2000 05:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA84401; Fri, 22 Sep 2000 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 05:10:02 -0700 (PDT) Message-Id: <200009221210.FAA84401@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21455: update graphics/giram Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21455; it has been noted by GNATS. From: Will Andrews To: Brandon Fosdick Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21455: update graphics/giram Date: Fri, 22 Sep 2000 07:00:27 -0500 On Thu, Sep 21, 2000 at 01:17:58PM -0400, Brandon Fosdick wrote: > >Synopsis: update graphics/giram to 0.1.7 [...] > *** Makefile Thu Sep 21 12:51:28 2000 > --- Makefile.orig Thu Sep 21 13:11:35 2000 > *************** PORTNAME= giram > *** 9 **** > ! PORTVERSION= 0.1.7 > --- 9 ---- > ! PORTVERSION= 0.1.6 Next time try doing the diff the other way around, and including a MD5 checksum update. :) -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 5:16:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (p3E9C110C.dip.t-dialin.net [62.156.17.12]) by hub.freebsd.org (Postfix) with ESMTP id 98D8437B422; Fri, 22 Sep 2000 05:15:59 -0700 (PDT) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id D2253AB91; Fri, 22 Sep 2000 14:16:18 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 7D69F14A69; Fri, 22 Sep 2000 14:16:04 +0200 (CEST) Date: Fri, 22 Sep 2000 14:16:04 +0200 To: Dag-Erling Smorgrav Cc: ports@freebsd.org Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl Message-ID: <20000922141604.A10810@cichlids.cichlids.com> Mail-Followup-To: alex@cichlids.cichlids.com, Dag-Erling Smorgrav , ports@freebsd.org References: <200009191925.MAA43143@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: <200009191925.MAA43143@freefall.freebsd.org>; from des@FreeBSD.org on Tue, Sep 19, 2000 at 12:25:05PM -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. From: alex@big.endian.de (Alexander Langer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Dag-Erling Smorgrav (des@FreeBSD.org): > Added files: > misc/porteasy/src porteasy.8 porteasy.pl Hmmmm. This is against conventions :) 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 Fri Sep 22 5:35:46 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 C67ED37B423; Fri, 22 Sep 2000 05:35:41 -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 VAA28037; Fri, 22 Sep 2000 21:35:07 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e8MCYUW45566; Fri, 22 Sep 2000 21:34:31 +0900 (JST) Date: Fri, 22 Sep 2000 21:34:26 +0900 Message-ID: <86zol08v1p.wl@archon.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: will@physics.purdue.edu Cc: ade@FreeBSD.ORG, asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Cleaning up use of site_perl directories in Makefiles In-Reply-To: In your message of "Fri, 22 Sep 2000 07:03:17 -0500" <20000922070317.E3094@puck.firepipe.net> References: <20000921125700.S61840@FreeBSD.org> <20000922070317.E3094@puck.firepipe.net> 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 Fri, 22 Sep 2000 07:03:17 -0500, Will Andrews wrote: > > On Thu, Sep 21, 2000 at 12:57:00PM -0500, Ade Lovett wrote: > > further along down the line, it may be advisable to have a bsd.perl.mk > > Having touched a large number of p5-* ports, I can safely say I know > quite a number of things that are common amongst perl ports and could be > consolidated in a bsd.perl.mk. > > > =================================================================== > > RCS file: /home/src/FreeBSD/ports/Mk/bsd.port.mk,v > > retrieving revision 1.350 > > diff -u -r1.350 bsd.port.mk > > --- bsd.port.mk 2000/09/13 07:16:49 1.350 > > +++ bsd.port.mk 2000/09/21 17:51:47 > > @@ -854,6 +854,10 @@ > > PERL_VER=${PERL_VER} \ > > PERL_ARCH=${PERL_ARCH} > > > > +PERL_BASE?= ${LOCALBASE} > > +PERL_SITE= ${PERL_BASE}/lib/perl5/site_perl/${PERL_VER} > > +PERL_SITE_ARCH= ${PERL_SITE}/${PERL_ARCH} > > + > > .if exists(/usr/bin/perl5) && ${OSVERSION} >= 300000 > > # 3.0-current after perl5 import > > .if !exists(/usr/bin/perl${PERL_VERSION}) && defined(USE_PERL5) > > This is fine for the interim. FWIW, bsd.ruby.mk was designed to be compatible with PERL_* variables and cleanly extended. I think the following variables defined in bsd.ruby.mk could be applied to Perl. # Directories RUBY_LIBDIR?= ${LOCALBASE}/lib/ruby/${RUBY_VER} RUBY_ARCHLIBDIR?= ${RUBY_LIBDIR}/${RUBY_ARCH} RUBY_SITELIBDIR?= ${LOCALBASE}/lib/ruby/site_ruby/${RUBY_VER} RUBY_SITEARCHLIBDIR?= ${RUBY_SITELIBDIR}/${RUBY_ARCH} RUBY_DOCDIR?= ${LOCALBASE}/share/doc/${RUBY_NAME} RUBY_EXAMPLESDIR?= ${LOCALBASE}/share/examples/${RUBY_NAME} So, what about these? PERL_NAME?= perl5 PERL_LIBDIR?= /usr/libdata/perl/${PERL_VER} PERL_ARCHLIBDIR?= ${PERL_LIBDIR}/${PERL_ARCH} PERL_SITELIBDIR?= ${LOCALBASE}/lib/${PERL_NAME}/site_perl/${PERL_VER} PERL_SITEARCHLIBDIR?= ${PERL_SITELIBDIR}/${PERL_ARCH} PERL_MANDIR?= ${LOCALBASE}/lib/${PERL_NAME}/${PERL_VER}/man Probably those PERL_* part should move to bsd.perl.mk. -- / /__ __ / ) ) ) ) / 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 Fri Sep 22 5: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 BD40637B423; Fri, 22 Sep 2000 05:38:07 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA90625; Fri, 22 Sep 2000 05:38:07 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Fri, 22 Sep 2000 05:38:07 -0700 (PDT) From: Message-Id: <200009221238.FAA90625@freefall.freebsd.org> To: osa@FreeBSD.org.ru, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21469: Fix shared libs environment in databases/db3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix shared libs environment in databases/db3 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Fri Sep 22 05:36:54 PDT 2000 State-Changed-Why: Close at originator's requiest (he revised it and submitted as a ports/21470). http://www.freebsd.org/cgi/query-pr.cgi?pr=21469 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 6:13:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id DBAC037B422 for ; Fri, 22 Sep 2000 06:13:41 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Fri, 22 Sep 2000 15:13:30 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id PAA44346; Fri, 22 Sep 2000 15:13:03 +0200 (CEST) (envelope-from esk) From: Espen Skoglund MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 22 Sep 2000 15:13:02 +0200 (CEST) To: ports@freebsd.org Subject: Modifying linkopts in libtool X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14795.15262.123604.865457@i30nb2.ira.uka.de> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I was trying to create a port containing a shared library using the _fini() function for cleanup. The package was also using libtool, and it had put `linkopts=-nostdlib' in its ltmain.sh in order avoid conflicts with the _fini() function in crtbeginS.o. However, when I specify USE_LIBTOOL in the port-makefile, the port-version of libtool is used instead of the one inside the package. Does anyone have any suggestion of how to cope with this? I thought about modifying the package makefile or something, but this is sort of troublesome because libtool ignores most of the command line options that you pass to it. The soultion that I've currently come up with is to add a pre-build target that patches the produced libtool script to include the linkopts line above, but I would prefer something that could be incorporated into the package. eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 6: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 E3C4937B424 for ; Fri, 22 Sep 2000 06:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99363; Fri, 22 Sep 2000 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id E8B5D37B423 for ; Fri, 22 Sep 2000 06:15:50 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8MDFob22503 for ; Fri, 22 Sep 2000 09:15:50 -0400 (EDT) Message-Id: Date: Fri, 22 Sep 2000 09:15:49 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21473: update devel/SN to 4.5.2, not from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21473 >Category: ports >Synopsis: update devel/SN to 4.5.2, not 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: Fri Sep 22 06:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: - bump version - drop USE_BZIP2 because only gzipped distfile is now available - add more mirror sites (checked in July) - factor out common subdirectory on sites - accommodate new configure script's requirement for a parallel directory - sort PLIST - add missing files to PLIST (an empty /usr/local/SN/ is still left behind after deinstallation--could be taken care of by a pkg/DEINSTALL) - support NOPORTDOCS - in COMMENT, correct spelling of "Red Hat" - mention Python in DESCR - add do-install target rather than using the one in the program's top-level Makefile, for more control over what gets installed - omit grep, egrep, and fgrep, because they are present in the base system on FreeBSD - omit Tk and Tcl man pages, because they are available by installing those ports and are difficult to use from the SN port's non-standard directories files changed: Makefile files/md5 pkg/COMMENT pkg/DESCR pkg/PLIST >How-To-Repeat: N/A >Fix: http://jpj.net/~trevor/freebsd/ports/sn452.diff.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 Fri Sep 22 7:21:49 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 59DBF37B43C for ; Fri, 22 Sep 2000 07:21:44 -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 RAA06218; Fri, 22 Sep 2000 17:21:21 +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 e8MELMS91830; Fri, 22 Sep 2000 17:21:22 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39CB6ADF.2976F4EF@FreeBSD.org> Date: Fri, 22 Sep 2000 17:21:19 +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: Espen Skoglund Cc: ports@FreeBSD.org Subject: Re: Modifying linkopts in libtool References: <14795.15262.123604.865457@i30nb2.ira.uka.de> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Espen Skoglund wrote: > Hi, > > I was trying to create a port containing a shared library using the > _fini() function for cleanup. The package was also using libtool, and > it had put `linkopts=-nostdlib' in its ltmain.sh in order avoid > conflicts with the _fini() function in crtbeginS.o. However, when I > specify USE_LIBTOOL in the port-makefile, the port-version of libtool > is used instead of the one inside the package. Does anyone have any > suggestion of how to cope with this? I thought about modifying the > package makefile or something, but this is sort of troublesome because > libtool ignores most of the command line options that you pass to it. > The soultion that I've currently come up with is to add a pre-build > target that patches the produced libtool script to include the > linkopts line above, but I would prefer something that could be > incorporated into the package. Add `CONFIGURE_ENV= LDFLAGS="linkopts=-nostdlib"' into port's Makefile or patch appropriate Makefile.in. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7: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 F3A0037B422 for ; Fri, 22 Sep 2000 07:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA14595; Fri, 22 Sep 2000 07:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 07:30:01 -0700 (PDT) Message-Id: <200009221430.HAA14595@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21469: Fix shared libs environment in databases/db3 Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21469; it has been noted by GNATS. From: Will Andrews To: osa@FreeBSD.org.ru Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21469: Fix shared libs environment in databases/db3 Date: Fri, 22 Sep 2000 09:23:50 -0500 On Fri, Sep 22, 2000 at 12:49:20PM +0400, osa@FreeBSD.org.ru wrote: > >Synopsis: Fix shared libs environment in databases/db3 I'll check this out, but..: > -# $FreeBSD: ports/databases/db3/Makefile,v 1.23 2000/09/16 22:57:40 will Exp $ > +# $FreeBSD$ You don't need to touch this. It must be set to $FreeBSD$ for initial revisions, however. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:45: 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 8A3CF37B422; Fri, 22 Sep 2000 07:44:59 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id E82561B3D; Fri, 22 Sep 2000 09:40:44 -0500 (EST) Date: Fri, 22 Sep 2000 09:40:44 -0500 From: Will Andrews To: Alexander Langer Cc: Dag-Erling Smorgrav , ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl Message-ID: <20000922094044.G3094@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Alexander Langer , Dag-Erling Smorgrav , ports@FreeBSD.ORG References: <200009191925.MAA43143@freefall.freebsd.org> <20000922141604.A10810@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: <20000922141604.A10810@cichlids.cichlids.com>; from alex@big.endian.de on Fri, Sep 22, 2000 at 02:16:04PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 22, 2000 at 02:16:04PM +0200, Alexander Langer wrote: > > Added files: > > misc/porteasy/src porteasy.8 porteasy.pl > > Hmmmm. This is against conventions :) See ports/devel/portlint. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:48: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (p3E9C110C.dip.t-dialin.net [62.156.17.12]) by hub.freebsd.org (Postfix) with ESMTP id 54FF437B423; Fri, 22 Sep 2000 07:47:58 -0700 (PDT) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 4B223AB91; Fri, 22 Sep 2000 16:48:16 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id BD89714A69; Fri, 22 Sep 2000 16:47:56 +0200 (CEST) Date: Fri, 22 Sep 2000 16:47:56 +0200 From: Alexander Langer To: Will Andrews , Dag-Erling Smorgrav , ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl Message-ID: <20000922164756.A15934@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Will Andrews , Dag-Erling Smorgrav , ports@FreeBSD.ORG References: <200009191925.MAA43143@freefall.freebsd.org> <20000922141604.A10810@cichlids.cichlids.com> <20000922094044.G3094@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: <20000922094044.G3094@puck.firepipe.net>; from will@physics.purdue.edu on Fri, Sep 22, 2000 at 09:40:44AM -0500 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. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Will Andrews (will@physics.purdue.edu): > > > misc/porteasy/src porteasy.8 porteasy.pl > > Hmmmm. This is against conventions :) > See ports/devel/portlint. Yes, already two. How many are going to come? 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 Fri Sep 22 7:48:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 17E8437B43C; Fri, 22 Sep 2000 07:48:36 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Fri, 22 Sep 2000 16:48:31 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id QAA49575; Fri, 22 Sep 2000 16:48:04 +0200 (CEST) (envelope-from esk) From: Espen Skoglund MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 22 Sep 2000 16:48:03 +0200 (CEST) To: Maxim Sobolev Cc: Espen Skoglund , ports@FreeBSD.org Subject: Re: Modifying linkopts in libtool In-Reply-To: <39CB6ADF.2976F4EF@FreeBSD.org> References: <14795.15262.123604.865457@i30nb2.ira.uka.de> <39CB6ADF.2976F4EF@FreeBSD.org> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14795.28046.251154.85719@i30nb2.ira.uka.de> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Maxim Sobolev] > Espen Skoglund wrote: >> Hi, >> >> I was trying to create a port containing a shared library using the >> _fini() function for cleanup. The package was also using libtool, >> and it had put `linkopts=-nostdlib' in its ltmain.sh in order avoid >> conflicts with the _fini() function in crtbeginS.o. However, when >> I specify USE_LIBTOOL in the port-makefile, the port-version of >> libtool is used instead of the one inside the package. Does anyone >> have any suggestion of how to cope with this? I thought about >> modifying the package makefile or something, but this is sort of >> troublesome because libtool ignores most of the command line >> options that you pass to it. The soultion that I've currently come >> up with is to add a pre-build target that patches the produced >> libtool script to include the linkopts line above, but I would >> prefer something that could be incorporated into the package. > Add `CONFIGURE_ENV= LDFLAGS="linkopts=-nostdlib"' into port's > Makefile or patch appropriate Makefile.in. Well, this won't work. First of all, the linkopts is a shell variable which is defined in the generated libtool script. Second, setting LDFLAGS or anything in the Makefile won't work because the libtool script tends to ignore most of the arguments given to gcc. As far as I can tell by a quick look through the script, the command line for linking is produced by: archive_cmds="\$CC -shared \$compile_rpath \$libobjs \$deplibs \ \$linkopts \${wl}-soname \$wl \$soname -o \$lib" which does not really give any room for extra flags. eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7: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 100C837B423 for ; Fri, 22 Sep 2000 07:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA20106; Fri, 22 Sep 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 3DD9F37B422 for ; Fri, 22 Sep 2000 07:47:41 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8MElej25360 for ; Fri, 22 Sep 2000 10:47:40 -0400 (EDT) Message-Id: Date: Fri, 22 Sep 2000 10:47:40 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21474: new port x11/dynamag Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21474 >Category: ports >Synopsis: new port x11/dynamag >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 Sep 22 07:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: magnifying utility which updates continuously from the source: This is a major rewrite of the xmag program distributed by MIT with X11R5. It features three modes of magnification. The magnifier can be made to follow the mouse pointer around, displaying a magnified image either in a window that is "sticky" to the pointer, or in a stationary window. The magnifier can also be `anchored' to continually magnify a fixed area of the screen. The sticky window no longer works. >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: # # dynamag # dynamag/files # dynamag/files/md5 # dynamag/pkg # dynamag/pkg/COMMENT # dynamag/pkg/DESCR # dynamag/pkg/PLIST # dynamag/Makefile # echo c - dynamag mkdir -p dynamag > /dev/null 2>&1 echo c - dynamag/files mkdir -p dynamag/files > /dev/null 2>&1 echo x - dynamag/files/md5 sed 's/^X//' >dynamag/files/md5 << 'END-of-dynamag/files/md5' XMD5 (unwindows.tar.Z) = 2cce5fac26edd6a7cac21b883d5c92af END-of-dynamag/files/md5 echo c - dynamag/pkg mkdir -p dynamag/pkg > /dev/null 2>&1 echo x - dynamag/pkg/COMMENT sed 's/^X//' >dynamag/pkg/COMMENT << 'END-of-dynamag/pkg/COMMENT' XMagnifying utility which updates continuously END-of-dynamag/pkg/COMMENT echo x - dynamag/pkg/DESCR sed 's/^X//' >dynamag/pkg/DESCR << 'END-of-dynamag/pkg/DESCR' Xfrom the source: X X This is a major rewrite of the xmag program distributed by MIT with X X11R5. It features three modes of magnification. The magnifier X can be made to follow the mouse pointer around, displaying a X magnified image either in a window that is "sticky" to the pointer, X or in a stationary window. The magnifier can also be `anchored' X to continually magnify a fixed area of the screen. X XThe sticky window no longer works. X XWWW: http://trace.wisc.edu/world/computer_access/unix/unixshar.html X XTrevor Johnson Xtrevor@jpj.net END-of-dynamag/pkg/DESCR echo x - dynamag/pkg/PLIST sed 's/^X//' >dynamag/pkg/PLIST << 'END-of-dynamag/pkg/PLIST' Xbin/dynamag END-of-dynamag/pkg/PLIST echo x - dynamag/Makefile sed 's/^X//' >dynamag/Makefile << 'END-of-dynamag/Makefile' X# New ports collection makefile for: dynamag X# Date created: 2000-09-22 X# Whom: Trevor Johnson X# X# $FreeBSD$ X# X XPORTNAME= dynamag XPORTVERSION= 1.1 XCATEGORIES= x11 XMASTER_SITES= ftp://trace.wisc.edu/pub/access_utils/unix/ XDISTNAME= unwindows XEXTRACT_SUFX= .tar.Z X XMAINTAINER= trevor@jpj.net X XUSE_IMAKE= yes XWRKSRC= ${WRKDIR}/${PORTNAME} X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/dynamag ${PREFIX}/bin X X.include END-of-dynamag/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 Fri Sep 22 7:50: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 1CBCE37B422; Fri, 22 Sep 2000 07:50:56 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA20330; Fri, 22 Sep 2000 07:50:56 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Fri, 22 Sep 2000 07:50:56 -0700 (PDT) From: Message-Id: <200009221450.HAA20330@freefall.freebsd.org> To: jeremy@external.org, will@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/21407: Update Port: sysutils/prips Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: sysutils/prips State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Fri Sep 22 07:49:45 PDT 2000 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: will Responsible-Changed-When: Fri Sep 22 07:49:45 PDT 2000 Responsible-Changed-Why: Misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=21407 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:51:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id EC2C837B42C for ; Fri, 22 Sep 2000 07:51:31 -0700 (PDT) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id QAA38631; Fri, 22 Sep 2000 16:51:16 +0200 (CEST) (envelope-from des@ofug.org) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: alex@big.endian.de (Alexander Langer) Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl References: <200009191925.MAA43143@freefall.freebsd.org> <20000922141604.A10810@cichlids.cichlids.com> From: Dag-Erling Smorgrav Date: 22 Sep 2000 16:51:16 +0200 In-Reply-To: alex@big.endian.de's message of "Fri, 22 Sep 2000 14:16:04 +0200" Message-ID: Lines: 15 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org alex@big.endian.de (Alexander Langer) writes: > Thus spake Dag-Erling Smorgrav (des@FreeBSD.org): > > Added files: > > misc/porteasy/src porteasy.8 porteasy.pl > Hmmmm. This is against conventions :) An enquiry to freebsd-ports indicated that there were no objections to this setup. In any case, I expect that porteasy (or some derivative) will eventually enter the base system. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:54:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thelab.hub.org (CDR20-57.accesscable.net [24.138.20.57]) by hub.freebsd.org (Postfix) with ESMTP id 2971F37B422 for ; Fri, 22 Sep 2000 07:54:24 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.0/8.11.0) with ESMTP id e8MErU520032 for ; Fri, 22 Sep 2000 11:53:31 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Fri, 22 Sep 2000 11:53:30 -0300 (ADT) From: The Hermit Hacker To: freebsd-ports@freebsd.org Subject: libxpg4.so.2 not found for java ... 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 hub# /usr/local/jdk1.1.8/bin/javac /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.2" not found what port do I need to install to fix this? :( thanks ... Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:55:14 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 7DFBE37B422 for ; Fri, 22 Sep 2000 07:55:09 -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 RAA06830; Fri, 22 Sep 2000 17:54: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 e8MEslS04758; Fri, 22 Sep 2000 17:54:47 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39CB72B3.4B256183@FreeBSD.org> Date: Fri, 22 Sep 2000 17:54:44 +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: Espen Skoglund Cc: ports@FreeBSD.org Subject: Re: Modifying linkopts in libtool References: <14795.15262.123604.865457@i30nb2.ira.uka.de> <39CB6ADF.2976F4EF@FreeBSD.org> <14795.28046.251154.85719@i30nb2.ira.uka.de> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Espen Skoglund wrote: > [Maxim Sobolev] > > Espen Skoglund wrote: > >> Hi, > >> > >> I was trying to create a port containing a shared library using the > >> _fini() function for cleanup. The package was also using libtool, > >> and it had put `linkopts=-nostdlib' in its ltmain.sh in order avoid > >> conflicts with the _fini() function in crtbeginS.o. However, when > >> I specify USE_LIBTOOL in the port-makefile, the port-version of > >> libtool is used instead of the one inside the package. Does anyone > >> have any suggestion of how to cope with this? I thought about > >> modifying the package makefile or something, but this is sort of > >> troublesome because libtool ignores most of the command line > >> options that you pass to it. The soultion that I've currently come > >> up with is to add a pre-build target that patches the produced > >> libtool script to include the linkopts line above, but I would > >> prefer something that could be incorporated into the package. > > > Add `CONFIGURE_ENV= LDFLAGS="linkopts=-nostdlib"' into port's > > Makefile or patch appropriate Makefile.in. > > Well, this won't work. First of all, the linkopts is a shell variable > which is defined in the generated libtool script. Second, setting > LDFLAGS or anything in the Makefile won't work because the libtool > script tends to ignore most of the arguments given to gcc. As far as > I can tell by a quick look through the script, the command line for > linking is produced by: > > archive_cmds="\$CC -shared \$compile_rpath \$libobjs \$deplibs \ > \$linkopts \${wl}-soname \$wl \$soname -o \$lib" > > which does not really give any room for extra flags. Oh, I see my error. Here is right version: `CONFIGURE_ENV= LDFLAGS="-nostdlib"' -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:55: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 6523237B422; Fri, 22 Sep 2000 07:55:16 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA21407; Fri, 22 Sep 2000 07:55:16 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Fri, 22 Sep 2000 07:55:16 -0700 (PDT) From: Message-Id: <200009221455.HAA21407@freefall.freebsd.org> To: jeremy@external.org, will@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21408: Update Port: sysutils/ipsc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: sysutils/ipsc State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Fri Sep 22 07:54:37 PDT 2000 State-Changed-Why: Committed, thanks. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: will Responsible-Changed-When: Fri Sep 22 07:54:37 PDT 2000 Responsible-Changed-Why: Misfiled PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=21408 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:56:45 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 3F44B37B424 for ; Fri, 22 Sep 2000 07:56:39 -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 RAA06873; Fri, 22 Sep 2000 17:56:32 +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 e8MEuYS14643; Fri, 22 Sep 2000 17:56:34 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39CB731E.CE28CC48@FreeBSD.org> Date: Fri, 22 Sep 2000 17:56:30 +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: The Hermit Hacker Cc: freebsd-ports@FreeBSD.org Subject: Re: libxpg4.so.2 not found for java ... References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Hermit Hacker wrote: > hub# /usr/local/jdk1.1.8/bin/javac > /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.2" not found > > what port do I need to install to fix this? :( src/lib/compat/compat3x.i386, if we can call it "port" ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 7:57:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (p3E9C110C.dip.t-dialin.net [62.156.17.12]) by hub.freebsd.org (Postfix) with ESMTP id E6B8637B42C for ; Fri, 22 Sep 2000 07:57:35 -0700 (PDT) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 5D244AB91; Fri, 22 Sep 2000 16:57:54 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 8351B14A69; Fri, 22 Sep 2000 16:57:26 +0200 (CEST) Date: Fri, 22 Sep 2000 16:57:26 +0200 From: Alexander Langer To: Dag-Erling Smorgrav Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl Message-ID: <20000922165726.A16223@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Dag-Erling Smorgrav , ports@FreeBSD.org References: <200009191925.MAA43143@freefall.freebsd.org> <20000922141604.A10810@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: ; from des@ofug.org on Fri, Sep 22, 2000 at 04:51:16PM +0200 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. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Dag-Erling Smorgrav (des@ofug.org): > An enquiry to freebsd-ports indicated that there were no objections to > this setup. Oh, sorry. I missed that. :-( > In any case, I expect that porteasy (or some derivative) will > eventually enter the base system. Cool! 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 Fri Sep 22 8: 1:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id D76D337B422; Fri, 22 Sep 2000 08:01:37 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Fri, 22 Sep 2000 17:01:33 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id RAA53267; Fri, 22 Sep 2000 17:01:06 +0200 (CEST) (envelope-from esk) From: Espen Skoglund MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 22 Sep 2000 17:01:05 +0200 (CEST) To: Maxim Sobolev Cc: Espen Skoglund , ports@FreeBSD.org Subject: Re: Modifying linkopts in libtool In-Reply-To: <39CB72B3.4B256183@FreeBSD.org> References: <14795.15262.123604.865457@i30nb2.ira.uka.de> <39CB6ADF.2976F4EF@FreeBSD.org> <14795.28046.251154.85719@i30nb2.ira.uka.de> <39CB72B3.4B256183@FreeBSD.org> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <14795.29665.324923.882046@i30nb2.ira.uka.de> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Maxim Sobolev] > Espen Skoglund wrote: >> [Maxim Sobolev] >>> Espen Skoglund wrote: >>>> Hi, >>>> >>>> I was trying to create a port containing a shared library using >>>> the _fini() function for cleanup. The package was also using >>>> libtool, and it had put `linkopts=-nostdlib' in its ltmain.sh in >>>> order avoid conflicts with the _fini() function in crtbeginS.o. >>>> However, when I specify USE_LIBTOOL in the port-makefile, the >>>> port-version of libtool is used instead of the one inside the >>>> package. Does anyone have any suggestion of how to cope with >>>> this? I thought about modifying the package makefile or >>>> something, but this is sort of troublesome because libtool >>>> ignores most of the command line options that you pass to it. >>>> The soultion that I've currently come up with is to add a >>>> pre-build target that patches the produced libtool script to >>>> include the linkopts line above, but I would prefer something >>>> that could be incorporated into the package. >> >>> Add `CONFIGURE_ENV= LDFLAGS="linkopts=-nostdlib"' into port's >>> Makefile or patch appropriate Makefile.in. >> >> Well, this won't work. First of all, the linkopts is a shell >> variable which is defined in the generated libtool script. Second, >> setting LDFLAGS or anything in the Makefile won't work because the >> libtool script tends to ignore most of the arguments given to gcc. >> As far as I can tell by a quick look through the script, the >> command line for linking is produced by: >> >> archive_cmds="\$CC -shared \$compile_rpath \$libobjs \$deplibs \ >> \$linkopts \${wl}-soname \$wl \$soname -o \$lib" >> >> which does not really give any room for extra flags. > Oh, I see my error. Here is right version: > `CONFIGURE_ENV= LDFLAGS="-nostdlib"' Does not work since the libtool script ignores the -nostdlib flag when producing the actual command line. eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 8: 8: 5 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 A1C0B37B424 for ; Fri, 22 Sep 2000 08:07:55 -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 SAA07075; Fri, 22 Sep 2000 18:07:50 +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 e8MF7pS31789; Fri, 22 Sep 2000 18:07:51 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39CB75C4.FD5FA957@FreeBSD.org> Date: Fri, 22 Sep 2000 18:07: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: Espen Skoglund Cc: ports@FreeBSD.org Subject: Re: Modifying linkopts in libtool References: <14795.15262.123604.865457@i30nb2.ira.uka.de> <39CB6ADF.2976F4EF@FreeBSD.org> <14795.28046.251154.85719@i30nb2.ira.uka.de> <39CB72B3.4B256183@FreeBSD.org> <14795.29665.324923.882046@i30nb2.ira.uka.de> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Espen Skoglund wrote: > [Maxim Sobolev] > > Espen Skoglund wrote: > >> [Maxim Sobolev] > >>> Espen Skoglund wrote: > >>>> Hi, > >>>> > >>>> I was trying to create a port containing a shared library using > >>>> the _fini() function for cleanup. The package was also using > >>>> libtool, and it had put `linkopts=-nostdlib' in its ltmain.sh in > >>>> order avoid conflicts with the _fini() function in crtbeginS.o. > >>>> However, when I specify USE_LIBTOOL in the port-makefile, the > >>>> port-version of libtool is used instead of the one inside the > >>>> package. Does anyone have any suggestion of how to cope with > >>>> this? I thought about modifying the package makefile or > >>>> something, but this is sort of troublesome because libtool > >>>> ignores most of the command line options that you pass to it. > >>>> The soultion that I've currently come up with is to add a > >>>> pre-build target that patches the produced libtool script to > >>>> include the linkopts line above, but I would prefer something > >>>> that could be incorporated into the package. > >> > >>> Add `CONFIGURE_ENV= LDFLAGS="linkopts=-nostdlib"' into port's > >>> Makefile or patch appropriate Makefile.in. > >> > >> Well, this won't work. First of all, the linkopts is a shell > >> variable which is defined in the generated libtool script. Second, > >> setting LDFLAGS or anything in the Makefile won't work because the > >> libtool script tends to ignore most of the arguments given to gcc. > >> As far as I can tell by a quick look through the script, the > >> command line for linking is produced by: > >> > >> archive_cmds="\$CC -shared \$compile_rpath \$libobjs \$deplibs \ > >> \$linkopts \${wl}-soname \$wl \$soname -o \$lib" > >> > >> which does not really give any room for extra flags. > > > Oh, I see my error. Here is right version: > > `CONFIGURE_ENV= LDFLAGS="-nostdlib"' > > Does not work since the libtool script ignores the -nostdlib flag when > producing the actual command line. Oh, ok: post-configure: ${PERL} -pi -e 's|\$$linkopts|\$$linkopts -nostdlib|' ${WRKSRC}/libtool -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 8: 8:20 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 367D937B422; Fri, 22 Sep 2000 08:08:19 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id C8D7C1B3D; Fri, 22 Sep 2000 10:04:04 -0500 (EST) Date: Fri, 22 Sep 2000 10:04:04 -0500 From: Will Andrews To: Alexander Langer Cc: Will Andrews , Dag-Erling Smorgrav , ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl Message-ID: <20000922100404.I3094@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Alexander Langer , Dag-Erling Smorgrav , ports@FreeBSD.ORG References: <200009191925.MAA43143@freefall.freebsd.org> <20000922141604.A10810@cichlids.cichlids.com> <20000922094044.G3094@puck.firepipe.net> <20000922164756.A15934@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: <20000922164756.A15934@cichlids.cichlids.com>; from alex@big.endian.de on Fri, Sep 22, 2000 at 04:47:56PM +0200 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 22, 2000 at 04:47:56PM +0200, Alexander Langer wrote: > Yes, already two. > How many are going to come? Only those necessary. Porteasy / portlint are not really suitable for ports/Tools/scripts since they are intended to be used by normal users as well as developers (ports/Tools/scripts). People can consider myself, asami, mharo, or sobomax the official czars of ports/Tools/scripts directory. ;-) -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 8: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 3380937B42C for ; Fri, 22 Sep 2000 08:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA28150; Fri, 22 Sep 2000 08:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 08:10:02 -0700 (PDT) Message-Id: <200009221510.IAA28150@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21473: update devel/SN to 4.5.2, not from maintainer Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21473; it has been noted by GNATS. From: Will Andrews To: Trevor Johnson Cc: freebsd-gnats-submit@FreeBSD.ORG, Satoshi Asami Subject: Re: ports/21473: update devel/SN to 4.5.2, not from maintainer Date: Fri, 22 Sep 2000 10:05:21 -0500 On Fri, Sep 22, 2000 at 09:15:49AM -0400, Trevor Johnson wrote: > >Synopsis: update devel/SN to 4.5.2, not from maintainer Asami-san, can we get a repocopy of devel/SN to devel/sn, please? I hate uppercase directory names, and they violate the One True Way. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 8:11:52 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 F3E7837B43F for ; Fri, 22 Sep 2000 08:11:50 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 7405C1B47; Fri, 22 Sep 2000 10:07:36 -0500 (EST) Date: Fri, 22 Sep 2000 10:07:36 -0500 From: Will Andrews To: ports@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.mk Message-ID: <20000922100736.K3094@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , ports@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 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ oops.. seems I misspelled "ports@FreeBSD.org".. imagine that! this message was originally CC'd to imura@ and asami@ ] On Thu, Sep 21, 2000 at 06:17:18PM -0700, Satoshi Asami wrote: > (3) USE_QT2 now uses qt22 instead of qt21. > Submitted by: will Imura-san, can we remove qt21 port now? I can perform the deed and update all shlib pointers if any are explicit still. QT 2.2.0 seems proven now. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 8:20: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (p3E9C110C.dip.t-dialin.net [62.156.17.12]) by hub.freebsd.org (Postfix) with ESMTP id C36D337B422 for ; Fri, 22 Sep 2000 08:20:00 -0700 (PDT) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 1946BAB91; Fri, 22 Sep 2000 17:20:17 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id E968F14A69; Fri, 22 Sep 2000 17:20:00 +0200 (CEST) Date: Fri, 22 Sep 2000 17:20:00 +0200 From: Alexander Langer To: Will Andrews , ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc Makefile ports/misc/porteasy Makefile ports/misc/porteasy/pkg COMMENT DESCR PLIST ports/misc/porteasy/src porteasy.8 porteasy.pl Message-ID: <20000922172000.A16706@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Will Andrews , ports@FreeBSD.ORG References: <200009191925.MAA43143@freefall.freebsd.org> <20000922141604.A10810@cichlids.cichlids.com> <20000922094044.G3094@puck.firepipe.net> <20000922164756.A15934@cichlids.cichlids.com> <20000922100404.I3094@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: <20000922100404.I3094@puck.firepipe.net>; from will@physics.purdue.edu on Fri, Sep 22, 2000 at 10:04:04AM -0500 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. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Will Andrews (will@physics.purdue.edu): > People can consider myself, asami, mharo, or sobomax the official czars > of ports/Tools/scripts directory. ;-) I feel forgotten. :-/ Alex (kidding) -- 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 Fri Sep 22 8: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 59DB037B423 for ; Fri, 22 Sep 2000 08:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA34572; Fri, 22 Sep 2000 08:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9F93937B423; Fri, 22 Sep 2000 08:26:07 -0700 (PDT) Message-Id: <20000922152607.9F93937B423@hub.freebsd.org> Date: Fri, 22 Sep 2000 08:26:07 -0700 (PDT) From: mux@qualys.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21475: Port broken: xlockmore 4.17.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21475 >Category: ports >Synopsis: Port broken: xlockmore 4.17.2 >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 Sep 22 08:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Maxime Henrion >Release: 4.1-STABLE >Organization: Qualys Technologies >Environment: FreeBSD cybercable.fr 4.1-STABLE FreeBSD 4.1-STABLE #0: Thu Aug 31 20:24:49 CEST 2000 root@cybercable.fr:/usr/src/sys/compile/NEBULA i386 >Description: The xlockmore port seems to be broken since version 4.17.2. These are the errors I'm getting : cc -c -o ./resource.o -DHAVE_CONFIG_H -DDEF_FILESEARCHPATH=\"/usr/X11R6/lib/X11/app-defaults/%N%C%S:/usr/X11R6/lib/X11/app-defaults/%N%S\" -I. -I.. -I../.. -I/usr/X11R6/include -I/usr/X11R6/include/X11 -I/usr/X11R6/include -O -pipe ./resource.c In file included from ./resource.c:69: vis.h:30: GL/gl.h: No such file or directory vis.h:31: GL/glx.h: No such file or directory In file included from ./resource.c:69: vis.h:36: syntax error before `*' vis.h:36: warning: data definition has no type or storage class *** Error code 1 >How-To-Repeat: cd /usr/ports/x11/xlockmore && make >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 Fri Sep 22 8:50: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 B6B9037B443 for ; Fri, 22 Sep 2000 08:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA41969; Fri, 22 Sep 2000 08:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 1795437B424 for ; Fri, 22 Sep 2000 08:48:32 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Fri, 22 Sep 2000 17:43:38 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id RAA70564; Fri, 22 Sep 2000 17:43:11 +0200 (CEST) (envelope-from esk) Message-Id: <200009221543.RAA70564@i30nb2.ira.uka.de> Date: Fri, 22 Sep 2000 17:43:11 +0200 (CEST) From: esk@ira.uka.de Reply-To: esk@ira.uka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21477: New port: xmms-crossfade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21477 >Category: ports >Synopsis: New port: xmms-crossfade >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 Sep 22 08:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 4.1-STABLE i386 >Organization: Universität Karlsruhe >Environment: >Description: Xmms-crossfade is an XMMS Output plugin that can be used for crossfading between different songs played by XMMS. >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: # # xmms-crossfade # xmms-crossfade/files # xmms-crossfade/files/md5 # xmms-crossfade/pkg # xmms-crossfade/pkg/COMMENT # xmms-crossfade/pkg/DESCR # xmms-crossfade/pkg/PLIST # xmms-crossfade/Makefile # echo c - xmms-crossfade mkdir -p xmms-crossfade > /dev/null 2>&1 echo c - xmms-crossfade/files mkdir -p xmms-crossfade/files > /dev/null 2>&1 echo x - xmms-crossfade/files/md5 sed 's/^X//' >xmms-crossfade/files/md5 << 'END-of-xmms-crossfade/files/md5' XMD5 (xmms-crossfade-0.1.1.tar.gz) = d6883f822e3aab4239aa3ba0b481b671 END-of-xmms-crossfade/files/md5 echo c - xmms-crossfade/pkg mkdir -p xmms-crossfade/pkg > /dev/null 2>&1 echo x - xmms-crossfade/pkg/COMMENT sed 's/^X//' >xmms-crossfade/pkg/COMMENT << 'END-of-xmms-crossfade/pkg/COMMENT' XXMMS Output plugin for crossfading between songs. END-of-xmms-crossfade/pkg/COMMENT echo x - xmms-crossfade/pkg/DESCR sed 's/^X//' >xmms-crossfade/pkg/DESCR << 'END-of-xmms-crossfade/pkg/DESCR' XAn XMMS Output plugin that allows you to crossfade between different tunes. X XWWW: http://www.netcologne.de/~nc-eisenlpe2/xmms-crossfade/ END-of-xmms-crossfade/pkg/DESCR echo x - xmms-crossfade/pkg/PLIST sed 's/^X//' >xmms-crossfade/pkg/PLIST << 'END-of-xmms-crossfade/pkg/PLIST' Xlib/xmms/Output/libcrossfade.so END-of-xmms-crossfade/pkg/PLIST echo x - xmms-crossfade/Makefile sed 's/^X//' >xmms-crossfade/Makefile << 'END-of-xmms-crossfade/Makefile' X# New ports collection makefile for: xmms-crossfade X# Date created: 21 September 2000 X# Whom: Espen Skoglund X# X# $FreeBSD:$ X# X XPORTNAME= xmms-crossfade XPORTVERSION= 0.1.1 XCATEGORIES= audio XMASTER_SITES= http://www.netcologne.de/~nc-eisenlpe2/xmms-crossfade/ \ X ftp://ftp.falsehope.com/pub/xmms-crossfade/ X XMAINTAINER= esk@ira.uka.de X XLIB_DEPENDS= xmms.1:${PORTSDIR}/audio/xmms X XUSE_X_PREFIX= yes XUSE_LIBTOOL= yes XUSE_GMAKE= yes X XGTK_CONFIG?= ${X11BASE}/bin/gtk12-config XGLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config X XCONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ X GTK_CONFIG="${GTK_CONFIG}" X Xpost-configure: X ${PERL} -pi.bak -e 's:linkopts=\Z:linkopts=-nostartfiles:' \ X ${WRKSRC}/libtool X X.include END-of-xmms-crossfade/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 Fri Sep 22 9:19:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thelab.hub.org (CDR20-57.accesscable.net [24.138.20.57]) by hub.freebsd.org (Postfix) with ESMTP id 406B637B424; Fri, 22 Sep 2000 09:19:34 -0700 (PDT) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.0/8.11.0) with ESMTP id e8MGIkf24271; Fri, 22 Sep 2000 13:18:46 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Fri, 22 Sep 2000 13:18:46 -0300 (ADT) From: The Hermit Hacker To: Maxim Sobolev Cc: freebsd-ports@FreeBSD.ORG Subject: Re: libxpg4.so.2 not found for java ... In-Reply-To: <39CB731E.CE28CC48@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 perfect .. should this maybe be a dependency for the port? thanks ... On Fri, 22 Sep 2000, Maxim Sobolev wrote: > The Hermit Hacker wrote: > > > hub# /usr/local/jdk1.1.8/bin/javac > > /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.2" not found > > > > what port do I need to install to fix this? :( > > src/lib/compat/compat3x.i386, if we can call it "port" ;). > > -Maxim > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 9: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 B6DED37B43F for ; Fri, 22 Sep 2000 09:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA51780; Fri, 22 Sep 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from eeyore.local.dohd.org (d0030.dtk.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 2E86037B42C for ; Fri, 22 Sep 2000 09:13:47 -0700 (PDT) Received: by eeyore.local.dohd.org (Postfix, from userid 1002) id 2C3D6BAA4; Fri, 22 Sep 2000 18:13:42 +0200 (MET DST) Message-Id: <20000922161342.2C3D6BAA4@eeyore.local.dohd.org> Date: Fri, 22 Sep 2000 18:13:42 +0200 (MET DST) From: xaa@timewasters.nl Reply-To: xaa@timewasters.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21479: Update port xboard [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21479 >Category: ports >Synopsis: Port update >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 Sep 22 09:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Huizer; Eindhoven >Release: FreeBSD 5.0-CURRENT i386 >Organization: Madison Gurkha >Environment: >Description: Port update by maintainer >How-To-Repeat: >Fix: Apply patch: diff -udr ../games/xboard/Makefile xboard/Makefile --- ../games/xboard/Makefile Fri Apr 14 14:27:05 2000 +++ xboard/Makefile Fri Sep 22 18:10:25 2000 @@ -6,12 +6,12 @@ # PORTNAME= xboard -PORTVERSION= 4.0.7 +PORTVERSION= 4.1.0 CATEGORIES= games MASTER_SITES= ftp://ftp.gnu.org/gnu/xboard/ \ http://www.research.compaq.com/SRC/personal/Tim_Mann/xboard/ -MAINTAINER= xaa@timewasters.nl +MAINTAINER= xaa+ports@madison-gurkha.com USE_XLIB= yes GNU_CONFIGURE= yes diff -udr ../games/xboard/files/md5 xboard/files/md5 --- ../games/xboard/files/md5 Wed Mar 8 17:53:25 2000 +++ xboard/files/md5 Tue Sep 19 20:24:33 2000 @@ -1 +1 @@ -MD5 (xboard-4.0.7.tar.gz) = ddc6c276e9422d5673bbe0805337ee58 +MD5 (xboard-4.1.0.tar.gz) = 7c6e06f6644d308e64a3e5f00ee83f9e >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 Sep 22 9:20: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 98A0237B43C for ; Fri, 22 Sep 2000 09:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA51771; Fri, 22 Sep 2000 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from eeyore.local.dohd.org (d0030.dtk.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 6A0AC37B423 for ; Fri, 22 Sep 2000 09:12:49 -0700 (PDT) Received: by eeyore.local.dohd.org (Postfix, from userid 1002) id 67806BAA4; Fri, 22 Sep 2000 18:12:42 +0200 (MET DST) Message-Id: <20000922161242.67806BAA4@eeyore.local.dohd.org> Date: Fri, 22 Sep 2000 18:12:42 +0200 (MET DST) From: xaa@timewasters.nl Reply-To: xaa@timewasters.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21478: Ports update slrn [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21478 >Category: ports >Synopsis: Upgrade of slrn port >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 Sep 22 09:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Huizer; Eindhoven >Release: FreeBSD 5.0-CURRENT i386 >Organization: Madison Gurkha >Environment: >Description: update by port maintainer >How-To-Repeat: >Fix: apply patch: diff -udr ../news/slrn/Makefile slrn/Makefile --- ../news/slrn/Makefile Sun Apr 9 19:33:21 2000 +++ slrn/Makefile Mon Sep 18 18:09:44 2000 @@ -6,11 +6,11 @@ # PORTNAME= slrn -PORTVERSION= 0.9.6.2 +PORTVERSION= 0.9.6.3 CATEGORIES= news MASTER_SITES= ftp://space.mit.edu/pub/davis/slrn/ -MAINTAINER= xaa+ports@timewasters.nl +MAINTAINER= xaa+ports@madison-gurkha.com LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang diff -udr ../news/slrn/files/md5 slrn/files/md5 --- ../news/slrn/files/md5 Wed Dec 29 22:37:04 1999 +++ slrn/files/md5 Mon Sep 18 18:38:50 2000 @@ -1 +1 @@ -MD5 (slrn-0.9.6.2.tar.bz2) = b05496d880f17b6355da5406161034a7 +MD5 (slrn-0.9.6.3.tar.bz2) = 02cc23fd5c5cc540f464b2f41cd7e50a >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 Sep 22 9: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 0646537B422 for ; Fri, 22 Sep 2000 09:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA51787; Fri, 22 Sep 2000 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 09:20:02 -0700 (PDT) Message-Id: <200009221620.JAA51787@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/21473: update devel/SN to 4.5.2, not from 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/21473; it has been noted by GNATS. From: Trevor Johnson To: Will Andrews Cc: freebsd-gnats-submit@FreeBSD.ORG, Satoshi Asami Subject: Re: ports/21473: update devel/SN to 4.5.2, not from maintainer Date: Fri, 22 Sep 2000 12:18:06 -0400 (EDT) > Asami-san, can we get a repocopy of devel/SN to devel/sn, please? I > hate uppercase directory names, and they violate the One True Way. If something like this is under serious consideration, I suggest "sourcenavigator" as the name of the port. It is more informative than the abbreviation and, I feel, not overly long: devel/sh-rtems-binutils, devel/sparc-rtems-binutils, devel/c_c++_reference-i18n, devel/crossgo32-djgpp2-pdcurses devel/libPropListgnome, and devel/p5-Class-MethodMaker (among others) have longer names. Furthermore, there are no ports in devel/ with names beginning in "so" so someone could just type so to complete the name--just as easy as typing the existing name. -- 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 Sep 22 9:30: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 2820937B422; Fri, 22 Sep 2000 09:30:51 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA54447; Fri, 22 Sep 2000 09:30:51 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 22 Sep 2000 09:30:51 -0700 (PDT) From: Message-Id: <200009221630.JAA54447@freefall.freebsd.org> To: mikko@dynas.se, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20200: Updated version of mathopd web server contains bugfix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated version of mathopd web server contains bugfix State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Fri Sep 22 09:30:39 PDT 2000 State-Changed-Why: Update committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=20200 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 9:35: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 7D1A037B422; Fri, 22 Sep 2000 09:35:32 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA55667; Fri, 22 Sep 2000 09:35:32 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Fri, 22 Sep 2000 09:35:32 -0700 (PDT) From: Message-Id: <200009221635.JAA55667@freefall.freebsd.org> To: howardjp@wam.umd.edu, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/19908: New Port: games/kite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: games/kite State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Fri Sep 22 09:32:49 PDT 2000 State-Changed-Why: Closed in the interests of sanity. The port submission is broken. My mail to the submitter bounced, though another one didn't, so I also have grave doubts about whether this will ever get resolved. In addition "we have other things that do this and do it better"... http://www.freebsd.org/cgi/query-pr.cgi?pr=19908 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 9:41:36 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 18AA737B43E for ; Fri, 22 Sep 2000 09:41:33 -0700 (PDT) Received: from student.sjsmit.edu.tw (student.sjsmit.edu.tw [163.21.68.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F5796E2BC0 for ; Fri, 22 Sep 2000 09:39:26 -0700 (PDT) Received: from linmin (p204.nts.sjsmit.edu.tw [163.21.85.204]) by student.sjsmit.edu.tw (8.9.3/8.9.3) with SMTP id XAA78418; Fri, 22 Sep 2000 23:22:25 GMT (envelope-from s8617064@student.sjsmit.edu.tw) Message-ID: <000001c024a2$cdda1fa0$cc5515a3@linmin> From: "Robert" To: Cc: Subject: FreeBSD Port: zh-xcin-2.5.2p5_2 Date: Fri, 22 Sep 2000 22:25:35 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0003_01C024E4.0726CA60" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C024E4.0726CA60 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable =B1z=A6n=A1G = =A4p=A7=CC=B8=CB=A8t=B2=CE=B1q=B8=CB=A4@=A6=B8=A4=A7=AB=E1=A1A=A8=C3=A8=CF= =A5=CEpackage=A8=D3=B8=CBdb-2.7.7=A1Bzh-kcfonts-1.05=A1Bzh-libtabe-0.1.6=A1= Bzh-xcin-2.5.2p5_2=A1A=A4]=A5X=B2{=A9=C7=A9=C7=AA=BA=B0T=AE=A7=A1G /root (root) # xcin xcin: Command not found. /root (root) # xcin2.5 /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.3" not found /root (root) # freebsd 4.0 release ------=_NextPart_000_0003_01C024E4.0726CA60 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable
=B1z=A6n=A1G
   =20 =A4p=A7=CC=B8=CB=A8t=B2=CE=B1q=B8=CB=A4@=A6=B8=A4=A7=AB=E1=A1A=A8=C3=A8=CF= =A5=CEpackage=A8=D3=B8=CBdb-2.7.7=A1Bzh-kcfonts-1.05=A1Bzh-libtabe-0.1.6=A1= Bzh-xcin-2.5.2p5_2=A1A=A4]=A5X=B2{=A9=C7=A9=C7=AA=BA=B0T=AE=A7=A1G=
/root (root) # xcin
xcin: Command not = found.
/root=20 (root) # xcin2.5
/usr/libexec/ld-elf.so.1: Shared object = "libxpg4.so.3" not=20 found
/root (root) #
freebsd 4.0 release
------=_NextPart_000_0003_01C024E4.0726CA60-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 9:41:44 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 72EFF37B423 for ; Fri, 22 Sep 2000 09:41:41 -0700 (PDT) Received: from student.sjsmit.edu.tw (student.sjsmit.edu.tw [163.21.68.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2B2B6E2BC0 for ; Fri, 22 Sep 2000 09:41:35 -0700 (PDT) Received: from linmin (p204.nts.sjsmit.edu.tw [163.21.85.204]) by student.sjsmit.edu.tw (8.9.3/8.9.3) with SMTP id XAA78441; Fri, 22 Sep 2000 23:23:37 GMT (envelope-from s8617064@student.sjsmit.edu.tw) Message-ID: <000301c024a2$f8b53160$cc5515a3@linmin> From: "Robert" To: Cc: Subject: FreeBSD Port: zh-rxvt-2.7.3 Date: Fri, 22 Sep 2000 22:19:54 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0003_01C024E3.3BD89640" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0003_01C024E3.3BD89640 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable =B1z=A6n=A1G = =B3o=AD=D3zh-rxvt-2.7.3.tgz=A6n=B9=B3=A9=C7=A9=C7=AA=BA=BB=A1=A1Axcin=A4]= =ACO=A1A=B0T=AE=A7=A6p=A4U=A1G /root (root) # xcin xcin: Command not found. /root (root) # crxvt /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.3" not found /root (root) # xcin2.5 /usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.3" not found /root (root) # rxvt rxvt: Command not found. /root (root) # =BD=D0=B0=DD=B8=D3=A6p=A6=F3=B8=D1=A8M=A9O=A1H=C1=C2=C1=C2=A1I ------=_NextPart_000_0003_01C024E3.3BD89640 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable
=B1z=A6n=A1G
   =20 =B3o=AD=D3zh-rxvt-2.7.3.tgz=A6n=B9=B3=A9=C7=A9=C7=AA=BA=BB=A1=A1Axcin=A4]= =ACO=A1A=B0T=AE=A7=A6p=A4U=A1G
/root (root) # xcin
xcin: Command not = found.
/root=20 (root) # crxvt
/usr/libexec/ld-elf.so.1: Shared object "libxpg4.so.3" = not=20 found
/root (root) # xcin2.5
/usr/libexec/ld-elf.so.1: Shared = object=20 "libxpg4.so.3" not found
/root (root) # rxvt
rxvt: Command not=20 found.
/root (root) #
=BD=D0=B0=DD=B8=D3=A6p=A6=F3=B8=D1=A8M=A9O=A1H=C1=C2=C1=C2=A1I
------=_NextPart_000_0003_01C024E3.3BD89640-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 9:50:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9E2B37B422; Fri, 22 Sep 2000 09:50:58 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA59919; Fri, 22 Sep 2000 09:50:58 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Fri, 22 Sep 2000 09:50:58 -0700 (PDT) From: Message-Id: <200009221650.JAA59919@freefall.freebsd.org> To: osa@FreeBSD.org.ru, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21470: Fix shared libs environment in databases/db3 and remove ports/21469 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix shared libs environment in databases/db3 and remove ports/21469 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Fri Sep 22 09:50:08 PDT 2000 State-Changed-Why: Committed with my own modifications. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21470 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 11:17:19 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 BA77837B424 for ; Fri, 22 Sep 2000 11:17:09 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13cXNX-0000mw-00; Fri, 22 Sep 2000 20:16:55 +0200 Date: Fri, 22 Sep 2000 20:16:55 +0200 From: Johann Visagie To: Thomas Gellekum Cc: ports@freebsd.org Subject: Re: Problems building math/numpy Message-ID: <20000922201655.A2994@fling.sanbi.ac.za> References: <20000920181750.A52034@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 tg@melaten.rwth-aachen.de on Fri, Sep 22, 2000 at 01:52:47PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas Gellekum on 2000-09-22 (Fri) at 13:52:47 +0200: > > Ok, try again. Build the new math/lapack first, though. Builds on 3-STABLE. I have yet to test on -CURRENT. Thanks! -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 11: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 7441537B424 for ; Fri, 22 Sep 2000 11:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA95573; Fri, 22 Sep 2000 11:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 11:50:03 -0700 (PDT) Message-Id: <200009221850.LAA95573@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxime Henrion Subject: Re: ports/21475: Port broken: xlockmore 4.17.2 Reply-To: Maxime Henrion Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21475; it has been noted by GNATS. From: Maxime Henrion To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/21475: Port broken: xlockmore 4.17.2 Date: Fri, 22 Sep 2000 20:36:03 +0200 Hi, I managed to understand the problem and came to the following conclusion. The files /usr/include/GL/gl.h and glx.h needed at the compilation are part of Mesa3 port. However, the PLIST file of this port contains these lines : %%XFREE3:%%include/GL/gl.h %%XFREE3:%%include/GL/glx.h So the files aren't copied when you are running XFree86 4. I'm running XFree 4.0.1. I copied these files (and some others) manually to see if the compilation would be successful this way, but I got a lot of undefined reference when linking. Should I renonce to have any GL app under XFree 4 ? Maxime Henrion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 12: 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 323B237B42C for ; Fri, 22 Sep 2000 12:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA97641; Fri, 22 Sep 2000 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1299F37B423; Fri, 22 Sep 2000 11:59:04 -0700 (PDT) Message-Id: <20000922185904.1299F37B423@hub.freebsd.org> Date: Fri, 22 Sep 2000 11:59:04 -0700 (PDT) From: gmarco@giovannelli.it To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21481: Update port math/abs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21481 >Category: ports >Synopsis: Update port math/abs >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 Sep 22 12:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gianmarco Giovannelli >Release: FreeBSD 4.1 >Organization: Private >Environment: FreeBSD gmarco.ablia.org 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Sep 18 20:54:39 CEST 2000 gmarco@gmarco.ablia.org:/usr/obj/usr/src/sys/GMARCO i386 >Description: This patch clean the port of math/abs. >How-To-Repeat: >Fix: begin 644 abs.patch.uu M9&EF9B`M2`Q.3DY"BLC(%=H;VTZ"0D)9VUAU!/4E1615)324].?0H@"B!- M04E.5$%)3D52/0EG;6%R8V]`9VEO=F%N;F5L;&DN:70*(`HK5U)+4U)#/0D) M)'M74DM$25)]+R1[1$E35$Y!345]+W-R8PH@55-%7UA,24(]"7EE65S"BU74DM34D,]("`@("`@("`@)'M74DM$25)]+V%BTE.4U1!3$Q?4%)/1U)!37T@ M)'M74DM34D-]+V%BU!2149)6'TO8FEN"B`*('!OT5#2$]](")4:&5R92!AT5#2$]]("(D>U=22T1) M4GTO86)S+7-R8RTP+C9A+T5X86UP;&5S(@HK"4`D>T5#2$]]("(D>U=22U-2 M0WTO17AA;7!L97,B"B`)0"1[14-(3WT@(B(*(`E`)'M%0TA/?2`B(@H@"F1I M9F8@+7)U3B`O=7-R+W!O'1&:65L9"TQ+C`@+4DO=7-R M+V-O;G1R:6(O6#$Q4C8O:6YC;'5D90HM*T-&3$%'4PD)/2`M22XO<&EX;6%P M&UA<',@+4DN+U1E>'1&:65L9"TQ+C`@+4DD*%@Q M,4)!4T4I+VEN8VQU9&4*("`*("`C(R,@1F]R=')A;B!#;VUP:6QE<@H@($9# M"0D]('AL9B`**R!&1DQ!1U,)"3T@+7%L86YG;'9L/3DP97AT"BL@"BL@(R,C M($QI;FME'0@+6Q8<&T@+B]4 M97AT1FEE;&0M,2XP+RHN;PHK*TQ)0E,)"3T@+4PD*%@Q,4)!4T4I+VQI8B`M M;%AA=R`M;%@Q,2`M;&T@+6Q8="`M;%AM=2`M;%AE>'0@+6Q8<&T@+B]497AT M1FEE;&0M,2XP+RHN;PH@(`H@(`H@+5-50D1)4E,)"3T@"6-D(%AP;3L@;6%K M93L@8V0@+BXO5&5X=$9I96QD+3$N,#L@;6%K93L@8V0@+BX*+2M354)$25)3 M"0D](`EC9"`N+U1E>'1&:65L9"TQ+C`[(&UA:V4[(&-D("XN"BLK4U5"1$E2 M4PD)/2`)8V0@+B]497AT1FEE;&0M,2XP.R`D*$U!2T4I.R!C9"`N+@H@(`H@ M(",C(R,C(R,C(R,C(R,C(R,C(R,C(R,C(PH@(",C(R!!9&1I=&EO;F%L(%1A M'1&:65L9"TQ+C`[(&UA:V4[ M(&-D("XN"BTK"0EC9"`N+U1E>'1&:65L9"TQ+C`[(&UA:V4[(&-D("XN"BLK M"0EC9"`N+U1E>'1&:65L9"TQ+C`[("0H34%+12D[(&-D("XN"B`@"0E`96-H M;R`B3&EN:VEN9R`D*%!23T=204TI("XN+B(*("`)"4`D*$Q$*2`D*$Q$1DQ! M1U,I("0H3T)*4RD@)"A,24)3*2`M;R`D*%!23T=204TI"B`@"0E`96-H;R`B M9&]N92(*9&EF9B`MRelease-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 Sep 22 12: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 3CD0137B43E for ; Fri, 22 Sep 2000 12:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA01583; Fri, 22 Sep 2000 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from circe.avh4.net (eastquad-168-122.reshall.umich.edu [141.213.168.122]) by hub.freebsd.org (Postfix) with ESMTP id 0D90137B42C for ; Fri, 22 Sep 2000 12:04:04 -0700 (PDT) Received: (from root@localhost) by circe.avh4.net (8.9.3/8.9.3) id PAA55835; Fri, 22 Sep 2000 15:03:55 -0400 (EDT) (envelope-from root) Message-Id: <200009221903.PAA55835@circe.avh4.net> Date: Fri, 22 Sep 2000 15:03:55 -0400 (EDT) From: Aaron VonderHaar To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21482: New port: games/gnurobots Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21482 >Category: ports >Synopsis: New port: games/gnurobots >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 Sep 22 12:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Aaron VonderHaar >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: current ports tree >Description: GNU Robots is a game/diversion where you construct a program for a little robot, then set him loose and watch him explore a world on his own. The robot program is written in Scheme, and is implemented using GNU Guile. Also, (as I'm fairly new to the porting world), please tell me whether my pkg/MESSAGE is appropriate or unnecessary. And whether pre-patch: is the kosher place to move files around (that is, files that must be moved before they will compile properly), or should I make a shell script and put in patches/ ? >How-To-Repeat: Install the port :) >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: # # gnurobots # gnurobots/Makefile # gnurobots/pkg # gnurobots/pkg/COMMENT # gnurobots/pkg/PLIST # gnurobots/pkg/DESCR # gnurobots/pkg/MESSAGE # gnurobots/files # gnurobots/files/md5 # gnurobots/patches # gnurobots/patches/patch-aa # echo c - gnurobots mkdir -p gnurobots > /dev/null 2>&1 echo x - gnurobots/Makefile sed 's/^X//' >gnurobots/Makefile << 'END-of-gnurobots/Makefile' X# New ports collection makefile for: gnurobots X# Date created: 22 Sept 2000 X# Whom: Aaron VonderHaar X# X# $FreeBSD$ X# X XPORTNAME= gnurobots XPORTVERSION= 1.0D XCATEGORIES= games XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= gnurobots X XMAINTAINER= avh4@usa.net X XLIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile X XGNU_CONFIGURE= yes X Xpre-patch: X ${CP} ${WRKSRC}/getopt/getopt.h ${WRKSRC}/include X ${CP} ${WRKSRC}/getopt/getopt.c ${WRKSRC}/src X ${CP} ${WRKSRC}/getopt/getopt1.c ${WRKSRC}/src X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/src/robots ${PREFIX}/bin/gnurobots X ${INSTALL_PROGRAM} ${WRKSRC}/src/robots_logfile ${PREFIX}/bin/gnurobots_logfile X ${INSTALL_PROGRAM} ${WRKSRC}/src/xrobots ${PREFIX}/bin/xgnurobots X ${MKDIR} ${PREFIX}/share/gnurobots X ${MKDIR} ${PREFIX}/share/gnurobots/maps X ${INSTALL_DATA} ${WRKSRC}/maps/* ${PREFIX}/share/gnurobots/maps/ X ${MKDIR} ${PREFIX}/share/gnurobots/scheme X ${INSTALL_DATA} ${WRKSRC}/scheme/* ${PREFIX}/share/gnurobots/scheme/ X ${MKDIR} ${PREFIX}/share/doc/gnurobots X ${INSTALL_MAN} ${WRKSRC}/doc/* ${PREFIX}/share/doc/gnurobots/ X Xpost-install: X ${CAT} ${PKGDIR}/MESSAGE X X.include END-of-gnurobots/Makefile echo c - gnurobots/pkg mkdir -p gnurobots/pkg > /dev/null 2>&1 echo x - gnurobots/pkg/COMMENT sed 's/^X//' >gnurobots/pkg/COMMENT << 'END-of-gnurobots/pkg/COMMENT' XGNU diversion wherein Scheme-coded robots explore a world END-of-gnurobots/pkg/COMMENT echo x - gnurobots/pkg/PLIST sed 's/^X//' >gnurobots/pkg/PLIST << 'END-of-gnurobots/pkg/PLIST' Xbin/gnurobots Xbin/gnurobots_logfile Xbin/xgnurobots Xshare/gnurobots/maps/maze.map Xshare/gnurobots/maps/pattern.map Xshare/gnurobots/maps/small.map Xshare/gnurobots/scheme/beep.scm Xshare/gnurobots/scheme/greedy.scm Xshare/gnurobots/scheme/mapper.scm Xshare/gnurobots/scheme/simple.scm Xshare/gnurobots/scheme/stop.scm Xshare/gnurobots/scheme/zap.scm Xshare/doc/gnurobots/BUGS Xshare/doc/gnurobots/COPYING Xshare/doc/gnurobots/INSTALL Xshare/doc/gnurobots/NEWS Xshare/doc/gnurobots/README Xshare/doc/gnurobots/Robots-HOWTO Xshare/doc/gnurobots/contrib Xshare/doc/gnurobots/guile-proj.scm X@dirrm share/gnurobots/scheme X@dirrm share/gnurobots/maps X@dirrm share/gnurobots X@dirrm share/doc/gnurobots END-of-gnurobots/pkg/PLIST echo x - gnurobots/pkg/DESCR sed 's/^X//' >gnurobots/pkg/DESCR << 'END-of-gnurobots/pkg/DESCR' XGNU Robots is a game/diversion where you construct a program for a Xlittle robot, then set him loose and watch him explore a world on his Xown. The robot program is written in Scheme, and is implemented using XGNU Guile. --from GNU robots README X XWWW: http://www.gnu.org/software/robots/ X X-Aaron VonderHaar X avh4@usa.net END-of-gnurobots/pkg/DESCR echo x - gnurobots/pkg/MESSAGE sed 's/^X//' >gnurobots/pkg/MESSAGE << 'END-of-gnurobots/pkg/MESSAGE' XWhere to find things X - A place to start: $PREFIX/share/doc/gnurobots/Robots-HOWTO X - Example maps: $PREFIX/share/gnurobots/maps/ X - Example robots: $PREFIX/share/gnurobots/scheme/ X - Binaries: gnurobots, gnurobots_logfile, xgnurobots X (this port adds the 'gnu' prefix to X distinguish from /usr/games/robots) END-of-gnurobots/pkg/MESSAGE echo c - gnurobots/files mkdir -p gnurobots/files > /dev/null 2>&1 echo x - gnurobots/files/md5 sed 's/^X//' >gnurobots/files/md5 << 'END-of-gnurobots/files/md5' XMD5 (gnurobots-1.0D.tar.gz) = 0ced682367b0dc9b2fcfdb40230a5fb5 END-of-gnurobots/files/md5 echo c - gnurobots/patches mkdir -p gnurobots/patches > /dev/null 2>&1 echo x - gnurobots/patches/patch-aa sed 's/^X//' >gnurobots/patches/patch-aa << 'END-of-gnurobots/patches/patch-aa' X--- src/Makefile.in Sun Jun 18 11:26:24 2000 X+++ src/Makefile.in Fri Sep 22 01:12:42 2000 X@@ -17,7 +17,7 @@ X X # Macros: X X-SOURCES=api.c sign.c loadmap.c drawmap.c X+SOURCES=api.c sign.c loadmap.c drawmap.c getopt.c getopt1.c X OBJECTS=$(SOURCES:.c=.o) X X CFLAGS_X=@X_CFLAGS@ END-of-gnurobots/patches/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 Sep 22 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 5367737B424 for ; Fri, 22 Sep 2000 12:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA06906; Fri, 22 Sep 2000 12:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-94-as.acessonet.com.br (200-227-201-94-as.acessonet.com.br [200.227.201.94]) by hub.freebsd.org (Postfix) with ESMTP id B758E37B422 for ; Fri, 22 Sep 2000 12:39:57 -0700 (PDT) Received: (qmail 35659 invoked by uid 1001); 22 Sep 2000 19:39:05 -0000 Message-Id: <20000922193905.35658.qmail@Fedaykin.here> Date: 22 Sep 2000 19:39:05 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org Cc: cpiazza@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21483: Update port MASTER_SITES graphics/smpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21483 >Category: ports >Synopsis: Update port MASTER_SITES graphics/smpeg >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 Sep 22 12:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Here.here 4.0-STABLE FreeBSD 4.0-STABLE #2: Fri Jun 9 13:22:10 EST 2000 lioux@Here.here:/usr/src/sys/compile/LIOUX i386 >Description: Added some additional MASTER_SITES. lokigames was not enough. :) >How-To-Repeat: n/a >Fix: diff -ruN /usr/ports/graphics/smpeg/Makefile smpeg/Makefile --- /usr/ports/graphics/smpeg/Makefile Sat Jun 17 05:13:17 2000 +++ smpeg/Makefile Fri Sep 22 16:37:36 2000 @@ -8,7 +8,12 @@ PORTNAME= smpeg PORTVERSION= 0.4.0 CATEGORIES= graphics -MASTER_SITES= ftp://ftp.lokigames.com/pub/open-source/smpeg/ +MASTER_SITES= ftp://ftp.lokigames.com/pub/open-source/smpeg/ \ + ftp://sunsite.auc.dk/pub/os/linux/loki/open-source/smpeg/ \ + ftp://boudicca.tux.org/misc/lokigames/open-source/smpeg/ \ + ftp://snuffleupagus.animearchive.org/loki/open-source/smpeg/ \ + http://ftp.gameaholic.com/mirrors/ftp.lokigames.com/open-source/smpeg + MAINTAINER= cpiazza@FreeBSD.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 Fri Sep 22 14: 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 26F4337B424 for ; Fri, 22 Sep 2000 14:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA23853; Fri, 22 Sep 2000 14:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from jinx.unknown.nu (jinx.unknown.nu [216.80.99.202]) by hub.freebsd.org (Postfix) with ESMTP id 88D9337B53A for ; Fri, 22 Sep 2000 13:51:40 -0700 (PDT) Received: (from sluggo@localhost) by jinx.unknown.nu (8.9.3/8.9.3) id PAA96883; Fri, 22 Sep 2000 15:51:39 -0500 (CDT) (envelope-from sluggo) Message-Id: <200009222051.PAA96883@jinx.unknown.nu> Date: Fri, 22 Sep 2000 15:51:39 -0500 (CDT) From: sluggo@unknown.nu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21485: Update: devel/camlp4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21485 >Category: ports >Synopsis: Update: devel/camlp4 >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 Sep 22 14:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kim Scarborough >Release: FreeBSD 3.5-RELEASE i386 >Organization: Quality Quackeries >Environment: N/A >Description: An update to the camlp4 port to version 3.00. A new file has been added: patches/patch-ab. Please commit this as soon as possible, as the port has been broken since the upgrade of lang/ocaml. I am the maintainer of this port. >How-To-Repeat: N/A >Fix: diff -ruN camlp4.orig/Makefile camlp4/Makefile --- camlp4.orig/Makefile Fri Sep 22 05:50:50 2000 +++ camlp4/Makefile Fri Sep 22 15:33:55 2000 @@ -4,20 +4,15 @@ # # $FreeBSD: ports/devel/camlp4/Makefile,v 1.3 2000/09/22 10:23:24 kris Exp $ # -# This is not the current version, but the version needs to -# be <= the version of ocaml, which hasn't been updated. Once -# the ocaml maintainer updates it, I'll update this. PORTNAME= camlp4 -PORTVERSION= 2.04 +PORTVERSION= 3.00 CATEGORIES= devel -MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/cristal/camlp4/OLD/2.04/ \ +MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/cristal/camlp4/ \ http://www.unknown.nu/ports/ MAINTAINER= user@unknown.nu -BROKEN= "Does not compile" - BUILD_DEPENDS= ocamlc.opt:${PORTSDIR}/lang/ocaml HAS_CONFIGURE= yes @@ -27,8 +22,8 @@ ALL_TARGET= world bootstrap opt MAN1= camlp4.1 -MANLINKS= camlp4.1 camlp4o.1 camlp4.1 camlp4r.1 camlp4.1 mkcamlp4.1 \ - camlp4.1 ocpp.1 -MANCOMPRESSED= no +MLINKS= camlp4.1 camlp4o.1 camlp4.1 camlp4r.1 camlp4.1 mkcamlp4.1 \ + camlp4.1 ocpp.1 camlp4.1 camlp4o.1 camlp4.1 camlp4r.opt.1 \ + camlp4.1 camlp4o.opt.1 .include diff -ruN camlp4.orig/files/md5 camlp4/files/md5 --- camlp4.orig/files/md5 Tue Aug 1 06:58:29 2000 +++ camlp4/files/md5 Fri Sep 22 14:07:42 2000 @@ -1 +1 @@ -MD5 (camlp4-2.04.tar.gz) = 4998bcc33f421f548e0d98d70d3fa9d9 +MD5 (camlp4-3.00.tar.gz) = 35d918bd70a7d325787346db33733973 diff -ruN camlp4.orig/patches/patch-ab camlp4/patches/patch-ab --- camlp4.orig/patches/patch-ab Wed Dec 31 18:00:00 1969 +++ camlp4/patches/patch-ab Fri Sep 22 15:06:31 2000 @@ -0,0 +1,19 @@ +*** Makefile.orig Tue Apr 18 10:44:11 2000 +--- Makefile Fri Sep 22 15:04:48 2000 +*************** +*** 11,17 **** + set -e; for i in $(DIRS); do cd $$i; $(MAKE) all; cd ..; done + + opt: +! set -e; for i in $(OPTDIRS); do cd $$i; $(MAKE) opt; cd ..; done + + clean_hot: + for i in $(DIRS); do (cd $$i; $(MAKE) clean); done +--- 11,17 ---- + set -e; for i in $(DIRS); do cd $$i; $(MAKE) all; cd ..; done + + opt: +! cd lib; $(MAKE) opt + + clean_hot: + for i in $(DIRS); do (cd $$i; $(MAKE) clean); done diff -ruN camlp4.orig/pkg/PLIST camlp4/pkg/PLIST --- camlp4.orig/pkg/PLIST Sat Sep 16 17:12:33 2000 +++ camlp4/pkg/PLIST Fri Sep 22 15:38:50 2000 @@ -62,4 +62,5 @@ lib/camlp4/plexer.cmx lib/camlp4/stdpp.cmx lib/camlp4/token.cmx +lib/camlp4/pa_olabl.cmo @dirrm lib/camlp4 >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 Sep 22 14:34: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 8613837B43E; Fri, 22 Sep 2000 14:34:14 -0700 (PDT) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA30368; Fri, 22 Sep 2000 14:34:14 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Date: Fri, 22 Sep 2000 14:34:14 -0700 (PDT) From: Message-Id: <200009222134.OAA30368@freefall.freebsd.org> To: lioux@uol.com.br, cpiazza@FreeBSD.org, freebsd-ports@FreeBSD.org, cpiazza@FreeBSD.org Subject: Re: ports/21483: Update port MASTER_SITES graphics/smpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port MASTER_SITES graphics/smpeg State-Changed-From-To: open->closed State-Changed-By: cpiazza State-Changed-When: Fri Sep 22 14:33:54 PDT 2000 State-Changed-Why: Committed, thanks! Responsible-Changed-From-To: freebsd-ports->cpiazza Responsible-Changed-By: cpiazza Responsible-Changed-When: Fri Sep 22 14:33:54 PDT 2000 Responsible-Changed-Why: My port http://www.freebsd.org/cgi/query-pr.cgi?pr=21483 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 15: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 ACD9737B423 for ; Fri, 22 Sep 2000 15:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA44016; Fri, 22 Sep 2000 15:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.Stanford.EDU (smtp.Stanford.EDU [171.64.14.23]) by hub.freebsd.org (Postfix) with ESMTP id BD4B037B423 for ; Fri, 22 Sep 2000 15:35:06 -0700 (PDT) Received: from ling-pc6.stanford.edu (ling-pc6.Stanford.EDU [171.64.42.28]) by smtp.Stanford.EDU (8.9.3/8.9.3) with ESMTP id PAA29979 for ; Fri, 22 Sep 2000 15:35:06 -0700 (PDT) Received: by ling-pc6.stanford.edu (Postfix, from userid 1000) id 7F9A61CFF; Fri, 22 Sep 2000 15:35:04 -0700 (PDT) Message-Id: <20000922223504.7F9A61CFF@ling-pc6.stanford.edu> Date: Fri, 22 Sep 2000 15:35:04 -0700 (PDT) From: casillas@stanford.edu Reply-To: casillas@stanford.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21486: fetchmail KPOP does not work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21486 >Category: ports >Synopsis: fetchmail KPOP does not 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: Fri Sep 22 15:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Luis Casillas >Release: FreeBSD 4.1-STABLE i386 >Organization: Stanford University >Environment: FreeBSD ling-pc6.Stanford.EDU 4.1-STABLE FreeBSD 4.1-STABLE #2: Fri Sep 22 14:24:41 PDT 2000 root@ling-pc6.Stanford.EDU:/usr/src/sys/compile/LING-PC6 i386 Default Kerberos 4 installed >Description: Fetchmail fails to fetch mail via KPOP. My .fecthmailrc is as follows: defaults keep # fetchall poll casillas.pobox.stanford.edu protocol KPOP user casillas to casillas This .fetchmailrc works in another system. However, on my FreeBSD it doesn't: $ fetchmail -v -v fetchmail: 5.5.2 querying casillas.pobox.stanford.edu (protocol POP3) at Fri, 22 Sep 2000 15:29:43 -0700 (PDT) fetchmail: fetchmail: getaddrinfo(casillas.pobox.stanford.edu.kpop) fetchmail: Query status=2 (SOCKET) fetchmail: Deleting fetchids file. fetchmail: normal termination, status 2 fetchmail: Deleting fetchids file. Somehow, .kpop is appendend to the hostname to query. I built this fetchmail from the ports collection. This is the output of fetchmail -V: $ fetchmail -V This is fetchmail release 5.5.2+POP2+RPA+SDPS+SSL+INET6+NLS FreeBSD ling-pc6.Stanford.EDU 4.1-STABLE FreeBSD 4.1-STABLE #2: Fri Sep 22 14:24:41 PDT 2000 root@ling-pc6.Stanford.EDU:/usr/src/sys/compile/LING-PC6 i386 Taking options from command line and /home/casillas/.fetchmailrc Idfile is /home/casillas/.fetchids Fetchmail will forward misaddressed multidrop messages to casillas. Options for retrieving from casillas@casillas.pobox.stanford.edu: True name of server is pobox1.Stanford.EDU. Protocol is KPOP with Kerberos IV authentication (using service kpop). Kerberos V4 preauthentication enabled. Server nonresponse timeout is 300 seconds (default). Default mailbox selected. Only new messages will be retrieved (--all off). Fetched messages will be kept on the server (--keep on). Old messages will not be flushed before message retrieval (--flush off). Rewrite of server-local addresses is enabled (--norewrite off). Carriage-return stripping is disabled (stripcr off). Carriage-return forcing is disabled (forcecr off). Interpretation of Content-Transfer-Encoding is enabled (pass8bits off). MIME decoding is disabled (mimedecode off). Idle after poll is disabled (idle off). Nonempty Status lines will be kept (dropstatus off) Delivered-To lines will be kept (dropdelivered off) Messages will be SMTP-forwarded to: ling-pc6.Stanford.EDU (default) Recognized listener spam block responses are: 571 550 501 554 Single-drop mode: 1 local name(s) recognized. No UIDs saved from this host. >How-To-Repeat: Compile the fetchmail-5.5.2 port, use the above .fetchmailrc. >Fix: Not known. >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 Sep 22 17:41: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bowhill.yi.org (bowhill.yi.org [216.122.158.78]) by hub.freebsd.org (Postfix) with ESMTP id 74CE637B423 for ; Fri, 22 Sep 2000 17:41:02 -0700 (PDT) Received: from localhost (kosmos@localhost) by bowhill.yi.org (8.11.0/8.11.0) with ESMTP id e8N0f1506677 for ; Fri, 22 Sep 2000 17:41:03 -0700 (PDT) (envelope-from kosmos@bowhill.yi.org) Date: Fri, 22 Sep 2000 17:41:01 -0700 (PDT) From: kosmos To: freebsd-ports@freebsd.org Subject: ports features wish list: USE_PACKAGE_FIRST 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 have an item for the ports development wish-list. This is probably not a new idea, but it is related to building packages on-the-fly, and it would be useful. How about a make target that would look in packages/All to add a dependent package before attempting to install it as a port? It might speed things up a bit for long installations, and could also be used in package-building. To illustrate, suppose I want to install port_A, which depends on port_B. Port_B was deinstalled at some point, but exists in packages/All as package_B. When I type make install in port_A directory, make would notice package_B in packages/All, and install it. Then port_A would build. This could be used with 'make DEPENDS_TARGET=package package' to form something grotesque like: 'make DEPENDS_TARGET=package USE_PACKAGE_FIRST=t package' to build a complex package. --Allan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 18:10: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 C4A6D37B424 for ; Fri, 22 Sep 2000 18:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA82126; Fri, 22 Sep 2000 18:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from palraz.rem.cmu.edu (PALRAZ.REM.CMU.EDU [128.2.82.76]) by hub.freebsd.org (Postfix) with ESMTP id AAFFF37B422 for ; Fri, 22 Sep 2000 18:04:12 -0700 (PDT) Received: (from dpelleg@localhost) by palraz.rem.cmu.edu (8.9.3/8.9.3) id VAA09569; Fri, 22 Sep 2000 21:04:09 -0400 (EDT) (envelope-from dpelleg) Message-Id: <200009230104.VAA09569@palraz.rem.cmu.edu> Date: Fri, 22 Sep 2000 21:04:09 -0400 (EDT) From: dpelleg+bmsync@cs.cmu.edu Reply-To: dpelleg+bmsync@cs.cmu.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21488: New port: bmsync, a bookmark converter Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21488 >Category: ports >Synopsis: New port: bmsync, a bookmark converter >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 Sep 22 18:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dan Pelleg >Release: FreeBSD 4.1-RELEASE i386 >Organization: Carnegie Mellon University >Environment: >Description: bmsync is a bookmark converter and synchronizer for NN, KDE and MSIE bookmark collections. >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: # # bmsync # bmsync/pkg # bmsync/pkg/COMMENT # bmsync/pkg/PLIST # bmsync/pkg/DESCR # bmsync/patches # bmsync/patches/patch-aa # bmsync/files # bmsync/files/md5 # bmsync/Makefile # echo c - bmsync mkdir -p bmsync > /dev/null 2>&1 echo c - bmsync/pkg mkdir -p bmsync/pkg > /dev/null 2>&1 echo x - bmsync/pkg/COMMENT sed 's/^X//' >bmsync/pkg/COMMENT << 'END-of-bmsync/pkg/COMMENT' XA bookmark converter and synchronizer for NN, KDE and MSIE END-of-bmsync/pkg/COMMENT echo x - bmsync/pkg/PLIST sed 's/^X//' >bmsync/pkg/PLIST << 'END-of-bmsync/pkg/PLIST' Xbin/bmsync Xbin/bmcopy Xbin/bmmerge END-of-bmsync/pkg/PLIST echo x - bmsync/pkg/DESCR sed 's/^X//' >bmsync/pkg/DESCR << 'END-of-bmsync/pkg/DESCR' Xbmsync reads bookmarks from any number of so called bookmark collections, Xchecks for conflicts among the bookmarks, and writes them back to the Xbookmark collections. It supports Netscape, KDE, and MSIE bookmarks. X X- Dan Pelleg X Xdpelleg+bmsync@cs.cmu.edu END-of-bmsync/pkg/DESCR echo c - bmsync/patches mkdir -p bmsync/patches > /dev/null 2>&1 echo x - bmsync/patches/patch-aa sed 's/^X//' >bmsync/patches/patch-aa << 'END-of-bmsync/patches/patch-aa' X--- Makefile.orig Fri Sep 22 11:34:42 2000 X+++ Makefile Fri Sep 22 16:55:27 2000 X@@ -15,16 +15,16 @@ X all: bmsync.1 bmsync.html X X bmsync.html: bmsync X- pod2html $< >$@ X+ pod2html $> >$@ X X bmsync.1: bmsync X- pod2man --center=" " --release=$(VERSION) $< >$@ X+ pod2man --center=" " --release=$(VERSION) $> >$@ X X install: all X- install -o root -g root -m 755 bmsync $(PREFIX)/bin X+ install -c -o root -g wheel -m 755 bmsync $(PREFIX)/bin X ln -s bmsync $(PREFIX)/bin/bmcopy X ln -s bmsync $(PREFIX)/bin/bmmerge X- install -o root -g root -m 644 bmsync.1 $(PREFIX)/man/man1 X+ install -o root -g wheel -m 644 bmsync.1 $(PREFIX)/man/man1 X X list-install: X @list='$(INSTALLED_FILES)'; \ END-of-bmsync/patches/patch-aa echo c - bmsync/files mkdir -p bmsync/files > /dev/null 2>&1 echo x - bmsync/files/md5 sed 's/^X//' >bmsync/files/md5 << 'END-of-bmsync/files/md5' XMD5 (bmsync-0.2.0.tar.gz) = a84b5cdb3fb43a90814bdd42336a8edd END-of-bmsync/files/md5 echo x - bmsync/Makefile sed 's/^X//' >bmsync/Makefile << 'END-of-bmsync/Makefile' X# New ports collection makefile for: bmsync X# Date created: 22 Sep 2000 X# Whom: Dan Pelleg X# X# $FreeBSD$ X# X XPORTNAME= bmsync XPORTVERSION= 0.2.0 XCATEGORIES= www XMASTER_SITES= http://www.cs.cmu.edu/~dpelleg/sw/ XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= dpelleg+bmsync@cs.cmu.edu X XUSE_PERL5= yes XWRKSRC= ${WRKDIR}/${PKGNAME} X XMAN1 = bmsync.1 XMAN_COMPRESSED= no X Xpre-install: X @${PERL} -pi -e "s:/usr/bin/perl:${PERL}:g" ${WRKSRC}/bmsync X X.include END-of-bmsync/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 Fri Sep 22 18:13:54 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 010EF37B422 for ; Fri, 22 Sep 2000 18:13:52 -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 e8N1DhQ52537; Fri, 22 Sep 2000 21:13:43 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39CC03C7.A67ACB97@thehousleys.net> Date: Fri, 22 Sep 2000 21:13:43 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: kosmos Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports features wish list: USE_PACKAGE_FIRST References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org kosmos wrote: > > I have an item for the ports development wish-list. This is > probably not a new idea, but it is related to building packages > on-the-fly, and it would be useful. > > How about a make target that would look in packages/All to add > a dependent package before attempting to install it as a port? > This seems like a reasonable thing to want. How would this fit in with the discussed re-write of the ports system? Jim -- 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 Fri Sep 22 18:34:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nycblkr00hubg02.cbs.com (mail2.cbs.com [170.20.9.174]) by hub.freebsd.org (Postfix) with ESMTP id 38F2A37B422 for ; Fri, 22 Sep 2000 18:34:43 -0700 (PDT) Received: by mail2.cbs.com with Internet Mail Service (5.5.2650.21) id ; Fri, 22 Sep 2000 21:34:38 -0400 Message-ID: <39584161FE8AD311A95A0004AC33E243591932@DENKCNCTVUSAX01.cbs.com> From: "Barella, Scott" To: mb@imp.ch Cc: ports@FreeBSD.org Subject: FreeBSD Port: staroffice-5.1a Date: Fri, 22 Sep 2000 21:34:34 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Any chance there will soon be a StarOffice 5.2 port? If so, what files will I need to get it to compile. Anxious in Denver Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 18:39:19 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 C0EE937B422 for ; Fri, 22 Sep 2000 18:39:17 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id CCF9518B8; Fri, 22 Sep 2000 20:35:07 -0500 (EST) Date: Fri, 22 Sep 2000 20:35:07 -0500 From: Will Andrews To: "Barella, Scott" Cc: mb@imp.ch, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: staroffice-5.1a Message-ID: <20000922203507.R3094@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , "Barella, Scott" , mb@imp.ch, ports@FreeBSD.ORG References: <39584161FE8AD311A95A0004AC33E243591932@DENKCNCTVUSAX01.cbs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39584161FE8AD311A95A0004AC33E243591932@DENKCNCTVUSAX01.cbs.com>; from SBarella@cbs.com on Fri, Sep 22, 2000 at 09:34:34PM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 22, 2000 at 09:34:34PM -0400, Barella, Scott wrote: > Any chance there will soon be a StarOffice 5.2 port? If so, what files will > I need to get it to compile. Uhm, we have soffice 5.2 ports for english, german, *AND* french! -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 19:30: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 38E1937B424 for ; Fri, 22 Sep 2000 19:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96746; Fri, 22 Sep 2000 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id 6866D37B423 for ; Fri, 22 Sep 2000 19:23:57 -0700 (PDT) Received: (from clive@localhost) by cartier.cirx.org (8.11.0/8.11.0) id e8N2Nqg76135; Sat, 23 Sep 2000 10:23:52 +0800 (CST) (envelope-from clive) Message-Id: <200009230223.e8N2Nqg76135@cartier.cirx.org> Date: Sat, 23 Sep 2000 10:23:52 +0800 (CST) From: clive@CirX.ORG Reply-To: clive@CirX.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21490: update chinese/xmms to 1.2.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21490 >Category: ports >Synopsis: update chinese/xmms to 1.2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 22 19:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 5.0-CURRENT i386 >Organization: This site doesnt' exist >Environment: FreeBSD 5.0-CURRENT #0: Thu Sep 21 15:46:48 CST 2000 root@cartier.cirx.org:/home/nexus/obj/usr/local/src/sys/CARTIER >Description: Update the patches, otherwise it's completely broken. BTW, zh-xmms isn't in modules. >How-To-Repeat: >Fix: diff 1: update the patches dir in ports/chinese/xmms Index: patches/xmms-1.2.x-xfont.diff =================================================================== RCS file: /home/ncvs/ports/chinese/xmms/patches/xmms-1.2.x-xfont.diff,v retrieving revision 1.1 diff -u -r1.1 xmms-1.2.x-xfont.diff --- patches/xmms-1.2.x-xfont.diff 2000/08/24 12:09:34 1.1 +++ patches/xmms-1.2.x-xfont.diff 2000/09/23 02:09:47 @@ -1,18 +1,49 @@ -diff -ru xmms-1.2.2/xmms/about.c xmms-1.2.2-xfont/xmms/about.c ---- xmms-1.2.2/xmms/about.c Mon Jun 12 06:27:14 2000 -+++ xmms-1.2.2-xfont/xmms/about.c Wed Jul 12 00:13:27 2000 -@@ -35,6 +35,7 @@ - N_("With Additional Help:"), +diff -ru xmms-1.2.3.orig/po/zh_TW.Big5.po xmms-1.2.3/po/zh_TW.Big5.po +--- xmms-1.2.3.orig/po/zh_TW.Big5.po Tue Sep 19 14:32:28 2000 ++++ xmms-1.2.3/po/zh_TW.Big5.po Thu Sep 21 11:39:59 2000 +@@ -3231,17 +3231,17 @@ + msgid "Credits" + msgstr "·PÁÂ" + +-#~ msgid "Select playinfo font:" +-#~ msgstr "¿ï¾Ü¼½©ñ¸ê°T¦r§Î:" ++msgid "Select playinfo font:" ++msgstr "¿ï¾Ü¼½©ñ¸ê°T¦r§Î:" + +-#~ msgid "Main Window" +-#~ msgstr "¥D­nµøµ¡" ++msgid "Main Window" ++msgstr "¥D­nµøµ¡" + +-#~ msgid "Enable X font display on main window" +-#~ msgstr "¦b¥D­nµøµ¡¨Ï¥Î X ¦r§Î" ++msgid "Enable X font display on main window" ++msgstr "¦b¥D­nµøµ¡¨Ï¥Î X ¦r§Î" + +-#~ msgid "Playinfo font" +-#~ msgstr "¼½©ñ¸ê°T¦r§Î" ++msgid "Playinfo font" ++msgstr "¼½©ñ¸ê°T¦r§Î" + +-#~ msgid "Chun-Chung Chen (xfont patch)" +-#~ msgstr "³¯«T¥ò (xfont ¸É¤B)" ++msgid "Chun-Chung Chen (xfont patch)" ++msgstr "³¯«T¥ò (xfont ¸É¤B)" +diff -ru xmms-1.2.3.orig/xmms/about.c xmms-1.2.3/xmms/about.c +--- xmms-1.2.3.orig/xmms/about.c Tue Sep 5 06:30:24 2000 ++++ xmms-1.2.3/xmms/about.c Thu Sep 21 11:39:59 2000 +@@ -36,6 +36,7 @@ N_("Sean Atkinson"), + N_("James M. Cape"), N_("Anders Carlsson (effect plugins)"), + N_("Chun-Chung Chen (xfont patch)"), N_("Tim Ferguson (joystick plugin)"), N_("Ben Gertzfield"), - N_("Logan Hanks"), -diff -ru xmms-1.2.2/xmms/main.c xmms-1.2.2-xfont/xmms/main.c ---- xmms-1.2.2/xmms/main.c.orig Wed Jul 12 00:11:14 2000 -+++ xmms-1.2.2/xmms/main.c Sun Aug 20 02:02:52 2000 -@@ -321,8 +321,8 @@ + N_("Vesa Halttunen"), +diff -ru xmms-1.2.3.orig/xmms/main.c xmms-1.2.3/xmms/main.c +--- xmms-1.2.3.orig/xmms/main.c Fri Sep 15 06:36:10 2000 ++++ xmms-1.2.3/xmms/main.c Thu Sep 21 11:39:59 2000 +@@ -319,8 +319,8 @@ cfg.always_on_top = FALSE; cfg.sticky = FALSE; cfg.always_show_cb = TRUE; @@ -23,46 +54,47 @@ cfg.show_numbers_in_pl = TRUE; cfg.snap_windows = TRUE; cfg.save_window_position = TRUE; -@@ -335,6 +335,7 @@ +@@ -333,6 +333,8 @@ cfg.no_playlist_advance = FALSE; cfg.smooth_title_scroll = TRUE; cfg.random_skin_on_play = FALSE; + cfg.xfont_for_playinfo = TRUE; ++ cfg.use_fontsets = TRUE; cfg.playlist_x = 295; cfg.playlist_y = 20; -@@ -411,7 +412,10 @@ - xmms_cfg_read_boolean(cfgfile, "xmms", "playlist_shaded", &cfg.playlist_shaded); +@@ -410,6 +412,8 @@ xmms_cfg_read_boolean(cfgfile, "xmms", "playlist_visible", &cfg.playlist_visible); - if (!xmms_cfg_read_string(cfgfile, "xmms", "playlist_font", &cfg.playlist_font)) -- cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*"); -+ cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*,*-ming-medium-r-*-*-10-*"); + xmms_cfg_read_string(cfgfile, "xmms", "playlist_font", &cfg.playlist_font); + xmms_cfg_read_boolean(cfgfile, "xmms", "use_fontsets", &cfg.use_fontsets); + xmms_cfg_read_boolean(cfgfile, "xmms", "xfont_for_playinfo", &cfg.xfont_for_playinfo); -+ if (!xmms_cfg_read_string(cfgfile, "xmms", "playinfo_font", &cfg.playinfo_font)) -+ cfg.playinfo_font = g_strdup("-adobe-helvetica-medium-r-*-*-8-*,*-ming-medium-r-*-*-8-*"); ++ xmms_cfg_read_string(cfgfile, "xmms", "playinfo_font", &cfg.playinfo_font); xmms_cfg_read_int(cfgfile, "xmms", "playlist_position", &cfg.playlist_position); xmms_cfg_read_int(cfgfile, "xmms", "equalizer_x", &cfg.equalizer_x); xmms_cfg_read_int(cfgfile, "xmms", "equalizer_y", &cfg.equalizer_y); -@@ -458,7 +462,8 @@ +@@ -458,9 +462,10 @@ + + xmms_cfg_free(cfgfile); } - else - { +- + if (cfg.playlist_font == NULL) - cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*"); + cfg.playlist_font = g_strdup("-adobe-helvetica-bold-r-*-*-10-*,*-ming-medium-r-*-*-10-*"); ++ if (cfg.playinfo_font == NULL) + cfg.playinfo_font = g_strdup("-adobe-helvetica-medium-r-*-*-8-*,*-ming-medium-r-*-*-8-*"); - } - g_free(filename); - } -@@ -537,6 +542,8 @@ - xmms_cfg_write_boolean(cfgfile, "xmms", "playlist_shaded", cfg.playlist_shaded); + if (cfg.outputplugin == NULL) + { + #if defined(HAVE_SYS_SOUNDCARD_H) || defined(HAVE_MACHINE_SOUNDCARD_H) +@@ -558,6 +563,8 @@ xmms_cfg_write_boolean(cfgfile, "xmms", "playlist_visible", cfg.playlist_visible); xmms_cfg_write_string(cfgfile, "xmms", "playlist_font", cfg.playlist_font); + xmms_cfg_write_boolean(cfgfile, "xmms", "use_fontsets", cfg.use_fontsets); + xmms_cfg_write_boolean(cfgfile, "xmms", "xfont_for_playinfo", cfg.xfont_for_playinfo); + xmms_cfg_write_string(cfgfile, "xmms", "playinfo_font", cfg.playinfo_font); xmms_cfg_write_int(cfgfile, "xmms", "playlist_position", get_playlist_position()); dock_get_widget_pos(equalizerwin, &cfg.equalizer_x, &cfg.equalizer_y); xmms_cfg_write_int(cfgfile, "xmms", "equalizer_x", cfg.equalizer_x); -@@ -2594,6 +2601,7 @@ +@@ -2645,6 +2652,7 @@ tbutton_set_toggled(mainwin_pl, cfg.playlist_visible); mainwin_info = create_textbox(&mainwin_wlist, mainwin_bg, mainwin_gc, 112, 27, 153, 1, SKIN_TEXT); @@ -70,43 +102,26 @@ textbox_set_scroll(mainwin_info, cfg.autoscroll); mainwin_rate_text = create_textbox(&mainwin_wlist, mainwin_bg, mainwin_gc, 111, 43, 15, 0, SKIN_TEXT); mainwin_freq_text = create_textbox(&mainwin_wlist, mainwin_bg, mainwin_gc, 156, 43, 10, 0, SKIN_TEXT); - -diff -ru xmms-1.2.2/xmms/main.h xmms-1.2.2-xfont/xmms/main.h ---- xmms-1.2.2/xmms/main.h Fri Jul 7 09:18:26 2000 -+++ xmms-1.2.2-xfont/xmms/main.h Wed Jul 12 00:13:32 2000 +--- xmms-1.2.3.orig/xmms/main.h Tue Aug 29 11:18:19 2000 ++++ xmms-1.2.3/xmms/main.h Thu Sep 21 11:39:59 2000 @@ -45,8 +45,9 @@ gboolean no_playlist_advance, smooth_title_scroll; gboolean use_backslash_as_dir_delimiter, enable_dga; - gboolean random_skin_on_play; + gboolean random_skin_on_play, use_fontsets; + gboolean xfont_for_playinfo; gfloat equalizer_preamp, equalizer_bands[10]; - gchar *skin, *outputplugin, *filesel_path, *playlist_path, *playlist_font; + gchar *skin, *outputplugin, *filesel_path, *playlist_path, *playlist_font, *playinfo_font; gchar *effectplugin; gchar *disabled_iplugins, *enabled_gplugins, *enabled_vplugins; - GList *url_history; -diff -ru xmms-1.2.2/xmms/playlist_list.c xmms-1.2.2-xfont/xmms/playlist_list.c ---- xmms-1.2.2/xmms/playlist_list.c Fri Jul 7 09:18:26 2000 -+++ xmms-1.2.2-xfont/xmms/playlist_list.c Wed Jul 12 00:13:35 2000 -@@ -232,9 +232,9 @@ - gdk_gc_set_foreground(gc, get_skin_color(SKIN_PLEDIT_NORMALBG)); - gdk_draw_rectangle(obj, gc, TRUE, pl->pl_widget.x, pl->pl_widget.y, width, height); - --/* if ((font = gdk_fontset_load(cfg.playlist_font)) != NULL) */ -+ if ((font = gdk_fontset_load(cfg.playlist_font)) != NULL) - -- if ((font = gdk_font_load(cfg.playlist_font)) != NULL) -+/* if ((font = gdk_font_load(cfg.playlist_font)) != NULL) */ - { - GList *list = get_playlist(); - pl->pl_fheight = font->ascent + font->descent + 1; -diff -ru xmms-1.2.2/xmms/prefswin.c xmms-1.2.2-xfont/xmms/prefswin.c ---- xmms-1.2.2/xmms/prefswin.c Mon Jun 26 05:27:25 2000 -+++ xmms-1.2.2-xfont/xmms/prefswin.c Wed Jul 12 00:13:37 2000 -@@ -60,6 +60,11 @@ - GtkWidget *prefswin_options_font_frame, *prefswin_options_font_hbox; + gchar *eqpreset_default_file, *eqpreset_extension; +diff -ru xmms-1.2.3.orig/xmms/prefswin.c xmms-1.2.3/xmms/prefswin.c +--- xmms-1.2.3.orig/xmms/prefswin.c Tue Sep 12 06:26:38 2000 ++++ xmms-1.2.3/xmms/prefswin.c Thu Sep 21 11:39:59 2000 +@@ -61,6 +61,11 @@ + GtkWidget *prefswin_options_font_vbox; GtkWidget *prefswin_options_font_entry, *prefswin_options_font_browse; - GtkWidget *prefswin_options_fontsel; + GtkWidget *prefswin_options_fontsel, *prefswin_options_fontset; +GtkWidget *prefswin_mainwin_frame, *prefswin_mainwin_vbox, *prefswin_mainwin_table; +GtkWidget *prefswin_mainwin_xfont; +GtkWidget *prefswin_mainwin_font_frame, *prefswin_mainwin_font_hbox; @@ -115,7 +130,7 @@ GtkWidget *prefswin_vbox, *prefswin_hbox, *prefswin_ok, *prefswin_cancel, *prefswin_apply; GtkWidget *prefswin_options_mouse_box, *prefswin_options_mouse_label, -@@ -288,6 +293,7 @@ +@@ -298,6 +303,7 @@ void prefswin_apply_changes(void) { g_free(cfg.playlist_font); @@ -123,7 +138,7 @@ cfg.allow_multiple_instances = GTK_TOGGLE_BUTTON(prefswin_options_ami)->active; cfg.always_show_cb = GTK_TOGGLE_BUTTON(prefswin_options_asc)->active; cfg.convert_underscore = GTK_TOGGLE_BUTTON(prefswin_options_cus)->active; -@@ -298,6 +304,7 @@ +@@ -308,6 +314,7 @@ cfg.save_window_position = GTK_TOGGLE_BUTTON(prefswin_options_swp)->active; cfg.dim_titlebar = GTK_TOGGLE_BUTTON(prefswin_options_dim)->active; cfg.playlist_font = g_strdup(gtk_entry_get_text(GTK_ENTRY(prefswin_options_font_entry))); @@ -131,7 +146,7 @@ cfg.save_playlist_position = GTK_TOGGLE_BUTTON(prefswin_options_pl_pos)->active; cfg.open_rev_order = GTK_TOGGLE_BUTTON(prefswin_options_oro)->active; cfg.get_info_on_load = GTK_TOGGLE_BUTTON(prefswin_options_giol)->active; -@@ -310,7 +317,7 @@ +@@ -321,7 +328,7 @@ cfg.pause_between_songs_time = atoi(gtk_entry_get_text(GTK_ENTRY(prefswin_options_pbs_entry))); cfg.use_backslash_as_dir_delimiter = GTK_TOGGLE_BUTTON(prefswin_options_ubsd)->active; cfg.enable_dga = GTK_TOGGLE_BUTTON(prefswin_options_edga)->active; @@ -140,7 +155,7 @@ cfg.use_eplugins = GTK_TOGGLE_BUTTON(prefswin_egplugins_euse_cbox)->active; cfg.mouse_change = (gint) GTK_ADJUSTMENT(prefswin_options_mouse_entry)->value; -@@ -345,6 +352,10 @@ +@@ -359,6 +366,10 @@ textbox_set_scroll(mainwin_info, TRUE); } @@ -151,7 +166,7 @@ draw_main_window(TRUE); draw_playlist_window(TRUE); draw_equalizer_window(TRUE); -@@ -388,6 +399,25 @@ +@@ -402,6 +413,30 @@ } } @@ -173,11 +188,16 @@ + gtk_widget_show(prefswin_mainwin_fontsel); + } +} ++ ++void prefswin_egplugins_euse_cb(GtkWidget * w, gpointer data) ++{ ++ cfg.use_eplugins = GTK_TOGGLE_BUTTON(w)->active; ++} + - void prefswin_egplugins_euse_cb(GtkWidget * w, gpointer data) + void prefswin_egplugins_guse_cb(GtkWidget * w, gpointer data) { - cfg.use_eplugins = GTK_TOGGLE_BUTTON(w)->active; -@@ -709,6 +739,37 @@ + gint sel; +@@ -714,6 +749,37 @@ gtk_box_pack_start(GTK_BOX(prefswin_vplugins_hbox), prefswin_vplugins_use_cbox, TRUE, TRUE, 0); gtk_notebook_append_page(GTK_NOTEBOOK(prefswin_notebook), prefswin_vplugins_box, gtk_label_new(_("Visualization Plugins"))); @@ -215,7 +235,7 @@ /* * Options page -@@ -1096,6 +1157,7 @@ +@@ -1106,6 +1172,7 @@ is_opening = TRUE; gtk_entry_set_text(GTK_ENTRY(prefswin_options_font_entry), cfg.playlist_font); @@ -223,19 +243,19 @@ gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_ami), cfg.allow_multiple_instances); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_asc), cfg.always_show_cb); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_cus), cfg.convert_underscore); -@@ -1117,6 +1179,7 @@ - gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_pbs), cfg.pause_between_songs); +@@ -1128,6 +1195,7 @@ gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_ubsd), cfg.use_backslash_as_dir_delimiter); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_edga), cfg.enable_dga); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_options_fontset), cfg.use_fontsets); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefswin_mainwin_xfont), cfg.xfont_for_playinfo); sprintf(temp, "%u", cfg.pause_between_songs_time); gtk_entry_set_text(GTK_ENTRY(prefswin_options_pbs_entry), temp); -diff -ru xmms-1.2.2/xmms/skin.c xmms-1.2.2-xfont/xmms/skin.c ---- xmms-1.2.2/xmms/skin.c Mon Jun 12 06:27:14 2000 -+++ xmms-1.2.2-xfont/xmms/skin.c Wed Jul 12 00:13:39 2000 -@@ -96,6 +96,56 @@ - return ret; +diff -ru xmms-1.2.3.orig/xmms/skin.c xmms-1.2.3/xmms/skin.c +--- xmms-1.2.3.orig/xmms/skin.c Fri Sep 15 06:36:10 2000 ++++ xmms-1.2.3/xmms/skin.c Thu Sep 21 11:41:23 2000 +@@ -94,6 +94,56 @@ + gdk_window_get_size(skinpixmap->def_pixmap, &skinpixmap->width, &skinpixmap->height); } +static void _find_textbg_textfg(GdkPixmap *text, GdkColor *bgc, GdkColor *fgc) @@ -291,61 +311,65 @@ void init_skins(void) { gint i; -@@ -106,6 +156,7 @@ - skin->def_titlebar = gdk_pixmap_create_from_xpm_d(mainwin->window, NULL, NULL, skin_titlebar); - skin->def_shufrep = gdk_pixmap_create_from_xpm_d(mainwin->window, NULL, NULL, skin_shufrep); - skin->def_text = gdk_pixmap_create_from_xpm_d(mainwin->window, NULL, NULL, skin_text); -+ _find_textbg_textfg(skin->def_text, skin->def_textbg, skin->def_textfg); - skin->def_volume = gdk_pixmap_create_from_xpm_d(mainwin->window, NULL, NULL, skin_volume); - skin->def_monostereo = gdk_pixmap_create_from_xpm_d(mainwin->window, NULL, NULL, skin_monoster); - skin->def_playpause = gdk_pixmap_create_from_xpm_d(mainwin->window, NULL, NULL, skin_playpaus); -@@ -488,6 +539,7 @@ - skin->titlebar = load_skin_pixmap(path, "titlebar.bmp", skin->def_titlebar); - skin->shufrep = load_skin_pixmap(path, "shufrep.bmp", skin->def_shufrep); - skin->text = load_skin_pixmap(path, "text.bmp", skin->def_text); -+ _find_textbg_textfg(skin->text, skin->textbg, skin->textfg); - skin->volume = load_skin_pixmap(path, "volume.bmp", skin->def_volume); - skin->balance = load_skin_pixmap(path, "balance.bmp", skin->def_volume); - skin->monostereo = load_skin_pixmap(path, "monoster.bmp", skin->def_monostereo); -@@ -689,6 +741,14 @@ +@@ -104,6 +154,7 @@ + load_def_pixmap(&skin->titlebar, skin_titlebar); + load_def_pixmap(&skin->shufrep, skin_shufrep); + load_def_pixmap(&skin->text, skin_text); ++ _find_textbg_textfg(skin->text.def_pixmap, skin->def_textbg, skin->def_textfg); + load_def_pixmap(&skin->volume, skin_volume); + load_def_pixmap(&skin->balance, skin_volume); + load_def_pixmap(&skin->monostereo, skin_monoster); +@@ -513,6 +564,7 @@ + load_skin_pixmap(&skin->titlebar, path, "titlebar.bmp"); + load_skin_pixmap(&skin->shufrep, path, "shufrep.bmp"); + load_skin_pixmap(&skin->text, path, "text.bmp"); ++ _find_textbg_textfg(skin->text.pixmap, skin->textbg, skin->textfg); + load_skin_pixmap(&skin->volume, path, "volume.bmp"); + load_skin_pixmap(&skin->balance, path, "balance.bmp"); + if (skin->balance.pixmap == NULL) +@@ -713,6 +765,18 @@ ret = skin->pledit_selectedbg; if (!ret) ret = &skin->def_pledit_selectedbg; + break; + case SKIN_TEXTBG: -+ if (skin->text) ret = skin->textbg; -+ else ret = skin->def_textbg; ++ if (skin->text.pixmap) ++ ret = skin->textbg; ++ else ++ ret = skin->def_textbg; + break; + case SKIN_TEXTFG: -+ if (skin->text) ret = skin->textfg; -+ else ret = skin->def_textfg; ++ if (skin->text.pixmap) ++ ret = skin->textfg; ++ else ++ ret = skin->def_textfg; break; } return ret; -diff -ru xmms-1.2.2/xmms/skin.h xmms-1.2.2-xfont/xmms/skin.h ---- xmms-1.2.2/xmms/skin.h Wed Apr 12 06:46:18 2000 -+++ xmms-1.2.2-xfont/xmms/skin.h Wed Jul 12 00:13:42 2000 -@@ -30,7 +30,7 @@ +diff -ru xmms-1.2.3.orig/xmms/skin.h xmms-1.2.3/xmms/skin.h +--- xmms-1.2.3.orig/xmms/skin.h Sat Aug 5 07:10:37 2000 ++++ xmms-1.2.3/xmms/skin.h Thu Sep 21 11:39:59 2000 +@@ -33,7 +33,7 @@ typedef enum { SKIN_PLEDIT_NORMAL, SKIN_PLEDIT_CURRENT, SKIN_PLEDIT_NORMALBG, - SKIN_PLEDIT_SELECTEDBG + SKIN_PLEDIT_SELECTEDBG, SKIN_TEXTBG, SKIN_TEXTFG } SkinColorIndex; - -@@ -42,6 +42,8 @@ - GdkPixmap *titlebar, *def_titlebar; - GdkPixmap *shufrep, *def_shufrep; - GdkPixmap *text, *def_text; + typedef struct +@@ -64,6 +64,8 @@ + SkinPixmap pledit; + SkinPixmap eqmain; + SkinPixmap eq_ex; + GdkColor textbg[6], def_textbg[6]; + GdkColor textfg[6], def_textfg[6]; - GdkPixmap *volume, *def_volume; - GdkPixmap *balance, *def_balance; - GdkPixmap *monostereo, *def_monostereo; -diff -ru xmms-1.2.2/xmms/textbox.c xmms-1.2.2-xfont/xmms/textbox.c ---- xmms-1.2.2/xmms/textbox.c Fri Jun 16 06:17:19 2000 -+++ xmms-1.2.2-xfont/xmms/textbox.c Wed Jul 12 00:13:44 2000 + GdkColor *pledit_normal, def_pledit_normal; + GdkColor *pledit_current, def_pledit_current; + GdkColor *pledit_normalbg, def_pledit_normalbg; +diff -ru xmms-1.2.3.orig/xmms/textbox.c xmms-1.2.3/xmms/textbox.c +--- xmms-1.2.3.orig/xmms/textbox.c Sat Aug 5 07:10:38 2000 ++++ xmms-1.2.3/xmms/textbox.c Thu Sep 21 11:39:59 2000 @@ -55,9 +55,9 @@ cw = tb->tb_pixmap_width - tb->tb_offset; if (cw > tb->tb_widget.width) @@ -476,9 +500,9 @@ g_free(tb->tb_text); g_free(tb); } -diff -ru xmms-1.2.2/xmms/textbox.h xmms-1.2.2-xfont/xmms/textbox.h ---- xmms-1.2.2/xmms/textbox.h Wed Feb 16 13:05:59 2000 -+++ xmms-1.2.2-xfont/xmms/textbox.h Wed Jul 12 00:13:47 2000 +diff -ru xmms-1.2.3.orig/xmms/textbox.h xmms-1.2.3/xmms/textbox.h +--- xmms-1.2.3.orig/xmms/textbox.h Wed Feb 16 13:05:59 2000 ++++ xmms-1.2.3/xmms/textbox.h Thu Sep 21 11:39:59 2000 @@ -33,12 +33,14 @@ tb_is_dragging; gint tb_timeout_tag, tb_drag_x, tb_drag_off; diff 2: add zh-xmms (CVSROOT/modules) Index: modules =================================================================== RCS file: /home/ncvs/CVSROOT/modules,v retrieving revision 1.1754 diff -u -r1.1754 modules --- modules 2000/09/22 07:19:36 1.1754 +++ modules 2000/09/23 02:18:57 @@ -5188,6 +5188,7 @@ zh-xcin ports/chinese/xcin zh-xcin25 ports/chinese/xcin25 zh-xemacs ports/chinese/xemacs +zh-xmms ports/chinese/xmms zic src/usr.sbin/zic zimg ports/graphics/zimg zip ports/archivers/zip >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 Sep 22 19:53: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sneakerz.org (sneakerz.org [207.154.226.254]) by hub.freebsd.org (Postfix) with ESMTP id 1867337B422 for ; Fri, 22 Sep 2000 19:52:59 -0700 (PDT) Received: by sneakerz.org (Postfix, from userid 1023) id B77365D009; Fri, 22 Sep 2000 21:52:53 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by sneakerz.org (Postfix) with ESMTP id B3BD559206; Fri, 22 Sep 2000 21:52:53 -0500 (CDT) Date: Fri, 22 Sep 2000 21:52:53 -0500 (CDT) From: missnglnk To: yds@dppl.com Cc: freebsd-ports@freebsd.org Subject: Re: FIX: mail/postfix-current In-Reply-To: <20000921052428.2A3781B20E@volyn.dppl.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org 1) torstenb@freebsd.org no longer maintains postfix-current. 2) Out of courtesy, contact the port maintainer before filing a PR. 3) I have received a patch from another individual along with patches I have made myself to correct some issues I overlooked. 4) There will be no more work on snapshot-20000531 as a new snapshot (snapshot-20000921) was released. -- missnglnk@sneakerz.org http://www.sneakerz.org/~missnglnk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 20: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 CF66737B43C for ; Fri, 22 Sep 2000 20:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA06878; Fri, 22 Sep 2000 20:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from belldandy.unnumbered.net (belldandy.unnumbered.net [202.212.35.170]) by hub.freebsd.org (Postfix) with ESMTP id EFE6337B422 for ; Fri, 22 Sep 2000 20:22:51 -0700 (PDT) Received: (from umeno@localhost) by belldandy.unnumbered.net (8.11.0/3.7W-primary) id e8N3Mjj08658; Sat, 23 Sep 2000 12:22:45 +0900 (JST) Message-Id: <200009230322.e8N3Mjj08658@belldandy.unnumbered.net> Date: Sat, 23 Sep 2000 12:22:45 +0900 (JST) From: umeno@rr.iij4u.or.jp Reply-To: umeno@rr.iij4u.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21491: too old ethereal version Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21491 >Category: ports >Synopsis: Too old ethreal version, please update to version 0.8.12 >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 Sep 22 20:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 4.1-STABLE i386 >Organization: Personal >Environment: FreeBSD belldandy.unnumbered.net 4.1-STABLE FreeBSD 4.1-STABLE #4: Fri Sep 15 11:11:53 JST 2000 root@belldandy.unnumbered.net:/usr/src/sys/compile/SMP2 i386 >Description: Release of Ethereal 0.8.12 at September 14, 2000. Please see http://ethereal.zing.org/ . >How-To-Repeat: # cd /usr/ports/net/ethereal # make install >Fix: diff -cr /usr/ports/net/ethereal/Makefile ethereal/Makefile *** /usr/ports/net/ethereal/Makefile Wed Jul 19 10:24:10 2000 --- ethereal/Makefile Sat Sep 23 08:11:39 2000 *************** *** 6,12 **** # PORTNAME= ethereal ! PORTVERSION= 0.8.10 CATEGORIES= net ipv6 MASTER_SITES= http://alpha1.linuxberg.com/files/x11/network/ \ http://www.linuxberg.com/files/x11/network/ \ --- 6,12 ---- # PORTNAME= ethereal ! PORTVERSION= 0.8.12 CATEGORIES= net ipv6 MASTER_SITES= http://alpha1.linuxberg.com/files/x11/network/ \ http://www.linuxberg.com/files/x11/network/ \ diff -cr /usr/ports/net/ethereal/files/md5 ethereal/files/md5 *** /usr/ports/net/ethereal/files/md5 Thu Jul 6 03:31:22 2000 --- ethereal/files/md5 Sat Sep 23 08:19:42 2000 *************** *** 1 **** ! MD5 (ethereal-0.8.10.tar.gz) = 8d3e78d10410d5bc2c2d34bcfd7e5235 --- 1 ---- ! MD5 (ethereal-0.8.12.tar.gz) = c406a5b4cbd0e8eb798946a90704f973 diff -cr /usr/ports/net/ethereal/patches/patch-aa ethereal/patches/patch-aa *** /usr/ports/net/ethereal/patches/patch-aa Sun Apr 23 06:19:37 2000 --- ethereal/patches/patch-aa Sat Sep 23 08:28:41 2000 *************** *** 1,25 **** ! --- gtk/main.c.orig Wed Apr 5 10:17:53 2000 ! +++ gtk/main.c Sat Apr 22 20:33:00 2000 ! @@ -1161,6 +1161,7 @@ /* Let GTK get its args */ gtk_init (&argc, &argv); + gtk_set_locale (); ! prefs = read_prefs(&pf_path); ! if (pf_path != NULL) { ! @@ -1440,12 +1441,12 @@ ! sprintf(rc_file, "%s/%s", get_home_dir(), RC_FILE); ! gtk_rc_parse(rc_file); ! - if ((m_r_font = gdk_font_load(medium_font)) == NULL) { ! + if ((m_r_font = gdk_fontset_load(medium_font)) == NULL) { ! fprintf(stderr, "ethereal: Error font %s not found (use -m option)\n", medium_font); ! exit(1); ! } ! - if ((m_b_font = gdk_font_load(bold_font)) == NULL) { ! + if ((m_b_font = gdk_fontset_load(bold_font)) == NULL) { ! fprintf(stderr, "ethereal: Error font %s not found (use -b option)\n", bold_font); ! exit(1); ! } --- 1,21 ---- ! --- gtk/main.c.orig Wed Sep 13 05:25:59 2000 ! +++ gtk/main.c Sat Sep 23 08:24:10 2000 ! @@ -891,6 +891,7 @@ /* Let GTK get its args */ gtk_init (&argc, &argv); + gtk_set_locale (); ! prefs = read_prefs(&gpf_open_errno, &gpf_path, &pf_open_errno, &pf_path); ! @@ -1198,8 +1199,8 @@ ! /* Try to load the regular and boldface fixed-width fonts */ ! bold_font_name = boldify(prefs->gui_font_name); ! - m_r_font = gdk_font_load(prefs->gui_font_name); ! - m_b_font = gdk_font_load(bold_font_name); ! + m_r_font = gdk_fontset_load(prefs->gui_font_name); ! + m_b_font = gdk_fontset_load(bold_font_name); ! if (m_r_font == NULL || m_b_font == NULL) { ! /* XXX - pop this up as a dialog box? no */ ! if (m_r_font == NULL) { diff -cr /usr/ports/net/ethereal/patches/patch-ab ethereal/patches/patch-ab *** /usr/ports/net/ethereal/patches/patch-ab Sun Apr 23 06:19:38 2000 --- ethereal/patches/patch-ab Sat Sep 23 08:36:14 2000 *************** *** 1,13 **** ! --- gtk/main.h.orig Sat Apr 22 20:17:29 2000 ! +++ gtk/main.h Sat Apr 22 20:17:42 2000 ! @@ -38,8 +38,8 @@ ! #define MONO_MEDIUM_FONT "-*-lucida console-medium-*-*-*-*-100-*-*-*-*-*-*" ! #define MONO_BOLD_FONT "-*-lucida console-bold-*-*-*-*-100-*-*-*-*-*-*" #else ! -#define MONO_MEDIUM_FONT "-*-lucidatypewriter-medium-r-normal-*-*-120-*-*-*-*-iso8859-1" ! -#define MONO_BOLD_FONT "-*-lucidatypewriter-bold-r-normal-*-*-120-*-*-*-*-iso8859-1" ! +#define MONO_MEDIUM_FONT "-*-lucidatypewriter-medium-r-normal-*-*-120-*-*-*-*-iso8859-1,*" ! +#define MONO_BOLD_FONT "-*-lucidatypewriter-bold-r-normal-*-*-120-*-*-*-*-iso8859-1,*" #endif ! #define RC_FILE PF_DIR "/gtkrc" ! #define DEF_WIDTH 750 --- 1,11 ---- ! --- prefs.c.orig Wed Sep 13 05:25:46 2000 ! +++ prefs.c Sat Sep 23 08:35:45 2000 ! @@ -533,7 +533,7 @@ ! #ifdef WIN32 ! prefs.gui_font_name = g_strdup("-*-lucida console-medium-r-*-*-*-100-*-*-*-*-*-*"); #else ! - prefs.gui_font_name = g_strdup("-*-fixed-medium-r-semicondensed-*-*-120-*-*-*-*-*-*"); ! + prefs.gui_font_name = g_strdup("-*-fixed-medium-r-semicondensed-*-*-120-*-*-*-*-*-*,*"); #endif ! prefs.gui_marked_fg.pixel = 65535; ! prefs.gui_marked_fg.red = 65535; Only in /usr/ports/net/ethereal: work >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 Sep 22 21: 9: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 AC69E37B423; Fri, 22 Sep 2000 21:09:17 -0700 (PDT) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA14796; Fri, 22 Sep 2000 21:09:17 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Fri, 22 Sep 2000 21:09:17 -0700 (PDT) From: Message-Id: <200009230409.VAA14796@freefall.freebsd.org> To: billf@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21487: Update and name change for net/dnscache (now djbdns) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update and name change for net/dnscache (now djbdns) Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: billf Responsible-Changed-When: Fri Sep 22 21:08:57 PDT 2000 Responsible-Changed-Why: correct PR in limbo. http://www.freebsd.org/cgi/query-pr.cgi?pr=21487 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 21:35: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 636D937B423; Fri, 22 Sep 2000 21:35:16 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA18750; Fri, 22 Sep 2000 21:35:16 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Date: Fri, 22 Sep 2000 21:35:16 -0700 (PDT) From: Message-Id: <200009230435.VAA18750@freefall.freebsd.org> To: lioux@uol.com.br, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21453: Port update MAINTAINER email change net/kicq net/icqlib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update MAINTAINER email change net/kicq net/icqlib State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Fri Sep 22 21:34:57 PDT 2000 State-Changed-Why: Changes committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=21453 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 21:37: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 5E15437B423; Fri, 22 Sep 2000 21:37:26 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA19095; Fri, 22 Sep 2000 21:37:26 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Date: Fri, 22 Sep 2000 21:37:26 -0700 (PDT) From: Message-Id: <200009230437.VAA19095@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/21491: Too old ethreal version, please update to version 0.8.12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Too old ethreal version, please update to version 0.8.12 Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: dannyboy Responsible-Changed-When: Fri Sep 22 21:36:51 PDT 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=21491 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 21: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 2330E37B422 for ; Fri, 22 Sep 2000 21:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA20160; Fri, 22 Sep 2000 21:50: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 2E87637B422 for ; Fri, 22 Sep 2000 21:49:47 -0700 (PDT) Received: from foobar.foobar.eyep.net (postfix@p4.a8.du.radix.net [207.192.132.132]) by hyperhost.net (8.9.3/8.9.3) with ESMTP id AAA05496 for ; Sat, 23 Sep 2000 00:49:44 -0400 (EDT) Received: by foobar.foobar.eyep.net (Postfix, from userid 0) id B3897137F0A; Sat, 23 Sep 2000 00:51:37 -0400 (EDT) Message-Id: <20000923045137.B3897137F0A@foobar.foobar.eyep.net> Date: Sat, 23 Sep 2000 00:51:37 -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/21492: Update: mail/bbmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21492 >Category: ports >Synopsis: Update: mail/bbmail >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 Sep 22 21:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Seal >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: bbmail-0.6.8 -> 0.6.9 Netscape mailbox support added >How-To-Repeat: >Fix: diff -ruN bbmail.orig/Makefile bbmail/Makefile --- bbmail.orig/Makefile Sat Sep 23 00:45:05 2000 +++ bbmail/Makefile Sat Sep 23 00:44:32 2000 @@ -6,7 +6,7 @@ # PORTNAME= bbmail -PORTVERSION= 0.6.8 +PORTVERSION= 0.6.9 CATEGORIES= mail MASTER_SITES= http://bbtools.thelinuxcommunity.org/sources/ diff -ruN bbmail.orig/files/md5 bbmail/files/md5 --- bbmail.orig/files/md5 Wed Jun 28 16:27:28 2000 +++ bbmail/files/md5 Sat Sep 23 00:46:11 2000 @@ -1 +1 @@ -MD5 (bbmail-0.6.8.tar.gz) = 36d0f8682362d5a902d44800518b56ec +MD5 (bbmail-0.6.9.tar.gz) = 60c4a2751f88a4d935ef6b9d2ed8a13e >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 Sep 22 22: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 9926637B423 for ; Fri, 22 Sep 2000 22:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA30870; Fri, 22 Sep 2000 22:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 22 Sep 2000 22:40:02 -0700 (PDT) Message-Id: <200009230540.WAA30870@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Luis Casillas Subject: Re: ports/21486: fetchmail KPOP does not work Reply-To: Luis Casillas Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21486; it has been noted by GNATS. From: Luis Casillas To: freebsd-gnats-submit@FreeBSD.org Cc: casillas@stanford.edu Subject: Re: ports/21486: fetchmail KPOP does not work Date: Fri, 22 Sep 2000 22:36:48 -0700 I found the fix for my PR. Fetchmail depends on there being a line for kpop on /etc/services: kpop 1109/tcp # Pop with Kerberos Adding this line makes the problem go away. --- Luis Casillas Department of Linguistics Stanford Univeristy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 23: 0: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 EAF7637B424 for ; Fri, 22 Sep 2000 23:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA34303; Fri, 22 Sep 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-94-as.acessonet.com.br (200-227-201-94-as.acessonet.com.br [200.227.201.94]) by hub.freebsd.org (Postfix) with ESMTP id D535E37B43C for ; Fri, 22 Sep 2000 22:51:28 -0700 (PDT) Received: (qmail 2087 invoked by uid 1001); 23 Sep 2000 05:50:39 -0000 Message-Id: <20000923055039.2086.qmail@Fedaykin.here> Date: 23 Sep 2000 05:50:39 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org Cc: obrien@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21493: Updated port emulators/spim 5.9 -> 6.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21493 >Category: ports >Synopsis: Updated port emulators/spim 5.9 -> 6.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 22 23:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Fedaykin.here 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 18:08:03 BRT 2000 root@Fedaykin.here:/usr/obj/usr/src/sys/LIOUX i386 >Description: I updated the spim version from 5.9 to 6.2. Setting ALL_TARGET is no longer necessary and unsetting XMKMF did not seem to do any harm. Besides, I am letting the port install spim and xspim by itself. Therefore, I did post-install the other way around and simplified patch-01 + 0 files added/removed + 0 directories added/removed >How-To-Repeat: n/a >Fix: diff -ruN /usr/ports/emulators/spim/Makefile spim/Makefile --- /usr/ports/emulators/spim/Makefile Thu Jun 8 00:44:16 2000 +++ spim/Makefile Thu Sep 14 15:51:17 2000 @@ -1,4 +1,3 @@ -# ex:ts=8 # Ports collection makefile for: spim # Date created: Mon Oct 28, 1996 # Whom: David O'Brien (obrien@cs.ucdavis.edu) @@ -7,9 +6,9 @@ # PORTNAME= spim -PORTVERSION= 5.9 +PORTVERSION= 6.2 CATEGORIES= emulators -MASTER_SITES= ftp://ftp.cs.wisc.edu/pub/spim/Old_Versions/ +MASTER_SITES= ftp://ftp.cs.wisc.edu/pub/spim/ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= obrien@FreeBSD.org @@ -19,21 +18,16 @@ HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure USE_IMAKE= yes -XMKMF= xmkmf -ALL_TARGET= y.tab.c depend cl-spim cl-xspim MAN1= spim.1 xspim.1 -pre-configure: - @${RM} -f ${WRKSRC}/y.tab.* - pre-install: - @${MKDIR} ${PREFIX}/share/spim && ${CHMOD} a+rx ${PREFIX}/share/spim + @${MKDIR} ${PREFIX}/share/spim && ${CHMOD} a+rx,u+w ${PREFIX}/share/spim post-install: - [ -e ${PREFIX}/bin/cl-spim ] && \ - ${LN} -f ${PREFIX}/bin/cl-spim ${PREFIX}/bin/spim - [ -e ${PREFIX}/bin/cl-xspim ] && \ - ${LN} -f ${PREFIX}/bin/cl-xspim ${PREFIX}/bin/xspim + [ -e ${PREFIX}/bin/spim ] && \ + ${LN} -f ${PREFIX}/bin/spim ${PREFIX}/bin/cl-spim + [ -e ${PREFIX}/bin/xspim ] && \ + ${LN} -f ${PREFIX}/bin/xspim ${PREFIX}/bin/cl-xspim .if !defined(NOPORTDOCS) @${ECHO} "Installing spim/xspim documentation" @${MKDIR} ${PREFIX}/share/doc/spim \ diff -ruN /usr/ports/emulators/spim/files/md5 spim/files/md5 --- /usr/ports/emulators/spim/files/md5 Sat Feb 15 20:35:05 1997 +++ spim/files/md5 Thu Sep 14 14:10:40 2000 @@ -1 +1 @@ -MD5 (spim5.9.tar.gz) = 4e706ff0a93ef64cabab4b5fc79059c3 +MD5 (spim6.2.tar.gz) = fccec0eaf1e2c2ed76375180e2b39491 diff -ruN /usr/ports/emulators/spim/patches/patch-01 spim/patches/patch-01 --- /usr/ports/emulators/spim/patches/patch-01 Sat Feb 15 20:35:08 1997 +++ spim/patches/patch-01 Thu Sep 14 14:10:18 2000 @@ -1,7 +1,6 @@ -diff -ru Imakefile.orig Imakefile ---- Imakefile.orig Fri Sep 20 22:44:50 1996 -+++ Imakefile Mon Feb 3 11:26:40 1997 -@@ -57,13 +57,13 @@ +--- Imakefile.orig Thu Jan 7 22:07:04 1999 ++++ Imakefile Thu Sep 14 14:09:29 2000 +@@ -44,13 +44,13 @@ # # Full path for directory that will hold the trap handler file: @@ -18,18 +17,7 @@ # If you have flex, use it instead of lex. If you use flex, define this -@@ -164,8 +164,8 @@ - NormalProgramTarget(cl-spim_sub,$(CLOBJS),,,) - NormalProgramTarget(cl-xspim_sub,$(XCLOBJS),$(DEPLIBS),$(LOCALLIBS),$(SYSLIBS)) - --InstallProgram(spim,$(BIN_DIR)) --InstallProgram(xspim,$(BIN_DIR)) -+InstallProgram(cl-spim,$(BIN_DIR)) -+InstallProgram(cl-xspim,$(BIN_DIR)) - InstallManPage(spim,$(MAN_DIR)) - InstallManPage(xspim,$(MAN_DIR)) - InstallNonExec(trap.handler,$(TRAP_DIR)) -@@ -291,7 +291,7 @@ +@@ -252,7 +252,7 @@ mv -f lex.yy.c.xx lex.yy.c depend:: diff -ruN /usr/ports/emulators/spim/pkg/PLIST spim/pkg/PLIST --- /usr/ports/emulators/spim/pkg/PLIST Thu Jun 8 00:44:16 2000 +++ spim/pkg/PLIST Thu Sep 14 15:49:50 2000 @@ -1,9 +1,12 @@ -bin/spim -bin/xspim bin/cl-spim bin/cl-xspim -share/spim/trap.handler -share/doc/spim/spim.ps.gz +bin/spim +bin/xspim share/doc/spim/cycle.ps.gz -@dirrm share/doc/spim +share/doc/spim/spim.ps.gz +share/spim/trap.handler @dirrm share/spim +@dirrm share/doc/spim +@cwd %%X11BASE%% +lib/X11/doc/html/spim.1.html +lib/X11/doc/html/xspim.1.html >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 Sep 22 23:37:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bowhill.yi.org (bowhill.yi.org [216.122.158.78]) by hub.freebsd.org (Postfix) with ESMTP id 95AB337B423 for ; Fri, 22 Sep 2000 23:37:09 -0700 (PDT) Received: from localhost (kosmos@localhost) by bowhill.yi.org (8.11.0/8.11.0) with ESMTP id e8N6b3n07026; Fri, 22 Sep 2000 23:37:04 -0700 (PDT) (envelope-from kosmos@bowhill.yi.org) Date: Fri, 22 Sep 2000 23:37:03 -0700 (PDT) From: kosmos To: James Housley Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports features wish list: USE_PACKAGE_FIRST In-Reply-To: <39CC03C7.A67ACB97@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 On Fri, 22 Sep 2000, James Housley wrote: > kosmos wrote: > > > > I have an item for the ports development wish-list. This is > > probably not a new idea, but it is related to building packages > > on-the-fly, and it would be useful. > > > > How about a make target that would look in packages/All to add > > a dependent package before attempting to install it as a port? > > > This seems like a reasonable thing to want. How would this fit in with > the discussed re-write of the ports system? This is a philisophical question, right? :) Since the design goals of a ports rewrite/makeover are not entirely clear to me, I can't really say for sure. I think it would mainly be beneficial to re-installation, or reverting an upgrade that failed, if 'make upgrade' is one of the objectives. The systems basic behaviour would have to be changed, though. For instance, suppose the system's default "make install" behaviour in ports was transformed to : "make DEPENDS_TARGET=package package" (which BTW is an impressive command) Everything gets installed, same as usual, but packages are made of each dependency and are stored in packages/All, as an extra step. If USE_PKG_FIRST was on by default, the system could afford to delete each distfile after it was made, because the built port and it's dependencies would now be available as a packages, not distfiles. OK, less disk space used, and re-installation of things is easier. Suppose a month later, a particular port gets passed some kind of 'make upgrade' target. Somehow, make knows that the port (and some of its dependencies) have been superceded by newer versions. So, it deinstalls these old ports, and builds/installs/packages the new versions. However, if a build failure occurs during this process, doing a 'make revert' is a painless, becuase packages are already built for the old stuff. USE_PACKAGE_FIRST would just be told to use the old stuff, not the new stuff. Other benefits; * Ports could optionally install packages from from a fixed CD package repository, or over a network. Unless they were explictly told to do something like: USE_DISTFILE_FIRST, they could install packages instead. The only problem I can see with something this is mixed library versions, if libc changed or something. But that problem would have to be addressed anyway. --Allan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 23:43: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sneakerz.org (sneakerz.org [207.154.226.254]) by hub.freebsd.org (Postfix) with ESMTP id B14AB37B423 for ; Fri, 22 Sep 2000 23:43:07 -0700 (PDT) Received: by sneakerz.org (Postfix, from userid 1023) id 0BA695D006; Sat, 23 Sep 2000 01:43:02 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by sneakerz.org (Postfix) with ESMTP id 0A67059206; Sat, 23 Sep 2000 01:43:02 -0500 (CDT) Date: Sat, 23 Sep 2000 01:43:02 -0500 (CDT) From: missnglnk To: "David W. Chapman Jr." Cc: ports@FreeBSD.org Subject: Re: SASL-PWCHECK In-Reply-To: <006c01c02445$09fea2c0$931576d8@inethouston.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 I apologize for not marking SASL support in postfix-current as forbidden, I overlooked the readme file that stated SASL support should not be enabled due to its lack of documentation, even though this doesn't solve the problem, I apologize for adding to the confusion. -- missnglnk@sneakerz.org http://www.sneakerz.org/~missnglnk On Thu, 21 Sep 2000, David W. Chapman Jr. wrote: > Date: Thu, 21 Sep 2000 22:27:30 -0500 > From: David W. Chapman Jr. > To: ports@FreeBSD.org > Subject: SASL-PWCHECK > > Anyone have any luck getting the SASL port with the pwcheck method instead > of sasl_db working with anything, particularly postfix? > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 22 23: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 1C9C937B42C for ; Fri, 22 Sep 2000 23:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA44749; Fri, 22 Sep 2000 23:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2D13037B424; Fri, 22 Sep 2000 23:44:42 -0700 (PDT) Message-Id: <20000923064442.2D13037B424@hub.freebsd.org> Date: Fri, 22 Sep 2000 23:44:42 -0700 (PDT) From: isetr0@sevicron.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21495: Evolution calendar crashes on attempt to open. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21495 >Category: ports >Synopsis: Evolution calendar crashes on attempt to open. >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 Sep 22 23:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Fred Dipp >Release: 4.1-Stable >Organization: >Environment: FreeBSD dually.sevicron.com 4.1-STABLE FreeBSD 4.1-STABLE #3: Sun Sep 10 00:46:37 EDT 2000 root@dually.sevicron.com:/usr/src/sys/compile/DUALLY i386 >Description: Somewhere around the update from Evolution-0.3 to Evolution-0.4 - I can not get into Calendar. I can open evolution and switch between Contacts and Inbox, however, if I try to go into Calendar - it crashes with the Gnome bug dialog. I build my ports from scratch and all dependencies of the most recent Evolution(0.5.1_1), are met. As I mentioned, this used to work for me, per Evolution-0.3 or so. I don't know where to start looking for problems. On a seperate, but possibly related note - I can get the Gnome Control Center to crash by opening any given dialog, and close the control center (via File--> Exit or the X) prior to clicking OK/Cancel/etc...in the dialog. >How-To-Repeat: Open Evolution - click the Calendar icon. >Fix: Unknown at this time >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 Sep 23 0:18:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pan.bijt.net (pan.bijt.net [213.196.2.97]) by hub.freebsd.org (Postfix) with ESMTP id D4D4D37B424 for ; Sat, 23 Sep 2000 00:18:10 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by pan.bijt.net (8.11.0/8.11.0) with ESMTP id e8N7I2u37879 for ; Sat, 23 Sep 2000 09:18:04 +0200 (CEST) (envelope-from marc@schneiders.org) Date: Sat, 23 Sep 2000 09:18:02 +0200 (CEST) From: Marc Schneiders X-Sender: marc@pan.bijt.net To: ports@freebsd.org Subject: problem with mailman Message-ID: X-Organization: Venster (Zeist - NL) X-URL: http://www.bijt.net/ X-Operating-System: FreeBSD: Unleash the Power of the Daemon MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am trying to setup mailman (/usr/ports/mail/mailman) on a 4.1 STABLE machine. It seems to work alright, but there is a problem with a cronjob that runs every minute and produces the following error to messages: Sep 23 08:32:00 pan CRON[37708]: _secure_path: cannot stat -s/.login_conf: Permission denied I assume this is because user mailman is in passwd like this: mailman:f[bla-bla]U:89:89::0:0:User &:-s:/bin/sh He has no /home/dir and no .login_conf. Adding this manually may be insecure?? The cron job is one of those in a cron file that comes with mailman. We are instructed in mailman install to add that to crontab as user mailman. Running the cronjobs as some other user?? Any suggestions? Please, CC, to me, as I am not subscribed to ports. -- *------------------------------------------------------* Marc Schneiders (the rest is in the header, really) *------------------------------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 1:19: 3 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 1F03637B424 for ; Sat, 23 Sep 2000 01:19:01 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca1-01.ix.netcom.com [209.109.232.1]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id EAA02660 for ; Sat, 23 Sep 2000 04:18:41 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e8N8I4l02967; Sat, 23 Sep 2000 01:18:04 -0700 (PDT) (envelope-from asami) To: ports@freebsd.org Subject: Re: cvs commit: ports/net/licq Makefile ports/irc/kvirc Makefile References: <200009230806.BAA59431@freefall.freebsd.org> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 23 Sep 2000 01:17:30 -0700 In-Reply-To: Satoshi Asami's message of "Sat, 23 Sep 2000 01:05:59 -0700 (PDT)" Message-ID: Lines: 8 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * You don't want to depend on qt21 -- it's dead. Change them to USE_QT2. * 1.14 +3 -3 ports/irc/kvirc/Makefile Will, check your crack pipe please. You can't write "qt2.3" in BUILD_DEPENDS! ;) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 1:30: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 BF94037B424 for ; Sat, 23 Sep 2000 01:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA63089; Sat, 23 Sep 2000 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id D190437B424 for ; Sat, 23 Sep 2000 01:23:37 -0700 (PDT) Received: (from clive@localhost) by cartier.cirx.org (8.11.0/8.11.0) id e8N8NXY04095; Sat, 23 Sep 2000 16:23:33 +0800 (CST) (envelope-from clive) Message-Id: <200009230823.e8N8NXY04095@cartier.cirx.org> Date: Sat, 23 Sep 2000 16:23:33 +0800 (CST) From: clive@CirX.ORG Reply-To: clive@CirX.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21496: Update and enslave chinese/tin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21496 >Category: ports >Synopsis: Update and enslave zh-tin >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 Sep 23 01:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 5.0-CURRENT i386 >Organization: This site doesnt' exist >Environment: FreeBSD 5.0-CURRENT #0: Thu Sep 21 15:46:48 CST 2000 root@cartier.cirx.org:/home/nexus/obj/usr/local/src/sys/CARTIER >Description: Update chinese/tin. Added files: patches/patch-charset.c patches/patch-cook.c patches/patch-init.c Removed files: files/md5 patches/patch-aa patches/patch-ab pkg/COMMENT pkg/DESCR pkg/PLIST >How-To-Repeat: Apply patch below. >Fix: diff -ruN tin~/Makefile tin/Makefile --- tin~/Makefile Thu Apr 13 16:28:17 2000 +++ tin/Makefile Sat Sep 23 16:02:12 2000 @@ -6,59 +6,16 @@ # $FreeBSD: ports/chinese/tin/Makefile,v 1.20 2000/04/13 08:28:17 asami Exp $ # -PORTNAME= tin -PORTVERSION= 1.4.2 -CATEGORIES= chinese news -MASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/v1.4/ \ - ftp://nuxi.ucdavis.edu/pub/tin/v1.4/ \ - ftp://ftp.nuxi.com/pub/tin/v1.4/ +MASTERDIR= ${.CURDIR}/../../news/tin MAINTAINER= yssu@CCCA.NCTU.edu.tw -LIB_DEPENDS= uu.1:${PORTSDIR}/converters/uulib - -USE_BZIP2= yes -WRKSRC= ${WRKDIR}/${DISTNAME:S/pre-1.4//} -GNU_CONFIGURE= yes - -# Curses support too buggy to activate -# --enable-curses \ -# --with-ncurses \ -# -CONFIGURE_ARGS= --with-nntp-default-server=news \ - --with-spooldir=/var/news \ - --with-libdir=${PREFIX}/news/lib \ - --with-defaults-dir=${PREFIX}/etc \ - --with-editor=/usr/bin/ee \ - --with-mime-default-charset=ISO-8859-1 \ - --enable-forgery \ - --enable-break-long-lines \ - --with-pgp=${PREFIX}/bin/pgp \ - --with-ispell=${PREFIX}/bin/ispell \ - --with-metamail=${PREFIX}/bin/metamail \ - --disable-locale -CONFIGURE_ENV= CFLAGS='${CFLAGS} -I${PREFIX}/include -DNNTP_SERVER_FILE="\"${PREFIX}/etc/nntpserver\""' \ - CPPFLAGS='${CPPFLAGS} -I${PREFIX}/include' \ - LDFLAGS='${LDFLAGS} -L${PREFIX}/lib' -MAKEFILE= makefile -ALL_TARGET= build -MAN1= tin.1 - -.if defined(NNTP_ONLY) -CONFIGURE_ARGS+= --enable-nntp-only -.endif - -post-patch: - @${MV} ${WRKSRC}/doc/tin.1 ${WRKSRC}/doc/tin.1.dist - @${SED} -e 's:/var/spool/news:/var/news:' \ - -e 's:/etc/nntpserver:${PREFIX}/etc/nntpserver:' \ - -e 's:/usr/lib/news:${PREFIX}/news/lib:' \ - <${WRKSRC}/doc/tin.1.dist >${WRKSRC}/doc/tin.1 - -post-install: - cd ${WRKSRC}/doc; ${INSTALL_DATA} tin.defaults ${PREFIX}/etc/tin.defaults.dist - if [ ! -f ${PREFIX}/etc/tin.defaults ] ; then \ - ${CP} ${PREFIX}/etc/tin.defaults.dist ${PREFIX}/etc/tin.defaults; \ - fi - -.include +EXTRA_PATCHES= ${.CURDIR}/patches/patch-charset.c \ + ${.CURDIR}/patches/patch-cook.c \ + ${.CURDIR}/patches/patch-init.c + +.include "${MASTERDIR}/Makefile" + +CONFIGURE_ARGS+= --disable-curses \ + --without-ncurses \ + --with-mime-default-charset=big5 diff -ruN tin~/files/md5 tin/files/md5 --- tin~/files/md5 Sun Feb 27 12:41:36 2000 +++ tin/files/md5 Thu Jan 1 08:00:00 1970 @@ -1 +0,0 @@ -MD5 (tin-1.4.2.tar.bz2) = 420a3e5a8fc7164184d6d67f233f275a diff -ruN tin~/patches/patch-aa tin/patches/patch-aa --- tin~/patches/patch-aa Sun Feb 27 12:41:37 2000 +++ tin/patches/patch-aa Thu Jan 1 08:00:00 1970 @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Thu Sep 16 07:25:22 1999 -+++ src/Makefile.in Tue Sep 28 08:05:51 1999 -@@ -28,7 +28,7 @@ - YACC = @YACC@ - - CANLIB = # -L../libcanlock -lcanlock --LIBS = -L../pcre -lpcre $(CANLIB) @LIBS@ @INN_NNTPLIB@ -+LIBS = ../pcre/libpcre.a $(CANLIB) @LIBS@ @INN_NNTPLIB@ ../pcre/libpcre.a - - # Where do you want the binary & manual page installed? - INSTALL_PREFIX = @INSTALL_PREFIX@ diff -ruN tin~/patches/patch-ab tin/patches/patch-ab --- tin~/patches/patch-ab Wed Dec 10 21:56:24 1997 +++ tin/patches/patch-ab Thu Jan 1 08:00:00 1970 @@ -1,31 +0,0 @@ ---- src/charset.c.orig Tue Dec 2 04:34:34 1997 -+++ src/charset.c Tue Dec 2 04:35:27 1997 -@@ -311,7 +311,7 @@ - { - unsigned char *c; - for (c= (unsigned char *)buf; *c; c++) { -- if (!my_isprint(*c)) -+ if (!my_isprint(*c) && *c != 27) - *c = '?'; - } - } -@@ -326,7 +326,7 @@ - { - unsigned char *c; - for (c = (unsigned char *)buf; *c; c++) { -- if (!(my_isprint(*c) || *c==8 || *c==9 || *c==12)) -+ if (!(my_isprint(*c) || *c==8 || *c==9 || *c==12 || *c==27)) - *c = '?'; - } - } ---- src/page.c.orig Tue Dec 2 04:33:32 1997 -+++ src/page.c Tue Dec 2 04:34:11 1997 -@@ -795,7 +795,7 @@ - while (i++ < j) - *q++ = ' '; - -- } else if (((*p) & 0xFF) < ' ') { -+ } else if (((*p) & 0xFF) < ' ' && *p != 27) { - *q++ = '^'; - *q++ = ((*p) & 0xFF) + '@'; - if (*p == 12) ctrl_L = TRUE; diff -ruN tin~/patches/patch-charset.c tin/patches/patch-charset.c --- tin~/patches/patch-charset.c Thu Jan 1 08:00:00 1970 +++ tin/patches/patch-charset.c Sat Sep 23 14:03:39 2000 @@ -0,0 +1,20 @@ +--- src/charset.c.orig Mon Jul 24 21:30:22 2000 ++++ src/charset.c Sat Sep 23 14:03:14 2000 +@@ -330,7 +330,7 @@ + unsigned char *c; + + for (c= (unsigned char *)buf; *c; c++) { +- if (!my_isprint(*c)) ++ if (!my_isprint(*c) && *c != 27) + *c = '?'; + } + } +@@ -348,7 +348,7 @@ + unsigned char *c; + + for (c = (unsigned char *)buf; *c; c++) { +- if (!(my_isprint(*c) || *c == 8 || *c == 9 || *c == 10 || *c == 12 || *c == 13)) ++ if (!(my_isprint(*c) || *c == 8 || *c == 9 || *c == 10 || *c == 12 || *c == 13 || *c==27)) + *c = '?'; + } + } diff -ruN tin~/patches/patch-cook.c tin/patches/patch-cook.c --- tin~/patches/patch-cook.c Thu Jan 1 08:00:00 1970 +++ tin/patches/patch-cook.c Sat Sep 23 14:35:01 2000 @@ -0,0 +1,11 @@ +--- src/cook.c.orig Sat Sep 23 14:34:20 2000 ++++ src/cook.c Sat Sep 23 14:34:41 2000 +@@ -109,7 +109,7 @@ + while (i++ < j) + *q++ = ' '; + +- } else if (((*p) & 0xFF) < ' ' && *p != '\n') { /* Literal ctrl chars */ ++ } else if (((*p) & 0xFF) < ' ' && *p != '\n' && *p != 27) { /* Literal ctrl chars */ + *q++ = '^'; + *q++ = ((*p) & 0xFF) + '@'; + if (*p == '\f') /* ^L detected */ diff -ruN tin~/patches/patch-init.c tin/patches/patch-init.c --- tin~/patches/patch-init.c Thu Jan 1 08:00:00 1970 +++ tin/patches/patch-init.c Sat Sep 23 16:02:39 2000 @@ -0,0 +1,36 @@ +--- src/init.c.orig Sat Sep 23 15:52:42 2000 ++++ src/init.c Sat Sep 23 15:55:26 2000 +@@ -270,8 +270,8 @@ + 2, /* recent_time */ + 32, /* groupname_max_length */ + KILL_READ, /* kill_level */ +- MIME_ENCODING_7BIT, /* mail_mime_encoding */ +- MIME_ENCODING_7BIT, /* post_mime_encoding */ ++ MIME_ENCODING_8BIT, /* mail_mime_encoding */ ++ MIME_ENCODING_8BIT, /* post_mime_encoding */ + POST_PROC_NONE, /* post_process */ + REREAD_ACTIVE_FILE_SECS, /* reread_active_file_secs */ + SHOW_FROM_NAME, /* show_author */ +@@ -302,7 +302,7 @@ + 0, /* col_title (initialised later) */ + 2, /* word_h_display_marks */ + TRUE, /* word_highlight */ +- FALSE, /* use_color */ ++ TRUE, /* use_color */ + #endif /* HAVE_COLOR */ + TRUE, /* add_posted_to_filter */ + TRUE, /* advertising */ +@@ -335,11 +335,11 @@ + TRUE, /* keep_dead_articles */ + TRUE, /* keep_posted_articles */ + POSTED_FILE, /* keep_posted_articles_file */ +- FALSE, /* mail_8bit_header */ ++ TRUE, /* mail_8bit_header */ + TRUE, /* mark_saved_read */ + TRUE, /* pgdn_goto_next */ + TRUE, /* pos_first_unread */ +- FALSE, /* post_8bit_header */ ++ TRUE, /* post_8bit_header */ + TRUE, /* post_process_view */ + #ifndef DISABLE_PRINTING + FALSE, /* print_header */ diff -ruN tin~/pkg/COMMENT tin/pkg/COMMENT --- tin~/pkg/COMMENT Mon Aug 30 03:19:15 1999 +++ tin/pkg/COMMENT Thu Jan 1 08:00:00 1970 @@ -1 +0,0 @@ -Easy-to-use console-based newsreader diff -ruN tin~/pkg/DESCR tin/pkg/DESCR --- tin~/pkg/DESCR Tue Dec 2 05:16:51 1997 +++ tin/pkg/DESCR Thu Jan 1 08:00:00 1970 @@ -1 +0,0 @@ -TIN: Easy to use threaded newsreader with NOV/NNTP support. diff -ruN tin~/pkg/PLIST tin/pkg/PLIST --- tin~/pkg/PLIST Sun Feb 27 12:41:37 2000 +++ tin/pkg/PLIST Thu Jan 1 08:00:00 1970 @@ -1,5 +0,0 @@ -bin/tin -@exec ln -fs %f %B/rtin -@unexec rm -f %B/rtin -etc/tin.defaults -etc/tin.defaults.dist >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 Sep 23 1: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 2817837B423 for ; Sat, 23 Sep 2000 01:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA64736; Sat, 23 Sep 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from parodius.com (pentarou.parodius.com [205.149.163.62]) by hub.freebsd.org (Postfix) with ESMTP id 1A43C37B423 for ; Sat, 23 Sep 2000 01:44:36 -0700 (PDT) Received: (from yoshi@localhost) by parodius.com (8.11.0/8.11.0) id e8N8iZl66404; Sat, 23 Sep 2000 01:44:35 -0700 (PDT) (envelope-from yoshi) Message-Id: <200009230844.e8N8iZl66404@parodius.com> Date: Sat, 23 Sep 2000 01:44:35 -0700 (PDT) From: Jeremy Chadwick Reply-To: yoshi@parodius.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21497: nethack-tty ports submission Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21497 >Category: ports >Synopsis: New addition to 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: Sat Sep 23 01:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 4.1-STABLE i386 >Organization: Parodius Networking >Environment: Not applicable. >Description: New addition to the ports collection; nethack-tty/. This port provides a version of nethack3 which is solely made for TTY/console users. All, and I do mean *ALL* of the other versions of the nethack port are either outdated, or require you to have X installed. How absurd! :-) >How-To-Repeat: Not applicable. >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: # # nethack-tty # nethack-tty/files # nethack-tty/files/md5 # nethack-tty/patches # nethack-tty/patches/patch-aa # nethack-tty/patches/patch-ab # nethack-tty/patches/patch-ac # nethack-tty/patches/patch-ae # nethack-tty/patches/patch-ad # nethack-tty/pkg # nethack-tty/pkg/COMMENT # nethack-tty/pkg/DESCR # nethack-tty/pkg/PLIST # nethack-tty/Makefile # echo c - nethack-tty mkdir -p nethack-tty > /dev/null 2>&1 echo c - nethack-tty/files mkdir -p nethack-tty/files > /dev/null 2>&1 echo x - nethack-tty/files/md5 sed 's/^X//' >nethack-tty/files/md5 << 'END-of-nethack-tty/files/md5' XMD5 (nethack-331.tgz) = d0600ce4698c80e5ad1f917ded1c36d2 END-of-nethack-tty/files/md5 echo c - nethack-tty/patches mkdir -p nethack-tty/patches > /dev/null 2>&1 echo x - nethack-tty/patches/patch-aa sed 's/^X//' >nethack-tty/patches/patch-aa << 'END-of-nethack-tty/patches/patch-aa' X*** include/config.h.orig Fri Jul 21 18:13:51 2000 X--- include/config.h Sat Sep 23 01:03:48 2000 X*************** X*** 151,161 **** X X #ifdef UNIX X /* path and file name extension for compression program */ X! #define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ X! #define COMPRESS_EXTENSION ".Z" /* compress's extension */ X /* An example of one alternative you might want to use: */ X! /* #define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */ X! /* #define COMPRESS_EXTENSION ".gz" */ /* normal gzip extension */ X #endif X X #ifndef COMPRESS X--- 151,161 ---- X X #ifdef UNIX X /* path and file name extension for compression program */ X! /* #define COMPRESS "/usr/bin/compress" */ /* Lempel-Ziv compression */ X! /* #define COMPRESS_EXTENSION ".Z" */ /* compress's extension */ X /* An example of one alternative you might want to use: */ X! #define COMPRESS "/usr/bin/gzip" /* FSF gzip compression */ X! #define COMPRESS_EXTENSION ".gz" /* normal gzip extension */ X #endif X X #ifndef COMPRESS X*************** X*** 186,192 **** X * otherwise it will be the current directory. X */ X # ifndef HACKDIR X! # define HACKDIR "/usr/games/lib/nethackdir" /* nethack directory */ X # endif X X /* X--- 186,192 ---- X * otherwise it will be the current directory. X */ X # ifndef HACKDIR X! # define HACKDIR "/usr/local/share/nethack" /* nethack directory */ X # endif X X /* END-of-nethack-tty/patches/patch-aa echo x - nethack-tty/patches/patch-ab sed 's/^X//' >nethack-tty/patches/patch-ab << 'END-of-nethack-tty/patches/patch-ab' X*** include/system.h.orig Thu Jan 6 11:20:08 2000 X--- include/system.h Sat Sep 23 01:08:09 2000 X*************** X*** 516,522 **** X # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) X E time_t FDECL(time, (time_t *)); X # else X! E long FDECL(time, (time_t *)); X # endif /* ULTRIX */ X X #ifdef VMS X--- 516,522 ---- X # if defined(ULTRIX) || defined(SYSV) || defined(MICRO) || defined(VMS) || defined(MAC) || (defined(HPUX) && defined(_POSIX_SOURCE)) X E time_t FDECL(time, (time_t *)); X # else X! E time_t FDECL(time, (time_t *)); X # endif /* ULTRIX */ X X #ifdef VMS END-of-nethack-tty/patches/patch-ab echo x - nethack-tty/patches/patch-ac sed 's/^X//' >nethack-tty/patches/patch-ac << 'END-of-nethack-tty/patches/patch-ac' X*** include/unixconf.h.orig Sun Jul 16 18:03:51 2000 X--- include/unixconf.h Sat Sep 23 01:09:25 2000 X*************** X*** 47,53 **** X * job control (note that AIX is SYSV otherwise) X * Also define this for AIX 3.2 */ X X! #define TERMINFO /* uses terminfo rather than termcap */ X /* Should be defined for most SYSV, SVR4 (including X * Solaris 2+), HPUX, and Linux systems. In X * particular, it should NOT be defined for the UNIXPC X--- 47,53 ---- X * job control (note that AIX is SYSV otherwise) X * Also define this for AIX 3.2 */ X X! /* #define TERMINFO */ /* uses terminfo rather than termcap */ X /* Should be defined for most SYSV, SVR4 (including X * Solaris 2+), HPUX, and Linux systems. In X * particular, it should NOT be defined for the UNIXPC X*************** X*** 143,149 **** X * A stat system call is done on the mailbox every MAILCKFREQ moves. X */ X X! #define MAIL /* Deliver mail during the game */ X X /* The Andrew Message System does mail a little differently from normal X * UNIX. Mail is deposited in the user's own directory in ~/Mailbox X--- 143,149 ---- X * A stat system call is done on the mailbox every MAILCKFREQ moves. X */ X X! /* #define MAIL */ /* Deliver mail during the game */ X X /* The Andrew Message System does mail a little differently from normal X * UNIX. Mail is deposited in the user's own directory in ~/Mailbox END-of-nethack-tty/patches/patch-ac echo x - nethack-tty/patches/patch-ae sed 's/^X//' >nethack-tty/patches/patch-ae << 'END-of-nethack-tty/patches/patch-ae' X*** sys/unix/Makefile.doc.orig Fri Jan 14 12:49:48 2000 X--- sys/unix/Makefile.doc Sat Sep 23 01:16:22 2000 X*************** X*** 34,40 **** X X X GAME = nethack X! MANDIR = /usr/man/man6 X MANEXT = 6 X X # manual installation for most BSD-style systems X--- 34,40 ---- X X X GAME = nethack X! MANDIR = ${PREFIX}/man/man X MANEXT = 6 X X # manual installation for most BSD-style systems X*************** X*** 51,61 **** X # DLBMANCREATE = nroff -man dlb.6 > X X manpages: X! -$(GAMEMANCREATE) $(MANDIR)/$(GAME).$(MANEXT) X! -$(LEVMANCREATE) $(MANDIR)/lev_comp.$(MANEXT) X! -$(DGNMANCREATE) $(MANDIR)/dgn_comp.$(MANEXT) X! -$(RCVRMANCREATE) $(MANDIR)/recover.$(MANEXT) X! -$(DLBMANCREATE) $(MANDIR)/dlb.$(MANEXT) X X # manual creation for distribution X DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt X--- 51,61 ---- X # DLBMANCREATE = nroff -man dlb.6 > X X manpages: X! -$(GAMEMANCREATE) $(MANDIR)$(MANEXT)/$(GAME).$(MANEXT) X! -$(LEVMANCREATE) $(MANDIR)$(MANEXT)/lev_comp.$(MANEXT) X! -$(DGNMANCREATE) $(MANDIR)$(MANEXT)/dgn_comp.$(MANEXT) X! -$(RCVRMANCREATE) $(MANDIR)$(MANEXT)/recover.$(MANEXT) X! -$(DLBMANCREATE) $(MANDIR)$(MANEXT)/dlb.$(MANEXT) X X # manual creation for distribution X DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt END-of-nethack-tty/patches/patch-ae echo x - nethack-tty/patches/patch-ad sed 's/^X//' >nethack-tty/patches/patch-ad << 'END-of-nethack-tty/patches/patch-ad' X*** sys/unix/Makefile.top.orig Mon Jul 3 17:42:05 2000 X--- sys/unix/Makefile.top Sat Sep 23 01:14:48 2000 X*************** X*** 14,31 **** X # MAKE = make X X # make NetHack X- PREFIX = /usr X GAME = nethack X # GAME = nethack.prg X GAMEUID = games X! GAMEGRP = bin X X # Permissions - some places use setgid instead of setuid, for instance X # See also the option "SECURE" in include/config.h X! GAMEPERM = 04755 X! FILEPERM = 0644 X EXEPERM = 0755 X! DIRPERM = 0755 X X # GAMEDIR also appears in config.h as "HACKDIR". X # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X--- 14,30 ---- X # MAKE = make X X # make NetHack X GAME = nethack X # GAME = nethack.prg X GAMEUID = games X! GAMEGRP = games X X # Permissions - some places use setgid instead of setuid, for instance X # See also the option "SECURE" in include/config.h X! GAMEPERM = 02755 X! FILEPERM = 0664 X EXEPERM = 0755 X! DIRPERM = 0775 X X # GAMEDIR also appears in config.h as "HACKDIR". X # VARDIR may also appear in unixconf.h as "VAR_PLAYGROUND" else GAMEDIR X*************** X*** 35,43 **** X # therefore there should not be anything in GAMEDIR that you want to keep X # (if there is, you'll have to do the installation by hand or modify the X # instructions) X! GAMEDIR = $(PREFIX)/games/lib/$(GAME)dir X VARDIR = $(GAMEDIR) X! SHELLDIR = $(PREFIX)/games X X # per discussion in Install.X11 and Install.Qt X VARDATND = X--- 34,42 ---- X # therefore there should not be anything in GAMEDIR that you want to keep X # (if there is, you'll have to do the installation by hand or modify the X # instructions) X! GAMEDIR = $(PREFIX)/share/$(GAME) X VARDIR = $(GAMEDIR) X! SHELLDIR = $(PREFIX)/bin X X # per discussion in Install.X11 and Install.Qt X VARDATND = END-of-nethack-tty/patches/patch-ad echo c - nethack-tty/pkg mkdir -p nethack-tty/pkg > /dev/null 2>&1 echo x - nethack-tty/pkg/COMMENT sed 's/^X//' >nethack-tty/pkg/COMMENT << 'END-of-nethack-tty/pkg/COMMENT' XA dungeon explorin', slashin', hackin' game END-of-nethack-tty/pkg/COMMENT echo x - nethack-tty/pkg/DESCR sed 's/^X//' >nethack-tty/pkg/DESCR << 'END-of-nethack-tty/pkg/DESCR' XThis is version 3.3.1 of nethack, a clasic ASCII-based adventure game. XYou and your faithful pet are on a quest to retrieve the lost Amulet Xof Yendor. X XWWW: http://www.nethack.org/ X Xyoshi@parodius.com END-of-nethack-tty/pkg/DESCR echo x - nethack-tty/pkg/PLIST sed 's/^X//' >nethack-tty/pkg/PLIST << 'END-of-nethack-tty/pkg/PLIST' Xbin/nethack Xshare/nethack/nethack X@exec mkdir %D/share/nethack/save X@exec chmod -R 775 %D/share/nethack X@exec chmod 2755 %D/share/nethack/nethack X@exec chown games.games %D/share/nethack/save X@unexec rm -rf %D/share/nethack/save Xshare/doc/nethack/Guidebook.txt Xshare/nethack/Arc-fila.lev Xshare/nethack/Arc-filb.lev Xshare/nethack/Arc-goal.lev Xshare/nethack/Arc-loca.lev Xshare/nethack/Arc-strt.lev Xshare/nethack/Bar-fila.lev Xshare/nethack/Bar-filb.lev Xshare/nethack/Bar-goal.lev Xshare/nethack/Bar-loca.lev Xshare/nethack/Bar-strt.lev Xshare/nethack/Cav-fila.lev Xshare/nethack/Cav-filb.lev Xshare/nethack/Cav-goal.lev Xshare/nethack/Cav-loca.lev Xshare/nethack/Cav-strt.lev Xshare/nethack/Hea-fila.lev Xshare/nethack/Hea-filb.lev Xshare/nethack/Hea-goal.lev Xshare/nethack/Hea-loca.lev Xshare/nethack/Hea-strt.lev Xshare/nethack/Kni-fila.lev Xshare/nethack/Kni-filb.lev Xshare/nethack/Kni-goal.lev Xshare/nethack/Kni-loca.lev Xshare/nethack/Kni-strt.lev Xshare/nethack/Mon-fila.lev Xshare/nethack/Mon-filb.lev Xshare/nethack/Mon-goal.lev Xshare/nethack/Mon-loca.lev Xshare/nethack/Mon-strt.lev Xshare/nethack/Pri-fila.lev Xshare/nethack/Pri-filb.lev Xshare/nethack/Pri-goal.lev Xshare/nethack/Pri-loca.lev Xshare/nethack/Pri-strt.lev Xshare/nethack/Ran-fila.lev Xshare/nethack/Ran-filb.lev Xshare/nethack/Ran-goal.lev Xshare/nethack/Ran-loca.lev Xshare/nethack/Ran-strt.lev Xshare/nethack/Rog-fila.lev Xshare/nethack/Rog-filb.lev Xshare/nethack/Rog-goal.lev Xshare/nethack/Rog-loca.lev Xshare/nethack/Rog-strt.lev Xshare/nethack/Sam-fila.lev Xshare/nethack/Sam-filb.lev Xshare/nethack/Sam-goal.lev Xshare/nethack/Sam-loca.lev Xshare/nethack/Sam-strt.lev Xshare/nethack/Tou-fila.lev Xshare/nethack/Tou-filb.lev Xshare/nethack/Tou-goal.lev Xshare/nethack/Tou-loca.lev Xshare/nethack/Tou-strt.lev Xshare/nethack/Val-fila.lev Xshare/nethack/Val-filb.lev Xshare/nethack/Val-goal.lev Xshare/nethack/Val-loca.lev Xshare/nethack/Val-strt.lev Xshare/nethack/Wiz-fila.lev Xshare/nethack/Wiz-filb.lev Xshare/nethack/Wiz-goal.lev Xshare/nethack/Wiz-loca.lev Xshare/nethack/Wiz-strt.lev Xshare/nethack/air.lev Xshare/nethack/asmodeus.lev Xshare/nethack/astral.lev Xshare/nethack/baalz.lev Xshare/nethack/bigrm-1.lev Xshare/nethack/bigrm-2.lev Xshare/nethack/bigrm-3.lev Xshare/nethack/bigrm-4.lev Xshare/nethack/bigrm-5.lev Xshare/nethack/castle.lev Xshare/nethack/cmdhelp Xshare/nethack/data Xshare/nethack/dungeon Xshare/nethack/earth.lev Xshare/nethack/fakewiz1.lev Xshare/nethack/fakewiz2.lev Xshare/nethack/fire.lev Xshare/nethack/help Xshare/nethack/hh Xshare/nethack/history Xshare/nethack/juiblex.lev Xshare/nethack/knox.lev Xshare/nethack/license Xshare/nethack/medusa-1.lev Xshare/nethack/medusa-2.lev Xshare/nethack/minefill.lev Xshare/nethack/minend-1.lev Xshare/nethack/minend-2.lev Xshare/nethack/minetn-1.lev Xshare/nethack/minetn-2.lev Xshare/nethack/opthelp Xshare/nethack/options Xshare/nethack/oracle.lev Xshare/nethack/oracles Xshare/nethack/orcus.lev Xshare/nethack/quest.dat Xshare/nethack/rumors Xshare/nethack/sanctum.lev Xshare/nethack/soko1-1.lev Xshare/nethack/soko1-2.lev Xshare/nethack/soko2-1.lev Xshare/nethack/soko2-2.lev Xshare/nethack/soko3-1.lev Xshare/nethack/soko3-2.lev Xshare/nethack/soko4-1.lev Xshare/nethack/soko4-2.lev Xshare/nethack/tower1.lev Xshare/nethack/tower2.lev Xshare/nethack/tower3.lev Xshare/nethack/valley.lev Xshare/nethack/water.lev Xshare/nethack/wizard1.lev Xshare/nethack/wizard2.lev Xshare/nethack/wizard3.lev Xshare/nethack/wizhelp X@mode 664 Xshare/nethack/logfile Xshare/nethack/record Xshare/nethack/perm X@dirrm share/nethack X@dirrm share/doc/nethack END-of-nethack-tty/pkg/PLIST echo x - nethack-tty/Makefile sed 's/^X//' >nethack-tty/Makefile << 'END-of-nethack-tty/Makefile' X# New ports collection makefile for: nethack X# Date created: 23 September 2000 X# Whom: Jeremy Chadwick X# X XPORTNAME= nethack XPORTVERSION= 3.3.1 XCATEGORIES= games XDISTFILES= nethack-331.tgz XMASTER_SITES= ftp://ftp.nethack.org/pub/nethack/nh331/src/ \ X ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= nethack X XMAINTAINER= yoshi@parodius.com X XUSE_GMAKE= yes XMAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6 X Xpre-configure: X @cd ${WRKSRC}/sys/unix; ${SH} setup.sh X Xpost-install: X @cd ${WRKSRC}/doc; ${CHMOD} 644 *.6 X @cd ${WRKSRC}/doc; PREFIX=${PREFIX} ${MAKE} manpages X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/nethack X ${CP} ${WRKSRC}/doc/Guidebook.txt ${PREFIX}/share/doc/nethack X.endif X X.include END-of-nethack-tty/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 Sat Sep 23 3: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 B898237B424 for ; Sat, 23 Sep 2000 03:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA81506; Sat, 23 Sep 2000 03:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7D28B37B424; Sat, 23 Sep 2000 03:37:06 -0700 (PDT) Message-Id: <20000923103706.7D28B37B424@hub.freebsd.org> Date: Sat, 23 Sep 2000 03:37:06 -0700 (PDT) From: odip@bionet.nsc.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21498: [patch] can't building curl-7.2.1 with openssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21498 >Category: ports >Synopsis: [patch] can't building curl-7.2.1 with openssl >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 23 03:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry Grigorovich >Release: 3.5.1-RELEASE >Organization: ICiG >Environment: FreeBSD cyclop.bionet.nsc.ru 3.5.1-RELEASE FreeBSD 3.5.1-RELEASE #0: Thu Jul 2003:22:42 GMT 2000 jkh@monster.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 >Description: When building new curl port ( 7.2.1 ) with OPENSSL we are get error messages on configure stage When building same curl port without OPENSSL all it ok I found problem found in following lines in file /usr/ports/ftp/curl/Makefile ====================== .include .if defined(WITH_SSL) USE_OPENSSL= YES CONFIGURE_ENV+= CPPFLAGS='-I${OPENSSLINC} -I${OPENSSLINC}/openssl' \ LDFLAGS='-L${OPENSSLLIB}' .endif ====================== If we define WITH_SSL variable, then CONFIGURE_ENV are expanded namely: CPPFLAGS='-I -I/openssl' LDFLAGS='-L' (!!!) That is variables OPENSSLINC and OPENSSLLIB are empty or undefined Solution: Move line '.include ' lower then .if/.endif Thus variables OPENSSLINC & OPENSSLLIB will be defined correctly >How-To-Repeat: cd /usr/ports/ftp/curl WITH_SSL=YES make configure After this we are get error messages >Fix: Apply following patch to file /usr/ports/ftp/curl/Makefile Clean and rebuild port of curl --- Makefile.orig Sat Sep 23 14:04:35 2000 +++ Makefile Sat Sep 23 17:10:11 2000 @@ -26,13 +26,13 @@ MAKE_ENV= SHLIB_VER="${SHLIB_VER}" PLIST_SUB= SHLIB_VER="${SHLIB_VER}" -.include - .if defined(WITH_SSL) USE_OPENSSL= YES CONFIGURE_ENV+= CPPFLAGS='-I${OPENSSLINC} -I${OPENSSLINC}/openssl' \ LDFLAGS='-L${OPENSSLLIB}' .endif + +.include GNU_CONFIGURE= yes USE_AUTOMAKE= 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 Sat Sep 23 4: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 E0EEA37B424 for ; Sat, 23 Sep 2000 04:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA91456; Sat, 23 Sep 2000 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from updraft.jp.freebsd.org (updraft.jp.FreeBSD.ORG [210.157.158.42]) by hub.freebsd.org (Postfix) with ESMTP id 4871B37B424 for ; Sat, 23 Sep 2000 04:24:09 -0700 (PDT) Received: from castle2.jp.FreeBSD.org (castle2.jp.FreeBSD.org [210.226.20.120]) by updraft.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id UAA41137 for ; Sat, 23 Sep 2000 20:24:08 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by castle2.jp.FreeBSD.org (8.11.0+3.3W/8.11.0) with ESMTP/inet id e8NBO7X52032 for ; Sat, 23 Sep 2000 20:24:07 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Message-Id: <20000923202249R.matusita@jp.FreeBSD.org> Date: Sat, 23 Sep 2000 20:22:49 +0900 From: Makoto MATSUSHITA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21500: MAINTAINER update: ports/emulators/linux-vmware-toolbox (use USE_LINUX) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21500 >Category: ports >Synopsis: MAINTAINER update: ports/emulators/linux-vmware-toolbox (use USE_LINUX) >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 Sep 23 04:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Makoto MATSUSHITA >Release: FreeBSD 5.0-CURRENT i386 >Organization: Japan FreeBSD Users' Group >Environment: 5.0-CURRENT as of Sep/20/2000 >Description: ports/emulators/linux-vmware-toolbox does not use USE_LINUX. This may causes some problems if default Linux libc version is changed. >How-To-Repeat: N/A >Fix: Remove RUN_DEPENDS and LINUX_DIR, add USE_LINUX. Index: Makefile =================================================================== RCS file: /usr/site/FreeBSD/ncvs/ports/emulators/linux-vmware-toolbox/Makefile,v retrieving revision 1.2 diff -c -r1.2 Makefile *** Makefile 2000/08/27 04:26:41 1.2 --- Makefile 2000/09/23 11:17:19 *************** *** 14,22 **** MAINTAINER= matusita@jp.FreeBSD.org - RUN_DEPENDS= ${LINUX_DIR}/lib/libc.so.6:${PORTSDIR}/emulators/linux_base - ONLY_FOR_ARCHS= i386 USE_X_PREFIX= yes NO_BUILD= yes --- 14,21 ---- MAINTAINER= matusita@jp.FreeBSD.org ONLY_FOR_ARCHS= i386 + USE_LINUX= yes USE_X_PREFIX= yes NO_BUILD= yes *************** *** 25,31 **** .include LINUX_FLP?= ${DISTDIR}/linux.flp - LINUX_DIR?= /compat/linux MOUNT_PT?= ${WRKDIR}/mnt .if exists(${LINUX_FLP}) MOUNT_DEV?= vn0 --- 24,29 ---- >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 Sep 23 4: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 C14FB37B43C for ; Sat, 23 Sep 2000 04:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA91447; Sat, 23 Sep 2000 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from iris.s-fine.co.jp (p849136.ymtk.ap.so-net.ne.jp [210.132.145.54]) by hub.freebsd.org (Postfix) with ESMTP id 8B24037B422 for ; Sat, 23 Sep 2000 04:22:17 -0700 (PDT) Received: (from toru@localhost) by iris.s-fine.co.jp (8.11.0/3.7W-ppp) id e8N02K415727; Sat, 23 Sep 2000 09:02:20 +0900 (JST) Message-Id: <200009230002.e8N02K415727@iris.s-fine.co.jp> Date: Sat, 23 Sep 2000 09:02:20 +0900 (JST) From: toru@maid.ne.jp Reply-To: toru@maid.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21499: Ports broken: x11-wm/afterstep Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21499 >Category: ports >Synopsis: Ports broken: x11-wm/afterstep >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: Sat Sep 23 04:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Toru YANO >Release: FreeBSD 4.1-STABLE i386 >Organization: Something Fine Co,. Ltd. >Environment: FreeBSD iris.s-fine.co.jp 4.1-STABLE FreeBSD 4.1-STABLE #3: Mon Sep 18 00:05:32 JST 2000 toru@iris.s-fine.co.jp:/home/CVS/src/sys/compile/IRIS i386 >Description: The afterstep port seems to be broken. These are the errors I'm getting : including in ./afterstep... including in ./modules/Audio... including in ./modules/Auto... including in ./modules/Wharf... including in ./modules/Banner... including in ./modules/Pager... including in ./modules/asclock... including in ./modules/Animate... make depend make: don't know how to make depend. Stop *** Error code 2 Stop in /home/CVS/ports/x11-wm/afterstep.orig. *** Error code 1 Stop in /home/CVS/ports/x11-wm/afterstep.orig. *** Error code 1 Stop in /home/CVS/ports/x11-wm/afterstep.orig. *** Error code 1 Stop in /home/CVS/ports/x11-wm/afterstep.orig. >How-To-Repeat: cd /usr/ports/x11-wm/afterstep && make >Fix: diff -ruN afterstep.orig/patches/patch-ac afterstep/patches/patch-ac --- afterstep.orig/patches/patch-ac Thu Jan 1 09:00:00 1970 +++ afterstep/patches/patch-ac Sat Sep 23 00:42:56 2000 @@ -0,0 +1,8 @@ +--- Imakefile.orig Sun Mar 9 23:03:27 1997 ++++ Imakefile Tue Sep 19 14:05:36 2000 +@@ -28,4 +28,4 @@ + MakeSubdirs($(SUBDIRS)) + + /* Doesn't work for me! */ +-/* #DependSubdirs($(SUBDIRS))*/ ++#DependSubdirs($(SUBDIRS)) >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 Sep 23 6: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 6CA1B37B42C for ; Sat, 23 Sep 2000 06:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA23754; Sat, 23 Sep 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 6622B37B422 for ; Sat, 23 Sep 2000 06:38:08 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8NDc7f04116 for ; Sat, 23 Sep 2000 09:38:07 -0400 (EDT) Message-Id: Date: Sat, 23 Sep 2000 09:38:06 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21501: update security/p5-GnuPG-Interface, by maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21501 >Category: ports >Synopsis: update security/p5-GnuPG-Interface, 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: Sat Sep 23 06:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: Just bump the version and checksum. >How-To-Repeat: N/A >Fix: diff -ruN p5-GnuPG-Interface.orig/Makefile p5-GnuPG-Interface/Makefile --- p5-GnuPG-Interface.orig/Makefile Mon Jul 17 06:39:28 2000 +++ p5-GnuPG-Interface/Makefile Sat Sep 23 13:07:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= GnuPG-Interface -PORTVERSION= 0.10 +PORTVERSION= 0.11 CATEGORIES= security perl5 MASTER_SITES= http://download.sourceforge.net/${PORTNAME}/ \ ftp://download.sourceforge.net/pub/sourceforge/${PORTNAME}/ \ diff -ruN p5-GnuPG-Interface.orig/files/md5 p5-GnuPG-Interface/files/md5 --- p5-GnuPG-Interface.orig/files/md5 Mon Jul 17 06:39:38 2000 +++ p5-GnuPG-Interface/files/md5 Sat Sep 23 13:07:52 2000 @@ -1 +1 @@ -MD5 (GnuPG-Interface-0.10.tar.gz) = fde52cda9717023186197cfbce790416 +MD5 (GnuPG-Interface-0.11.tar.gz) = b392f3a644e15d489ea5da8dac2168c1 >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 Sep 23 7:20: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 A0F5C37B424 for ; Sat, 23 Sep 2000 07:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA37582; Sat, 23 Sep 2000 07:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mta06-svc.ntlworld.com (mta06-svc.ntlworld.com [62.253.162.46]) by hub.freebsd.org (Postfix) with ESMTP id BF20437B422 for ; Sat, 23 Sep 2000 07:17:58 -0700 (PDT) Received: from jaffacakes.freeserve.co.uk ([62.253.154.126]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000923141755.FEFN19246.mta06-svc.ntlworld.com@jaffacakes.freeserve.co.uk> for ; Sat, 23 Sep 2000 15:17:55 +0100 Received: (from root@localhost) by jaffacakes.freeserve.co.uk (8.9.3/8.9.3) id PAA34971; Sat, 23 Sep 2000 15:20:04 +0100 (BST) (envelope-from simonm) Message-Id: <200009231420.PAA34971@jaffacakes.freeserve.co.uk> Date: Sat, 23 Sep 2000 15:20:04 +0100 (BST) From: Simon Marlow Reply-To: Simon Marlow To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21502: Upgrade ports/lang/ghc to version 4.08.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21502 >Category: ports >Synopsis: Upgrade ports/lang/ghc to version 4.08.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: Sat Sep 23 07:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Simon Marlow >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -crN ghc-OLD/Makefile ghc/Makefile *** ghc-OLD/Makefile Sat Aug 12 20:13:05 2000 --- ghc/Makefile Sat Sep 23 12:05:46 2000 *************** *** 5,13 **** # $FreeBSD: ports/lang/ghc/Makefile,v 1.4 2000/08/12 19:13:05 nbm Exp $ PORTNAME= ghc ! PORTVERSION= 4.08 CATEGORIES= lang ! MASTER_SITES= http://www.haskell.org/ghc/dist/4.08/ DISTFILES= ghc-${PORTVERSION}-src${EXTRACT_SUFX} \ ghc-${PORTVERSION}-x86-hc${EXTRACT_SUFX} --- 5,13 ---- # $FreeBSD: ports/lang/ghc/Makefile,v 1.4 2000/08/12 19:13:05 nbm Exp $ PORTNAME= ghc ! PORTVERSION= 4.08.1 CATEGORIES= lang ! MASTER_SITES= http://www.haskell.org/ghc/dist/4.08.1/ DISTFILES= ghc-${PORTVERSION}-src${EXTRACT_SUFX} \ ghc-${PORTVERSION}-x86-hc${EXTRACT_SUFX} *************** *** 23,28 **** --- 23,34 ---- WRKSRC= ${WRKDIR}/fptools + # override TMPDIR because /tmp often doesn't have enough space + # to build some of the larger libraries. + TMPDIR = ${WRKSRC}/tmp + MAKE_ENV += TMPDIR=${TMPDIR} + + # Note: # - This port will bootstrap from pre-compiled C files. # - ToDo: bootstrap using existing compiler, if one is installed. *************** *** 31,47 **** # switch to non-bootstrapping mode for installation, the build system # won't try to create them. # ! pre-build: @${CP} ${FILESDIR}/build.mk ${WRKSRC}/mk @${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/ghc/compiler/rename/ParseIface.hs @${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/ghc/compiler/parser/Parser.hs @(cd ${WRKSRC}/glafp-utils; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) @(cd ${WRKSRC}/ghc; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) @(cd ${WRKSRC}/hslibs; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) ! post-build: @echo "GhcWithHscBuiltViaC=NO" >>${WRKSRC}/mk/build.mk @(cd ${WRKSRC}/ghc/lib; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} clean boot all) @(cd ${WRKSRC}/hslibs; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} clean boot all) .include --- 37,70 ---- # switch to non-bootstrapping mode for installation, the build system # won't try to create them. # ! BOOT_COOKIE = ${WRKDIR}/.boot_done ! ! ${BOOT_COOKIE}: ! @${MKDIR} ${TMPDIR} @${CP} ${FILESDIR}/build.mk ${WRKSRC}/mk @${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/ghc/compiler/rename/ParseIface.hs @${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/ghc/compiler/parser/Parser.hs @(cd ${WRKSRC}/glafp-utils; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) @(cd ${WRKSRC}/ghc; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) @(cd ${WRKSRC}/hslibs; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) + @${TOUCH} ${TOUCH_FLAGS} ${BOOT_COOKIE} + + pre-build: ${BOOT_COOKIE} ! # After building the compiler, we go back and build the libraries from ! # source using the compiler we just built. We also build profiling ! # versions of the libraries at this point. ! ! REAL_LIBS_COOKIE = ${WRKDIR}/.real_libs_done ! ! ${REAL_LIBS_COOKIE}: @echo "GhcWithHscBuiltViaC=NO" >>${WRKSRC}/mk/build.mk + @echo "GhcLibWays=p" >>${WRKSRC}/mk/build.mk + @(cd ${WRKSRC}/ghc/rts; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} clean boot all) @(cd ${WRKSRC}/ghc/lib; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} clean boot all) @(cd ${WRKSRC}/hslibs; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} clean boot all) + @${TOUCH} ${TOUCH_FLAGS} ${REAL_LIBS_COOKIE} + + post-build: ${REAL_LIBS_COOKIE} .include diff -crN ghc-OLD/files/build.mk ghc/files/build.mk *** ghc-OLD/files/build.mk Sat Aug 12 20:13:06 2000 --- ghc/files/build.mk Sat Aug 26 23:35:33 2000 *************** *** 1,5 **** ProjectsToBuild = glafp-utils hslibs ghc GhcLibHcOpts = -O -split-objs -H32m SRC_HAPPY_OPTS += -c ! GhcLibWays=p GhcLibsWithReadline = YES --- 1,5 ---- ProjectsToBuild = glafp-utils hslibs ghc GhcLibHcOpts = -O -split-objs -H32m SRC_HAPPY_OPTS += -c ! GhcLibWays= GhcLibsWithReadline = YES diff -crN ghc-OLD/files/md5 ghc/files/md5 *** ghc-OLD/files/md5 Sat Aug 12 20:13:06 2000 --- ghc/files/md5 Sat Aug 26 18:50:56 2000 *************** *** 1,2 **** ! MD5 (ghc-4.08-src.tar.gz) = 624af8e537fdaacb12719c0e5af080b5 ! MD5 (ghc-4.08-x86-hc.tar.gz) = 3fc776f3963a6821720e7ae203b80529 --- 1,2 ---- ! MD5 (ghc-4.08.1-src.tar.gz) = f2c4a579c186102239411efea17c963c ! MD5 (ghc-4.08.1-x86-hc.tar.gz) = b1d18eeb3f5fdb02a85ef24b40d1bf0d diff -crN ghc-OLD/patches/patch-aa ghc/patches/patch-aa *** ghc-OLD/patches/patch-aa Thu Jan 1 01:00:00 1970 --- ghc/patches/patch-aa Sat Aug 26 23:29:22 2000 *************** *** 0 **** --- 1,19 ---- + *** ghc/driver/ghc-asm.lprl~ Sat Aug 26 23:25:46 2000 + --- ghc/driver/ghc-asm.lprl Sat Aug 26 23:26:11 2000 + *************** + *** 954,960 **** + } + print OUTASM $T_HDR_consist, "${consist}${T_POST_LBL}\n"; + + ! } elsif ( $TargetPlatform !~ /^(mips)-/ ) { # we just don't try in those case (ToDo) + # on mips: consistency string is just a v + # horrible bunch of .bytes, + # which I am too lazy to sort out (WDP 95/05) + --- 954,960 ---- + } + print OUTASM $T_HDR_consist, "${consist}${T_POST_LBL}\n"; + + ! } elsif ( $TargetPlatform !~ /mips|freebsd/ ) { # we just don't try in those case (ToDo) + # on mips: consistency string is just a v + # horrible bunch of .bytes, + # which I am too lazy to sort out (WDP 95/05) diff -crN ghc-OLD/patches/patch-ab ghc/patches/patch-ab *** ghc-OLD/patches/patch-ab Thu Jan 1 01:00:00 1970 --- ghc/patches/patch-ab Sun Sep 3 15:31:56 2000 *************** *** 0 **** --- 1,100 ---- + *** mk/config.mk.in~ Thu Jun 1 12:02:31 2000 + --- mk/config.mk.in Sat Sep 2 16:35:34 2000 + *************** + *** 365,371 **** + # this in build.mk or set your environment variable "TMPDIR" to point + # to somewhere with more space. (TMPDIR=. is a good choice). + + ! TMPDIR = /tmp + + # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. + + --- 365,371 ---- + # this in build.mk or set your environment variable "TMPDIR" to point + # to somewhere with more space. (TMPDIR=. is a good choice). + + ! GHC_TMPDIR = /tmp + + # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. + + *** ghc/driver/Makefile~ Thu Apr 27 12:04:37 2000 + --- ghc/driver/Makefile Sat Sep 2 16:35:43 2000 + *************** + *** 65,71 **** + ifeq "$(BIN_DIST)" "1" + SCRIPT_PREFIX_FILES=prefix.txt + else + ! SCRIPT_SUBST_VARS += libdir includedir libexecdir datadir bindir TMPDIR TOP_PWD + endif + + all :: $(DYN_LOADABLE_BITS) + --- 65,71 ---- + ifeq "$(BIN_DIST)" "1" + SCRIPT_PREFIX_FILES=prefix.txt + else + ! SCRIPT_SUBST_VARS += libdir includedir libexecdir datadir bindir GHC_TMPDIR TOP_PWD + endif + + all :: $(DYN_LOADABLE_BITS) + *** ghc/driver/ghc.lprl~ Wed Aug 9 14:55:39 2000 + --- ghc/driver/ghc.lprl Sat Sep 2 16:56:16 2000 + *************** + *** 108,114 **** + + bindir libdir libexecdir datadir + + ! CURRENT_DIR TMPDIR + + GHC_LIB_DIR GHC_RUNTIME_DIR GHC_INCLUDE_DIR + + --- 108,114 ---- + + bindir libdir libexecdir datadir + + ! CURRENT_DIR GHC_TMPDIR + + GHC_LIB_DIR GHC_RUNTIME_DIR GHC_INCLUDE_DIR + + *************** + *** 157,177 **** + @INC = ( ( $INSTALLING ) ? $InstLibDirGhc + : "$TopPwd/${CURRENT_DIR}" ); + + ! $ENV{'TMPDIR'} = $TMPDIR if $TargetPlatform =~ /^.*(cygwin32|mingw32)$/; + ! if ( $ENV{'TMPDIR'} ) { # where to make tmp file names + ! # Try to find a $Tmp_prefix which isn't being used... + ! $tmp = $$; + ! do { + ! $Tmp_prefix = ($ENV{'TMPDIR'} . "/ghc$tmp"); + ! $tmp++; + ! } while ( -e "$Tmp_prefix.hc" || + ! -e "$Tmp_Prefix.s" || + ! -e "$Tmp_Prefix.hi" ); + ! } else { + ! print STDERR "TMPDIR has not been set to anything useful!\n" if (${TMPDIR} eq ''); + ! $Tmp_prefix ="${TMPDIR}/ghc$$"; # TMPDIR set via Makefile when booting.. + ! $ENV{'TMPDIR'} = ${TMPDIR}; # set the env var as well + } + + # Some shells run into real trouble when command line and environment + # gets big (e.g., cmd lines of >4K to /bin/sh causes havoc on our + --- 157,177 ---- + @INC = ( ( $INSTALLING ) ? $InstLibDirGhc + : "$TopPwd/${CURRENT_DIR}" ); + + ! $ENV{'TMPDIR'} = ${GHC_TMPDIR} if $TargetPlatform =~ /^.*(cygwin32|mingw32)$/; + ! if ( ! $ENV{'TMPDIR'} ) { + ! print STDERR "TMPDIR has not been set to anything useful!\n" if (${GHC_TMPDIR} eq ''); + ! $ENV{'TMPDIR'} = ${GHC_TMPDIR}; # set the env var as well + } + + # Try to find a $Tmp_prefix which isn't being used... + + $tmp = $$; + + do { + + $Tmp_prefix = ($ENV{'TMPDIR'} . "/ghc$tmp"); + + $tmp++; + + } while ( -e "$Tmp_prefix.hc" || + + -e "$Tmp_Prefix.s" || + + -e "$Tmp_Prefix.hi" ); + + # Some shells run into real trouble when command line and environment + # gets big (e.g., cmd lines of >4K to /bin/sh causes havoc on our diff -crN ghc-OLD/pkg/PLIST ghc/pkg/PLIST *** ghc-OLD/pkg/PLIST Sat Aug 12 20:13:06 2000 --- ghc/pkg/PLIST Sat Sep 23 12:01:46 2000 *************** *** 1,5 **** bin/ghc ! bin/ghc-4.08 bin/hp2ps bin/stat2resid bin/DrIFT --- 1,5 ---- bin/ghc ! bin/ghc-4.08.1 bin/hp2ps bin/stat2resid bin/DrIFT >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 Sep 23 7:50: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 2FC4E37B424 for ; Sat, 23 Sep 2000 07:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA47443; Sat, 23 Sep 2000 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id A1CCA37B42C for ; Sat, 23 Sep 2000 07:45:02 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8NEj1K05786 for ; Sat, 23 Sep 2000 10:45:01 -0400 (EDT) Message-Id: Date: Sat, 23 Sep 2000 10:45:01 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21503: update security/pad to 0.7, by maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21503 >Category: ports >Synopsis: update security/pad to 0.7, 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: Sat Sep 23 07:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: - update to 0.7 - remove dependencies on GNU make and automake - remove post-extract target, which was needed by automake - add do-install target (thanks to Kato Tsuguru for explaining the importance of this) - move post-install stuff into do-install target - install COPYING and ChangeLog, if user doesn't set NOPORTDOCS - remove both patches, because they were accepted by author - fix typo in pkg/COMMENT files changed: Makefile files/md5 pkg/COMMENT pkg/PLIST files removed: patches/patch-README patches/patch-pad_c Please do not update to the 1.x versions! E-mail me directly, if you want to know why. >How-To-Repeat: N/A >Fix: Remove patches/patch-README and patches/patch-pad_c; make these changes: diff -ruN pad.orig/Makefile pad/Makefile --- pad.orig/Makefile Sun Jul 16 20:06:18 2000 +++ pad/Makefile Sat Sep 23 14:23:53 2000 @@ -6,27 +6,23 @@ # PORTNAME= pad -PORTVERSION= 0.5 +PORTVERSION= 0.7 CATEGORIES= security MASTER_SITES= http://www.lammah.com/pad/ EXTRACT_SUFX= .tgz MAINTAINER= trevor@jpj.net -post-extract: - @${RM} ${WRKSRC}/install-sh ${WRKSRC}/mkinstalldirs \ - ${WRKSRC}/missing ${WRKSRC}/INSTALL ${WRKSRC}/COPYING - @${TOUCH} ${WRKSRC}/install-sh ${WRKSRC}/mkinstalldirs \ - ${WRKSRC}/missing ${WRKSRC}/INSTALL ${WRKSRC}/COPYING - +DOC_FILES= COPYING README ChangeLog GNU_CONFIGURE= yes -USE_AUTOMAKE= yes -USE_GMAKE= yes -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pad ${PREFIX}/bin .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/pad - @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pad + ${MKDIR} ${PREFIX}/share/doc/pad +.for i in ${DOC_FILES} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/pad +.endfor .endif .include diff -ruN pad.orig/files/md5 pad/files/md5 --- pad.orig/files/md5 Sun Jul 16 20:06:18 2000 +++ pad/files/md5 Sat Sep 23 14:04:22 2000 @@ -1 +1 @@ -MD5 (pad-0.5.tgz) = 5541ecdfcf73569f0fee5d0cbdf1cf2f +MD5 (pad-0.7.tgz) = 6ca3c9e8b7a536a0adfe8e6efbdb9155 diff -ruN pad.orig/pkg/COMMENT pad/pkg/COMMENT --- pad.orig/pkg/COMMENT Sun Jul 16 20:06:19 2000 +++ pad/pkg/COMMENT Sat Sep 23 14:17:39 2000 @@ -1 +1 @@ -A commandline utility to encrypt files +A command-line utility to encrypt files diff -ruN pad.orig/pkg/PLIST pad/pkg/PLIST --- pad.orig/pkg/PLIST Sun Jul 16 20:06:19 2000 +++ pad/pkg/PLIST Sat Sep 23 14:15:56 2000 @@ -1,3 +1,5 @@ bin/pad +share/doc/pad/COPYING share/doc/pad/README +share/doc/pad/ChangeLog @dirrm share/doc/pad >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 Sep 23 8: 0: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 E07D837B424; Sat, 23 Sep 2000 08:00:10 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA51237; Sat, 23 Sep 2000 08:00:10 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 23 Sep 2000 08:00:10 -0700 (PDT) From: Message-Id: <200009231500.IAA51237@freefall.freebsd.org> To: ust@cert.siemens.de, nbm@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21432: Maintainer update of port net/iplog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Maintainer update of port net/iplog State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Sep 23 07:59:54 PDT 2000 State-Changed-Why: Updated, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21432 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 8: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 6C50B37B42C for ; Sat, 23 Sep 2000 08:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA56447; Sat, 23 Sep 2000 08:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cocoja.holywar.net (cocoja.holywar.net [210.102.1.5]) by hub.freebsd.org (Postfix) with ESMTP id C171437B422 for ; Sat, 23 Sep 2000 08:10:14 -0700 (PDT) Received: (from jhp@localhost) by cocoja.holywar.net (8.11.0/8.11.0) id e8NFAF433501; Sun, 24 Sep 2000 00:10:15 +0900 (KST) (envelope-from jhp) Message-Id: <200009231510.e8NFAF433501@cocoja.holywar.net> Date: Sun, 24 Sep 2000 00:10:15 +0900 (KST) From: Park JongHwan Reply-To: jhp@cocoja.holywar.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21504: New port: korean/tin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21504 >Category: ports >Synopsis: New port: korean/tin >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 Sep 23 08:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Park JongHwan >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: FreeBSD jhp.dnip.net 5.0-CURRENT FreeBSD 5.0-CURRENT #19: Wed Sep 20 22:15:52 KST 2000 jhp@jhp.yi.org:/usr/src/sys/compile/JHP i386 >Description: tin newsreader for Korean. it is based on chinese/tin >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: # # tin # tin/Makefile # tin/patches # tin/patches/patch-aa # echo c - tin mkdir -p tin > /dev/null 2>&1 echo x - tin/Makefile sed 's/^X//' >tin/Makefile << 'END-of-tin/Makefile' X# New ports collection makefile for: ko-tin X# Date created: 23 Sep 2000 X# Whom: Park JongHwan X# X# $FreeBSD$ X# X XCATEGORIES= korean news X XMAINTAINER= jhp@freebsd.hanirc.org X XMASTERDIR= $(.CURDIR)/../../news/tin X XEXTRA_PATCHES= ${.CURDIR}/patches/patch-aa X X.if !defined(INN_NEWSSPOOL) XNNTP_ONLY= yes X.endif X Xpre-fetch: X.if defined(INN_NEWSSPOOL) && !defined(NNTP_ONLY) X @${ECHO} X.if !defined(DBPATH) X @${ECHO} "Using ${DBPATH} as news library directory." X @${ECHO} "To override it, define DBPATH (make DBPATH=/usr/local/news/db)" X @${ECHO} X @sleep 1 X.endif X @${ECHO} "inews: ${PREFIX}/news/bin/inews" X @${ECHO} "active: ${DBPATH}/active" X @${ECHO} "articles: ${INN_NEWSSPOOL}/articles" X @${ECHO} "overview: ${INN_NEWSSPOOL}/overview" X @${ECHO} X.else X @${ECHO} X @${ECHO} "Building tin without local news spool support." X @${ECHO} X.endif X @sleep 1 X X.include "${MASTERDIR}/Makefile" X XCONFIGURE_ARGS+= --with-mime-default-charset=EUC-KR \ X --disable-mime-strict-charset \ X --disable-locale X X.if defined(INN_NEWSSPOOL) X.if exists(${PREFIX}/news/db/active) XDBPATH?=${PREFIX}/news/db X.else XDBPATH?=${PREFIX}/news/lib X.endif X XCONFIGURE_ARGS+= --with-spooldir=${INN_NEWSSPOOL}/articles \ X --with-nov-dir=${INN_NEWSSPOOL}/overview \ X --with-inews-dir=${PREFIX}/news/bin \ X --with-libdir=${DBPATH} X.endif END-of-tin/Makefile echo c - tin/patches mkdir -p tin/patches > /dev/null 2>&1 echo x - tin/patches/patch-aa sed 's/^X//' >tin/patches/patch-aa << 'END-of-tin/patches/patch-aa' X--- src/init.c.orig Thu Aug 3 22:48:40 2000 X+++ src/init.c Sat Sep 16 23:19:01 2000 X@@ -270,8 +270,8 @@ X 2, /* recent_time */ X 32, /* groupname_max_length */ X KILL_READ, /* kill_level */ X- MIME_ENCODING_7BIT, /* mail_mime_encoding */ X- MIME_ENCODING_7BIT, /* post_mime_encoding */ X+ MIME_ENCODING_8BIT, /* mail_mime_encoding */ X+ MIME_ENCODING_8BIT, /* post_mime_encoding */ X POST_PROC_NONE, /* post_process */ X REREAD_ACTIVE_FILE_SECS, /* reread_active_file_secs */ X SHOW_FROM_NAME, /* show_author */ X@@ -335,11 +335,11 @@ X TRUE, /* keep_dead_articles */ X TRUE, /* keep_posted_articles */ X POSTED_FILE, /* keep_posted_articles_file */ X- FALSE, /* mail_8bit_header */ X+ TRUE, /* mail_8bit_header */ X TRUE, /* mark_saved_read */ X TRUE, /* pgdn_goto_next */ X TRUE, /* pos_first_unread */ X- FALSE, /* post_8bit_header */ X+ TRUE, /* post_8bit_header */ X TRUE, /* post_process_view */ X #ifndef DISABLE_PRINTING X FALSE, /* print_header */ END-of-tin/patches/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 Sep 23 8:47: 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 A68CA37B440; Sat, 23 Sep 2000 08:46:52 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA61743; Sat, 23 Sep 2000 08:46:52 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 23 Sep 2000 08:46:52 -0700 (PDT) From: Message-Id: <200009231546.IAA61743@freefall.freebsd.org> To: isetr0@sevicron.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21495: Evolution calendar crashes on attempt to open. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Evolution calendar crashes on attempt to open. State-Changed-From-To: open->analyzed State-Changed-By: ade State-Changed-When: Sat Sep 23 08:42:37 PDT 2000 State-Changed-Why: Both Evolution, and it's companion Nautilus, both to be part of GNOME 2.0 (and maybe even earlier), are currently under a heavy state of change. We are already aware of issues at lower layers (gnome-vfs, for example), that cause problems, based on the large differences between Linux (on which these ports were developed) and FreeBSD. If you can get gdb tracebacks of the crashes, please forward them on to the Evolution coders via their bugtracking system. Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Sat Sep 23 08:42:37 PDT 2000 Responsible-Changed-Why: Darwin was wrong.. I control Evolution.. :) http://www.freebsd.org/cgi/query-pr.cgi?pr=21495 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 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 9657F37B43C for ; Sat, 23 Sep 2000 09:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA65540; Sat, 23 Sep 2000 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 09:00:03 -0700 (PDT) Message-Id: <200009231600.JAA65540@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Scott Blachowicz Subject: Re: ports/21465: nmh-1.0.4: multiple simultaneous "inc"s step on each other Reply-To: Scott Blachowicz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21465; it has been noted by GNATS. From: Scott Blachowicz To: marka@drugs.dv.isc.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21465: nmh-1.0.4: multiple simultaneous "inc"s step on each other Date: Sat, 23 Sep 2000 08:49:53 -0700 On Fri, Sep 22, 2000 at 12:29:46PM +1100, marka@nominum.com wrote: > > Mail is lost if two "inc"s are running at the same time. > This is easy to do in a windowed evirionment specially when you > have multiple mailboxes. As far as I know, this isn't really a port problem, but a problem with the base software. I don't know if MH or nmh has ever done any sort of "folder" locking or atomic creation of new message files. I'm pretty sure that it's never done any locking on the .mh_sequences files. You might be able to get a response on the nmh-workers@mhost.com mailing list... -- Scott Blachowicz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 9: 1:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 8E84B37B42C; Sat, 23 Sep 2000 09:01:39 -0700 (PDT) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id SAA15091; Sat, 23 Sep 2000 18:01:18 +0200 (MET DST) >Received: (from andreas@localhost) by klemm.gtn.com (8.11.0/8.9.3) id e8NFwWF42745; Sat, 23 Sep 2000 17:58:32 +0200 (CEST) (envelope-from andreas) Date: Sat, 23 Sep 2000 17:58:32 +0200 From: Andreas Klemm To: The Hermit Hacker , Ade Lovett Cc: freebsd-ports@freebsd.org Subject: Re: gs6.01 fails to compile ... Message-ID: <20000923175832.B16235@titan.klemm.gtn.com> References: <20000917093544.E507@FreeBSD.org> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from scrappy@hub.org on Sun, Sep 17, 2000 at 12:01:07AM -0300 X-Operating-System: FreeBSD 4.1-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org When I got the last error report on this I tried and had no problems with -STABLE ... Could you sort out that this problem is related to a make clean on a port which also depends on jpeg lib ??? Andreas /// On Sun, Sep 17, 2000 at 12:01:07AM -0300, The Hermit Hacker wrote: > > Running a 4.1-STABLE system with up to date ports, I'm getting the > following when trying to compile ghostscript 6.0.1 ... > > ./obj/echogs -e .dev -w- -l-obj ./obj/psf0read ./obj/zcfont.o ./obj/zfcmap.o ./obj/zfont0.o > ./obj/echogs -e .dev -a- ./obj/psf0read -oper zcfont zfcmap zfont0 > ./obj/echogs -e .dev -w- -l-obj ./obj/compfont -include ./obj/psf0lib ./obj/psf0read > gmake: *** No rule to make target `jpeg/jpeglib.h', needed by `obj/jpeglib0.h'. Stop. > *** Error code 2 > > Stop in /usr/ports/print/ghostscript6. > *** Error code 1 > > looking at the makefile, it appears that /usr/ports/graphics/jpeg needs to > have a 'make extract' done on it first? > > post-extract: > @${LN} -s > ${WRKDIRPREFIX}${.CURDIR}/../../graphics/jpeg/work/jpeg-6b \ > ${WRKSRC}/jpeg > @${TAR} -C ${WRKSRC}/src -xzf ${DISTDIR}/${HP8XX_DRV} > @${TAR} -C ${WRKSRC}/src -xzf ${DISTDIR}/${HPDJ_DRV} > > > > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy > Systems Administrator @ hub.org > primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org > On Sun, Sep 17, 2000 at 09:35:44AM -0500, Ade Lovett wrote: > On Sun, Sep 17, 2000 at 12:01:07AM -0300, The Hermit Hacker wrote: > > > > Running a 4.1-STABLE system with up to date ports, I'm getting the > > following when trying to compile ghostscript 6.0.1 ... > > > > [snip] > > > > looking at the makefile, it appears that /usr/ports/graphics/jpeg needs to > > have a 'make extract' done on it first? > > Mine does. ports/print/ghostscript6/Makefile rev 1.51 2000/09/11 > > BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/graphics/jpeg:extract > > The only time I've been bitten by this kind of problem is when > I had a couple of windows open, one compiling ghostscript, and > another compiling something (xv, I think), that depended on jpeg. > > The "make install clean" on the second port got around to blowing > away the extracted jpeg sources (for ghostscript) between the > BUILD_DEPENDS phase, and actual compilation of the code. > > -aDe > > -- > Ade Lovett, Austin, TX. ade@FreeBSD.org > FreeBSD: The Power to Serve http://www.FreeBSD.org/ -- Andreas Klemm Powered by FreeBSD SMP Songs from our band >>64Bits<<............http://www.apsfilter.org/64bits.html My homepage................................ http://people.FreeBSD.ORG/~andreas Please note: Apsfilter got a NEW HOME................http://www.apsfilter.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 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 4F90237B424 for ; Sat, 23 Sep 2000 09:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA80962; Sat, 23 Sep 2000 09:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id C70EA37B424 for ; Sat, 23 Sep 2000 09:43:47 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8NGhlN08858 for ; Sat, 23 Sep 2000 12:43:47 -0400 (EDT) Message-Id: Date: Sat, 23 Sep 2000 12:43:46 -0400 (EDT) From: Trevor Johnson To: freebsd-gnats-submit@freebsd.org Subject: ports/21505: new port x11-fm/xdiskusage Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21505 >Category: ports >Synopsis: new port x11-fm/xdiskusage >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 Sep 23 09:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: This program scans directories of your choosing, then displays a graph which emphasizes the subdirectories where the largest files are kept. You can browse the graph to take a closer look at particular areas. PostScript output is available. >How-To-Repeat: N/A >Fix: http://jpj.net/~trevor/freebsd/ports/xdiskusage.shar >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 Sep 23 10:44:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from TK151039.14.univie.teleweb.at (TK151039.14.univie.teleweb.at [195.34.151.39]) by hub.freebsd.org (Postfix) with SMTP id 7206F37B43C for ; Sat, 23 Sep 2000 10:44:48 -0700 (PDT) Received: (qmail 98959 invoked from network); 23 Sep 2000 17:43:22 -0000 Received: from unknown (HELO 192.168.1.3) (192.168.1.3) by 192.168.1.1 with SMTP; 23 Sep 2000 17:43:22 -0000 Received: (qmail 44919 invoked by uid 1001); 23 Sep 2000 17:42:46 -0000 Date: Sat, 23 Sep 2000 19:42:46 +0200 From: Herbert To: freebsd-ports@FreeBSD.org Subject: The Licq-0.85 Port! Message-ID: <20000923194246.A39898@freebsd2.rocks> 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 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! Isn't there something wrong with the licq port? I had to add "--with-qt-libraries=${X11BASE}/lib --with-qt-moc=${X11BASE}/bin/moc2" to CONFIGURE_ARGS in the Makefile. Otherwise the configure script and the licq port fails to build. Regards, Herbert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 11:11: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 A11F737B43E; Sat, 23 Sep 2000 11:11:53 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA07837; Sat, 23 Sep 2000 11:11:53 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Date: Sat, 23 Sep 2000 11:11:53 -0700 (PDT) From: Message-Id: <200009231811.LAA07837@freefall.freebsd.org> To: patseal@hyperhost.net, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21492: Update: mail/bbmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: mail/bbmail State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Sat Sep 23 11:11:37 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21492 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 11:11:57 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 6BF2337B424; Sat, 23 Sep 2000 11:11:52 -0700 (PDT) Received: from dip.sevicron.com (res146a-036.rh.rit.edu [129.21.146.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EC1A6E299B; Sat, 23 Sep 2000 11:11:52 -0700 (PDT) Received: from isetr0 by dip.sevicron.com with local (Exim 3.16 #1 (Debian)) id 13ctmM-0003W1-00; Sat, 23 Sep 2000 14:12:02 -0400 Date: Sat, 23 Sep 2000 14:12:02 -0400 To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21495: Evolution calendar crashes on attempt to open. Message-ID: <20000923141202.A13494@sevicron.com> Mail-Followup-To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org References: <200009231546.IAA61743@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: <200009231546.IAA61743@freefall.freebsd.org>; from ade@FreeBSD.org on Sat, Sep 23, 2000 at 08:46:52AM -0700 From: Funn Dipp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just some further info. Instead of running evolution from gnome-menu, started it in an Eterm. Output that follows is from the point that I clicked on the calendar icon until it seg faulted: In e_calendar_table_set_cal_client set_prop: 'file:///home/isetr0/evolution/local/Calendar' calendar_set_uri: calendar_file is 'file:///home/isetr0/evolution/local/Calendar/calendar.ics' load or create returned 1 alarm_add(): Adding alarm for Sun Sep 24 00:00:00 2000 Gdk-WARNING **: shmget failed! Could that shmget be the problem? dually# sysctl-a | grep shm kern.ipc.shmmax: 8388608 kern.ipc.shmmin: 1 kern.ipc.shmmni: 96 kern.ipc.shmseg: 128 kern.ipc.shmall: 2048 kern.ipc.shm_use_phys: 0 That's all I've got for now... On Sat, Sep 23, 2000 at 08:46:52AM -0700, ade@FreeBSD.org wrote: > Synopsis: Evolution calendar crashes on attempt to open. > > State-Changed-From-To: open->analyzed > State-Changed-By: ade > State-Changed-When: Sat Sep 23 08:42:37 PDT 2000 > State-Changed-Why: > Both Evolution, and it's companion Nautilus, both to be part of > GNOME 2.0 (and maybe even earlier), are currently under a heavy > state of change. > > We are already aware of issues at lower layers (gnome-vfs, > for example), that cause problems, based on the large differences > between Linux (on which these ports were developed) and FreeBSD. > > If you can get gdb tracebacks of the crashes, please forward them > on to the Evolution coders via their bugtracking system. > > > Responsible-Changed-From-To: freebsd-ports->ade > Responsible-Changed-By: ade > Responsible-Changed-When: Sat Sep 23 08:42:37 PDT 2000 > Responsible-Changed-Why: > Darwin was wrong.. I control Evolution.. :) > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21495 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 11:25: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 D1FCB37B443; Sat, 23 Sep 2000 11:25:31 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA12094; Sat, 23 Sep 2000 11:25:31 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 23 Sep 2000 11:25:31 -0700 (PDT) From: Message-Id: <200009231825.LAA12094@freefall.freebsd.org> To: trevor@jpj.net, nbm@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21503: update security/pad to 0.7, by maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update security/pad to 0.7, by maintainer State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Sep 23 11:23:50 PDT 2000 State-Changed-Why: Updated, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21503 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 11:28: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 EBF9D37B424; Sat, 23 Sep 2000 11:28:53 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA13293; Sat, 23 Sep 2000 11:28:53 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 23 Sep 2000 11:28:53 -0700 (PDT) From: Message-Id: <200009231828.LAA13293@freefall.freebsd.org> To: trevor@jpj.net, nbm@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21501: update security/p5-GnuPG-Interface, by maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update security/p5-GnuPG-Interface, by maintainer State-Changed-From-To: open->closed State-Changed-By: nbm State-Changed-When: Sat Sep 23 11:26:06 PDT 2000 State-Changed-Why: Updated, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21501 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 11:38:28 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 D35F337B422; Sat, 23 Sep 2000 11:38:26 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id AFE361A75; Sat, 23 Sep 2000 13:34:10 -0500 (EST) Date: Sat, 23 Sep 2000 13:34:10 -0500 From: Will Andrews To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/licq Makefile ports/irc/kvirc Makefile Message-ID: <20000923133410.E1054@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Satoshi - Ports Wraith - Asami , ports@FreeBSD.ORG References: <200009230806.BAA59431@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: ; from asami@FreeBSD.ORG on Sat, Sep 23, 2000 at 01:17:30AM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Sep 23, 2000 at 01:17:30AM -0700, Satoshi - Ports Wraith - Asami wrote: > * You don't want to depend on qt21 -- it's dead. Change them to USE_QT2. > > * 1.14 +3 -3 ports/irc/kvirc/Makefile > > Will, check your crack pipe please. You can't write "qt2.3" in > BUILD_DEPENDS! ;) That is an old port. It was never updated after QT 2.1 went mainstream, hence why it uses qt2.3. I had so many problems getting kvirc to even compile that I just marked it BROKEN (I think I did??). In any case.. I think I will release that port to the world. It's been broken long enough.. No, I was not smoking crack.. that is an *OLD* port! -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 11:45:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ganja.nubisci.net (ikhala.tcimet.net [198.109.166.215]) by hub.freebsd.org (Postfix) with ESMTP id CE64637B424; Sat, 23 Sep 2000 11:45:23 -0700 (PDT) Received: (from dervish@localhost) by ganja.nubisci.net (8.11.0/8.11.0) id e8NIjIU16235; Sat, 23 Sep 2000 14:45:18 -0400 (EDT) (envelope-from dervish) Date: Sat, 23 Sep 2000 14:45:17 -0400 From: bush doctor To: asser@freebsd.org Cc: freebsd-ports@freebsd.org Subject: Mount_xfs failing with Bad address ... Message-ID: <20000923144517.A11168@nubisci.net> Mail-Followup-To: asser@freebsd.org, freebsd-ports@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 i386 WWW-Home-Page: http://www.nubisci.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello Asser. I'm seein the following problems with arla-0.34.2_1 running -current with sources cvsuped from 03:00 EDT. My box is the following: FreeBSD ganja.nubisci.net 5.0-CURRENT FreeBSD 5.0-CURRENT #48: Sat Sep 23 01:22:52 EDT 2000 root@ganja.nubisci.net:/usr/src/sys/compile/GANJA i386 Whenever I run the startarla script it yaks when executing 'mount_xfs /dev/xfs0 /afs'. I receive the following error ganja.nubisci.net:bin> ./mount_xfs /dev/xfs0 /afs mount_xfs: mount: Bad address I'm attempting to locate the problem, but can use some assistance :) thanxs ... #;^) -- So ya want ta hear da roots? bush doctor Of course I run FreeBSD!! 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 Sep 23 12: 9:11 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 BC3E037B422 for ; Sat, 23 Sep 2000 12:09:01 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8NJ8xw12736; Sat, 23 Sep 2000 15:08:59 -0400 (EDT) Date: Sat, 23 Sep 2000 15:08:59 -0400 (EDT) From: Trevor Johnson To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/licq Makefile ports/irc/kvirc Makefile In-Reply-To: <20000923133410.E1054@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 > That is an old port. It was never updated after QT 2.1 went mainstream, > hence why it uses qt2.3. I had so many problems getting kvirc to even > compile that I just marked it BROKEN (I think I did??). > > In any case.. I think I will release that port to the world. It's been > broken long enough.. A few days ago, someone on #freebsdhelp asked about this port, and I promised to attempt an update. So far, I've gotten the configure script to generate several zero-byte makefiles. I've appended what I have. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt diff -ruN kvirc.orig/Makefile kvirc/Makefile --- kvirc.orig/Makefile Wed Aug 23 16:36:55 2000 +++ kvirc/Makefile Sat Sep 23 19:07:37 2000 @@ -6,18 +6,19 @@ # PORTNAME= kvirc -PORTVERSION= 1.0.0 +PORTVERSION= 2.0.0 CATEGORIES= irc -MASTER_SITES= http://www.kvirc.org/ \ - ftp://ftp.kvirc.bz.nu/pub/mirror/kvirc/ \ - ftp://kvirc.firenze.linux.it/pub/kvirc/ +MASTER_SITES= ftp://ftp.kvirc.bz.nu/pub/mirror/kvirc/2.0.0/source/ \ + ftp://kvirc.firenze.linux.it/pub/kvirc/2.0.0/source/ MAINTAINER= will@FreeBSD.org -BUILD_DEPENDS= gettext:${PORTSDIR}/devel/gettext \ - qt2.3:${PORTSDIR}/x11-toolkits/qt21 +BUILD_DEPENDS= gettext:${PORTSDIR}/devel/gettext +ALL_TARGET= kvirc +USE_LIBTOOL= yes USE_NEWGCC= yes +USE_QT2= yes USE_X_PREFIX= yes USE_GMAKE= yes CONFIGURE_ARGS= --x-includes=$(X11BASE)/include --x-libraries=$(X11BASE)/lib \ @@ -25,6 +26,5 @@ --with-qt-include-dir=${X11BASE}/include/qt2 \ --with-qt-library-dir=${X11BASE}/lib CONFIGURE_ENV+= SS_X_EXTRA_LIBS=-lxpg4 -USE_LIBTOOL= yes .include diff -ruN kvirc.orig/files/md5 kvirc/files/md5 --- kvirc.orig/files/md5 Sat Feb 5 00:17:52 2000 +++ kvirc/files/md5 Sun Aug 27 09:34:55 2000 @@ -1 +1 @@ -MD5 (kvirc-1.0.0.tar.gz) = f59640364efeb02ea31c7d20ef4b5d53 +MD5 (kvirc-2.0.0.tar.gz) = 0cf960f2ad2e92a7bfaef61a424d6f09 diff -ruN kvirc.orig/patches/patch-ab kvirc/patches/patch-ab --- kvirc.orig/patches/patch-ab Sun Feb 13 13:17:03 2000 +++ kvirc/patches/patch-ab Thu Sep 21 14:11:50 2000 @@ -1,33 +1,34 @@ ---- configure Mon Dec 20 17:24:36 1999 -+++ configure.new Sat Jan 29 23:43:24 2000 -@@ -3241,7 +3241,7 @@ - ss_save_LIBS="$LIBS" - CPPFLAGS="-I$SS_X_INCLUDE_DIR -I$SS_QT_INCLUDE_DIR $CPPFLAGS $X_CFLAGS" - CXXFLAGS="-O2 -Wall -g $CXXFLAGS" -- LIBS="-L$SS_X_LIBRARY_DIR -L$SS_QT_LIBRARY_DIR $X_ $X_EXTRA_LIBS $X_LIBS $LIBS -lqt -lXext -lX11" -+ LIBS="-L$SS_X_LIBRARY_DIR -L$SS_QT_LIBRARY_DIR $X_ $X_EXTRA_LIBS $X_LIBS $LIBS -lqt2 -lXext -lX11" - LDFLAGS="-s $LDFLAGS" - cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <tmpBuffer.sprintf(__tr("Connected to %s on port %u"),dcc->szAddress.ptr(),dcc->uPort); -- KviDccEvent * e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr()); -+ e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr()); - g_pThreadEventDispatcher->postEvent(e,dcc->dccChatParent); - - dcc->tmpBuffer.sprintf("%s %s %s %s",dcc->nick.ptr(),dcc->username.ptr(),dcc->host.ptr(),dcc->szAddress.ptr()); diff -ruN kvirc.orig/patches/patch-ak kvirc/patches/patch-ak --- kvirc.orig/patches/patch-ak Sat Feb 5 00:17:56 2000 +++ kvirc/patches/patch-ak Thu Sep 21 14:17:58 2000 @@ -1,10 +1,10 @@ ---- src/kvirc/kvi_ircview.cpp Sun Dec 19 19:23:13 1999 -+++ src/kvirc/kvi_ircview.cpp.new Sat Jan 29 18:42:14 2000 -@@ -59,6 +59,7 @@ - #include "kvi_uparser.h" +--- src/kvirc/kvi_ircview.cpp.orig Thu Sep 21 14:16:00 2000 ++++ src/kvirc/kvi_ircview.cpp Thu Sep 21 14:16:50 2000 +@@ -64,6 +64,7 @@ + #include "kvi_statusbar.h" #include +#undef accept + //#include // GCFunctions #include - #include diff -ruN kvirc.orig/patches/patch-al kvirc/patches/patch-al --- kvirc.orig/patches/patch-al Sat Apr 15 00:18:30 2000 +++ kvirc/patches/patch-al Thu Sep 21 14:19:15 2000 @@ -1,10 +1,10 @@ ---- src/kvirc/kvi_systray.h Mon Dec 20 10:28:58 1999 -+++ src/kvirc/kvi_systray.h Sat Apr 15 03:16:04 2000 +--- src/kvirc/kvi_systray.h.orig Thu May 4 00:33:56 2000 ++++ src/kvirc/kvi_systray.h Thu Sep 21 14:18:52 2000 @@ -27,6 +27,7 @@ - + #include #include +#include - + #include + #include //#warning "Check localtime() gmtime() time() in configure" - #include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 12:29:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from beta.nova.org (beta.nova.org [209.31.144.41]) by hub.freebsd.org (Postfix) with ESMTP id 1C15B37B42C for ; Sat, 23 Sep 2000 12:29:36 -0700 (PDT) Received: from fcac.org (members.fcac.org [209.31.144.35]) by beta.nova.org (8.10.1/8.10.1) with ESMTP id e8NJTYB08165 for ; Sat, 23 Sep 2000 15:29:34 -0400 (EDT) Received: from localhost by fcac.org (8.8.8+Sun/SMI-SVR4) id PAA12860; Sat, 23 Sep 2000 15:29:32 -0400 (EDT) Date: Sat, 23 Sep 2000 15:29:32 -0400 (EDT) From: Brian Sletten To: freebsd-ports@freebsd.org Subject: xmms 1.2.3 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I don't know when I'll learn to leave well enough alone. I just tried upgrading to xmms 1.2.3 and MP3 playback stopped working. I've had problems just about every time I upgrade this piece of software, but it usually has to do with the choice of Output plug-in. I upgraded esd to 0.2.19 and that seemed to work. I saw no issues when building. I can still play CDs using xmms, but when I try to play an MP3 there is a clicking sound and then nothing happens. Has anyone else had a problem w/ this version? I'm running 4.1-STABLE from about a month ago w/ OSS 393o for FreeBSD 4.x. Any suggestions would be greatly appreciated. Thanks, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 13: 0: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 89ABD37B43E for ; Sat, 23 Sep 2000 13:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA37147; Sat, 23 Sep 2000 13:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-103-as.acessonet.com.br (200-227-201-103-as.acessonet.com.br [200.227.201.103]) by hub.freebsd.org (Postfix) with ESMTP id 4EE0537B42C for ; Sat, 23 Sep 2000 12:57:13 -0700 (PDT) Received: (qmail 7571 invoked by uid 1001); 23 Sep 2000 19:56:46 -0000 Message-Id: <20000923195646.7570.qmail@Fedaykin.here> Date: 23 Sep 2000 19:56:46 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org Cc: will@physics.purdue.edu X-Send-Pr-Version: 3.2 Subject: ports/21507: New port emulators/sope (Playstation(tm) emulator) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21507 >Category: ports >Synopsis: New port emulators/sope (Playstation(tm) emulator) >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 Sep 23 13:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Fedaykin.here 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 18:08:03 BRT 2000 root@Fedaykin.here:/usr/obj/usr/src/sys/LIOUX i386 >Description: A Playstation(tm) PSX(tm) emulator Currently, it only plays demos and just few of them. It should be safe to add this since it holds no bios files or any other copyrighted stuff. This is not a disclaimer of any sort, just a rephrasal of what is stated at the sope www-site. >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: # # sope # sope/files # sope/files/md5 # sope/files/patch-alpha # sope/pkg # sope/pkg/COMMENT # sope/pkg/DESCR # sope/pkg/PLIST # sope/pkg/MESSAGE # sope/Makefile # echo c - sope mkdir -p sope > /dev/null 2>&1 echo c - sope/files mkdir -p sope/files > /dev/null 2>&1 echo x - sope/files/md5 sed 's/^X//' >sope/files/md5 << 'END-of-sope/files/md5' XMD5 (sope-0.03.1.tar.gz) = f814c0c38a09c9490450f57903ee81a1 END-of-sope/files/md5 echo x - sope/files/patch-alpha sed 's/^X//' >sope/files/patch-alpha << 'END-of-sope/files/patch-alpha' X--- Makefile.config.ORIG Sun May 21 21:24:16 2000 X+++ Makefile.config Sun May 21 21:24:45 2000 X@@ -168,7 +168,7 @@ X #CFLAGS := $(CFLAGS) -malign-loops=3 X X # for alpha X-#CFLAGS := $(CFLAGS) -mcpu=ev4 X+CFLAGS := $(CFLAGS) -mcpu=ev4 X #CFLAGS := $(CFLAGS) -mcpu=ev5 X #CFLAGS := $(CFLAGS) -mcpu=ev6 X #CFLAGS := $(CFLAGS) -mcpu=ev7 X@@ -203,9 +203,9 @@ X #ASM := $(ASM) CPU X #ASM := $(ASM) MEMORY X X-#CPU = alpha X+CPU = alpha X #CPU = arm X-CPU = i386 X+#CPU = i386 X #CPU = m68k X #CPU = mips X #CPU = ppc END-of-sope/files/patch-alpha echo c - sope/pkg mkdir -p sope/pkg > /dev/null 2>&1 echo x - sope/pkg/COMMENT sed 's/^X//' >sope/pkg/COMMENT << 'END-of-sope/pkg/COMMENT' XPlaystation(tm) PSX(tm) emulator END-of-sope/pkg/COMMENT echo x - sope/pkg/DESCR sed 's/^X//' >sope/pkg/DESCR << 'END-of-sope/pkg/DESCR' XSope is a Playstation(tm) emulator developed by SaD. X XRight now, it only plays some demos but it is improving. It is Xbest intended as a demo developing tool. X XIt requires a Playstation(tm) bios file to run. Check with an Xattorney to see if you can legally obtain one. X XFrom Sope FAQ: X X1) What does "Sope" mean ? X- Sope is supposed to mean "SaD's OpenGL Playstation(tm) Emulator" X(SaD being my name...). This name is not totally accurate for the Xmoment, cos' Sope uses Mesa-specific features that are not OpenGL Xcompliant. X X2) Why is Sope so slow? XSope uses Mesa as an off-screen software renderer, which makes the Xdrawing of polygons really slow. X XPlaystation(tm), PSX(tm) and Sony(tm) are Sony Corp. trademarks X XWWW: http://sope.sourceforge.net/ END-of-sope/pkg/DESCR echo x - sope/pkg/PLIST sed 's/^X//' >sope/pkg/PLIST << 'END-of-sope/pkg/PLIST' Xbin/sope X%%PORTDOCS:%%share/doc/sope/changes.txt X%%PORTDOCS:%%share/doc/sope/faq.txt X%%PORTDOCS:%%share/doc/sope/readme.txt X%%PORTDOCS:%%share/doc/sope/todo.txt X%%PORTDOCS:%%@dirrm share/doc/sope END-of-sope/pkg/PLIST echo x - sope/pkg/MESSAGE sed 's/^X//' >sope/pkg/MESSAGE << 'END-of-sope/pkg/MESSAGE' X ATTENTIONATTENTION: X XSope is a Playstation(tm) emulator for Unix Systems. X XIt requires a Playstation(tm) bios file to run. X XIf you do not legally own a Playstation(tm), then you can be pretty Xmuch sure it is not legal to own a Playstation(tm) bios file. X XIf you do legally own a Playstation(tm), you should contact an Xattorney to see if you can legally obtain a file copy of your XPlaystation(tm)'s bios. X XIf you are sure you can, see the files in /usr/local/share/doc/sope Xfor more information on running Sope. X XPlaystation(tm), PSX(tm) and Sony(tm) are Sony Corp. trademarks END-of-sope/pkg/MESSAGE echo x - sope/Makefile sed 's/^X//' >sope/Makefile << 'END-of-sope/Makefile' X# New ports collection makefile for: sope X# Date Created: 22 Sep 2000 X# Whom: Mario S F Ferreira et al. X# X# $FreeBSD$ X# X XPORTNAME= sope XPORTVERSION= 0.03.1 XCATEGORIES= emulators devel XMASTER_SITES= http://sope.sourceforge.net/download/ X XMAINTAINER= lioux@linf.unb.br X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S,.1,,}/src X XUSE_GMAKE= yes XUSE_XLIB= yes XALL_TARGET= ${PORTNAME} X X# only needed to enable the GTK+ debugger X.if defined(WITH_GTK) XLIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 XGTK_CONFIG= ${X11BASE}/bin/gtk12-config XGTK_CFLAGS!= ${GTK_CONFIG} --cflags X.endif X X.if defined(NOPORTDOCS) XPLIST_SUB+= PORTDOCS:="@comment " X.else XPLIST_SUB+= PORTDOCS:= XDOCFILES= changes.txt faq.txt readme.txt todo.txt XDOCDIR= ${PREFIX}/share/doc/sope X.endif # !defined(NOPORTDOCS) X Xpost-patch: X @${PERL} -pi -e 's|/usr/X11/|${X11BASE}/|g' ${WRKSRC}/Makefile X X.include X Xpost-configure: X @${PERL} -pi -e \ X 's|^(OPTFLAGS\s*=).*|\1 ${CFLAGS}|' \ X ${WRKSRC}/Makefile X.if ${ARCH} == "alpha" X @${PERL} -pi -e \ X 's|^#\s(USE_ALPHA=1.*)|\1|' \ X ${WRKSRC}/Makefile X.elif ${ARCH} == "i386" X @${PERL} -pi -e \ X 's|^#\s(USE_INTEL=1.*)|\1|' \ X ${WRKSRC}/Makefile X.endif X.if defined(WITH_GTK) X @${PERL} -pi \ X -e 's|^#(USE_GTK=1.*)|\1|;' \ X -e 's|^(CFLAGS.*)|\1 ${GTK_CFLAGS}|;' \ X -e 's|-lgtk\s+-lgdk|-lgtk12 -lgdk12|' \ X ${WRKSRC}/Makefile X.endif X Xdo-install: X.if !defined(NOPORTDOCS) X ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 ${DOCDIR} X.for i in ${DOCFILES} X ${INSTALL_DATA} ${WRKSRC:S,/src,,}/doc/${i} ${DOCDIR} X.endfor X.endif X ${INSTALL_PROGRAM} ${WRKSRC:S,/src,,}/${PORTNAME} ${PREFIX}/bin X @${SED} s!/usr/local!${PREFIX}!g ${PKGDIR}/MESSAGE | /usr/bin/fmt X X.include END-of-sope/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 Sat Sep 23 13:59:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from vbox.internal.net (p3EE0C69C.dip.t-dialin.net [62.224.198.156]) by hub.freebsd.org (Postfix) with ESMTP id B737337B422 for ; Sat, 23 Sep 2000 13:59:22 -0700 (PDT) Received: from hellfire.internal.net (hellfire.internal.net [192.168.1.1]) by vbox.internal.net (Postfix) with ESMTP id 1EDA4F69AF for ; Sat, 23 Sep 2000 22:57:44 +0200 (CEST) Content-Length: 1693 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sat, 23 Sep 2000 22:57:44 +0200 (CEST) Organization: VirtualAudio From: Heri To: ports@freebsd.org Subject: imake probelm on 4.1-release with xfree 4.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello there, im using 4.1-release and compiled XFree 4.0.1 from the ports tree. i didnt installed the 3.3.6 release of Xfree that comes with the 4.1-release. i cannot compile anything that uses imake, even the ports dont compile. i found out that imake doesnt find Imake.tmpl. I checked the mail archives and found lots of posts, but near every port is quite old. I installed imake-4 from the ports tree that installs Imake.tmpl and the other files needed by imake in their place (/usr/X11R6/lib/X11/config). But the problem on not compiling with the "Imake.tmpl not found" message was still there. So i set the environment variable for imake so it searches in the correct path for the Imake.tmpl. It was found and imake created a Makefile. But the programs still dont compile. I think its a imake problem that make corrupted makefiles. Its all about XXXXX.man, where XXXXX is the program name. Tried to make /usr/ports/audio/wmmixer i get : cc -o wmmixer -L/usr/X11R6/lib wmmixer.o -lXpm -lXext -lX11 -Wl,-rpath,/usr/X11R6/lib make: don't know how to make wmmixer.man. Stop *** Error code 2 Another example is Ghostview : /usr/X11R6/lib/libXaw3d.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() make: don't know how to make gv.man. Stop *** Error code 2 I tried a view other ports that use imake. Non of them compiles A asked on IRC and a few people had the same problem. Maybe it is a bug or something that needs to be fixed quickly ;) Best regards, Heri ---------------------------------- E-Mail: Heribert Steuer Date: 23-Sep-00 Time: 22:33:26 This message was sent by XFMail ---------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 14:17:38 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 1990E37B422 for ; Sat, 23 Sep 2000 14:17:34 -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 e8NLHWs75367; Sat, 23 Sep 2000 17:17:32 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <000a01c025a3$a61317e0$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: , Subject: PATCH for net/samba Date: Sat, 23 Sep 2000 17:17:15 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C02582.1E843190" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C02582.1E843190 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable The following patch updates an installation script of net/samba so that = it copies swat/README into /usr/local/samba/swat during installation.=20 --- source/script/installswat.sh.orig Tue Apr 25 19:07:09 2000 +++ source/script/installswat.sh Sat Sep 23 16:58:30 2000 @@ -61,6 +61,14 @@ chmod 0644 $FNAME done =20 +# Install $SRCDIR../swat/README +for f in README; do + FNAME=3D$SWATDIR/`basename $f` + echo $FNAME + cp $f $FNAME || echo Cannot install $FNAME. Does $USER have = privileges? + chmod 0644 $FNAME +done + # Install Using Samba book =20 if [ "x$BOOKDIR" !=3D "x" ]; then --=20 Matthew Emmerton GSI Computer Services +1 (800) 217 5409 (Canada) ------=_NextPart_000_0007_01C02582.1E843190 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
The following patch updates an = installation script=20 of net/samba so that it copies swat/README into /usr/local/samba/swat = during=20 installation. 
 
--- = source/script/installswat.sh.orig Tue Apr=20 25 19:07:09 2000
+++ source/script/installswat.sh Sat Sep 23 = 16:58:30=20 2000
@@ -61,6 +61,14 @@
       chmod = 0644=20 $FNAME
 done
 
+# Install = $SRCDIR../swat/README
+for f in=20 README; do
+      FNAME=3D$SWATDIR/`basename = $f`
+      echo=20 $FNAME
+      cp $f $FNAME || echo Cannot = install=20 $FNAME. Does $USER have privileges?
+      = chmod=20 0644 $FNAME
+done
+
 # Install Using Samba=20 book
 
 if [ "x$BOOKDIR" !=3D "x" ]; = then
--
Matthew Emmerton
GSI Computer = Services
+1 (800) 217 5409 (Canada)
------=_NextPart_000_0007_01C02582.1E843190-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 14:26:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from po3.glue.umd.edu (po3.glue.umd.edu [128.8.10.123]) by hub.freebsd.org (Postfix) with ESMTP id 8CB2737B424 for ; Sat, 23 Sep 2000 14:26:34 -0700 (PDT) Received: from glue.umd.edu (poseidon.student.umd.edu [129.2.144.21]) by po3.glue.umd.edu (8.10.1/8.10.1) with ESMTP id e8NLQXb00192 for ; Sat, 23 Sep 2000 17:26:33 -0400 (EDT) Message-ID: <39CD200B.A10214EA@glue.umd.edu> Date: Sat, 23 Sep 2000 17:26:35 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.74 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: ports tree idea: Combine DESCR and COMMENT Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I haven't read all of the discussion regarding the ports tree remake, so this could be totally useless. My intent is for this to be a short term, easy to implement, band-aid(TM). Since people complain about the number of inodes that the ports tree uses I was thinking that maybe the pkg/DESCR and pkg/COMMENT files could be combined. Since the COMMENT file is usually only one line it seems that that one line could easily be made the very first line of DESCR. Now obviously this only saves one inode per port, but when you have over 3000 ports it starts to add up. Is this something that could be done while we're waiting for the new reincarnation of the ports tree? -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 14:31:49 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 AFB0B37B43E; Sat, 23 Sep 2000 14:31:47 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8NLVkd16566; Sat, 23 Sep 2000 17:31:46 -0400 (EDT) Date: Sat, 23 Sep 2000 17:31:46 -0400 (EDT) From: Trevor Johnson To: sobomax@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21076: update audio/nas In-Reply-To: <200009071221.FAA19827@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 On Thu, 7 September, Maxim Sobolev wrote: > BTW, the most likely is that your problems with Imake caused by the lesstif > installed, or was installed. Old version of lesstif were violently replacing > Imake.tmpl with his custom version incompatible with XFree4. You have either > to reinstall XFree, or unpack its default Imake.tmpl, apply FreeBSD patches to > it and install this file. Thanks--that's just what the problem was. Fortunately I'd done "make package" when compiling XFree86, and kept the package. -- 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 Sep 23 14:32:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 87D1437B42C for ; Sat, 23 Sep 2000 14:32:26 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13cwu7-000BkU-00; Sat, 23 Sep 2000 23:32:15 +0200 Date: Sat, 23 Sep 2000 23:32:15 +0200 From: Neil Blakey-Milner To: Brandon Fosdick Cc: ports@freebsd.org Subject: Re: ports tree idea: Combine DESCR and COMMENT Message-ID: <20000923233215.A45139@mithrandr.moria.org> References: <39CD200B.A10214EA@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39CD200B.A10214EA@glue.umd.edu>; from bfoz@glue.umd.edu on Sat, Sep 23, 2000 at 05:26:35PM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat 2000-09-23 (17:26), Brandon Fosdick wrote: > I haven't read all of the discussion regarding the ports tree remake, so this > could be totally useless. My intent is for this to be a short term, easy to > implement, band-aid(TM). > > Since people complain about the number of inodes that the ports tree > uses I was thinking that maybe the pkg/DESCR and pkg/COMMENT files > could be combined. Since the COMMENT file is usually only one line it > seems that that one line could easily be made the very first line of > DESCR. > > Now obviously this only saves one inode per port, but when you have over 3000 > ports it starts to add up. Is this something that could be done while we're > waiting for the new reincarnation of the ports tree? It's not really the files that kill us, but the directories. Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Sep 23 14:32:56 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 5C35137B43E for ; Sat, 23 Sep 2000 14:32:51 -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 e8NLWos75400; Sat, 23 Sep 2000 17:32:50 -0400 (EDT) (envelope-from matt@gsicomp.on.ca) Message-ID: <001201c025a5$c94b22f0$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: , Subject: [UPDATED] PATCH for net/samba Date: Sat, 23 Sep 2000 17:32:33 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_000F_01C02584.41E0DBA0" 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 This is a multi-part message in MIME format. ------=_NextPart_000_000F_01C02584.41E0DBA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Well, folks, I messed up. The patch I just sent had some last-minute = changes on the wrong line. Here's the corrected one. (And yes, I double-tested this one.) --- source/script/installswat.sh.orig Tue Apr 25 19:07:09 2000 +++ source/script/installswat.sh Sat Sep 23 17:27:22 2000 @@ -61,6 +61,14 @@ chmod 0644 $FNAME done =20 +# Install README +for f in $SRCDIR../swat/README; do + FNAME=3D$SWATDIR/`basename $f` + echo $FNAME + cp $f $FNAME || echo Cannot install $FNAME. Does $USER have = privileges? + chmod 0644 $FNAME +done + # Install Using Samba book =20 if [ "x$BOOKDIR" !=3D "x" ]; then --=20 Matthew Emmerton GSI Computer Services +1 (800) 217 5409 (Canada) ------=_NextPart_000_000F_01C02584.41E0DBA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Well, folks, I messed up.  The = patch I just=20 sent had some last-minute changes on the wrong line. =20 <sigh>
Here's the corrected one. (And yes, I = double-tested=20 this one.)
 
--- = source/script/installswat.sh.orig Tue Apr=20 25 19:07:09 2000
+++ source/script/installswat.sh Sat Sep 23 = 17:27:22=20 2000
@@ -61,6 +61,14 @@
       chmod = 0644=20 $FNAME
 done
 
+# Install README
+for f in=20 $SRCDIR../swat/README; do
+     =20 FNAME=3D$SWATDIR/`basename $f`
+      echo=20 $FNAME
+      cp $f $FNAME || echo Cannot = install=20 $FNAME. Does $USER have privileges?
+      = chmod=20 0644 $FNAME
+done
+
 # Install Using Samba=20 book
 
 if [ "x$BOOKDIR" !=3D "x" ]; then
 
--
Matthew Emmerton
GSI Computer = Services
+1 (800) 217 5409 (Canada)
------=_NextPart_000_000F_01C02584.41E0DBA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 14:33: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 F034837B424; Sat, 23 Sep 2000 14:33:38 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA59513; Sat, 23 Sep 2000 14:33:38 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Sat, 23 Sep 2000 14:33:38 -0700 (PDT) From: Message-Id: <200009232133.OAA59513@freefall.freebsd.org> To: toru@maid.ne.jp, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21499: Ports broken: x11-wm/afterstep Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ports broken: x11-wm/afterstep State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Sat Sep 23 14:33:25 PDT 2000 State-Changed-Why: Patch committed - thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21499 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 15: 6:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from po4.glue.umd.edu (po4.glue.umd.edu [128.8.10.124]) by hub.freebsd.org (Postfix) with ESMTP id 2F73937B424 for ; Sat, 23 Sep 2000 15:06:42 -0700 (PDT) Received: from glue.umd.edu (poseidon.student.umd.edu [129.2.144.21]) by po4.glue.umd.edu (8.10.1/8.10.1) with ESMTP id e8NM6KJ29554; Sat, 23 Sep 2000 18:06:35 -0400 (EDT) Message-ID: <39CD295E.453FF278@glue.umd.edu> Date: Sat, 23 Sep 2000 18:06:22 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.74 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Neil Blakey-Milner Cc: ports@freebsd.org Subject: Re: ports tree idea: Combine DESCR and COMMENT References: <39CD200B.A10214EA@glue.umd.edu> <20000923233215.A45139@mithrandr.moria.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Neil Blakey-Milner wrote: > > On Sat 2000-09-23 (17:26), Brandon Fosdick wrote: > > I haven't read all of the discussion regarding the ports tree remake, so this > > could be totally useless. My intent is for this to be a short term, easy to > > implement, band-aid(TM). > > > > Since people complain about the number of inodes that the ports tree > > uses I was thinking that maybe the pkg/DESCR and pkg/COMMENT files > > could be combined. Since the COMMENT file is usually only one line it > > seems that that one line could easily be made the very first line of > > DESCR. > > > > Now obviously this only saves one inode per port, but when you have over 3000 > > ports it starts to add up. Is this something that could be done while we're > > waiting for the new reincarnation of the ports tree? > > It's not really the files that kill us, but the directories. So are you saying that removing some files won't help at all, or that it won't help enough to be worth the effort? Since the pkg dir currently has only 3 files in it (and maybe two of them can be combined) would it help to just do away with the pkg dir altogether? Sure it makes the port directory a little messier, but only by 2 or 3 files. Again, I'm thinking more about short term patches than nice pretty long term solutions. -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 15: 7:50 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 8230737B422 for ; Sat, 23 Sep 2000 15:07:48 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8NM7lt17497; Sat, 23 Sep 2000 18:07:47 -0400 (EDT) Date: Sat, 23 Sep 2000 18:07:47 -0400 (EDT) From: Trevor Johnson To: Brandon Fosdick Cc: ports@FreeBSD.ORG Subject: Re: ports tree idea: Combine DESCR and COMMENT In-Reply-To: <39CD200B.A10214EA@glue.umd.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 > Since people complain about the number of inodes that the ports tree uses I was > thinking that maybe the pkg/DESCR and pkg/COMMENT files could be combined. Since > the COMMENT file is usually only one line it seems that that one line could > easily be made the very first line of DESCR. > > Now obviously this only saves one inode per port, but when you have over 3000 > ports it starts to add up. Is this something that could be done while we're > waiting for the new reincarnation of the ports tree? > This was proposed on 14 February by Jeremy Lea in the "multi-level categories" thread. Some other ideas that struck me as worthy: - move everything from the patches/ and pkg/ directories into the top-level directory for each port - permit more than one source file to be changed by each patch file, when the maintainer prefers to work with such patches - move files/md5 to the top-level directory, and only have a files/ directory when it is needed for other files (few ports have these) Another possibility for the comments is to make them a line in the makefiles: COMMENT= "Andrew User Interface System" Someone said that many DESCR files already have the comment as their first line, though. -- 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 Sep 23 15: 9:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from out3.mx.nwbl.wi.voyager.net (out3.mx.nwbl.wi.voyager.net [169.207.3.79]) by hub.freebsd.org (Postfix) with ESMTP id EF08D37B422 for ; Sat, 23 Sep 2000 15:09:48 -0700 (PDT) Received: from pop5.nwbl.wi.voyager.net (pop5.nwbl.wi.voyager.net [169.207.3.83]) by out3.mx.nwbl.wi.voyager.net (8.9.3/8.9.3) with ESMTP id RAA00492; Sat, 23 Sep 2000 17:09:47 -0500 Received: from bigguy (d55.as12.nwbl0.wi.voyager.net [169.207.135.55]) by pop5.nwbl.wi.voyager.net (8.10.2/8.10.2) with SMTP id e8NM9eD31803; Sat, 23 Sep 2000 17:09:42 -0500 (CDT) From: "Bob Knier" To: Cc: , "bubbler" Subject: FreeBSD Port: linux-jdk-1.2.2 Date: Sat, 23 Sep 2000 17:09:23 -0500 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.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry to bother you, but I have just loaded the linux-jdk1.2.2 to my FreeBSD 4.1 box. Everything seems to work well except for a jni libary that I call. The library, libamp.so is a library that I created. Is it possible to create a linux shared libary or change the signature on the libamp.so library? Thanks, Bob Knier bubbler@execpc.com Here is the error I get: Error: 500 Location: /bob/servlet/PlaySong Internal Servlet Error: java.lang.UnsatisfiedLinkError: /usr/lib/libamp.so: /usr/lib/libamp.so: ELF file OS ABI invalid. at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary0(ClassLoader.java, Compiled Code) at java.lang.ClassLoader.loadLibrary(ClassLoader.java, Compiled Code) at java.lang.Runtime.loadLibrary0(Runtime.java, Compiled Code) at java.lang.System.loadLibrary(System.java, Compiled Code) at PlayMP3.(PlayMP3.java:21) at PlaySong.doGet(PlaySong.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java, Compiled Code) at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java, Compiled Code) at org.apache.tomcat.servlets.InvokerServlet.service(InvokerServlet.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java, Compiled Code) at org.apache.tomcat.core.ContextManager.service(ContextManager.java, Compiled Code) at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection (Ajp12ConnectionHandler.java, Compiled Code) at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java, Compiled Code) at java.lang.Thread.run(Thread.java, Compiled Code) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 16:40: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 C0C0B37B449 for ; Sat, 23 Sep 2000 16:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA88152; Sat, 23 Sep 2000 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from tele-post-20.mail.demon.net (tele-post-20.mail.demon.net [194.217.242.20]) by hub.freebsd.org (Postfix) with ESMTP id 5C39337B424 for ; Sat, 23 Sep 2000 16:35:20 -0700 (PDT) Received: from myrddin.demon.co.uk ([158.152.54.180] helo=ppe.happygiraffe.net) by tele-post-20.mail.demon.net with esmtp (Exim 2.12 #2) id 13cypA-000Mjd-0K for FreeBSD-gnats-submit@freebsd.org; Sat, 23 Sep 2000 23:35:17 +0000 Received: by ppe.happygiraffe.net (Postfix, from userid 1000) id 0B9A543A; Sun, 24 Sep 2000 00:35:17 +0100 (BST) Message-Id: <20000923233517.0B9A543A@ppe.happygiraffe.net> Date: Sun, 24 Sep 2000 00:35:17 +0100 (BST) From: dom@happygiraffe.net Reply-To: dom@happygiraffe.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21509: maintainer update of graphics/piddle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21509 >Category: ports >Synopsis: maintainer update to graphics/piddle >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 23 16:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 4.1-STABLE i386 >Organization: Big Angry Orange Things inc. >Environment: FreeBSD ppe.happygiraffe.net 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 17:45:14 BST 2000 root@ppe.happygiraffe.net:/usr/obj/usr/src/sys/PPE i386 >Description: Update the piddle port to use the new bsd.python.mk. Original patch by Thomas Gellekum , thanks! >How-To-Repeat: n/a >Fix: Here's the patch: Index: Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/piddle/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2000/09/08 12:23:50 1.5 +++ Makefile 2000/09/12 15:22:00 @@ -15,14 +15,11 @@ MAINTAINER= dom@myrddin.demon.co.uk -RUN_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - +USE_PYTHON= yes WRKSRC= ${WRKDIR}/${PKGNAME} NO_BUILD= yes -PYTHON?= ${LOCALBASE}/bin/python -PYTHONLIBDIR?= ${LOCALBASE}/lib/python1.5 -PIDDLEDIR= ${PYTHONLIBDIR}/site-packages/piddle +PIDDLEDIR= ${PYTHON_SITELIBDIR}/piddle PIDDLEDOCDIR= ${PREFIX}/share/doc/piddle PIDDLEEGDIR= ${PREFIX}/share/examples/piddle @@ -40,8 +37,8 @@ ${INSTALL_DATA} ${WRKSRC}/pilfonts/*.pbm ${PIDDLEDIR}/pilfonts ${INSTALL_DATA} ${WRKSRC}/pilfonts/metrics.dat ${PIDDLEDIR}/pilfonts ${ECHO} 'piddle' > ${PIDDLEDIR}.pth - @${PYTHON} ${PYTHONLIBDIR}/compileall.py ${PIDDLEDIR} - @${PYTHON} -O ${PYTHONLIBDIR}/compileall.py ${PIDDLEDIR} + @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PIDDLEDIR} + @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${PIDDLEDIR} ${MKDIR} ${PIDDLEDOCDIR} (cd ${WRKSRC}/docs ; tar cf - *) | \ (cd ${PIDDLEDOCDIR} ; tar xf -) Index: pkg/PLIST =================================================================== RCS file: /usr/cvs/ports/graphics/piddle/pkg/PLIST,v retrieving revision 1.2 diff -u -r1.2 PLIST --- pkg/PLIST 2000/05/22 10:26:34 1.2 +++ pkg/PLIST 2000/09/12 15:22:30 @@ -1,155 +1,155 @@ -lib/python1.5/site-packages/piddle.pth -lib/python1.5/site-packages/piddle/PixMapWrapper.py -lib/python1.5/site-packages/piddle/PixMapWrapper.pyc -lib/python1.5/site-packages/piddle/PixMapWrapper.pyo -lib/python1.5/site-packages/piddle/aigen.py -lib/python1.5/site-packages/piddle/aigen.pyc -lib/python1.5/site-packages/piddle/aigen.pyo -lib/python1.5/site-packages/piddle/discipline.py -lib/python1.5/site-packages/piddle/discipline.pyc -lib/python1.5/site-packages/piddle/discipline.pyo -lib/python1.5/site-packages/piddle/pagesizes.py -lib/python1.5/site-packages/piddle/pagesizes.pyc -lib/python1.5/site-packages/piddle/pagesizes.pyo -lib/python1.5/site-packages/piddle/pdfdoc.py -lib/python1.5/site-packages/piddle/pdfdoc.pyc -lib/python1.5/site-packages/piddle/pdfdoc.pyo -lib/python1.5/site-packages/piddle/pdfgen.py -lib/python1.5/site-packages/piddle/pdfgen.pyc -lib/python1.5/site-packages/piddle/pdfgen.pyo -lib/python1.5/site-packages/piddle/pdfgeom.py -lib/python1.5/site-packages/piddle/pdfgeom.pyc -lib/python1.5/site-packages/piddle/pdfgeom.pyo -lib/python1.5/site-packages/piddle/pdfmetrics.py -lib/python1.5/site-packages/piddle/pdfmetrics.pyc -lib/python1.5/site-packages/piddle/pdfmetrics.pyo -lib/python1.5/site-packages/piddle/pdfutils.py -lib/python1.5/site-packages/piddle/pdfutils.pyc -lib/python1.5/site-packages/piddle/pdfutils.pyo -lib/python1.5/site-packages/piddle/piddle.py -lib/python1.5/site-packages/piddle/piddle.pyc -lib/python1.5/site-packages/piddle/piddle.pyo -lib/python1.5/site-packages/piddle/piddleAI.py -lib/python1.5/site-packages/piddle/piddleAI.pyc -lib/python1.5/site-packages/piddle/piddleAI.pyo -lib/python1.5/site-packages/piddle/piddleGL.py -lib/python1.5/site-packages/piddle/piddleGL.pyc -lib/python1.5/site-packages/piddle/piddleGL.pyo -lib/python1.5/site-packages/piddle/piddlePDF.py -lib/python1.5/site-packages/piddle/piddlePDF.pyc -lib/python1.5/site-packages/piddle/piddlePDF.pyo -lib/python1.5/site-packages/piddle/piddlePIL.py -lib/python1.5/site-packages/piddle/piddlePIL.pyc -lib/python1.5/site-packages/piddle/piddlePIL.pyo -lib/python1.5/site-packages/piddle/piddlePS.py -lib/python1.5/site-packages/piddle/piddlePS.pyc -lib/python1.5/site-packages/piddle/piddlePS.pyo -lib/python1.5/site-packages/piddle/piddleQD.py -lib/python1.5/site-packages/piddle/piddleQD.pyc -lib/python1.5/site-packages/piddle/piddleQD.pyo -lib/python1.5/site-packages/piddle/piddleTK.py -lib/python1.5/site-packages/piddle/piddleTK.pyc -lib/python1.5/site-packages/piddle/piddleTK.pyo -lib/python1.5/site-packages/piddle/piddleVCR.py -lib/python1.5/site-packages/piddle/piddleVCR.pyc -lib/python1.5/site-packages/piddle/piddleVCR.pyo -lib/python1.5/site-packages/piddle/piddleWX.py -lib/python1.5/site-packages/piddle/piddleWX.pyc -lib/python1.5/site-packages/piddle/piddleWX.pyo -lib/python1.5/site-packages/piddle/piddleWxDc.py -lib/python1.5/site-packages/piddle/piddleWxDc.pyc -lib/python1.5/site-packages/piddle/piddleWxDc.pyo -lib/python1.5/site-packages/piddle/piddletest.py -lib/python1.5/site-packages/piddle/piddletest.pyc -lib/python1.5/site-packages/piddle/piddletest.pyo -lib/python1.5/site-packages/piddle/pilfonts/courier-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-10.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-12.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-14.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-18.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-24.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-8.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-10.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-12.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-14.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-18.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-24.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-8.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-10.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-12.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-14.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-18.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-24.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-8.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-10.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-12.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-14.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-18.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-24.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-8.pil -lib/python1.5/site-packages/piddle/pilfonts/metrics.dat -lib/python1.5/site-packages/piddle/pilfonts/symbol-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-10.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-12.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-14.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-18.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-24.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-8.pil -lib/python1.5/site-packages/piddle/pilfonts/times-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-10.pil -lib/python1.5/site-packages/piddle/pilfonts/times-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-12.pil -lib/python1.5/site-packages/piddle/pilfonts/times-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-14.pil -lib/python1.5/site-packages/piddle/pilfonts/times-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-18.pil -lib/python1.5/site-packages/piddle/pilfonts/times-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-24.pil -lib/python1.5/site-packages/piddle/pilfonts/times-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-8.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-10.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-12.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-14.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-18.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-24.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-8.pil -lib/python1.5/site-packages/piddle/stringformat.py -lib/python1.5/site-packages/piddle/stringformat.pyc -lib/python1.5/site-packages/piddle/stringformat.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle.pth +lib/%%PYTHON_VERSION%%/site-packages/piddle/PixMapWrapper.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/PixMapWrapper.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/PixMapWrapper.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/aigen.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/aigen.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/aigen.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/discipline.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/discipline.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/discipline.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pagesizes.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pagesizes.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pagesizes.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfdoc.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfdoc.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfdoc.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgen.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgen.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgen.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgeom.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgeom.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgeom.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfmetrics.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfmetrics.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfmetrics.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfutils.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfutils.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfutils.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddle.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddle.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddle.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleAI.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleAI.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleAI.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleGL.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleGL.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleGL.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePDF.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePDF.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePDF.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePIL.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePIL.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePIL.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePS.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePS.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePS.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleQD.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleQD.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleQD.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleTK.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleTK.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleTK.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleVCR.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleVCR.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleVCR.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWX.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWX.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWX.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWxDc.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWxDc.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWxDc.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddletest.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddletest.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddletest.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/metrics.dat +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/stringformat.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/stringformat.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/stringformat.pyo share/doc/piddle/README share/doc/piddle/index.html share/doc/piddle/notesAI/PiddifyAI/Icon_ @@ -204,8 +204,8 @@ share/examples/piddle/textClasses.py share/examples/piddle/using-piddleTK.py share/examples/piddle/using-piddleWX.py -@dirrm lib/python1.5/site-packages/piddle/pilfonts -@dirrm lib/python1.5/site-packages/piddle +@dirrm lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts +@dirrm lib/%%PYTHON_VERSION%%/site-packages/piddle @dirrm share/doc/piddle/notesAI/PiddifyAI @dirrm share/doc/piddle/notesAI @dirrm share/doc/piddle/notesPDF >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 Sep 23 17: 8:59 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 0C86637B424; Sat, 23 Sep 2000 17:08:55 -0700 (PDT) Received: from parish ([62.253.84.29]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000924000853.HDRC19246.mta06-svc.ntlworld.com@parish>; Sun, 24 Sep 2000 01:08:53 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e8O08rw25368; Sun, 24 Sep 2000 01:08:53 +0100 (BST) (envelope-from mark) Date: Sun, 24 Sep 2000 01:08:47 +0100 From: Mark Ovens To: ports@freebsd.org, ade@freebsd.org Subject: Build of latest pan fails Message-ID: <20000924010847.A253@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 Building of the latest version of news/pan fails: # cd /usr/ports/news/pan # make [snip] checking host system type... i386--freebsd4.1 checking for library containing pthread_create... -lc_r checking for glib-config... /usr/local/bin/glib12-config checking for GLIB - version >= 1.2.8... ./configure: /usr/local/bin/glib12-config: not found ./configure: /usr/local/bin/glib12-config: not found ./configure: /usr/local/bin/glib12-config: not found ./configure: /usr/local/bin/glib12-config: not found ./configure: /usr/local/bin/glib12-config: not found no *** Could not run GLIB test program, checking why... *** The test program failed to compile or link. See the file config.log for the *** exact error that occured. This usually means GLIB was incorrectly installed *** or that you have moved GLIB since it was installed. In the latter case, you *** may want to edit the glib-config script: /usr/local/bin/glib12-config configure: error: *** GLIB 1.2.8 or better is required. The latest version of GLIB *** is always available from ftp://ftp.gtk.org/. ===> 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. configure:591: checking for a BSD compatible install configure:644: checking whether build environment is sane configure:701: checking whether make sets ${MAKE} [snip] I initially saw this error when my glib was version 1.2.7, so I u/g to the latest (1.3.1) but I'm still get the same errors. # pkg_version -v | grep glib glib-1.3.1 ? multiple versions (index has 1.2.8,1.3.1) # -- 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 Sat Sep 23 17: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 4D03F37B440 for ; Sat, 23 Sep 2000 17:20:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95277; Sat, 23 Sep 2000 17:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:04 -0700 (PDT) Message-Id: <200009240020.RAA95277@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: makoto@pinpott.spnet.ne.jp Subject: ports/21472: Update port: japanese/zangband (by maintainer) Reply-To: makoto@pinpott.spnet.ne.jp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21472; it has been noted by GNATS. From: makoto@pinpott.spnet.ne.jp To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21472: Update port: japanese/zangband (by maintainer) Date: Fri, 22 Sep 2000 20:18:45 +0900 (JST) >Number: 21472 >Category: ports >Synopsis: Update port: japanese/zangband (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: Fri Sep 22 04:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Makoto YAMAKURA >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: o Imported some variables from master port. Please commit this PR and master port's PR at the same time. Thanks. >How-To-Repeat: >Fix: diff -x work -x *~ -x *gz -x *.orig -ruN zangband-master/Makefile zangband/Makefile --- zangband-master/Makefile Thu Aug 10 02:37:47 2000 +++ zangband/Makefile Wed Sep 20 12:30:33 2000 @@ -16,5 +16,10 @@ DESCR= ${.CURDIR}/pkg/DESCR JAPANESE= yes +JA_MASTER_SITE= http://www.geocities.co.jp/SiliconValley-SanJose/9606/zg/ +ANGBANDLIB?= lib/jzangband +ANGBANDBIN?= bin/jzangband +JA_PLIST= PLIST.ja +MAKE_ARGS+= JAPANESE_CFLAGS="-DJP -DEUC" .include "${MASTERDIR}/Makefile" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 15D0137B43C for ; Sat, 23 Sep 2000 17:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95268; Sat, 23 Sep 2000 17:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:03 -0700 (PDT) Message-Id: <200009240020.RAA95268@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: sam@inf.enst.fr Subject: ports/21467: New version of net/adasockets Reply-To: sam@inf.enst.fr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21467; it has been noted by GNATS. From: sam@inf.enst.fr To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21467: New version of net/adasockets Date: Fri, 22 Sep 2000 09:12:06 +0300 (EEST) >Number: 21467 >Category: ports >Synopsis: New version of net/adasockets >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 Sep 21 23:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Samuel Tardieu >Release: FreeBSD 4.1-STABLE i386 >Organization: TELECOM Paris >Environment: >Description: A new upstream version is available. >How-To-Repeat: >Fix: --- Makefile.orig Fri Sep 22 09:06:56 2000 +++ Makefile Fri Sep 22 09:07:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= adasockets -PORTVERSION= 0.1.8 +PORTVERSION= 0.1.10 CATEGORIES= net MASTER_SITES= http://www.infres.enst.fr/ANC/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 3C85537B443 for ; Sat, 23 Sep 2000 17:20:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95284; Sat, 23 Sep 2000 17:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:05 -0700 (PDT) Message-Id: <200009240020.RAA95284@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: ports/21473: update devel/SN to 4.5.2, not from 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/21473; it has been noted by GNATS. From: Trevor Johnson To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21473: update devel/SN to 4.5.2, not from maintainer Date: Fri, 22 Sep 2000 09:15:49 -0400 (EDT) >Number: 21473 >Category: ports >Synopsis: update devel/SN to 4.5.2, not 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: Fri Sep 22 06:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: - bump version - drop USE_BZIP2 because only gzipped distfile is now available - add more mirror sites (checked in July) - factor out common subdirectory on sites - accommodate new configure script's requirement for a parallel directory - sort PLIST - add missing files to PLIST (an empty /usr/local/SN/ is still left behind after deinstallation--could be taken care of by a pkg/DEINSTALL) - support NOPORTDOCS - in COMMENT, correct spelling of "Red Hat" - mention Python in DESCR - add do-install target rather than using the one in the program's top-level Makefile, for more control over what gets installed - omit grep, egrep, and fgrep, because they are present in the base system on FreeBSD - omit Tk and Tcl man pages, because they are available by installing those ports and are difficult to use from the SN port's non-standard directories files changed: Makefile files/md5 pkg/COMMENT pkg/DESCR pkg/PLIST >How-To-Repeat: N/A >Fix: http://jpj.net/~trevor/freebsd/ports/sn452.diff.gz >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 570B837B424 for ; Sat, 23 Sep 2000 17:20:06 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95295; Sat, 23 Sep 2000 17:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:06 -0700 (PDT) Message-Id: <200009240020.RAA95295@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dpelleg+bmsync@cs.cmu.edu Subject: ports/21488: New port: bmsync, a bookmark converter Reply-To: dpelleg+bmsync@cs.cmu.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21488; it has been noted by GNATS. From: dpelleg+bmsync@cs.cmu.edu To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21488: New port: bmsync, a bookmark converter Date: Fri, 22 Sep 2000 21:04:09 -0400 (EDT) >Number: 21488 >Category: ports >Synopsis: New port: bmsync, a bookmark converter >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 Sep 22 18:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dan Pelleg >Release: FreeBSD 4.1-RELEASE i386 >Organization: Carnegie Mellon University >Environment: >Description: bmsync is a bookmark converter and synchronizer for NN, KDE and MSIE bookmark collections. >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: # # bmsync # bmsync/pkg # bmsync/pkg/COMMENT # bmsync/pkg/PLIST # bmsync/pkg/DESCR # bmsync/patches # bmsync/patches/patch-aa # bmsync/files # bmsync/files/md5 # bmsync/Makefile # echo c - bmsync mkdir -p bmsync > /dev/null 2>&1 echo c - bmsync/pkg mkdir -p bmsync/pkg > /dev/null 2>&1 echo x - bmsync/pkg/COMMENT sed 's/^X//' >bmsync/pkg/COMMENT << 'END-of-bmsync/pkg/COMMENT' XA bookmark converter and synchronizer for NN, KDE and MSIE END-of-bmsync/pkg/COMMENT echo x - bmsync/pkg/PLIST sed 's/^X//' >bmsync/pkg/PLIST << 'END-of-bmsync/pkg/PLIST' Xbin/bmsync Xbin/bmcopy Xbin/bmmerge END-of-bmsync/pkg/PLIST echo x - bmsync/pkg/DESCR sed 's/^X//' >bmsync/pkg/DESCR << 'END-of-bmsync/pkg/DESCR' Xbmsync reads bookmarks from any number of so called bookmark collections, Xchecks for conflicts among the bookmarks, and writes them back to the Xbookmark collections. It supports Netscape, KDE, and MSIE bookmarks. X X- Dan Pelleg X Xdpelleg+bmsync@cs.cmu.edu END-of-bmsync/pkg/DESCR echo c - bmsync/patches mkdir -p bmsync/patches > /dev/null 2>&1 echo x - bmsync/patches/patch-aa sed 's/^X//' >bmsync/patches/patch-aa << 'END-of-bmsync/patches/patch-aa' X--- Makefile.orig Fri Sep 22 11:34:42 2000 X+++ Makefile Fri Sep 22 16:55:27 2000 X@@ -15,16 +15,16 @@ X all: bmsync.1 bmsync.html X X bmsync.html: bmsync X- pod2html $< >$@ X+ pod2html $> >$@ X X bmsync.1: bmsync X- pod2man --center=" " --release=$(VERSION) $< >$@ X+ pod2man --center=" " --release=$(VERSION) $> >$@ X X install: all X- install -o root -g root -m 755 bmsync $(PREFIX)/bin X+ install -c -o root -g wheel -m 755 bmsync $(PREFIX)/bin X ln -s bmsync $(PREFIX)/bin/bmcopy X ln -s bmsync $(PREFIX)/bin/bmmerge X- install -o root -g root -m 644 bmsync.1 $(PREFIX)/man/man1 X+ install -o root -g wheel -m 644 bmsync.1 $(PREFIX)/man/man1 X X list-install: X @list='$(INSTALLED_FILES)'; \ END-of-bmsync/patches/patch-aa echo c - bmsync/files mkdir -p bmsync/files > /dev/null 2>&1 echo x - bmsync/files/md5 sed 's/^X//' >bmsync/files/md5 << 'END-of-bmsync/files/md5' XMD5 (bmsync-0.2.0.tar.gz) = a84b5cdb3fb43a90814bdd42336a8edd END-of-bmsync/files/md5 echo x - bmsync/Makefile sed 's/^X//' >bmsync/Makefile << 'END-of-bmsync/Makefile' X# New ports collection makefile for: bmsync X# Date created: 22 Sep 2000 X# Whom: Dan Pelleg X# X# $FreeBSD$ X# X XPORTNAME= bmsync XPORTVERSION= 0.2.0 XCATEGORIES= www XMASTER_SITES= http://www.cs.cmu.edu/~dpelleg/sw/ XDISTNAME= ${PORTNAME}-${PORTVERSION} X XMAINTAINER= dpelleg+bmsync@cs.cmu.edu X XUSE_PERL5= yes XWRKSRC= ${WRKDIR}/${PKGNAME} X XMAN1 = bmsync.1 XMAN_COMPRESSED= no X Xpre-install: X @${PERL} -pi -e "s:/usr/bin/perl:${PERL}:g" ${WRKSRC}/bmsync X X.include END-of-bmsync/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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 6A0C537B449 for ; Sat, 23 Sep 2000 17:20:07 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95300; Sat, 23 Sep 2000 17:20:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:07 -0700 (PDT) Message-Id: <200009240020.RAA95300@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Makoto MATSUSHITA Subject: ports/21500: MAINTAINER update: ports/emulators/linux-vmware-toolbox (use USE_LINUX) Reply-To: Makoto MATSUSHITA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21500; it has been noted by GNATS. From: Makoto MATSUSHITA To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21500: MAINTAINER update: ports/emulators/linux-vmware-toolbox (use USE_LINUX) Date: Sat, 23 Sep 2000 20:22:49 +0900 >Number: 21500 >Category: ports >Synopsis: MAINTAINER update: ports/emulators/linux-vmware-toolbox (use USE_LINUX) >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 Sep 23 04:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Makoto MATSUSHITA >Release: FreeBSD 5.0-CURRENT i386 >Organization: Japan FreeBSD Users' Group >Environment: 5.0-CURRENT as of Sep/20/2000 >Description: ports/emulators/linux-vmware-toolbox does not use USE_LINUX. This may causes some problems if default Linux libc version is changed. >How-To-Repeat: N/A >Fix: Remove RUN_DEPENDS and LINUX_DIR, add USE_LINUX. Index: Makefile =================================================================== RCS file: /usr/site/FreeBSD/ncvs/ports/emulators/linux-vmware-toolbox/Makefile,v retrieving revision 1.2 diff -c -r1.2 Makefile *** Makefile 2000/08/27 04:26:41 1.2 --- Makefile 2000/09/23 11:17:19 *************** *** 14,22 **** MAINTAINER= matusita@jp.FreeBSD.org - RUN_DEPENDS= ${LINUX_DIR}/lib/libc.so.6:${PORTSDIR}/emulators/linux_base - ONLY_FOR_ARCHS= i386 USE_X_PREFIX= yes NO_BUILD= yes --- 14,21 ---- MAINTAINER= matusita@jp.FreeBSD.org ONLY_FOR_ARCHS= i386 + USE_LINUX= yes USE_X_PREFIX= yes NO_BUILD= yes *************** *** 25,31 **** .include LINUX_FLP?= ${DISTDIR}/linux.flp - LINUX_DIR?= /compat/linux MOUNT_PT?= ${WRKDIR}/mnt .if exists(${LINUX_FLP}) MOUNT_DEV?= vn0 --- 24,29 ---- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 7C16F37B505 for ; Sat, 23 Sep 2000 17:20:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95309; Sat, 23 Sep 2000 17:20:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:08 -0700 (PDT) Message-Id: <200009240020.RAA95309@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: nakaji@jp.freebsd.org Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Reply-To: nakaji@jp.freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21462; it has been noted by GNATS. From: nakaji@jp.freebsd.org To: gnats-admin@FreeBSD.ORG, freebsd-gnats-submit@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21462: Port update: japanese/samba from 1.2a to 1.3 Date: 22 Sep 2000 09:54:43 +0900 >>>>> In <200009220030.RAA12584@freefall.freebsd.org> >>>>> nakaji@jp.freebsd.org wrote: > Oops, I have not checked the PLIST. Please don't commit. I changed pkg/PLIST and 'make install' and 'make deinstall' are successful. The patch is placed at the same URL: http://www.rc.tutrp.tut.ac.jp/~nakaji/install/FreeBSD/ref/ja-samba.diff Please check. Thanks. -- NAKAJI Hiroyuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 DAD3E37B507 for ; Sat, 23 Sep 2000 17:20:10 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95325; Sat, 23 Sep 2000 17:20:10 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:10 -0700 (PDT) Message-Id: <200009240020.RAA95325@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: sluggo@unknown.nu Subject: ports/21485: Update: devel/camlp4 Reply-To: sluggo@unknown.nu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21485; it has been noted by GNATS. From: sluggo@unknown.nu To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21485: Update: devel/camlp4 Date: Fri, 22 Sep 2000 15:51:39 -0500 (CDT) >Number: 21485 >Category: ports >Synopsis: Update: devel/camlp4 >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 Sep 22 14:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Kim Scarborough >Release: FreeBSD 3.5-RELEASE i386 >Organization: Quality Quackeries >Environment: N/A >Description: An update to the camlp4 port to version 3.00. A new file has been added: patches/patch-ab. Please commit this as soon as possible, as the port has been broken since the upgrade of lang/ocaml. I am the maintainer of this port. >How-To-Repeat: N/A >Fix: diff -ruN camlp4.orig/Makefile camlp4/Makefile --- camlp4.orig/Makefile Fri Sep 22 05:50:50 2000 +++ camlp4/Makefile Fri Sep 22 15:33:55 2000 @@ -4,20 +4,15 @@ # # $FreeBSD: ports/devel/camlp4/Makefile,v 1.3 2000/09/22 10:23:24 kris Exp $ # -# This is not the current version, but the version needs to -# be <= the version of ocaml, which hasn't been updated. Once -# the ocaml maintainer updates it, I'll update this. PORTNAME= camlp4 -PORTVERSION= 2.04 +PORTVERSION= 3.00 CATEGORIES= devel -MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/cristal/camlp4/OLD/2.04/ \ +MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/cristal/camlp4/ \ http://www.unknown.nu/ports/ MAINTAINER= user@unknown.nu -BROKEN= "Does not compile" - BUILD_DEPENDS= ocamlc.opt:${PORTSDIR}/lang/ocaml HAS_CONFIGURE= yes @@ -27,8 +22,8 @@ ALL_TARGET= world bootstrap opt MAN1= camlp4.1 -MANLINKS= camlp4.1 camlp4o.1 camlp4.1 camlp4r.1 camlp4.1 mkcamlp4.1 \ - camlp4.1 ocpp.1 -MANCOMPRESSED= no +MLINKS= camlp4.1 camlp4o.1 camlp4.1 camlp4r.1 camlp4.1 mkcamlp4.1 \ + camlp4.1 ocpp.1 camlp4.1 camlp4o.1 camlp4.1 camlp4r.opt.1 \ + camlp4.1 camlp4o.opt.1 .include diff -ruN camlp4.orig/files/md5 camlp4/files/md5 --- camlp4.orig/files/md5 Tue Aug 1 06:58:29 2000 +++ camlp4/files/md5 Fri Sep 22 14:07:42 2000 @@ -1 +1 @@ -MD5 (camlp4-2.04.tar.gz) = 4998bcc33f421f548e0d98d70d3fa9d9 +MD5 (camlp4-3.00.tar.gz) = 35d918bd70a7d325787346db33733973 diff -ruN camlp4.orig/patches/patch-ab camlp4/patches/patch-ab --- camlp4.orig/patches/patch-ab Wed Dec 31 18:00:00 1969 +++ camlp4/patches/patch-ab Fri Sep 22 15:06:31 2000 @@ -0,0 +1,19 @@ +*** Makefile.orig Tue Apr 18 10:44:11 2000 +--- Makefile Fri Sep 22 15:04:48 2000 +*************** +*** 11,17 **** + set -e; for i in $(DIRS); do cd $$i; $(MAKE) all; cd ..; done + + opt: +! set -e; for i in $(OPTDIRS); do cd $$i; $(MAKE) opt; cd ..; done + + clean_hot: + for i in $(DIRS); do (cd $$i; $(MAKE) clean); done +--- 11,17 ---- + set -e; for i in $(DIRS); do cd $$i; $(MAKE) all; cd ..; done + + opt: +! cd lib; $(MAKE) opt + + clean_hot: + for i in $(DIRS); do (cd $$i; $(MAKE) clean); done diff -ruN camlp4.orig/pkg/PLIST camlp4/pkg/PLIST --- camlp4.orig/pkg/PLIST Sat Sep 16 17:12:33 2000 +++ camlp4/pkg/PLIST Fri Sep 22 15:38:50 2000 @@ -62,4 +62,5 @@ lib/camlp4/plexer.cmx lib/camlp4/stdpp.cmx lib/camlp4/token.cmx +lib/camlp4/pa_olabl.cmo @dirrm lib/camlp4 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:20: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 A3E7537B43E for ; Sat, 23 Sep 2000 17:20:09 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95318; Sat, 23 Sep 2000 17:20:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:09 -0700 (PDT) Message-Id: <200009240020.RAA95318@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: ports/21474: new port x11/dynamag Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21474; it has been noted by GNATS. From: Trevor Johnson To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21474: new port x11/dynamag Date: Fri, 22 Sep 2000 10:47:40 -0400 (EDT) >Number: 21474 >Category: ports >Synopsis: new port x11/dynamag >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 Sep 22 07:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Trevor Johnson >Release: 4.1-STABLE i386 >Organization: myself >Environment: only tested under FreeBSD ws99.invalid 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Jul 29 02:55:41 UTC 2000 root@ws99.invalid:/usr/obj/usr/src/sys/TREVOR41A i386 >Description: magnifying utility which updates continuously from the source: This is a major rewrite of the xmag program distributed by MIT with X11R5. It features three modes of magnification. The magnifier can be made to follow the mouse pointer around, displaying a magnified image either in a window that is "sticky" to the pointer, or in a stationary window. The magnifier can also be `anchored' to continually magnify a fixed area of the screen. The sticky window no longer works. >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: # # dynamag # dynamag/files # dynamag/files/md5 # dynamag/pkg # dynamag/pkg/COMMENT # dynamag/pkg/DESCR # dynamag/pkg/PLIST # dynamag/Makefile # echo c - dynamag mkdir -p dynamag > /dev/null 2>&1 echo c - dynamag/files mkdir -p dynamag/files > /dev/null 2>&1 echo x - dynamag/files/md5 sed 's/^X//' >dynamag/files/md5 << 'END-of-dynamag/files/md5' XMD5 (unwindows.tar.Z) = 2cce5fac26edd6a7cac21b883d5c92af END-of-dynamag/files/md5 echo c - dynamag/pkg mkdir -p dynamag/pkg > /dev/null 2>&1 echo x - dynamag/pkg/COMMENT sed 's/^X//' >dynamag/pkg/COMMENT << 'END-of-dynamag/pkg/COMMENT' XMagnifying utility which updates continuously END-of-dynamag/pkg/COMMENT echo x - dynamag/pkg/DESCR sed 's/^X//' >dynamag/pkg/DESCR << 'END-of-dynamag/pkg/DESCR' Xfrom the source: X X This is a major rewrite of the xmag program distributed by MIT with X X11R5. It features three modes of magnification. The magnifier X can be made to follow the mouse pointer around, displaying a X magnified image either in a window that is "sticky" to the pointer, X or in a stationary window. The magnifier can also be `anchored' X to continually magnify a fixed area of the screen. X XThe sticky window no longer works. X XWWW: http://trace.wisc.edu/world/computer_access/unix/unixshar.html X XTrevor Johnson Xtrevor@jpj.net END-of-dynamag/pkg/DESCR echo x - dynamag/pkg/PLIST sed 's/^X//' >dynamag/pkg/PLIST << 'END-of-dynamag/pkg/PLIST' Xbin/dynamag END-of-dynamag/pkg/PLIST echo x - dynamag/Makefile sed 's/^X//' >dynamag/Makefile << 'END-of-dynamag/Makefile' X# New ports collection makefile for: dynamag X# Date created: 2000-09-22 X# Whom: Trevor Johnson X# X# $FreeBSD$ X# X XPORTNAME= dynamag XPORTVERSION= 1.1 XCATEGORIES= x11 XMASTER_SITES= ftp://trace.wisc.edu/pub/access_utils/unix/ XDISTNAME= unwindows XEXTRACT_SUFX= .tar.Z X XMAINTAINER= trevor@jpj.net X XUSE_IMAKE= yes XWRKSRC= ${WRKDIR}/${PORTNAME} X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/dynamag ${PREFIX}/bin X X.include END-of-dynamag/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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:21: 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 9B5E037B422 for ; Sat, 23 Sep 2000 17:20:12 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95343; Sat, 23 Sep 2000 17:20:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:12 -0700 (PDT) Message-Id: <200009240020.RAA95343@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: odip@bionet.nsc.ru Subject: ports/21498: [patch] can't building curl-7.2.1 with openssl Reply-To: odip@bionet.nsc.ru Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21498; it has been noted by GNATS. From: odip@bionet.nsc.ru To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21498: [patch] can't building curl-7.2.1 with openssl Date: Sat, 23 Sep 2000 03:37:06 -0700 (PDT) >Number: 21498 >Category: ports >Synopsis: [patch] can't building curl-7.2.1 with openssl >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 23 03:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry Grigorovich >Release: 3.5.1-RELEASE >Organization: ICiG >Environment: FreeBSD cyclop.bionet.nsc.ru 3.5.1-RELEASE FreeBSD 3.5.1-RELEASE #0: Thu Jul 2003:22:42 GMT 2000 jkh@monster.osd.bsdi.com:/usr/src/sys/compile/GENERIC i386 >Description: When building new curl port ( 7.2.1 ) with OPENSSL we are get error messages on configure stage When building same curl port without OPENSSL all it ok I found problem found in following lines in file /usr/ports/ftp/curl/Makefile ====================== .include .if defined(WITH_SSL) USE_OPENSSL= YES CONFIGURE_ENV+= CPPFLAGS='-I${OPENSSLINC} -I${OPENSSLINC}/openssl' \ LDFLAGS='-L${OPENSSLLIB}' .endif ====================== If we define WITH_SSL variable, then CONFIGURE_ENV are expanded namely: CPPFLAGS='-I -I/openssl' LDFLAGS='-L' (!!!) That is variables OPENSSLINC and OPENSSLLIB are empty or undefined Solution: Move line '.include ' lower then .if/.endif Thus variables OPENSSLINC & OPENSSLLIB will be defined correctly >How-To-Repeat: cd /usr/ports/ftp/curl WITH_SSL=YES make configure After this we are get error messages >Fix: Apply following patch to file /usr/ports/ftp/curl/Makefile Clean and rebuild port of curl --- Makefile.orig Sat Sep 23 14:04:35 2000 +++ Makefile Sat Sep 23 17:10:11 2000 @@ -26,13 +26,13 @@ MAKE_ENV= SHLIB_VER="${SHLIB_VER}" PLIST_SUB= SHLIB_VER="${SHLIB_VER}" -.include - .if defined(WITH_SSL) USE_OPENSSL= YES CONFIGURE_ENV+= CPPFLAGS='-I${OPENSSLINC} -I${OPENSSLINC}/openssl' \ LDFLAGS='-L${OPENSSLLIB}' .endif + +.include GNU_CONFIGURE= yes USE_AUTOMAKE= yes >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:21: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 CC50137B43F for ; Sat, 23 Sep 2000 17:20:13 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95348; Sat, 23 Sep 2000 17:20:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:13 -0700 (PDT) Message-Id: <200009240020.RAA95348@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: gmarco@giovannelli.it Subject: ports/21481: Update port math/abs Reply-To: gmarco@giovannelli.it Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21481; it has been noted by GNATS. From: gmarco@giovannelli.it To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21481: Update port math/abs Date: Fri, 22 Sep 2000 11:59:04 -0700 (PDT) >Number: 21481 >Category: ports >Synopsis: Update port math/abs >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 Sep 22 12:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gianmarco Giovannelli >Release: FreeBSD 4.1 >Organization: Private >Environment: FreeBSD gmarco.ablia.org 4.1-STABLE FreeBSD 4.1-STABLE #0: Mon Sep 18 20:54:39 CEST 2000 gmarco@gmarco.ablia.org:/usr/obj/usr/src/sys/GMARCO i386 >Description: This patch clean the port of math/abs. >How-To-Repeat: >Fix: begin 644 abs.patch.uu M9&EF9B`M2`Q.3DY"BLC(%=H;VTZ"0D)9VUAU!/4E1615)324].?0H@"B!- M04E.5$%)3D52/0EG;6%R8V]`9VEO=F%N;F5L;&DN:70*(`HK5U)+4U)#/0D) M)'M74DM$25)]+R1[1$E35$Y!345]+W-R8PH@55-%7UA,24(]"7EE65S"BU74DM34D,]("`@("`@("`@)'M74DM$25)]+V%BTE.4U1!3$Q?4%)/1U)!37T@ M)'M74DM34D-]+V%BU!2149)6'TO8FEN"B`*('!OT5#2$]](")4:&5R92!AT5#2$]]("(D>U=22T1) M4GTO86)S+7-R8RTP+C9A+T5X86UP;&5S(@HK"4`D>T5#2$]]("(D>U=22U-2 M0WTO17AA;7!L97,B"B`)0"1[14-(3WT@(B(*(`E`)'M%0TA/?2`B(@H@"F1I M9F8@+7)U3B`O=7-R+W!O'1&:65L9"TQ+C`@+4DO=7-R M+V-O;G1R:6(O6#$Q4C8O:6YC;'5D90HM*T-&3$%'4PD)/2`M22XO<&EX;6%P M&UA<',@+4DN+U1E>'1&:65L9"TQ+C`@+4DD*%@Q M,4)!4T4I+VEN8VQU9&4*("`*("`C(R,@1F]R=')A;B!#;VUP:6QE<@H@($9# M"0D]('AL9B`**R!&1DQ!1U,)"3T@+7%L86YG;'9L/3DP97AT"BL@"BL@(R,C M($QI;FME'0@+6Q8<&T@+B]4 M97AT1FEE;&0M,2XP+RHN;PHK*TQ)0E,)"3T@+4PD*%@Q,4)!4T4I+VQI8B`M M;%AA=R`M;%@Q,2`M;&T@+6Q8="`M;%AM=2`M;%AE>'0@+6Q8<&T@+B]497AT M1FEE;&0M,2XP+RHN;PH@(`H@(`H@+5-50D1)4E,)"3T@"6-D(%AP;3L@;6%K M93L@8V0@+BXO5&5X=$9I96QD+3$N,#L@;6%K93L@8V0@+BX*+2M354)$25)3 M"0D](`EC9"`N+U1E>'1&:65L9"TQ+C`[(&UA:V4[(&-D("XN"BLK4U5"1$E2 M4PD)/2`)8V0@+B]497AT1FEE;&0M,2XP.R`D*$U!2T4I.R!C9"`N+@H@(`H@ M(",C(R,C(R,C(R,C(R,C(R,C(R,C(R,C(PH@(",C(R!!9&1I=&EO;F%L(%1A M'1&:65L9"TQ+C`[(&UA:V4[ M(&-D("XN"BTK"0EC9"`N+U1E>'1&:65L9"TQ+C`[(&UA:V4[(&-D("XN"BLK M"0EC9"`N+U1E>'1&:65L9"TQ+C`[("0H34%+12D[(&-D("XN"B`@"0E`96-H M;R`B3&EN:VEN9R`D*%!23T=204TI("XN+B(*("`)"4`D*$Q$*2`D*$Q$1DQ! M1U,I("0H3T)*4RD@)"A,24)3*2`M;R`D*%!23T=204TI"B`@"0E`96-H;R`B M9&]N92(*9&EF9B`MRelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:21: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 EB85237B446 for ; Sat, 23 Sep 2000 17:20:14 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95353; Sat, 23 Sep 2000 17:20:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:14 -0700 (PDT) Message-Id: <200009240020.RAA95353@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: mux@qualys.com Subject: ports/21475: Port broken: xlockmore 4.17.2 Reply-To: mux@qualys.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21475; it has been noted by GNATS. From: mux@qualys.com To: freebsd-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21475: Port broken: xlockmore 4.17.2 Date: Fri, 22 Sep 2000 08:26:07 -0700 (PDT) >Number: 21475 >Category: ports >Synopsis: Port broken: xlockmore 4.17.2 >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 Sep 22 08:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Maxime Henrion >Release: 4.1-STABLE >Organization: Qualys Technologies >Environment: FreeBSD cybercable.fr 4.1-STABLE FreeBSD 4.1-STABLE #0: Thu Aug 31 20:24:49 CEST 2000 root@cybercable.fr:/usr/src/sys/compile/NEBULA i386 >Description: The xlockmore port seems to be broken since version 4.17.2. These are the errors I'm getting : cc -c -o ./resource.o -DHAVE_CONFIG_H -DDEF_FILESEARCHPATH=\"/usr/X11R6/lib/X11/app-defaults/%N%C%S:/usr/X11R6/lib/X11/app-defaults/%N%S\" -I. -I.. -I../.. -I/usr/X11R6/include -I/usr/X11R6/include/X11 -I/usr/X11R6/include -O -pipe ./resource.c In file included from ./resource.c:69: vis.h:30: GL/gl.h: No such file or directory vis.h:31: GL/glx.h: No such file or directory In file included from ./resource.c:69: vis.h:36: syntax error before `*' vis.h:36: warning: data definition has no type or storage class *** Error code 1 >How-To-Repeat: cd /usr/ports/x11/xlockmore && make >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:21: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 67AB837B50E for ; Sat, 23 Sep 2000 17:20:18 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95374; Sat, 23 Sep 2000 17:20:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:18 -0700 (PDT) Message-Id: <200009240020.RAA95374@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: marka@nominum.com Subject: ports/21465: nmh-1.0.4: multiple simultaneous "inc"s step on each other Reply-To: marka@nominum.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21465; it has been noted by GNATS. From: marka@nominum.com To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21465: nmh-1.0.4: multiple simultaneous "inc"s step on each other Date: Fri, 22 Sep 2000 12:29:46 +1100 (EST) >Number: 21465 >Category: ports >Synopsis: nmh-1.0.4: multiple simultaneous "inc"s step on each other >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 21 18:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mark Andrews >Release: FreeBSD 4.1-STABLE i386 >Organization: Nominum >Environment: nmh-1.0.4 A cleaned up MH mailer suite >Description: Mail is lost if two "inc"s are running at the same time. This is easy to do in a windowed evirionment specially when you have multiple mailboxes. >How-To-Repeat: inc -host foo enter password and background inc -file ... >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:21: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 80BF337B53A for ; Sat, 23 Sep 2000 17:20:19 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95383; Sat, 23 Sep 2000 17:20:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:19 -0700 (PDT) Message-Id: <200009240020.RAA95383@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: esk@ira.uka.de Subject: ports/21477: New port: xmms-crossfade Reply-To: esk@ira.uka.de Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21477; it has been noted by GNATS. From: esk@ira.uka.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21477: New port: xmms-crossfade Date: Fri, 22 Sep 2000 17:43:11 +0200 (CEST) >Number: 21477 >Category: ports >Synopsis: New port: xmms-crossfade >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 Sep 22 08:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 4.1-STABLE i386 >Organization: Universität Karlsruhe >Environment: >Description: Xmms-crossfade is an XMMS Output plugin that can be used for crossfading between different songs played by XMMS. >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: # # xmms-crossfade # xmms-crossfade/files # xmms-crossfade/files/md5 # xmms-crossfade/pkg # xmms-crossfade/pkg/COMMENT # xmms-crossfade/pkg/DESCR # xmms-crossfade/pkg/PLIST # xmms-crossfade/Makefile # echo c - xmms-crossfade mkdir -p xmms-crossfade > /dev/null 2>&1 echo c - xmms-crossfade/files mkdir -p xmms-crossfade/files > /dev/null 2>&1 echo x - xmms-crossfade/files/md5 sed 's/^X//' >xmms-crossfade/files/md5 << 'END-of-xmms-crossfade/files/md5' XMD5 (xmms-crossfade-0.1.1.tar.gz) = d6883f822e3aab4239aa3ba0b481b671 END-of-xmms-crossfade/files/md5 echo c - xmms-crossfade/pkg mkdir -p xmms-crossfade/pkg > /dev/null 2>&1 echo x - xmms-crossfade/pkg/COMMENT sed 's/^X//' >xmms-crossfade/pkg/COMMENT << 'END-of-xmms-crossfade/pkg/COMMENT' XXMMS Output plugin for crossfading between songs. END-of-xmms-crossfade/pkg/COMMENT echo x - xmms-crossfade/pkg/DESCR sed 's/^X//' >xmms-crossfade/pkg/DESCR << 'END-of-xmms-crossfade/pkg/DESCR' XAn XMMS Output plugin that allows you to crossfade between different tunes. X XWWW: http://www.netcologne.de/~nc-eisenlpe2/xmms-crossfade/ END-of-xmms-crossfade/pkg/DESCR echo x - xmms-crossfade/pkg/PLIST sed 's/^X//' >xmms-crossfade/pkg/PLIST << 'END-of-xmms-crossfade/pkg/PLIST' Xlib/xmms/Output/libcrossfade.so END-of-xmms-crossfade/pkg/PLIST echo x - xmms-crossfade/Makefile sed 's/^X//' >xmms-crossfade/Makefile << 'END-of-xmms-crossfade/Makefile' X# New ports collection makefile for: xmms-crossfade X# Date created: 21 September 2000 X# Whom: Espen Skoglund X# X# $FreeBSD:$ X# X XPORTNAME= xmms-crossfade XPORTVERSION= 0.1.1 XCATEGORIES= audio XMASTER_SITES= http://www.netcologne.de/~nc-eisenlpe2/xmms-crossfade/ \ X ftp://ftp.falsehope.com/pub/xmms-crossfade/ X XMAINTAINER= esk@ira.uka.de X XLIB_DEPENDS= xmms.1:${PORTSDIR}/audio/xmms X XUSE_X_PREFIX= yes XUSE_LIBTOOL= yes XUSE_GMAKE= yes X XGTK_CONFIG?= ${X11BASE}/bin/gtk12-config XGLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config X XCONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ X GTK_CONFIG="${GTK_CONFIG}" X Xpost-configure: X ${PERL} -pi.bak -e 's:linkopts=\Z:linkopts=-nostartfiles:' \ X ${WRKSRC}/libtool X X.include END-of-xmms-crossfade/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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:21: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 16FCA37B506 for ; Sat, 23 Sep 2000 17:20:16 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA95360; Sat, 23 Sep 2000 17:20:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:20:16 -0700 (PDT) Message-Id: <200009240020.RAA95360@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Aaron VonderHaar Subject: ports/21482: New port: games/gnurobots Reply-To: Aaron VonderHaar Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21482; it has been noted by GNATS. From: Aaron VonderHaar To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21482: New port: games/gnurobots Date: Fri, 22 Sep 2000 15:03:55 -0400 (EDT) >Number: 21482 >Category: ports >Synopsis: New port: games/gnurobots >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 Sep 22 12:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Aaron VonderHaar >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: current ports tree >Description: GNU Robots is a game/diversion where you construct a program for a little robot, then set him loose and watch him explore a world on his own. The robot program is written in Scheme, and is implemented using GNU Guile. Also, (as I'm fairly new to the porting world), please tell me whether my pkg/MESSAGE is appropriate or unnecessary. And whether pre-patch: is the kosher place to move files around (that is, files that must be moved before they will compile properly), or should I make a shell script and put in patches/ ? >How-To-Repeat: Install the port :) >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: # # gnurobots # gnurobots/Makefile # gnurobots/pkg # gnurobots/pkg/COMMENT # gnurobots/pkg/PLIST # gnurobots/pkg/DESCR # gnurobots/pkg/MESSAGE # gnurobots/files # gnurobots/files/md5 # gnurobots/patches # gnurobots/patches/patch-aa # echo c - gnurobots mkdir -p gnurobots > /dev/null 2>&1 echo x - gnurobots/Makefile sed 's/^X//' >gnurobots/Makefile << 'END-of-gnurobots/Makefile' X# New ports collection makefile for: gnurobots X# Date created: 22 Sept 2000 X# Whom: Aaron VonderHaar X# X# $FreeBSD$ X# X XPORTNAME= gnurobots XPORTVERSION= 1.0D XCATEGORIES= games XMASTER_SITES= ${MASTER_SITE_GNU} XMASTER_SITE_SUBDIR= gnurobots X XMAINTAINER= avh4@usa.net X XLIB_DEPENDS= guile.9:${PORTSDIR}/lang/guile X XGNU_CONFIGURE= yes X Xpre-patch: X ${CP} ${WRKSRC}/getopt/getopt.h ${WRKSRC}/include X ${CP} ${WRKSRC}/getopt/getopt.c ${WRKSRC}/src X ${CP} ${WRKSRC}/getopt/getopt1.c ${WRKSRC}/src X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/src/robots ${PREFIX}/bin/gnurobots X ${INSTALL_PROGRAM} ${WRKSRC}/src/robots_logfile ${PREFIX}/bin/gnurobots_logfile X ${INSTALL_PROGRAM} ${WRKSRC}/src/xrobots ${PREFIX}/bin/xgnurobots X ${MKDIR} ${PREFIX}/share/gnurobots X ${MKDIR} ${PREFIX}/share/gnurobots/maps X ${INSTALL_DATA} ${WRKSRC}/maps/* ${PREFIX}/share/gnurobots/maps/ X ${MKDIR} ${PREFIX}/share/gnurobots/scheme X ${INSTALL_DATA} ${WRKSRC}/scheme/* ${PREFIX}/share/gnurobots/scheme/ X ${MKDIR} ${PREFIX}/share/doc/gnurobots X ${INSTALL_MAN} ${WRKSRC}/doc/* ${PREFIX}/share/doc/gnurobots/ X Xpost-install: X ${CAT} ${PKGDIR}/MESSAGE X X.include END-of-gnurobots/Makefile echo c - gnurobots/pkg mkdir -p gnurobots/pkg > /dev/null 2>&1 echo x - gnurobots/pkg/COMMENT sed 's/^X//' >gnurobots/pkg/COMMENT << 'END-of-gnurobots/pkg/COMMENT' XGNU diversion wherein Scheme-coded robots explore a world END-of-gnurobots/pkg/COMMENT echo x - gnurobots/pkg/PLIST sed 's/^X//' >gnurobots/pkg/PLIST << 'END-of-gnurobots/pkg/PLIST' Xbin/gnurobots Xbin/gnurobots_logfile Xbin/xgnurobots Xshare/gnurobots/maps/maze.map Xshare/gnurobots/maps/pattern.map Xshare/gnurobots/maps/small.map Xshare/gnurobots/scheme/beep.scm Xshare/gnurobots/scheme/greedy.scm Xshare/gnurobots/scheme/mapper.scm Xshare/gnurobots/scheme/simple.scm Xshare/gnurobots/scheme/stop.scm Xshare/gnurobots/scheme/zap.scm Xshare/doc/gnurobots/BUGS Xshare/doc/gnurobots/COPYING Xshare/doc/gnurobots/INSTALL Xshare/doc/gnurobots/NEWS Xshare/doc/gnurobots/README Xshare/doc/gnurobots/Robots-HOWTO Xshare/doc/gnurobots/contrib Xshare/doc/gnurobots/guile-proj.scm X@dirrm share/gnurobots/scheme X@dirrm share/gnurobots/maps X@dirrm share/gnurobots X@dirrm share/doc/gnurobots END-of-gnurobots/pkg/PLIST echo x - gnurobots/pkg/DESCR sed 's/^X//' >gnurobots/pkg/DESCR << 'END-of-gnurobots/pkg/DESCR' XGNU Robots is a game/diversion where you construct a program for a Xlittle robot, then set him loose and watch him explore a world on his Xown. The robot program is written in Scheme, and is implemented using XGNU Guile. --from GNU robots README X XWWW: http://www.gnu.org/software/robots/ X X-Aaron VonderHaar X avh4@usa.net END-of-gnurobots/pkg/DESCR echo x - gnurobots/pkg/MESSAGE sed 's/^X//' >gnurobots/pkg/MESSAGE << 'END-of-gnurobots/pkg/MESSAGE' XWhere to find things X - A place to start: $PREFIX/share/doc/gnurobots/Robots-HOWTO X - Example maps: $PREFIX/share/gnurobots/maps/ X - Example robots: $PREFIX/share/gnurobots/scheme/ X - Binaries: gnurobots, gnurobots_logfile, xgnurobots X (this port adds the 'gnu' prefix to X distinguish from /usr/games/robots) END-of-gnurobots/pkg/MESSAGE echo c - gnurobots/files mkdir -p gnurobots/files > /dev/null 2>&1 echo x - gnurobots/files/md5 sed 's/^X//' >gnurobots/files/md5 << 'END-of-gnurobots/files/md5' XMD5 (gnurobots-1.0D.tar.gz) = 0ced682367b0dc9b2fcfdb40230a5fb5 END-of-gnurobots/files/md5 echo c - gnurobots/patches mkdir -p gnurobots/patches > /dev/null 2>&1 echo x - gnurobots/patches/patch-aa sed 's/^X//' >gnurobots/patches/patch-aa << 'END-of-gnurobots/patches/patch-aa' X--- src/Makefile.in Sun Jun 18 11:26:24 2000 X+++ src/Makefile.in Fri Sep 22 01:12:42 2000 X@@ -17,7 +17,7 @@ X X # Macros: X X-SOURCES=api.c sign.c loadmap.c drawmap.c X+SOURCES=api.c sign.c loadmap.c drawmap.c getopt.c getopt1.c X OBJECTS=$(SOURCES:.c=.o) X X CFLAGS_X=@X_CFLAGS@ END-of-gnurobots/patches/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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:22: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from po4.glue.umd.edu (po4.glue.umd.edu [128.8.10.124]) by hub.freebsd.org (Postfix) with ESMTP id 0161B37B61B for ; Sat, 23 Sep 2000 17:21:51 -0700 (PDT) Received: from glue.umd.edu (poseidon.student.umd.edu [129.2.144.21]) by po4.glue.umd.edu (8.10.1/8.10.1) with ESMTP id e8O0Lmk03795; Sat, 23 Sep 2000 20:21:48 -0400 (EDT) Message-ID: <39CD491F.C0AE18F7@glue.umd.edu> Date: Sat, 23 Sep 2000 20:21:51 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.74 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Trevor Johnson Cc: ports@FreeBSD.ORG Subject: Re: ports tree idea: Combine DESCR and COMMENT 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: > This was proposed on 14 February by Jeremy Lea in the "multi-level > categories" thread. Some other ideas that struck me as worthy: > > - move everything from the patches/ and pkg/ directories into the > top-level directory for each port > - permit more than one source file to be changed by each patch file, when > the maintainer prefers to work with such patches > - move files/md5 to the top-level directory, and only have a files/ > directory when it is needed for other files (few ports have these) > > Another possibility for the comments is to make them a line in the > makefiles: > > COMMENT= "Andrew User Interface System" > > Someone said that many DESCR files already have the comment as their first > line, though. I like the COMMENT variable idea. How does that effect making the INDEX file and the port directory web pages? These all sound like good ideas to me, why didn't anything ever come of it? -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:29:48 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 549F137B422 for ; Sat, 23 Sep 2000 17:29:46 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e8O0TiY21288; Sat, 23 Sep 2000 20:29:44 -0400 (EDT) Date: Sat, 23 Sep 2000 20:29:44 -0400 (EDT) From: Trevor Johnson To: Will Andrews Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/licq Makefile ports/irc/kvirc Makefile 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 I wrote: > So far, I've gotten the configure script to generate several zero-byte > makefiles. I've appended what I have. Now it compiles but crashes after connecting to a server: (gdb) bt #0 0x283822d2 in QGList::first () from /usr/X11R6/lib/libqt2.so.3 #1 0x8191e50 in QApplication::commitData () #2 0x8114f0f in QApplication::commitData () #3 0x8175169 in QApplication::commitData () #4 0x8174ef6 in QApplication::commitData () #5 0x81282a4 in QApplication::commitData () #6 0x28451d6c in QObject::activate_signal () from /usr/X11R6/lib/libqt2.so.3 #7 0x2864e42c in QSocketNotifier::activated () from /usr/X11R6/lib/libqt2.so.3 #8 0x284ba8f8 in QSocketNotifier::event () from /usr/X11R6/lib/libqt2.so.3 #9 0x283b411d in QApplication::notify () from /usr/X11R6/lib/libqt2.so.3 #10 0x2831894d in sn_activate () from /usr/X11R6/lib/libqt2.so.3 #11 0x28318c5a in QApplication::processNextEvent () from /usr/X11R6/lib/libqt2.so.3 #12 0x283b604f in QApplication::enter_loop () from /usr/X11R6/lib/libqt2.so.3 #13 0x283189cf in QApplication::exec () from /usr/X11R6/lib/libqt2.so.3 #14 0x813ea1e in QApplication::commitData () #15 0x80655ed in QApplication::commitData () (gdb) I've put my latest patch at http://jpj.net/~trevor/freebsd/ports/kvirc.diff.gz . -- 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 Sep 23 17:50: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 EA2FD37B42C for ; Sat, 23 Sep 2000 17:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA99279; Sat, 23 Sep 2000 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 17:50:02 -0700 (PDT) Message-Id: <200009240050.RAA99279@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dom@happygiraffe.net Subject: ports/21509: maintainer update of graphics/piddle Reply-To: dom@happygiraffe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21509; it has been noted by GNATS. From: dom@happygiraffe.net To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: ports/21509: maintainer update of graphics/piddle Date: Sun, 24 Sep 2000 00:35:17 +0100 (BST) >Number: 21509 >Category: ports >Synopsis: maintainer update to graphics/piddle >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 23 16:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 4.1-STABLE i386 >Organization: Big Angry Orange Things inc. >Environment: FreeBSD ppe.happygiraffe.net 4.1-STABLE FreeBSD 4.1-STABLE #0: Sun Sep 10 17:45:14 BST 2000 root@ppe.happygiraffe.net:/usr/obj/usr/src/sys/PPE i386 >Description: Update the piddle port to use the new bsd.python.mk. Original patch by Thomas Gellekum , thanks! >How-To-Repeat: n/a >Fix: Here's the patch: Index: Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/piddle/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 2000/09/08 12:23:50 1.5 +++ Makefile 2000/09/12 15:22:00 @@ -15,14 +15,11 @@ MAINTAINER= dom@myrddin.demon.co.uk -RUN_DEPENDS= python1.5:${PORTSDIR}/lang/python15 - +USE_PYTHON= yes WRKSRC= ${WRKDIR}/${PKGNAME} NO_BUILD= yes -PYTHON?= ${LOCALBASE}/bin/python -PYTHONLIBDIR?= ${LOCALBASE}/lib/python1.5 -PIDDLEDIR= ${PYTHONLIBDIR}/site-packages/piddle +PIDDLEDIR= ${PYTHON_SITELIBDIR}/piddle PIDDLEDOCDIR= ${PREFIX}/share/doc/piddle PIDDLEEGDIR= ${PREFIX}/share/examples/piddle @@ -40,8 +37,8 @@ ${INSTALL_DATA} ${WRKSRC}/pilfonts/*.pbm ${PIDDLEDIR}/pilfonts ${INSTALL_DATA} ${WRKSRC}/pilfonts/metrics.dat ${PIDDLEDIR}/pilfonts ${ECHO} 'piddle' > ${PIDDLEDIR}.pth - @${PYTHON} ${PYTHONLIBDIR}/compileall.py ${PIDDLEDIR} - @${PYTHON} -O ${PYTHONLIBDIR}/compileall.py ${PIDDLEDIR} + @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PIDDLEDIR} + @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${PIDDLEDIR} ${MKDIR} ${PIDDLEDOCDIR} (cd ${WRKSRC}/docs ; tar cf - *) | \ (cd ${PIDDLEDOCDIR} ; tar xf -) Index: pkg/PLIST =================================================================== RCS file: /usr/cvs/ports/graphics/piddle/pkg/PLIST,v retrieving revision 1.2 diff -u -r1.2 PLIST --- pkg/PLIST 2000/05/22 10:26:34 1.2 +++ pkg/PLIST 2000/09/12 15:22:30 @@ -1,155 +1,155 @@ -lib/python1.5/site-packages/piddle.pth -lib/python1.5/site-packages/piddle/PixMapWrapper.py -lib/python1.5/site-packages/piddle/PixMapWrapper.pyc -lib/python1.5/site-packages/piddle/PixMapWrapper.pyo -lib/python1.5/site-packages/piddle/aigen.py -lib/python1.5/site-packages/piddle/aigen.pyc -lib/python1.5/site-packages/piddle/aigen.pyo -lib/python1.5/site-packages/piddle/discipline.py -lib/python1.5/site-packages/piddle/discipline.pyc -lib/python1.5/site-packages/piddle/discipline.pyo -lib/python1.5/site-packages/piddle/pagesizes.py -lib/python1.5/site-packages/piddle/pagesizes.pyc -lib/python1.5/site-packages/piddle/pagesizes.pyo -lib/python1.5/site-packages/piddle/pdfdoc.py -lib/python1.5/site-packages/piddle/pdfdoc.pyc -lib/python1.5/site-packages/piddle/pdfdoc.pyo -lib/python1.5/site-packages/piddle/pdfgen.py -lib/python1.5/site-packages/piddle/pdfgen.pyc -lib/python1.5/site-packages/piddle/pdfgen.pyo -lib/python1.5/site-packages/piddle/pdfgeom.py -lib/python1.5/site-packages/piddle/pdfgeom.pyc -lib/python1.5/site-packages/piddle/pdfgeom.pyo -lib/python1.5/site-packages/piddle/pdfmetrics.py -lib/python1.5/site-packages/piddle/pdfmetrics.pyc -lib/python1.5/site-packages/piddle/pdfmetrics.pyo -lib/python1.5/site-packages/piddle/pdfutils.py -lib/python1.5/site-packages/piddle/pdfutils.pyc -lib/python1.5/site-packages/piddle/pdfutils.pyo -lib/python1.5/site-packages/piddle/piddle.py -lib/python1.5/site-packages/piddle/piddle.pyc -lib/python1.5/site-packages/piddle/piddle.pyo -lib/python1.5/site-packages/piddle/piddleAI.py -lib/python1.5/site-packages/piddle/piddleAI.pyc -lib/python1.5/site-packages/piddle/piddleAI.pyo -lib/python1.5/site-packages/piddle/piddleGL.py -lib/python1.5/site-packages/piddle/piddleGL.pyc -lib/python1.5/site-packages/piddle/piddleGL.pyo -lib/python1.5/site-packages/piddle/piddlePDF.py -lib/python1.5/site-packages/piddle/piddlePDF.pyc -lib/python1.5/site-packages/piddle/piddlePDF.pyo -lib/python1.5/site-packages/piddle/piddlePIL.py -lib/python1.5/site-packages/piddle/piddlePIL.pyc -lib/python1.5/site-packages/piddle/piddlePIL.pyo -lib/python1.5/site-packages/piddle/piddlePS.py -lib/python1.5/site-packages/piddle/piddlePS.pyc -lib/python1.5/site-packages/piddle/piddlePS.pyo -lib/python1.5/site-packages/piddle/piddleQD.py -lib/python1.5/site-packages/piddle/piddleQD.pyc -lib/python1.5/site-packages/piddle/piddleQD.pyo -lib/python1.5/site-packages/piddle/piddleTK.py -lib/python1.5/site-packages/piddle/piddleTK.pyc -lib/python1.5/site-packages/piddle/piddleTK.pyo -lib/python1.5/site-packages/piddle/piddleVCR.py -lib/python1.5/site-packages/piddle/piddleVCR.pyc -lib/python1.5/site-packages/piddle/piddleVCR.pyo -lib/python1.5/site-packages/piddle/piddleWX.py -lib/python1.5/site-packages/piddle/piddleWX.pyc -lib/python1.5/site-packages/piddle/piddleWX.pyo -lib/python1.5/site-packages/piddle/piddleWxDc.py -lib/python1.5/site-packages/piddle/piddleWxDc.pyc -lib/python1.5/site-packages/piddle/piddleWxDc.pyo -lib/python1.5/site-packages/piddle/piddletest.py -lib/python1.5/site-packages/piddle/piddletest.pyc -lib/python1.5/site-packages/piddle/piddletest.pyo -lib/python1.5/site-packages/piddle/pilfonts/courier-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-10.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-12.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-14.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-18.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-24.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-8.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-10.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-12.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-14.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-18.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-24.pil -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/courier-bold-8.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-10.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-12.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-14.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-18.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-24.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-8.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-10.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-12.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-14.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-18.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-24.pil -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/helvetica-bold-8.pil -lib/python1.5/site-packages/piddle/pilfonts/metrics.dat -lib/python1.5/site-packages/piddle/pilfonts/symbol-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-10.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-12.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-14.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-18.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-24.pil -lib/python1.5/site-packages/piddle/pilfonts/symbol-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/symbol-8.pil -lib/python1.5/site-packages/piddle/pilfonts/times-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-10.pil -lib/python1.5/site-packages/piddle/pilfonts/times-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-12.pil -lib/python1.5/site-packages/piddle/pilfonts/times-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-14.pil -lib/python1.5/site-packages/piddle/pilfonts/times-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-18.pil -lib/python1.5/site-packages/piddle/pilfonts/times-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-24.pil -lib/python1.5/site-packages/piddle/pilfonts/times-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-8.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-10.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-10.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-12.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-12.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-14.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-14.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-18.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-18.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-24.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-24.pil -lib/python1.5/site-packages/piddle/pilfonts/times-bold-8.pbm -lib/python1.5/site-packages/piddle/pilfonts/times-bold-8.pil -lib/python1.5/site-packages/piddle/stringformat.py -lib/python1.5/site-packages/piddle/stringformat.pyc -lib/python1.5/site-packages/piddle/stringformat.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle.pth +lib/%%PYTHON_VERSION%%/site-packages/piddle/PixMapWrapper.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/PixMapWrapper.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/PixMapWrapper.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/aigen.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/aigen.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/aigen.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/discipline.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/discipline.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/discipline.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pagesizes.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pagesizes.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pagesizes.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfdoc.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfdoc.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfdoc.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgen.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgen.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgen.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgeom.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgeom.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfgeom.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfmetrics.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfmetrics.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfmetrics.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfutils.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfutils.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/pdfutils.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddle.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddle.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddle.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleAI.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleAI.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleAI.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleGL.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleGL.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleGL.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePDF.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePDF.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePDF.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePIL.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePIL.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePIL.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePS.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePS.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddlePS.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleQD.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleQD.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleQD.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleTK.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleTK.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleTK.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleVCR.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleVCR.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleVCR.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWX.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWX.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWX.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWxDc.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWxDc.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddleWxDc.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddletest.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddletest.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/piddletest.pyo +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/courier-bold-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/helvetica-bold-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/metrics.dat +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/symbol-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-10.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-10.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-12.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-12.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-14.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-14.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-18.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-18.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-24.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-24.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-8.pbm +lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts/times-bold-8.pil +lib/%%PYTHON_VERSION%%/site-packages/piddle/stringformat.py +lib/%%PYTHON_VERSION%%/site-packages/piddle/stringformat.pyc +lib/%%PYTHON_VERSION%%/site-packages/piddle/stringformat.pyo share/doc/piddle/README share/doc/piddle/index.html share/doc/piddle/notesAI/PiddifyAI/Icon_ @@ -204,8 +204,8 @@ share/examples/piddle/textClasses.py share/examples/piddle/using-piddleTK.py share/examples/piddle/using-piddleWX.py -@dirrm lib/python1.5/site-packages/piddle/pilfonts -@dirrm lib/python1.5/site-packages/piddle +@dirrm lib/%%PYTHON_VERSION%%/site-packages/piddle/pilfonts +@dirrm lib/%%PYTHON_VERSION%%/site-packages/piddle @dirrm share/doc/piddle/notesAI/PiddifyAI @dirrm share/doc/piddle/notesAI @dirrm share/doc/piddle/notesPDF >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 17:57: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 B2C1A37B424; Sat, 23 Sep 2000 17:57:30 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13d06j-0001yO-00; Sat, 23 Sep 2000 19:57:29 -0500 Date: Sat, 23 Sep 2000 19:57:29 -0500 From: Ade Lovett To: Mark Ovens Cc: ports@freebsd.org Subject: Re: Build of latest pan fails Message-ID: <20000923195729.E322@FreeBSD.org> References: <20000924010847.A253@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000924010847.A253@parish>; from marko@freebsd.org on Sun, Sep 24, 2000 at 01:08:47AM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 24, 2000 at 01:08:47AM +0100, Mark Ovens wrote: > Building of the latest version of news/pan fails: > > [snip] > # pkg_version -v | grep glib > glib-1.3.1 ? multiple versions (index has 1.2.8,1.3.1) Don't do that. glib/gtk 1.3.x is development code, not suitable for prime time, and will trash your hifi, steal your car, empty your bank account, and do other bad things. The fact that the code was looking for something called glib12-config (note the "2") should have been something of a tiny clue as to what the problem was. The second tiny clue would have been found in the devel/glib13 Makefile: >>>>> NO_LATEST_LINK= "Unstable, development version." >>>>> Now, rip glib-1.3.1 (and gtk-1.3.x if installed) out of your system, install glib/gtk 1.2.8 (*stable* versions), and everything will be just fine, and I'll feel a lot better. (You'll notice that bento, which uses 1.2.8, seems to have no problem building this package, always a good first step to check before having a problem with something). Thank 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 Sep 23 18: 7: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 3A79F37B422; Sat, 23 Sep 2000 18:07:11 -0700 (PDT) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id SAA02297; Sat, 23 Sep 2000 18:07:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Sat, 23 Sep 2000 18:07:10 -0700 (PDT) From: Kris Kennaway To: ports@freebsd.org Cc: jmz@freebsd.org, security@freebsd.org Subject: XFree86 3.x DoS patch Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1221069748-969757205=:99058" Content-ID: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-1221069748-969757205=:99058 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-ID: Please test this patch for the XFree86 port - it addresses a number of denial of service/crash conditions in the X code (libraries used by client programs, as well as parts of the server itself). These were reported on bugtraq several months ago but never publically acknowledged by the XFree86 developers, nor did they release a patch against 3.x. They did however fix the problem silently in XFree86 4.x - this patch comes from OpenBSD who tracked down and extracted the relevant patches from the XFree86 CVS repo. I'm not really sure of the impact of the vulnerabilities, but I think they allow users who can connect remotely to an X application using the vulnerable libraries to crash it without authenticating. Bad. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe --0-1221069748-969757205=:99058 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; NAME=patch-sec1 Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: ATTACHMENT; FILENAME=patch-sec1 U29tZSBwcm9ibGVtcyB3ZXJlIGRpc2NvdmVyZWQgaW4gWDExIGxpYnJhcmll cyB3aGljaCBjYW4gY2F1c2UgRG9TIGluDQpsaWJJQ0UgYW5kIHhkbS4gQWxz byBzb21lIHBvdGllbnRpYWwgYnVmZmVyIG92ZXJmbG93IG1heSBvY2N1ciBp biBYS0INCm9wdGlvbnMgcGFyc2luZyAoYWx0aG91Z2ggdGhleSBjYW4ndCBi ZSBleHBsb2l0ZWQgaW4gT3BlbkJTRCdzIGRlZmF1bHQNCnNldHVwIHdoZXJl IHRoZSBYIHNlcnZlcnMgYXJlIG5vdCBzZXR1aWQpLiBUaGlzIHBhdGNoIGZp eGVzIGFsbCB0aGVzZQ0KcHJvYmxlbXM6DQoNCkFwcGx5IGJ5IGRvaW5nOg0K CWNkICJ0aGUgZGlyZWN0b3J5IGNvbnRhaW5pbmcgeW91ciBYMTEgc291cmNl IGRpciINCglwYXRjaCAtcDAgPCAwMjFfWDExX2xpYnMucGF0Y2gNCg0KQW5k IHRoZW4gcmVidWlsZCB5b3VyIFgxMSB0cmVlOg0KCWNkIFgxMQ0KCW1ha2Ug YWxsDQoJbWFrZSBpbnN0YWxsDQoNCkluZGV4OiBsaWIvSUNFL0lDRWxpYmlu dC5oDQpkaWZmIC11IGxpYi9JQ0UvSUNFbGliaW50Lmg6MS4xIFgxMS94Yy9s aWIvSUNFL0lDRWxpYmludC5oOjEuMg0KLS0tIGxpYi9JQ0UvSUNFbGliaW50 Lmg6MS4xCUZyaSBTZXAgIDUgMDI6NTg6MzIgMTk5Nw0KKysrIGxpYi9JQ0Uv SUNFbGliaW50LmgJTW9uIEp1bCAxMCAxNToxNzowOSAyMDAwDQpAQCAtMjg4 LDIwICsyODgsMjEgQEANCiB9DQogDQogDQotI2RlZmluZSBTS0lQX1NUUklO RyhfcEJ1ZiwgX3N3YXApIFwNCisjZGVmaW5lIFNLSVBfU1RSSU5HKF9wQnVm LCBfc3dhcCwgX2VuZCwgX2JhaWwpIFwNCiB7IFwNCiAgICAgQ0FSRDE2IF9s ZW47IFwNCiAgICAgRVhUUkFDVF9DQVJEMTYgKF9wQnVmLCBfc3dhcCwgX2xl bik7IFwNCi0gICAgX3BCdWYgKz0gX2xlbjsgXA0KLSAgICBpZiAoUEFEMzIg KDIgKyBfbGVuKSkgXA0KLSAgICAgICAgX3BCdWYgKz0gUEFEMzIgKDIgKyBf bGVuKTsgXA0KLX0NCisgICAgX3BCdWYgKz0gX2xlbiArIFBBRDMyKDIrX2xl bik7IFwNCisgICAgaWYgKF9wQnVmID4gX2VuZCkgeyBcDQorCV9iYWlsOyBc DQorICAgIH0gXA0KK30gDQogDQotI2RlZmluZSBTS0lQX0xJU1RPRl9TVFJJ TkcoX3BCdWYsIF9zd2FwLCBfY291bnQpIFwNCisjZGVmaW5lIFNLSVBfTElT VE9GX1NUUklORyhfcEJ1ZiwgX3N3YXAsIF9jb3VudCwgX2VuZCwgX2JhaWwp IFwNCiB7IFwNCiAgICAgaW50IF9pOyBcDQogICAgIGZvciAoX2kgPSAwOyBf aSA8IF9jb3VudDsgX2krKykgXA0KLSAgICAgICAgU0tJUF9TVFJJTkcgKF9w QnVmLCBfc3dhcCk7IFwNCisgICAgICAgIFNLSVBfU1RSSU5HIChfcEJ1Ziwg X3N3YXAsIF9lbmQsIF9iYWlsKTsgXA0KIH0NCiANCiANCkluZGV4OiBsaWIv SUNFL3Byb2Nlc3MuYw0KZGlmZiAtdSBsaWIvSUNFL3Byb2Nlc3MuYzoxLjEg WDExL3hjL2xpYi9JQ0UvcHJvY2Vzcy5jOjEuMg0KLS0tIGxpYi9JQ0UvcHJv Y2Vzcy5jOjEuMQlGcmkgU2VwICA1IDAyOjU4OjMyIDE5OTcNCisrKyBsaWIv SUNFL3Byb2Nlc3MuYwlNb24gSnVsIDEwIDE1OjE3OjEwIDIwMDANCkBAIC02 Myw3ICs2MywxMSBAQA0KICAgICAgICByZXR1cm4gKDApOyBcDQogICAgIH0N CiANCi0NCisjZGVmaW5lIEJBSUxfU1RSSU5HKF9pY2VDb25uLCBfb3Bjb2Rl LCBfcFN0YXJ0KSB7XA0KKyAgICBfSWNlRXJyb3JCYWRMZW5ndGggKF9pY2VD b25uLCAwLCBfb3Bjb2RlLCBJY2VGYXRhbFRvQ29ubmVjdGlvbik7XA0KKyAg ICBJY2VEaXNwb3NlQ29tcGxldGVNZXNzYWdlIChfaWNlQ29ubiwgX3BTdGFy dCk7XA0KKyAgICByZXR1cm4gKDApO1wNCit9DQogDA0KIC8qDQogICogSWNl UHJvY2Vzc01lc3NhZ2VzOg0KQEAgLTgxOSw3ICs4MjMsNyBAQA0KICAgICBp bnQJIG15QXV0aENvdW50LCBoaXNBdXRoQ291bnQ7DQogICAgIGludAkgZm91 bmQsIGksIGo7DQogICAgIGNoYXIgKm15QXV0aE5hbWUsICoqaGlzQXV0aE5h bWVzOw0KLSAgICBjaGFyICpwRGF0YSwgKnBTdGFydDsNCisgICAgY2hhciAq cERhdGEsICpwU3RhcnQsICpwRW5kOw0KICAgICBjaGFyICp2ZW5kb3IgPSBO VUxMOw0KICAgICBjaGFyICpyZWxlYXNlID0gTlVMTDsNCiAgICAgaW50IG15 QXV0aEluZGV4ID0gMDsNCkBAIC04NDMsMTAgKzg0NywxOCBAQA0KICAgICB9 DQogDQogICAgIHBEYXRhID0gcFN0YXJ0Ow0KLQ0KLSAgICBTS0lQX1NUUklO RyAocERhdGEsIHN3YXApOwkJCQkgICAgICAgLyogdmVuZG9yICovDQotICAg IFNLSVBfU1RSSU5HIChwRGF0YSwgc3dhcCk7CQkJCSAgICAgICAvKiByZWxl YXNlICovDQotICAgIFNLSVBfTElTVE9GX1NUUklORyAocERhdGEsIHN3YXAs IChpbnQpIG1lc3NhZ2UtPmF1dGhDb3VudCk7LyogYXV0aCBuYW1lcyAqLw0K KyAgICBwRW5kID0gcFN0YXJ0ICsgKGxlbmd0aCA8PCAzKTsNCisgICAgDQor ICAgIFNLSVBfU1RSSU5HIChwRGF0YSwgc3dhcCwgcEVuZCwgDQorCQkgQkFJ TF9TVFJJTkcoaWNlQ29ubiwgSUNFX0Nvbm5lY3Rpb25TZXR1cCwNCisJCQkg ICAgIHBTdGFydCkpOwkJCSAgICAgICAvKiB2ZW5kb3IgKi8NCisgICAgU0tJ UF9TVFJJTkcgKHBEYXRhLCBzd2FwLCBwRW5kLCANCisJCSBCQUlMX1NUUklO RyhpY2VDb25uLCBJQ0VfQ29ubmVjdGlvblNldHVwLA0KKwkJCSAgICBwU3Rh cnQpKTsJICAgICAgICAJICAgICAgIC8qIHJlbGVhc2UgKi8NCisgICAgU0tJ UF9MSVNUT0ZfU1RSSU5HIChwRGF0YSwgc3dhcCwgKGludCkgbWVzc2FnZS0+ YXV0aENvdW50LCBwRW5kLCANCisJCQlCQUlMX1NUUklORyhpY2VDb25uLCBJ Q0VfQ29ubmVjdGlvblNldHVwLA0KKwkJCQkgICBwU3RhcnQpKTsJCSAgICAg ICAvKiBhdXRoIG5hbWVzICovDQorICAgIA0KICAgICBwRGF0YSArPSAobWVz c2FnZS0+dmVyc2lvbkNvdW50ICogNCk7CQkgICAgICAgLyogdmVyc2lvbnMg Ki8NCiANCiAgICAgQ0hFQ0tfQ09NUExFVEVfU0laRSAoaWNlQ29ubiwgSUNF X0Nvbm5lY3Rpb25TZXR1cCwNCkBAIC0xNjg1LDcgKzE2OTcsNyBAQA0KIA0K IHsNCiAgICAgaWNlQ29ubmVjdGlvblJlcGx5TXNnIAkqbWVzc2FnZTsNCi0g ICAgY2hhciAJCQkqcERhdGEsICpwU3RhcnQ7DQorICAgIGNoYXIgCQkJKnBE YXRhLCAqcFN0YXJ0LCAqcEVuZDsNCiAgICAgQm9vbAkJCXJlcGx5UmVhZHk7 DQogDQogICAgIENIRUNLX0FUX0xFQVNUX1NJWkUgKGljZUNvbm4sIElDRV9D b25uZWN0aW9uUmVwbHksDQpAQCAtMTcwMSw5ICsxNzEzLDE0IEBADQogICAg IH0NCiANCiAgICAgcERhdGEgPSBwU3RhcnQ7DQorICAgIHBFbmQgPSBwU3Rh cnQgKyAobGVuZ3RoIDw8IDMpOw0KIA0KLSAgICBTS0lQX1NUUklORyAocERh dGEsIHN3YXApOwkJCQkgICAgIC8qIHZlbmRvciAqLw0KLSAgICBTS0lQX1NU UklORyAocERhdGEsIHN3YXApOwkJCQkgICAgIC8qIHJlbGVhc2UgKi8NCisg ICAgU0tJUF9TVFJJTkcgKHBEYXRhLCBzd2FwLCBwRW5kLA0KKwkJIEJBSUxf U1RSSU5HIChpY2VDb25uLCBJQ0VfQ29ubmVjdGlvblJlcGx5LA0KKwkJCSAg ICAgIHBTdGFydCkpOwkJICAgIAkgICAgIC8qIHZlbmRvciAqLw0KKyAgICBT S0lQX1NUUklORyAocERhdGEsIHN3YXAsIHBFbmQsDQorCQkgQkFJTF9TVFJJ TkcgKGljZUNvbm4sIElDRV9Db25uZWN0aW9uUmVwbHksDQorCQkJICAgICAg cFN0YXJ0KSk7CQkJICAgICAvKiByZWxlYXNlICovDQogDQogICAgIENIRUNL X0NPTVBMRVRFX1NJWkUgKGljZUNvbm4sIElDRV9Db25uZWN0aW9uUmVwbHks DQogCWxlbmd0aCwgcERhdGEgLSBwU3RhcnQgKyBTSVpFT0YgKGljZUNvbm5l Y3Rpb25SZXBseU1zZyksDQpAQCAtMTc4OSw3ICsxODA2LDcgQEANCiAgICAg aW50CSAJICAgICAgCWZvdW5kLCBpLCBqOw0KICAgICBjaGFyCSAgICAgIAkq bXlBdXRoTmFtZSwgKipoaXNBdXRoTmFtZXM7DQogICAgIGNoYXIgCSAgICAg IAkqcHJvdG9jb2xOYW1lOw0KLSAgICBjaGFyIAkJKnBEYXRhLCAqcFN0YXJ0 Ow0KKyAgICBjaGFyIAkJKnBEYXRhLCAqcFN0YXJ0LCAqcEVuZDsNCiAgICAg Y2hhciAJICAgICAgCSp2ZW5kb3IgPSBOVUxMOw0KICAgICBjaGFyIAkgICAg ICAJKnJlbGVhc2UgPSBOVUxMOw0KICAgICBpbnQgIAkgICAgICAJYWNjZXB0 X3NldHVwX25vdyA9IDA7DQpAQCAtMTgyNCwxMSArMTg0MSwyMCBAQA0KICAg ICB9DQogDQogICAgIHBEYXRhID0gcFN0YXJ0Ow0KKyAgICBwRW5kID0gcFN0 YXJ0ICsgKGxlbmd0aCA8PCAzKTsNCiANCi0gICAgU0tJUF9TVFJJTkcgKHBE YXRhLCBzd2FwKTsJCQkJICAgICAgIC8qIHByb3RvIG5hbWUgKi8NCi0gICAg U0tJUF9TVFJJTkcgKHBEYXRhLCBzd2FwKTsJCQkJICAgICAgIC8qIHZlbmRv ciAqLw0KLSAgICBTS0lQX1NUUklORyAocERhdGEsIHN3YXApOwkJCQkgICAg ICAgLyogcmVsZWFzZSAqLw0KLSAgICBTS0lQX0xJU1RPRl9TVFJJTkcgKHBE YXRhLCBzd2FwLCAoaW50KSBtZXNzYWdlLT5hdXRoQ291bnQpOy8qIGF1dGgg bmFtZXMgKi8NCisgICAgU0tJUF9TVFJJTkcgKHBEYXRhLCBzd2FwLCBwRW5k LA0KKwkJIEJBSUxfU1RSSU5HKGljZUNvbm4sIElDRV9Qcm90b2NvbFNldHVw LCANCisJCQkgICAgIHBTdGFydCkpOwkJCSAgICAgICAvKiBwcm90byBuYW1l ICovDQorICAgIFNLSVBfU1RSSU5HIChwRGF0YSwgc3dhcCwgcEVuZCwNCisJ CSBCQUlMX1NUUklORyhpY2VDb25uLCBJQ0VfUHJvdG9jb2xTZXR1cCwgDQor CQkJICAgICBwU3RhcnQpKTsJCQkgICAgICAgLyogdmVuZG9yICovDQorICAg IFNLSVBfU1RSSU5HIChwRGF0YSwgc3dhcCwgcEVuZCwNCisJCSBCQUlMX1NU UklORyhpY2VDb25uLCBJQ0VfUHJvdG9jb2xTZXR1cCwgDQorCQkJICAgICBw U3RhcnQpKTsJCQkgICAgICAgLyogcmVsZWFzZSAqLw0KKyAgICBTS0lQX0xJ U1RPRl9TVFJJTkcgKHBEYXRhLCBzd2FwLCAoaW50KSBtZXNzYWdlLT5hdXRo Q291bnQsIHBFbmQsDQorCQkJQkFJTF9TVFJJTkcoaWNlQ29ubiwgSUNFX1By b3RvY29sU2V0dXAsIA0KKwkJCQkgICAgcFN0YXJ0KSk7CQkgICAgICAgLyog YXV0aCBuYW1lcyAqLw0KICAgICBwRGF0YSArPSAobWVzc2FnZS0+dmVyc2lv bkNvdW50ICogNCk7CQkgICAgICAgLyogdmVyc2lvbnMgKi8NCiANCiAgICAg Q0hFQ0tfQ09NUExFVEVfU0laRSAoaWNlQ29ubiwgSUNFX1Byb3RvY29sU2V0 dXAsDQpAQCAtMjE3MCw3ICsyMTk2LDcgQEANCiANCiB7DQogICAgIGljZVBy b3RvY29sUmVwbHlNc2cgKm1lc3NhZ2U7DQotICAgIGNoYXIJCSpwRGF0YSwg KnBTdGFydDsNCisgICAgY2hhcgkJKnBEYXRhLCAqcFN0YXJ0LCAqcEVuZDsN CiAgICAgQm9vbAkJcmVwbHlSZWFkeTsNCiANCiAgICAgQ0hFQ0tfQVRfTEVB U1RfU0laRSAoaWNlQ29ubiwgSUNFX1Byb3RvY29sUmVwbHksDQpAQCAtMjE4 Niw5ICsyMjEyLDE0IEBADQogICAgIH0NCiANCiAgICAgcERhdGEgPSBwU3Rh cnQ7DQorICAgIHBFbmQgPSBwU3RhcnQgKyAobGVuZ3RoIDw8IDMpOw0KIA0K LSAgICBTS0lQX1NUUklORyAocERhdGEsIHN3YXApOwkJCQkgICAgIC8qIHZl bmRvciAqLw0KLSAgICBTS0lQX1NUUklORyAocERhdGEsIHN3YXApOwkJCQkg ICAgIC8qIHJlbGVhc2UgKi8NCisgICAgU0tJUF9TVFJJTkcgKHBEYXRhLCBz d2FwLCBwRW5kLA0KKwkJIEJBSUxfU1RSSU5HKGljZUNvbm4sIElDRV9Qcm90 b2NvbFJlcGx5LA0KKwkJCSAgICAgcFN0YXJ0KSk7CQkJICAgICAvKiB2ZW5k b3IgKi8NCisgICAgU0tJUF9TVFJJTkcgKHBEYXRhLCBzd2FwLCBwRW5kLA0K KwkJIEJBSUxfU1RSSU5HKGljZUNvbm4sIElDRV9Qcm90b2NvbFJlcGx5LA0K KwkJCSAgICAgcFN0YXJ0KSk7CQkJICAgICAvKiByZWxlYXNlICovDQogDQog ICAgIENIRUNLX0NPTVBMRVRFX1NJWkUgKGljZUNvbm4sIElDRV9Qcm90b2Nv bFJlcGx5LA0KIAlsZW5ndGgsIHBEYXRhIC0gcFN0YXJ0ICsgU0laRU9GIChp Y2VQcm90b2NvbFJlcGx5TXNnKSwNCkluZGV4OiBsaWIvWDExL0dldFByb3Au Yw0KZGlmZiAtdSBsaWIvWDExL0dldFByb3AuYzoxLjEgWDExL3hjL2xpYi9Y MTEvR2V0UHJvcC5jOjEuMg0KLS0tIGxpYi9YMTEvR2V0UHJvcC5jOjEuMQlG cmkgU2VwICA1IDAyOjU4OjQ0IDE5OTcNCisrKyBsaWIvWDExL0dldFByb3Au YwlNb24gSnVsIDEwIDE1OjIwOjM1IDIwMDANCkBAIC03NiwyMSArNzYsMjQg QEANCiAgICAgICAgKi8NCiAJICBjYXNlIDg6DQogCSAgICBuYnl0ZXMgPSBu ZXRieXRlcyA9IHJlcGx5Lm5JdGVtczsNCi0JICAgIGlmICgqcHJvcCA9ICh1 bnNpZ25lZCBjaGFyICopIFhtYWxsb2MgKCh1bnNpZ25lZCluYnl0ZXMgKyAx KSkNCisgICAgICAgICAgICBpZiAobmJ5dGVzICsgMSA+IDAgJiYNCisgICAg ICAgICAgICAgICAgKCpwcm9wID0gKHVuc2lnbmVkIGNoYXIgKikgWG1hbGxv YyAoKHVuc2lnbmVkKW5ieXRlcyArIDEpKSkNCiAJCV9YUmVhZFBhZCAoZHB5 LCAoY2hhciAqKSAqcHJvcCwgbmV0Ynl0ZXMpOw0KIAkgICAgYnJlYWs7DQog DQogCSAgY2FzZSAxNjoNCiAJICAgIG5ieXRlcyA9IHJlcGx5Lm5JdGVtcyAq IHNpemVvZiAoc2hvcnQpOw0KIAkgICAgbmV0Ynl0ZXMgPSByZXBseS5uSXRl bXMgPDwgMTsNCi0JICAgIGlmICgqcHJvcCA9ICh1bnNpZ25lZCBjaGFyICop IFhtYWxsb2MgKCh1bnNpZ25lZCluYnl0ZXMgKyAxKSkNCisgICAgICAgICAg ICBpZiAobmJ5dGVzICsgMSA+IDAgJiYNCisgICAgICAgICAgICAgICAgKCpw cm9wID0gKHVuc2lnbmVkIGNoYXIgKikgWG1hbGxvYyAoKHVuc2lnbmVkKW5i eXRlcyArIDEpKSkNCiAJCV9YUmVhZDE2UGFkIChkcHksIChzaG9ydCAqKSAq cHJvcCwgbmV0Ynl0ZXMpOw0KIAkgICAgYnJlYWs7DQogDQogCSAgY2FzZSAz MjoNCiAJICAgIG5ieXRlcyA9IHJlcGx5Lm5JdGVtcyAqIHNpemVvZiAobG9u Zyk7DQogCSAgICBuZXRieXRlcyA9IHJlcGx5Lm5JdGVtcyA8PCAyOw0KLQkg ICAgaWYgKCpwcm9wID0gKHVuc2lnbmVkIGNoYXIgKikgWG1hbGxvYyAoKHVu c2lnbmVkKW5ieXRlcyArIDEpKQ0KKyAgICAgICAgICAgIGlmIChuYnl0ZXMg KyAxID4gMCAmJg0KKyAgICAgICAgICAgICAgICAoKnByb3AgPSAodW5zaWdu ZWQgY2hhciAqKSBYbWFsbG9jICgodW5zaWduZWQpbmJ5dGVzICsgMSkpKQ0K IAkJX1hSZWFkMzIgKGRweSwgKGxvbmcgKikgKnByb3AsIG5ldGJ5dGVzKTsN CiAJICAgIGJyZWFrOw0KIA0KSW5kZXg6IGxpYi9YMTEvT3BlbkRpcy5jDQpk aWZmIC11IGxpYi9YMTEvT3BlbkRpcy5jOjEuMSBYMTEveGMvbGliL1gxMS9P cGVuRGlzLmM6MS4yDQotLS0gbGliL1gxMS9PcGVuRGlzLmM6MS4xCUZyaSBT ZXAgIDUgMDI6NTg6NDggMTk5Nw0KKysrIGxpYi9YMTEvT3BlbkRpcy5jCU1v biBKdWwgMTAgMTU6MjA6MzUgMjAwMA0KQEAgLTM3MSw2ICszNzEsMTQgQEAN CiAJZHB5LT5tYXhfcmVxdWVzdF9zaXplCT0gdS5zZXR1cC0+bWF4UmVxdWVz dFNpemU7DQogCW1hc2sgPSBkcHktPnJlc291cmNlX21hc2s7DQogCWRweS0+ cmVzb3VyY2Vfc2hpZnQJPSAwOw0KKwlpZiAoIW1hc2spDQorCXsNCisJICAg IGZwcmludGYgKHN0ZGVyciwgIlhsaWI6IGNvbm5lY3Rpb24gdG8gXCIlc1wi IGludmFsaWQgc2V0dXBcbiIsDQorCQkgICAgIGZ1bGxuYW1lKTsNCisJICAg IE91dE9mTWVtb3J5KGRweSwgc2V0dXApOw0KKwkgICAgcmV0dXJuIChOVUxM KTsNCisJfQ0KKyAgICANCiAJd2hpbGUgKCEobWFzayAmIDEpKSB7DQogCSAg ICBkcHktPnJlc291cmNlX3NoaWZ0Kys7DQogCSAgICBtYXNrID0gbWFzayA+ PiAxOw0KQEAgLTM5MCw2ICszOTgsMTMgQEANCiAgIAkodm9pZCkgc3RybmNw eShkcHktPnZlbmRvciwgdS52ZW5kb3IsIHZlbmRvcmxlbik7DQogCWRweS0+ dmVuZG9yW3ZlbmRvcmxlbl0gPSAnXDAnOw0KICAJdmVuZG9ybGVuID0gKHZl bmRvcmxlbiArIDMpICYgfjM7CS8qIHJvdW5kIHVwICovDQorLyoNCisgKiB2 YWxpZGF0ZSBzZXR1cCBsZW5ndGgNCisgKi8NCisJaWYgKChpbnQpIHNldHVw bGVuZ3RoIC0gc3pfeENvbm5TZXR1cCAtIHZlbmRvcmxlbiA8IDApIHsNCisJ ICAgIE91dE9mTWVtb3J5KGRweSwgc2V0dXApOw0KKwkgICAgcmV0dXJuIChO VUxMKTsNCisJfQ0KIAltZW1tb3ZlIChzZXR1cCwgdS52ZW5kb3IgKyB2ZW5k b3JsZW4sDQogCQkgKGludCkgc2V0dXBsZW5ndGggLSBzel94Q29ublNldHVw IC0gdmVuZG9ybGVuKTsNCiAgCXUudmVuZG9yID0gc2V0dXA7DQpAQCAtNTY4 LDYgKzU4Myw4IEBADQogDQogCSAgICBpZiAoX1hSZXBseSAoZHB5LCAoeFJl cGx5ICopICZyZXBseSwgMCwgeEZhbHNlKSkgew0KIAkJaWYgKHJlcGx5LmZv cm1hdCA9PSA4ICYmIHJlcGx5LnByb3BlcnR5VHlwZSA9PSBYQV9TVFJJTkcg JiYNCisJCSAgICAocmVwbHkubkl0ZW1zICsgMSA+IDApICYmDQorCQkgICAg KHJlcGx5Lm5JdGVtcyA8PSByZXEtPmxvbmdMZW5ndGggKiA0KSAmJg0KIAkJ ICAgIChkcHktPnhkZWZhdWx0cyA9IFhtYWxsb2MgKHJlcGx5Lm5JdGVtcyAr IDEpKSkgew0KIAkJICAgIF9YUmVhZFBhZCAoZHB5LCBkcHktPnhkZWZhdWx0 cywgcmVwbHkubkl0ZW1zKTsNCiAJCSAgICBkcHktPnhkZWZhdWx0c1tyZXBs eS5uSXRlbXNdID0gJ1wwJzsNCkluZGV4OiBsaWIvWDExL1hsaWJJbnQuYw0K ZGlmZiAtdSBsaWIvWDExL1hsaWJJbnQuYzoxLjMgWDExL3hjL2xpYi9YMTEv WGxpYkludC5jOjEuNA0KLS0tIGxpYi9YMTEvWGxpYkludC5jOjEuMwlUdWUg QXVnIDI0IDEyOjExOjE5IDE5OTkNCisrKyBsaWIvWDExL1hsaWJJbnQuYwlN b24gSnVsIDEwIDE1OjIwOjM1IDIwMDANCkBAIC0zOCw2ICszOCw4IEBADQog I2RlZmluZSBORUVEX0VWRU5UUw0KICNkZWZpbmUgTkVFRF9SRVBMSUVTDQog DQorI2RlZmluZSBHRU5FUklDX0xFTkdUSF9MSU1JVCAoMSA8PCAyOSkNCisN CiAjaW5jbHVkZSAiWGxpYmludC5oIg0KICNpbmNsdWRlIDxYMTEvWHBvbGwu aD4NCiAjaW5jbHVkZSA8WDExL1h0cmFucy5oPg0KQEAgLTE2ODksNiArMTY5 MSwxNyBAQA0KIAkJCSE9IChjaGFyICopcmVwKQ0KIAkJCWNvbnRpbnVlOw0K IAkJfQ0KKyAgICAgICAgICAgICAgICAvKg0KKyAgICAgICAgICAgICAgICAg KiBEb24ndCBhY2NlcHQgcmlkaWN1bG91c2x5IGxhcmdlIHZhbHVlcyBmb3IN CisgICAgICAgICAgICAgICAgICogZ2VuZXJpYy5sZW5ndGg7IGRvaW5nIHNv IGNvdWxkIGNhdXNlIHN0YWNrLXNjcmliYmxpbmcNCisgICAgICAgICAgICAg ICAgICogcHJvYmxlbXMgZWxzZXdoZXJlLg0KKyAgICAgICAgICAgICAgICAg Ki8NCisgICAgICAgICAgICAgICAgaWYgKHJlcC0+Z2VuZXJpYy5sZW5ndGgg PiBHRU5FUklDX0xFTkdUSF9MSU1JVCkgew0KKyAgICAgICAgICAgICAgICAg ICAgcmVwLT5nZW5lcmljLmxlbmd0aCA9IEdFTkVSSUNfTEVOR1RIX0xJTUlU Ow0KKyAgICAgICAgICAgICAgICAgICAgKHZvaWQpIGZwcmludGYoc3RkZXJy LA0KKyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIlhsaWI6 IHN1c3BpY2lvdXNseSBsb25nIHJlcGx5IGxlbmd0aCAlZCBzZXQgdG8gJWQi LA0KKyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVwLT5n ZW5lcmljLmxlbmd0aCwgR0VORVJJQ19MRU5HVEhfTElNSVQpOw0KKwkJfQ0K IAkJaWYgKGV4dHJhIDw9IHJlcC0+Z2VuZXJpYy5sZW5ndGgpIHsNCiAJCSAg ICBpZiAoZXh0cmEgPiAwKQ0KIAkJCS8qIA0KQEAgLTE4MjcsNiArMTg0MCwx MyBAQA0KICNlbmRpZg0KIAlpZiAobGVuID4gKmxlbnApDQogCSAgICBfWEVh dERhdGEoZHB5LCBsZW4gLSAqbGVucCk7DQorICAgIH0NCisgICAgaWYgKGxl biA8IFNJWkVPRih4UmVwbHkpKQ0KKyAgICB7DQorCV9YSU9FcnJvciAoZHB5 KTsNCisJYnVmICs9ICpsZW5wOw0KKwkqbGVucCA9IDA7DQorCXJldHVybiBi dWY7DQogICAgIH0NCiAgICAgaWYgKGxlbiA+PSAqbGVucCkgew0KIAlidWYg Kz0gKmxlbnA7DQpJbmRleDogcHJvZ3JhbXMvWHNlcnZlci9vcy9zZWNhdXRo LmMNCmRpZmYgLXUgcHJvZ3JhbXMvWHNlcnZlci9vcy9zZWNhdXRoLmM6MS4x IFgxMS94Yy9wcm9ncmFtcy9Yc2VydmVyL29zL3NlY2F1dGguYzoxLjMNCi0t LSBwcm9ncmFtcy9Yc2VydmVyL29zL3NlY2F1dGguYzoxLjEJRnJpIFNlcCAg NSAwMzoxNToxNCAxOTk3DQorKysgcHJvZ3JhbXMvWHNlcnZlci9vcy9zZWNh dXRoLmMJTW9uIEp1bCAxMCAxNToyMzoyNiAyMDAwDQpAQCAtNDcsNyArNDcs NyBAQA0KICAgICBDbGllbnRQdHIJY2xpZW50Ow0KICAgICBjaGFyCSoqcmVh c29uOw0KIHsNCi0gICAgY2hhcgkqcG9saWN5ID0gKmRhdGFQOw0KKyAgICBD QVJEOAkqcG9saWN5ID0gKihDQVJEOCAqKilkYXRhUDsNCiAgICAgaW50CQls ZW5ndGg7DQogICAgIEJvb2wJcGVybWl0Ow0KICAgICBpbnQJCW5Qb2xpY2ll czsNCkBAIC02MSwxMyArNjEsMTMgQEANCiAgICAgfQ0KIA0KICAgICBwZXJt aXQgPSAoKnBvbGljeSsrID09IDApOw0KLSAgICBuUG9saWNpZXMgPSAqcG9s aWN5Kys7DQorICAgIG5Qb2xpY2llcyA9IChDQVJEOCkgKnBvbGljeSsrOw0K IA0KICAgICBsZW5ndGggLT0gMjsNCiANCiAgICAgc2l0ZVBvbGljaWVzID0g U2VjdXJpdHlHZXRTaXRlUG9saWN5U3RyaW5ncygmblNpdGVQb2xpY2llcyk7 DQogDQotICAgIHdoaWxlIChuUG9saWNpZXMpIHsNCisgICAgd2hpbGUgKG5Q b2xpY2llcyA+IDApIHsNCiAJaW50IHN0ckxlbiwgc2l0ZVBvbGljeTsNCiAN CiAJaWYgKGxlbmd0aCA9PSAwKSB7DQpAQCAtNzUsNyArNzUsNyBAQA0KIAkg ICAgcmV0dXJuIEZBTFNFOw0KIAl9DQogDQotCXN0ckxlbiA9ICpwb2xpY3kr KzsNCisJc3RyTGVuID0gKENBUkQ4KSAqcG9saWN5Kys7DQogCWlmICgtLWxl bmd0aCA8IHN0ckxlbikgew0KIAkgICAgKnJlYXNvbiA9IEludmFsaWRQb2xp Y3lSZWFzb247DQogCSAgICByZXR1cm4gRkFMU0U7DQpAQCAtODcsNyArODcs NyBAQA0KIAkgICAgew0KIAkJY2hhciAqdGVzdFBvbGljeSA9IHNpdGVQb2xp Y2llc1tzaXRlUG9saWN5XTsNCiAJCWlmICgoc3RyTGVuID09IHN0cmxlbih0 ZXN0UG9saWN5KSkgJiYNCi0JCSAgICAoc3RybmNtcChwb2xpY3ksIHRlc3RQ b2xpY3ksIHN0ckxlbikgPT0gMCkpDQorCQkgICAgKHN0cm5jbXAoKGNoYXIg Kilwb2xpY3ksIHRlc3RQb2xpY3ksIHN0ckxlbikgPT0gMCkpDQogCQl7DQog CQkgICAgZm91bmQgPSBUUlVFOyAvKiBuZWVkIHRvIGNvbnRpbnVlIHBhcnNp bmcgdGhlIHBvbGljeS4uLiAqLw0KIAkJICAgIGJyZWFrOw0KQEAgLTEwNyw3 ICsxMDcsNyBAQA0KICAgICB9DQogDQogICAgICpkYXRhX2xlbmd0aFAgPSBs ZW5ndGg7DQotICAgICpkYXRhUCA9IHBvbGljeTsNCisgICAgKmRhdGFQID0g KGNoYXIgKilwb2xpY3k7DQogICAgIHJldHVybiBUUlVFOw0KIH0NCiANCklu ZGV4OiBwcm9ncmFtcy9Yc2VydmVyL29zL3hkbWNwLmMNCmRpZmYgLXUgcHJv Z3JhbXMvWHNlcnZlci9vcy94ZG1jcC5jOjEuMS4xLjIgWDExL3hjL3Byb2dy YW1zL1hzZXJ2ZXIvb3MveGRtY3AuYzoxLjINCi0tLSBwcm9ncmFtcy9Yc2Vy dmVyL29zL3hkbWNwLmM6MS4xLjEuMglGcmkgSmFuICA4IDEwOjU2OjQ4IDE5 OTkNCisrKyBwcm9ncmFtcy9Yc2VydmVyL29zL3hkbWNwLmMJTW9uIEp1bCAx MCAxNToyNjowNyAyMDAwDQpAQCAtMSw1ICsxLDUgQEANCiAvKiAkWENvbnNv cnRpdW06IHhkbWNwLmMgL21haW4vMzQgMTk5Ni8xMi8wMiAxMDoyMzoyOSBs ZWhvcnMgJCAqLw0KLS8qICRYRnJlZTg2OiB4Yy9wcm9ncmFtcy9Yc2VydmVy L29zL3hkbWNwLmMsdiAzLjkuMi4xIDE5OTgvMTIvMTggMTE6NTY6MzQgZGF3 ZXMgRXhwICQgKi8NCisvKiAkWEZyZWU4NjogeGMvcHJvZ3JhbXMvWHNlcnZl ci9vcy94ZG1jcC5jLHYgMy45LjIuMiAyMDAwLzAyLzA4IDIwOjMyOjEyIGRh d2VzIEV4cCAkICovDQogLyoNCiAgKiBDb3B5cmlnaHQgMTk4OSBOZXR3b3Jr IENvbXB1dGluZyBEZXZpY2VzLCBJbmMuLCBNb3VudGFpbiBWaWV3LCBDYWxp Zm9ybmlhLg0KICAqDQpAQCAtMjkwLDcgKzI5MCwxMCBAQA0KIAlyZXR1cm4g KGkgKyAxKTsNCiAgICAgfQ0KICAgICBpZiAoc3RyY21wKGFyZ3ZbaV0sICIt cG9ydCIpID09IDApIHsNCi0JKytpOw0KKyAgICAgICAgaWYgKCsraSA9PSBh cmdjKSAgew0KKwkgICAgRXJyb3JGKCJYc2VydmVyOiBtaXNzaW5nIHBvcnQg bnVtYmVyIGluIGNvbW1hbmQgbGluZVxuIik7DQorCSAgICBleGl0KDEpOw0K Kwl9DQogCXhkbV91ZHBfcG9ydCA9IGF0b2koYXJndltpXSk7DQogCXJldHVy biAoaSArIDEpOw0KICAgICB9DQpAQCAtMzAwLDE4ICszMDMsMjggQEANCiAg ICAgfQ0KICAgICBpZiAoc3RyY21wKGFyZ3ZbaV0sICItY2xhc3MiKSA9PSAw KSB7DQogCSsraTsNCisgICAgICAgIGlmICgrK2kgPT0gYXJnYykgIHsNCisJ ICAgIEVycm9yRigiWHNlcnZlcjogbWlzc2luZyBjbGFzcyBuYW1lIGluIGNv bW1hbmQgbGluZVxuIik7DQorCSAgICBleGl0KDEpOw0KKwl9DQogCWRlZmF1 bHREaXNwbGF5Q2xhc3MgPSBhcmd2W2ldOw0KIAlyZXR1cm4gKGkgKyAxKTsN CiAgICAgfQ0KICNpZmRlZiBIQVNYRE1BVVRIDQogICAgIGlmIChzdHJjbXAo YXJndltpXSwgIi1jb29raWUiKSA9PSAwKSB7DQotCSsraTsNCisgICAgICAg IGlmICgrK2kgPT0gYXJnYykgIHsNCisJICAgIEVycm9yRigiWHNlcnZlcjog bWlzc2luZyBjb29raWUgZGF0YSBpbiBjb21tYW5kIGxpbmVcbiIpOw0KKwkg ICAgZXhpdCgxKTsNCisJfQ0KIAl4ZG1BdXRoQ29va2llID0gYXJndltpXTsN CiAJcmV0dXJuIChpICsgMSk7DQogICAgIH0NCiAjZW5kaWYNCiAgICAgaWYg KHN0cmNtcChhcmd2W2ldLCAiLWRpc3BsYXlJRCIpID09IDApIHsNCi0JKytp Ow0KKyAgICAgICAgaWYgKCsraSA9PSBhcmdjKSAgew0KKwkgICAgRXJyb3JG KCJYc2VydmVyOiBtaXNzaW5nIGRpc3BsYXlJRCBpbiBjb21tYW5kIGxpbmVc biIpOw0KKwkgICAgZXhpdCgxKTsNCisJfQ0KIAlYZG1jcFJlZ2lzdGVyTWFu dWZhY3R1cmVyRGlzcGxheUlEIChhcmd2W2ldLCBzdHJsZW4gKGFyZ3ZbaV0p KTsNCiAJcmV0dXJuIChpICsgMSk7DQogICAgIH0NCkluZGV4OiBwcm9ncmFt cy9Yc2VydmVyL3hrYi9kZHhMb2FkLmMNCmRpZmYgLXUgcHJvZ3JhbXMvWHNl cnZlci94a2IvZGR4TG9hZC5jOjEuMS4xLjMgWDExL3hjL3Byb2dyYW1zL1hz ZXJ2ZXIveGtiL2RkeExvYWQuYzoxLjINCi0tLSBwcm9ncmFtcy9Yc2VydmVy L3hrYi9kZHhMb2FkLmM6MS4xLjEuMwlTYXQgTm92IDI4IDAxOjQ5OjEzIDE5 OTgNCisrKyBwcm9ncmFtcy9Yc2VydmVyL3hrYi9kZHhMb2FkLmMJTW9uIEp1 bCAxMCAxNToyODoxMCAyMDAwDQpAQCAtMjQsNyArMjQsNyBAQA0KIFRIRSBV U0UgT1IgUEVSRk9STUFOQ0UgT0YgVEhJUyBTT0ZUV0FSRS4NCiANCiAqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKi8NCi0vKiAkWEZyZWU4NjogeGMvcHJvZ3JhbXMvWHNlcnZlci94 a2IvZGR4TG9hZC5jLHYgMy4xOS4yLjMgMTk5OC8wOS8yNyAxMjo1OToyOSBo b2huZGVsIEV4cCAkICovDQorLyogJFhGcmVlODY6IHhjL3Byb2dyYW1zL1hz ZXJ2ZXIveGtiL2RkeExvYWQuYyx2IDMuMTkuMi40IDIwMDAvMDYvMTUgMjM6 MjQ6MDcgZGF3ZXMgRXhwICQgKi8NCiANCiAjaW5jbHVkZSA8c3RkaW8uaD4N CiAjaW5jbHVkZSA8Y3R5cGUuaD4NCkBAIC0xMzksMTAgKzEzOSw4IEBADQog CQkrc3RybGVuKGZpbGUpK3N0cmxlbih4a21fb3V0cHV0X2RpcikNCiAJCStz dHJsZW4ob3V0RmlsZSkrNTMgPiBQQVRIX01BWCkNCiAJew0KLSNpZmRlZiBE RUJVRw0KIAkgICAgRXJyb3JGKCJjb21waWxlciBjb21tYW5kIGZvciBrZXlt YXAgKCVzKSBleGNlZWRzIG1heCBsZW5ndGhcbiIsDQogCQkJCQkJCQluYW1l cy0+a2V5bWFwKTsNCi0jZW5kaWYNCiAJICAgIHJldHVybiBGYWxzZTsNCiAJ fQ0KICNpZm5kZWYgX19FTVhfXw0KQEAgLTE2OSwxMCArMTY3LDggQEANCiAJ CStzdHJsZW4oZmlsZSkrc3RybGVuKHhrbV9vdXRwdXRfZGlyKQ0KIAkJK3N0 cmxlbihvdXRGaWxlKSs0OSA+IFBBVEhfTUFYKQ0KIAl7DQotI2lmZGVmIERF QlVHDQogICAgICAgICAgICAgRXJyb3JGKCJjb21waWxlciBjb21tYW5kIGZv ciBrZXltYXAgKCVzKSBleGNlZWRzIG1heCBsZW5ndGhcbiIsDQogCQkJCQkJ CW5hbWVzLT5rZXltYXApOw0KLSNlbmRpZg0KIAkgICAgcmV0dXJuIEZhbHNl Ow0KIAl9DQogCXNwcmludGYoY21kLCJ4a2Jjb21wIC13ICVkIC14a20gJXMl cyAtZW0xICVzIC1lbXAgJXMgLWVtbCAlcyBrZXltYXAvJXMgJXMlcy54a20i LA0KQEAgLTIzNiw2ICsyMzIsMTAgQEANCiAJc3ByaW50ZihrZXltYXAsInNl cnZlci0lcyIsZGlzcGxheSk7DQogICAgIH0NCiAgICAgZWxzZSB7DQorCWlm IChzdHJsZW4obmFtZXMtPmtleW1hcCkgPiBQQVRIX01BWCAtIDEpIHsNCisJ ICAgIEVycm9yRigibmFtZSBvZiBrZXltYXAgKCVzKSBleGNlZWRzIG1heCBs ZW5ndGhcbiIsIG5hbWVzLT5rZXltYXApOw0KKwkgICAgcmV0dXJuIEZhbHNl Ow0KKwl9DQogCXN0cmNweShrZXltYXAsbmFtZXMtPmtleW1hcCk7DQogICAg IH0NCiANCkBAIC0yNTQsMTAgKzI1NCw4IEBADQogCQkrc3RybGVuKFBPU1Rf RVJST1JfTVNHMSkrc3RybGVuKHhrbV9vdXRwdXRfZGlyKQ0KIAkJK3N0cmxl bihrZXltYXApKzQ4ID4gUEFUSF9NQVgpDQogCXsNCi0jaWZkZWYgREVCVUcN CiAgICAgICAgICAgICBFcnJvckYoImNvbXBpbGVyIGNvbW1hbmQgZm9yIGtl eW1hcCAoJXMpIGV4Y2VlZHMgbWF4IGxlbmd0aFxuIiwNCiAJCQkJCQkJbmFt ZXMtPmtleW1hcCk7DQotI2VuZGlmDQogCSAgICByZXR1cm4gRmFsc2U7DQog CX0NCiAjaWZuZGVmIFdJTjMyDQpAQCAtMjk0LDEwICsyOTIsOCBAQA0KIAkJ K3N0cmxlbihFUlJPUl9QUkVGSVgpK3N0cmxlbihQT1NUX0VSUk9SX01TRzEp DQogCQkrc3RybGVuKHhrbV9vdXRwdXRfZGlyKStzdHJsZW4oa2V5bWFwKSs0 NCA+IFBBVEhfTUFYKQ0KIAl7DQotI2lmZGVmIERFQlVHDQogICAgICAgICAg ICAgRXJyb3JGKCJjb21waWxlciBjb21tYW5kIGZvciBrZXltYXAgKCVzKSBl eGNlZWRzIG1heCBsZW5ndGhcbiIsDQogCQkJCQkJCW5hbWVzLT5rZXltYXAp Ow0KLSNlbmRpZg0KIAkgICAgcmV0dXJuIEZhbHNlOw0KIAl9DQogI2lmbmRl ZiBXSU4zMg0KSW5kZXg6IHByb2dyYW1zL1hzZXJ2ZXIveGtiL3hrYkluaXQu Yw0KZGlmZiAtdSBwcm9ncmFtcy9Yc2VydmVyL3hrYi94a2JJbml0LmM6MS4x LjEuMiBYMTEveGMvcHJvZ3JhbXMvWHNlcnZlci94a2IveGtiSW5pdC5jOjEu Mw0KLS0tIHByb2dyYW1zL1hzZXJ2ZXIveGtiL3hrYkluaXQuYzoxLjEuMS4y CVNhdCBNYXIgIDcgMDk6MjE6NTUgMTk5OA0KKysrIHByb2dyYW1zL1hzZXJ2 ZXIveGtiL3hrYkluaXQuYwlNb24gSnVsIDEwIDE1OjI4OjEwIDIwMDANCkBA IC0yNCw3ICsyNCw3IEBADQogVEhFIFVTRSBPUiBQRVJGT1JNQU5DRSBPRiBU SElTIFNPRlRXQVJFLg0KIA0KICoqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqLw0KLS8qICRYRnJlZTg2 OiB4Yy9wcm9ncmFtcy9Yc2VydmVyL3hrYi94a2JJbml0LmMsdiAzLjEyLjIu MiAxOTk4LzAyLzI0IDEzOjIwOjA3IGRhd2VzIEV4cCAkICovDQorLyogJFhG cmVlODY6IHhjL3Byb2dyYW1zL1hzZXJ2ZXIveGtiL3hrYkluaXQuYyx2IDMu MTIuMi4zIDIwMDAvMDYvMTUgMjE6NTg6MzQgZGF3ZXMgRXhwICQgKi8NCiAN CiAjaW5jbHVkZSA8c3RkaW8uaD4NCiAjaW5jbHVkZSA8c3RkbGliLmg+DQpA QCAtOTE1LDggKzkxNSwxMyBAQA0KICNlbmRpZg0KICAgICBlbHNlIGlmIChz dHJuY21wKGFyZ3ZbaV0sICIteGtibWFwIiwgNykgPT0gMCkgew0KIAlpZigr K2kgPCBhcmdjKSB7DQotCSAgICBYa2JJbml0aWFsTWFwPSBhcmd2W2ldOw0K LQkgICAgcmV0dXJuIDI7DQorCSAgICBpZiAoc3RybGVuKGFyZ3ZbaV0pIDwg UEFUSF9NQVgpIHsNCisJCVhrYkluaXRpYWxNYXA9IGFyZ3ZbaV07DQorCQly ZXR1cm4gMjsNCisJICAgIH0gZWxzZSB7DQorCQlFcnJvckYoIi14a2JtYXAg cGF0aG5hbWUgdG9vIGxvbmdcbiIpOw0KKwkJcmV0dXJuIC0xOw0KKwkgICAg fQ0KIAl9DQogCWVsc2Ugew0KIAkgICAgcmV0dXJuIC0xOw0KQEAgLTkyNCw4 ICs5MjksMTMgQEANCiAgICAgfQ0KICAgICBlbHNlIGlmIChzdHJuY21wKGFy Z3ZbaV0sICIteGtiZGIiLCA3KSA9PSAwKSB7DQogCWlmKCsraSA8IGFyZ2Mp IHsNCi0JICAgIFhrYkRCPSBhcmd2W2ldOw0KLQkgICAgcmV0dXJuIDI7DQor CSAgICBpZiAoc3RybGVuKGFyZ3ZbaV0pIDwgUEFUSF9NQVgpIHsNCisJCVhr YkRCPSBhcmd2W2ldOw0KKwkJcmV0dXJuIDI7DQorCSAgICB9IGVsc2Ugew0K KwkJRXJyb3JGKCIteGtiZGIgcGF0aG5hbWUgdG9vIGxvbmdcbiIpOw0KKwkJ cmV0dXJuIC0xOw0KKwkgICAgfQ0KIAl9DQogCWVsc2Ugew0KIAkgICAgcmV0 dXJuIC0xOw0KSW5kZXg6IHByb2dyYW1zL3hmcy9vcy93YWl0Zm9yLmMNCmRp ZmYgLXUgcHJvZ3JhbXMveGZzL29zL3dhaXRmb3IuYzoxLjEgWDExL3hjL3By b2dyYW1zL3hmcy9vcy93YWl0Zm9yLmM6MS4yDQotLS0gcHJvZ3JhbXMveGZz L29zL3dhaXRmb3IuYzoxLjEJRnJpIFNlcCAgNSAwMzoxNjowNyAxOTk3DQor KysgcHJvZ3JhbXMveGZzL29zL3dhaXRmb3IuYwlNb24gSnVsIDEwIDE1OjMy OjM4IDIwMDANCkBAIC0xLDUgKzEsNSBAQA0KIC8qICRYQ29uc29ydGl1bTog d2FpdGZvci5jIC9tYWluLzE1IDE5OTYvMDgvMzAgMTQ6MjI6MzQga2FsZWIg JCAqLw0KLS8qICRYRnJlZTg2OiB4Yy9wcm9ncmFtcy94ZnMvb3Mvd2FpdGZv ci5jLHYgMy41IDE5OTcvMDEvMTggMDc6MDI6NDggZGF3ZXMgRXhwICQgKi8N CisvKiAkWEZyZWU4NjogeGMvcHJvZ3JhbXMveGZzL29zL3dhaXRmb3IuYyx2 IDMuNS4yLjEgMjAwMC8wNi8xNSAyMTo1ODozNSBkYXdlcyBFeHAgJCAqLw0K IC8qDQogICogd2FpdHMgZm9yIGlucHV0DQogICovDQpAQCAtMjEyLDcgKzIx Miw3IEBADQogCSAgICB3aGlsZSAoY2xpZW50c1JlYWRhYmxlLmZkc19iaXRz W2ldKSB7DQogCQljdXJjbGllbnQgPSBmZnMoY2xpZW50c1JlYWRhYmxlLmZk c19iaXRzW2ldKSAtIDE7DQogCQljb25uID0gQ29ubmVjdGlvblRyYW5zbGF0 aW9uW2N1cmNsaWVudCArIChpIDw8IDUpXTsNCi0JCUZEX0NMUiAoY3VyY2xp ZW50LCAmY2xpZW50c1JlYWRhYmxlKTsNCisJCWNsaWVudHNSZWFkYWJsZS5m ZHNfYml0c1tpXSAmPSB+KCgoZmRfbWFzaykxTCkgPDwgY3VyY2xpZW50KTsN CiAJCWNsaWVudCA9IGNsaWVudHNbY29ubl07DQogCQlpZiAoIWNsaWVudCkN CiAJCSAgICBjb250aW51ZTsNCi0tLSBwcm9ncmFtcy94YXV0aC9wcm9jZXNz LmMub3JpZwlGcmkgSnVsIDIzIDA2OjUwOjUwIDE5OTkNCisrKyBwcm9ncmFt cy94YXV0aC9wcm9jZXNzLmMJU2F0IFNlcCAyMyAxNTozMToyNyAyMDAwDQpA QCAtNzY5LDcgKzc2OSw3IEBADQogc3RhdGljIGludCB3cml0ZV9hdXRoX2Zp bGUgKHRtcF9uYW0pDQogICAgIGNoYXIgKnRtcF9uYW07DQogew0KLSAgICBG SUxFICpmcDsNCisgICAgRklMRSAqZnAgPSBOVUxMOw0KICAgICBBdXRoTGlz dCAqbGlzdDsNCiANCiAgICAgLyoNCkBAIC03NzgsMTIgKzc3OCw5IEBADQog ICAgIHN0cmNweSAodG1wX25hbSwgeGF1dGhfZmlsZW5hbWUpOw0KICAgICBz dHJjYXQgKHRtcF9uYW0sICItbiIpOwkJLyogZm9yIG5ldyAqLw0KICAgICAo dm9pZCkgdW5saW5rICh0bXBfbmFtKTsNCi0gICAgZnAgPSBmb3BlbiAodG1w X25hbSwgIndiIik7CQkvKiB1bWFzayBpcyBzdGlsbCBzZXQgdG8gMDA3NyAq Lw0KLSAgICBpZiAoIWZwKSB7DQotCWZwcmludGYgKHN0ZGVyciwgIiVzOiAg dW5hYmxlIHRvIG9wZW4gdG1wIGZpbGUgXCIlc1wiXG4iLA0KLQkJIFByb2dy YW1OYW1lLCB0bXBfbmFtKTsNCi0JcmV0dXJuIC0xOw0KLSAgICB9IA0KKyAg ICAvKiBDUGhpcHBzIDIwMDAvMDIvMTIgLSBmaXggZmlsZSB1bmxpbmsvZm9w ZW4gcmFjZSAqLw0KKyAgICBmZCA9IG9wZW4odG1wX25hbSwgT19XUk9OTFl8 T19DUkVBVHxPX0VYQ0wsIDA2MDApOw0KKyAgICBpZiAoZmQgIT0gLTEpIGZw ID0gZmRvcGVuKGZkLCAid2IiKTsNCiANCiAgICAgLyoNCiAgICAgICogV3Jp dGUgTUlULU1BR0lDLUNPT0tJRS0xIGZpcnN0LCBiZWNhdXNlIFI0IFhsaWIg a25vd3MNCg== --0-1221069748-969757205=:99058-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 18:13:40 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 1DBC837B42C; Sat, 23 Sep 2000 18:13:38 -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 e8O1DbQ62297; Sat, 23 Sep 2000 21:13:37 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39CD5541.C565AE35@thehousleys.net> Date: Sat, 23 Sep 2000 21:13:37 -0400 From: James Housley Organization: The Housleys dot Net X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Ade Lovett , freebsd-ports@FreeBSD.ORG Subject: Re: Build of latest pan fails References: <20000924010847.A253@parish> <20000923195729.E322@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: > just fine, and I'll feel a lot better. (You'll notice that bento, > which uses 1.2.8, seems to have no problem building this package, > always a good first step to check before having a problem with something). > It's onigiri now and not bento. But more importantly. In all the times I have read the Porter's Handbook, I don't remember seeing any reference to check http://onigiri.freebsd.org/errorlogs as part of the ongoing maintance of submitted ports. Especially about 1 week after it has been commited into the tree. Did I miss this or should I submit a patch? Jim -- "Eagles may soar, but weasels don't get sucked into jet engines" -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 18:45:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 8DFE237B43E for ; Sat, 23 Sep 2000 18:45:27 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13d0r8-000CE1-00 for ports@FreeBSD.org; Sun, 24 Sep 2000 03:45:26 +0200 Date: Sun, 24 Sep 2000 03:45:26 +0200 From: Neil Blakey-Milner To: FreeBSD Ports Subject: makeport part deux - automated port creation tools. Message-ID: <20000924034526.A46867@mithrandr.moria.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, For some time, I've been using a script called "makeport.pl" to auto-generate port skeletons for new ports. Unfortunately, just as I was about to release it to the world, a whole slew of changes hit the ports tree, and it was way out of date. I'm now recreating the automated generation tools, and they're available at http://mithrandr.moria.org/nbm/mkptools/ . mkpskel takes a tarball and creates an empty ports skeleton in a directory. It'll guess what PORTNAME, PORTVERSION, DISTNAME, and friends are supposed to be. For example gopher2_3.tar.gz becomes: PORTNAME= gopher PORTVERSION= 2.3 DISTNAME= gopher2_3 But bzip2-1.0.1.tar.gz becomes: PORTNAME= bzip2 PORTVERSION= 1.0.1 And Squishdot-0-7-1.tar.gz (incorrectly, due to capitalization) becomes: PORTNAME= Squishdot PORTVERSION= 0.7.1 DISTNAME= Squishdot-0-7-1 And so on. mkpextr extracts the tarball, and figures a few things out. Firstly, it works out what WRKSRC or NO_WRKSUBDIR should be set to, if necessary. Then it checks if there's a Makefile, and sets NO_BUILD and NO_INSTALL if not, or finds the right Makefile. It then checks for 'configure', and sees what options it recognizes in there. For gview, I get: LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 GNU_CONFIGURE= YES CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" GTK_CONFIG= ${X11BASE}/bin/gtk12-config For gicq, I get: LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 GNU_CONFIGURE= YES CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" GTK_CONFIG= ${X11BASE}/bin/gtk12-config For kicq, I get: LIB_DEPENDS= kdecore.4:${PORTSDIR}/x11/kdelibs2 GNU_CONFIGURE= YES USE_QT= YES mkpmerge merges the result of mkpskel and mkpextr, in a way that allows it to be run as often as desired - it places # -- eos --- at the end of Makefile after mkpskel, and mkpextr after it. mkpclean removes Makefile.extr, Makefile.old, and 'make clean's. Anyway, I've only just got back to hacking on these. makeport.pl also attempted USE_GMAKE if 'make' failed in a specific way, and searched for ALL_TARGET, if it wasn't 'all'. Anyway, I'd love some comments. Cheers, Neil -- Neil Blakey-Milner Sunesi Clinical Systems 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 Sep 23 18:46:29 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 9D07037B42C; Sat, 23 Sep 2000 18:46:26 -0700 (PDT) Received: from parish ([62.253.91.143]) by mta06-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20000924014624.HHRE19246.mta06-svc.ntlworld.com@parish>; Sun, 24 Sep 2000 02:46:24 +0100 Received: (from mark@localhost) by parish (8.11.0/8.11.0) id e8O1kRF73891; Sun, 24 Sep 2000 02:46:27 +0100 (BST) (envelope-from mark) Date: Sun, 24 Sep 2000 02:46:26 +0100 From: Mark Ovens To: Ade Lovett Cc: ports@FreeBSD.org Subject: Re: Build of latest pan fails Message-ID: <20000924024626.B253@parish> References: <20000924010847.A253@parish> <20000923195729.E322@FreeBSD.org> 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 In-Reply-To: <20000923195729.E322@FreeBSD.org>; from ade@FreeBSD.org on Sat, Sep 23, 2000 at 07:57:29PM -0500 Organization: Total lack of Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Sep 23, 2000 at 07:57:29PM -0500, Ade Lovett wrote: > On Sun, Sep 24, 2000 at 01:08:47AM +0100, Mark Ovens wrote: > > Building of the latest version of news/pan fails: > > > > [snip] > > # pkg_version -v | grep glib > > glib-1.3.1 ? multiple versions (index has 1.2.8,1.3.1) > > Don't do that. glib/gtk 1.3.x is development code, not suitable > for prime time, and will trash your hifi, steal your car, empty > your bank account, and do other bad things. The fact that the code > was looking for something called glib12-config (note the "2") should > have been something of a tiny clue as to what the problem was. > The second tiny clue would have been found in the devel/glib13 > Makefile: > > >>>>> > NO_LATEST_LINK= "Unstable, development version." > >>>>> > > Now, rip glib-1.3.1 (and gtk-1.3.x if installed) out of your system, > install glib/gtk 1.2.8 (*stable* versions), and everything will be > just fine, and I'll feel a lot better. (You'll notice that bento, > which uses 1.2.8, seems to have no problem building this package, > always a good first step to check before having a problem with something). > Thanks for the quick reply. I already checked the ports tree and found 1.2.8 so installed that instead, then it barfed on gtk (again v1.2.7 installed). I installed gtk-1.2.8 and, hey presto, pan built, but why does the dependency checking not pick up the fact that these 2 libs are out of date? > Thank you. > > -aDe > > -- > Ade Lovett, Austin, TX. ade@FreeBSD.org > FreeBSD: The Power to Serve http://www.FreeBSD.org/ -- 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 Sat Sep 23 18:56:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailout1.hananet.net (mailout1.hananet.net [210.220.163.34]) by hub.freebsd.org (Postfix) with ESMTP id C146D37B422; Sat, 23 Sep 2000 18:56:19 -0700 (PDT) Received: from gnomaniac.myhome ([211.58.2.122]) by mailout1.hananet.net (Netscape Messaging Server 4.15) with ESMTP id G1DC1P03.P5Q; Sun, 24 Sep 2000 10:56:13 +0900 Received: (from cjh@localhost) by gnomaniac.myhome (8.11.0/8.11.0) id e8O1stp19274; Sun, 24 Sep 2000 10:54:55 +0900 (KST) (envelope-from cjh@kr.FreeBSD.org) X-Authentication-Warning: gnomaniac.myhome: cjh set sender to cjh@kr.FreeBSD.org using -f To: jhp@cocoja.holywar.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports/21504: New port: korean/tin References: <200009231510.e8NFAF433501@cocoja.holywar.net> From: CHOI Junho Date: 24 Sep 2000 10:54:54 +0900 In-Reply-To: Park JongHwan's message of "Sun, 24 Sep 2000 00:10:15 +0900 (KST)" Message-ID: <86em2ao8pd.fsf@gnomaniac.myhome> Lines: 19 User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "PJ" == Park JongHwan writes: PJ> tin newsreader for Korean. PJ> it is based on chinese/tin I think chinese/tin or korean/tin you suggested is too simple for making separated ports. Just install news/tin and edit configuration file is fine for us. Or, please make slave ports just like chinese/mutt. To other ports developers: Can we accept localized ports doing just "changing default configuration to local language"? -- +++ Any opinions in this posting are my own and not those of my employers +++ CHOI Junho KFUG Web Data Bank FreeBSD, GNU/Linux Developer http://people.FreeBSD.org/~cjh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 18:57:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id 353C937B424 for ; Sat, 23 Sep 2000 18:57:54 -0700 (PDT) Received: from pacbell.net ([63.200.36.94]) by mta5.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0G1D00M4AC3XCI@mta5.snfc21.pbi.net> for freebsd-ports@freebsd.org; Sat, 23 Sep 2000 18:57:33 -0700 (PDT) Date: Sat, 23 Sep 2000 18:57:50 -0700 From: "George W. Dinolt" Subject: Re: xmms 1.2.3 To: bsletten@nova.org Cc: freebsd-ports@freebsd.org Message-id: <39CD5F9E.2A5E958A@pacbell.net> MIME-version: 1.0 X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brian Sletten wrote: > ... > I just tried upgrading to xmms 1.2.3 and MP3 playback stopped working. > ... > I can still > play CDs using xmms, but when I try to play an MP3 there is a clicking > sound and then nothing happens. > ... > I'm running 4.1-STABLE from about a month ago w/ OSS 393o for FreeBSD 4.x. > ... Brian: I can confirm similar behaviour. I had no problems with xmms-1.2.2 but xmms-1.2.3 with and without the 3DNOW patch seems to fail. The build works fine and the program runs. Note that although the Makefile hints that one can disable the 3DNOW patch, there are some bugs in the file which don't permit that. I tweaked the Makefile to get the compilation to go through, but I have no confidence that what I did makes any sense. The symptoms I see in both cases are the same as you reported. The clock reporting the time played seems to increase and in at least once case I got some static. I have tested only on a 4.1 system with sources updated to Saturday evening U.S. Pacific Daylight Time. I am using XFree86-3.3.6. There seems to be a problem with the newest port. I backstepped to the 1.2.2 package and all works well. Regards, George Dinolt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 19: 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 7C29A37B43C for ; Sat, 23 Sep 2000 19:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA12890; Sat, 23 Sep 2000 19:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 23 Sep 2000 19:00:03 -0700 (PDT) Message-Id: <200009240200.TAA12890@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: CHOI Junho Subject: Re: ports/21504: New port: korean/tin Reply-To: CHOI Junho Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21504; it has been noted by GNATS. From: CHOI Junho To: jhp@cocoja.holywar.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports/21504: New port: korean/tin Date: 24 Sep 2000 10:54:54 +0900 >>>>> "PJ" == Park JongHwan writes: PJ> tin newsreader for Korean. PJ> it is based on chinese/tin I think chinese/tin or korean/tin you suggested is too simple for making separated ports. Just install news/tin and edit configuration file is fine for us. Or, please make slave ports just like chinese/mutt. To other ports developers: Can we accept localized ports doing just "changing default configuration to local language"? -- +++ Any opinions in this posting are my own and not those of my employers +++ CHOI Junho KFUG Web Data Bank FreeBSD, GNU/Linux Developer http://people.FreeBSD.org/~cjh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 19:10: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 3D65137B42C for ; Sat, 23 Sep 2000 19:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA16024; Sat, 23 Sep 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 3C66837B424 for ; Sat, 23 Sep 2000 19:03:52 -0700 (PDT) Received: by totem.fix.no (Postfix, from userid 1000) id 0EC7757B7; Sun, 24 Sep 2000 04:07:09 +0200 (CEST) Message-Id: <20000924020709.0EC7757B7@totem.fix.no> Date: Sun, 24 Sep 2000 04:07:09 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21511: Update port: security/pam-mysql Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21511 >Category: ports >Synopsis: Update port: security/pam-mysql >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 Sep 23 19:10:00 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: -Update to latest version. -Use strlcpy rather than strncpy etc. >How-To-Repeat: >Fix: diff -Nur pam-mysql.old/Makefile pam-mysql/Makefile --- pam-mysql.old/Makefile Sun Sep 10 14:57:43 2000 +++ pam-mysql/Makefile Sun Sep 24 00:56:06 2000 @@ -6,7 +6,7 @@ # PORTNAME= pam_mysql -PORTVERSION= 0.4 +PORTVERSION= 0.4.7 CATEGORIES= security databases MASTER_SITES= http://download.sourceforge.net/pam-mysql/ \ http://www.freenix.no/~anders/ diff -Nur pam-mysql.old/files/md5 pam-mysql/files/md5 --- pam-mysql.old/files/md5 Sun Aug 20 20:55:49 2000 +++ pam-mysql/files/md5 Sun Sep 24 00:56:16 2000 @@ -1 +1 @@ -MD5 (pam_mysql-0.4.tar.gz) = ae30788ac9c5d02fa1045d3403d48f2f +MD5 (pam_mysql-0.4.7.tar.gz) = 8442ec07c3de929720bbb8783750a1ff diff -Nur pam-mysql.old/patches/patch-aa pam-mysql/patches/patch-aa --- pam-mysql.old/patches/patch-aa Tue Aug 29 03:32:07 2000 +++ pam-mysql/patches/patch-aa Sun Sep 24 02:43:22 2000 @@ -1,5 +1,5 @@ ---- pam_mysql.c.old Tue Aug 29 03:31:46 2000 -+++ pam_mysql.c Tue Aug 29 03:31:37 2000 +--- pam_mysql.c.old Sun Sep 24 02:26:17 2000 ++++ pam_mysql.c Sun Sep 24 02:42:23 2000 @@ -14,7 +14,6 @@ #include #include @@ -8,106 +8,56 @@ #include #include -@@ -79,7 +78,6 @@ - - int db_connect (MYSQL * auth_sql_server); - void db_close( void ); --static void _pam_log (int err, const char *format,...); - int askForPassword(pam_handle_t *pamh); - - void db_close ( void ) -@@ -114,7 +112,7 @@ - } - if ( retvalue != PAM_SUCCESS ) - { -- _pam_log(LOG_INFO, "MySQL err %s\n", mysql_error(auth_sql_server)); -+ syslog(LOG_INFO, "MySQL err %s", mysql_error(auth_sql_server)); - } - - D (("returning.")); -@@ -149,13 +147,13 @@ - { - sprintf(sql, "%s and %s", sql, options.where); - } -- _pam_log(LOG_ERR,sql); -+ syslog(LOG_ERR,sql); - D ((sql)); - mysql_query (auth_sql_server, sql); - free (sql); - result = mysql_store_result (auth_sql_server); - if (!result) { -- _pam_log(LOG_ERR, mysql_error (auth_sql_server)); -+ syslog(LOG_ERR, mysql_error(auth_sql_server)); - D (("returning.")); - return PAM_AUTH_ERR; - } -@@ -191,17 +189,6 @@ - - /* Global PAM functions stolen from other modules */ - --static void _pam_log (int err, const char *format,...) --{ -- va_list args; -- -- va_start (args, format); -- openlog (PAM_MODULE_NAME, LOG_PID, LOG_AUTH); -- vsyslog (err, format, args); -- va_end (args); -- closelog (); --} -- - int converse(pam_handle_t *pamh, int nargs - , struct pam_message **message - , struct pam_response **response) -@@ -216,14 +203,12 @@ - , response, conv->appdata_ptr); - if ((retval != PAM_SUCCESS) && (retval != PAM_CONV_AGAIN)) - { -- _pam_log(LOG_DEBUG, "conversation failure [%s]" -- , pam_strerror(pamh, retval)); -+ syslog(LOG_DEBUG, "conversation failure [%s]", pam_strerror(pamh, retval)); - } - } - else - { -- _pam_log(LOG_ERR, "couldn't obtain coversation function [%s]" -- , pam_strerror(pamh, retval)); -+ syslog(LOG_ERR, "couldn't obtain coversation function [%s]", pam_strerror(pamh, retval)); - } - return retval; /* propagate error status */ - } -@@ -239,7 +224,7 @@ - prompt = malloc(strlen(PLEASE_ENTER_PASSWORD)); - if (prompt == NULL) - { -- _pam_log(LOG_ERR,"pam_mysql: askForPassword(), out of memory!?"); -+ syslog(LOG_ERR,"pam_mysql: askForPassword(), out of memory!?"); - return PAM_BUF_ERR; - } - else -@@ -251,7 +236,6 @@ - mesg[i] = &msg[i]; - - retval = converse(pamh, ++i, mesg, &resp); --/* _pam_log(LOG_ERR, "retval == %d\n", retval); */ - if (prompt) - { - _pam_overwrite(prompt); -@@ -361,7 +345,7 @@ - - retval = pam_get_user (pamh, &user, NULL); - if (retval != PAM_SUCCESS || user == NULL) { -- _pam_log (LOG_ERR, "no user specified"); -+ syslog(LOG_ERR, "no user specified"); - D (("returning.")); - return PAM_USER_UNKNOWN; - } -@@ -398,7 +382,7 @@ - ,const char **argv) - { - -- _pam_log (LOG_INFO, "acct_mgmt \n"); -+ syslog(LOG_INFO, "acct_mgmt \n"); - return PAM_SUCCESS; - } - +@@ -332,40 +331,40 @@ + } + strcpy (junk, argv[i]); + if ((strchr (junk, (int) '=') != NULL)) { +- strncpy (mybuf, strtok (junk, "="), 255); +- strncpy (myval, strtok (NULL, "="), 255); ++ strlcpy (mybuf, strtok (junk, "="), 255); ++ strlcpy (myval, strtok (NULL, "="), 255); + free (junk); + if (!strcasecmp ("host", mybuf)) { +- strncpy (options.host, myval, 255); ++ strlcpy (options.host, myval, 255); + D (("host changed.")); + } else if (!strcasecmp ("where", mybuf)) { + while ( (mj = strtok(NULL,"=")) != NULL ) + { +- strcat(myval, "="); +- strcat(myval, mj); ++ strlcat(myval, "=", 255); ++ strlcat(myval, mj, 255); + } +- strncpy (options.where, myval, 256); ++ strlcpy (options.where, myval, 256); + D (("where changed.")); + #ifdef DEBUG + syslog(LOG_ERR, "pam_mysql: where now is %s", options.where); + #endif + } else if (!strcasecmp ("db", mybuf)) { +- strncpy (options.database, myval, 16); ++ strlcpy (options.database, myval, 16); + D (("database changed.")); + } else if (!strcasecmp ("user", mybuf)) { +- strncpy (options.dbuser, myval, 16); ++ strlcpy (options.dbuser, myval, 16); + D (("dbuser changed.")); + } else if (!strcasecmp ("passwd", mybuf)) { +- strncpy (options.dbpasswd, myval, 16); ++ strlcpy (options.dbpasswd, myval, 16); + D (("dbpasswd changed.")); + } else if (!strcasecmp ("table", mybuf)) { +- strncpy (options.table, myval, 16); ++ strlcpy (options.table, myval, 16); + D (("table changed.")); + } else if (!strcasecmp ("usercolumn", mybuf)) { +- strncpy (options.usercolumn, myval, 16); ++ strlcpy (options.usercolumn, myval, 16); + D (("usercolumn changed.")); + } else if (!strcasecmp ("passwdcolumn", mybuf)) { +- strncpy (options.passwdcolumn, myval, 16); ++ strlcpy (options.passwdcolumn, myval, 16); + D (("passwdcolumn changed.")); + } else if (!strcasecmp ("crypt", mybuf)) { + if ((!strcmp (myval, "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 Sat Sep 23 19:37:33 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 28C1637B50D; Sat, 23 Sep 2000 19:37:18 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13d1fJ-00022v-00; Sat, 23 Sep 2000 21:37:17 -0500 Date: Sat, 23 Sep 2000 21:37:17 -0500 From: Ade Lovett To: Mark Ovens Cc: ports@FreeBSD.org Subject: Re: Build of latest pan fails Message-ID: <20000923213717.F322@FreeBSD.org> References: <20000924010847.A253@parish> <20000923195729.E322@FreeBSD.org> <20000924024626.B253@parish> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000924024626.B253@parish>; from marko@freebsd.org on Sun, Sep 24, 2000 at 02:46:26AM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 24, 2000 at 02:46:26AM +0100, Mark Ovens wrote: > Thanks for the quick reply. I already checked the ports tree and found > 1.2.8 so installed that instead, then it barfed on gtk (again v1.2.7 > installed). I installed gtk-1.2.8 and, hey presto, pan built, but why does > the dependency checking not pick up the fact that these 2 libs are out of > date? I have no idea about glib/gtk 1.3.x -- in fact, I'm going to look at that later, and probably just rip them out of the tree. As for differences between 1.2.7 and 1.2.8 -- our dependency checking is based around shared library revision numbers right now. Since there was no shared library bump, 1.2.7 and 1.2.8 are indistinguishable, except in the cases where software really does need the latest stable version. See this list, and others, for long discussions on how to go about solving this -- it'll probably be some time before any mechanisms get put in place. However (and this is probably something that should go in the handbook somewhere), if you're having problems with building a port locally, and there is a package for it available on ftp.FreeBSD.org (and mirrors, of course), then there's a local issue. 99% of these issues are out-of-date dependencies (sometimes hidden away in the bowels of the earth). This is where: pkg_version -v | grep -v up-to-date comes in extremely handy. Locate the out-of-date ports, update them, and be happy. Certainly, for things like GNOME, and GNOMEish applications, always check that you have the latest stable versions of dependent ports before filing PRs, or sending stuff to -ports, if they're not up-to-date, fix that, then try again. If it's still broken, then send in the PR or whatever -- my "GNOME builder" box maintains a very up-to-date ports tree (with a bit of extra CPU, it could probably reinstall itself completely every night and generate packages) -- this is my baseline for improving the FreeBSD GNOME ports. If you want to stay "bleeding edge", then you need a system that has the same ports that mine does :) None of the above is a dig at Mark as an individual.. it's just that I'm seeing a worrying trend, with people failing to perform basic consistency checks on their own systems before simply punting for help.. Rule #1: pkg_version -v | grep -v up-to-date Rule #2: cd /usr/ports; make index Rule #3: goto Rule #1 -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 Sep 23 20:18:40 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 B694737B424 for ; Sat, 23 Sep 2000 20:18:37 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 0467C1A25; Sat, 23 Sep 2000 22:14:24 -0500 (EST) Date: Sat, 23 Sep 2000 22:14:24 -0500 From: Will Andrews To: Brandon Fosdick Cc: Trevor Johnson , ports@FreeBSD.ORG Subject: Re: ports tree idea: Combine DESCR and COMMENT Message-ID: <20000923221424.Q1054@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Brandon Fosdick , Trevor Johnson , ports@FreeBSD.ORG References: <39CD491F.C0AE18F7@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39CD491F.C0AE18F7@glue.umd.edu>; from bfoz@glue.umd.edu on Sat, Sep 23, 2000 at 08:21:51PM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Sep 23, 2000 at 08:21:51PM -0400, Brandon Fosdick wrote: > These all sound like good ideas to me, why didn't anything ever come of it? Because it would effectively double the size of the ports repository for the time being, and would make for a very long day for the person(s) who took up the job of repocopying all the files. -- Will Andrews GCS/E/S @d- s+:+ a--- C++ UB++++$ P+ L- E--- W+ N-- !o ?K w--- O- M+ V- PS+ PE++ Y+ PGP+>+++ t++ 5 X+ R+ tv+ b++ DI+++ D+ G++ e>++++ h! r- y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 20:24:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lola.heim10.tu-clausthal.de (lola.heim10.tu-clausthal.de [139.174.241.25]) by hub.freebsd.org (Postfix) with ESMTP id 774B137B422; Sat, 23 Sep 2000 20:24:13 -0700 (PDT) Received: from heim9.tu-clausthal.de (localhost [127.0.0.1]) by lola.heim10.tu-clausthal.de (8.9.3/8.9.3) with ESMTP id FAA01184; Sun, 24 Sep 2000 05:24:12 +0200 (CEST) (envelope-from norbert.irmer@heim9.tu-clausthal.de) Message-ID: <39CD73DB.5F0A766B@heim9.tu-clausthal.de> Date: Sun, 24 Sep 2000 05:24:11 +0200 From: Norbert Irmer X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: will@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21179: New port: math/gul-vdog-qt References: <200009172220.PAA85636@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org will@FreeBSD.org wrote: > > Synopsis: New port: math/gul-vdog-qt > > State-Changed-From-To: open->feedback > State-Changed-By: will > State-Changed-When: Sun Sep 17 15:19:28 PDT 2000 > State-Changed-Why: > I can't get this port to work on my system, which has QT 2.2.0 > release from ports. It says it can't find libqgl, but as far > as I know, the functionality of qgl was integrated into the usual > qt library itself. > > Responsible-Changed-From-To: freebsd-ports->will > Responsible-Changed-By: will > Responsible-Changed-When: Sun Sep 17 15:19:28 PDT 2000 > Responsible-Changed-Why: > I'll take this. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21179 Sorry, when I submitted this port the directory "qt22" contained a qt snapshot which had a separate "libqgl.a". I have added a qt version check to the configure script, and now only link with this library when the qt version is smaller then 220. I already sent a followup to the pr a week ago, but nobody seems to have noticed this (probably due to overworking), so here again the patch which fixes the problem: diff -u -r ./Makefile ../gul-vdog-qt/Makefile --- ./Makefile Sun Sep 24 04:50:11 2000 +++ ../gul-vdog-qt/Makefile Sun Sep 24 04:45:50 2000 @@ -6,7 +6,7 @@ # PORTNAME= gul-vdog-qt -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.2 CATEGORIES= math graphics MASTER_SITES= http://download.sourceforge.net/gul/ diff -u -r ./files/md5 ../gul-vdog-qt/files/md5 --- ./files/md5 Sun Sep 24 04:50:11 2000 +++ ../gul-vdog-qt/files/md5 Sun Sep 24 04:45:50 2000 @@ -1 +1 @@ -MD5 (gul-vdog-qt-0.4.1.tar.gz) = 20bb4e6170c4298095fd650a11a531ce +MD5 (gul-vdog-qt-0.4.2.tar.gz) = cae6b59547d0bcb23ea368bcfa4caad0 diff -u -r ./patches/patch-aa ../gul-vdog-qt/patches/patch-aa --- ./patches/patch-aa Sun Sep 24 04:50:11 2000 +++ ../gul-vdog-qt/patches/patch-aa Sun Sep 24 04:45:50 2000 @@ -1,5 +1,5 @@ ---- configure.orig Mon Sep 4 20:02:53 2000 -+++ configure Mon Sep 4 20:03:09 2000 +--- configure.orig Mon Sep 4 20:02:53 2000 ++++ configure Mon Sep 4 20:03:09 2000 @@ -1040,11 +1040,6 @@ top_srcdir="$ac_dots$ac_given_srcdir" ;; esac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 20:41: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 2065237B42C; Sat, 23 Sep 2000 20:41:15 -0700 (PDT) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA31528; Sat, 23 Sep 2000 20:41:15 -0700 (PDT) (envelope-from dannyboy@FreeBSD.org) Date: Sat, 23 Sep 2000 20:41:15 -0700 (PDT) From: Message-Id: <200009240341.UAA31528@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org, nbm@FreeBSD.org Subject: Re: ports/21487: Update and name change for net/dnscache (now djbdns) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update and name change for net/dnscache (now djbdns) Responsible-Changed-From-To: freebsd-ports->nbm Responsible-Changed-By: dannyboy Responsible-Changed-When: Sat Sep 23 20:40:42 PDT 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21487 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 20: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 7A82637B422; Sat, 23 Sep 2000 20:43:15 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA31907; Sat, 23 Sep 2000 20:43:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Sat, 23 Sep 2000 20:43:15 -0700 (PDT) From: Message-Id: <200009240343.UAA31907@freefall.freebsd.org> To: odip@bionet.nsc.ru, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21498: [patch] can't building curl-7.2.1 with openssl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [patch] can't building curl-7.2.1 with openssl State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Sat Sep 23 20:42:55 PDT 2000 State-Changed-Why: Problem resolved http://www.freebsd.org/cgi/query-pr.cgi?pr=21498 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 21: 4:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mumble.foobie.net (adsl-216-103-105-178.dsl.snfc21.pacbell.net [216.103.105.178]) by hub.freebsd.org (Postfix) with ESMTP id 0DD8F37B422 for ; Sat, 23 Sep 2000 21:04:08 -0700 (PDT) Received: (from sbeitzel@localhost) by mumble.foobie.net (8.11.0/8.11.0) id e8O444I01366 for ports@freebsd.org; Sat, 23 Sep 2000 21:04:04 -0700 (PDT) (envelope-from sbeitzel) From: Stephen Beitzel Message-Id: <200009240404.e8O444I01366@mumble.foobie.net> Subject: upsd - start script To: ports@freebsd.org Date: Sat, 23 Sep 2000 21:04:04 -0700 (PDT) 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 I just downloaded & built the upsd port (/usr/ports/sysutils/upsd). I noticed that this port doesn't install any manpages, nor does it have anything in the included README or LICENSE files. Fortunately, the default upsd.conf seems to work okay for me. I searched the PR database for anything on upsd and only found two items dating from 8/13/2000. These seem to be about updating the daemon to handle 230 volt hardware as well as 115. In one of the patches there's something that looks like a control script (a comment claims it's based on apachectl) but when I looked around on my installation, I didn't see it. In any case, it looks to me like the port is still missing a startup/shutdown script for /usr/local/etc/rc.d -- so I wrote a really simple one. Should I submit it, and if so, where and how? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 21:38: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 6946237B42C; Sat, 23 Sep 2000 21:38:16 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA43708; Sat, 23 Sep 2000 21:38:16 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Date: Sat, 23 Sep 2000 21:38:16 -0700 (PDT) From: Message-Id: <200009240438.VAA43708@freefall.freebsd.org> To: clive@CirX.ORG, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21496: Update and enslave zh-tin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update and enslave zh-tin State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sat Sep 23 21:38:00 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21496 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 21:52: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 C274E37B42C; Sat, 23 Sep 2000 21:52:46 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA46864; Sat, 23 Sep 2000 21:52:46 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Date: Sat, 23 Sep 2000 21:52:46 -0700 (PDT) From: Message-Id: <200009240452.VAA46864@freefall.freebsd.org> To: clive@CirX.ORG, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21490: update chinese/xmms to 1.2.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update chinese/xmms to 1.2.3 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Sat Sep 23 21:52:32 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21490 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 23 22: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 7B47537B424 for ; Sat, 23 Sep 2000 22:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA56653; Sat, 23 Sep 2000 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D263337B422; Sat, 23 Sep 2000 22:38:43 -0700 (PDT) Message-Id: <20000924053843.D263337B422@hub.freebsd.org> Date: Sat, 23 Sep 2000 22:38:43 -0700 (PDT) From: mvh@ix.netcom.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21513: stunnel port should be compiled using non-blocking I/O Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21513 >Category: ports >Synopsis: stunnel port should be compiled using non-blocking I/O >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 Sep 23 22:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Harding >Release: 4.1-Stable >Organization: NameSafe >Environment: FreeBSD netcom1.netcom.com 4.1-STABLE FreeBSD 4.1-STABLE #0: Sat Sep 23 10:18:59 PDT 2000 root@netcom1.netcom.com:/usr/obj/usr/src/sys/MIKEIPF i386 >Description: There is a configuration option to set non-blocking I/O in the stunnel port, and the port compiles fine with this option on. This should be the default, as otherwise you get delays in transfers. >How-To-Repeat: look in the file "ssl.c" on line 29. You see: /* Non-blocking sockets are disabled by default */ /* It works on most systems so feel free to uncomment the next line */ /* #define USE_NBIO */ ...it compiles fine and runs better with the definition enabled >Fix: enable the #define USE_NBIO option in the above file. >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 Sep 23 23: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 86D8C37B424 for ; Sat, 23 Sep 2000 23:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA63323; Sat, 23 Sep 2000 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ooblick.com (pm7a-12.his.com [216.200.82.12]) by hub.freebsd.org (Postfix) with ESMTP id BBAE737B422 for ; Sat, 23 Sep 2000 23:07:47 -0700 (PDT) Received: (from arensb@localhost) by ooblick.com (8.9.3/8.9.3) id CAA92093; Sun, 24 Sep 2000 02:07:45 -0400 (EDT) (envelope-from arensb) Message-Id: <200009240607.CAA92093@ ooblick.com> Date: Sun, 24 Sep 2000 02:07:45 -0400 (EDT) From: arensb+freebsd-ports@ooblick.com Reply-To: arensb+freebsd-ports@ooblick.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21514: Port update: coldsync-1.4.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21514 >Category: ports >Synopsis: Port update: coldsync 1.2.0 -> 1.4.5 >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 Sep 23 23:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andrew Arensburger >Release: FreeBSD 4.0-RELEASE i386 >Organization: None >Environment: FreeBSD 3.x or later >Description: This is an update of the palm/coldsync port, to bring it up to date with the current stable release. >How-To-Repeat: >Fix: Apply the following patch. There are no new or deleted files in the port itself. diff -uNr coldsync-port-1.2.0/Makefile coldsync-port-1.4.5/Makefile --- coldsync-port-1.2.0/Makefile Sat Jun 3 06:13:52 2000 +++ coldsync-port-1.4.5/Makefile Sat Sep 23 17:49:55 2000 @@ -1,16 +1,16 @@ # New ports collection makefile for: coldsync -# Date created: 21 January 2000 -# Whom: Andrew Arensburger +# Date created: 24 September 2000 +# Whom: Andrew Arensburger # -# $FreeBSD: ports/palm/coldsync/Makefile,v 1.5 2000/06/03 08:02:52 knu Exp $ +# $FreeBSD$ # PORTNAME= coldsync -PORTVERSION= 1.2.0 +PORTVERSION= 1.4.5 CATEGORIES= palm comms MASTER_SITES= http://www.ooblick.com/software/coldsync/ -MAINTAINER= arensb@ooblick.com +MAINTAINER= arensb+freebsd-ports@ooblick.com RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Palm/PDB.pm:${PORTSDIR}/palm/p5-Palm @@ -21,19 +21,19 @@ MAN1= send-mail.1 \ todo-text.1 MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -MAN3= ColdSync.3 +MAN3= ColdSync.3 \ + ColdSync::SPC.3 MAN8= coldsync.8 MANCOMPRESSED= no .include -# I don't know from when {Net,Open}BSD support USB. +# I don't know how to test for a version of {Net,Open}BSD that supports USB. .if ${OPSYS} == "FreeBSD" && ${OSVERSION} >= 400000 CONFIGURE_ARGS+= --with-usb .endif post-install: @install-info ${PREFIX}/info/conduits.info ${PREFIX}/info/dir - @install-info ${PREFIX}/info/pdb.info ${PREFIX}/info/dir .include diff -uNr coldsync-port-1.2.0/files/md5 coldsync-port-1.4.5/files/md5 --- coldsync-port-1.2.0/files/md5 Sat Jun 3 06:13:52 2000 +++ coldsync-port-1.4.5/files/md5 Sun Sep 24 01:54:20 2000 @@ -1 +1 @@ -MD5 (coldsync-1.2.0.tar.gz) = cc70d70b1fd62ccf620c45e33808ec8e +MD5 (coldsync-1.4.5.tar.gz) = 2a6bad7b40e5faacc35292fa262819bc diff -uNr coldsync-port-1.2.0/pkg/PLIST coldsync-port-1.4.5/pkg/PLIST --- coldsync-port-1.2.0/pkg/PLIST Sat Jun 3 06:13:52 2000 +++ coldsync-port-1.4.5/pkg/PLIST Sat Sep 23 17:38:34 2000 @@ -1,5 +1,7 @@ bin/coldsync lib/perl5/site_perl/%%PERL_VER%%/ColdSync.pm +lib/perl5/site_perl/%%PERL_VER%%/ColdSync/SPC.pm +@dirrm lib/perl5/site_perl/%%PERL_VER%%/ColdSync lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ColdSync/.packlist @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/ColdSync libexec/coldsync/send-mail @@ -7,8 +9,5 @@ @dirrm libexec/coldsync etc/sample.coldsync.rc @unexec install-info --delete %D/info/conduits.info %D/info/dir -@unexec install-info --delete %D/info/pdb.info %D/info/dir info/conduits.info -info/pdb.info @exec install-info %D/info/conduits.info %D/info/dir -@exec install-info %D/info/pdb.info %D/info/dir >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message