f3fea666c7
This is a small bugfix release specifically made for magit to work with Emacs 24.4 (the port has thus been broken ever since Emacs 24.4 was committed to the tree). While here, clean up MASTER_SITES and point to an https domain. PR: 194843 Approved by: maintainer timeout, portmgr (antoine)
31 lines
827 B
Makefile
31 lines
827 B
Makefile
# Created by: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= magit
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= devel elisp
|
|
MASTER_SITES= https://github.com/magit/magit/releases/download/${PORTVERSION}/
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Interface to Git for Emacs
|
|
|
|
LICENSE= GFDL GPLv3
|
|
LICENSE_COMB= multi
|
|
|
|
USES= gmake
|
|
USE_EMACS= YES
|
|
INFO= magit
|
|
|
|
ELISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
|
|
|
|
MAKE_ENV+= ELISPDIR=${STAGEDIR}${PREFIX}/${ELISPDIR} \
|
|
INFODIR=${STAGEDIR}${PREFIX}/${INFO_PATH}
|
|
PLIST_SUB+= ELISPDIR=${ELISPDIR}
|
|
|
|
OPTIONS_DEFINE= GIT_SUBVERSION
|
|
GIT_SUBVERSION_DESC= Use devel/git-subversion as backend
|
|
GIT_SUBVERSION_RUN_DEPENDS= git-subversion>0:${PORTSDIR}/devel/git-subversion
|
|
GIT_SUBVERSION_RUN_DEPENDS_OFF= git>0:${PORTSDIR}/devel/git
|
|
|
|
.include <bsd.port.mk>
|