summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2016-11-25 15:38:01 -0500
committerTim Harder <radhermit@gentoo.org>2016-11-25 15:38:01 -0500
commit4ddac8badc30a16bf3f14bcb5f1a0096830cf332 (patch)
tree6c20f07ed21b6a33e36c3ae4c149e9c14feae6f6 /app-text/yodl
parentdev-vcs/tig: version bump to 2.2.1 (diff)
downloadgentoo-4ddac8badc30a16bf3f14bcb5f1a0096830cf332.tar.gz
gentoo-4ddac8badc30a16bf3f14bcb5f1a0096830cf332.tar.bz2
gentoo-4ddac8badc30a16bf3f14bcb5f1a0096830cf332.zip
app-text/yodl: remove old
Diffstat (limited to 'app-text/yodl')
-rw-r--r--app-text/yodl/Manifest1
-rw-r--r--app-text/yodl/yodl-3.05.01.ebuild44
2 files changed, 0 insertions, 45 deletions
diff --git a/app-text/yodl/Manifest b/app-text/yodl/Manifest
index 6d267e881133..ec03c078b906 100644
--- a/app-text/yodl/Manifest
+++ b/app-text/yodl/Manifest
@@ -1,2 +1 @@
DIST yodl-3.08.01.tar.gz 283634 SHA256 958497939d9f3d1c6d0e2e74f7592d5a98f9ddb6f95c50c1247e41600d2765b7 SHA512 a88ab79657661262f4ccce4fd307ba41a05bcefbb534a2b5ed84115ab592ddf3ce883747aad5c028e73142ec91815ee86e1ae16ab9d319fe2045a2b0a08ab42c WHIRLPOOL aa9d9c0d58da0d5dbda3acd4f4f5fe5867873a23fd0f133404a6be9965001c1326714fc05296fa2a91912fe011391dd51819a40d2ddecfd7d99cfd8ac833339d
-DIST yodl_3.05.01.orig.tar.gz 302038 SHA256 5a3d0e1b2abbba87217cfdc6cd354a00df8d782572495bbddbdfbd4f47fe0d3e SHA512 d2e8216511f50f053809d7b4c50c733ea72b62ef987608381c2583f008347f889e897b7104eaa63a040c4290909d681971a8a0624b15f204dc8ad47a4f2ceb1b WHIRLPOOL fa2dc18eab78af022d945eeb7436483a1d0cf0a947a450cbf045a763348378ebe2d192297c462b3c6fc30756f283d1186b4f3c1d9e9d5bc707aaace9ebc9e09b
diff --git a/app-text/yodl/yodl-3.05.01.ebuild b/app-text/yodl/yodl-3.05.01.ebuild
deleted file mode 100644
index 09013d3d02c9..000000000000
--- a/app-text/yodl/yodl-3.05.01.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Your Own Document Language: a pre-document language and tools to process it"
-HOMEPAGE="https://fbb-git.github.io/yodl/ https://github.com/fbb-git/yodl"
-SRC_URI="mirror://sourceforge/${PN}/${P/-/_}.orig.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND="dev-util/icmake"
-
-src_prepare() {
- sed -e "/DOC.* =/s/yodl\(-doc\)\?/${PF}/" \
- -e "/COMPILER =/s/gcc/$(tc-getCC)/" \
- -e "/CXX =/s/g++/$(tc-getCXX)/" \
- -i INSTALL.im || die
-
- sed -e "s/ar ru/$(tc-getAR) ru/" \
- -e "s/ranlib/$(tc-getRANLIB)/" \
- -i icmake/stdcompile || die
-}
-
-src_compile() {
- ./build programs || die
- ./build macros || die
- ./build man || die
- use doc && { ./build manual || die ; }
-}
-
-src_install() {
- ./build install programs "${ED}" || die
- ./build install macros "${ED}" || die
- ./build install man "${ED}" || die
- ./build install docs "${ED}" || die
- use doc && { ./build install manual "${ED}" || die ; }
-}