diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-24 07:51:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-24 07:51:44 +0000 |
commit | 55e267e0270aea1571fb1654a338f53b16cd3363 (patch) | |
tree | a972ae4ecb903e85cfb6673875d485fac59e16a6 /dev-util | |
parent | Little path fix, see also bug #45446. Cleaning up. (Manifest recommit) (diff) | |
download | gentoo-2-55e267e0270aea1571fb1654a338f53b16cd3363.tar.gz gentoo-2-55e267e0270aea1571fb1654a338f53b16cd3363.tar.bz2 gentoo-2-55e267e0270aea1571fb1654a338f53b16cd3363.zip |
don't set DEPEND=RDEPEND (bug #45343); tidy
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/ctags/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/ctags/ctags-5.2.3.ebuild | 17 | ||||
-rw-r--r-- | dev-util/ctags/ctags-5.5-r1.ebuild | 12 | ||||
-rw-r--r-- | dev-util/ctags/ctags-5.5.ebuild | 15 |
4 files changed, 29 insertions, 21 deletions
diff --git a/dev-util/ctags/ChangeLog b/dev-util/ctags/ChangeLog index 2f61d15e0995..0eadd82cedd5 100644 --- a/dev-util/ctags/ChangeLog +++ b/dev-util/ctags/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/ctags # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.15 2004/03/14 19:32:47 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ChangeLog,v 1.16 2004/03/24 07:51:44 mr_bones_ Exp $ + + 23 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> ctags-5.2.3.ebuild, + ctags-5.5-r1.ebuild, ctags-5.5.ebuild: + don't set DEPEND=RDEPEND (bug #45343); tidy 14 Mar 2004; Tom Gall <tgall@gentoo.org> ctags-5.5-r1.ebuild: mark ppc64 stable diff --git a/dev-util/ctags/ctags-5.2.3.ebuild b/dev-util/ctags/ctags-5.2.3.ebuild index d2697460c2d7..c3724473509a 100644 --- a/dev-util/ctags/ctags-5.2.3.ebuild +++ b/dev-util/ctags/ctags-5.2.3.ebuild @@ -1,16 +1,18 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.2.3.ebuild,v 1.9 2004/03/13 01:41:17 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.2.3.ebuild,v 1.10 2004/03/24 07:51:44 mr_bones_ 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" +SRC_URI="mirror://sourceforge/ctags/${P}.tar.gz" -DEPEND="${RDEPEND}" -SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc " +SLOT="0" +KEYWORDS="x86 ppc sparc" +IUSE="" + +DEPEND="virtual/glibc" src_compile() { econf \ @@ -18,11 +20,12 @@ src_compile() { --without-readlib \ --disable-etags || die - emake || die + emake || die "emake failed" } src_install () { - make prefix=${D}/usr mandir=${D}/usr/share/man install || die + make prefix=${D}/usr mandir=${D}/usr/share/man install \ + || die "make install 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 ${D}/usr/bin/exuberant-ctags diff --git a/dev-util/ctags/ctags-5.5-r1.ebuild b/dev-util/ctags/ctags-5.5-r1.ebuild index e27ecd3aa451..9a9582c148b7 100644 --- a/dev-util/ctags/ctags-5.5-r1.ebuild +++ b/dev-util/ctags/ctags-5.5-r1.ebuild @@ -1,18 +1,18 @@ # Copyright 1999-2004 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.10 2004/03/14 19:32:47 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.5-r1.ebuild,v 1.11 2004/03/24 07:51:44 mr_bones_ 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" +SRC_URI="mirror://sourceforge/ctags/${P}.tar.gz" -DEPEND="${RDEPEND}" - -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="amd64 alpha x86 ~ppc sparc mips hppa ia64 ppc64" IUSE="" +DEPEND="virtual/glibc" + src_compile() { econf \ --with-posix-regex \ @@ -30,6 +30,6 @@ src_install () { mv ${D}/usr/bin/{ctags,exuberant-ctags} mv ${D}/usr/share/man/man1/{ctags,exuberant-ctags}.1 - dodoc COPYING FAQ NEWS README + dodoc FAQ NEWS README dohtml EXTENDING.html ctags.html } diff --git a/dev-util/ctags/ctags-5.5.ebuild b/dev-util/ctags/ctags-5.5.ebuild index 346553021f43..dadc620d1537 100644 --- a/dev-util/ctags/ctags-5.5.ebuild +++ b/dev-util/ctags/ctags-5.5.ebuild @@ -1,30 +1,31 @@ # Copyright 1999-2004 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.ebuild,v 1.4 2004/03/13 01:41:17 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ctags/ctags-5.5.ebuild,v 1.5 2004/03/24 07:51:44 mr_bones_ 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}" +SRC_URI="mirror://sourceforge/ctags/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ~ppc ~sparc" IUSE="" +DEPEND="${RDEPEND}" + src_compile() { econf --with-posix-regex --without-readlib --disable-etags || die - emake || die + emake || die "emake failed" } src_install () { - make prefix=${D}/usr mandir=${D}/usr/share/man install || die + make prefix=${D}/usr mandir=${D}/usr/share/man install \ + || die "make install 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 ${D}/usr/bin/exuberant-ctags mv ${D}/usr/share/man/man1/ctags.1 ${D}/usr/share/man/man1/exuberant-ctags.1 - dodoc COPYING FAQ NEWS README + dodoc FAQ NEWS README dohtml EXTENDING.html ctags.html } |