freebsd-ports/deskutils/howm/Makefile
Joseph Mingrone ab463bdca9
*/*: Chase editors/emacs update
- Bump Emacs version in Mk/Uses/emacs.mk to update version-specific
  paths

- Bump PORTREVISION of ports with USES=emacs.  This is required for two
  reasons.  Emacs lisp files need to be byte compiled for the new Emacs
  version, and files installed under, e.g., EMACS_VERSION_SITE_LISPDIR
  need to be relocated.

Reviewed by:	ashish
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D43615
2024-01-27 18:33:05 -04:00

42 lines
1.1 KiB
Makefile

PORTNAME= howm
PORTVERSION= 1.4.8
PORTREVISION= 7
CATEGORIES= deskutils
MASTER_SITES= http://howm.sourceforge.jp/a/
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Write fragmentarily and read collectively
WWW= http://howm.sourceforge.jp/index.html
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= emacs
EMACS_FLAVORS_EXCLUDE=devel_full devel_nox # Debugger entered--Lisp error: (wrong-type-argument stringp nil)
GNU_CONFIGURE= yes
CONFLICTS_INSTALL= howm howm-emacs_* # share/doc/howm/README-j.html
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>