1 |
# Copyright 1999-2004 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/rdist/rdist-6.1.5.ebuild,v 1.9 2004/07/15 03:23:10 agriffis Exp $ |
4 |
|
5 |
DESCRIPTION="Remote software distribution system" |
6 |
HOMEPAGE="http://www.magnicomp.com/rdist/rdist.shtml" |
7 |
SRC_URI="http://www.magnicomp.com/download/rdist/${P}.tar.gz" |
8 |
|
9 |
LICENSE="RDist" |
10 |
SLOT="1" |
11 |
KEYWORDS="x86 sparc " |
12 |
IUSE="" |
13 |
|
14 |
DEPEND="sys-devel/bison" |
15 |
RDEPEND="" # bison only needed for compile |
16 |
|
17 |
src_compile() { |
18 |
emake YACC="bison -y" || die "emake failed" |
19 |
} |
20 |
|
21 |
src_install() { |
22 |
dodir /usr/bin /usr/share/man/man{1,8} |
23 |
make install BIN_DIR=${D}/usr/bin || die "make install failed" |
24 |
make install.man \ |
25 |
MAN_1_DIR=${D}/usr/share/man/man1 MAN_8_DIR=${D}/usr/share/man/man8 \ |
26 |
|| die "make install.man failed" |
27 |
} |