blob: 107c86cfb87b4ba994f35706c41f6a199caec0a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
DESCRIPTION = "The Persistence of Vision Raytracer is a high-quality, totally free tool for creating stunning three-dimensional graphics. "
HOMEPAGE = "http://www.povray.org"
SECTION = "console/graphics"
#Make this a weak assigment to allow branding of the povray binary
LICENSE = "povray"
DEPENDS = "virtual/libx11 zlib jpeg libpng tiff"
RDEPENDS = ""
PR = "r2"
#We apply a patch that subverts the checks for jpeg, zlib, png and tiff because we know OE has the required versions, but it is still a hack.
SRC_URI = "http://www.povray.org/redirect/www.povray.org/ftp/pub/povray/Official/Unix/${P}.tar.bz2 \
file://configure-cross-hack.patch;patch=1"
inherit autotools pkgconfig
PARALLEL_MAKE = ""
#autoreconf breaks, so we'll skip that. The added advantage is that the patch to ./configure actually has effect
do_configure() {
oe_runconf COMPILED_BY="${MAINTAINER}"
}
PACKAGES += "${PN}-scenes ${PN}-ini ${PN}-icons ${PN}-scripts ${PN}-includes"
PACKAGE_ARCH_${PN}-doc = "all"
PACKAGE_ARCH_${PN}-scenes = "all"
FILES_${PN}-scenes = "${datadir}/povray-3.6/scenes"
PACKAGE_ARCH_${PN}-ini = "all"
FILES_${PN}-ini = "${datadir}/povray-3.6/ini"
PACKAGE_ARCH_${PN}-icons = "all"
FILES_${PN}-icons = "${datadir}/povray-3.6/icons"
PACKAGE_ARCH_${PN}-scripts = "all"
FILES_${PN}-scripts = "${datadir}/povray-3.6/scripts"
PACKAGE_ARCH_${PN}-includes = "all"
FILES_${PN}-includes = "${datadir}/povray-3.6/include"
|