34 lines
773 B
Makefile
34 lines
773 B
Makefile
# $OpenBSD: Makefile,v 1.15 2010/11/15 19:45:57 espie Exp $
|
|
|
|
COMMENT= code browsing program
|
|
|
|
DISTNAME= cscope-15.7a
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://cscope.sourceforge.net/
|
|
|
|
MAINTAINER= Benoit Lecocq <benoit@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c ncurses
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cscope/}
|
|
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
USE_GROFF = Yes
|
|
|
|
post-install:
|
|
@cd ${WRKSRC}; ${INSTALL_SCRIPT} contrib/xcscope/cscope-indexer \
|
|
${PREFIX}/bin/cscope-indexer
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/emacs/site-lisp
|
|
@cd ${WRKSRC}; ${INSTALL_DATA} contrib/xcscope/xcscope.el \
|
|
${PREFIX}/share/emacs/site-lisp
|
|
|
|
.include <bsd.port.mk>
|