+++ /dev/null
-# ChangeLog for media-libs/libvideogfx
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvideogfx/ChangeLog,v 1.7 2006/03/07 11:52:09 flameeyes Exp $
-
- 07 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
- +files/libvideogfx-1.0.3-gcc4.patch, libvideogfx-1.0.3.ebuild:
- Sanitise dependencies, port to modular Xorg, drop src_compile to use econf,
- add patch to build with gcc4.
-
- 07 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> +metadata.xml,
- libvideogfx-1.0.3.ebuild:
- Drop virtual/libc dependency. Add maintainer-needed metadata.
-
- 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
- libvideogfx-1.0.3.ebuild:
- virtual/glibc -> virtual/libc
-
- 03 Apr 2004; Donnie Berkholz <spyderous@gentoo.org>;
- libvideogfx-1.0.3.ebuild:
- Change x11-base/xfree dependency to virtual/x11.
-
-*libvideogfx-1.0.3 (27 Jun 2003)
-
- 12 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
- Added missing changelog entry.
-
- 27 Jun 2003; Lars Weiler <pylon@gentoo.org> :
- Initial import.
- Thanks to Oriol Rius <oriol@joor.net> for this ebuild.
-
+++ /dev/null
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-MD5 65f7be29aa52f15c14171efeb25d1883 ChangeLog 1106
-RMD160 5d8cc0980a30126601244f0f08581d2964948972 ChangeLog 1106
-SHA256 c135ddfc58d4249ed2f015e8afdd6660acf1292ece5699ec8584b16fff05afbc ChangeLog 1106
-MD5 1e9b50805cbff8580d46777b35d813a5 files/digest-libvideogfx-1.0.3 69
-RMD160 3d4b1aa744dc4a0289f45d3de60af326b0a5170e files/digest-libvideogfx-1.0.3 69
-SHA256 a8a0a27f71ab0c15aade50b684758c0de859365b0f4251747a8cd3f201064412 files/digest-libvideogfx-1.0.3 69
-MD5 974b1f581ad3914f911f7756d344b0ab files/libvideogfx-1.0.3-gcc4.patch 2193
-RMD160 dc541323f045e30d37cc4bcee8bbb190acd69f20 files/libvideogfx-1.0.3-gcc4.patch 2193
-SHA256 0629685c2ae01e4455c63dacc2af1a3f0b433c092dce226e3165d64a7e666bad files/libvideogfx-1.0.3-gcc4.patch 2193
-MD5 390b693fe073c10d9faa0ae4580a1184 libvideogfx-1.0.3.ebuild 1090
-RMD160 687fb9dd40c5abc7a07648b2202b66d3d53ca9e8 libvideogfx-1.0.3.ebuild 1090
-SHA256 fe7c9ce3c47106cebdd2969058d323d32a09991ff95834f785ce8b145453d806 libvideogfx-1.0.3.ebuild 1090
-MD5 ed8349e980407e49b724e04ee5a9a2ed metadata.xml 231
-RMD160 c13056229989c3d4f448a7c7abcff3f4ee7ce13c metadata.xml 231
-SHA256 4595c2615fd7c9095517949b1a920d4457f92801eb9d46307b18aafe58ec2a8a metadata.xml 231
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.2.1 (GNU/Linux)
-
-iD8DBQFEDXP1AiZjviIA2XgRAt8FAKCT4ak5YYhNWjrxtKKwfqRrNGxH/gCg6yh3
-a4NBBpLSBJ4GPO/zG0SqSD4=
-=OzkY
------END PGP SIGNATURE-----
+++ /dev/null
-MD5 3a40559055e4eb8304888f54efb3b91f libvideogfx-1.0.3.tar.gz 332532
+++ /dev/null
-Index: libvideogfx-1.0.3/libvideogfx/graphics/datatypes/bitmap.hh
-===================================================================
---- libvideogfx-1.0.3.orig/libvideogfx/graphics/datatypes/bitmap.hh
-+++ libvideogfx-1.0.3/libvideogfx/graphics/datatypes/bitmap.hh
-@@ -222,25 +222,25 @@ namespace videogfx {
- {
- Create(w,h,border,halign,valign);
- }
-- ~BitmapProvider_Mem() { if (d_bitmap_ptr) delete[] d_bitmap_ptr; }
-+ ~BitmapProvider_Mem() { if (this->d_bitmap_ptr) delete[] this->d_bitmap_ptr; }
-
- void Create(int w,int h,int border=0,int halign=1,int valign=1)
- {
- CalcInternalSizes(w,h,border,halign,valign,
-- d_internal_width,d_internal_height,border);
-+ this->d_internal_width,this->d_internal_height,border);
-
- // total size including border
-
-- d_total_width = d_internal_width +2*border;
-- d_total_height = d_internal_height+2*border;
-+ this->d_total_width = this->d_internal_width +2*border;
-+ this->d_total_height = this->d_internal_height+2*border;
-
-- if (d_bitmap_ptr)
-- delete[] d_bitmap_ptr;
-+ if (this->d_bitmap_ptr)
-+ delete[] this->d_bitmap_ptr;
-
-- d_bitmap_ptr = new Pel[d_total_width * d_total_height];
-- d_width = w;
-- d_height = h;
-- d_border = border;
-+ this->d_bitmap_ptr = new Pel[this->d_total_width * this->d_total_height];
-+ this->d_width = w;
-+ this->d_height = h;
-+ this->d_border = border;
- SetFramePtrs();
- }
- };
-Index: libvideogfx-1.0.3/libvideogfx/utility/smartpointer.hh
-===================================================================
---- libvideogfx-1.0.3.orig/libvideogfx/utility/smartpointer.hh
-+++ libvideogfx-1.0.3/libvideogfx/utility/smartpointer.hh
-@@ -159,8 +159,8 @@ namespace videogfx {
- return *this;
- }
-
-- operator T*() { AssertDescr(counter,"smart pointer is NULL"); return pointer; }
-- T& operator()() { AssertDescr(counter,"smart pointer is NULL"); return *pointer; }
-+ operator T*() { AssertDescr(this->counter,"smart pointer is NULL"); return pointer; }
-+ T& operator()() { AssertDescr(this->counter,"smart pointer is NULL"); return *pointer; }
-
- void Decouple()
- {
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvideogfx/libvideogfx-1.0.3.ebuild,v 1.8 2006/03/07 11:52:09 flameeyes Exp $
-
-inherit flag-o-matic libtool
-
-DESCRIPTION="LibVideoGfx is a C++ library for low-level video processing."
-HOMEPAGE="http://rachmaninoff.informatik.uni-mannheim.de/libvideogfx/index.html"
-SRC_URI="http://rachmaninoff.informatik.uni-mannheim.de/libvideogfx/data/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-
-SLOT="1.0"
-
-KEYWORDS="~x86 ~ppc"
-
-IUSE=""
-
-RDEPEND="media-libs/libpng
- media-libs/jpeg
- || ( (
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXv
- ) virtual/x11 )"
-
-DEPEND="${RDEPEND}
- || ( (
- x11-libs/libXt
- x11-proto/xextproto
- ) virtual/x11 )"
-
-pkg_setup() {
- # Uses deprecated syntax, but updating it is too much effort
- append-flags -fpermissive
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch "${FILESDIR}/${P}-gcc4.patch"
-
- elibtoolize
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README TODO
-}
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>no-herd</herd>
-<maintainer>
-<email>maintainer-needed@gentoo.org</email>
-</maintainer>
-</pkgmetadata>
+++ /dev/null
-# ChangeLog for media-video/sampeg3
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/sampeg3/ChangeLog,v 1.10 2006/08/08 04:15:08 beandog Exp $
-
- 08 Aug 2006; Steve Dibb <steve@gentoo.org> sampeg3-0.0.3.ebuild:
- Inherit eutils
-
- 07 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
- +files/sampeg3-0.0.3-gcc4.patch, metadata.xml, sampeg3-0.0.3.ebuild:
- Drop virtual/libc dependency, update to modular X, allow building with gcc4,
- use econf instead of ./configure.
-
- 10 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> sampeg3-0.0.3.ebuild:
- Don't install INSTALL file.
-
- 13 Aug 2004; Chris White <chriswhite@gentoo.org> +metadata.xml:
- Adding missing metadata.xml.
-
- 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> sampeg3-0.0.3.ebuild:
- virtual/glibc -> virtual/libc
-
- 13 Jun 2004; Donnie Berkholz <spyderous@gentoo.org>; sampeg3-0.0.3.ebuild:
- Change x11-base/xfree dependency to virtual/x11 (#52153).
-
- 18 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> sampeg3-0.0.3.ebuild:
- IUSE was not really used, setting to "" - removing superfluous or even
- forbidden variable settings, see bug #44517
-
-*sampeg3-0.0.3 (27 Jun 2003)
-
- 12 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
- Added missing changelog entry.
-
- 27 Jun 2003; Lars Weiler <pylon@gentoo.org> :
- Initial import.
- Thanks to Oriol Rius <oriol@joor.net> fot this ebuild.
-
+++ /dev/null
-AUX sampeg3-0.0.3-gcc4.patch 854 RMD160 012833639281c4356379ae299a11ba5e7aea8a29 SHA1 4b2f13d242161e14c4127bf5a48a4a1bb02904ad SHA256 a995f4d7cb324e92b9a2c3681315cdba404b35454704760bdc810cf9909f42e3
-MD5 874c7f5a55f8f30e789d551acda0bd68 files/sampeg3-0.0.3-gcc4.patch 854
-RMD160 012833639281c4356379ae299a11ba5e7aea8a29 files/sampeg3-0.0.3-gcc4.patch 854
-SHA256 a995f4d7cb324e92b9a2c3681315cdba404b35454704760bdc810cf9909f42e3 files/sampeg3-0.0.3-gcc4.patch 854
-DIST sampeg3-0.0.3.tar.gz 405965 RMD160 df786fb3d0e719f9169a694be978b4cb35a50316 SHA1 325a0ac06689bbe4404034837ee9d7fbeab45862 SHA256 479d457976fcc8a96f646253220ebef921b2d438eebe4fd43573212590471a6f
-EBUILD sampeg3-0.0.3.ebuild 977 RMD160 879762687808977d51f77ce7ab5ee7ca47f764e4 SHA1 3c1c249ae1013e403d33abc80a80dd9080457a67 SHA256 5a9c63220e1db1938ccde0713857e327b2dfbed4d48b79efec8eb789da20edba
-MD5 3373ecff1058ac3d96c106b3b9f2f0d2 sampeg3-0.0.3.ebuild 977
-RMD160 879762687808977d51f77ce7ab5ee7ca47f764e4 sampeg3-0.0.3.ebuild 977
-SHA256 5a9c63220e1db1938ccde0713857e327b2dfbed4d48b79efec8eb789da20edba sampeg3-0.0.3.ebuild 977
-MISC ChangeLog 1426 RMD160 2bbfef646c53204f2e7f0f6f0ae7e5eeec65de45 SHA1 813e06ce3a7d38182d27d580d52a7929fa59d3ed SHA256 623013762e35f7d7c01616484404b31ecfc3836c78eda4c32a0229092f15dff8
-MD5 876a8d198a3cfc0beab9ee0ad79465d9 ChangeLog 1426
-RMD160 2bbfef646c53204f2e7f0f6f0ae7e5eeec65de45 ChangeLog 1426
-SHA256 623013762e35f7d7c01616484404b31ecfc3836c78eda4c32a0229092f15dff8 ChangeLog 1426
-MISC metadata.xml 223 RMD160 86b42c49b694db39ddb3fdc60b98a3ad1a0c3392 SHA1 ea8c387229caaf4b0d3c9fbef9143b70dcae0b0d SHA256 dd48e823ec9a151bc3611121402ed26ee24eb3304aa62870b1e875a8fa0ac812
-MD5 0338bfb24d7bfb6450aac4dd025c0096 metadata.xml 223
-RMD160 86b42c49b694db39ddb3fdc60b98a3ad1a0c3392 metadata.xml 223
-SHA256 dd48e823ec9a151bc3611121402ed26ee24eb3304aa62870b1e875a8fa0ac812 metadata.xml 223
-MD5 d7f823e28d9378632db98567376531b9 files/digest-sampeg3-0.0.3 241
-RMD160 6afa1fb5b1c4ca0453c1ffaa9424d5229103997a files/digest-sampeg3-0.0.3 241
-SHA256 795e242cab430a9c468c398f73cef833a8935a5fbd69efcccf5092936a56bf00 files/digest-sampeg3-0.0.3 241
+++ /dev/null
-MD5 25d9bad14ed37ed2e8b9a8dfa5dbea5f sampeg3-0.0.3.tar.gz 405965
-RMD160 df786fb3d0e719f9169a694be978b4cb35a50316 sampeg3-0.0.3.tar.gz 405965
-SHA256 479d457976fcc8a96f646253220ebef921b2d438eebe4fd43573212590471a6f sampeg3-0.0.3.tar.gz 405965
+++ /dev/null
-Index: sampeg3-0.0.3/src/coding/dct/idctblk_fp_aan.hh
-===================================================================
---- sampeg3-0.0.3.orig/src/coding/dct/idctblk_fp_aan.hh
-+++ sampeg3-0.0.3/src/coding/dct/idctblk_fp_aan.hh
-@@ -50,6 +50,9 @@
-
- #include "coding/dct/dctblk.hh"
-
-+#ifndef PI
-+#define PI M_PI
-+#endif
-
- template <class OutputType,int Low,int High> class IDCTBlk_AccurateFP
- : public IDCTBlk<OutputType,Low,High>
-Index: sampeg3-0.0.3/src/test/rdcurves.cc
-===================================================================
---- sampeg3-0.0.3.orig/src/test/rdcurves.cc
-+++ sampeg3-0.0.3/src/test/rdcurves.cc
-@@ -86,7 +86,7 @@ private:
- static const int left = 3*28;
- static const int top = 26*28;
- static const double width=16*28;
-- static const double height = width*3/4;
-+ static const double height = (16*28)*3/4;
- };
-
-
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>video</herd>
-<maintainer>
-<email>media-video@gentoo.org</email>
-</maintainer>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/sampeg3/sampeg3-0.0.3.ebuild,v 1.8 2006/08/08 04:15:08 beandog Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="MPEG video encoder targeted for optimum picture quality"
-HOMEPAGE="http://rachmaninoff.informatik.uni-mannheim.de/sampeg/"
-SRC_URI="http://rachmaninoff.informatik.uni-mannheim.de/sampeg/data/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-
-SLOT="1.0"
-
-KEYWORDS="~x86 ~ppc"
-
-IUSE=""
-
-RDEPEND=">=media-libs/libvideogfx-1.0
- media-libs/libpng
- media-libs/jpeg
- || ( (
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXv
- ) virtual/x11 )"
-
-DEPEND="${RDEPEND}
- || ( x11-libs/libXt virtual/x11 )"
-
-pkg_setup() {
- append-flags -fpermissive
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- epatch "${FILESDIR}/${P}-gcc4.patch"
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS BUGS ChangeLog NEWS README TODO
-}