blob: 1659032b9413438892855c92eda5a9e5cfc7ce9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: silentbob
# Date created: 2008-11-13
# Whom: TAKATSU Tomonari <tota@rtfm.jp>
#
# $FreeBSD$
#
PORTNAME= silentbob
PORTVERSION= 2.4.1
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}2/${PORTNAME}-2.4/
MAINTAINER= tota@FreeBSD.org
COMMENT= Yet another sourcecode indexing tool
USE_CMAKE= yes
LICENSE= GPLv1
LICENSE_FILE= ${WRKSRC}/COPYING
PORTDOCS= *
PLIST_FILES= bin/bob
post-patch:
@${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>
|