summaryrefslogtreecommitdiff
path: root/editors/emacs20
AgeCommit message (Collapse)AuthorFilesLines
2010-03-30Fix emacs20 on -current. (It broke on the terminfo changes because itdholland3-9/+28
can't probe terminfo vs. termcap and needs to be told explicitly in its config system.) ok agc@. PKGREVISION to 14.
2010-02-21Add RCS Id (hi roy!).wiz2-2/+4
2010-02-04destdir support, plus fix some pre-existing funnies with install permissionsdholland5-24/+211
2010-01-20When running terminfo but compiled for termcap, we cannot assumeroy3-6/+25
that we actually have anything useable in termcap_term_buffer so just use the terminfo fixed size defined ealier.
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-3/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-21/+1
2009-04-30Make it build on DragonFly master.hasso2-14/+7
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-11-10Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal.wiz1-2/+2
2008-10-13Correct copy&paste error.uebayasi1-4/+4
2008-10-11Move mk/emacs.mk to editors/emacs/modules.mk.uebayasi2-4/+13
Don't call pkg_info to get the installed Emacs version; always use the version matching EMACS_TYPE set by users. Be DEPENDS to it. This should address pkg/37146 by Aleksey Cheusov. While here convert some emacs lisp packages to user-destdir.
2008-07-13Add patches for CVE-2008-1694 and CVE-2008-2142.dholland5-3/+73
PKGREVISION -> 11.
2008-07-01Fix build with gcc41 on DragonFly BSD.obache1-0/+3
emacs20 part of PR pkg/38633 from Hasso Tepper.
2008-04-05Fix some 64-bit problems in x11 code.kristerw7-11/+203
Bump PKGREVISION.
2008-03-06Now, emacs-20.7 does not exist in GNU sites, moved to old-gnu directory.obache1-7/+10
And define SITES.* exactly to avoid unnecessary fetch.
2008-01-09Update an include file to fix build errors for PKG_OPTIONS.emacs+=x11.kristerw2-1/+15
2007-10-29Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs.uebayasi1-0/+23
2007-10-16Remove some legacy support after branching 2007Q3.wiz1-19/+1
2007-08-13Fix up the use of package options in the Emacs packages:jlam2-30/+90
(1) Get rid of "nox11" -- the concept of "no" in package options is expressed by negating an option; use "-x11" instead. (2) Teach editors/emacs20 to use package options instead of EMACS_USE_POP, EMACS_USE_X, EMACS_USE_X_TOOLKIT and USE_INET6. We now use similar options as the other emacs packages, i.e. "x11", "motif", "xaw", as well as "pop" and "inet6". (3) Make the emacs*-nox11 packages simply remove all X11 options by setting PKG_OPTIONS.emacs appropriately and include the corresponding emacs Makefile. This allows for modifications to the emacs "X11" versions to be automatically picked up by the "non-X11" versions. The two corresponding versions of emacs now share the same version numbering, including PKGREVISIONs. Bump the PKGREVISIONs on all Emacs editor packages.
2007-08-04malloc.h --> stdlib.hjoerg2-1/+15
2007-06-30Make patch-ao a normal file and fix the build on DragonFly 1.8+joerg4-110/+119
2007-02-20share/emacs/site-lisp now exists by default -- don't try to remove it.wiz2-4/+3
Bump PKGREVISION for the PLIST change.
2006-12-06CHECK_WRKREF_SKIP takes relative names.joerg1-3/+3
2006-04-14Remove trailing whitespace from various info/* entries that was causingjlam1-4/+4
the files to not be found during PLIST creation.
2006-03-30* Honor PKGINFODIR.jlam2-4/+17
* List the info files directly in the PLIST.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-04Add DragonFly support. Fix errno. Remove patch-ac, it getsjoerg17-1498/+293
overriden by the GNU_CONFIGURE magic anyway.
2005-12-12Bump all motif packages for recent openmotif update. The major versionjoerg1-2/+2
of the shared libXm has changed.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-06-30Quieten CHECK_WRKREF. The build PATH in the dumped emacs is not a problem.markd1-1/+5
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
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-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-16This version of emacs does not support Darwin. Set NOT_FOR_PLATFORM.minskim1-1/+3
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-17Does not really use libtool, so don't set USE_LIBTOOL. Solves part ofwiz1-2/+1
PR 28977 by Greg A. Woods.
2005-02-23Add RMD160 digests in addition to the SHA1 ones.agc1-1/+5
2005-02-09fix format string vulnerability (CAN-2005-0100), bump PKGREVISIONdrochner3-3/+17
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
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-04-12bl3ifyxtraeme1-4/+4
2004-03-25Fix LP64 issues.kristerw10-3/+116
Add -fno-zero-initialized-in-bss when compiling with gcc3 (this is not needed for all configurations, but it does never hurt). Bump PKGREVISION.
2004-02-28Make this compile on amd64, based on Richard Rauch's patches (PR pkg/23701)kristerw4-140/+267
as applied to the editors/emacs package.
2004-02-16Remove info files entries from PLIST.seb1-92/+1
2004-01-27Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248heinz1-2/+2
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-13Make this build on NetBSD-current.kristerw2-1/+14
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-30Convert to USE_NEW_TEXINFO.seb2-32/+5