Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/aqsis: ChangeLog aqsis-1.4.0.ebuild aqsis-1.2.0.ebuild aqsis-1.3.0_p20080707.ebuild
Date: Tue, 05 Aug 2008 22:23:35
Message-Id: E1KQUwG-0001IG-2c@stork.gentoo.org
1 maekke 08/08/05 22:23:32
2
3 Modified: ChangeLog
4 Added: aqsis-1.4.0.ebuild
5 Removed: aqsis-1.2.0.ebuild aqsis-1.3.0_p20080707.ebuild
6 Log:
7 version bump to 1.4.0, bug #232699; remove old
8 (Portage version: 2.2_rc6/cvs/Linux 2.6.26.1 i686)
9
10 Revision Changes Path
11 1.15 media-gfx/aqsis/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aqsis/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aqsis/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aqsis/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/aqsis/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 7 Jul 2008 21:52:33 -0000 1.14
24 +++ ChangeLog 5 Aug 2008 22:23:31 -0000 1.15
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/aqsis
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/aqsis/ChangeLog,v 1.14 2008/07/07 21:52:33 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/aqsis/ChangeLog,v 1.15 2008/08/05 22:23:31 maekke Exp $
30 +
31 +*aqsis-1.4.0 (05 Aug 2008)
32 +
33 + 05 Aug 2008; Markus Meier <maekke@g.o> -aqsis-1.2.0.ebuild,
34 + -aqsis-1.3.0_p20080707.ebuild, +aqsis-1.4.0.ebuild:
35 + version bump to 1.4.0, bug #232699; remove old
36
37 *aqsis-1.3.0_p20080707 (07 Jul 2008)
38
39
40
41
42 1.1 media-gfx/aqsis/aqsis-1.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aqsis/aqsis-1.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aqsis/aqsis-1.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: aqsis-1.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/aqsis/aqsis-1.4.0.ebuild,v 1.1 2008/08/05 22:23:31 maekke Exp $
52
53 EAPI="1"
54
55 inherit versionator multilib eutils cmake-utils
56
57 DESCRIPTION="Open source RenderMan-compliant 3D rendering solution"
58 HOMEPAGE="http://www.aqsis.org"
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="+fltk openexr"
63
64 if [[ "${P}" == *_p* ]] ; then
65 # snapshot
66 _PV=($(get_version_components ${PV}))
67 DATE="${_PV[3]/p/}"
68 DATE="${DATE:0:4}-${DATE:4:2}-${DATE:6:2}"
69 MY_P="${PN}-$(get_version_component_range 1-3)-${DATE}"
70 SRC_URI="http://download.aqsis.org/builds/testing/source/tar/${MY_P}.tar.gz"
71 S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
72 else
73 SRC_URI="mirror://sourceforge/aqsis/${P}.tar.gz"
74 fi
75
76 RDEPEND="
77 >=dev-libs/boost-1.34.0
78 >=media-libs/tiff-3.7.1
79 >=sys-libs/zlib-1.1.4
80 fltk? ( >=x11-libs/fltk-1.1.0 )
81 openexr? ( media-libs/openexr )"
82
83 DEPEND="
84 ${RDEPEND}
85 dev-libs/libxslt
86 >=dev-util/cmake-2.4.6
87 >=sys-devel/bison-1.35
88 >=sys-devel/flex-2.5.4"
89
90 src_compile() {
91 if use fltk ; then
92 # hack to get fltk library/include paths
93 # (upstream doesn't autodetect the gentoo install path for fltk)
94 fltk_version="$(get_version_component_range 1-2 \
95 $(best_version x11-libs/fltk | sed -e 's/^x11-libs\/fltk//'))"
96 mycmakeargs="${mycmakeargs}
97 -DAQSIS_USE_FLTK:BOOL=ON
98 -DAQSIS_FLTK_INCLUDE_DIR:PATH=/usr/include/fltk-${fltk_version}
99 -DAQSIS_FLTK_LIBRARIES_DIR:PATH=/usr/$(get_libdir)/fltk-${fltk_version}"
100 else
101 mycmakeargs="${mycmakeargs} -DAQSIS_USE_FLTK:BOOL=OFF"
102 fi
103
104 mycmakeargs="${mycmakeargs}
105 -DAQSIS_BOOST_LIB_SUFFIX:STRING=-mt
106 -DAQSIS_USE_OPENEXR:BOOL=$(use openexr && echo ON || echo OFF)
107 -DAQSIS_USE_RPATH:BOOL=OFF
108 -DLIBDIR:STRING=$(get_libdir)
109 -DSYSCONFDIR:STRING=/etc
110 -DCMAKE_INSTALL_PREFIX:PATH=/usr"
111
112 cmake-utils_src_compile
113 }
114
115 src_install() {
116 DOCS="AUTHORS INSTALL README ReleaseNotes"
117 cmake-utils_src_install
118 }