blob: 8d68c6254abaf5e7c6a2dc3fc12a872e08e98546 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/spread/spread-3.17.3.ebuild,v 1.2 2006/01/05 22:21:12 caleb Exp $
inherit eutils
MY_PN="spread-src"
DESCRIPTION="Distributed network messaging system"
HOMEPAGE="http://www.spread.org"
SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.gz"
LICENSE="Spread-1.0"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/${MY_PN}-${PV}"
src_compile()
{
econf || die
emake || die
dodir /var/run/spread
enewuser spread
enewgroup spread
}
src_install() {
make DESTDIR=${D} install || die
}
|