diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-03-06 09:17:02 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-03-07 10:10:55 +0100 |
commit | 7e6290067635088da78f97ff977d1a21ea36d686 (patch) | |
tree | 0256cde121c74de5c898fbd2af985adc4805db7f /x11-misc | |
parent | x11-misc/easystroke: Remove old (diff) | |
download | gentoo-7e6290067635088da78f97ff977d1a21ea36d686.tar.gz gentoo-7e6290067635088da78f97ff977d1a21ea36d686.tar.bz2 gentoo-7e6290067635088da78f97ff977d1a21ea36d686.zip |
x11-misc/fireflies: Remove old
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4142
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/fireflies/files/fireflies-2.07-glx-detection.patch | 52 | ||||
-rw-r--r-- | x11-misc/fireflies/files/fireflies-2.07-linking.patch | 28 | ||||
-rw-r--r-- | x11-misc/fireflies/fireflies-2.07-r2.ebuild | 52 | ||||
-rw-r--r-- | x11-misc/fireflies/fireflies-2.08.ebuild | 40 |
4 files changed, 0 insertions, 172 deletions
diff --git a/x11-misc/fireflies/files/fireflies-2.07-glx-detection.patch b/x11-misc/fireflies/files/fireflies-2.07-glx-detection.patch deleted file mode 100644 index f4c8bf5bb8f3..000000000000 --- a/x11-misc/fireflies/files/fireflies-2.07-glx-detection.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 41db6d93ab4d91f74761f8a34800b9026b0482c7 Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping <sebastian@pipping.org> -Date: Sat, 6 Jun 2015 20:25:39 +0200 -Subject: [PATCH] Fix underquoting in configure.ac - -.. resulting in - - checking for glXSwapBuffers in -lGL... ./configure: line 3095: ac_fn_c_try_link: command not found - no - -at runtime. ---- - configure.ac | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 7bb7e72..cd7fa54 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -54,18 +54,18 @@ CYGWIN*|cygwin*|MINGW*|mingw*) - OPT_OBJS="main.o canvas_base.o" - PROGRAM="fireflies" - -- AC_CHECK_LIB(GL, glXSwapBuffers,\ -- AC_DEFINE(HAVE_GLX) -- OPT_OBJS="$OPT_OBJS canvas_glx.o",\ -- AC_CHECK_LIB(MesaGL, glXSwapBuffers,\ -- AC_DEFINE(HAVE_GLX) -- OPT_OBJS="$OPT_OBJS canvas_glx.o")) -- -- AC_CHECK_LIB(GL, glBegin, \ -- GL_LIBS="-lGL -lGLU", \ -- AC_CHECK_LIB(MesaGL, glBegin, \ -+ AC_CHECK_LIB([GL], [glXSwapBuffers],\ -+ [AC_DEFINE(HAVE_GLX) -+ OPT_OBJS="$OPT_OBJS canvas_glx.o"],\ -+ [AC_CHECK_LIB([MesaGL], [glXSwapBuffers],\ -+ [AC_DEFINE(HAVE_GLX) -+ OPT_OBJS="$OPT_OBJS canvas_glx.o"])]) -+ -+ AC_CHECK_LIB([GL], [glBegin], \ -+ [GL_LIBS="-lGL -lGLU"], \ -+ [AC_CHECK_LIB([MesaGL], [glBegin], \ - [GL_LIBS="-lMesaGL -lMesaGLU"], \ -- AC_MSG_ERROR([cannot find GL libraries]))) -+ [AC_MSG_ERROR([cannot find GL libraries])])]) - - ;; - esac --- -2.4.0 - diff --git a/x11-misc/fireflies/files/fireflies-2.07-linking.patch b/x11-misc/fireflies/files/fireflies-2.07-linking.patch deleted file mode 100644 index cc7e16994878..000000000000 --- a/x11-misc/fireflies/files/fireflies-2.07-linking.patch +++ /dev/null @@ -1,28 +0,0 @@ -From da7c37ae638ac9e2989a3d65f529997c6d2111e1 Mon Sep 17 00:00:00 2001 -From: Sebastian Pipping <sebastian@pipping.org> -Date: Sat, 6 Jun 2015 20:38:27 +0200 -Subject: [PATCH] Fix linking of src/canvas_glx.o - -Otherwise: -/usr/lib/gcc/x86_64-pc-linux-gnu/4.8.4/../../../../x86_64-pc-linux-gnu/bin/ld: canvas_glx.o: undefined reference to symbol 'XPending' -/usr/lib64/libX11.so.6: error adding symbols: DSO missing from command line ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index cd7fa54..1fa000b 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -50,7 +50,7 @@ CYGWIN*|cygwin*|MINGW*|mingw*) - test -f $try && RCFILE=$try - done - -- OPT_LIBS="" -+ OPT_LIBS="-lX11" - OPT_OBJS="main.o canvas_base.o" - PROGRAM="fireflies" - --- -2.4.0 - diff --git a/x11-misc/fireflies/fireflies-2.07-r2.ebuild b/x11-misc/fireflies/fireflies-2.07-r2.ebuild deleted file mode 100644 index e1a1c6d84886..000000000000 --- a/x11-misc/fireflies/fireflies-2.07-r2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils multilib - -DESCRIPTION="Fireflies screensaver: Wicked cool eye candy" -HOMEPAGE="http://somewhere.fscked.org/proj/fireflies/" -SRC_URI="http://somewhere.fscked.org/proj/${PN}/files/${P}.tar.gz" - -LICENSE="GPL-2 HPND" # HPND is for libgfx, see src_unpack() -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="media-libs/libsdl[X,opengl,video] - virtual/glu - virtual/opengl - x11-libs/libX11" -DEPEND="${RDEPEND}" - -DOCS=( ChangeLog debian/README.Debian README TODO ) - -src_unpack() { - unpack ${A} - cd "${S}" - tar -xzf libgfx-1.0.1.tar.gz -} - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-build_system.patch \ - "${FILESDIR}"/${P}-glx-detection.patch \ - "${FILESDIR}"/${P}-linking.patch \ - "${FILESDIR}"/${P}-gcc4{3,4}.patch \ - "${FILESDIR}"/${P}-libgfx-libpng1{5,6}.patch - - eautoreconf -} - -src_configure() { - econf \ - --with-confdir=/usr/share/xscreensaver/config \ - --with-bindir="/usr/$(get_libdir)/misc/xscreensaver" -} - -src_install() { - exeinto /usr/lib # FHS: internal binaries - newexe {,${PN}-}add-xscreensaver - - default -} diff --git a/x11-misc/fireflies/fireflies-2.08.ebuild b/x11-misc/fireflies/fireflies-2.08.ebuild deleted file mode 100644 index 153939ee8649..000000000000 --- a/x11-misc/fireflies/fireflies-2.08.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools multilib - -DESCRIPTION="Fireflies screensaver: Wicked cool eye candy" -HOMEPAGE="https://github.com/mpcomplete/fireflies" -SRC_URI="https://github.com/mpcomplete/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2 icu" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="media-libs/libsdl[X,opengl,video] - virtual/glu - virtual/opengl - x11-libs/libX11" -DEPEND="${RDEPEND} - sys-devel/autoconf-archive" # for AX_CXX_BOOL macro - -DOCS=( ChangeLog README.md TODO ) - -src_prepare() { - eautoreconf -} - -src_configure() { - econf \ - --with-confdir=/usr/share/xscreensaver/config \ - --with-bindir="/usr/$(get_libdir)/misc/xscreensaver" -} - -src_install() { - exeinto /usr/lib # FHS: internal binaries - newexe {,${PN}-}add-xscreensaver - - default -} |