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