Commit graph

15941 commits

Author SHA1 Message Date
hubertf
f297a044f3 Slurp in suse_png-7.0, and bump to suse_linux-6.3nb3 2000-12-13 20:59:44 +00:00
jdolecek
0a82dce34a add and enable suse_libpng 2000-12-13 20:07:42 +00:00
jdolecek
e60a6fa734 SuSe 7.0 libpng package
created using suse_libjpeg as a template
2000-12-13 20:06:01 +00:00
hubertf
315032b9d4 Apply the four available (official) patches for this package, noted in
PR 11724 by Per Amund Amundsen <pa@bsd-amundsen.ux.his.no>.

While here, note that this pkg wants rman to build -> BUILD_DEPENDS.
2000-12-13 19:21:42 +00:00
jlam
89f4c172cd Remove trailing / from dirname 2000-12-13 17:49:39 +00:00
jlam
62494c13e6 Add and enable wxWindows-docs. 2000-12-13 17:42:19 +00:00
jlam
dd418e43ed wxWindows-docs: HTML documentation for the wxWindows GUI toolkit 2000-12-13 17:41:20 +00:00
kei
c68aba7ec5 Add and enable "xm7" package. 2000-12-13 17:13:53 +00:00
kei
9d51806bb7 Initial import of "xm7" package.
X11-based FM-7 emulator
2000-12-13 17:12:19 +00:00
jlam
d97a637b50 Fix typo in MASTER_SITES. Closes pkg/11723 by zuntum@eik.pl. 2000-12-13 16:35:23 +00:00
jlam
012eb86717 Rename pwcheck' rc.d control script to sasl_pwcheck' to avoid name clash
with NetBSD 1.5's existing /etc/rc.d/pwcheck script.
2000-12-13 16:24:50 +00:00
taca
70e636c13d - Add a patch from http://www.squid-cache.org/Versions/v2/2.3/bugs/ for
fixing "CARP assertion on sum of load factors" bug.
- Update package name to squid-2.3s4nb3.
2000-12-13 16:03:39 +00:00
tron
d1e8f39827 Create and remove directory "share/doc/kde/HTML/pt" in "kdebase" package
because it it used by the "kdegames" and "kdevelop" packages.
2000-12-13 11:46:37 +00:00
garbled
999e5ec01d Add and enable crossfire-cli and crossfire-srv, and fix some stupidity
in my initial import.
2000-12-13 08:31:01 +00:00
garbled
2edec53def Remove this pkg, as it has been replaced with separate client/server
packages in the new version.
2000-12-13 08:23:19 +00:00
garbled
d868849f43 This is the client side of the new split client/server crossfire pkg.
Again, too many changes to list.
2000-12-13 08:19:20 +00:00
garbled
49d9dc52d5 Import new pkg fro crossfire-srv. This is the server portion of the
crossfire game, which has now been split out from the client side.

Too many differences to list from the old version.
2000-12-13 08:18:01 +00:00
jwise
a024161d9c Update jakarta-tomcat to 3.1.1. This is a security fix release, and the
vulnerabilities file will be updated.

Changes from jakarta-tomcat-3.1:

===============================================================================
6.  SECURITY VULNERABILITIES FIXED IN TOMCAT 3.1.1


6.1 Administrative Application Enabled By Default

The administrative application (at context path "/admin") was enabled by
default in Tomcat 3.1, which allowed unauthenticated remote users to add and
remove appliations from a running Tomcat 3.1 installation if it was left
installed.

To avoid such problems, the administrative application has been removed from
the binary distribution of Tomcat 3.1.1.  It can be installed if desired by:
- Downloading the source distribution of Tomcat 3.1.1.
- Modifying the "build.xml" file to remove the commenting around the
  logic that creates the adminstrative application.
- Running the build.sh or build.bat script.


6.2 Case Sensitive Matches on Static Resources

In Tomcat 3.1, matches against the filenames of static resources was done in a
case insensitive manner on case insensitive platforms (such as Microsoft
Windows).  This can cause sensitive information to be exposed to remote users
who experiment with differently cased request URIs.

To avoid such problems, Tomcat 3.1.1 performs filename comparisons for static
resources in a case sensitive manner, even on Windows.  This means that your
hyperlinks must specify the correct case, or a 404 error will be returned.

Because this can cause significant conversion problems for existing
applications deployed on Tomcat 3.1, a configuration option is provided to
temporarily turn off case sensitive matching.  Edit the file "conf/web.xml"
and modify the value for the "caseSensitive" initialization parameter to the
default file-serving servlet.

WARNING:  CHANGING THIS SETTING WILL RE-INTRODUCE THE SECURITY VULNERABILITY
PRESENT IN TOMCAT 3.1 -- IT IS *STRONGLY* RECOMMENDED THAT YOU CORRECT YOUR
URLS TO MATCH CORRECTLY INSTEAD OF USING THIS OPTION.  Note:  All later
versions of Tomcat perform filename matches in a case sensitive manner.


6.3 Snoop Servlet Mappings in Example Application

In the deployment descriptor for the example application delivered with
Tomcat 3.1, a "snoop" servlet was mapped to URL patterns "/snoop" and
"*.snp".  Theses mappings (in particular the second one) could cause exposure
of sensitive information on the internal organization of your web application
(for example, when a non-existent page "foo.snp" is requested).

To avoid these problems, the offending mappings have been commented out.


6.4 Show Source Vulnerability

The example application delivered with Tomcat 3.1 included a mechanism to
display the source code for the JSP page examples.  This mechanism could
be used to bypass the restrictions on displaying sensitive information in
the WEB-INF and META-INF directories.  This vulnerability has been removed.


6.5 Requesting Unknown JSP Pages

In Tomcat 3.1, the error message in response to a request for an unknown JSP
page would include the absolute disk file pathname of the corresponding file
which could not be found, which exposes sensitive information about how your
application is deployed.  The error message has been adjusted to include only
the context-relative path of the JSP page which could not be found.


6.6 Session ID Vulnerability

The algorithm used to calculate session identifiers for new sessions was
subject to attack by attempting to guess what the next session identifier will
be, and therefore hijack the session.  In addition, the generated identifier
exposed sensitive information (the number of sessions that have been created
since this web application was started.

To avoid these problems, the session identifier generation algorithm has been
replaced by the algorithm used in Tomcat 3.2, which is not subject to these
attacks, and does not expose session count information.


6.7 Server Shutdown Vulnerability

In Tomcat 3.1, it was possible to establish a remote network connection to the
AJP12 connector and cause Tomcat to shut itself down.  Now, this network
connection must be created from the same server that Tomcat is running on.

NOTE:  While this is more secure than Tomcat 3.1 (and mirrors the protection
provided by Tomcat 3.2), it is still vulnerable to attack by users who can
create socket connections from the server.  Suitable use of firewalls and
"TCP Wrappers" applications are suggested around the APJ12 port.
2000-12-13 03:49:30 +00:00
wiz
0aafd1eccf add and enable gnotepad 2000-12-13 01:25:14 +00:00
wiz
7118ed3f9e Another HTML/text editor, GNOME based. Supplied in pkg/11668 by
Jared McNeill.
2000-12-13 01:14:51 +00:00
kei
12ef2ff147 Add and enable "LPRng-core" and "LPRng-doc" packages. 2000-12-13 00:40:06 +00:00
kei
37a5f5da78 set PKGNAME to LPRng-doc-3.6.13. 2000-12-13 00:37:10 +00:00
kei
5febb8ed32 add plist file removed accidentaly in previous commit. 2000-12-13 00:34:31 +00:00
kei
d6cde4da99 make "LPRng" package to meta-package which depends on "LPRng-core" and
"LPRng-doc" packages.
2000-12-13 00:31:05 +00:00
kei
bcada70d38 Splitted "LPRng" package into "LPRng-core" and "LPRng-doc" packages.
Also updated -core to 3.6.26, -doc to 3.6.13.

Install DVI document as well.
2000-12-12 20:12:06 +00:00
kei
287ffdeed3 Splitted "LPRng" package into "LPRng-core" and "LPRng-doc" packages.
Also updated "LPRng-core" to 3.6.26, "LPRng-doc" to 3.6.13.

fixes CERT Advisory CA-2000-22.
2000-12-12 20:09:42 +00:00
drochner
29faa22ee1 update HOMEPAGE
need to install GL/glext.h explicitely
2000-12-12 19:16:56 +00:00
drochner
c8e9a08523 update to 5.2
too many changes to list here - see the HOMEPAGE for details
2000-12-12 18:23:12 +00:00
jlam
3b588efa10 Update wxGTK to 2.2.3. Relevant changes from version 2.2.2:
Fixed bugs in HTTP code.

Implemented wxNO_FULL_REPAINT_ON_RESIZE whenever possible
and reduced flicker a little (no longer diables GTK's own
anti-flicker code).

Always have a clipping region equivalent to the update
region in OnPaint events (such as under wxMSW and wxMac).

Implemented wxListBox::SetFirstItem().

Fixed some minor problems in HTML code, wxListCtrl,
wxListBox.

Updated many translations, added Swedish.

Changed default screenpixels-per-inch from 100 to 75 in
printing code.

Updated AFM font metrics for Ghostscript fonts and let
Linux and FreeBSD default to using GS fonts (and not
Adobe fonts).
2000-12-12 18:09:57 +00:00
abs
93e9520a60 Wildcard DEPENDS - half were broken. 2000-12-12 17:52:32 +00:00
itojun
0b3d3ed774 ignore gdbm. PR 11706. 2000-12-12 17:42:55 +00:00
drochner
9ae006149f update to 3.4
too many changes to list here, see HOMEPAGE for details
simplified installation a bit to save the need to list all the individual
support files in the Makefile
2000-12-12 17:29:51 +00:00
drochner
422b29d263 update to Mesa 3.4
Changes:
    New:
    - optimized glDrawPixels for glPixelZoom(1,-1)
    Bug Fixes:
    - widgets-mesa/src/*.c files were missing from 3.3 distro
    - include/GL/mesa_wgl.h file was missing from 3.3 distro
    - fixed some Win32 compile problems
    - texture object priorities weren't getting initialized to 1.0
    - glAreTexturesResident return value was wrong when using hardware
    - glXUseXFont segfaulted when using 3dfx driver (via MESA_GLX_FX)
    - glReadPixels with GLushort packed types was broken
    - fixed a few bugs in the GL_EXT_texture_env_combine texture code
    - glPush/PopAttrib(GL_ENABLE_BIT) mishandled multi-texture enables
    - fixed some typos/bugs in the VB code
    - glDrawPixels(GL_COLOR_INDEX) to RGB window didn't work
    - optimized glDrawPixels paths weren't being used
    - per-fragment fog calculation didn't work without a Z buffer
    - improved blending accuracy, fixes Glean  blendFunc test failures
    - glPixelStore(GL_PACK/UNPACK_SKIP_IMAGES) wasn't handled correctly
    - glXGetProcAddressARB() didn't always return the right address
    - gluBuild[12]DMipmaps() didn't grok the GL_BGR pixel format
    - texture matrix changes weren't always detected (GLUT projtex demo)
    - fixed random color problem in vertex fog code
    - fixed Glide-related bug that let Quake get a 24-bit Z buffer
    Changes:
    - finished internal support for compressed textures for DRI
2000-12-12 17:22:38 +00:00
jlam
47e69537ee Install HTML documentation under ${PREFIX}/share/doc/html. 2000-12-12 16:51:40 +00:00
jlam
7eb54c8a4a Install HTML documentation under ${PREFIX}/share/doc/html. 2000-12-12 16:25:33 +00:00
jlam
eeacd671b6 Add ${USE_PAM}-triggered PAM support. 2000-12-12 16:04:06 +00:00
jlam
c42e57435f Add ${USE_PAM}-triggered PAM authentication support. 2000-12-12 16:03:13 +00:00
wiz
1068b52c1d Update HOMEPAGE 2000-12-12 13:56:53 +00:00
wiz
a590b74211 Complete move of 9wm from category plan9 to wm. 2000-12-12 13:07:14 +00:00
wiz
038a6b30bb Move 9wm to category wm. 2000-12-12 13:05:02 +00:00
drochner
9ae5e5231c Arghh - the distfile changes without changing its name.
Put it into a DIST_SUBDIR to get a chance to fetch a usable one from
a distfile mirror.
2000-12-12 11:14:49 +00:00
rh
d0d05b0e8e Add and enable fair-identd 2000-12-12 10:29:19 +00:00
rh
98496e1c8a Initial import of fair-identd-20000201, a small, fast identd that is
RFC-1413 compliant, but returns no useful information.
2000-12-12 10:28:45 +00:00
itojun
d5689c8473 remove bogus bound-check. need revisit (DoS issue is not re-introduced).
sync with kame
2000-12-12 08:16:00 +00:00
jlam
896dfc65d9 It's "-Wl,-R${LOCALBASE}/lib", not "-W,-R${LOCALBASE}/lib".
^
2000-12-12 06:30:26 +00:00
wiz
8c91a6f68a Remove packages that have been moved from x11 to wm (oops, forgot Makefiles). 2000-12-12 02:19:57 +00:00
wiz
5be08e0178 Added wm category to main Makefile; remove packages that have been moved
from x11 to wm; fix paths in packages that depend on the moved ones.
2000-12-12 02:10:16 +00:00
wiz
b48aa2febf Add new category wm for window managers, and move lots of package from
x11 here. Only changes are: `wm' in category added and some paths fixed.
2000-12-12 02:03:46 +00:00
wiz
a32b3a5655 Unify Makefiles -- mostly headers: remove FreeBSD Ids.
Consistent 4 character indentation of SUBDIR entries.
2000-12-12 01:30:36 +00:00
david
678a50db46 Add authoritative CPAN ftp site as a last resort in case packages have
not yet propagated to mirror sites. Closes PR pkg/11591 from Damon Brodie
2000-12-12 01:04:16 +00:00