mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
32 lines
683 B
Makefile
32 lines
683 B
Makefile
# Created by: Bernhard Froehlich <decke@bluelife.at>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= basecamp
|
|
PORTVERSION= 20101203
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://home.bluelife.at/ports/distfiles/ \
|
|
LOCAL/decke
|
|
PKGNAMEPREFIX= redmine-
|
|
|
|
MAINTAINER= decke@FreeBSD.org
|
|
COMMENT= Basecamp Theme for Redmine
|
|
|
|
RUN_DEPENDS= redmine>=0.9:${PORTSDIR}/www/redmine
|
|
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
WWWDIR?= ${PREFIX}/www/redmine/public/themes/${PORTNAME}
|
|
|
|
PLIST_FILES= %%WWWDIR%%/README.md \
|
|
%%WWWDIR%%/stylesheets/application.css
|
|
PLIST_DIRS= %%WWWDIR%%/stylesheets \
|
|
%%WWWDIR%%
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
cd ${WRKSRC} && ${PAX} -r -w . ${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|