summaryrefslogtreecommitdiff
path: root/editors/xemacs-current
AgeCommit message (Collapse)AuthorFilesLines
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron1-2/+2
2013-06-06Bump PKGREVISION for libXft changes for NetBSD native X support onwiz1-2/+2
NetBSD 6, requested by tron.
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron1-2/+2
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz1-2/+2
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-04-06Resolves:rodent1-2/+2
"INFO_FILES should be set to YES or yes." "Packages that install info files should set INFO_FILES." Makefile and PLIST warning, respectively.
2013-02-16Recursive bump for png-1.6.wiz1-2/+2
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-12-21Fix 6 year+ old type in configure by adding missing hyphen for -Wl,-R.joerg3-5/+37
Fix main declaration for X11 test. Always use C++ and C99 compatible inline specifier.
2012-12-16recursive bump from cyrus-sasl libsasl2 shlib major bump.obache1-2/+2
2012-10-03Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-04-27Fix CVE-2009-2688, via <https://bugzilla.redhat.com/show_bug.cgi?id=511994>hauke3-12/+86
Note xemacs 21.5 still dumps core during the build.
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-01-24Recursive dependency bump for databases/gdbm ABI_DEPENDS change.sbd1-2/+2
2012-01-13Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump.obache1-2/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-2/+2
2011-08-23Recursive bump from gdbm shlib bump.obache1-2/+2
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2011-04-01Add patch that should fix build with png-1.5.wiz2-1/+74
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-06-14Needs revbump for png update.dholland1-2/+2
2009-12-29Fix the mysterious bulk build failure (temacs can only run in batch mode).joerg2-1/+38
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-3/+3
2009-06-14Remove @dirrm entries from PLISTsjoerg1-29/+1
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-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-05-04Fix vcdiff insecure temp file creation vulnerability (CVE-2008-1694) fortonnerre3-3/+115
xemacs-current as well.
2008-04-24Restructure the following packages:jlam8-1526/+1613
editors/xemacs-current editors/xemacs-current-nox11 The latter is now just editors/xemacs-current built with a specific set of options. Changes include: + Rename the "xaw" option to "lucid" to match the option name used in xemacs/options.mk. Also comment out the "esound" option which isn't fully supported yet. Add some comments to the options.mk file to make it a little easier to understand. XXX Should probably add a pgsql option as this version of XEmacs has XXX some sort of PostgreSQL support. Also need to sort out native XXX sound support. + Remove Makefile.common and move all logic into xemacs-current/Makefile and xemacs-current/options.mk. + As of version 21.5, xemacs switched to using GNU autoconf, so set GNU_CONFIGURE=yes. + Include termcap.buildlink3.mk to properly deal with termcap/curses issues (xemacs needs termcap). Drop the --without-ncurses setting as the issue is handled by termcap.buildlink3.mk. + Be slightly more aware of ${X11_TYPE} == "modular" by not referring to ${X11BASE} in that case. + Include buildlink3.mk files for zlib and gettext, which are detected automatically if they're in the base system. Gettext is needed for MULE support. + In the Makefile and the PLIST, don't substitute for ${EMACSVER}. Instead substitute for ${DISTNAME} so the PLIST looks closer to xemacs/PLIST. + Add patch-al which handles a difference between bmake and gmake in using $< in a makefile target. + Support DESTDIR installation by adding INSTALL_MAKE_FLAGS to override where files are installed during the install phase. + Honor PKGMANDIR. + Bump the PKGREVISION for xemacs-current and xemacs-current-nox11 to 1. Both packages now track and use the same PKGREVISION number.
2007-11-13long-overdue commit of an option to enable xft anti-aliased fontsdan1-2/+9
ok uebayasi@
2007-11-13make paths relative to ${.CURDIR}dan1-6/+6
per request from uebayasi@
2007-11-12Support XEmacs 21.5.x without X too.uebayasi3-70/+97
2007-10-29Initial addition of buildlink3.mk fragments for Emacs / XEmacs programs.uebayasi1-0/+23
2007-06-30Fix build on DragonFly.joerg4-2/+51
2007-05-20Desupport gnome1 option.wiz1-4/+1
2006-12-23Variable `EMACSVERSION' used but not defined.obache1-3/+4
2006-12-19CHECK_WRKREF_SKIP wants a relative path nowadays.wiz1-3/+3
2006-10-24The emacs binary may have the build path embedded.rillig1-1/+5
2006-10-14Fixed "test ==".rillig4-8/+31
2006-09-30Add some missing entry.obache1-1/+14
2006-09-30Some forgotten renumbering 19->27.obache1-4/+4
2006-09-06Remove Mario Kemper as maintainer of these package on his request.tron1-2/+2
2006-09-04Update to 21.5.27.martin9-116/+57
This fixes PR 34197.
2006-08-14Add debug optionmartin1-2/+7
2006-05-31The databases/openldap package has been split in -client and -server componentghen1-2/+2
packages. Convert LDAP-based applications to depend on openldap-client, and bump PKGREVISION for those that depend on it by default.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-03-20Fix xemacs packages to honor PKGINFODIR in the default INFOPATH whenjlam2-28/+5
reading info files. Also strip the split info files from the PLIST as the plist module handles them automatically. Lastly, define INFO_FILES so that the pkginstall framework properly manages the "dir" info file database index in the xemacs info directory. Bump the PKGREVISION.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2