jlec 14/12/26 11:28:07 Modified: ChangeLog Added: qhull-2012.1-r4.ebuild Log: media-libs/qhull: Fix format-security problems, #528110 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.60 media-libs/qhull/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/ChangeLog?rev=1.60&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/ChangeLog?rev=1.60&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/ChangeLog?r1=1.59&r2=1.60 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/qhull/ChangeLog,v retrieving revision 1.59 retrieving revision 1.60 diff -u -r1.59 -r1.60 --- ChangeLog 26 Sep 2014 11:18:39 -0000 1.59 +++ ChangeLog 26 Dec 2014 11:28:07 -0000 1.60 @@ -1,6 +1,12 @@ # ChangeLog for media-libs/qhull # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/ChangeLog,v 1.59 2014/09/26 11:18:39 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/ChangeLog,v 1.60 2014/12/26 11:28:07 jlec Exp $ + +*qhull-2012.1-r4 (26 Dec 2014) + + 26 Dec 2014; Justin Lecher <j...@gentoo.org> +qhull-2012.1-r4.ebuild, + +files/qhull-2012.1-format-security.patch: + Fix format-security problems, #528110 26 Sep 2014; Fabian Groffen <grob...@gentoo.org> qhull-2012.1-r3.ebuild: Fix out of Prefix rm, bug #523422 1.1 media-libs/qhull/qhull-2012.1-r4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/qhull-2012.1-r4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/qhull/qhull-2012.1-r4.ebuild?rev=1.1&content-type=text/plain Index: qhull-2012.1-r4.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/qhull-2012.1-r4.ebuild,v 1.1 2014/12/26 11:28:07 jlec Exp $ EAPI=5 inherit cmake-utils flag-o-matic MY_P="${PN}${PV}" DESCRIPTION="Geometry library" HOMEPAGE="http://www.qhull.org/" SRC_URI="${HOMEPAGE}/download/${P}-src.tgz" SLOT="0" LICENSE="BSD" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="doc static-libs" DOCS=( Announce.txt File_id.diz README.txt REGISTER.txt ) PATCHES=( "${FILESDIR}"/${P}-64bit.patch "${FILESDIR}"/${P}-format-security.patch ) src_configure() { append-flags -fno-strict-aliasing mycmakeargs+=( -DLIB_INSTALL_DIR="${EPREFIX}"/usr/$(get_libdir) -DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF}/html ) cmake-utils_src_configure } pkg_preinst() { # See https://bugs.gentoo.org/show_bug.cgi?id=435006 # If qhull-2010 is installed we need to remove its include dir so # that it can be replaced with a symlink in this version. rm -rf "${EROOT}"usr/include/qhull || die } src_install() { cmake-utils_src_install # compatibility with previous installs dosym libqhull /usr/include/qhull if ! use doc; then rm -rf "${ED}"/usr/share/doc/${PF}/html || die fi if ! use static-libs; then rm -f "${ED}"/usr/$(get_libdir)/lib*.a || die fi }