diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-01-03 12:01:40 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-01-03 12:01:40 +0000 |
commit | 5d57c366a1e98e09d8f715832697e5f550f24f62 (patch) | |
tree | 0652778916ffac0e360bff07f37f86dd537b7cbe /dev-util/source-highlight/source-highlight-3.1.ebuild | |
parent | Use python-any-r1 for waf. Remove no-op base.eclass inherit. (diff) | |
download | gentoo-2-5d57c366a1e98e09d8f715832697e5f550f24f62.tar.gz gentoo-2-5d57c366a1e98e09d8f715832697e5f550f24f62.tar.bz2 gentoo-2-5d57c366a1e98e09d8f715832697e5f550f24f62.zip |
Remove old (bash-completion.eclass cleanup).
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'dev-util/source-highlight/source-highlight-3.1.ebuild')
-rw-r--r-- | dev-util/source-highlight/source-highlight-3.1.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-util/source-highlight/source-highlight-3.1.ebuild b/dev-util/source-highlight/source-highlight-3.1.ebuild deleted file mode 100644 index a9910fbba49e..000000000000 --- a/dev-util/source-highlight/source-highlight-3.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/source-highlight/source-highlight-3.1.ebuild,v 1.9 2011/04/10 03:07:43 abcd Exp $ - -EAPI="3" - -inherit bash-completion versionator - -DESCRIPTION="Generate highlighted source code as an (x)html document" -HOMEPAGE="http://www.gnu.org/software/src-highlite/source-highlight.html" -SRC_URI="mirror://gnu/src-highlite/${P}.tar.gz" -LICENSE="GPL-3" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -SLOT="0" -IUSE="bash-completion doc" - -DEPEND=">=dev-libs/boost-1.35.0-r5 - dev-util/ctags" -RDEPEND="${DEPEND}" - -src_configure() { - BOOST_PKG="$(best_version ">=dev-libs/boost-1.35.0-r5")" - BOOST_VER="$(replace_all_version_separators _ $(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}"))" - - sed -i \ - -e "s|ac_boost_path_tmp/include|ac_boost_path_tmp/include/boost-${BOOST_VER}|" \ - configure || die "sed failed" - - econf \ - --with-boost-regex="boost_regex-mt-${BOOST_VER}" \ - --without-bash-completion -} - -src_install () { - emake DESTDIR="${D}" install || die "make install failed" - - use bash-completion && dobashcompletion source-highlight-bash-completion - - # That's not how we want it - rm -fr "${ED}/usr/share"/{aclocal,doc} - dodoc AUTHORS ChangeLog CREDITS NEWS README THANKS TODO.txt - - use doc && dohtml -A java doc/*.{html,css,java} -} |