summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Gebhardt <hsggebhardt@googlemail.com>2010-01-02 16:20:50 +0100
committerHenry Gebhardt <hsggebhardt@googlemail.com>2010-01-02 16:20:50 +0100
commite824f45b0560f6ac94a8474aaa14accd3f313696 (patch)
treea09fa09881a264d3d2ebbea3caa6f8ec66f9d469 /media-video
parentmedia-video/ffmpeg2theora: Deleted, same version in-tree (diff)
downloadkork-e824f45b0560f6ac94a8474aaa14accd3f313696.tar.gz
kork-e824f45b0560f6ac94a8474aaa14accd3f313696.tar.bz2
kork-e824f45b0560f6ac94a8474aaa14accd3f313696.zip
media-video/subtitleeditor: Deleted, in-tree is newer
Diffstat (limited to 'media-video')
-rw-r--r--media-video/subtitleeditor/Manifest2
-rw-r--r--media-video/subtitleeditor/subtitleeditor-0.25.0.ebuild62
2 files changed, 0 insertions, 64 deletions
diff --git a/media-video/subtitleeditor/Manifest b/media-video/subtitleeditor/Manifest
deleted file mode 100644
index f00d3b2..0000000
--- a/media-video/subtitleeditor/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST subtitleeditor-0.25.0.tar.gz 723534 RMD160 d38e9a0588a0a5183aff329ed269e4d596fbdf19 SHA1 171cd5c7bb6919c60fc3e4b67087811c300bb3f1 SHA256 d65e400e758c6cdf0ff403605d7cacd8e5c21ab6215510e79590bdbef9606cf9
-EBUILD subtitleeditor-0.25.0.ebuild 1754 RMD160 940d5720542ac7fe9b3b6898abba3bce9ed8d86b SHA1 d7270ac7de9d0faf7271f32e0f48de3ac82511f0 SHA256 b531c2ebb56c3d35f676e86893947101ac15df8f686a76be1bb97860d7c0abbb
diff --git a/media-video/subtitleeditor/subtitleeditor-0.25.0.ebuild b/media-video/subtitleeditor/subtitleeditor-0.25.0.ebuild
deleted file mode 100644
index e605d47..0000000
--- a/media-video/subtitleeditor/subtitleeditor-0.25.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils
-
-MY_PV="${PV//_/}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A GTK+ subtitle editing tool"
-HOMEPAGE="http://kitone.free.fr/subtitleeditor/"
-SRC_URI="http://download.gna.org/subtitleeditor/${PV%.*}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug spell"
-
-DEPEND=">=dev-cpp/gtkmm-2.10.9
- >=dev-cpp/libglademm-2.4
- dev-libs/libpcre
- >=media-libs/gstreamer-0.10
- >=media-libs/gst-plugins-good-0.10
- >=media-plugins/gst-plugins-pango-0.10
- >=x11-libs/gtk+-2.10
- >=dev-cpp/libxmlpp-2.10
- x11-libs/cairo
- spell? ( >=app-text/enchant-1.1.0 )"
-RDEPEND="${DEPEND}
- >=media-plugins/gst-plugins-ffmpeg-0.10"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- # pcre needs to support utf8; only <libpcre-7.0 forces it
- if ! built_with_use --missing true dev-libs/libpcre unicode ; then
- eerror "${PN} requires dev-libs/libpcre with unicode support"
- die "Recompile dev-libs/libpcre with USE=\"unicode\" first."
- fi
- if ! built_with_use --missing true dev-libs/libpcre cxx ; then
- eerror "${PN} requires dev-libs/libpcre with C++ support"
- die "Recompile dev-libs/libpcre with USE=\"cxx\" first."
- fi
-}
-
-src_compile() {
- export GST_REGISTRY="${T}/home/registry.cache.xml"
- addpredict "${ROOT}root/.gconf"
- addpredict "${ROOT}root/.gconfd"
- econf \
- $(use_enable debug) \
- $(use_enable spell enchant-support) \
- || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- # Bug filed upstream -- (which bug is it and what does it fix?)
- sed -i -e "s:${PN}-icon:/usr/share/${PN}/${PN}:" "share/${PN}.desktop"
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS NEWS README TODO
-}