blob: e083de8555af4bea62da5e737b2053f65bcbf1f5 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/ignorance/ignorance-1.1.3_beta1.ebuild,v 1.1 2005/04/03 21:14:07 anarchy Exp $
inherit eutils
MY_PV=${P/_beta/beta}
DESCRIPTION="GAIM Advanced Ignore filter"
HOMEPAGE="http://bard.sytes.net/ignorance/"
SRC_URI="http://bard.sytes.net/ignorance/${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND=">=net-im/gaim-1.0.1"
S=${WORKDIR}/${MY_PV}
src_install() {
make install DESTDIR=${D} || die "Install failed"
dodoc ChangeLog INSTALL README AUTHORS
}
|