Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2003-02-06 | on systems where _PKG_JVM is not set, set PKG_FAIL_REASON and set | dmcmahill | 1 | -2/+3 | |
_PKG_JVM to "none" to avoid makefile errors. | |||||
2003-01-29 | Use a table-based lookup scheme to pair up JREs to JDKs. | jlam | 1 | -10/+15 | |
2003-01-29 | Create directories at pre-install time instead of post-install so that | jlam | 1 | -14/+38 | |
we can more accurately determine if we "own" a directory. Ownership is determined by seeing if the directory doesn't exist before the package is installed. | |||||
2003-01-29 | sun-jdk14 has moved to .../java/sun-1.4. | jlam | 1 | -2/+2 | |
2003-01-29 | Move the inclusion of bsd.pkg.install.mk higher so that binary packages | jlam | 1 | -5/+5 | |
are generated correctly (with INSTALL and DEINSTALL scripts). Fix suggested by Stoned Elipot <seb@netbsd.org>. | |||||
2003-01-29 | Set _JAVA_BASE_CLASSES to classes.zip or wre.jar in java-vm.mk, then use in | abs | 2 | -4/+7 | |
bsd.pkg.mk. We are now more wonka friendly. | |||||
2003-01-28 | Ensure that PKG_SYSCONFBASE is always defined (defaulting to ${PREFIX}/etc). | jlam | 1 | -2/+2 | |
2003-01-28 | Instead of including bsd.pkg.install.mk directly in a package Makefile, | jlam | 1 | -1/+5 | |
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>. | |||||
2003-01-28 | Search for the system provided install-info in /usr/bin and if needed | seb | 1 | -6/+12 | |
in /sbin. If devel/gtexinfo if not used assume makeinfo is /usr/bin/makeinfo. Confirmed to work on RedHat 7.3 by abs, thanks! | |||||
2003-01-28 | white space fix: replace spaces by tabs | seb | 1 | -12/+12 | |
2003-01-25 | Add some LOWER_VENDOR definitions on Linux to better customize packages | jschauma | 1 | -6/+14 | |
in the future (on Debian, for example, there is no libtermcap, and we need to depend on ncurses etc.) | |||||
2003-01-25 | Create a fake libpthread.la that corresponds to /usr/lib/libpthread.*. | jlam | 1 | -1/+12 | |
This should allow building packages that use libtool and use native pthreads even if pth is installed. | |||||
2003-01-25 | Modify code to produce fake libtool archives to check whether the libraries | jlam | 1 | -5/+7 | |
named using the shell pattern actually exist. | |||||
2003-01-25 | Skip if no valid Emacs version found. For bulk builds. | uebayasi | 1 | -3/+3 | |
2003-01-24 | Strip bare "-L${BUILDLINK_DIR}" (note there is no trailing "/lib") from | jlam | 1 | -1/+3 | |
dependency_libs definitions in *.lai files. This should remove another instance that can cause "buildlink2 leakage" into installed files under ${LOCALBASE}. | |||||
2003-01-24 | Use an /etc/mk.conf setting for libdvdcss's HOMEPAGE and MASTER_SITES, | agc | 1 | -1/+13 | |
following a suggestion by salo. This allows users to specify LIBDVDCSS_MASTER_SITES= ... LIBDVDCSS_HOMEPAGE= ... in their /etc/mk.conf files. | |||||
2003-01-21 | require at least libtool 1.4.20010614nb12 on Darwin. | grant | 2 | -2/+7 | |
2003-01-21 | Pax NetBSDi. | jschauma | 1 | -2/+2 | |
2003-01-21 | add MYSQL_USER, MYSQL_GROUP, MYSQL_DATADIR. | grant | 1 | -1/+17 | |
2003-01-20 | List which packages depend on the different variables, and some consistency | kristerw | 1 | -31/+35 | |
changes to the descriptions. XXX I have only done the [A-C]* variables for now. The rest will be done RSN. | |||||
2003-01-20 | BOOTSTRAP_EGCS is not used any longer. Remove it. | kristerw | 1 | -7/+1 | |
2003-01-20 | Add stamp-vti to AUTOMAKE_PATTERNS; fixes bison problem, tested by salo. | wiz | 1 | -1/+2 | |
2003-01-20 | fix a bug introduced by the last commit where a string was accidentally | dmcmahill | 1 | -3/+2 | |
split across a line. Thanks to Greg Woods for catching this. | |||||
2003-01-18 | Many white space and indenting fixes to bring this more in line with | dmcmahill | 1 | -469/+553 | |
/usr/share/misc/style. Prompted by a private email from Greg Woods, woods at weird dot com. | |||||
2003-01-17 | -. if (${AUTOMAKE_OVERRIDE} == "YES") | wiz | 1 | -2/+2 | |
+. if empty(AUTOMAKE_OVERRIDE:M[nN][oO]) to match bsd.buildlink2.mk (which defines AUTOMAKE_OVERRIDE to yes). | |||||
2003-01-15 | Make BUILD_DIR always point to a physical path by invoking /bin/pwd instead | jlam | 10 | -19/+26 | |
of relying on the shell's builtin pwd. This makes BUILD_DIR consistently point to the correct directory regardless of the definition of SHELL. This fixes elusive some buildlink2 errors due to the fact that BUILDLINK_DIR is derived from BUILD_DIR and some paths were incorrectly being translated. | |||||
2003-01-15 | Revert previous change. Defining BSD_PREFS_MK instead of BSD_PKG_MK | jlam | 1 | -4/+4 | |
breaks too many users' /etc/mk.conf files that have a .ifdef BSD_PKG_MK # /usr/pkgsrc stuff .else # /usr/src stuff .endif structure. We'll think of another way to protect against multiple inclusion of bsd.pkg.mk and bsd.prefs.mk. | |||||
2003-01-15 | Add RCS Id. | jlam | 1 | -0/+2 | |
2003-01-15 | avoid the use of the gensub() function as it is a gawk extension not | dmcmahill | 1 | -6/+7 | |
found in other awk implementations. Patch provided by Greg Woods, woods at weird dot com, via private email. | |||||
2003-01-14 | Define and check for BSD_PREFS_MK, not BSD_PKG_MK. Proposed by Jan Schaumann. | wiz | 1 | -4/+4 | |
2003-01-14 | Bump build dependency on x11-links to 0.12 after teaching x11-links about | jlam | 1 | -2/+2 | |
Xrender. | |||||
2003-01-14 | On Linux, LOWER_ARCH is generally not yet defined. Move assignment. | jschauma | 1 | -5/+4 | |
2003-01-13 | bump BUILD_DEPENDS on x11-links (Darwin fixes). | grant | 1 | -2/+2 | |
2003-01-12 | According to seb, make on 1.5 does not know about ${VAR:tl}, so let's go back to | jschauma | 1 | -3/+3 | |
echo VAR | tr A-Z a-z | |||||
2003-01-12 | efficiency++; | jschauma | 1 | -6/+6 | |
Make can take care of substitutions itself, so we don't need to use echo VAR | sed or echo VAR | tr Suggested by seb. | |||||
2003-01-12 | On Linux, s/i.86/i386/ for LOWER_ARCH and MACHINE_ARCH as suggested by | jschauma | 1 | -1/+3 | |
Jeremy C. Reed on tech-pkg. Even though bootstrap's bmake will do this at build-time, this ensures that even older bmake's don't fail if a package checks it for == i386. | |||||
2003-01-10 | Alphabetize _BLNK_CACHE_ALL list. | jlam | 1 | -2/+2 | |
2003-01-10 | Added http://osdn.dl.sourceforge.net/sourceforge/ as Sourceforge mirror. | jmmv | 1 | -1/+2 | |
Okay'ed by wiz. | |||||
2003-01-10 | Don't add rpath statements to _BLNK_LDFLAGS if _USE_RPATH != "yes". | thorpej | 1 | -4/+9 | |
2003-01-10 | Protect some substitutions with slashes -- i.e. so that /usr/pkgsrc/.../work | mycroft | 1 | -3/+4 | |
doesn't get the /usr/pkg part expanded accidentally. | |||||
2003-01-10 | Add the PKG_PRESERVE capability to bsd.pkg.mk. | agc | 1 | -1/+14 | |
A package which has PKG_PRESERVE definied in its Makefile will not be able to be deleted, and the capability is carried into binary packages. | |||||
2003-01-10 | Protect ${WRKDIR} from transformation. We only want to transform paths | jlam | 1 | -1/+6 | |
from outside of the work directory. | |||||
2003-01-10 | Fix indentation for case statement. | jlam | 1 | -2/+2 | |
2003-01-10 | Install a ${PREFIX}/bin/shlibtool as part of the devel/libtool-base | jlam | 9 | -25/+44 | |
package. shlibtool will not build static libraries. Add handling in bsd.pkg.mk for a variable named "SHLIBTOOL_OVERRIDE" that is analogous to LIBTOOL_OVERRIDE and causes any listed libtool scripts to be replaced with a symlink to shlibtool, and teach buildlink2 about shlibtool. Bump PKGREVISION of devel/libtool* packages to 11. | |||||
2003-01-10 | Add locale/bs/LC_MESSAGES. | mycroft | 12 | -12/+60 | |
2003-01-09 | Introduce NO_PKGTOOLS_REQD_CHECK, with which a package can disable | schmonz | 1 | -54/+28 | |
warnings about out-of-date pkg_install. It's defined in pkgtools/digest, pkgtools/pkg_install, and databases/db (needed by pkg_install). Replace sequences of ${ECHO_MSG} and ${FALSE} with PKG_FAIL_REASON. Replace "make" with ${MAKE} in a few places. | |||||
2003-01-08 | Teach buildlink2 about ${_OPSYS_RPATH_NAME} instead of just using -Wl,-R | jlam | 1 | -11/+4 | |
everywhere. | |||||
2003-01-07 | Also substitute for @BUILDLINK_X11_DIR@ in the wrapper scripts. This was | jlam | 1 | -1/+3 | |
a harmless bug, and the scripts will now run a little faster. | |||||
2003-01-07 | Output warnings to stderr, not to stdout (duh!) | jlam | 1 | -3/+3 | |
2003-01-07 | Don't complain about (correct) .buildlink leakage in the fake libtool | jlam | 1 | -3/+4 | |
archive case. Also output errors to stderr, not stdout (duh!). |