pkgsrc/devel/flim/Makefile
jperkin dc8fc0fd7b Remove mk/find-prefix.mk usage from the devel category.
The find-prefix infrastructure was required in a pkgviews world where
packages installed from pkgsrc could have different installation
prefixes, and this was a way for a dependency prefix to be determined.

Now that pkgviews has been removed there is no longer any need for the
overhead of this infrastructure.  Instead we use BUILDLINK_PREFIX.pkg
for dependencies pulled in via buildlink, or LOCALBASE/PREFIX where the
dependency is coming from pkgsrc.

Provides a reasonable performance win due to the reduction of `pkg_info
-qp` calls, some of which were redundant anyway as they were duplicating
the same information provided by BUILDLINK_PREFIX.pkg.
2015-11-25 12:49:46 +00:00

65 lines
1.8 KiB
Makefile

# $NetBSD: Makefile,v 1.37 2015/11/25 12:49:46 jperkin Exp $
DISTNAME= flim-1.14.9
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
PKGREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/comp/emacsen/lisp/flim/flim-1.14/
MAINTAINER= tech-pkg-ja@jp.NetBSD.org
HOMEPAGE= http://git.chise.org/elisp/flim/
COMMENT= Emacs lisp library for message representation/encoding
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
BUILD_DEPENDS+= qkc-[0-9]*:../../converters/qkc
INSTALLATION_DIRS+= ${EMACS_LISPPREFIX:C|^${PREFIX}/||}/flim \
${EMACS_INFOPREFIX:C|^${PREFIX}/||}
BUILD_TARGET= ${BUILD_TARGET.${EMACS_FLAVOR}}
INSTALL_TARGET= ${INSTALL_TARGET.${EMACS_FLAVOR}}
MAKEFLAGS= ${MAKEFLAGS.${EMACS_FLAVOR}}
USE_TOOLS+= makeinfo
INFO_FILES= yes
TEXINFO_REQD= 4.5
BUILD_TARGET.emacs= elc
BUILD_TARGET.xemacs= package
INSTALL_TARGET.emacs= install
INSTALL_TARGET.xemacs= install-package
MAKEFLAGS.emacs+= EMACS=${EMACS_BIN}
MAKEFLAGS.xemacs+= XEMACS=${EMACS_BIN} \
PACKAGEDIR=${EMACS_LISPPREFIX:C|/lisp$||}
EMACS_MODULES= base
EMACS_BUILDLINK=# defined
post-build:
@cd ${WRKSRC}; for i in mime-en mime-ja; do \
${RM} -f $${i}.info*; \
${CP} $${i}.texi $${i}.texi.orig; \
${LOCALBASE}/bin/qkc -Oeu $${i}.texi.orig >$${i}.texi; \
makeinfo --force --no-validate $${i}.texi; \
done
do-install: plist
cd ${WRKSRC}; \
grep -v '^@' ${PLIST} | grep '/site-lisp/flim/' | \
while read file; do \
file=$$( basename $$file ); \
${INSTALL_DATA} $$file \
${DESTDIR}${EMACS_LISPPREFIX}/flim/$$file; \
done
post-install:
cd ${WRKSRC}; for f in mime-*.info mime-*.info-[0-9]*; do \
${TEST} ! -f "$$f" || \
${INSTALL_DATA} "$$f" ${DESTDIR}${EMACS_INFOPREFIX}; \
done
.include "../../editors/emacs/modules.mk"
BUILDLINK_API_DEPENDS.apel+= apel>=10.7
.include "../../devel/apel/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"