pkgsrc/devel/semi/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

71 lines
2 KiB
Makefile

# $NetBSD: Makefile,v 1.36 2015/11/25 12:49:46 jperkin Exp $
#
DISTNAME= semi-1.14.6
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
PKGREVISION= 7
CATEGORIES= devel
MASTER_SITES= http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/comp/emacsen/lisp/semi/semi-1.14-for-flim-1.14/
# This fix will be unnecessary for the next release.
PATCH_SITES= ${MASTER_SITE_LOCAL}
PATCHFILES= semi-1.14.6-pgg-gpg.patch
PATCH_DIST_STRIP= -p0
MAINTAINER= uebayasi@NetBSD.org
HOMEPAGE= http://git.chise.org/elisp/semi/
COMMENT= Emacs lisp library to provide MIME feature
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
BUILD_DEPENDS+= qkc-[0-9]*:../../converters/qkc
INSTALLATION_DIRS+= ${EMACS_LISPPREFIX:C|^${PREFIX}/||}/semi \
${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
EMACS_MODULES= base
EMACS_BUILDLINK=# defined
BUILD_TARGET.emacs= elc
BUILD_TARGET.xemacs= package
INSTALL_TARGET.emacs= install
INSTALL_TARGET.xemacs= install-package
MAKEFLAGS.emacs+=
MAKEFLAGS.xemacs+= PACKAGEDIR=${EMACS_LISPPREFIX:C|/lisp$||}
post-build:
@cd ${WRKSRC}; for i in mime-ui-en mime-ui-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/semi/' | \
while read file; do \
file=$$( basename $$file ); \
${INSTALL_DATA} $$file \
${DESTDIR}${EMACS_LISPPREFIX}/semi/$$file; \
done
post-install:
cd ${WRKSRC}; for f in mime-ui-*.info mime-*.info-[0-9]*; do \
${TEST} ! -f "$$f" || \
${INSTALL_DATA} "$$f" ${DESTDIR}${EMACS_INFOPREFIX}; \
done
.include "options.mk"
.include "../../editors/emacs/modules.mk"
.include "../../devel/apel/buildlink3.mk"
.include "../../devel/flim/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"