diff options
author | 2009-06-30 14:45:30 +0000 | |
---|---|---|
committer | 2009-06-30 14:45:30 +0000 | |
commit | aab1b4831b0aeeffab2c41a30a214bcc813d3d3e (patch) | |
tree | 9ad8346c6214ec081139be3c922e7883bbece513 /net-libs | |
parent | Fix masking (diff) | |
download | gentoo-2-aab1b4831b0aeeffab2c41a30a214bcc813d3d3e.tar.gz gentoo-2-aab1b4831b0aeeffab2c41a30a214bcc813d3d3e.tar.bz2 gentoo-2-aab1b4831b0aeeffab2c41a30a214bcc813d3d3e.zip |
Remove security vulnerable revision
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/webkit-gtk/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/webkit-gtk/webkit-gtk-0_p40220.ebuild | 71 |
2 files changed, 4 insertions, 72 deletions
diff --git a/net-libs/webkit-gtk/ChangeLog b/net-libs/webkit-gtk/ChangeLog index c38ac88cda89..ae16b7e43342 100644 --- a/net-libs/webkit-gtk/ChangeLog +++ b/net-libs/webkit-gtk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/webkit-gtk # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.38 2009/06/28 11:58:43 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/ChangeLog,v 1.39 2009/06/30 14:45:30 leio Exp $ + + 30 Jun 2009; Mart Raudsepp <leio@gentoo.org> -webkit-gtk-0_p40220.ebuild: + Remove security vulnerable revision 28 Jun 2009; Markus Meier <maekke@gentoo.org> webkit-gtk-0_p40220-r1.ebuild: diff --git a/net-libs/webkit-gtk/webkit-gtk-0_p40220.ebuild b/net-libs/webkit-gtk/webkit-gtk-0_p40220.ebuild deleted file mode 100644 index 4fa87fd1b331..000000000000 --- a/net-libs/webkit-gtk/webkit-gtk-0_p40220.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/webkit-gtk/webkit-gtk-0_p40220.ebuild,v 1.9 2009/05/15 08:43:36 aballier Exp $ - -inherit autotools flag-o-matic eutils - -MY_P="WebKit-r${PV/0\_p}" -DESCRIPTION="Open source web browser engine" -HOMEPAGE="http://www.webkit.org/" -SRC_URI="http://nightly.webkit.org/files/trunk/src/${MY_P}.tar.bz2" - -LICENSE="LGPL-2 LGPL-2.1 BSD" -SLOT="0" -KEYWORDS="alpha amd64 -ia64 ppc -sparc x86 ~x86-fbsd" -IUSE="coverage debug gstreamer pango soup sqlite svg xslt" - -RDEPEND=">=x11-libs/gtk+-2.8 - >=dev-libs/icu-3.8.1-r1 - >=net-misc/curl-7.15 - media-libs/jpeg - media-libs/libpng - dev-libs/libxml2 - sqlite? ( >=dev-db/sqlite-3 ) - gstreamer? ( - >=media-libs/gst-plugins-base-0.10 - ) - soup? ( >=net-libs/libsoup-2.23.1 ) - xslt? ( dev-libs/libxslt ) - pango? ( x11-libs/pango )" - -DEPEND="${RDEPEND} - dev-util/gperf - dev-util/pkgconfig - virtual/perl-Text-Balanced" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-gcc44-aliasing.patch" - eautoreconf -} - -src_compile() { - # It doesn't compile on alpha without this LDFLAGS - use alpha && append-ldflags "-Wl,--no-relax" - - local myconf - use pango && myconf="${myconf} --with-font-backend=pango" - use soup && myconf="${myconf} --with-http-backend=soup" - - econf \ - $(use_enable sqlite database) \ - $(use_enable sqlite icon-database) \ - $(use_enable sqlite dom-storage) \ - $(use_enable sqlite offline-web-applications) \ - $(use_enable gstreamer video) \ - $(use_enable svg) \ - $(use_enable debug) \ - $(use_enable xslt) \ - $(use_enable coverage) \ - ${myconf} \ - || die "configure failed" - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "Install failed" -} |