Commit graph

4012 commits

Author SHA1 Message Date
grant
6f23238a15 fix previous to work with pkgsrc bmake, and add a comment explaining
why it must be done this way.
2005-03-08 00:52:31 +00:00
bad
c182b6d93e Make the description of LIBTOOLIZE_PLIST a bit more explicit about
the file names of libtool archives.
2005-03-07 20:39:23 +00:00
bad
3f38b9d280 Change a comment to reflect the current default value of LIBTOOLIZE_PLIST. 2005-03-07 20:29:55 +00:00
jwise
c7e28bb93b Do NOT assume that DISTNAME == PKG_NAME just to avoid using :=.
Doing so broke any package (such as matlab-mode) where these were not equal,
and in a particularly damaging and non-obvious way.
2005-03-07 17:48:08 +00:00
agc
8fb629087b Also echo the wrapper stages if PKG_VERBOSE is defined, not just when
PKG_DEBUG_LEVEL > 1.
2005-03-06 22:27:12 +00:00
wiz
9be2170853 Add sasl2 to PKG_DEFAULT_OPTIONS when USE_SASL2 is set,
not sasl. From Lloyd Parkes in PR 29604.
2005-03-06 02:43:05 +00:00
reed
be4e4c5f08 Explain X11_TYPE.
It is not defined here though. It is defined in
mk/buildlink3/bsd.buildlink3.mk.
2005-03-02 23:06:36 +00:00
agc
ddacec0cfe When FAILOVER_FETCH is set, only use the first digest algorithm found
for a dist file or patch, and let the "checksum" target do the full
digest integrity checks.  Should fix a problem reported by John Klos
on tech-pkg, which I was a bit dim in analysing.
2005-03-02 11:11:36 +00:00
veego
d53b01d221 Fix PLIST_SRC error introduced in rev 1.1593.
Before this fix it would include
  PLIST.common
then _only_ one of the following
  PLIST.${OPSYS}
  PLIST.${MACHINE_ARCH:C/i[3-6]86/i386/g}
  PLIST.${OPSYS}-${MACHINE_ARCH:C/i[3-6]86/i386/g}
  PLIST
and then PLIST.common_end.

Now, uses all of the following PLIST files, in that order:

PLIST.common
PLIST.${OPSYS}
PLIST.${MACHINE_ARCH:C/i[3-6]86/i386/g}
PLIST.${OPSYS}-${MACHINE_ARCH:C/i[3-6]86/i386/g}
PLIST
PLIST.common_end
2005-02-27 22:10:25 +00:00
hubertf
d77f01809b Document doing a pkgsrc-current build 2005-02-26 17:17:16 +00:00
agc
c323caee5b Fix a problem introduced in the previous commit, noticed by Matthiases
Scheler and Drochner.

Handle missing checksums in distinfo properly.

Tested by myself and tron.
2005-02-25 13:05:52 +00:00
jlam
cc44d0be98 * Teach devel/p5-Module-Build to write .packlists just like MakeMaker.pm
does.  This allows us to use dynamic PLISTs for Perl modules that are
  built using Module::Build.  Bump the PKGREVISION of p5-Module-Build
  to 1.

* Drop the use of PERL5_USES_MODULE_BUILD and introduce a new variable
  PERL5_MODULE_TYPE that is either "MakeMaker" or "Module::Build" that
  names the framework used to build/install the module.

* Split out the variables set in perl5/buildlink3.mk that are also used
  by perl5/module.mk into a new file perl5/vars.mk.  Move some PERL5_*
  variable definitions from pkgsrc/mk/bsd.pkg.use.mk into perl5/vars.mk.
  This just centralizes the common PERL5_* definitions into a single
  file location.

* Convert the known packages that use Module::Build to set
  PERL5_MODULE_TYPE and PERL5_PACKLIST:

	devel/p5-Class-Container
	devel/p5-Exception-Class
	devel/p5-Log-Dispatch
	devel/p5-Array-Compare
	textproc/p5-Pod-Coverage
	www/p5-Apache-Session-Wrapper
	www/p5-MasonX-Request-WithApacheSession
2005-02-24 22:38:41 +00:00
wiz
381cf35088 Remove some non-mirroring gnu mirrors, and fix paths in some others. 2005-02-23 15:39:02 +00:00
wiz
4eb392220d Remove some non-mirroring sunsite and xcontrib mirrors. 2005-02-23 15:30:57 +00:00
agc
2a8668bdf4 Pass "makedistinfo" down as one of the inherited targets. 2005-02-22 21:02:15 +00:00
agc
e96ce79e2e As seen on tech-pkg - allow multiple digest algorithms to be used to
ensure the integrity of distfiles and dist patches.  For now, the
default algorithms are SHA1 and RMD160, set as a whitespace-separated
list in the DIGEST_ALGORITHMS definition.  The DIGEST_ALGORITHM
definition is deprecated.

Patchfiles will still use simply SHA1, since we are trying to detect a
binary "has this file changed", rather than proect against tampering.
In short, if someone can modify the patch file, they can modify the
distinfo file holding its digest information. This value is set in the
new PATCH_DIGEST_ALGORITHM definition.

Triggered by the breaking of SHA1, as reported in

	http://www.schneier.com/blog/archives/2005/02/sha1_broken.html
2005-02-22 21:01:10 +00:00
veego
8b44024dc5 Change the files to be used for PLIST_SRC from
PLIST.common
 PLIST.${OPSYS}
 PLIST
 PLIST.common_end
to
 PLIST.common
 PLIST.${OPSYS}
 PLIST.${MACHINE_ARCH:C/i[3-6]86/i386/g}
 PLIST.${OPSYS}-${MACHINE_ARCH:C/i[3-6]86/i386/g}
 PLIST
 PLIST.common_end

Which makes it possible to remove duplicated code in some packages.
This doesn't change anything, because all affected packages define PLIST_SRC,
so this code would never be used for them.
And most of them will be fixed with the next commit.

ToDO: ${MACHINE_ARCH:C/i[3-6]86/i386/g} looks wrong and should be changed,
but thats what we allready use for MESSAGE_SRC.
2005-02-21 20:12:01 +00:00
grant
384e38172b fix bug introduced in 1.1569: use ${GREP} instead of 'grep' and not
all grep(1)s support grepping for empty string. `${GREP} .' instead.
2005-02-20 06:02:06 +00:00
grant
d84e86c700 update the PLIST handling for AIX, shared libraries have the .so
extension when the runtime linker is used. from garbled@.
2005-02-19 04:25:31 +00:00
grant
fab0a1b153 add wrappers to transform arguments for AIX's ld(1), notably, if we
are dynamically linking, the -brtl flag must be passed to the linker
so that the runtime linker is used.

tested on AIX 4.3 and 5.1 by garbled@.
2005-02-19 04:19:59 +00:00
grant
0fe4c2184a define GNU_ARCH for rs6000 and set OBJECT_FMT correctly for AIX. 2005-02-19 01:28:14 +00:00
reed
a839411efa If /bin/id exists, then use it for ID else use /usr/bin/id.
Mandrake Linux 10.1 as used by A L Meyers has /bin/id.
This should fix his PR #pkg/29430 and #29431.
2005-02-17 20:03:26 +00:00
seb
8ead146eeb Revert previous. This breaks databases/postgresql74-lib for me on NetBSD
current.
2005-02-17 12:15:44 +00:00
grant
581576f963 add bits for AIX to correctly set MACHINE_ARCH and OS_VERSION, so that
MACHINE_GNU_PLATFORM is set to something sane. tested with AIX 4.3.3
and 5.1.
2005-02-17 07:11:59 +00:00
grant
892028f6a6 drop -fexceptions which icc doesn't understand. 2005-02-16 23:58:29 +00:00
seb
61b849b1a3 Add ${BUILDLINK_VARS} to WRAPPER_VARS.
Since the bsd.wrapper.mk framework was introduced, hence the removal
of BUILDLINK_VARS handling from bsd.buildlink3.mk, none of the variables
listed in BUILDLINK_VARS were "cached" in any way.
2005-02-16 23:08:16 +00:00
grant
8910a7722d Always link against the Intel provided C++ runtime library. 2005-02-16 11:24:44 +00:00
agc
b10fb63e34 Fix an anomaly noted by Steve Bellovin in
<20050215182853.AC52D3C03B8@berkshire.machshav.com>

The check for a vulnerable package at package fetch time is producing
incorrect results when csh-style alternates are used in the
pkg-vulnerabilities specification of the vulnerable package - disable
the incorrect speed-up that was there previously, at the expense of
some machine cycles at build time.
2005-02-16 11:01:03 +00:00
grant
94c992087d properly detect icc 8.1, which needs a different argument to
statically link the Intel provided libraries.
2005-02-16 10:59:03 +00:00
grant
733a152138 override the GNU configure test for __attribute__. the test commonly
uses a nested function, which icc does not support.
2005-02-16 10:48:40 +00:00
grant
16000086e3 note that xlc support is on Darwin. 2005-02-16 08:41:20 +00:00
grant
9a2655736f whitespace fixes 2005-02-16 08:03:44 +00:00
tv
568d0bf7bd Some older ${FIND}s do not have an implicit "-print"; make sure to specify
it explicitly (as with other ${FIND} usage here).
2005-02-15 16:21:41 +00:00
grant
ffa50e5ca6 it's 2005, not 2004. 2005-02-15 09:42:23 +00:00
grant
9fd9fe5331 add support for icc, the Intel C++ Compiler (Linux).
icc is a high performance compiler suite for Linux/i386 and ia64, and
is free for non-commercial use. see:

	http://www.intel.com/software/products/compilers/clin/

for more information.

tested with icc version 8.0 and 8.1 on Slackware 10/i386.
2005-02-15 07:43:43 +00:00
jlam
e9eb68750b The libtool wrapper should always do the compiler wrapper transformations,
so move the setting for _WRAP_ARG_PP.LIBTOOL out of conditional areas of
bsd.wrapper.mk and set it globally in bsd.buildlink3.mk with the rest of
the libtool wrapper variables.
2005-02-15 03:18:50 +00:00
jlam
993d395028 Add some more debugging annotations for the work log to note split args
and skipped args.
2005-02-14 21:43:11 +00:00
jlam
9a48aa99f1 Move some Darwin-specific code from arg-pp-main into arg-pp-darwin-gcc. 2005-02-14 21:33:36 +00:00
jlam
a4719cbfa5 Teach the libtool wrapper about the same types of transformations that
the compiler wrapper already knows to do.  This should protect
"-install_name ..." from wrapper transformations within the libtool
wrapper on Darwin and fixes PR pkg/29215.

Software that properly use libtool don't pass an explicit "-install_name
..." because libtool always generates its own such argument when
building the (Darwin) shared library.  However, not every piece of
software, including the ones like lang/tcl that pkgsrc converted to
use libtool, will use libtool in the documented fashion.  Longer term,
those packages should be fixed properly, but we will still need the
libtool wrapper to avoid transforming arguments that the compiler
wrapper itself doesn't transform, e.g. for MIPSpro and -LANG:*.
2005-02-14 21:33:08 +00:00
tv
7573aa3be5 Fix typo in previous (should have ended the line with &&). 2005-02-14 16:31:41 +00:00
tv
ded6da1cc5 Remove "test ... -ef ...", which is unportable. Currently this is causing
syntax errors (and unchanged example files to be left behind) on Interix;
it probably causes a problem on others.

(This test appears to work around a case where two files were exactly the
same by inode, and have the script *not* delete the file in that case.
I'm not exactly sure why that is desirable at all.)
2005-02-14 16:30:35 +00:00
reed
d96e3ad00d chown on AIX is at /usr/bin/chown.
Thanks to Roland, Hubert, and Noud for the PR.
This will close PR #28208.
2005-02-13 04:33:24 +00:00
rillig
b791494593 Corrected a misspelling of a variable. I used $rebooted in a shell code,
which had better been $$rebooted (Makefile quoting). Approved by jlam.
2005-02-13 03:49:12 +00:00
rillig
0fff1d5ac8 Don't use the -nt operator for ${TEST}. It is not defined in POSIX, and
not provided by the Solaris 9 /bin/sh. Use the find(1) -newer expression
instead, as it expresses exactly what we want, compared to the "ls -t"
hack.
2005-02-12 00:27:41 +00:00
tv
239f7cd34f Whitespace formatting nits. 2005-02-11 17:00:07 +00:00
tv
79ba5ea33a Consolidate PLIST_SRC default generation and the plethora of failsafe
error checks into labelled blocks toward the top of the file.

While here, remove the historic (now completely empty; it was replaced by
PKG_FAIL_REASON some time ago) uptodate-pkgtools target and the references
to it.
2005-02-11 16:57:45 +00:00
tv
614ff30790 Visual cleanup from tv-derecurse:
Consolidate many MAKE_ENVs and SCRIPTS_ENVs into a common block.
(CONFIGURE_ENVs to be done later.)

Introduce new variable ALL_ENV which is automatically included into all
of MAKE_ENV, SCRIPTS_ENV, and CONFIGURE_ENV; this allows much cleaner
addition of the common CC/CXX/CFLAGS/etc. variables needed by all of these.
2005-02-11 16:36:49 +00:00
tv
4c2cccef33 Migrate the big block of USE_PERL5 and PERL5_REQD logic to bsd.pkg.use.mk. 2005-02-11 16:15:53 +00:00
tv
4b3f94acc8 Migrate several USE_* logic blocks, previously sprinkled liberally
throughout bsd.pkg.mk, to labelled blocks in bsd.pkg.use.mk.
2005-02-11 16:11:36 +00:00
tv
c0a3d0489f Cleanup from tv-derecurse:
There's no need to check for a do-tools target; nothing should override it.
Vertically consolidate the dependency.
2005-02-11 15:59:41 +00:00