38 lines
997 B
Makefile
38 lines
997 B
Makefile
# $OpenBSD: Makefile,v 1.9 2002/12/29 20:08:46 fgsch Exp $
|
|
|
|
COMMENT= "3D creation software"
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
V= 2.23
|
|
PKGNAME= blender-${V}
|
|
DISTNAME= blender-creator-${V}-linux-glibc2.1.2-i386-static
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://www.blender.nl/
|
|
|
|
MAINTAINER= Reinhard J. Sammer <reinhard@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= "no commercial use"
|
|
PERMIT_PACKAGE_FTP= "no commercial use"
|
|
PERMIT_DISTFILES_CDROM= "no commercial use"
|
|
PERMIT_DISTFILES_FTP= "no commercial use"
|
|
|
|
MASTER_SITES= ftp://ftp.cs.umn.edu/pub/blender/pub/ \
|
|
http://www.download.blender.pl/mirror/
|
|
|
|
RUN_DEPENDS= :redhat_base-*:emulators/redhat/base
|
|
|
|
INSTALL_STRIP=
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/blender ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/blender
|
|
${INSTALL_DATA} ${WRKSRC}/{README,copyright.txt} \
|
|
${PREFIX}/share/examples/blender
|
|
cd ${WRKSRC} && tar cf - plugins | \
|
|
(cd ${PREFIX}/share/examples/blender && tar xf -)
|
|
|
|
.include <bsd.port.mk>
|