6016580750
PR: ports/88283 Submitted by: maintainer
37 lines
853 B
Makefile
37 lines
853 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: sitebar
|
|
# Date created: Jun 23, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sitebar
|
|
PORTVERSION= 3.3.5
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= SiteBar-${PORTVERSION}
|
|
|
|
MAINTAINER= gunter@six-two.net
|
|
COMMENT= The Bookmark Server for Personal and Team Use
|
|
|
|
USE_BZIP2= yes
|
|
USE_PHP= mysql pcre
|
|
WANT_PHP_WEB= yes
|
|
NO_BUILD= yes
|
|
DATADIR= ${PREFIX}/www/${PORTNAME}
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
@cd ${WRKSRC} && \
|
|
${FIND} . -type d -exec ${MKDIR} ${DATADIR}/{} \;
|
|
@cd ${WRKSRC} && \
|
|
${FIND} . ! -type d -exec ${INSTALL_DATA} {} ${DATADIR}/{} \;
|
|
@${FIND} ${DATADIR} ! -type d | \
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} ${DATADIR} -type d | ${SORT} -r | \
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|