delete k9copy
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@696 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
parent
d5bd6a2c84
commit
f3d9a67d0d
@ -1,11 +0,0 @@
|
||||
# ChangeLog for app-cdr/k9copy
|
||||
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: $
|
||||
|
||||
12 Dec 2008; Mario Fetka <mario.fetka@gmail.com> k9copy-2.1.0.ebuild:
|
||||
kde minimal
|
||||
|
||||
08 Dec 2008; Mario Fetka <mario.fetka@gmail.com> ++, +metadata.xml,
|
||||
-k9copy-2.0.2-r1.ebuild:
|
||||
Bump
|
||||
|
@ -1,5 +0,0 @@
|
||||
AUX k9copy-2.0.2-ffmpeg.patch 2113 RMD160 033d979264d734c280b814635e71a6aa20ffdce8 SHA1 3dd295e7104cb363257e512bebe2f9c260d90520 SHA256 484ce3715aed9cb1e94c767257b0ea5852c2e2fcb1b7a728fd4ec183c3f78d21
|
||||
DIST k9copy-2.1.0-Source.tar.gz 3506251 RMD160 bbd81c97d0400850572909078b5c98c4034ccc76 SHA1 4763fc53d38bdf65c4f1abcd07757e536c858e76 SHA256 65643eb5535846a3fef672f099cc97ed6f81c7efabd8b2cae86e501057f03660
|
||||
EBUILD k9copy-2.1.0.ebuild 847 RMD160 533a6e4df4e4df4db956349a2e970c74426b6720 SHA1 9efa211138cd2cee8531f9b7dc19751f91ad3918 SHA256 ac3493f0354356ff54088338355b86752e5e4134c2f23ed1b1d80b3194714c8b
|
||||
MISC ChangeLog 307 RMD160 e9c704d79d1ec77d2cc514e37b2611b42a962851 SHA1 9922c15a44b7bcf69f9ac7c8e00487910c905e12 SHA256 fef9a6ceffd77b3951cd5c0f91e854837f6dae16c76a34771142589b7d9205d9
|
||||
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
|
@ -1,59 +0,0 @@
|
||||
diff -ur k9copy-2.0.2-Source.orig/CMakeLists.txt k9copy-2.0.2-Source/CMakeLists.txt
|
||||
--- k9copy-2.0.2-Source.orig/CMakeLists.txt 2008-07-05 07:08:53.000000000 +0100
|
||||
+++ k9copy-2.0.2-Source/CMakeLists.txt 2008-08-23 15:04:52.000000000 +0100
|
||||
@@ -94,7 +94,7 @@
|
||||
CHECK_INCLUDE_FILES(unistd.h HAVE_UNISTD_H) # simapi.h
|
||||
CHECK_INCLUDE_FILES(malloc.h HAVE_MALLOC_H) # simapi.h
|
||||
|
||||
-FINDFFMPEGSCALE("ffmpeg/swscale.h" "swscale")
|
||||
+FINDFFMPEGSCALE("libswscale/swscale.h" "swscale")
|
||||
|
||||
|
||||
CONFIGURE_FILE(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
||||
@@ -107,7 +107,7 @@
|
||||
MESSAGE(STATUS "Checking dependencies" )
|
||||
FINDXINE("xine.h" "xine")
|
||||
FINDDVDREAD("dvdread/ifo_types.h" "dvdread")
|
||||
-FINDFFMPEG("ffmpeg/avcodec.h" "avcodec")
|
||||
+FINDFFMPEG("libavcodec/avcodec.h" "avcodec")
|
||||
|
||||
|
||||
add_definitions( -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS)
|
||||
diff -ur k9copy-2.0.2-Source.orig/src/import/k9avidecode.cpp k9copy-2.0.2-Source/src/import/k9avidecode.cpp
|
||||
--- k9copy-2.0.2-Source.orig/src/import/k9avidecode.cpp 2008-07-05 07:08:53.000000000 +0100
|
||||
+++ k9copy-2.0.2-Source/src/import/k9avidecode.cpp 2008-08-23 15:06:43.000000000 +0100
|
||||
@@ -10,14 +10,14 @@
|
||||
//
|
||||
//
|
||||
#include "k9avidecode.h"
|
||||
-#include <ffmpeg/avcodec.h>
|
||||
+#include <libavcodec/avcodec.h>
|
||||
#include <qimage.h>
|
||||
#include <dlfcn.h>
|
||||
#include <klocale.h>
|
||||
|
||||
#include "ac.h"
|
||||
#ifdef HAVE_SWSCALE
|
||||
-#include "ffmpeg/swscale.h"
|
||||
+#include "libswscale/swscale.h"
|
||||
|
||||
static int sws_flags = SWS_BICUBIC;
|
||||
|
||||
diff -ur k9copy-2.0.2-Source.orig/src/import/k9avidecode.h k9copy-2.0.2-Source/src/import/k9avidecode.h
|
||||
--- k9copy-2.0.2-Source.orig/src/import/k9avidecode.h 2008-07-05 07:08:53.000000000 +0100
|
||||
+++ k9copy-2.0.2-Source/src/import/k9avidecode.h 2008-08-23 15:07:00.000000000 +0100
|
||||
@@ -14,12 +14,12 @@
|
||||
|
||||
#include "k9common.h"
|
||||
#include <qobject.h>
|
||||
-#include <ffmpeg/avformat.h>
|
||||
+#include <libavformat/avformat.h>
|
||||
#include <qimage.h>
|
||||
#include <cstdlib>
|
||||
#include <QObject>
|
||||
#ifdef HAVE_SWSCALE
|
||||
-#include <ffmpeg/swscale.h>
|
||||
+#include <libswscale/swscale.h>
|
||||
#endif
|
||||
/**
|
||||
@author Jean-Michel PETIT <k9copy@free.fr>
|
@ -1,36 +0,0 @@
|
||||
# Copyright 1999-2008 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="2"
|
||||
|
||||
KDE_MINIMAL="4.1"
|
||||
inherit kde4-base
|
||||
|
||||
MY_P="${P/_p/-}"
|
||||
S="${WORKDIR}/${MY_P}-Source"
|
||||
|
||||
DESCRIPTION="k9copy is a DVD backup utility which allows the copy of one or more titles from a DVD9 to a DVD5"
|
||||
HOMEPAGE="http://k9copy.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-Source.tar.gz"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="4.2"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="media-libs/libdvdread
|
||||
x11-libs/qt-dbus
|
||||
sys-apps/hal
|
||||
media-video/ffmpeg
|
||||
media-video/mplayer
|
||||
app-cdr/k3b"
|
||||
RDEPEND="${DEPEND}
|
||||
media-libs/xine-lib
|
||||
media-video/dvdauthor"
|
||||
|
||||
PATCHES=("${FILESDIR}/${P}-ffmpeg.patch")
|
||||
|
||||
LANGS="ca cs de el es_AR es et fr it nl pl pt_BR ru sr@latin sr tr zh_TW"
|
||||
for X in ${LANGS}; do
|
||||
IUSE="${IUSE} linguas_${X}"
|
||||
done
|
@ -1,5 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>maintainer-wanted</herd>
|
||||
</pkgmetadata>
|
Loading…
Reference in New Issue
Block a user