diff options
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xstroke/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xstroke/files/xstroke-0.6-sigsegv_sprintf.patch | 13 | ||||
-rw-r--r-- | x11-misc/xstroke/files/xstroke-0.6-underlinking.patch | 11 | ||||
-rw-r--r-- | x11-misc/xstroke/metadata.xml | 11 | ||||
-rw-r--r-- | x11-misc/xstroke/xstroke-0.6-r1.ebuild | 39 |
5 files changed, 0 insertions, 75 deletions
diff --git a/x11-misc/xstroke/Manifest b/x11-misc/xstroke/Manifest deleted file mode 100644 index 9053cdd5b36b..000000000000 --- a/x11-misc/xstroke/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST xstroke-0.6.tar.bz2 140237 BLAKE2B 0419c0375e8579d758730d129c2d2db0de8ecc2f0c73a026b08db8e18818dc2c4d1c4ffff6e9794c48bd645176decbce2e477e182cf78402fc859234438266a3 SHA512 0fb75f20dfcb8db68bb17d50a9dea2906e17ee1d8675bb7b4dea964189aa69c8bfcc101d7e7fac22209da3f83fc0d0afd569d443d3f585bffa2d62ce11ad772a diff --git a/x11-misc/xstroke/files/xstroke-0.6-sigsegv_sprintf.patch b/x11-misc/xstroke/files/xstroke-0.6-sigsegv_sprintf.patch deleted file mode 100644 index b36958849f53..000000000000 --- a/x11-misc/xstroke/files/xstroke-0.6-sigsegv_sprintf.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -Nru xstroke-0.6.vanilla/sprintf_alloc.c xstroke-0.6/sprintf_alloc.c ---- xstroke-0.6.vanilla/sprintf_alloc.c 2005-11-26 01:55:32.000000000 +0100 -+++ xstroke-0.6/sprintf_alloc.c 2005-11-26 01:55:55.000000000 +0100 -@@ -74,7 +74,8 @@ - { - char *new_str; - /* Guess we need no more than 100 bytes. */ -- int n, size = 100; -+ /* yeah... right... */ -+ int n, size = 512; - - if ((*str = malloc (size)) == NULL) - return -1; diff --git a/x11-misc/xstroke/files/xstroke-0.6-underlinking.patch b/x11-misc/xstroke/files/xstroke-0.6-underlinking.patch deleted file mode 100644 index 52b39ddf4512..000000000000 --- a/x11-misc/xstroke/files/xstroke-0.6-underlinking.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile.am -+++ b/Makefile.am -@@ -40,7 +40,7 @@ - BUILT_SOURCES = rec_parse.h rec_lex.h rec_lex.c - AM_YFLAGS = -d - --xstroke_LDADD = @XSTROKE_LIBS@ -lm -lpthread $(X_LIBS) -lXpm -lXtst -+xstroke_LDADD = @XSTROKE_LIBS@ -lm -lpthread $(X_LIBS) -lXpm -lXtst -lX11 -lXrender -lXext -ldl - AM_CFLAGS = @XSTROKE_CFLAGS@ -DXSTROKE_CONF_DIR='"$(sysconfdir)/xstroke"' $(X_CFLAGS) - - EXTRA_DIST = xstroke_active.xpm xstroke_inactive.xpm etc/alphabet diff --git a/x11-misc/xstroke/metadata.xml b/x11-misc/xstroke/metadata.xml deleted file mode 100644 index 4150784c3af2..000000000000 --- a/x11-misc/xstroke/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>desktop-misc@gentoo.org</email> - <name>Gentoo Desktop Miscellaneous Project</name> - </maintainer> - <upstream> - <remote-id type="freshmeat">xstroke</remote-id> - </upstream> -</pkgmetadata> diff --git a/x11-misc/xstroke/xstroke-0.6-r1.ebuild b/x11-misc/xstroke/xstroke-0.6-r1.ebuild deleted file mode 100644 index a3662daa1904..000000000000 --- a/x11-misc/xstroke/xstroke-0.6-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Gesture/Handwriting recognition engine for X" -HOMEPAGE="http://freshmeat.net/projects/xstroke/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~mips ppc sparc x86" - -RDEPEND=" - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXft - x11-libs/libXpm - x11-libs/libXrender - x11-libs/libXtst" -DEPEND=" - ${RDEPEND} - x11-base/xorg-proto" -BDEPEND=" - sys-devel/flex - virtual/pkgconfig - virtual/yacc" - -PATCHES=( - "${FILESDIR}"/${P}-sigsegv_sprintf.patch - "${FILESDIR}"/${P}-underlinking.patch -) - -src_prepare() { - default - eautoreconf -} |