summaryrefslogtreecommitdiff
path: root/misc/bbdb
AgeCommit message (Collapse)AuthorFilesLines
2015-11-03Add SHA512 digests for distfiles for misc categoryagc1-1/+2
Problems found locating distfiles: Package colorls: missing distfile ls.tar.gz Package molden: missing distfile molden-4.6/molden4.6.tar.gz Package softmaker-office-demo: missing distfile ofl06trial.tgz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-08-03- Enable for Emacs25, say, add emacs25 formef1-3/+4
EMACS_VERSIONS_ACCEPTED. - Drop emacs20, from the same variable. Fails with mail-parse.el is missing (PKGREVISION stays the same, no changes if packaged fine.)
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-17Revbump all elisp packages after emacs changes.dholland1-1/+2
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2011-10-12Update bbdb to 2.35.minskim2-7/+10
Changes: - Rewrite the coding cookie on save. This makes sure that the setting of bbdb-file-coding-system is reflected in the file. - Get Gnus data from the raw article buffer. - Don't open a new window for BBDB if there are no records to display. - Bug fixes and documentation improvements.
2011-10-11Make bbdb build with emacs-24.minskim3-3/+20
Without this patch, build fails with the following error: bbdb-mhe.el:56:1:Error: Invalid function: ... Emacs is partially responsible for this, but the upstream won't fix it since the cause of this (old-style backquote) will be removed in emacs-25. Patch provided by Makoto Fujiwara in PR 44963.
2011-08-29Allow bbdb to be built with emacs23nox.hiramatsu1-2/+2
2011-05-13emacs20nox11 is not valid for EMACS_VERSIONS_ACCEPTED.obache1-2/+2
2010-05-06bbdb doesn't like jobs.tonnerre1-1/+2
2009-08-06PKGREVISION bump for elisp packages because of bytecode format changesminskim1-2/+2
in emacs23.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2009-06-06Allow bbdb to build with emacs23.minskim1-2/+3
2009-06-06Combine FOR_emacs* in bbdb's PLIST into FOR_emacs.minskim1-11/+3
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-19Fixes to parallel build.obache2-1/+17
2008-10-11Move mk/emacs.mk to editors/emacs/modules.mk.uebayasi2-4/+4
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-03-04Mechanical changes to add DESTDIR support to packages that installjlam1-5/+7
their files via a custom do-install target.
2007-10-29Initial addition of buildlink3.mk fragments for EmacsLisp packages.uebayasi1-0/+32
2007-10-20Add GNU Emacs-specific files for emacs22{,nox}.minoura1-1/+5
Fixes PR pkg/37094.
2007-05-30Add emacs22{,nox} and emacs20nox as accepted Emacs versions.uebayasi1-2/+2
2007-01-27emacs21nox needs same entries as emacs21.obache1-1/+3
2006-08-06Reomove BROKEN_IN for packages that built in the latestkristerw1-3/+1
NetBSD 3.0_STABLE/i386 bulk build.
2006-06-04Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).joerg1-3/+3
While going through the tree, fix some more packages which had similiar issues with too strict conflicts, bump the revisions of those.
2006-05-19Look in the right directory for the info pages. Bump revision.joerg1-3/+3
2006-05-18Mark as BROKEN_IN pkgsrc-2006Q1 according towiz1-1/+3
ftp://ftp.NetBSD.org/pub/pkgsrc/misc/kristerw/pkgstat/i386-3.0/20060501.1050/broken.html
2006-03-20Replace INFO_DIR with EMACS_INFOPREFIX, which is the correct location forjlam2-19/+10
info files for both emacs and xemacs. Handle the split info file case correctly when installing the info files.
2006-03-05* Teach the tools framework how to supply the pkgsrc version ofjlam1-2/+2
makeinfo if no native makeinfo executable exists. Honor TEXINFO_REQD when determining whether the native makeinfo can be used. * Remove USE_MAKEINFO and replace it with USE_TOOLS+=makeinfo. * Get rid of all the "split" argument deduction for makeinfo since the PLIST module already handles varying numbers of split info files correctly. NOTE: Platforms that have "makeinfo" in the base system should check that the makeinfo entries of pkgsrc/mk/tools.${OPSYS}.mk are correct.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
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-08-28Rework emacs.mk:uebayasi1-1/+2
1) Simplify the way how an emacs version is picked when no emacs is installed, but a user try to install an Emacs Lisp package. Just pick up the version set as EMACS_TYPE than searching for versions already installed etc. If the EMACS_TYPE version is not supported by the Emacs Lisp Package, just fail. EMACS_TYPE be default to GNU Emacs 21. (In other words, users should set EMACS_TYPE as they want. Otherwise GNU Emacs 21 is used.) 2) All Emacs Lisp Packages *must* prepend EMACS_PKGNAME_PREFIX to a) the PKGNAME itself, and b) PKGNAME in its dependency lines. EMACS_PKGNAME_PREFIX is expanded to "xemacs-" when XEmacs is used. This keeps dependency graph of Emacs-Lisp-packages- installed-for-XEmacs consistent. 3) Document EMACS_* variables as much as possible. 4) Provide more cookies for PLIST. Maybe utilized later. Note that the 2) change doesn't affect the default, GNU Emacs 21 behaviour. So no version / revision bumps in this commit.
2005-06-17Create directories before installing files into them.jlam1-1/+4
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
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-04-26Convert to buildlink3.snj1-2/+2
2003-12-30Shorten commentcjep1-2/+2
2003-12-24s/@netbsd.org/@NetBSD.org/ in MAINTAINER.jmmv1-2/+2
2003-09-04New package bbdb, Insidious Big Brother Database.minoura4-0/+99
The Insidious Big Brother DataBase is an emacs-based contact manager that integrates itself into your mail and news clients.