blob: 577112b57b4326fc02d72321a30a1954d7f00442 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EGIT_REPO_URI="git://git.agaffney.org/quickstart.git"
inherit eutils git
DESCRIPTION="Quickstart automated installer"
HOMEPAGE="http://agaffney.org/quickstart.php"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="tftp"
RDEPEND="tftp? ( net-ftp/tftp-hpa )"
src_install() {
qsdir=/usr/share/quickstart
insinto ${qsdir}/modules
doins modules/*
exeinto ${qsdir}
doexe quickstart
exeinto ${qsdir}/server
doexe server/quickstartd.pl
make_wrapper quickstart ./quickstart ${qsdir}
make_wrapper quickstartd ./quickstartd.pl ${qsdir}/server
dodoc doc/*
}
|