diff options
Diffstat (limited to 'media-tv')
-rw-r--r-- | media-tv/kwintv/ChangeLog | 5 | ||||
-rw-r--r-- | media-tv/kwintv/Manifest | 5 | ||||
-rw-r--r-- | media-tv/kwintv/files/kwintv.patch | 20 | ||||
-rw-r--r-- | media-tv/kwintv/kwintv-0.8.11.ebuild | 8 |
4 files changed, 34 insertions, 4 deletions
diff --git a/media-tv/kwintv/ChangeLog b/media-tv/kwintv/ChangeLog index c29055d4843b..76f8d8c1267d 100644 --- a/media-tv/kwintv/ChangeLog +++ b/media-tv/kwintv/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-tv/kwintv # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/kwintv/ChangeLog,v 1.1 2003/06/18 11:59:01 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/kwintv/ChangeLog,v 1.2 2003/08/12 03:40:43 caleb Exp $ + + 11 Aug 2003; Caleb Tennis <caleb@gentoo.rog> kwintv-0.8.11.ebuild: + Adding a minor patch to make it compile..fixes bug #23817 *kwintv-0.8.11 (18 Jun 2003) diff --git a/media-tv/kwintv/Manifest b/media-tv/kwintv/Manifest index c265e119c155..118b2b3a222c 100644 --- a/media-tv/kwintv/Manifest +++ b/media-tv/kwintv/Manifest @@ -1,3 +1,4 @@ +MD5 06d28bd832cb9d46dbe6dbb1ebc01975 kwintv-0.8.11.ebuild 542 +MD5 9b10ccb510016b84b1b294a55aa0cab9 ChangeLog 927 +MD5 99aa6ca4129b410d151a88731a6339ab files/kwintv.patch 613 MD5 542e96a3373aaf07c27fa8b5b74509a7 files/digest-kwintv-0.8.11 66 -MD5 f15e902a32ca48dab8679b73a3cd8930 ChangeLog 799 -MD5 70e3e691f6d599d9bf9b411b1d221085 kwintv-0.8.11.ebuild 465 diff --git a/media-tv/kwintv/files/kwintv.patch b/media-tv/kwintv/files/kwintv.patch new file mode 100644 index 000000000000..9c0922d3ce07 --- /dev/null +++ b/media-tv/kwintv/files/kwintv.patch @@ -0,0 +1,20 @@ +=================================================================== +RCS file: /home2/webcvs/mirror/kdenonbeta/kwintv/kwintv/wintvstreamview.cpp,v +retrieving revision 1.4 +retrieving revision 1.5 +diff -u -p -r1.4 -r1.5 +--- kdenonbeta/kwintv/kwintv/wintvstreamview.cpp 2002/03/01 08:18:30 1.4 ++++ kdenonbeta/kwintv/kwintv/wintvstreamview.cpp 2002/04/12 12:12:22 1.5 +@@ -61,10 +61,10 @@ wintvstreamview::wintvstreamview + ( + rcfile * _rc, + QWidget* parent, +- const char* name ++ const char* _name + ) + : +- wintvstreamviewData( parent, name ) ++ wintvstreamviewData( parent, _name ) + { + int i,p; + int px,py; diff --git a/media-tv/kwintv/kwintv-0.8.11.ebuild b/media-tv/kwintv/kwintv-0.8.11.ebuild index b77fe451f5ec..8628a8011e87 100644 --- a/media-tv/kwintv/kwintv-0.8.11.ebuild +++ b/media-tv/kwintv/kwintv-0.8.11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/kwintv/kwintv-0.8.11.ebuild,v 1.2 2003/07/22 20:12:24 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/kwintv/kwintv-0.8.11.ebuild,v 1.3 2003/08/12 03:40:43 caleb Exp $ inherit kde-base @@ -12,3 +12,9 @@ KEYWORDS="x86" DESCRIPTION="a KDE application that allows you to watch television." SRC_URI="http://www.staikos.on.ca/~staikos/kwintv/latest/${P}.tar.bz2" HOMEPAGE="http://www.kwintv.org" + +src_unpack() +{ + kde_src_unpack + cd ${S} && epatch ${FILESDIR}/kwintv.patch +} |