mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
bea2b0b802
Please refer to the 20200811 UPDATING entry when upgrading dependent (*-emacs26-*) ports. Port changes: - depend on math/gmp - match upstream by turning CAIRO, HARFBUZZ, and JSON options and on and turning MAGICK off by default - remove OPENMP check for graphics/ImageMagick as the openmp is now included in base - update EMACS_VER in Mk/Uses/emacs.mk - bump USES=emacs ports or remove BROKEN for net-im/jabber.el and deskutils/howm, which now build Submitted by: HIROSE Yuuji <yuuji@gentei.org> (canna patch) Reviewed by: ashish Differential Revision: https://reviews.freebsd.org/D23966
40 lines
892 B
Makefile
40 lines
892 B
Makefile
# Created by: Kimura Fuyuki <fuyuki@hadaly.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= psvn
|
|
PORTVERSION= 20150720.214200
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel elisp
|
|
MASTER_SITES= http://www.xsteve.at/prg/emacs/
|
|
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}
|
|
DISTNAME= psvn.el
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= Subversion interface for Emacs
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
RUN_DEPENDS= svn:devel/subversion
|
|
|
|
USES= emacs
|
|
|
|
NO_WRKSUBDIR= yes
|
|
EXTRACT_CMD= ${CP}
|
|
EXTRACT_BEFORE_ARGS= # empty
|
|
EXTRACT_AFTER_ARGS= ${WRKSRC}/psvn.el
|
|
|
|
PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}/psvn.el \
|
|
${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}/psvn.elc
|
|
|
|
ELISPDIR= ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} && ${EMACS_CMD} -batch -q -f batch-byte-compile psvn.el)
|
|
|
|
do-install:
|
|
@${MKDIR} ${ELISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/psvn.* ${ELISPDIR}
|
|
|
|
.include <bsd.port.mk>
|