mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
cb5de81339
- Bump dependent ports as .so version has changed
33 lines
808 B
Makefile
33 lines
808 B
Makefile
# Created by: Andrey Slusar <anray@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mknmz-wwwoffle
|
|
PORTVERSION= 0.7.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= www databases textproc
|
|
MASTER_SITES= http://www.naney.org/comp/distrib/mknmz-wwwoffle/archive/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= WWWOFFLE cache indexer for full-text search system Namazu
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/wwwoffle:${PORTSDIR}/www/wwwoffle
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/mknmz:${PORTSDIR}/databases/namazu2
|
|
|
|
USES= perl5
|
|
HAS_CONFIGURE= yes
|
|
|
|
PORTDOCS= AUTHORS COPYING INSTALL INSTALL.ja NEWS README README.ja THANKS
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for a in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${a} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|