diff options
Diffstat (limited to 'app-emacs/vm/vm-8.0.2.487.ebuild')
-rw-r--r-- | app-emacs/vm/vm-8.0.2.487.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
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" +} |