Remove trailing spaces.
This commit is contained in:
parent
f60e7ea91d
commit
bd986edbc7
63 changed files with 137 additions and 137 deletions
|
@ -1,10 +1,10 @@
|
||||||
GStreamer is a library that allows the construction of graphs of
|
GStreamer is a library that allows the construction of graphs of
|
||||||
media-handling components, ranging from simple Ogg/Vorbis playback to
|
media-handling components, ranging from simple Ogg/Vorbis playback to
|
||||||
complex audio (mixing) and video (non-linear editing) processing.
|
complex audio (mixing) and video (non-linear editing) processing.
|
||||||
|
|
||||||
Applications can take advantage of advances in codec and filter technology
|
Applications can take advantage of advances in codec and filter technology
|
||||||
transparently. Developers can add new codecs and filters by writing a
|
transparently. Developers can add new codecs and filters by writing a
|
||||||
simple plugin with a clean, generic interface.
|
simple plugin with a clean, generic interface.
|
||||||
|
|
||||||
GStreamer is released under the LGPL.
|
GStreamer is released under the LGPL.
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
GStreamer is a library that allows the construction of graphs of
|
GStreamer is a library that allows the construction of graphs of
|
||||||
media-handling components, ranging from simple Ogg/Vorbis playback to
|
media-handling components, ranging from simple Ogg/Vorbis playback to
|
||||||
complex audio (mixing) and video (non-linear editing) processing.
|
complex audio (mixing) and video (non-linear editing) processing.
|
||||||
|
|
||||||
Applications can take advantage of advances in codec and filter technology
|
Applications can take advantage of advances in codec and filter technology
|
||||||
transparently. Developers can add new codecs and filters by writing a
|
transparently. Developers can add new codecs and filters by writing a
|
||||||
simple plugin with a clean, generic interface.
|
simple plugin with a clean, generic interface.
|
||||||
|
|
||||||
GStreamer is released under the LGPL.
|
GStreamer is released under the LGPL.
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
GStreamer is a library that allows the construction of graphs of
|
GStreamer is a library that allows the construction of graphs of
|
||||||
media-handling components, ranging from simple Ogg/Vorbis playback to
|
media-handling components, ranging from simple Ogg/Vorbis playback to
|
||||||
complex audio (mixing) and video (non-linear editing) processing.
|
complex audio (mixing) and video (non-linear editing) processing.
|
||||||
|
|
||||||
Applications can take advantage of advances in codec and filter technology
|
Applications can take advantage of advances in codec and filter technology
|
||||||
transparently. Developers can add new codecs and filters by writing a
|
transparently. Developers can add new codecs and filters by writing a
|
||||||
simple plugin with a clean, generic interface.
|
simple plugin with a clean, generic interface.
|
||||||
|
|
||||||
GStreamer is released under the LGPL.
|
GStreamer is released under the LGPL.
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
$NetBSD: README,v 1.9 2007/07/02 19:05:29 tnn Exp $
|
$NetBSD: README,v 1.10 2007/10/09 19:19:08 martti Exp $
|
||||||
|
|
||||||
To try to get pkgsrc working on your system, please try the following
|
To try to get pkgsrc working on your system, please try the following
|
||||||
as root:
|
as root:
|
||||||
|
|
||||||
# ./bootstrap
|
# ./bootstrap
|
||||||
[ --workdir <workdir> ]
|
[ --workdir <workdir> ]
|
||||||
[ --prefix <prefix> ]
|
[ --prefix <prefix> ]
|
||||||
[ --pkgdbdir <pkgdbdir> ]
|
[ --pkgdbdir <pkgdbdir> ]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
$NetBSD: README.OpenBSD,v 1.2 2004/07/31 04:07:03 xtraeme Exp $
|
$NetBSD: README.OpenBSD,v 1.3 2007/10/09 19:19:08 martti Exp $
|
||||||
|
|
||||||
Please read the general README file as well.
|
Please read the general README file as well.
|
||||||
|
|
||||||
|
@ -18,8 +18,8 @@ good idea to move them out of the way to avoid confusion, e.g.:
|
||||||
mv pkg_info pkg_info.orig
|
mv pkg_info pkg_info.orig
|
||||||
|
|
||||||
3. An example /etc/mk.conf file will be placed in mk.conf.example file
|
3. An example /etc/mk.conf file will be placed in mk.conf.example file
|
||||||
when you use the bootstrap script. OpenBSD's make program uses /etc/mk.conf
|
when you use the bootstrap script. OpenBSD's make program uses /etc/mk.conf
|
||||||
as well. You can work around this by enclosing all the pkgsrc specific parts
|
as well. You can work around this by enclosing all the pkgsrc specific parts
|
||||||
of the mk.conf file with:
|
of the mk.conf file with:
|
||||||
|
|
||||||
.ifdef BSD_PKG_MK
|
.ifdef BSD_PKG_MK
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# $NetBSD: mkbinarykit,v 1.25 2007/08/01 14:03:49 joerg Exp $
|
# $NetBSD: mkbinarykit,v 1.26 2007/10/09 19:19:08 martti Exp $
|
||||||
#
|
#
|
||||||
# Make a binary bootstrap kit and place it in targetdir (or current
|
# Make a binary bootstrap kit and place it in targetdir (or current
|
||||||
# working directory if not specified). The mk.conf.example file is
|
# working directory if not specified). The mk.conf.example file is
|
||||||
|
@ -35,7 +35,7 @@ mkbinarykit_tar()
|
||||||
{
|
{
|
||||||
# in case tar was built by bootstrap
|
# in case tar was built by bootstrap
|
||||||
PATH="$prefix/bin:$PATH"; export PATH
|
PATH="$prefix/bin:$PATH"; export PATH
|
||||||
[ ! -d $sysconfdir ] && mkdir -p $sysconfdir
|
[ ! -d $sysconfdir ] && mkdir -p $sysconfdir
|
||||||
cp ${wrkdir}/mk.conf.example $mkfile && \
|
cp ${wrkdir}/mk.conf.example $mkfile && \
|
||||||
cd / && \
|
cd / && \
|
||||||
tar -hcf "$targetdir/bootstrap-pkgsrc-$opsys-$osrev-$ospro-$date.tar" \
|
tar -hcf "$targetdir/bootstrap-pkgsrc-$opsys-$osrev-$ospro-$date.tar" \
|
||||||
|
@ -73,7 +73,7 @@ fetch_cmd=""
|
||||||
targetdir=`pwd`
|
targetdir=`pwd`
|
||||||
wrkdir=`pwd`/work # default: relative to pkgsrc/bootstrap
|
wrkdir=`pwd`/work # default: relative to pkgsrc/bootstrap
|
||||||
|
|
||||||
sedprog="sed"
|
sedprog="sed"
|
||||||
|
|
||||||
case "$opsys" in
|
case "$opsys" in
|
||||||
AIX)
|
AIX)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.40 2007/09/13 02:24:51 dmcmahill Exp $
|
# $NetBSD: Makefile,v 1.41 2007/10/09 19:19:08 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= pcb-20070912
|
DISTNAME= pcb-20070912
|
||||||
|
@ -16,7 +16,7 @@ CONFLICTS+= pcb-current-[0-9]*
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_ENV+= WISH=${TOOLS_PATH.wish}
|
CONFIGURE_ENV+= WISH=${TOOLS_PATH.wish}
|
||||||
# work around a problem where the configure script uses
|
# work around a problem where the configure script uses
|
||||||
# AM_PROG_LEX and follows it with an AC_PATH_PROG to try
|
# AM_PROG_LEX and follows it with an AC_PATH_PROG to try
|
||||||
# and make sure that lex really does exist. Unfortunately
|
# and make sure that lex really does exist. Unfortunately
|
||||||
# that test is thrown off by pkgsrc giving a full path for LEX.
|
# that test is thrown off by pkgsrc giving a full path for LEX.
|
||||||
# so, bypass the test and put our desired result directly into the
|
# so, bypass the test and put our desired result directly into the
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
:
|
:
|
||||||
# $Id: import-bmake-sh,v 1.1 2005/12/02 00:14:56 sjg Exp $
|
# $Id: import-bmake-sh,v 1.2 2007/10/09 19:19:08 martti Exp $
|
||||||
|
|
||||||
# Nice and simple, but make sure it is done consistently...
|
# Nice and simple, but make sure it is done consistently...
|
||||||
# Simply unpack bmake-<version>.tar.gz
|
# Simply unpack bmake-<version>.tar.gz
|
||||||
# cd bmake
|
# cd bmake
|
||||||
# then run this script.
|
# then run this script.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.8 2007/06/27 22:52:44 dmcmahill Exp $
|
# $NetBSD: Makefile,v 1.9 2007/10/09 19:19:09 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= cogito-0.18.2
|
DISTNAME= cogito-0.18.2
|
||||||
|
@ -13,12 +13,12 @@ COMMENT= Version control system of the Linux kernel
|
||||||
|
|
||||||
DEPENDS+= scmgit-[0-9]*:../../devel/scmgit
|
DEPENDS+= scmgit-[0-9]*:../../devel/scmgit
|
||||||
|
|
||||||
USE_TOOLS+= gmake bash:run fgrep:run grep:run mktemp:run xargs:run
|
USE_TOOLS+= gmake bash:run fgrep:run grep:run mktemp:run xargs:run
|
||||||
MAKE_FLAGS+= prefix=${PREFIX:Q}
|
MAKE_FLAGS+= prefix=${PREFIX:Q}
|
||||||
|
|
||||||
.include "../../mk/bsd.prefs.mk"
|
.include "../../mk/bsd.prefs.mk"
|
||||||
|
|
||||||
# we need gnu-ish versions of these. In particular, we require
|
# we need gnu-ish versions of these. In particular, we require
|
||||||
# that grep accept -q and xargs accept -0
|
# that grep accept -q and xargs accept -0
|
||||||
.if ${OPSYS} == "SunOS"
|
.if ${OPSYS} == "SunOS"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.24 2007/04/05 18:11:53 gdt Exp $
|
# $NetBSD: Makefile,v 1.25 2007/10/09 19:19:09 martti Exp $
|
||||||
|
|
||||||
DISTNAME= nss-3.11.5
|
DISTNAME= nss-3.11.5
|
||||||
CATEGORIES= security
|
CATEGORIES= security
|
||||||
|
@ -58,7 +58,7 @@ do-install:
|
||||||
|
|
||||||
# The exact set of libfreebl* libs built and installed depends on the
|
# The exact set of libfreebl* libs built and installed depends on the
|
||||||
# operating system and platform. For example, on solaris/sparc you might
|
# operating system and platform. For example, on solaris/sparc you might
|
||||||
# get
|
# get
|
||||||
# libfreebl_32fpu_3.so
|
# libfreebl_32fpu_3.so
|
||||||
# libfreebl_32int_3.so
|
# libfreebl_32int_3.so
|
||||||
# libfreebl_32int64_3.so
|
# libfreebl_32int64_3.so
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.1.1.1 2007/01/10 21:58:19 bad Exp $
|
# $NetBSD: Makefile,v 1.2 2007/10/09 19:19:09 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= Path-Class-0.16
|
DISTNAME= Path-Class-0.16
|
||||||
|
@ -8,7 +8,7 @@ MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/K/KW/KWILLIAMS/}
|
||||||
|
|
||||||
MAINTAINER= bad@netbsd.org
|
MAINTAINER= bad@netbsd.org
|
||||||
HOMEPAGE= http://search.cpan.org/~kwilliams/Path-Class-0.16/
|
HOMEPAGE= http://search.cpan.org/~kwilliams/Path-Class-0.16/
|
||||||
COMMENT= Cross-platform path specification manipulation
|
COMMENT= Cross-platform path specification manipulation
|
||||||
|
|
||||||
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.32 2007/06/08 18:39:24 wiz Exp $
|
# $NetBSD: Makefile,v 1.33 2007/10/09 19:19:09 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= tla-1.3.5
|
DISTNAME= tla-1.3.5
|
||||||
|
@ -19,7 +19,7 @@ CHECK_PORTABILITY_SKIP+= \
|
||||||
src/tla/tests/changeset-tests/chmod_random \
|
src/tla/tests/changeset-tests/chmod_random \
|
||||||
src/tla/tests/changeset-tests/run-spaces-test.sh \
|
src/tla/tests/changeset-tests/run-spaces-test.sh \
|
||||||
src/tla/tests/changeset-tests/run-test.sh
|
src/tla/tests/changeset-tests/run-test.sh
|
||||||
|
|
||||||
|
|
||||||
REPLACE_BASH+= src/tla/tests/changeset-tests/chmod_random
|
REPLACE_BASH+= src/tla/tests/changeset-tests/chmod_random
|
||||||
USE_TOOLS+= bash
|
USE_TOOLS+= bash
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.12 2007/10/07 12:59:12 kano Exp $
|
# $NetBSD: Makefile,v 1.13 2007/10/09 19:19:09 martti Exp $
|
||||||
|
|
||||||
COMPAT_PKG= compat16 # for compat_netbsd/Makefile.common
|
COMPAT_PKG= compat16 # for compat_netbsd/Makefile.common
|
||||||
NETBSD_VERSION= 1.6
|
NETBSD_VERSION= 1.6
|
||||||
|
@ -33,7 +33,7 @@ COMPAT_VERSION= 1.6.2
|
||||||
.if defined(NETBSD_COMPAT32)
|
.if defined(NETBSD_COMPAT32)
|
||||||
COMPAT_EXTRAS= # empty
|
COMPAT_EXTRAS= # empty
|
||||||
. for _netbsd_ in ${ACCEPTABLE_NETBSD}
|
. for _netbsd_ in ${ACCEPTABLE_NETBSD}
|
||||||
COMPAT_EXTRAS= netbsd32_compat16-extras-${COMPAT_VERSION}{,nb*}:../../emulators/netbsd32_compat16-extras
|
COMPAT_EXTRAS= netbsd32_compat16-extras-${COMPAT_VERSION}{,nb*}:../../emulators/netbsd32_compat16-extras
|
||||||
. endfor
|
. endfor
|
||||||
. if !empty(COMPAT_EXTRAS)
|
. if !empty(COMPAT_EXTRAS)
|
||||||
DEPENDS+= ${COMPAT_EXTRAS}
|
DEPENDS+= ${COMPAT_EXTRAS}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.3 2007/10/07 12:59:12 kano Exp $
|
# $NetBSD: Makefile,v 1.4 2007/10/09 19:19:09 martti Exp $
|
||||||
|
|
||||||
COMPAT_PKG= compat20 # for compat_netbsd/Makefile.common
|
COMPAT_PKG= compat20 # for compat_netbsd/Makefile.common
|
||||||
NETBSD_VERSION= 2.0
|
NETBSD_VERSION= 2.0
|
||||||
|
@ -33,7 +33,7 @@ COMPAT_VERSION= 2.1
|
||||||
.if defined(NETBSD_COMPAT32)
|
.if defined(NETBSD_COMPAT32)
|
||||||
COMPAT_EXTRAS= # empty
|
COMPAT_EXTRAS= # empty
|
||||||
. for _netbsd_ in ${ACCEPTABLE_NETBSD}
|
. for _netbsd_ in ${ACCEPTABLE_NETBSD}
|
||||||
COMPAT_EXTRAS= netbsd32_compat20-extras-${COMPAT_VERSION}{,nb*}:../../emulators/netbsd32_compat20-extras
|
COMPAT_EXTRAS= netbsd32_compat20-extras-${COMPAT_VERSION}{,nb*}:../../emulators/netbsd32_compat20-extras
|
||||||
. endfor
|
. endfor
|
||||||
. if !empty(COMPAT_EXTRAS)
|
. if !empty(COMPAT_EXTRAS)
|
||||||
DEPENDS+= ${COMPAT_EXTRAS}
|
DEPENDS+= ${COMPAT_EXTRAS}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.3 2007/10/07 12:59:13 kano Exp $
|
# $NetBSD: Makefile,v 1.4 2007/10/09 19:19:09 martti Exp $
|
||||||
|
|
||||||
COMPAT_PKG= compat30 # for compat_netbsd/Makefile.common
|
COMPAT_PKG= compat30 # for compat_netbsd/Makefile.common
|
||||||
NETBSD_VERSION= 3.0
|
NETBSD_VERSION= 3.0
|
||||||
|
@ -33,7 +33,7 @@ COMPAT_VERSION= 3.1
|
||||||
.if defined(NETBSD_COMPAT32)
|
.if defined(NETBSD_COMPAT32)
|
||||||
COMPAT_EXTRAS= # empty
|
COMPAT_EXTRAS= # empty
|
||||||
. for _netbsd_ in ${ACCEPTABLE_NETBSD}
|
. for _netbsd_ in ${ACCEPTABLE_NETBSD}
|
||||||
COMPAT_EXTRAS= netbsd32_compat30-extras-${COMPAT_VERSION}{,nb*}:../../emulators/netbsd32_compat30-extras
|
COMPAT_EXTRAS= netbsd32_compat30-extras-${COMPAT_VERSION}{,nb*}:../../emulators/netbsd32_compat30-extras
|
||||||
. endfor
|
. endfor
|
||||||
. if !empty(COMPAT_EXTRAS)
|
. if !empty(COMPAT_EXTRAS)
|
||||||
DEPENDS+= ${COMPAT_EXTRAS}
|
DEPENDS+= ${COMPAT_EXTRAS}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.150 2007/03/25 20:42:14 wiz Exp $
|
# $NetBSD: Makefile,v 1.151 2007/10/09 19:19:09 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= xmame-0.106
|
DISTNAME= xmame-0.106
|
||||||
|
@ -64,7 +64,7 @@ MAKE_FLAGS+= ARCH="${MAME_ARCH.${OPSYS}}"
|
||||||
.include "../../x11/libXxf86vm/buildlink3.mk"
|
.include "../../x11/libXxf86vm/buildlink3.mk"
|
||||||
MAKE_FLAGS+= X11_DGA=1
|
MAKE_FLAGS+= X11_DGA=1
|
||||||
MAKE_FLAGS+= X11_XV=1
|
MAKE_FLAGS+= X11_XV=1
|
||||||
.else
|
.else
|
||||||
. if exists(${X11BASE}/include/X11/extensions/xf86dga.h)
|
. if exists(${X11BASE}/include/X11/extensions/xf86dga.h)
|
||||||
MAKE_FLAGS+= X11_DGA=1
|
MAKE_FLAGS+= X11_DGA=1
|
||||||
. endif
|
. endif
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
The FUSE-based union file system allows several directories to be
|
The FUSE-based union file system allows several directories to be
|
||||||
stacked under one mountpoint - this will produce the effect of
|
stacked under one mountpoint - this will produce the effect of
|
||||||
having a number of directories merged under one mountpoint.
|
having a number of directories merged under one mountpoint.
|
||||||
|
|
||||||
This utility is implemented at the user level - to mount a series
|
This utility is implemented at the user level - to mount a series
|
||||||
of roots, simply use:
|
of roots, simply use:
|
||||||
|
|
|
@ -6,7 +6,7 @@ compiler to build. This pkg may also be built using
|
||||||
lang/gcc3 (which contains Ada).
|
lang/gcc3 (which contains Ada).
|
||||||
|
|
||||||
You can download a pre-built Ada compiler, suitable
|
You can download a pre-built Ada compiler, suitable
|
||||||
for bootstrapping this package, from:
|
for bootstrapping this package, from:
|
||||||
|
|
||||||
http://www.johnrshannon.com/NetBSD/ix86/
|
http://www.johnrshannon.com/NetBSD/ix86/
|
||||||
http://www.johnrshannon.com/NetBSD/x86_64/
|
http://www.johnrshannon.com/NetBSD/x86_64/
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
1) You may want to adjust the "Optional languages"
|
1) You may want to adjust the "Optional languages"
|
||||||
section of the Makefile before building this package.
|
section of the Makefile before building this package.
|
||||||
|
|
||||||
2) The Ada compiler front-end of gcc is itself written
|
2) The Ada compiler front-end of gcc is itself written
|
||||||
in Ada. Consequently, an Ada compiler must be used
|
in Ada. Consequently, an Ada compiler must be used
|
||||||
to build this pkg. In pkgsrc, lang/gcc3-ada is version
|
to build this pkg. In pkgsrc, lang/gcc3-ada is version
|
||||||
3.3 of the gcc Ada compiler; it also requires an Ada
|
3.3 of the gcc Ada compiler; it also requires an Ada
|
||||||
compiler to build. This pkg may also be built from
|
compiler to build. This pkg may also be built from
|
||||||
lang/gcc34-ada.
|
lang/gcc34-ada.
|
||||||
|
|
||||||
For bootstrapping, you can download a pre-built version
|
For bootstrapping, you can download a pre-built version
|
||||||
|
@ -14,6 +14,6 @@
|
||||||
http://www.johnrshannon.com/NetBSD/ix86/gccAda-3.4.0.tgz
|
http://www.johnrshannon.com/NetBSD/ix86/gccAda-3.4.0.tgz
|
||||||
http://www.johnrshannon.com/NetBSD/pentium4/gccAda-3.4.0.tgz
|
http://www.johnrshannon.com/NetBSD/pentium4/gccAda-3.4.0.tgz
|
||||||
http://www.johnrshannon.com/NetBSD/x86_64/gccAda-3.4.0.tgz
|
http://www.johnrshannon.com/NetBSD/x86_64/gccAda-3.4.0.tgz
|
||||||
|
|
||||||
The first two pkgs were built on NetBSD 2.0-BETA. The AMD64
|
The first two pkgs were built on NetBSD 2.0-BETA. The AMD64
|
||||||
pkg was built under NetBSD 1.6ZL.
|
pkg was built under NetBSD 1.6ZL.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.75 2007/07/20 00:09:21 gdt Exp $
|
# $NetBSD: Makefile,v 1.76 2007/10/09 19:19:10 martti Exp $
|
||||||
|
|
||||||
DISTNAME= guile-1.8.2
|
DISTNAME= guile-1.8.2
|
||||||
CATEGORIES= lang
|
CATEGORIES= lang
|
||||||
|
@ -18,7 +18,7 @@ PTHREAD_AUTO_VARS= YES
|
||||||
INFO_FILES= # PLIST
|
INFO_FILES= # PLIST
|
||||||
# couldn't figure out how to work around an error on solaris-2.9/sparc with gcc when
|
# couldn't figure out how to work around an error on solaris-2.9/sparc with gcc when
|
||||||
# compiling ${WRKSRC}/libguile/filesys.c. The warning is that readdir64_r was missing
|
# compiling ${WRKSRC}/libguile/filesys.c. The warning is that readdir64_r was missing
|
||||||
# a prototype.
|
# a prototype.
|
||||||
CONFIGURE_ARGS+= --disable-error-on-warning
|
CONFIGURE_ARGS+= --disable-error-on-warning
|
||||||
#CONFIGURE_ARGS+= --without-threads
|
#CONFIGURE_ARGS+= --without-threads
|
||||||
TEST_DIRS= ${WRKSRC}
|
TEST_DIRS= ${WRKSRC}
|
||||||
|
@ -33,13 +33,13 @@ OWN_DIRS= ${PREFIX}/share/guile/site
|
||||||
# up ./strings.h which tries to include scmconfig.h which doesn't exist
|
# up ./strings.h which tries to include scmconfig.h which doesn't exist
|
||||||
# yet. While not a clean fix, this seems to work around the problem.
|
# yet. While not a clean fix, this seems to work around the problem.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# for info on the slib part, see
|
# for info on the slib part, see
|
||||||
# http://lists.gnu.org/archive/html/guile-user/2006-11/msg00035.html
|
# http://lists.gnu.org/archive/html/guile-user/2006-11/msg00035.html
|
||||||
post-patch:
|
post-patch:
|
||||||
${TOUCH} ${WRKSRC}/libguile/scmconfig.h
|
${TOUCH} ${WRKSRC}/libguile/scmconfig.h
|
||||||
echo "(define-module (ice-9 slib))" > ${WRKSRC}/ice-9/slib.scm
|
echo "(define-module (ice-9 slib))" > ${WRKSRC}/ice-9/slib.scm
|
||||||
echo "(load-from-path \"slib/guile.init\")" >> ${WRKSRC}/ice-9/slib.scm
|
echo "(load-from-path \"slib/guile.init\")" >> ${WRKSRC}/ice-9/slib.scm
|
||||||
|
|
||||||
.if ${OPSYS} == "DragonFly"
|
.if ${OPSYS} == "DragonFly"
|
||||||
CONFIGURE_ARGS+= ac_cv_type_complex_double=no
|
CONFIGURE_ARGS+= ac_cv_type_complex_double=no
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
# $NetBSD: pear_plist.php,v 1.4 2007/04/15 13:46:42 adrianp Exp $
|
# $NetBSD: pear_plist.php,v 1.5 2007/10/09 19:19:10 martti Exp $
|
||||||
# Parses package XML file and outputs appropriate PLIST
|
# Parses package XML file and outputs appropriate PLIST
|
||||||
|
|
||||||
$PEAR_LIB = getenv('PEAR_LIB');
|
$PEAR_LIB = getenv('PEAR_LIB');
|
||||||
|
@ -33,7 +33,7 @@ foreach($info['filelist'] as $f => $v) {
|
||||||
$prefix = $v['baseinstalldir'] . '/';
|
$prefix = $v['baseinstalldir'] . '/';
|
||||||
|
|
||||||
# sometimes the baseinstalldir begins with a slash,
|
# sometimes the baseinstalldir begins with a slash,
|
||||||
# which make the PLIST output to have two instead of
|
# which make the PLIST output to have two instead of
|
||||||
# one. We fix this here.
|
# one. We fix this here.
|
||||||
if ($prefix[0] == '/')
|
if ($prefix[0] == '/')
|
||||||
$prefix = substr($prefix, 1);
|
$prefix = substr($prefix, 1);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
===========================================================================
|
===========================================================================
|
||||||
$NetBSD: MESSAGE,v 1.8 2007/05/05 21:45:12 adrianp Exp $
|
$NetBSD: MESSAGE,v 1.9 2007/10/09 19:19:10 martti Exp $
|
||||||
|
|
||||||
To process PHP scripts, you will need a PHP-enabled HTTP server. You may
|
To process PHP scripts, you will need a PHP-enabled HTTP server. You may
|
||||||
either configure the HTTP server to use the PHP CGI binary located in
|
either configure the HTTP server to use the PHP CGI binary located in
|
||||||
|
@ -11,7 +11,7 @@ or you may install a PHP module for your HTTP server, e.g. www/ap-php.
|
||||||
Note that php-openssl is no longer a separate package as of version
|
Note that php-openssl is no longer a separate package as of version
|
||||||
5.0.5nb1 because the main PHP5 package has it built-in now.
|
5.0.5nb1 because the main PHP5 package has it built-in now.
|
||||||
|
|
||||||
As of version 5.2.1nb3 PEAR is no longer installed by default with the
|
As of version 5.2.1nb3 PEAR is no longer installed by default with the
|
||||||
php package. In order to use PEAR packages with PHP you will need to
|
php package. In order to use PEAR packages with PHP you will need to
|
||||||
install the lang/pear package.
|
install the lang/pear package.
|
||||||
===========================================================================
|
===========================================================================
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: INSTALL,v 1.3 2006/04/28 18:16:25 jlam Exp $
|
# $NetBSD: INSTALL,v 1.4 2007/10/09 19:19:10 martti Exp $
|
||||||
|
|
||||||
case ${STAGE} in
|
case ${STAGE} in
|
||||||
POST-INSTALL)
|
POST-INSTALL)
|
||||||
|
@ -12,7 +12,7 @@ order to preserve your existing users' calendar information, you will
|
||||||
need to move:
|
need to move:
|
||||||
|
|
||||||
@VARBASE@/sqwebmail
|
@VARBASE@/sqwebmail
|
||||||
to
|
to
|
||||||
@SQWEBMAIL_STATEDIR@/sqwebmail
|
@SQWEBMAIL_STATEDIR@/sqwebmail
|
||||||
|
|
||||||
===========================================================================
|
===========================================================================
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# $NetBSD: Makefile.linux-i386,v 1.1 2007/07/29 05:19:34 jlam Exp $
|
# $NetBSD: Makefile.linux-i386,v 1.2 2007/10/09 19:19:10 martti Exp $
|
||||||
|
|
||||||
DISTNAME= thunderbird-3.0a1pre.en-US.linux-i686
|
DISTNAME= thunderbird-3.0a1pre.en-US.linux-i686
|
||||||
EXTRACT_SUFX= .tar.bz2
|
EXTRACT_SUFX= .tar.bz2
|
||||||
|
|
||||||
MOZ_GTK2= yes
|
MOZ_GTK2= yes
|
||||||
MOZ_PLATFORM= linux
|
MOZ_PLATFORM= linux
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: bsd.pkg.mk,v 1.1926 2007/09/29 16:03:28 rillig Exp $
|
# $NetBSD: bsd.pkg.mk,v 1.1927 2007/10/09 19:19:11 martti Exp $
|
||||||
#
|
#
|
||||||
# This file is in the public domain.
|
# This file is in the public domain.
|
||||||
#
|
#
|
||||||
|
@ -622,7 +622,7 @@ ${.CURDIR}/${WRKDIR_BASENAME}:
|
||||||
#
|
#
|
||||||
# MAKEFLAGS.su-${.TARGET}
|
# MAKEFLAGS.su-${.TARGET}
|
||||||
# The additional flags that are passed to the make process.
|
# The additional flags that are passed to the make process.
|
||||||
#
|
#
|
||||||
|
|
||||||
# XXX: Shouldn't the $${PATH} be ${PATH} here? This may be related to
|
# XXX: Shouldn't the $${PATH} be ${PATH} here? This may be related to
|
||||||
# PR 34470.
|
# PR 34470.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: bsd.pkg.readme.mk,v 1.13 2007/08/29 23:26:30 adrianp Exp $
|
# $NetBSD: bsd.pkg.readme.mk,v 1.14 2007/10/09 19:19:12 martti Exp $
|
||||||
#
|
#
|
||||||
# This Makefile fragment is included by bsd.pkg.mk and encapsulates the
|
# This Makefile fragment is included by bsd.pkg.mk and encapsulates the
|
||||||
# code to produce README.html files in each package directory.
|
# code to produce README.html files in each package directory.
|
||||||
|
@ -232,7 +232,7 @@ SED_HOMEPAGE_EXPR= -e 's|%%HOMEPAGE%%||'
|
||||||
|
|
||||||
# XXX: The code for the pkg_install<20070714 vulnerability checks are
|
# XXX: The code for the pkg_install<20070714 vulnerability checks are
|
||||||
# XXX: broken. It will not find vulnerabilities in any packages that
|
# XXX: broken. It will not find vulnerabilities in any packages that
|
||||||
# XXX: have complex names in the pkg-vulnerabilties file.
|
# XXX: have complex names in the pkg-vulnerabilties file.
|
||||||
# XXX: e.g. php{4,5}-perl and sun-{jdk,jre}15
|
# XXX: e.g. php{4,5}-perl and sun-{jdk,jre}15
|
||||||
# XXX: Post pkg_install-20070714 only currently known vulnerabilities are
|
# XXX: Post pkg_install-20070714 only currently known vulnerabilities are
|
||||||
# XXX: shown in the generated README.html files for packages.
|
# XXX: shown in the generated README.html files for packages.
|
||||||
|
@ -259,7 +259,7 @@ show-vulnerabilities-html:
|
||||||
gsub("\&", "\\&", printurl); \
|
gsub("\&", "\\&", printurl); \
|
||||||
printf("<LI><STRONG>%s has a %s exploit (see <a href=\"%s\">%s</a> for more details)</STRONG></LI>\n", $$2, $$5, $$8, printurl) }'; \
|
printf("<LI><STRONG>%s has a %s exploit (see <a href=\"%s\">%s</a> for more details)</STRONG></LI>\n", $$2, $$5, $$8, printurl) }'; \
|
||||||
fi; \
|
fi; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If PACKAGES is set to the default (../../packages), the current
|
# If PACKAGES is set to the default (../../packages), the current
|
||||||
# ${MACHINE_ARCH} and "release" (uname -r) will be used. Otherwise a directory
|
# ${MACHINE_ARCH} and "release" (uname -r) will be used. Otherwise a directory
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# $NetBSD: sort-packages,v 1.10 2007/08/27 15:38:08 adrianp Exp $
|
# $NetBSD: sort-packages,v 1.11 2007/10/09 19:19:13 martti Exp $
|
||||||
|
|
||||||
# This program scans all binary packages in the current directory and
|
# This program scans all binary packages in the current directory and
|
||||||
# creates three lists of files in OUTDIR:
|
# creates three lists of files in OUTDIR:
|
||||||
|
@ -71,7 +71,7 @@ for pkg in *${PKG_SUFX}; do
|
||||||
_INFO_VER=`${PKG_INFO} -V`;
|
_INFO_VER=`${PKG_INFO} -V`;
|
||||||
if ${PKG_ADMIN} pmatch 'pkg_install<20070714' pkg_install-${_INFO_VER}; then
|
if ${PKG_ADMIN} pmatch 'pkg_install<20070714' pkg_install-${_INFO_VER}; then
|
||||||
# XXX: The egrep command is only needed here because
|
# XXX: The egrep command is only needed here because
|
||||||
# audit-packages before pkg_install-20070714 is so
|
# audit-packages before pkg_install-20070714 is so
|
||||||
# awfully slow.
|
# awfully slow.
|
||||||
if egrep "^({.*${pkg_prefix}.*}|${pkg_prefix}|{.*}${pkg_prefix})" ${PKGVULNDIR}/pkg-vulnerabilities >/dev/null 4>&1; then
|
if egrep "^({.*${pkg_prefix}.*}|${pkg_prefix}|{.*}${pkg_prefix})" ${PKGVULNDIR}/pkg-vulnerabilities >/dev/null 4>&1; then
|
||||||
vuln=`${AUDIT_PACKAGES} -p "${pkg}"`
|
vuln=`${AUDIT_PACKAGES} -p "${pkg}"`
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $NetBSD: upload,v 1.40 2007/07/25 12:00:21 adrianp Exp $
|
# $NetBSD: upload,v 1.41 2007/10/09 19:19:13 martti Exp $
|
||||||
|
|
||||||
#
|
#
|
||||||
# Upload non-restricted binary pkgs to ftp server
|
# Upload non-restricted binary pkgs to ftp server
|
||||||
|
@ -27,8 +27,8 @@ Usage: $prog [-c|--config <file>] [-n|--no-upload] [-d|--debug] [-v|--verbose]
|
||||||
$prog -h|--help
|
$prog -h|--help
|
||||||
$prog -V|--version
|
$prog -V|--version
|
||||||
|
|
||||||
-c | --config <file>
|
-c | --config <file>
|
||||||
Load the following configuration file instead of
|
Load the following configuration file instead of
|
||||||
the default one.
|
the default one.
|
||||||
|
|
||||||
-d|--debug Preserves some intermediate files to help
|
-d|--debug Preserves some intermediate files to help
|
||||||
|
@ -64,8 +64,8 @@ EOF
|
||||||
|
|
||||||
# print out error message and exit 1
|
# print out error message and exit 1
|
||||||
die () {
|
die () {
|
||||||
echo "$0: error:" 1>&2
|
echo "$0: error:" 1>&2
|
||||||
for i in "$@"; do
|
for i in "$@"; do
|
||||||
echo " $i" 1>&2
|
echo " $i" 1>&2
|
||||||
done
|
done
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: checksum.mk,v 1.11 2007/08/31 16:30:11 jlam Exp $
|
# $NetBSD: checksum.mk,v 1.12 2007/10/09 19:19:13 martti Exp $
|
||||||
#
|
#
|
||||||
# See bsd.checksum.mk for helpful comments.
|
# See bsd.checksum.mk for helpful comments.
|
||||||
#
|
#
|
||||||
|
@ -32,7 +32,7 @@ _CHECKSUM_CMD= \
|
||||||
TEST=${TOOLS_TEST:Q} \
|
TEST=${TOOLS_TEST:Q} \
|
||||||
${SH} ${PKGSRCDIR}/mk/checksum/checksum \
|
${SH} ${PKGSRCDIR}/mk/checksum/checksum \
|
||||||
|
|
||||||
checksum checksum-phase:
|
checksum checksum-phase:
|
||||||
${RUN} set -e; \
|
${RUN} set -e; \
|
||||||
case ${.TARGET:Q} in \
|
case ${.TARGET:Q} in \
|
||||||
*-phase) ${TEST} ! -f ${_COOKIE.checksum} || exit 0 ;; \
|
*-phase) ${TEST} ! -f ${_COOKIE.checksum} || exit 0 ;; \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: mk.conf,v 1.162 2007/10/09 14:31:31 rillig Exp $
|
# $NetBSD: mk.conf,v 1.163 2007/10/09 19:19:13 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
# This file provides default values for variables that may be overridden
|
# This file provides default values for variables that may be overridden
|
||||||
|
@ -1727,7 +1727,7 @@ USERPPP_GROUP?= network
|
||||||
UUCP_GROUP?= daemon
|
UUCP_GROUP?= daemon
|
||||||
# System group for uucp-related programs.
|
# System group for uucp-related programs.
|
||||||
# Possible: any group name
|
# Possible: any group name
|
||||||
# Default: daemon
|
# Default: daemon
|
||||||
|
|
||||||
UUCP_USER?= uucp
|
UUCP_USER?= uucp
|
||||||
# System user for uucp-related programs.
|
# System user for uucp-related programs.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: emulator.mk,v 1.8 2007/08/23 18:20:36 jlam Exp $
|
# $NetBSD: emulator.mk,v 1.9 2007/10/09 19:19:13 martti Exp $
|
||||||
#
|
#
|
||||||
# This file is included by bsd.pkg.mk.
|
# This file is included by bsd.pkg.mk.
|
||||||
#
|
#
|
||||||
|
@ -79,7 +79,7 @@ OPSYS_EMULDIR?= # empty
|
||||||
# package's binaries, libraries and scripts won't necessarily match the
|
# package's binaries, libraries and scripts won't necessarily match the
|
||||||
# actual paths on the file system, so skip some path checks that are
|
# actual paths on the file system, so skip some path checks that are
|
||||||
# likely to fail.
|
# likely to fail.
|
||||||
#
|
#
|
||||||
.if empty(EMUL_DISTRO:Mnative-*)
|
.if empty(EMUL_DISTRO:Mnative-*)
|
||||||
CHECK_SHLIBS_SUPPORTED?= no
|
CHECK_SHLIBS_SUPPORTED?= no
|
||||||
CHECK_INTERPRETER_SKIP= *
|
CHECK_INTERPRETER_SKIP= *
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: pkg-rpm.mk,v 1.1 2007/07/29 05:19:43 jlam Exp $
|
# $NetBSD: pkg-rpm.mk,v 1.2 2007/10/09 19:19:13 martti Exp $
|
||||||
#
|
#
|
||||||
# RPM package format
|
# RPM package format
|
||||||
#
|
#
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
# this is empty, then no PLIST is created.
|
# this is empty, then no PLIST is created.
|
||||||
#
|
#
|
||||||
# Default value: ${WRKDIR}/.PLIST.rpm2pkg
|
# Default value: ${WRKDIR}/.PLIST.rpm2pkg
|
||||||
#
|
#
|
||||||
# RPM2PKG_PREFIX
|
# RPM2PKG_PREFIX
|
||||||
# This is the directory under which the contents of the RPMs will
|
# This is the directory under which the contents of the RPMs will
|
||||||
# be extracted. This directory is stripped from the paths which
|
# be extracted. This directory is stripped from the paths which
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
# component of ``./''.
|
# component of ``./''.
|
||||||
#
|
#
|
||||||
# Default value: 1
|
# Default value: 1
|
||||||
#
|
#
|
||||||
# RPM2PKG_STAGE
|
# RPM2PKG_STAGE
|
||||||
# Stage at which to run the ``extract-rpm'' target.
|
# Stage at which to run the ``extract-rpm'' target.
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# $NetBSD: mkreadme,v 1.18 2007/09/07 22:12:16 jlam Exp $
|
# $NetBSD: mkreadme,v 1.19 2007/10/09 19:19:13 martti Exp $
|
||||||
#
|
#
|
||||||
# Script for README.html generation
|
# Script for README.html generation
|
||||||
#
|
#
|
||||||
|
@ -303,7 +303,7 @@ else
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# this needs to happen here as the variables referenced have not been
|
# this needs to happen here as the variables referenced have not been
|
||||||
# populated until this stage (see above)
|
# populated until this stage (see above)
|
||||||
#
|
#
|
||||||
if [ "$pv" = "default" ]; then
|
if [ "$pv" = "default" ]; then
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: cmd-sink-cross-gcc,v 1.1 2007/08/02 18:19:33 joerg Exp $
|
# $NetBSD: cmd-sink-cross-gcc,v 1.2 2007/10/09 19:19:13 martti Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
|
# Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
@ -35,7 +35,7 @@ if [ "${dont_link}" != yes ]; then
|
||||||
$debug_log $wrapperlog " (cmd-sink-native-cc) pop: $arg"
|
$debug_log $wrapperlog " (cmd-sink-native-cc) pop: $arg"
|
||||||
. $buildcmd
|
. $buildcmd
|
||||||
|
|
||||||
# All normal library locations should be checked for
|
# All normal library locations should be checked for
|
||||||
for libdir in /usr/lib @PREFIX@/lib; do
|
for libdir in /usr/lib @PREFIX@/lib; do
|
||||||
arg="-Wl,-rpath-link,@CROSS_DESTDIR@${libdir}"
|
arg="-Wl,-rpath-link,@CROSS_DESTDIR@${libdir}"
|
||||||
$debug_log $wrapperlog " (cmd-sink-native-cc) pop: $arg"
|
$debug_log $wrapperlog " (cmd-sink-native-cc) pop: $arg"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: x11.buildlink3.mk,v 1.9 2007/10/01 07:21:44 rillig Exp $
|
# $NetBSD: x11.buildlink3.mk,v 1.10 2007/10/09 19:19:12 martti Exp $
|
||||||
#
|
#
|
||||||
# This file should only be included from the buildlink3.mk files from
|
# This file should only be included from the buildlink3.mk files from
|
||||||
# the modular Xorg packages and only in the case that the native X11
|
# the modular Xorg packages and only in the case that the native X11
|
||||||
|
@ -18,7 +18,7 @@ USE_X11= yes
|
||||||
# Sanity checks.
|
# Sanity checks.
|
||||||
#
|
#
|
||||||
|
|
||||||
. if ${X11_TYPE} != "native"
|
. if ${X11_TYPE} != "native"
|
||||||
_WRONG_X11_TYPE:= ${X11_TYPE}
|
_WRONG_X11_TYPE:= ${X11_TYPE}
|
||||||
PKG_FAIL_REASON+= "Do not include x11.version.mk for X11_TYPE != \"native\"."
|
PKG_FAIL_REASON+= "Do not include x11.version.mk for X11_TYPE != \"native\"."
|
||||||
X11_TYPE:= native
|
X11_TYPE:= native
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.9 2007/06/20 17:46:03 jlam Exp $
|
# $NetBSD: Makefile,v 1.10 2007/10/09 19:19:14 martti Exp $
|
||||||
|
|
||||||
DISTNAME= gofish-1.1
|
DISTNAME= gofish-1.1
|
||||||
PKGREVISION= 2
|
PKGREVISION= 2
|
||||||
|
@ -41,7 +41,7 @@ FILES_SUBST+= PKG_USERS=${PKG_USERS:Q}
|
||||||
SUBST_CLASSES+= user
|
SUBST_CLASSES+= user
|
||||||
SUBST_MESSAGE.user= Fixing name of gopher user in files.
|
SUBST_MESSAGE.user= Fixing name of gopher user in files.
|
||||||
SUBST_FILES.user= gofish.conf
|
SUBST_FILES.user= gofish.conf
|
||||||
SUBST_SED.user= -e "s/;user = gopher/user = ${GOPHER_USER}/g"
|
SUBST_SED.user= -e "s/;user = gopher/user = ${GOPHER_USER}/g"
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gofish
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gofish
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
===========================================================================
|
===========================================================================
|
||||||
$NetBSD: MESSAGE,v 1.1 2005/12/03 18:53:57 jdolecek Exp $
|
$NetBSD: MESSAGE,v 1.2 2007/10/09 19:19:14 martti Exp $
|
||||||
|
|
||||||
PHP 5.1.0 introduced some changes in SOAP extension in WSDL mode:
|
PHP 5.1.0 introduced some changes in SOAP extension in WSDL mode:
|
||||||
* XML base64Binary values transparently base64 encoded/decoded
|
* XML base64Binary values transparently base64 encoded/decoded
|
||||||
* NULL values with maxOccurs="0" nillable="yes" not included in XML output
|
* NULL values with maxOccurs="0" nillable="yes" not included in XML output
|
||||||
===========================================================================
|
===========================================================================
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# $NetBSD: DEINSTALL,v 1.1.1.1 2007/07/01 00:43:20 tnn Exp $
|
# $NetBSD: DEINSTALL,v 1.2 2007/10/09 19:19:14 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
cat << EOF
|
cat << EOF
|
||||||
|
@ -7,7 +7,7 @@ cat << EOF
|
||||||
|
|
||||||
Please remember to run:
|
Please remember to run:
|
||||||
|
|
||||||
# /usr/sbin/rem_drv tun
|
# /usr/sbin/rem_drv tun
|
||||||
# /usr/sbin/rem_drv tap
|
# /usr/sbin/rem_drv tap
|
||||||
|
|
||||||
and remove the tun/tap driver from /usr/kernel/drv if you have copied
|
and remove the tun/tap driver from /usr/kernel/drv if you have copied
|
||||||
|
|
|
@ -5,4 +5,4 @@ vpnc is supposed to work with:
|
||||||
* Cisco VPN concentrator 3000 Series
|
* Cisco VPN concentrator 3000 Series
|
||||||
* Cisco IOS routers
|
* Cisco IOS routers
|
||||||
* Cisco PIX / ASA Zecurity Appliances
|
* Cisco PIX / ASA Zecurity Appliances
|
||||||
* Juniper/Netscreen
|
* Juniper/Netscreen
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.29 2007/09/21 20:15:10 adrianp Exp $
|
# $NetBSD: Makefile,v 1.30 2007/10/09 19:19:14 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= xipdump-1.5.4
|
DISTNAME= xipdump-1.5.4
|
||||||
|
@ -15,7 +15,7 @@ PLIST_SRC= ${WRKDIR}/PLIST
|
||||||
|
|
||||||
USE_X11BASE= yes
|
USE_X11BASE= yes
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CFLAGS+= -I${PREFIX}/include
|
CFLAGS+= -I${PREFIX}/include
|
||||||
LIBS+= -L${PREFIX}/lib ${COMPILER_RPATH_FLAG}${PREFIX}/lib -lnet
|
LIBS+= -L${PREFIX}/lib ${COMPILER_RPATH_FLAG}${PREFIX}/lib -lnet
|
||||||
|
|
||||||
INSTALLATION_DIRS= bin lib/X11/app-defaults ${PKGMANDIR}/man8
|
INSTALLATION_DIRS= bin lib/X11/app-defaults ${PKGMANDIR}/man8
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# $NetBSD: DEINSTALL,v 1.3 2004/01/11 16:45:51 cjep Exp $
|
# $NetBSD: DEINSTALL,v 1.4 2007/10/09 19:19:14 martti Exp $
|
||||||
|
|
||||||
LEAFNODE_CONFDIR=@LEAFNODE_CONFDIR@
|
LEAFNODE_CONFDIR=@LEAFNODE_CONFDIR@
|
||||||
LEAFNODE_SPOOL=@LEAFNODE_SPOOL@
|
LEAFNODE_SPOOL=@LEAFNODE_SPOOL@
|
||||||
LEAFNODE_LOCKDIR=@LEAFNODE_LOCKDIR@
|
LEAFNODE_LOCKDIR=@LEAFNODE_LOCKDIR@
|
||||||
LEAFNODE_HOME=@LEAFNODE_HOME@
|
LEAFNODE_HOME=@LEAFNODE_HOME@
|
||||||
|
|
||||||
|
@ -12,9 +12,9 @@ case "${STAGE}" in
|
||||||
|
|
||||||
Note that the leafnode spool, lock and configuration directories
|
Note that the leafnode spool, lock and configuration directories
|
||||||
|
|
||||||
${LEAFNODE_SPOOL}
|
${LEAFNODE_SPOOL}
|
||||||
${LEAFNODE_LOCKDIR}
|
${LEAFNODE_LOCKDIR}
|
||||||
${LEAFNODE_HOME}
|
${LEAFNODE_HOME}
|
||||||
and ${LEAFNODE_CONFDIR}
|
and ${LEAFNODE_CONFDIR}
|
||||||
|
|
||||||
are NOT deleted during the package deinstallation. Please remove these
|
are NOT deleted during the package deinstallation. Please remove these
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
===========================================================================
|
===========================================================================
|
||||||
$NetBSD: MESSAGE,v 1.2 2007/08/05 17:21:50 adrianp Exp $
|
$NetBSD: MESSAGE,v 1.3 2007/10/09 19:19:14 martti Exp $
|
||||||
|
|
||||||
You may wish to have the vulnerabilities file downloaded daily so that
|
You may wish to have the vulnerabilities file downloaded daily so that
|
||||||
it remains current. This may be done by adding an appropriate entry
|
it remains current. This may be done by adding an appropriate entry
|
||||||
|
@ -34,7 +34,7 @@ A sample audit-packages.conf has been installed to:
|
||||||
|
|
||||||
${EGDIR}/audit-packages.conf
|
${EGDIR}/audit-packages.conf
|
||||||
|
|
||||||
You may want to customise this file and copy it to
|
You may want to customise this file and copy it to
|
||||||
${PKG_SYSCONFDIR}/audit-packages.conf.
|
${PKG_SYSCONFDIR}/audit-packages.conf.
|
||||||
If you want to use signature verification you will need to install GnuPG and
|
If you want to use signature verification you will need to install GnuPG and
|
||||||
set the path for GPG appropriately in your audit-packages.conf. See
|
set the path for GPG appropriately in your audit-packages.conf. See
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# $NetBSD: INSTALL,v 1.6 2006/12/07 15:06:07 joerg Exp $
|
# $NetBSD: INSTALL,v 1.7 2007/10/09 19:19:14 martti Exp $
|
||||||
|
|
||||||
PATH="@PREFIX@"/bin:"${PATH}"
|
PATH="@PREFIX@"/bin:"${PATH}"
|
||||||
export PATH
|
export PATH
|
||||||
|
|
||||||
case "${STAGE}" in
|
case "${STAGE}" in
|
||||||
POST-INSTALL)
|
POST-INSTALL)
|
||||||
${TEST} ! -x ./+TEXCONFIG || ./+TEXCONFIG PAPER
|
${TEST} ! -x ./+TEXCONFIG || ./+TEXCONFIG PAPER
|
||||||
${TEST} ! -x ./+TETEX || ./+TETEX ADD
|
${TEST} ! -x ./+TETEX || ./+TETEX ADD
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -79,7 +79,7 @@ REMOVE)
|
||||||
${TEST} ! -f "$file" ||
|
${TEST} ! -f "$file" ||
|
||||||
FMTUTIL_CNF="${FMTUTIL_CNF} $file"
|
FMTUTIL_CNF="${FMTUTIL_CNF} $file"
|
||||||
done
|
done
|
||||||
|
|
||||||
# Remove fmt, mem, and log files generated by fmtutil-sys.
|
# Remove fmt, mem, and log files generated by fmtutil-sys.
|
||||||
${TEST} -z "${FMTUTIL_CNF}" ||
|
${TEST} -z "${FMTUTIL_CNF}" ||
|
||||||
${CAT} ${FMTUTIL_CNF} | ${GREP} "^[^#]" |
|
${CAT} ${FMTUTIL_CNF} | ${GREP} "^[^#]" |
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: INSTALL,v 1.1 2006/10/12 13:38:35 joerg Exp $
|
# $NetBSD: INSTALL,v 1.2 2007/10/09 19:19:15 martti Exp $
|
||||||
|
|
||||||
case ${STAGE} in
|
case ${STAGE} in
|
||||||
POST-INSTALL)
|
POST-INSTALL)
|
||||||
|
@ -10,7 +10,7 @@ param_size.hugelatex = 1500
|
||||||
stack_size.hugelatex = 1500
|
stack_size.hugelatex = 1500
|
||||||
hash_extra.hugelatex = 15000
|
hash_extra.hugelatex = 15000
|
||||||
string_vacancies.hugelatex = 45000
|
string_vacancies.hugelatex = 45000
|
||||||
pool_free.hugelatex = 47500
|
pool_free.hugelatex = 47500
|
||||||
nest_size.hugelatex = 500
|
nest_size.hugelatex = 500
|
||||||
save_size.hugelatex = 5000
|
save_size.hugelatex = 5000
|
||||||
pool_size.hugelatex = 500000
|
pool_size.hugelatex = 500000
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# $NetBSD: buildlink3.mk,v 1.8 2006/07/08 23:11:08 jlam Exp $
|
# $NetBSD: buildlink3.mk,v 1.9 2007/10/09 19:19:15 martti Exp $
|
||||||
#
|
#
|
||||||
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
||||||
QCA_BUILDLINK3_MK:= ${QCA_BUILDLINK3_MK}+
|
QCA_BUILDLINK3_MK:= ${QCA_BUILDLINK3_MK}+
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.53 2007/09/18 19:24:07 bouyer Exp $
|
# $NetBSD: Makefile,v 1.54 2007/10/09 19:19:15 martti Exp $
|
||||||
|
|
||||||
DISTNAME= apcupsd-3.14.1
|
DISTNAME= apcupsd-3.14.1
|
||||||
PKGREVISION= 2
|
PKGREVISION= 2
|
||||||
|
@ -73,7 +73,7 @@ EGFILES= netbsd/apccontrol etc/changeme etc/commfailure etc/commok \
|
||||||
etc/offbattery etc/onbattery etc/multimon.conf etc/hosts.conf
|
etc/offbattery etc/onbattery etc/multimon.conf etc/hosts.conf
|
||||||
MANFILES= apcupsd apctest
|
MANFILES= apcupsd apctest
|
||||||
|
|
||||||
INSTALLATION_DIRS= share/examples/apcupsd share/examples/rc.d
|
INSTALLATION_DIRS= share/examples/apcupsd share/examples/rc.d
|
||||||
|
|
||||||
SUBST_CLASSES+= strip
|
SUBST_CLASSES+= strip
|
||||||
SUBST_STAGE.strip= pre-configure
|
SUBST_STAGE.strip= pre-configure
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.3 2007/08/17 17:26:03 bouyer Exp $
|
# $NetBSD: Makefile,v 1.4 2007/10/09 19:19:15 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION= 3.1.0
|
VERSION= 3.1.0
|
||||||
|
@ -37,7 +37,7 @@ do-build:
|
||||||
cd ${WRKSRC} && ${GMAKE} clean && \
|
cd ${WRKSRC} && ${GMAKE} clean && \
|
||||||
${GMAKE} XEN_TARGET_X86_PAE=n debug=y xen
|
${GMAKE} XEN_TARGET_X86_PAE=n debug=y xen
|
||||||
${CP} ${WRKSRC}/dist/install/boot/xen.gz ${WRKDIR}/xen-debug.gz
|
${CP} ${WRKSRC}/dist/install/boot/xen.gz ${WRKDIR}/xen-debug.gz
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
${INSTALL_DATA_DIR} ${PREFIX}/xen3-kernel
|
${INSTALL_DATA_DIR} ${PREFIX}/xen3-kernel
|
||||||
${INSTALL_DATA} ${WRKDIR}/xen.gz ${PREFIX}/xen3-kernel/xen.gz
|
${INSTALL_DATA} ${WRKDIR}/xen.gz ${PREFIX}/xen3-kernel/xen.gz
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $NetBSD: README.all,v 1.5 2001/01/16 02:37:46 hubertf Exp $ -->
|
<!-- $NetBSD: README.all,v 1.6 2007/10/09 19:19:15 martti Exp $ -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>All NetBSD Packages</title>
|
<title>All NetBSD Packages</title>
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
The following list contains all
|
The following list contains all
|
||||||
%%NPKGS%%
|
%%NPKGS%%
|
||||||
packages currently available
|
packages currently available
|
||||||
in the NetBSD Packages Collection, sorted alphabetically.
|
in the NetBSD Packages Collection, sorted alphabetically.
|
||||||
Please select an entry for more details!
|
Please select an entry for more details!
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $NetBSD: README.ipv6,v 1.4 2005/06/01 19:07:20 wiz Exp $ -->
|
<!-- $NetBSD: README.ipv6,v 1.5 2007/10/09 19:19:15 martti Exp $ -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>NetBSD: IPv6 enabled Packages</title>
|
<title>NetBSD: IPv6 enabled Packages</title>
|
||||||
|
@ -14,8 +14,8 @@
|
||||||
<p>
|
<p>
|
||||||
The following list contains all
|
The following list contains all
|
||||||
packages currently available
|
packages currently available
|
||||||
in the NetBSD Packages Collection, that are known to support
|
in the NetBSD Packages Collection, that are known to support
|
||||||
IPv6.
|
IPv6.
|
||||||
Please select an entry for more details!
|
Please select an entry for more details!
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||||
<!-- $NetBSD: README.pkg,v 1.23 2007/10/07 12:59:16 kano Exp $ -->
|
<!-- $NetBSD: README.pkg,v 1.24 2007/10/09 19:19:15 martti Exp $ -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>The NetBSD Packages Collection: %%PORT%%</title>
|
<title>The NetBSD Packages Collection: %%PORT%%</title>
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor="#ffffff">
|
<body bgcolor="#ffffff">
|
||||||
|
|
||||||
<a href="http://www.mckusick.com/beastie/mainpage/copyright.html">
|
<a href="http://www.mckusick.com/beastie/mainpage/copyright.html">
|
||||||
|
@ -27,7 +27,7 @@ longer description, or browse the package's
|
||||||
|
|
||||||
%%LICENSE%%
|
%%LICENSE%%
|
||||||
|
|
||||||
<p>The package is located in the
|
<p>The package is located in the
|
||||||
"<A HREF=".">%%PORT%%</A>"
|
"<A HREF=".">%%PORT%%</A>"
|
||||||
directory.
|
directory.
|
||||||
The current source version of the package is
|
The current source version of the package is
|
||||||
|
@ -70,7 +70,7 @@ This package requires the following package(s) to run:
|
||||||
<p>
|
<p>
|
||||||
Select one of the links below to <FONT COLOR="red">download</FONT> the
|
Select one of the links below to <FONT COLOR="red">download</FONT> the
|
||||||
package in precompiled binary form for installation with pkg_add(1).
|
package in precompiled binary form for installation with pkg_add(1).
|
||||||
Available machine architectures and package versions:
|
Available machine architectures and package versions:
|
||||||
<TABLE>
|
<TABLE>
|
||||||
%%BIN_PKGS%%
|
%%BIN_PKGS%%
|
||||||
</TABLE>
|
</TABLE>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $NetBSD: README.top,v 1.14 2007/05/07 08:19:35 rillig Exp $ -->
|
<!-- $NetBSD: README.top,v 1.15 2007/10/09 19:19:15 martti Exp $ -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>The NetBSD Packages Collection</title>
|
<title>The NetBSD Packages Collection</title>
|
||||||
|
@ -20,7 +20,7 @@ The packages collection is divided into categories of packages.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>Here are the one-line descriptions for each of the categories,
|
<p>Here are the one-line descriptions for each of the categories,
|
||||||
a <a href="README-all.html">complete list of all packages</a>
|
a <a href="README-all.html">complete list of all packages</a>
|
||||||
and one with all
|
and one with all
|
||||||
<a href="README-IPv6.html">IPv6 enabled packages</a>
|
<a href="README-IPv6.html">IPv6 enabled packages</a>
|
||||||
is also available:
|
is also available:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.3 2007/09/21 18:40:42 joerg Exp $
|
# $NetBSD: Makefile,v 1.4 2007/10/09 19:19:15 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= hunspell-1.1.12-2
|
DISTNAME= hunspell-1.1.12-2
|
||||||
|
@ -25,7 +25,7 @@ PKGCONFIG_OVERRIDE+= hunspell.pc.in
|
||||||
SUBST_CLASSES+= paths
|
SUBST_CLASSES+= paths
|
||||||
SUBST_MESSAGE.paths= Fixing default path to dictionaries.
|
SUBST_MESSAGE.paths= Fixing default path to dictionaries.
|
||||||
SUBST_STAGE.paths= pre-configure
|
SUBST_STAGE.paths= pre-configure
|
||||||
SUBST_FILES.paths= man/hunspell.1 man/hu/hunspell.1 src/tools/hunspell.cxx
|
SUBST_FILES.paths= man/hunspell.1 man/hu/hunspell.1 src/tools/hunspell.cxx
|
||||||
SUBST_SED.paths+= -e 's,/usr/share/hunspell,${PREFIX}/share/hunspell,g'
|
SUBST_SED.paths+= -e 's,/usr/share/hunspell,${PREFIX}/share/hunspell,g'
|
||||||
# Trailing slash important to not change hunspell.cxx
|
# Trailing slash important to not change hunspell.cxx
|
||||||
SUBST_SED.paths+= -e 's,/usr/share/myspell/,${PREFIX}/share/hunspell/,g'
|
SUBST_SED.paths+= -e 's,/usr/share/myspell/,${PREFIX}/share/hunspell/,g'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.2 2007/04/25 09:39:13 hiramatsu Exp $
|
# $NetBSD: Makefile,v 1.3 2007/10/09 19:19:15 martti Exp $
|
||||||
|
|
||||||
DISTNAME= YAML-Syck-0.85
|
DISTNAME= YAML-Syck-0.85
|
||||||
PKGNAME= p5-${DISTNAME}
|
PKGNAME= p5-${DISTNAME}
|
||||||
|
@ -7,7 +7,7 @@ MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../by-authors/id/A/AU/AUDREYT/}
|
||||||
|
|
||||||
MAINTAINER= bad@NetBSD.org
|
MAINTAINER= bad@NetBSD.org
|
||||||
HOMEPAGE= http://search.cpan.org/~audreyt/YAML-Syck-0.72/
|
HOMEPAGE= http://search.cpan.org/~audreyt/YAML-Syck-0.72/
|
||||||
COMMENT= Fast, lightweight YAML loader and dumper
|
COMMENT= Fast, lightweight YAML loader and dumper
|
||||||
|
|
||||||
USE_LANGUAGES= c
|
USE_LANGUAGES= c
|
||||||
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
This module aims to support rfc2445 style recurrences, such as
|
This module aims to support rfc2445 style recurrences, such as
|
||||||
'last friday of march'.
|
'last friday of march'.
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
===========================================================================
|
===========================================================================
|
||||||
$NetBSD: MESSAGE,v 1.2 2006/04/16 07:54:18 wiz Exp $
|
$NetBSD: MESSAGE,v 1.3 2007/10/09 19:19:16 martti Exp $
|
||||||
|
|
||||||
The appearance of xalarm is much better if the color resources are
|
The appearance of xalarm is much better if the color resources are
|
||||||
properly specified and the correct resources for Xaw3d are set.
|
properly specified and the correct resources for Xaw3d are set.
|
||||||
|
|
||||||
You can do this just by setting
|
You can do this just by setting
|
||||||
|
|
||||||
*customization: -color
|
*customization: -color
|
||||||
|
|
||||||
in your ~/.Xdefaults file.
|
in your ~/.Xdefaults file.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.15 2007/03/17 00:59:47 reed Exp $
|
# $NetBSD: Makefile,v 1.16 2007/10/09 19:19:16 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= olvwm4.src4
|
DISTNAME= olvwm4.src4
|
||||||
|
@ -8,7 +8,7 @@ CATEGORIES= x11 wm
|
||||||
MASTER_SITES= http://home.nyc.rr.com/twopks/olvwm/
|
MASTER_SITES= http://home.nyc.rr.com/twopks/olvwm/
|
||||||
|
|
||||||
MAINTAINER= w.wnuk@zodiac.mimuw.edu.pl
|
MAINTAINER= w.wnuk@zodiac.mimuw.edu.pl
|
||||||
HOMEPAGE= http://home.nyc.rr.com/twopks/olvwm/
|
HOMEPAGE= http://home.nyc.rr.com/twopks/olvwm/
|
||||||
COMMENT= Open Look Virtual Window Manager
|
COMMENT= Open Look Virtual Window Manager
|
||||||
|
|
||||||
DEPENDS+= xview-clients>=3.2.1:../../x11/xview-clients
|
DEPENDS+= xview-clients>=3.2.1:../../x11/xview-clients
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# $NetBSD: Makefile.solaris-sparc,v 1.3 2007/10/07 19:58:45 dmcmahill Exp $
|
# $NetBSD: Makefile.solaris-sparc,v 1.4 2007/10/09 19:19:16 martti Exp $
|
||||||
|
|
||||||
# Use the Solaris 8 binaries if we're not running at least Solaris 10.
|
# Use the Solaris 8 binaries if we're not running at least Solaris 10.
|
||||||
.if (${OPSYS} == "SunOS") && !empty(OS_VERSION:M5.1[0-9]*)
|
.if (${OPSYS} == "SunOS") && !empty(OS_VERSION:M5.1[0-9]*)
|
||||||
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris10-sparc
|
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris10-sparc
|
||||||
EMUL_REQD= solaris>=10
|
EMUL_REQD= solaris>=10
|
||||||
MOZ_GTK2= yes
|
MOZ_GTK2= yes
|
||||||
.else
|
.else
|
||||||
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris8-sparc-gtk1
|
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris8-sparc-gtk1
|
||||||
EMUL_REQD= solaris>=8
|
EMUL_REQD= solaris>=8
|
||||||
.endif
|
.endif
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# $NetBSD: Makefile.solaris-sparc,v 1.2 2007/08/23 18:20:34 jlam Exp $
|
# $NetBSD: Makefile.solaris-sparc,v 1.3 2007/10/09 19:19:16 martti Exp $
|
||||||
|
|
||||||
# Use the Solaris 8 binaries if we're not running at least Solaris 10.
|
# Use the Solaris 8 binaries if we're not running at least Solaris 10.
|
||||||
.if (${OPSYS} == "SunOS") && !empty(OS_VERSION:M5.1[0-9]*)
|
.if (${OPSYS} == "SunOS") && !empty(OS_VERSION:M5.1[0-9]*)
|
||||||
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris10-respin-sparc
|
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris10-respin-sparc
|
||||||
EMUL_REQD= solaris>=10
|
EMUL_REQD= solaris>=10
|
||||||
MOZ_GTK2= yes
|
MOZ_GTK2= yes
|
||||||
.else
|
.else
|
||||||
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris8-respin-sparc-gtk1
|
DISTNAME= firefox-${MOZ_DISTVER}.en-US.solaris8-respin-sparc-gtk1
|
||||||
EMUL_REQD= solaris>=8
|
EMUL_REQD= solaris>=8
|
||||||
.endif
|
.endif
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Kwiki plugin to archive pages using CVS.
|
Kwiki plugin to archive pages using CVS.
|
||||||
|
|
||||||
(This package includes the http://www.kwiki.org/?PatchKwikiArchiveCvs patches
|
(This package includes the http://www.kwiki.org/?PatchKwikiArchiveCvs patches
|
||||||
to make Kwiki::Archives::Cvs work with Kwiki::Revision.)
|
to make Kwiki::Archives::Cvs work with Kwiki::Revision.)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
This package provides a Python API to access the swish-e library.
|
This package provides a Python API to access the swish-e library.
|
||||||
swish-e indexes can be accessed that way.
|
swish-e indexes can be accessed that way.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
This package provides lbxproxy, the proxy for the Low Bandwidth
|
This package provides lbxproxy, the proxy for the Low Bandwidth
|
||||||
extension to X (LBX). Clients connect to lbxproxy, which multiplexes
|
extension to X (LBX). Clients connect to lbxproxy, which multiplexes
|
||||||
them over a single connection to the X server, performing various
|
them over a single connection to the X server, performing various
|
||||||
optimisation to reduce bandwidth usage and/or latency.
|
optimisation to reduce bandwidth usage and/or latency.
|
||||||
|
|
||||||
This is from the modular X.org X11 project.
|
This is from the modular X.org X11 project.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.4 2007/08/16 14:18:25 joerg Exp $
|
# $NetBSD: Makefile,v 1.5 2007/10/09 19:19:17 martti Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= xf86-video-via-0.2.2
|
DISTNAME= xf86-video-via-0.2.2
|
||||||
|
@ -19,7 +19,7 @@ USE_TOOLS+= pkg-config
|
||||||
|
|
||||||
.include "../../mk/bsd.prefs.mk"
|
.include "../../mk/bsd.prefs.mk"
|
||||||
|
|
||||||
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
||||||
PLIST_SUBST+= XVMC_SUPPORT=""
|
PLIST_SUBST+= XVMC_SUPPORT=""
|
||||||
.else
|
.else
|
||||||
PLIST_SUBST+= XVMC_SUPPORT="@comment "
|
PLIST_SUBST+= XVMC_SUPPORT="@comment "
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# $NetBSD: INSTALL.openwin,v 1.1 2005/06/12 05:06:11 jlam Exp $
|
# $NetBSD: INSTALL.openwin,v 1.2 2007/10/09 19:19:17 martti Exp $
|
||||||
|
|
||||||
PKGNAME=$1
|
PKGNAME=$1
|
||||||
STAGE=$2
|
STAGE=$2
|
||||||
|
@ -28,7 +28,7 @@ POST-INSTALL)
|
||||||
|
|
||||||
DEINSTALL)
|
DEINSTALL)
|
||||||
;;
|
;;
|
||||||
|
|
||||||
POST-DEINSTALL)
|
POST-DEINSTALL)
|
||||||
cd ${PKG_PREFIX}
|
cd ${PKG_PREFIX}
|
||||||
for FILE in $CONFLICTS
|
for FILE in $CONFLICTS
|
||||||
|
|
Loading…
Reference in a new issue