7fc5bd70f3
editors/emacs: - Update to 24.3 - Update CANNA patchset[1] - Unbreak ARM support by using the patch from emacs-devel port - Add missing INSTALLS_ICONS[2] - Remove a patch which is already integrated upstream - Fix Makefile header editors/emacs-devel: - Update to bzr revision 112178 - Fix Makefile header - Add missing INSTALLS_ICONS[2] editors/emacs23: - Remove ABI versions from LIB_DEPENDS - Fix Makefile header - Add missing INSTALLS_ICONS[2] Mk/bsd.emacs.mk: - Update major version for editors/emacs port *: - Bump PORTREVISION to chase Emacs updates PR: ports/177428[2] Submitted by: Yuji TAKANO[1] (via private email), bdrewery[2]
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# New ports collection makefile for: EasyPG
|
|
# Date created: 25 December 2007
|
|
# Whom: Shota Iwazaki <iwazaki8@yahoo.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= easypg
|
|
PORTVERSION= 0.0.16
|
|
PORTREVISION= 11
|
|
CATEGORIES= security elisp
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP}
|
|
MASTER_SITE_SUBDIR= epg/29289
|
|
DISTNAME= epg-${PORTVERSION}
|
|
|
|
MAINTAINER= iwazaki8@yahoo.co.jp
|
|
COMMENT= EasyPG is yet another GnuPG interface for Emacs
|
|
|
|
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg1
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_EMACS= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (${EMACS_PORT_NAME} == "emacs23") || (${EMACS_PORT_NAME} == "emacs24") || (${EMACS_PORT_NAME} == "emacs-devel")
|
|
IGNORE= easyPG has been part of Emacs 23 and Emacs 24
|
|
.endif
|
|
|
|
INFO= epa
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= ChangeLog NEWS README
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKSRC};\
|
|
${MKDIR} ${PREFIX}/${EMACS_SITE_LISPDIR}/epg;\
|
|
${INSTALL_DATA} *.el *.elc ${PREFIX}/${EMACS_SITE_LISPDIR}/epg
|
|
cd ${WRKSRC};\
|
|
${INSTALL_MAN} epa.info ${PREFIX}/${INFO_PATH}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR};\
|
|
cd ${WRKSRC};\
|
|
${INSTALL_MAN} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|