blob: 31354646b364232e61e7ed1f3a3213f57d6a1945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbmail/bbmail-0.8.2.ebuild,v 1.3 2002/10/04 06:41:59 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="blackbox mail notification"
SRC_URI="http://bbtools.windsofstorm.net/sources/${P}.tar.gz"
HOMEPAGE="http://bbtools.windsofstorm.net/available.phtml#bbmail"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
DEPEND="virtual/blackbox"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dobin scripts/bbmailparsefm.pl
dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README TODO
}
|