Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
but not its files.
Override PKG_DELETE when building this package so -N can be used to
upgrade an existing install.
Bump version to 20041101.
|
|
don't explicitly call gunzip, just pass the right arguments to tar.
fixes package decompression on Solaris where gunzip is not available
(but gzip is), and also decompression of bzip2 packages on non-NetBSD.
|
|
Makes "make replace" work correctly on Interix.
|
|
|
|
From ISIHARA Takanori and a cube. Closes PR 27494.
|
|
(gethostname, gethostbyname)
|
|
compatibility function, but none of the required headers.
fixes bootstrap on Darwin 7.5.0 with gcc and xlc.
|
|
man page. No functional changes.
Approved by wiz.
|
|
some builds I did recently. (Only including those things which should be
in the C library; avoiding things such as the resolver -- which may be in
libbind -- or TCP/IP headers and symbols.)
|
|
|
|
|
|
* The following new flags have been added:
-c - case sensitive search
-x - exact match search
-q - quite output
-C - comment search
Patch provided by pancake at phreaker.net; closes PR pkg/26964.
Changes agreed by the original author of pkgfind, Peter Postma.
|
|
|
|
- Renamed PORTSDIR to PKGSRCDIR
- Added warning option -Wno-workdir
- Fixed some places where absolute and relative pathnames had
been used incorrectly.
Clean up Makefile.
|
|
these are actually pulled from the cache by some packages. Use the value
of ${MACHINE_GNU_PLATFORM} for both.
Bump to version 1.3.
|
|
comment them out by default, and add a comment above them indicating that
only *directly* needed dependencies should be in the (edited, final) bl3
file.
This will hopefully encourage folks to reduce the amount of unnecessary bl3
recursion that is rampant in pkgsrc, making many packages "depend" directly
on APIs they never see nor use.
|
|
Include each .include'd file only once. Solves the 'Out of memory!'
problem for big packages, and avoids repeated warnings about problems
coming from bl3 or Makefile.common files.
From Roland Illig in private mail.
|
|
This fix comes from Peter Postma, and it addresses a problem reported
by Ryo HAYASAKA in PR#27250.
|
|
rdigest package works. I have no idea why I never committed this
before.
|
|
fix problem reported by pancake in PR pkg/26940.
|
|
|
|
|
|
|
|
- fix errors in extracting patched file's name from old patch files
- keep header (RCS Id and comment) from old patch files
- silence perl -w
|
|
as it's only used internally by bsd.prefs.mk.
* Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR.
Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile
than the old method of stripping off the last two components of
${.CURDIR}. PKGSRCDIR may now be used after bsd.prefs.mk is defined.
* Change all references to _PKGSRCDIR to PKGSRCDIR.
|
|
|
|
updated using entirely binary packages.
|
|
in the process. (More information on tech-pkg.)
Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.
Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
|
|
|
|
|
|
|
|
now that 'make print-PLIST' handles this.
|
|
create PLIST awk substitution patterns for directories created by the
current package. This is particularly useful for base packages that
create a directory structure that is then used by subsequent (dependent)
packages.
|
|
- added options for enabling/disabling specific checks
- added options for enabling/disabling specific warnings
- improved the --help message
and corresponding man page updates.
From Roland Illig with slight fixes by me.
|
|
|
|
|
|
|
|
include fixing fgetln() to account for \0 characters due to implementing
it using fgets() (analysis provided by Urban Boquist). Also add a
definition for __restrict if not present since it is used in the regex
implementation code from src HEAD.
This has been tested to work correctly on:
FreeBSD-4.8/i386
NetBSD-1.6.2/i386
Solaris 9
|
|
When comparing two version numbers vector the shorter one needs to be
extended with 0. Cf. src/usr.sbin/pkg_install/lib/str.c:vtest().
Previously lintpkgsrc considered that 'png-1.2.6', which version vector is
[1,0,2,0,6], is "less" than 'png-1.2.6rc1', which version vector is
[1,0,2,0,6,-1,1]. No wonder lintpksrc -V considered the package png-1.2.6
being vulnerable wrt the 'png<1.2.6rc1' entry in pkg-vulnerabilities files.
While here teach lintpkgsrc about the 'alpha' and 'beta' version elements.
|
|
Rather than leaving -- as the only argument and checking for one argument,
shift it away and check for zero remaining arguments.
|
|
|
|
"all" target as the first one so that a bare "make" will build the "all"
target by default. This should fix problems seen on AIX 5.1.
|
|
are consistent with pkgsrc. welcome to pkg_chk 1.50.
|
|
Tests are found in pkgsrc/regress, tests are run by executing pkg_regress.
Based on an idea discussed at pkgsrcCon 2004. Thanks to dillo@ for review
and refinements, and to jlam@ for review.
|
|
|
|
|
|
which are the full option names used to set rpath directives for the
linker and the compiler, respectively. In places were we are invoking
the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is
inserted in case the flag is a word, e.g. -rpath. The default values
of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the
compiler that you use. They may be overridden on a ${OPSYS}-specific
basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG,
respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
|