freebsd-ports/devel/cscope/Makefile

44 lines
831 B
Makefile
Raw Normal View History

# ex:ts=8
# ports collection makefile for: cscope
# Date created: 1998-11-21
# Whom: Castor Fu
#
1999-08-25 07:57:29 +02:00
# $FreeBSD$
#
2000-04-11 23:30:15 +02:00
PORTNAME= cscope
2009-05-01 20:43:29 +02:00
PORTVERSION= 15.7a
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= gahr@FreeBSD.org
COMMENT= An interactive C program browser
OPTIONS= XCSCOPE "Install (X)Emacs package" off
USE_BZIP2= yes
GNU_CONFIGURE= yes
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
.include <bsd.port.pre.mk>
.if defined(WITH_XCSCOPE)
PLIST_SUB+= XCSCOPE=""
.else
PLIST_SUB+= XCSCOPE="@comment "
.endif
MAN1= cscope.1
.if defined(WITH_XCSCOPE)
post-install:
${MKDIR} ${EMACSLISPDIR}
${INSTALL_DATA} ${WRKSRC}/contrib/xcscope/xcscope.el ${EMACSLISPDIR}/
${MKDIR} ${XEMACSLISPDIR}
${LN} -sf ${EMACSLISPDIR}/xcscope.el ${XEMACSLISPDIR}
.endif
.include <bsd.port.post.mk>