1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/devel/cscope/Makefile
Pietro Cerutti 3c7ba37617 - Update to 15.8a (bug fixes)
Reported by:	obrien
2013-02-05 08:58:10 +00:00

37 lines
794 B
Makefile

# Created by: Castor Fu
# $FreeBSD$
PORTNAME= cscope
PORTVERSION= 15.8a
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= gahr@FreeBSD.org
COMMENT= An interactive C program browser
OPTIONS_DEFINE= XCSCOPE
XCSCOPE_DESC= Install (X)Emacs package
GNU_CONFIGURE= yes
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MXCSCOPE}
PLIST_SUB+= XCSCOPE=""
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/contrib/xcscope/cscope-indexer ${PREFIX}/bin
${MKDIR} ${EMACSLISPDIR}
${INSTALL_DATA} ${WRKSRC}/contrib/xcscope/xcscope.el ${EMACSLISPDIR}
${MKDIR} ${XEMACSLISPDIR}
${LN} -sf ${EMACSLISPDIR}/xcscope.el ${XEMACSLISPDIR}
.else
PLIST_SUB+= XCSCOPE="@comment "
.endif
MAN1= cscope.1
.include <bsd.port.mk>