diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-07-25 15:06:49 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-07-25 15:06:49 +0000 |
commit | 3bed03644d997aba8ff90a7d32bb9dcfd64ebb24 (patch) | |
tree | 0b80d8de823afbca45fa0de721b1d8fd5e0631e8 /app-emacs/vm | |
parent | Initial commit, bug #98094 (diff) | |
download | gentoo-2-3bed03644d997aba8ff90a7d32bb9dcfd64ebb24.tar.gz gentoo-2-3bed03644d997aba8ff90a7d32bb9dcfd64ebb24.tar.bz2 gentoo-2-3bed03644d997aba8ff90a7d32bb9dcfd64ebb24.zip |
Version bump.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'app-emacs/vm')
-rw-r--r-- | app-emacs/vm/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/vm/files/digest-vm-8.0.2.487 | 3 | ||||
-rw-r--r-- | app-emacs/vm/vm-8.0.2.487.ebuild | 47 |
3 files changed, 56 insertions, 1 deletions
diff --git a/app-emacs/vm/ChangeLog b/app-emacs/vm/ChangeLog index bcf33ead5bab..17bb35b8dc22 100644 --- a/app-emacs/vm/ChangeLog +++ b/app-emacs/vm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/vm # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.34 2007/07/14 12:18:22 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.35 2007/07/25 15:06:49 ulm Exp $ + +*vm-8.0.2.487 (25 Jul 2007) + + 25 Jul 2007; Ulrich Mueller <ulm@gentoo.org> +vm-8.0.2.487.ebuild: + Version bump. DESTDIR is supported now. 14 Jul 2007; Ulrich Mueller <ulm@gentoo.org> vm-8.0.1.465.ebuild: Use "emake -j1 install" to guarantee that the installed .elc files have a diff --git a/app-emacs/vm/files/digest-vm-8.0.2.487 b/app-emacs/vm/files/digest-vm-8.0.2.487 new file mode 100644 index 000000000000..e64393392275 --- /dev/null +++ b/app-emacs/vm/files/digest-vm-8.0.2.487 @@ -0,0 +1,3 @@ +MD5 1829a2e8296f681ac5414f11013c34f9 vm-8.0.2-487.tgz 536869 +RMD160 f4c13d135dc79ee5f31d4c1000b88d831928e591 vm-8.0.2-487.tgz 536869 +SHA256 5fa6d10596ec28d1a0db035c75ac724e4942744551ed708247983d9c150b24d9 vm-8.0.2-487.tgz 536869 diff --git a/app-emacs/vm/vm-8.0.2.487.ebuild b/app-emacs/vm/vm-8.0.2.487.ebuild new file mode 100644 index 000000000000..d3850fe9b5d9 --- /dev/null +++ b/app-emacs/vm/vm-8.0.2.487.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/vm-8.0.2.487.ebuild,v 1.1 2007/07/25 15:06:49 ulm Exp $ + +inherit elisp eutils versionator + +VM_PV=$(replace_version_separator 3 '-') +VM_P=${PN}-${VM_PV} + +DESCRIPTION="The VM mail reader for Emacs" +HOMEPAGE="http://www.nongnu.org/viewmail/" +SRC_URI="http://download.savannah.nongnu.org/releases/viewmail/${VM_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="bbdb" + +DEPEND="bbdb? ( app-emacs/bbdb )" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${VM_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + + 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 +} + +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" +} |