summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-07-15 17:55:01 +0000
committerUlrich Müller <ulm@gentoo.org>2011-07-15 17:55:01 +0000
commitbdf9ec0e3e74128fe7ef938f608e7815e384291c (patch)
tree3a54d1547a4323763d6205f3dfac821c51499dfe /app-emacs/vm/vm-8.0.9999.ebuild
parentRemove package for outdated lexbind branch. (diff)
downloademacs-bdf9ec0e3e74128fe7ef938f608e7815e384291c.tar.gz
emacs-bdf9ec0e3e74128fe7ef938f608e7815e384291c.tar.bz2
emacs-bdf9ec0e3e74128fe7ef938f608e7815e384291c.zip
Remove outdated live ebuild.
svn path=/emacs-overlay/; revision=1651
Diffstat (limited to 'app-emacs/vm/vm-8.0.9999.ebuild')
-rw-r--r--app-emacs/vm/vm-8.0.9999.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/app-emacs/vm/vm-8.0.9999.ebuild b/app-emacs/vm/vm-8.0.9999.ebuild
deleted file mode 100644
index a54cd8c..0000000
--- a/app-emacs/vm/vm-8.0.9999.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EBZR_REPO_URI="lp:vm"
-
-inherit elisp eutils bzr autotools
-
-DESCRIPTION="The VM mail reader for Emacs"
-HOMEPAGE="http://www.nongnu.org/viewmail/"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="bbdb ssl"
-
-DEPEND="bbdb? ( app-emacs/bbdb )"
-RDEPEND="${DEPEND}
- ssl? ( net-misc/stunnel )"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_unpack() {
- bzr_src_unpack
- cd "${S}"
-
- if ! use bbdb; then
- elog "Excluding vm-pcrisis.el since the \"bbdb\" USE flag is not set."
- epatch "${FILESDIR}/vm-no-pcrisis.patch"
- fi
-
- eautoreconf
-}
-
-src_compile() {
- econf \
- --with-emacs="emacs" \
- --with-pixmapdir="${SITEETC}/${PN}" \
- $(use bbdb && echo "--with-other-dirs=${SITELISP}/bbdb")
- emake || die "emake failed"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install || die "emake install failed"
- elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
- dodoc NEWS README TODO example.vm || die "dodoc failed"
-}