blob: f58abe547aa94d85f910e7506476778e50125bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Runs a command as a Unix daemon"
HOMEPAGE="http://www.clapper.org/software/daemonize/"
SRC_URI="http://www.clapper.org/software/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_install() {
dobin "${S}"/${PN}
doman "${S}"/${PN}.1
}
|