diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-10 10:01:08 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-10 10:01:08 +0100 |
commit | 1963cff1098a2df1c369ca62a2f24adcbec881d3 (patch) | |
tree | 14b2faee235f45361d95c37c1598bd578a5e27b7 /dev-util | |
parent | dev-util/treecc: Mark -r1 stable on remaining arches (diff) | |
download | gentoo-1963cff1098a2df1c369ca62a2f24adcbec881d3.tar.gz gentoo-1963cff1098a2df1c369ca62a2f24adcbec881d3.tar.bz2 gentoo-1963cff1098a2df1c369ca62a2f24adcbec881d3.zip |
dev-util/treecc: Drop old (EAPI 0)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/treecc/treecc-0.3.10.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-util/treecc/treecc-0.3.10.ebuild b/dev-util/treecc/treecc-0.3.10.ebuild deleted file mode 100644 index 7538dd6f11f4..000000000000 --- a/dev-util/treecc/treecc-0.3.10.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="compiler-compiler tool for aspect-oriented programming" -HOMEPAGE="https://www.gnu.org/software/dotgnu" -SRC_URI="https://download.savannah.gnu.org/releases/dotgnu-pnet/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" -IUSE="doc examples" - -DEPEND="doc? ( app-text/texi2html )" - -src_compile() { - econf || die "econf failed" - emake || die "emake failed" - - if use doc ; then - if [ ! -f "${S}"/doc/treecc.texi ] ; then - die "treecc.texi was not generated" - fi - - cd "${S}"/doc - texi2html -split_chapter "${S}"/doc/treecc.texi \ - || die "texi2html failed" - cd "${S}" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README - - if use examples ; then - docinto examples - dodoc examples/README - dodoc examples/{expr_c.tc,gram_c.y,scan_c.l} - fi - - if use doc ; then - dodoc doc/*.{txt,html} - - docinto html - dohtml doc/treecc/*.html - fi -} |