diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-10-19 14:30:46 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-10-19 14:30:46 +0000 |
commit | 9704f617b7cd880b4613c6d98c4f9f161b4c5f6c (patch) | |
tree | 72cda43188cddc1d8782b59e746366c6f47ad799 /media-libs/xvid | |
parent | Fixed gcc-4.3 issues (see bug #239567). (diff) | |
download | gentoo-2-9704f617b7cd880b4613c6d98c4f9f161b4c5f6c.tar.gz gentoo-2-9704f617b7cd880b4613c6d98c4f9f161b4c5f6c.tar.bz2 gentoo-2-9704f617b7cd880b4613c6d98c4f9f161b4c5f6c.zip |
Remove remaining files
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.6 x86_64)
Diffstat (limited to 'media-libs/xvid')
-rw-r--r-- | media-libs/xvid/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/xvid/files/xvid-1.0.1-64bit-clean.patch | 33 | ||||
-rw-r--r-- | media-libs/xvid/xvid-1.0.2.ebuild | 46 | ||||
-rw-r--r-- | media-libs/xvid/xvid-1.0.3.ebuild | 45 |
4 files changed, 6 insertions, 125 deletions
diff --git a/media-libs/xvid/ChangeLog b/media-libs/xvid/ChangeLog index 85861e464c39..3e7c88b70f04 100644 --- a/media-libs/xvid/ChangeLog +++ b/media-libs/xvid/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/xvid # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/ChangeLog,v 1.99 2008/10/19 14:25:35 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/ChangeLog,v 1.100 2008/10/19 14:30:46 aballier Exp $ + + 19 Oct 2008; Alexis Ballier <aballier@gentoo.org> + -files/xvid-1.0.1-64bit-clean.patch, -xvid-1.0.2.ebuild, + -xvid-1.0.3.ebuild: + Remove remaining files 19 Oct 2008; Alexis Ballier <aballier@gentoo.org> -files/xvid-1.0-ia64.patch, -files/xvid-1.1.0-3dnow.patch, diff --git a/media-libs/xvid/files/xvid-1.0.1-64bit-clean.patch b/media-libs/xvid/files/xvid-1.0.1-64bit-clean.patch deleted file mode 100644 index cf13e736b4a4..000000000000 --- a/media-libs/xvid/files/xvid-1.0.1-64bit-clean.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- src/motion/estimation_bvop.c.orig 2004-06-22 19:57:46.168910368 +0200 -+++ src/motion/estimation_bvop.c 2004-06-22 19:57:50.802206000 +0200 -@@ -573,16 +573,26 @@ - b_dy = (b_dy >> 3) + roundtab_76[b_dy & 0xf]; - b_dx = (b_dx >> 3) + roundtab_76[b_dx & 0xf]; - -+ /* 64-bit Fix: -+ * The variables y, stride and x are unsigned, while dy and dy are signed. If -+ * e.g. dy is < -1, the factor dy/2 becomes < 0. But because y is unsigned, the -+ * -1 value will be 'promoted' to the unsigned 0xffffffff. This is no problem on -+ * 32 bit platforms, because adding 0xffffffff to a char pointer or adding -1 -+ * the same. But on 64bit this is no longer the case. So we have to really use -+ * signed variables here (note that we assume that the unsiged values are -+ * below 0x80000000, which should be true, because otherwise all kind of -+ * other problems will additionally pop up). -+ */ - sum = sad8bi(pCur->u + 8 * x + 8 * y * stride, -- f_Ref->u + (y*8 + dy/2) * stride + x*8 + dx/2, -- b_Ref->u + (y*8 + b_dy/2) * stride + x*8 + b_dx/2, -+ f_Ref->u + ((int) y*8 + dy/2) * (int) stride + (int) x*8 + dx/2, -+ b_Ref->u + ((int) y*8 + b_dy/2) * (int) stride + (int) x*8 + b_dx/2, - stride); - - if (sum >= MAX_CHROMA_SAD_FOR_SKIP * (int)Data->iQuant) return; /* no skip */ - - sum += sad8bi(pCur->v + 8*x + 8 * y * stride, -- f_Ref->v + (y*8 + dy/2) * stride + x*8 + dx/2, -- b_Ref->v + (y*8 + b_dy/2) * stride + x*8 + b_dx/2, -+ f_Ref->v + ((int) y*8 + dy/2) * (int) stride + (int) x*8 + dx/2, -+ b_Ref->v + ((int) y*8 + b_dy/2) * (int) stride + (int) x*8 + b_dx/2, - stride); - - if (sum >= MAX_CHROMA_SAD_FOR_SKIP * (int)Data->iQuant) return; /* no skip */ diff --git a/media-libs/xvid/xvid-1.0.2.ebuild b/media-libs/xvid/xvid-1.0.2.ebuild deleted file mode 100644 index 653e7e156a70..000000000000 --- a/media-libs/xvid/xvid-1.0.2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-1.0.2.ebuild,v 1.17 2007/11/27 18:53:20 zzam Exp $ - -inherit eutils - -MY_P=${PN}core-${PV/_rc/-rc} -DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution." -HOMEPAGE="http://www.xvid.org/" -SRC_URI="http://files.xvid.org/downloads/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="1" -KEYWORDS="~mips" -IUSE="doc" - -DEPEND="x86? ( >=dev-lang/nasm-0.98.36 )" -RDEPEND="" - -S="${WORKDIR}/${MY_P}/build/generic" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PV}-DESTDIR.patch - cd "${S}"/../.. - epatch "${FILESDIR}"/${PN}-1.0-ia64.patch - epatch "${FILESDIR}"/${PN}-1.0.1-64bit-clean.patch -} - -src_install() { - make install DESTDIR="${D}" || die "make install failed" - - cd "${S}"/../../ - dodoc AUTHORS ChangeLog README TODO doc/* - - local mylib="$(basename $(ls ${D}/usr/$(get_libdir)/libxvidcore.so*))" - dosym ${mylib} /usr/$(get_libdir)/libxvidcore.so - dosym ${mylib} /usr/$(get_libdir)/${mylib/.0} - - if use doc ; then - dodoc CodingStyle doc/README - insinto /usr/share/doc/${PF}/examples - doins examples/* - fi -} diff --git a/media-libs/xvid/xvid-1.0.3.ebuild b/media-libs/xvid/xvid-1.0.3.ebuild deleted file mode 100644 index a53d146d50a1..000000000000 --- a/media-libs/xvid/xvid-1.0.3.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-1.0.3.ebuild,v 1.18 2006/01/07 09:24:41 vapier Exp $ - -inherit eutils - -MY_P=${PN}core-${PV/_rc/-rc} -DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution" -HOMEPAGE="http://www.xvid.org/" -SRC_URI="http://files.xvid.org/downloads/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="1" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86" -IUSE="doc" - -DEPEND="x86? ( >=dev-lang/nasm-0.98.36 )" -RDEPEND="" - -S=${WORKDIR}/${MY_P}/build/generic - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/1.0.2-DESTDIR.patch" - cd "${S}"/../.. - epatch "${FILESDIR}"/${PN}-1.0-ia64.patch -} - -src_install() { - make install DESTDIR="${D}" || die - - cd "${S}"/../../ - dodoc AUTHORS ChangeLog README TODO doc/* - - local mylib=$(basename $(ls "${D}"/usr/$(get_libdir)/libxvidcore.so*)) - dosym ${mylib} /usr/$(get_libdir)/libxvidcore.so - dosym ${mylib} /usr/$(get_libdir)/${mylib/.0} - - if use doc ; then - dodoc CodingStyle doc/README - insinto /usr/share/doc/${PF}/examples - doins examples/* - fi -} |