45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.3 2002/04/28 00:33:38 pvalchev Exp $
|
|
|
|
COMMENT= "Library of Emacs Input Method"
|
|
|
|
VERSION= 21.2
|
|
PKGNAME= emacs-leim-${VERSION}
|
|
DISTNAME= leim-${VERSION}
|
|
CATEGORIES= editors
|
|
NEED_VERSION= 1.525
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= emacs
|
|
|
|
MAINTAINER= Yozo TODA <yozo@v007.vaio.ne.jp>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
BUILD_DEPENDS= :emacs-${VERSION}*:editors/emacs21
|
|
RUN_DEPENDS= :emacs-${VERSION}*:editors/emacs21
|
|
|
|
SUBST_VARS= VERSION
|
|
|
|
WRKSRC= ${WRKDIR}/emacs-${VERSION}/leim
|
|
DATASUBDIR= share/emacs/${VERSION}
|
|
|
|
# this is what GNU configure script does plus two lines of patch to make it
|
|
# work with the installed emacs.
|
|
do-configure:
|
|
@cd ${WRKSRC} && cat Makefile.in | sed -e 's|@version@|${VERSION}|' \
|
|
-e 's|@prefix@|$${DESTDIR}${PREFIX}|' \
|
|
-e 's|@datadir@|$${prefix}/share|' \
|
|
-e 's|@srcdir@|${WRKSRC}|' \
|
|
-e 's|^BUILT-EMACS.*|BUILT-EMACS = ${PREFIX}/bin/emacs|' \
|
|
-e 's|buildlisppath=.*|buildlisppath=${PREFIX}/${DATASUBDIR}/lisp|' \
|
|
> Makefile
|
|
|
|
# leim assumes that the target directory exists already.
|
|
pre-install:
|
|
@mkdir -p ${PREFIX}/${DATASUBDIR}/leim
|
|
|
|
.include <bsd.port.mk>
|