summaryrefslogtreecommitdiff
path: root/devel/readline
AgeCommit message (Collapse)AuthorFilesLines
2005-07-01Exclude Darwin>=8.0 from _INCOMPAT_READLINE_LIBRARY because it has aminskim1-2/+2
readline library from NetBSD 2.0.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-80/+85
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests.agc1-1/+2
2005-01-26Linking against libedit also requires linking against libtermcap.jlam1-2/+2
This was already done in the "-lreadline" case, but also needed to be done for the "-lhistory" case.
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-11-28Rewrite lib-checking code to use the standard variables and method tojlam1-28/+17
check and store the presence of libreadline and libedit. Also, don't assume that just because libreadline.* exists that GNU readline exists. Instead, use the presence of particular macros in the readline.h header as a check for GNU readline.
2004-11-15Add a new variable BROKEN_READLINE_DETECTION which should be set tojlam1-1/+18
yes/no by a package Makefile, depending on whether the configure process properly detects the additional libraries needed to link against -lreadline (typically, you need either "-lreadline -ltermcap", or "-lreadline -lcurses" to properly link against -lreadline). If this variable is set to "yes", then we automatically expand "-lreadline" into "-lreadline -l<termcap functions library>". BROKEN_READLINE_DETECTION defaults to "no". Set BROKEN_READLINE_DETECTION to "yes" in security/heimdal and remove the custom logic that did the same work.
2004-11-14Update devel/readline to 5.0. Changes from version 4.3 include:jlam5-75/+62
* Improved compatibility with BSD csh modifiers. * Improved vi editing mode. * History files include timestamp information.
2004-10-16Add Interix-*-* to _INCOMPAT_READLINE because libedit of Interix doesn'tminskim1-2/+2
provide any readline functions. Noted by HIRAMATSU Yoshifumi in PR pkg/27275.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
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.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-9/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-20Use ${BSD_INSTALL_LIB} so the library is installed +x. (Bump PKGREVISION;tv3-6/+7
this can be un-bumped if the patchlevel goes up again.)
2004-07-13add Darwin to INCOMPAT_READLINE to work around PR 26268danw1-2/+2
2004-05-31oops; move _READLINE_H and _READLINE_READLINE_H definitions outsidegrant1-2/+2
the conditional as they are needed later on.
2004-05-31also test for the readline.h header file when determining whether wegrant1-5/+9
have builtin readline. fixes a problem under Slackware 9.1 where the aaa_elflibs package (which must be installed) provides shared libraries for base system programs linked against them, but does not provide the .so symlink nor the header files needed for development, so can't be used for pkgsrc.
2004-05-29unused.kristerw1-94/+0
2004-04-26Suppress the "inferring the mode of operation is deprecated" warning byjlam2-11/+11
specifying the mode of operation when invoking libtool.
2004-03-29Match the template builtin.mk file in bsd.builtin.mk, and make the twojlam1-11/+11
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links) use the new format correctly.
2004-03-23USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined.jlam1-2/+2
2004-03-13Typo: && should be || to get the correct test semantics.jlam1-2/+2
2004-03-10Split out the code that deals with checking whether the software isjlam2-143/+126
built-in or not into a separate builtin.mk file. The code to deal checking for built-in software is much simpler to deal with in pkgsrc. The buildlink3.mk file for a package will be of the usual format regardless of the package, which makes it simpler for packagers to update a package. The builtin.mk file for a package must define a single yes/no variable USE_BUILTIN.<pkg> that is used by bsd.buildlink3.mk to decide whether to use the built-in software or to use the pkgsrc software.
2004-02-20If USE_GNU_READLINE is set, then actually use the builtin readline if it'sjlam1-3/+4
GNU and satisfies the dependency requirements.
2004-02-18Reorder some lines so that BUILDLINK_USE_BUILTIN.<pkg> set in thejlam1-22/+24
environment overrides all other settings.
2004-02-17Deal with built-in readline actually being GNU readline.jlam1-21/+76
2004-02-16Remove info files entries from PLIST.seb1-4/+1
2004-02-12Create a new variable PREFER_NATIVE that has the opposite semanticsjlam2-6/+26
as PREFER_PKGSRC. Preferences are determined by the most specific instance of the package in either PREFER_PKGSRC or PREFER_NATIVE. If a package is specified in neither or in both variables, then PREFER_PKGSRC has precedence over PREFER_NATIVE.
2004-02-12Reorganize code so that any dependencies are checked as part of decidingjlam2-30/+34
whether the software is built-in or not. This facilitates implementing the forthcoming PKGSRC_NATIVE variable.
2004-02-11Move the INCOMPAT_FOO checks to a more natural location within thejlam1-14/+13
block that decides whether package FOO is built-in or not. If the platform is listed in IMCOMPAT_FOO, then treat FOO as being not built-in.
2004-02-06If we're passing through MAKEFLAGS variables whose values may containjlam1-3/+3
spaces, use the :Q modifier instead of double-quoting the value. This avoids breakage when executing the just-in-time su targets.
2004-02-05Make PREFER_PKGSRC just yes/no or a list of packages. This makes itjlam2-10/+6
simpler to understand.
2004-02-05Rename BUILDLINK_PREFER_PKGSRC to PREFER_PKGSRC so that we can use itsjlam2-10/+8
value outside of buildlink-related files.
2004-02-05Support a new global variable:jlam2-2/+18
BUILDLINK_PREFER_PKGSRC This variable determines whether or not to prefer the pkgsrc versions of software that is also present in the base system. This variable is multi-state: defined, or "yes" always prefer the pkgsrc versions not defined, or "no" only use the pkgsrc versions if needed by dependency requirements This can also take a list of packages for which to prefer the pkgsrc-installed software. The package names may be found by consulting the value added to BUILDLINK_PACKAGES in the buildlink[23].mk files for that package.
2004-01-24Support BUILDLINK_DEPENDS.<pkg> being a list of values.jlam1-2/+2
2004-01-10Be a bit more accurate: we want to match a ".", not any character.jlam1-3/+3
2004-01-05bl3ifyjlam1-2/+4
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-05Check variable values for "no" as well as "NO". Also sprinkle somejlam1-8/+8
double quotes.
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-4/+4
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+88
buildlink3 framework.
2003-09-19update HOMEPAGEdent1-2/+2
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-30Update to 4.3pl5. Incorporate 5 official patches.uebayasi2-2/+17
[readline43-001] Pressing certain key sequences causes an infinite loop in _rl_dispatch_subseq with the `key' argument set to 256. This eventually causes bash to exceed the stack size limit and crash with a segmentation violation. [readline43-002] Repeating an edit in vi-mode with `.' does not work. [readline43-003] When in a locale with multibyte characters, the readline display updater will occasionally cause a segmentation fault when attempting to compute the length of the first multibyte character on the line. [readline43-004] When running in a locale with multibyte characters, the readline display updater will use carriage returns when drawing the line, overwriting any partial output already on the screen and not terminated by a newline. [readline43-005] Using the vi editing mode's case-changing commands in a locale with multibyte characters will cause garbage characters to be inserted into the editing buffer. (Any maintainership taker?)
2003-06-25Convert to USE_NEW_TEXINFO.seb2-9/+3
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2002-12-07Update readline to 4.3.jmmv4-26/+29
Changes in this version are mostly bugfixes; some new functionality has been added as well. For an exhaustive list of changes, please look at the CHANGES file included in the distribution.
2002-10-25Unused.wiz1-89/+0
2002-10-09Be more precise about which files need to be moved into the readlinejlam1-3/+3
subdirectory in ${BUILDLINK_DIR}/include.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam3-16/+77
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.