summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-07-26 02:14:58 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-07-26 02:14:58 +0300
commit06794555a434e8d36eed81f0afe18ec2a433c871 (patch)
treeaa2f1aaace6b8aea3e0fa2312683e182beb7b89b /app-text
parentdev-python/pyrtf: remove last rited package (diff)
downloadgentoo-06794555a434e8d36eed81f0afe18ec2a433c871.tar.gz
gentoo-06794555a434e8d36eed81f0afe18ec2a433c871.tar.bz2
gentoo-06794555a434e8d36eed81f0afe18ec2a433c871.zip
app-text/rhyme: remove last rited package
Closes: https://bugs.gentoo.org/651344 Closes: https://bugs.gentoo.org/521256
Diffstat (limited to 'app-text')
-rw-r--r--app-text/rhyme/Manifest1
-rw-r--r--app-text/rhyme/metadata.xml16
-rw-r--r--app-text/rhyme/rhyme-0.9-r1.ebuild44
3 files changed, 0 insertions, 61 deletions
diff --git a/app-text/rhyme/Manifest b/app-text/rhyme/Manifest
deleted file mode 100644
index dcd51f667515..000000000000
--- a/app-text/rhyme/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rhyme-0.9.tar.gz 896013 BLAKE2B d163013a0507fae2c2094076fe77f3ff6be252968e38adb97734ae7ada16407ef2f47ebdded9e7a0c06207514923e0bd881968c9a5088d715e1ecb4b1fc03c09 SHA512 a769313c4790eae94eca1ecf8c00459b9d74e6437d339f8dc9f6642eea51258a0fc2541877a68eeb3a897c29877b673be17826450c1da5a2352a61266784d0fb
diff --git a/app-text/rhyme/metadata.xml b/app-text/rhyme/metadata.xml
deleted file mode 100644
index aa21005d2367..000000000000
--- a/app-text/rhyme/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- What is this thing? Why it's a rhyming dictionary, of course! But more
- specifically, it's a command-line program that takes a word and returns
- to you a formatted list of all words that rhyme with it. The default
- response is a perfect rhyme (which is probably what you want). Or you
- can get a syllable count of a certain word ("whitening" has 2-3
- syllables, etc.).
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">rhyme</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-text/rhyme/rhyme-0.9-r1.ebuild b/app-text/rhyme/rhyme-0.9-r1.ebuild
deleted file mode 100644
index 660464e5c6ba..000000000000
--- a/app-text/rhyme/rhyme-0.9-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit toolchain-funcs
-
-# missing files ...
-RESTRICT="test"
-
-DESCRIPTION="Console based Rhyming Dictionary"
-HOMEPAGE="http://rhyme.sourceforge.net/"
-SRC_URI="mirror://sourceforge/rhyme/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=">=sys-libs/readline-4.3
- >=sys-libs/gdbm-1.8.0"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- # termcap is used by default, switch to ncurses
- sed -i Makefile \
- -e 's|-ltermcap||g' \
- -e 's|-o rhyme|$(LDFLAGS) &|g' \
- || die "sed Makefile"
-}
-
-src_compile() {
- # Disable parallell building wrt bug #125967
- emake -j1 CC="$(tc-getCC)" FLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- # author doesnt use -D for install
- dodir /usr/share/rhyme /usr/bin /usr/share/man/man1
-
- einstall BINPATH="${D}"/usr/bin \
- MANPATH="${D}"/usr/share/man/man1 \
- RHYMEPATH="${D}"/usr/share/rhyme
-}