diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-04-03 17:15:40 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-04-03 17:15:40 +0000 |
commit | e9a39e56fabf720f56c0e637a45df626d879f9d5 (patch) | |
tree | 5fcce165b8541c804fc7e6507c0ec66d440b6b0c /app-emacs | |
parent | Add ~amd64 (diff) | |
download | gentoo-2-e9a39e56fabf720f56c0e637a45df626d879f9d5.tar.gz gentoo-2-e9a39e56fabf720f56c0e637a45df626d879f9d5.tar.bz2 gentoo-2-e9a39e56fabf720f56c0e637a45df626d879f9d5.zip |
Remove intermediate revision.
(Portage version: 2.2_rc28/cvs/Linux i686)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/vm/ChangeLog | 5 | ||||
-rw-r--r-- | app-emacs/vm/vm-8.0.12-r1.ebuild | 52 |
2 files changed, 4 insertions, 53 deletions
diff --git a/app-emacs/vm/ChangeLog b/app-emacs/vm/ChangeLog index 66576d7c4273..24428401b19c 100644 --- a/app-emacs/vm/ChangeLog +++ b/app-emacs/vm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/vm # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.63 2009/04/03 16:53:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.64 2009/04/03 17:15:40 ulm Exp $ + + 03 Apr 2009; Ulrich Mueller <ulm@gentoo.org> -vm-8.0.12-r1.ebuild: + Remove intermediate revision. 03 Apr 2009; Raúl Porcel <armin76@gentoo.org> vm-8.0.12-r2.ebuild: alpha/x86 stable wrt #256837 diff --git a/app-emacs/vm/vm-8.0.12-r1.ebuild b/app-emacs/vm/vm-8.0.12-r1.ebuild deleted file mode 100644 index d4c558cbc187..000000000000 --- a/app-emacs/vm/vm-8.0.12-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/vm-8.0.12-r1.ebuild,v 1.1 2008/11/09 18:24:02 ulm Exp $ - -inherit elisp eutils - -DESCRIPTION="The VM mail reader for Emacs" -HOMEPAGE="http://www.nongnu.org/viewmail/" -SRC_URI="http://download.savannah.nongnu.org/releases/viewmail/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~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() { - unpack ${A} - cd "${S}" - - # add autoload token for vm-decode-postponed-mime-message, bug 246185 - epatch "${FILESDIR}/${P}-autoload-vm-pine.patch" - - if ! use bbdb; then - elog "Excluding vm-pcrisis.el since the \"bbdb\" USE flag is not set." - epatch "${FILESDIR}/vm-8.0-no-pcrisis.patch" - fi - - # fix vm-version, bug 235563 - #sed -i -e "/^(defvar vm-version /s/nil/\"${PV}\"/" lisp/vm-version.el \ - # || die "sed failed" -} - -src_compile() { - local myconf - use bbdb && myconf="--with-other-dirs=${SITELISP}/bbdb" - econf --with-emacs="emacs" \ - --with-pixmapdir="/usr/share/pixmaps/vm" \ - ${myconf} || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake -j1 DESTDIR="${D}" install || die "emake install failed" - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - dodoc NEWS README TODO example.vm || die "dodoc failed" -} |