summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2019-11-17 14:35:26 -0700
committerTim Harder <radhermit@gentoo.org>2019-11-17 15:09:20 -0700
commit8ec6cad1d7db937f6e935c42dd2b5d55eda12c26 (patch)
treeb4fe40c87f1bb2a4fec858a9301d87f2c939fcd6 /app-text/yodl/yodl-4.01.00.ebuild
parentdev-php/pecl-memcached: Add RESTRICT="!test? ( test )" (diff)
downloadgentoo-8ec6cad1d7db937f6e935c42dd2b5d55eda12c26.tar.gz
gentoo-8ec6cad1d7db937f6e935c42dd2b5d55eda12c26.tar.bz2
gentoo-8ec6cad1d7db937f6e935c42dd2b5d55eda12c26.zip
app-text/yodl: remove old
Signed-off-by: Tim Harder <radhermit@gentoo.org>
Diffstat (limited to 'app-text/yodl/yodl-4.01.00.ebuild')
-rw-r--r--app-text/yodl/yodl-4.01.00.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/app-text/yodl/yodl-4.01.00.ebuild b/app-text/yodl/yodl-4.01.00.ebuild
deleted file mode 100644
index 8c697af720a1..000000000000
--- a/app-text/yodl/yodl-4.01.00.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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="https://github.com/fbb-git/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND=">=dev-util/icmake-8.00.00"
-
-S=${WORKDIR}/${P}/${PN}
-
-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 r /$(tc-getAR) r /" \
- -e "s/ranlib/$(tc-getRANLIB)/" \
- -i icmake/stdcompile || die
-
- default
-}
-
-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 ; }
-}