# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.8.ebuild,v 1.10 2012/04/26 16:49:19 aballier Exp $ EAPI="4" inherit autotools git-2 EGIT_REPO_URI="https://bitbucket.org/xarthisius/${PN}.git" DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors" HOMEPAGE="http://ctags.sourceforge.net" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="" DEPEND="app-admin/eselect-ctags" RDEPEND="${DEPEND}" DOCS=( FAQ NEWS README website/FORMAT ) src_prepare() { eautoreconf } src_configure() { econf \ --with-posix-regex \ --without-readlib \ --disable-etags \ --enable-tmpdir=/tmp } src_install() { default dohtml -r EXTENDING.html index.html website/ } pkg_postinst() { eselect ctags update elog "You can set the version to be started by /usr/bin/ctags through" elog "the ctags eselect module. \"man ctags.eselect\" for details." } pkg_postrm() { eselect ctags update }