blob: 5a121ab9038f492edfbb06cf2034cfc1f2c42d8d (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-news/glitter/glitter-1.0-r1.ebuild,v 1.7 2004/07/14 20:57:35 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"
}
|