mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
06834a2d07
Feature: * Rss * categories * can be used as a photoblog WWW: http://pluxml.org/ PR: ports/115382 Submitted by: Philippe Audeoud <jadawin at tuxaco.net>
40 lines
892 B
Makefile
40 lines
892 B
Makefile
# New ports collection makefile for: pluxml
|
|
# Date created: 7 August 2007
|
|
# Whom: Philippe Audeoud <jadawin@tuxaco.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pluxml
|
|
PORTVERSION= 0.3.1
|
|
CATEGORIES= french www
|
|
MASTER_SITES= http://pluxml.org/download/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= jadawin@tuxaco.net
|
|
COMMENT= Small weblog in php and xml
|
|
|
|
USE_PHP= xml pcre
|
|
WANT_PHP_WEB= yes
|
|
|
|
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
NO_BUILD= yes
|
|
|
|
SUB_FILES= pkg-message pkg-deinstall
|
|
SUB_LIST= WWWDIR=${WWWDIR} \
|
|
PORTNAME=${PORTNAME}
|
|
PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
|
|
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
.for data in images pluxml version
|
|
${CP} -R ${WRKSRC}/${data} ${WWWDIR}
|
|
.endfor
|
|
${CP} ${WRKSRC}/*.php ${WWWDIR}
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|