summaryrefslogtreecommitdiff
path: root/editors/emacs
AgeCommit message (Collapse)AuthorFilesLines
2006-07-02Don't install the files in share/emacs group-writable. Bumpedrillig2-3/+4
PKGREVISION of emacs and emacs-nox11.
2006-06-20Add a run-time depenency on perl because bin/emacs-grep-changelogminskim2-4/+4
requires perl to run. Bump PKGREVISION.
2006-06-06Make configure recognize Linux/amd64.minskim2-6/+17
2006-05-15Fix sort-columns function.markd4-4/+22
NetBSD sort objects to setting the field separator to the same value as the record separator. Since in this case the surrounding code guarantees there will be no tabs in the input set the field separator to tab. Bump PKGREVISION.
2006-05-13Fixed the RCS Id comment in line 1.rillig1-1/+1
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-04-05Pass the correct sized argument to sbrk() when trying to reduce the breakmarkd3-3/+17
so that on 64bit systems it is actually a negative number, not a very large positive one. Should fix PR pkg/29351. Thanks to Martijn van Buul for giving me access to an amd64 box so I could track this down. Bump PKGREVISION.
2006-03-30* Honor PKGINFODIR.jlam2-6/+28
* List the info files directly in the PLIST.
2006-03-25Fix build on sh3el. PR pkg/33418 from Yasushi Oshima.uebayasi4-7/+116
2006-02-20Add motif option from Juha-Matti Liukkonen in PR 32703, changed somewhatmarkd1-4/+10
by me. Also fixes PR 20883.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-04Remove zero length patch.markd2-2/+1
2005-12-29Use -nocombreloc on DragonFly as well. Suggested by Timothy H. Legantjoerg1-3/+4
on DragoFly's user list.
2005-12-29Create separate configuration for DragonFly. Fix errno.joerg15-4/+306
Based on patch from Richard Nyberg on DragonFly's user list.
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, forrillig2-4/+4
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-10-14Build fix on OpenBSD, borrowed from OpenBSD ports.hiramatsu1-1/+6
Quote from the commit log(ports/editors/emacs21/Makefile version 1.10). ----------------------------------------- Work around the fact that emacs undump knows too much about the layout of elf files (or thinks it does). These assumptions were just broken by binutils/ld changes to put GOT and PLT into their own PT_LOAD sections. Thus BSS is no longer part of the DATA PT_LOAD section. This is a workaround using the '-Z' compatibility flag which disables the GOT/PLT padding.
2005-10-06A couple of patches to fix build on NetBSD/hp700. From Konrad Schroder.markd3-4/+22
2005-10-05Remove some more *LEGACY* settings that are over a month old andwiz1-2/+1
thus were before 2005Q3.
2005-06-30Quieten CHECK_WRKREF. The build PATH in the dumped emacs is not a problem.markd1-1/+5
2005-06-08Share a Makefile.common between emacs and emacs-nox11.markd2-63/+78
Should fix PR pkg/30462. Also convert emacs to options framework.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
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-26Treat DragonFly as FreeBSD. From Peter Schuller in PR pkg/30225.markd2-10/+18
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-09Correct PLIST on Darwin. Based on patches provided by Tom Yu in PR pkg/26943.minskim2-6/+15
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-04-07Take maintainership.markd1-2/+2
2005-03-22Define POSIX_SIGNALS on NetBSD, similar to FreeBSD. From Gregwiz3-5/+14
Woods in PR 28977. Bump PKGREVISION.
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-26Use 21.4a tarball: only change is an entry in the README to disablewiz3-1761/+1764
exec-shield on linux if you have problems compiling emacs.
2005-02-24remove obsolete patch, thanks wizdrochner1-13/+0
2005-02-24update to 21.4drochner2-8/+6
This release fixes CAN-2005-0100, which we had a patch for before.
2005-02-23Add RMD160 digests in addition to the SHA1 ones.agc1-1/+2
2005-02-09fix format string vulnerability (CAN-2005-0100), bump PKGREVISIONdrochner3-3/+17
2004-12-28Bump PKGREVISIONs due to libtiff update.reed1-2/+2
Some BUILDLINK_RECOMMENDED bumps done also. (If I missed any, please let me know -- and let me know a good way to automate this.)
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-07-31Make this build on OS X. The new files are taken from the emacs cvskristerw6-11/+1515
repository.
2004-04-19Move include of bsd.prefs.mk before the test of EMACS_USE_XAW3D so themarkd1-3/+3
later can actually work.
2004-04-12bl3ifyxtraeme1-8/+8
2004-03-25It is not only SunOS that need -fno-zero-initialized-in-bss whenkristerw1-3/+3
using gcc 3. Add this flag for all configurations. Bump PKGREVISION.
2004-03-20-fno-zero-initialized-in-bss is required in CFLAGS on SunOS with gcc3,bouyer1-1/+6
otherwise emacs core dump on exit. Found this on an emacs mailing list.
2004-02-25make yhis compile on amd64,drochner4-7/+147
based on Richard Rauch's patches (PR pkg/23701)
2004-02-16Remove info files entries from PLIST.seb1-116/+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-03Bump package revisions for tiff update.reed1-2/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-09-17Remove patch-ae.work.wiz1-3/+1
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2