diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-03-30 15:20:14 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-03-30 15:20:14 +0000 |
commit | b1e6af0506c8babed1dbdb87109224683b9ac949 (patch) | |
tree | 8cdbeeaf61a7aae7ff5bfc19b85113d2f3dbbf23 /app-emacs/cedet/cedet-1.0_beta3.ebuild | |
parent | New version fixes a security hole in the zlib plugin. (diff) | |
download | gentoo-2-b1e6af0506c8babed1dbdb87109224683b9ac949.tar.gz gentoo-2-b1e6af0506c8babed1dbdb87109224683b9ac949.tar.bz2 gentoo-2-b1e6af0506c8babed1dbdb87109224683b9ac949.zip |
clean up
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-emacs/cedet/cedet-1.0_beta3.ebuild')
-rw-r--r-- | app-emacs/cedet/cedet-1.0_beta3.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/app-emacs/cedet/cedet-1.0_beta3.ebuild b/app-emacs/cedet/cedet-1.0_beta3.ebuild deleted file mode 100644 index 7db08024a819..000000000000 --- a/app-emacs/cedet/cedet-1.0_beta3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/cedet/cedet-1.0_beta3.ebuild,v 1.8 2005/04/24 10:59:51 hansmi Exp $ - -inherit elisp - -MY_SUBPV=a -MY_PV=${PV:0:3}${PV:4:5}${MY_SUBPV} - -IUSE="" -DESCRIPTION="CEDET: Collection of Emacs Development Tools" -HOMEPAGE="http://cedet.sourceforge.net/" -SRC_URI="mirror://sourceforge/cedet/${PN}-${MY_PV}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc amd64" -DEPEND="virtual/emacs - !app-emacs/semantic - !app-emacs/eieio - !app-emacs/speedbar" - -S="${WORKDIR}/${PN}-${MY_PV}" - -SITEFILE="60cedet-gentoo.el" - -src_compile() { - make EMACS=/usr/bin/emacs || die -} - -src_install() { - dodir /usr/share/emacs/site-lisp/cedet - tar --create --verbose \ - --exclude=Makefile \ - --exclude=\*texi \ - --exclude=\*info\* \ - --exclude=README \ - --exclude=INSTALL \ - --exclude=\*NEWS \ - --exclude=ChangeLog \ - --exclude=\*~ \ - . | tar --extract --directory ${D}/usr/share/emacs/site-lisp/cedet/ - dodoc INSTALL - doinfo `find . -type f -name \*.info\*` - # The following finds documentation in sub-directories and flattens - # the path names for dodoc - mkdir docs || true - find . -type f \( -name ChangeLog -o -name README -o -name AUTHORS -o -name \*NEWS \) -print \ - | sed -e 's,^./\(.*\)/\(.*\),cp \0 docs/\2.\1,g' \ - | sh -x - dodoc docs/* - elisp-site-file-install ${FILESDIR}/${SITEFILE} -} |