83f83e331f
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.
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2011/10/12 00:42:59 minskim Exp $
|
|
#
|
|
|
|
DISTNAME= bbdb-2.35
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
|
|
CATEGORIES= mail misc news
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bbdb/}
|
|
|
|
MAINTAINER= minoura@NetBSD.org
|
|
HOMEPAGE= http://sourceforge.net/projects/bbdb/
|
|
COMMENT= Insidious Big Brother DataBase, a rolodex-like database Emacs program
|
|
|
|
# bbdb is included in xemacs-packages
|
|
EMACS_VERSIONS_ACCEPTED= emacs24 emacs24nox emacs23 emacs23nox \
|
|
emacs22 emacs22nox emacs21 emacs21nox \
|
|
emacs20
|
|
CONFLICTS+= xemacs-packages-[0-9]*
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
CONFIGURE_ARGS+= --enable-rmail
|
|
GNU_CONFIGURE= yes
|
|
BUILD_TARGET= all mhe
|
|
USE_TOOLS+= makeinfo
|
|
INFO_FILES= # PLIST
|
|
LISPDIR= ${EMACS_LISPPREFIX}/bbdb
|
|
INSTALLATION_DIRS= ${EMACS_INFOPREFIX}
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
|
|
post-extract:
|
|
${RM} -rf ${WRKSRC}/lisp/*.elc
|
|
|
|
.if ${EMACS_FLAVOR} == "xemacs"
|
|
CONFIGURE_ARGS+= --with-emacs=xemacs
|
|
CONFIGURE_ARGS+= --with-package-dir=${PREFIX}/lib/xemacs/site-packages
|
|
INSTALL_TARGET= install-pkg
|
|
.else
|
|
do-install:
|
|
${MKDIR} ${DESTDIR}${LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/lisp/*.el ${DESTDIR}${LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/lisp/*.elc ${DESTDIR}${LISPDIR}
|
|
cd ${WRKSRC}/texinfo; for f in bbdb.info bbdb.info-[0-9]*; do \
|
|
${TEST} ! -f "$$f" || \
|
|
${INSTALL_DATA} "$$f" ${DESTDIR}${PREFIX}/${PKGINFODIR};\
|
|
done
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|