blob: 2500b3673e369b93d0de013f03e4df581f632ff8 (
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
26
27
28
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/glitter/glitter-1.0-r1.ebuild,v 1.1 2005/01/17 19:45:07 swegener Exp $
inherit eutils
DESCRIPTION="Glitter - a binary downloader for newsgroups"
HOMEPAGE="http://www.mews.org.uk/glitter/"
SRC_URI="http://www.mews.org.uk/glitter/${P}.tar.gz
http://gentoo.mirror.at.stealer.net/files/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND="dev-lang/perl
gnome-base/gnome-libs"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gary-perl58.patch
}
src_install () {
make DESTDIR=${D} install || die "make install failed"
}
|