mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
720f5cb02c
- change elisp directory into ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/magit - stop installing 50magit.el and add pkg-message to show how to setup instead - update WWW URL in pkg-descr - add 'Created by' header in Makefile - set PKGNAMESUFFIX - add license information - add runtime dependency to devel/git - bump PORTREVISION PR: ports/182284 Submitted by: Yasuhiro KIMURA Approved by: kuriyama (maintainer timeout), culot (mentor)
32 lines
693 B
Makefile
32 lines
693 B
Makefile
# Created by: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= magit
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel elisp
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://cloud.github.com/downloads/magit/magit/
|
|
MASTER_SITE_SUBDIR= kuriyama
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Interface to Git for Emacs
|
|
|
|
LICENSE= GFDL GPLv3
|
|
LICENSE_COMB= multi
|
|
|
|
RUN_DEPENDS= git>0:${PORTSDIR}/devel/git
|
|
|
|
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}
|
|
|
|
.include <bsd.port.mk>
|