blob: 8c3356b74ee6d715084151dd4ee4224b9e0cb937 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/udpcast/udpcast-20090920.ebuild,v 1.4 2009/11/21 19:40:48 maekke Exp $
EAPI=2
DESCRIPTION="Multicast file transfer tool"
HOMEPAGE="http://udpcast.linux.lu/"
SRC_URI="http://udpcast.linux.lu/download/${P}.tar.bz2"
LICENSE="GPL-2 BSD"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="dev-lang/perl"
src_prepare() {
sed -i \
-e "/^LDFLAGS +=-s/d" \
Makefile.in || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc *.txt
}
|