summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2020-09-16 13:40:21 +0200
committerDavid Seifert <soap@gentoo.org>2020-09-16 13:40:21 +0200
commitb67b079179ea38e175c5693c1150b495cd2b9040 (patch)
tree0a17ae3d2803a900ae0fac8c55056c20087ff3f9 /app-i18n
parentnet-misc/youtube-dl: Old (diff)
downloadgentoo-b67b079179ea38e175c5693c1150b495cd2b9040.tar.gz
gentoo-b67b079179ea38e175c5693c1150b495cd2b9040.tar.bz2
gentoo-b67b079179ea38e175c5693c1150b495cd2b9040.zip
app-i18n/bidiv: Remove old
Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/bidiv/Manifest1
-rw-r--r--app-i18n/bidiv/bidiv-1.5-r1.ebuild35
-rw-r--r--app-i18n/bidiv/files/bidiv-1.5-fribidi.patch46
3 files changed, 0 insertions, 82 deletions
diff --git a/app-i18n/bidiv/Manifest b/app-i18n/bidiv/Manifest
index 8b123534d05d..92478f0c4fa4 100644
--- a/app-i18n/bidiv/Manifest
+++ b/app-i18n/bidiv/Manifest
@@ -1,3 +1,2 @@
-DIST bidiv-1.5.tgz 13865 BLAKE2B 9f289a2674b3d5ce895e65f6068252d78eafea735783ca8947be446d0830166708474fda041bea85adcc8930ec615d68978d7f8151afdcd645640b9941be009c SHA512 f8ddaa4a7ae6e7b723eb6e4f5dc91bd2e189c02e116ecd1fb02d300f12e913e9dbf328d65f40ef8c2e7d8e822d1a612966fe0f59f44129fd5dc7ece26c021cc2
DIST bidiv_1.5-4.debian.tar.gz 5863 BLAKE2B b91f6756156815bd12b6c6e56a058a63db5be805cab2c5fb29e47f0e66bf8ba8638bdca2ed83c63117144c2f9912ed4ba79bb1b143f3bd2f6c4fef33397225e2 SHA512 63e998cae38e08181cf4e40a54119b9b4b5ab3ede7fcfbf852a1a7ad51a671d14d4094b3af8b89574eef51f8c6ee34f2eab6242bf69e77d954826931a801e8b1
DIST bidiv_1.5.orig.tar.gz 13865 BLAKE2B 9f289a2674b3d5ce895e65f6068252d78eafea735783ca8947be446d0830166708474fda041bea85adcc8930ec615d68978d7f8151afdcd645640b9941be009c SHA512 f8ddaa4a7ae6e7b723eb6e4f5dc91bd2e189c02e116ecd1fb02d300f12e913e9dbf328d65f40ef8c2e7d8e822d1a612966fe0f59f44129fd5dc7ece26c021cc2
diff --git a/app-i18n/bidiv/bidiv-1.5-r1.ebuild b/app-i18n/bidiv/bidiv-1.5-r1.ebuild
deleted file mode 100644
index 86d05fe04bf0..000000000000
--- a/app-i18n/bidiv/bidiv-1.5-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A BiDirectional Text Viewer"
-HOMEPAGE="http://www.ivrix.org.il"
-SRC_URI="http://ftp.ivrix.org.il/pub/ivrix/src/cmdline/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/fribidi-0.19.2-r2"
-DEPEND="${DEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-fribidi.patch
-}
-
-src_compile() {
- tc-export CC
- emake
-}
-
-src_install() {
- dobin bidiv
- dodoc README WHATSNEW
- doman bidiv.1
-}
diff --git a/app-i18n/bidiv/files/bidiv-1.5-fribidi.patch b/app-i18n/bidiv/files/bidiv-1.5-fribidi.patch
deleted file mode 100644
index 0223329cbe5e..000000000000
--- a/app-i18n/bidiv/files/bidiv-1.5-fribidi.patch
+++ /dev/null
@@ -1,46 +0,0 @@
---- bidiv.c
-+++ bidiv.c
-@@ -172,7 +172,7 @@
- }
- #ifndef TRY_UTF8
- in[len]='\0';
-- fribidi_iso8859_8_to_unicode(in, unicode_in);
-+ fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_ISO8859_8, in, unicode_in);
- #endif
-
- /* output the line */
-@@ -201,10 +201,10 @@
- rtl_line=0;
-
- if(out_utf8)
-- fribidi_unicode_to_utf8(unicode_out, len,
-+ fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, unicode_out, len,
- out);
- else
-- fribidi_unicode_to_iso8859_8(unicode_out, len,
-+ fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_ISO8859_8, unicode_out, len,
- out);
- /* if rtl_line (i.e., base_dir is RL), and we didn't fill the
- entire width, we need to pad with spaces. Maybe in the
---- Makefile
-+++ Makefile
-@@ -1,16 +1,14 @@
- PREFIX=/usr/local
- BIN_DIR=$(PREFIX)/bin
- MAN_PATH=$(PREFIX)/man
--CC_OPT_FLAGS=-O2 -Wall
-
--
--CFLAGS= $(CC_OPT_FLAGS) $(DEFS) `fribidi-config --cflags`
--LDFLAGS=`fribidi-config --libs`
-+CFLAGS+=`pkg-config fribidi --cflags` -Wall
-+LIBS=`pkg-config fribidi --libs`
-
- all: bidiv
-
- bidiv: bidiv.o
-- $(CC) -o bidiv bidiv.o $(LDFLAGS)
-+ $(CC) $(LDFLAGS) -o bidiv bidiv.o $(LIBS)
-
- clean:
- rm -f bidiv.o *~