diff options
author | 2024-12-09 17:19:33 +0100 | |
---|---|---|
committer | 2024-12-09 17:19:33 +0100 | |
commit | da7eadbed1c97bfff97c99c02123fb38721d4202 (patch) | |
tree | 9af8bdd624281d3e339c48433ac641a735d5b56c /dev-util/treecc | |
parent | net-im/mattermost-desktop-bin: add 5.10.2_rc1 (diff) | |
download | gentoo-da7eadbed1c97bfff97c99c02123fb38721d4202.tar.gz gentoo-da7eadbed1c97bfff97c99c02123fb38721d4202.tar.bz2 gentoo-da7eadbed1c97bfff97c99c02123fb38721d4202.zip |
dev-util/treecc: drop 0.3.10-r1
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'dev-util/treecc')
-rw-r--r-- | dev-util/treecc/treecc-0.3.10-r1.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-util/treecc/treecc-0.3.10-r1.ebuild b/dev-util/treecc/treecc-0.3.10-r1.ebuild deleted file mode 100644 index 6ff5b9374a22..000000000000 --- a/dev-util/treecc/treecc-0.3.10-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="doc examples" - -DEPEND="doc? ( app-text/texi2html )" - -src_compile() { - default - - if use doc; then - [[ -f "${S}"/doc/treecc.texi ]] || die "treecc.texi was not generated" - cd "${S}"/doc || die - texi2html -split_chapter "${S}"/doc/treecc.texi \ - || die "texi2html failed" - cd "${S}" || die - fi -} - -src_install() { - default - - 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 - dodoc -r doc/treecc/*.html - fi -} |