blob: ac2be540576f62ee878438ddfe72791a1bbf904f (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
# revision 1434 on 2012-04-30 is the last ldminfod change in the ldm trunk
EBZR_REVISION="1434"
EBZR_REPO_URI="http://bazaar.launchpad.net/~ltsp-upstream/ltsp/ldm-trunk"
inherit bzr
DESCRIPTION="LTSP Display Manager Daemon"
HOMEPAGE="http://www.ltsp.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND} sys-apps/xinetd"
src_unpack() {
bzr_src_unpack
}
src_install() {
dosbin ldminfod/ldminfod
insinto /etc/xinetd.d
doins ldminfod/xinetd.d/*
doman ldminfod/doc/ldminfod.8
}
|