mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
ffd97a0193
- while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi)
37 lines
753 B
Makefile
37 lines
753 B
Makefile
# New ports collection makefile for: silentbob
|
|
# Date created: 2008-11-13
|
|
# Whom: TAKATSU Tomonari <tota@rtfm.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= silentbob
|
|
PORTVERSION= 2.4.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}2/${PORTNAME}-2.4/
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= Yet another sourcecode indexing tool
|
|
|
|
USES= cmake
|
|
|
|
LICENSE= GPLv1
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
PORTDOCS= *
|
|
PLIST_FILES= bin/bob
|
|
|
|
post-patch:
|
|
@${RM} ${WRKSRC}/CMakeCache.txt
|
|
@${REINPLACE_CMD} -e 's|/usr/lib/silent_bob/|${PREFIX}/lib/silent_bob/|' \
|
|
${WRKSRC}/src/init.cxx
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|