blob: 734f0e4cff421f83ba72432beb4153bcccd6ae42 (
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
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/udpcast/udpcast-20040222.ebuild,v 1.1 2004/02/28 09:37:05 vapier Exp $
DESCRIPTION="Multicast file transfer tool"
HOMEPAGE="http://udpcast.linux.lu/"
SRC_URI="http://udpcast.linux.lu/current/${P}.tar.gz"
LICENSE="GPL-2 BSD"
SLOT="0"
KEYWORDS="~x86"
DEPEND="virtual/glibc
dev-lang/perl"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
# sed the manpages to only depend on one because the rule that
# builds them makes them both ... however, if we build in parallel,
# the command may be run twice thus clobbering each other
sed -i \
-e 's:/sbin:/bin:' \
-e "/^CFLAGS =/s:$: ${CFLAGS}:" \
-e 's:udp-receiver\.1 udp-sender\.1:udp-receiver.1:' \
Makefile \
|| die "sed failed"
}
src_compile() {
emake || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed"
dodoc Changelog.txt
}
|