6b47fa52f2
Approved by: portmgr blanket
37 lines
906 B
Makefile
37 lines
906 B
Makefile
# Created by: Alex Ivasyuv <siegerstein@pochta.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= blender
|
|
PORTVERSION= 2.3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://download.blender.org/documentation/
|
|
PKGNAMESUFFIX= -doc
|
|
DISTFILES= BlenderManualIen.23.html.tar.gz BlenderManualIIen.23.html.tar.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Blender Documentation
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100077
|
|
post-extract:
|
|
# chmod -R bug.
|
|
# Do not use "-exec ... +", because of the same bug, it will not work.
|
|
@${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \;
|
|
.endif
|
|
|
|
pre-patch:
|
|
@cd ${WRKSRC}/htmlI/PartAT/volumetrics/gfx/ && \
|
|
${RM} -r "Nuova cartella" "Nuova cartella (2)"
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} "htmlI htmlII" ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.post.mk>
|