Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2004-05-17 | Garbage collect BUILDLINK_PKGBASE.<pkg> from buildlink3: it is not anymore | seb | 1 | -2/+1 | |
used since revision 1.139 of mk/buildlink3/bsd.buildlink3.mk. | |||||
2004-05-09 | Convert to buildlink3. | snj | 1 | -2/+2 | |
2004-05-05 | No longer used. | snj | 1 | -23/+0 | |
2004-03-29 | Add a BUILDLINK_PKGBASE.<pkg> definition where it's not equal to <pkg>, | jlam | 2 | -2/+4 | |
e.g. "BUILDLINK_PKGBASE.gtk?= gtk+". This is mandated by the example buildlink[23].mk files in bsd.buildlink[23].mk. | |||||
2004-03-22 | Note a conflict with perl-5.8.* as libperl isn't needed if perl-5.8.* is | jlam | 1 | -2/+4 | |
available. | |||||
2004-03-18 | Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly | jlam | 1 | -3/+2 | |
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES. | |||||
2004-03-05 | Reorder location and setting of BUILDLINK_PACKAGES to match template | jlam | 1 | -3/+6 | |
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk. | |||||
2004-02-10 | Turn PERL5_REQD into a list of values, the highest of which will be used | jlam | 2 | -4/+4 | |
to choose the correct Perl dependency. | |||||
2004-01-24 | Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. In | jlam | 1 | -2/+2 | |
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched. | |||||
2004-01-20 | Move WRKSRC definition away from the first paragraph in a Makefile. | agc | 1 | -2/+2 | |
2004-01-05 | Use S/+$// instead of C/\+$// to save a backslash. Very highly | jlam | 1 | -2/+2 | |
recommended by seb :) | |||||
2004-01-04 | Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk. | jlam | 1 | -10/+8 | |
2004-01-03 | Initial sprinkling of work-in-progress buildlink3.mk files for using the | jlam | 1 | -0/+22 | |
buildlink3 framework. | |||||
2003-07-17 | s/netbsd.org/NetBSD.org/ | grant | 1 | -2/+2 | |
2003-03-29 | Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz. | jmmv | 1 | -2/+2 | |
2002-12-07 | Replace IGNORE with PKG_FAIL_REASON or PKG_SKIP_REASON as appropriate. | schmonz | 1 | -2/+2 | |
2002-11-15 | buildlink1 -> buildlink2 | jlam | 1 | -10/+7 | |
2002-10-19 | Add a buildlink2.mk file that allows for libperl or perl>=5.8.0. | jlam | 1 | -0/+22 | |
2002-07-22 | libperl needs perl<5.8.0 and perl>=5.6.1. | jlam | 1 | -2/+2 | |
2002-07-22 | Adapt to using perl-5.8.0. Perl 5.8.0 removes the need for libperl as | jlam | 1 | -2/+3 | |
DynaLoader.a is now an archive of PIC objects. | |||||
2001-12-03 | Use PKGREVISION to manage package-specific versions numbers that differ | jlam | 1 | -3/+2 | |
from the distfile version number. G/C the version number stuff from perl5/Makefile.common, preserving only PERL5_DIST_VERS as it's still used by libperl. | |||||
2001-11-26 | Buildlinkify, in the sense that only the perl headers are found in | jlam | 1 | -4/+4 | |
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}. | |||||
2001-11-01 | Move pkg/ files into package's toplevel directory | zuntum | 3 | -2/+2 | |
2001-10-18 | SVR4 packages have a limit of 9 chars for a package name. | veego | 1 | -1/+2 | |
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME. | |||||
2001-07-02 | s/PERL_REQD/PERL5_REQD/g | jlam | 1 | -2/+2 | |
2001-06-07 | Update perl to 5.6.1. Changes from perl-5.6.0 include many bug fixes, | jlam | 3 | -28/+31 | |
the plugging of several memory leaks, fixes to the regular expression engine, the addition of a Unicode character classes, better support for 64-bit platorms, and updates of many modules in the base Perl Library. See perldelta.pod for more details. Also update p5-Data-Dumper, p5-Devel-DProf, and p5-Devel-Peek to the latest versions distributed with the perl-5.6.1 sources, and libperl to 5.6.1 to match the perl package. | |||||
2001-06-06 | Fix distinfo. Noted by Nathan Ahlstrom in pkg/13124. | wiz | 1 | -3/+3 | |
2001-05-29 | For now, use own distinfo, since it doesn't use lang/perl5-base's patches. | wiz | 2 | -2/+6 | |
2001-05-20 | Update libperl to 5.6.0nb3. This is basically a downgrade to version | jlam | 3 | -37/+23 | |
5.6.0nb1 as this package no longer builds and installs libperl.so as a shared library. Instead, libperl.so is built and installed by the perl (as of 5.6.0nb6) if the platform supports shared libraries (or if MKPIC=yes). The libperl package again only installs DynaLoader.o as a relocatable shared object. | |||||
2001-05-18 | Fix this to build on a.out platforms. Addresses pkg/12945 by John Klos. | jlam | 2 | -6/+13 | |
2001-05-12 | space -> tab. | wiz | 1 | -3/+3 | |
2001-05-11 | Update libperl to 5.6.0nb2. Changes from version 5.6.0nb1 include adding | jlam | 3 | -16/+27 | |
back a dynamic libperl.so to the installation, needed as a result of a change made on 2000-11-08 to the perl5-base package to not build against a dynamic libperl.so. | |||||
2001-04-19 | Move to sha1 digests, and add distfile sizes. | agc | 1 | -2/+3 | |
2001-04-17 | + move the distfile digest/checksum value from files/md5 to distinfo | agc | 2 | -7/+1 | |
+ move the patch digest/checksum values from files/patch-sum to distinfo | |||||
2001-02-17 | Move the COMMENT from being in its own file to a definition in the | agc | 2 | -2/+2 | |
package Makefile. | |||||
2000-09-07 | Add file checksum, now that it needs one. | jlam | 1 | -0/+3 | |
2000-09-07 | Update to libperl-5.6.0nb1. This adds back the shared object file | jlam | 3 | -12/+18 | |
${PERL5_ARCHLIB}/DynaLoader_pic.o, which contains the dynamic loader in dynamically loadable form. This is needed by ap-perl. | |||||
2000-09-03 | NO_CHECKSUM is set, so we don't need an md5 file | wiz | 1 | -2/+0 | |
2000-09-03 | If perl dependency isn't found, build in lang/perl5, not lang/perl5-current | jlam | 1 | -2/+2 | |
2000-08-30 | Update libperl to 5.6.0. This matches the version of the main perl5 | jlam | 7 | -62/+26 | |
distribution in pkgsrc. | |||||
2000-08-21 | Update IGNORE-messages for recent changes: add ${PKGNAME} where | hubertf | 1 | -2/+2 | |
appropriate. | |||||
2000-05-16 | Make it work on Solaris. | veego | 1 | -1/+10 | |
2000-03-27 | Adapt to new handling of "${CONFIGURE}". | tron | 1 | -2/+2 | |
1999-09-10 | libperl uses the packages from the perl package. | hubertf | 1 | -3/+3 | |
Reflect the recent changes there. | |||||
1999-07-09 | Add package patch checksum files. | agc | 1 | -0/+12 | |
1999-05-24 | Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORM | tv | 1 | -3/+2 | |
pattern match format. Minor pkglint along the way. | |||||
1999-05-11 | s/netbsd/${LOWER_OPSYS}/ | abs | 1 | -4/+5 | |
1999-04-08 | s/netbsd/${LOWER_OPSYS}/g | agc | 2 | -6/+6 | |
1999-02-04 | Re-enable 5.003 bin-compat. Though it's not *supposed* to do so, | tv | 1 | -4/+3 | |
compiling modules with this turned on makes the resulting modules or libperl-linking programs reference 5.003 namespace symbols. | |||||
1998-12-02 | Install a PIC version of DynaLoader.o so that, e.g., mod_perl can link it | tv | 3 | -3/+11 | |
in with a dlopen of libperl. |