summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-09-14 20:42:38 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-09-14 20:42:38 +0000
commitd6d810ef408168d491418d43c91c38e29f1c4647 (patch)
treec8cb5d9eec0d7d74dcbc186375134df96001f07c
parentx86 stable, thanks JD, bug 382513 (diff)
downloadgentoo-2-d6d810ef408168d491418d43c91c38e29f1c4647.tar.gz
gentoo-2-d6d810ef408168d491418d43c91c38e29f1c4647.tar.bz2
gentoo-2-d6d810ef408168d491418d43c91c38e29f1c4647.zip
remove old
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
-rw-r--r--x11-libs/libva/ChangeLog5
-rw-r--r--x11-libs/libva/libva-0.32.0_p2.ebuild56
2 files changed, 4 insertions, 57 deletions
diff --git a/x11-libs/libva/ChangeLog b/x11-libs/libva/ChangeLog
index d350e7c5b4f5..f6c0eb15dee9 100644
--- a/x11-libs/libva/ChangeLog
+++ b/x11-libs/libva/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/libva
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.26 2011/09/14 18:47:00 nativemad Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.27 2011/09/14 20:42:38 aballier Exp $
+
+ 14 Sep 2011; Alexis Ballier <aballier@gentoo.org> -libva-0.32.0_p2.ebuild:
+ remove old
15 Sep 2011; Andreas Schuerch <nativemad@gentoo.org> libva-1.0.14.ebuild:
x86 stable, thanks JD, bug 382401
diff --git a/x11-libs/libva/libva-0.32.0_p2.ebuild b/x11-libs/libva/libva-0.32.0_p2.ebuild
deleted file mode 100644
index 8ed56ec77168..000000000000
--- a/x11-libs/libva/libva-0.32.0_p2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-0.32.0_p2.ebuild,v 1.4 2011/06/29 14:56:54 angelos Exp $
-
-EAPI="2"
-inherit eutils autotools
-
-PLEVEL=${PV##*_p}
-MY_PV=${PV/_p*}
-MY_P=${PN}-${MY_PV}
-
-DESCRIPTION="Video Acceleration (VA) API for Linux"
-HOMEPAGE="http://www.splitted-desktop.com/~gbeauchesne/libva/"
-SRC_URI="http://www.splitted-desktop.com/~gbeauchesne/${PN}/${PN}_${MY_PV}-1+sds${PLEVEL}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux"
-IUSE="opengl"
-
-VIDEO_CARDS="dummy nvidia intel fglrx"
-for x in ${VIDEO_CARDS}; do
- IUSE+=" video_cards_${x}"
-done
-
-RDEPEND=">=x11-libs/libdrm-2.4
- video_cards_intel? ( >=x11-libs/libdrm-2.4.23 )
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXfixes
- opengl? ( virtual/opengl )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-PDEPEND="video_cards_nvidia? ( x11-libs/vdpau-video )
- video_cards_fglrx? ( x11-libs/xvba-video )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- EPATCH_SOURCE="${S}/debian/patches" EPATCH_SUFFIX="patch" \
- EPATCH_FORCE="yes" EPATCH_OPTS="-g0 -E --no-backup-if-mismatch -p1" epatch
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable video_cards_dummy dummy-driver) \
- $(use_enable video_cards_intel i965-driver) \
- $(use_enable opengl glx)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- find "${D}" -name '*.la' -delete
-}