diff options
author | Rob Holland <robh@gentoo.org> | 2003-06-05 00:38:57 +0000 |
---|---|---|
committer | Rob Holland <robh@gentoo.org> | 2003-06-05 00:38:57 +0000 |
commit | bb4cfb490833348a7cb8da759aa35d0db3bb2dda (patch) | |
tree | d4a5fccc8a45180028b5f05a87b9dd8789b8241f /x11-plugins/wmmail/wmmail-0.64-r3.ebuild | |
parent | fixed /usr/share/GNUstep sillyness. (diff) | |
download | gentoo-2-bb4cfb490833348a7cb8da759aa35d0db3bb2dda.tar.gz gentoo-2-bb4cfb490833348a7cb8da759aa35d0db3bb2dda.tar.bz2 gentoo-2-bb4cfb490833348a7cb8da759aa35d0db3bb2dda.zip |
fixed /usr/share/GNUstep sillyness.
Diffstat (limited to 'x11-plugins/wmmail/wmmail-0.64-r3.ebuild')
-rw-r--r-- | x11-plugins/wmmail/wmmail-0.64-r3.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/x11-plugins/wmmail/wmmail-0.64-r3.ebuild b/x11-plugins/wmmail/wmmail-0.64-r3.ebuild new file mode 100644 index 000000000000..be4c327a952e --- /dev/null +++ b/x11-plugins/wmmail/wmmail-0.64-r3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmail/wmmail-0.64-r3.ebuild,v 1.1 2003/06/05 00:35:55 robh Exp $ + +MY_PN=WMMail.app +MY_P=${MY_PN}-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Mail checking dock applet for WindowMaker (mbox, POP3, IMAP, mh, and MailDir)" +HOMEPAGE="http://www.eecg.toronto.edu/cgi-bin/cgiwrap/chanb/index.cgi?wmmail" +SRC_URI="http://www.eecg.utoronto.ca/~chanb/${MY_PN}/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc" + +DEPEND="virtual/x11 + x11-libs/libPropList" + +src_compile() { + econf --with-appspath=/usr/lib/GNUstep || die + emake || die +} + +src_install () { + # einstall fails with a sandbox violation + make DESTDIR=${D} install + dodir /usr/bin + dosym /usr/lib/GNUstep/${MY_PN}/WMMail /usr/bin/wmmail + dodoc AUTHORS COPYING NEWS README doc/Help.txt + newman/wmmail.man wmmail.1 +} |