diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2005-12-15 09:09:40 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2005-12-15 09:09:40 +0000 |
commit | 5a27dda25b5b57eec9449bda41948059269c9058 (patch) | |
tree | b793c5bd4c2f47b2fbc6d3b33b6759c65b18c0f8 /x11-plugins/wmbiff/wmbiff-0.4.27.ebuild | |
parent | Stable for x86. (diff) | |
download | historical-5a27dda25b5b57eec9449bda41948059269c9058.tar.gz historical-5a27dda25b5b57eec9449bda41948059269c9058.tar.bz2 historical-5a27dda25b5b57eec9449bda41948059269c9058.zip |
Version bump. Clsoes bug #111051
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'x11-plugins/wmbiff/wmbiff-0.4.27.ebuild')
-rw-r--r-- | x11-plugins/wmbiff/wmbiff-0.4.27.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11-plugins/wmbiff/wmbiff-0.4.27.ebuild b/x11-plugins/wmbiff/wmbiff-0.4.27.ebuild new file mode 100644 index 000000000000..c4cb5a66a775 --- /dev/null +++ b/x11-plugins/wmbiff/wmbiff-0.4.27.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbiff/wmbiff-0.4.27.ebuild,v 1.1 2005/12/15 09:09:40 s4t4n Exp $ + +DESCRIPTION="WMBiff is a dock applet for WindowMaker which can monitor up to 5 mailboxes." +SRC_URI="mirror://sourceforge/wmbiff/${P}.tar.gz" +HOMEPAGE="http://sourceforge.net/projects/wmbiff/" + +DEPEND="virtual/x11 + crypt? ( >=net-libs/gnutls-1.2.3 + >=dev-libs/libgcrypt-1.2.1 )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="crypt" + +src_compile() +{ + local myconf + if ! use crypt; then + myconf="--disable-crypto" + fi + econf ${myconf} || die + emake || die +} + +src_install() +{ + make DESTDIR="${D}" install || die + dodoc ChangeLog FAQ NEWS README README.licq TODO wmbiff/sample.wmbiffrc +} |