diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-05-26 16:27:52 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-05-26 16:27:52 +0000 |
commit | 221eb2bd317685f46c01c85ebae7d5dd9494d7ac (patch) | |
tree | 6b6c93e1a83e85a7b25063ce4aad74342eda2e4f /dev-util | |
parent | fix bug 20405 (diff) | |
download | historical-221eb2bd317685f46c01c85ebae7d5dd9494d7ac.tar.gz historical-221eb2bd317685f46c01c85ebae7d5dd9494d7ac.tar.bz2 historical-221eb2bd317685f46c01c85ebae7d5dd9494d7ac.zip |
fix bug 20405
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/ctags/Manifest | 7 | ||||
-rw-r--r-- | dev-util/ctags/ctags-5.5-r1.ebuild | 35 | ||||
-rw-r--r-- | dev-util/ctags/files/digest-ctags-5.5-r1 | 1 |
3 files changed, 39 insertions, 4 deletions
diff --git a/dev-util/ctags/Manifest b/dev-util/ctags/Manifest index 4da71b5896d2..912f0be5dc5e 100644 --- a/dev-util/ctags/Manifest +++ b/dev-util/ctags/Manifest @@ -1,8 +1,7 @@ -MD5 62219e83e638d4a5deeada7ef05a19ca ctags-5.2.3-r1.ebuild 1154 -MD5 6c1e539bd2ee49f29ec22f72412f0e1f ctags-5.5-r1.ebuild 1161 +MD5 079ff4d9132121c82dde7afb2d8aed3d ctags-5.2.3.ebuild 1105 +MD5 134923f578722da1d0bf0da6963b5ca3 ctags-5.5-r1.ebuild 1164 MD5 e1301bed3c285441298474da255154b8 ctags-5.5.ebuild 1170 -MD5 9fd511cb73afee90776da31ae0c780fd ChangeLog 1222 +MD5 26ef1e6c8c2a449e08eaa9e0e6df5b67 ChangeLog 1402 MD5 1fe9a83e8e373e39e2f1522f22afefb7 files/digest-ctags-5.5 61 MD5 1fe9a83e8e373e39e2f1522f22afefb7 files/digest-ctags-5.5-r1 61 MD5 e679ffaa8205e53af2edbbe0b20e60a1 files/digest-ctags-5.2.3 63 -MD5 e679ffaa8205e53af2edbbe0b20e60a1 files/digest-ctags-5.2.3-r1 63 diff --git a/dev-util/ctags/ctags-5.5-r1.ebuild b/dev-util/ctags/ctags-5.5-r1.ebuild new file mode 100644 index 000000000000..c6a342cf19e3 --- /dev/null +++ b/dev-util/ctags/ctags-5.5-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.5-r1.ebuild,v 1.1 2003/05/26 16:27:45 agriffis Exp $ + +DESCRIPTION="Ctags generates an index (or tag) file of C language objects found in C source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 22 programming languages." +SRC_URI="mirror://sourceforge/ctags/${P}.tar.gz" +HOMEPAGE="http://ctags.sourceforge.net" + +DEPEND="${RDEPEND}" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="alpha x86 ~ppc ~sparc" +IUSE="" + +src_compile() { + econf \ + --with-posix-regex \ + --without-readlib \ + --disable-etags \ + --enable-tmpdir=/tmp || die "econf failed" + emake || die "emake failed" +} + +src_install () { + einstall || die "einstall failed" + + # namepace collision with X/Emacs-provided /usr/bin/ctags -- we + # rename ctags to exuberant-ctags (Mandrake does this also). + mv ${D}/usr/bin/{ctags,exuberant-ctags} + mv ${D}/usr/share/man/man1/{ctags,exuberant-ctags}.1 + + dodoc COPYING FAQ NEWS README + dohtml EXTENDING.html ctags.html +} diff --git a/dev-util/ctags/files/digest-ctags-5.5-r1 b/dev-util/ctags/files/digest-ctags-5.5-r1 new file mode 100644 index 000000000000..00c0a36e4dff --- /dev/null +++ b/dev-util/ctags/files/digest-ctags-5.5-r1 @@ -0,0 +1 @@ +MD5 87ea63fbab726073b5d1c42701399581 ctags-5.5.tar.gz 241089 |