# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmail/wmmail-0.64-r4.ebuild,v 1.7 2004/12/10 09:51:40 xuqingkuang@gmail.com Exp $ IUSE="gnustep" 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 amd64 ppc" DEPEND="virtual/x11 x11-libs/libPropList" src_compile() { if use gnustep; then econf --with-appspath=/usr/GNUstep/Local/Applications || die else econf --with-appspath=/usr/lib/GNUstep || die fi emake || die } src_install () { # einstall fails with a sandbox violation make DESTDIR=${D} install dodir /usr/bin if use gnustep; then dosym /usr//GNUstep/Local/Applications/${MY_PN}/WMMail /usr/bin/wmmail else dosym /usr/lib/GNUstep/${MY_PN}/WMMail /usr/bin/wmmail fi dodoc AUTHORS COPYING NEWS README doc/Help.txt newman/wmmail.man wmmail.1 }