media-video/imagination: drop 3.0-r2

Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk
2024-09-13 17:18:52 +02:00
parent 3b8422357a
commit fbe37679af
4 changed files with 0 additions and 87 deletions

View File

@@ -1,2 +1 @@
DIST imagination-3.0.tar.gz 3327784 BLAKE2B 0322a68ab6c44e2b0d47bb89de6522249ca3507808ee3733f2f195923c4269591c2225271ef27b24c648cb6784a5c85bd6ca97142072e52641bdf7f80b9a9bc7 SHA512 0780ab572d8f4fc1e728befef79f974169438d723f67205e677c06cbe0dac06745868936e7d3eab5fc42728902f6b06eb5f9d7e836532c289df005ddab2104b8
DIST imagination-3.6.tar.gz 3553509 BLAKE2B 39b345b073b123e68ab6a025b03ca23a38191cb2d2f5163d8b7722a8891d254f9fc7b54461c7d741ba6d2e7b25cb2029d9eec55e5115a5b8504dd85985c740aa SHA512 673651cf59baded805ba3993c6f9dff83f20ae9174d5f5e07b99d9d590eb817e6733cbc130a3d32502a84fa29bd78c4f1dd093c01aaedfef5f9425a59125865d

View File

@@ -1,34 +0,0 @@
diff --git a/configure.in b/configure.in
index 0be7802..d19c8ec 100644
--- a/configure.in
+++ b/configure.in
@@ -24,7 +24,7 @@
AM_PROG_LIBTOOL
LIBTOOL="$LIBTOOL --silent"
-pkg_modules="gtk+-2.0 >= 2.14.0 gthread-2.0"
+pkg_modules="gtk+-2.0 >= 2.14.0 gthread-2.0 gmodule-2.0"
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
sox_modules="sox >= 14.2.0"
@@ -33,6 +33,11 @@
plugins_modules="cairo >= 1.6 glib-2.0 > 2.18.0"
PKG_CHECK_MODULES(PLUGINS, [$plugins_modules])
+dnl Check for libm for sqrtf()
+AC_SEARCH_LIBS([sqrtf], [m], [], [
+ AC_MSG_ERROR([unable to find the sqrtf() function])
+])
+
# get svn revision
REVISION="r0"
if test "x${REVISION}" = "xr0"
@@ -46,7 +51,7 @@
if test "x${REVISION}" != "xr0"
then
# force debug mode for a SVN working copy
- CFLAGS="-g -Wall"
+ CFLAGS +="-Wall"
else
REVISION="-1"
fi

View File

@@ -1,11 +0,0 @@
--- a/src/support.h
+++ b/src/support.h
@@ -20,7 +20,7 @@
#ifndef __IMAGINATION_SUPPORT_H
#define __IMAGINATION_SUPPORT_H
-#define PLUGINS_INSTALLED 0
+#define PLUGINS_INSTALLED 1
#ifdef HAVE_CONFIG_H
# include <config.h>

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools desktop
DESCRIPTION="Simple DVD slideshow maker"
HOMEPAGE="https://imagination.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
media-sound/sox:=
x11-libs/cairo:=
x11-libs/gtk+:2"
RDEPEND="${DEPEND}
media-video/ffmpeg"
PATCHES=(
"${FILESDIR}"/${P}-cflags.patch
"${FILESDIR}"/${P}-enable-translations.patch
"${FILESDIR}"/${P}-fix-htmldir.patch
)
src_prepare() {
default
mv configure.{in,ac} || die
eautoreconf
}
src_install() {
default
doicon icons/48x48/${PN}.png
# only plugins
find "${D}" -name '*.la' -delete || die
}