Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/qhull: qhull-2010.1-r2.ebuild ChangeLog qhull-2010.1-r1.ebuild
Date: Sun, 03 Oct 2010 23:42:55
Message-Id: 20101003234249.5BC4F20051@flycatcher.gentoo.org
1 bicatali 10/10/03 23:42:49
2
3 Modified: ChangeLog
4 Added: qhull-2010.1-r2.ebuild
5 Removed: qhull-2010.1-r1.ebuild
6 Log:
7 Error in previous patch, now installs all qhull headers to allow reverse dependencies to be compatible
8
9 (Portage version: 2.2_rc88/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.38 media-libs/qhull/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/ChangeLog?rev=1.38&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/ChangeLog?rev=1.38&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/ChangeLog?r1=1.37&r2=1.38
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/qhull/ChangeLog,v
21 retrieving revision 1.37
22 retrieving revision 1.38
23 diff -u -r1.37 -r1.38
24 --- ChangeLog 3 Oct 2010 21:55:52 -0000 1.37
25 +++ ChangeLog 3 Oct 2010 23:42:49 -0000 1.38
26 @@ -1,6 +1,14 @@
27 # ChangeLog for media-libs/qhull
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/ChangeLog,v 1.37 2010/10/03 21:55:52 bicatali Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/ChangeLog,v 1.38 2010/10/03 23:42:49 bicatali Exp $
31 +
32 +*qhull-2010.1-r2 (03 Oct 2010)
33 +
34 + 03 Oct 2010; Sébastien Fabbro <bicatali@g.o>
35 + -qhull-2010.1-r1.ebuild, +qhull-2010.1-r2.ebuild,
36 + files/qhull-2010.1-cmake-install.patch:
37 + Error in previous patch, now installs all qhull headers to allow reverse
38 + dependencies to be compatible
39
40 *qhull-2010.1-r1 (03 Oct 2010)
41
42
43
44
45 1.1 media-libs/qhull/qhull-2010.1-r2.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/qhull-2010.1-r2.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/qhull-2010.1-r2.ebuild?rev=1.1&content-type=text/plain
49
50 Index: qhull-2010.1-r2.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/qhull-2010.1-r2.ebuild,v 1.1 2010/10/03 23:42:49 bicatali Exp $
55
56 EAPI=3
57
58 inherit cmake-utils flag-o-matic
59
60 MY_P="${PN}${PV}"
61 DESCRIPTION="Geometry library"
62 HOMEPAGE="http://www.qhull.org"
63 SRC_URI="${HOMEPAGE}/download/${P}-src.tgz"
64
65 SLOT="0"
66 LICENSE="BSD"
67 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
68 IUSE="doc static-libs"
69
70 DOCS="Announce.txt File_id.diz README.txt REGISTER.txt"
71 PATCHES=( "${FILESDIR}/${P}-cmake-install.patch" "${FILESDIR}/${P}-overflows.patch" )
72
73 src_configure() {
74 append-flags -fno-strict-aliasing
75 mycmakeargs="
76 -DLIB_INSTALL_DIR=${EPREFIX}/usr/$(get_libdir)
77 -DDOC_INSTALL_DIR=${EPREFIX}/usr/share/doc/${PF}
78 $(cmake-utils_use_with static-libs STATIC_LIBS)
79 $(cmake-utils_use_with doc DOCS)"
80 cmake-utils_src_configure
81 }