mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
ced1e88d5e
This update includes an Emacs major version change from 27.0.50 to 28.0.50. Ports that may depend on editors/emacs-devel must chase this update with a PORTREVISION bump. Submitted by: ashish (maintainer) Differential Revision: https://reviews.freebsd.org/D23012
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= howm
|
|
PORTVERSION= 1.4.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= http://howm.sourceforge.jp/a/
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Write fragmentarily and read collectively
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
.if ${FLAVOR:U} != devel && ${FLAVOR:U} != devel_nox
|
|
# http://pkg.awarnach.mathstat.dal.ca/data/11i386-default/2018-05-30_07h36m11s/logs/errors/howm-emacs26-1.4.3_3.log
|
|
BROKEN= fails to build
|
|
.endif
|
|
|
|
USES= emacs
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= *.html *.png
|
|
PORTEXAMPLES= en/0000-00-00-000000.txt ja/0000-00-00-000000.txt
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_DATA} *.el *.elc \
|
|
${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/doc && ${INSTALL_DATA} *.html *.png ${STAGEDIR}${DOCSDIR})
|
|
|
|
do-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/en ${STAGEDIR}${EXAMPLESDIR}/ja
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ja/0* ${STAGEDIR}${EXAMPLESDIR}/ja)
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} en/0* ${STAGEDIR}${EXAMPLESDIR}/en)
|
|
|
|
.include <bsd.port.mk>
|