summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2017-08-26 12:06:17 +0200
committerGilles Dartiguelongue <eva@gentoo.org>2017-08-26 12:07:29 +0200
commitfc57f944406b660c7c9cb5934ab8ae3f03c54918 (patch)
treeb7e4a421dcbfa08344ff988051c13b173aa38685
parentapp-office/gtg: cleanup old revision (diff)
downloadgentoo-fc57f944406b660c7c9cb5934ab8ae3f03c54918.tar.gz
gentoo-fc57f944406b660c7c9cb5934ab8ae3f03c54918.tar.bz2
gentoo-fc57f944406b660c7c9cb5934ab8ae3f03c54918.zip
media-video/subtitleeditor: cleanup old revision
Package-Manager: Portage-2.3.8, Repoman-2.3.3
-rw-r--r--media-video/subtitleeditor/Manifest1
-rw-r--r--media-video/subtitleeditor/subtitleeditor-0.52.1.ebuild68
2 files changed, 0 insertions, 69 deletions
diff --git a/media-video/subtitleeditor/Manifest b/media-video/subtitleeditor/Manifest
index abf02b57af60..e72294d93873 100644
--- a/media-video/subtitleeditor/Manifest
+++ b/media-video/subtitleeditor/Manifest
@@ -1,3 +1,2 @@
-DIST subtitleeditor-0.52.1.tar.gz 1680875 SHA256 5b3e5fc1f12bcf0d4bcf5014249b6832181bd3b513ac04ee665ec979441412d5 SHA512 a9a7ee78abadf660fe645e36ed69b87131320e04373554adb48dc33df8f36605ed74da3822fe0281b2b75d6f82daddd062b2ae9a12aed44673195fba43adfd4f WHIRLPOOL def330a098b9227cf6db8a74c67d2cd7db724b65f586e22ebf1b08de6de6321849fdeecfe5fd6c0132a814d45d84087b406a05aec7463c04a4355530c3d09c44
DIST subtitleeditor-0.53.0.tar.gz 1778388 SHA256 8fac7430fb552438d075ef3809d4a0f04a764d4dd0723a3ef18b2b695fecf920 SHA512 8787831947785885befb50221869169eda73489851389e72f34edac7a9c2c59d05ba69e86d4d2d5b3a13b2678377ee2520c110ffa472b718884dd2e711603b8b WHIRLPOOL cfd7bfd2324fe10dadd6e8c7c60487072d15dee3c6f0a57358abee4e5f92c945ba95efb036516ecadc0beebf52380b835cb35ae8af389110597ab5305a979639
DIST subtitleeditor-0.54.0.tar.gz 1783077 SHA256 aa9c539f3a0984deef257339e2b9f5c8728b8245113695cf6d42459f011aa2ab SHA512 4458d579775a504b22f955c41d0e95ed722c1cb6bcf715ef493988a85397d5e0d4c3327e129f49b160d398dc73257026a92bbe5104c30d2004c16b7e12dd113c WHIRLPOOL e67f2d94ec004e40855b440af3eafc7d78c859326b46a69c11fb633e650fdb3c0f44da9a9e3dadcf0a87ff598984d7cc1eabdf6fecb625b6357f4ec2dae4fb6d
diff --git a/media-video/subtitleeditor/subtitleeditor-0.52.1.ebuild b/media-video/subtitleeditor/subtitleeditor-0.52.1.ebuild
deleted file mode 100644
index 8ac62e9d2bdd..000000000000
--- a/media-video/subtitleeditor/subtitleeditor-0.52.1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit flag-o-matic gnome2 versionator
-
-DESCRIPTION="GTK+3 subtitle editing tool"
-HOMEPAGE="http://home.gna.org/subtitleeditor/"
-SRC_URI="http://download.gna.org/${PN}/$(get_version_component_range 1-2)/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug nls"
-# opengl would mix gtk+:2 and :3 which is not possible
-
-RDEPEND="
- >=app-text/enchant-1.4
- app-text/iso-codes
- >=dev-cpp/cairomm-1.12
- >=dev-cpp/glibmm-2.46:2
- >=dev-cpp/gtkmm-3.18:3.0
- >=dev-cpp/gstreamermm-1.0:1.0
- >=dev-cpp/libxmlpp-2.40:2.6
- dev-libs/glib:2
- >=dev-libs/libsigc++-2.6:2
- media-libs/gst-plugins-base:1.0[X,pango]
- media-libs/gst-plugins-good:1.0
- media-libs/gstreamer:1.0
- media-plugins/gst-plugins-meta:1.0
- x11-libs/gtk+:3
- virtual/libintl
-"
-# opengl? (
-# >=dev-cpp/gtkglextmm-1.2.0-r2:1.0
-# virtual/opengl )
-# X needed for video output and pango needed for text overlay
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.40
- virtual/pkgconfig
-"
-
-src_prepare() {
- # ansi overrides -std, see src_configure
- sed 's/\(CXXFLAGS\) -ansi/\1/' -i configure.ac configure || die
-
- # fix build issues
- epatch "${FILESDIR}"/${PN}-0.52.1-build-fix.patch
-
- gnome2_src_prepare
-}
-
-src_configure() {
- # Needed with newer gnome mm bindings
- append-cxxflags -std=c++11
-
- # Avoid using --enable-debug as it mocks with CXXFLAGS and LDFLAGS
- use debug && append-cxxflags -DDEBUG
-
- gnome2_src_configure \
- --disable-debug \
- --disable-gl \
- $(use_enable nls)
-# $(use_enable opengl gl)
-}