2008-07-26 00:36:33 +02:00
|
|
|
# Copyright 1999-2008 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="inoticoming is a daemon to watch a directory with Linux's inotify"
|
|
|
|
SRC_URI="mirror://debian/pool/main/i/${PN}/${PN}_${PV}.orig.tar.gz
|
2008-07-30 23:16:47 +02:00
|
|
|
http://alioth.debian.org/frs/download.php/2489/${PN}_${PV}.orig.tar.gz"
|
2008-07-26 00:36:33 +02:00
|
|
|
HOMEPAGE="http://alioth.debian.org/projects/mirrorer/"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
KEYWORDS="~x86 -ppc -sparc -alpha"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
enewgroup ${PN}
|
|
|
|
enewuser ${PN} -1 -1 -1 ${PN}
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2008-07-30 23:16:47 +02:00
|
|
|
emake DESTDIR="${D}" install
|
2008-07-30 23:15:04 +02:00
|
|
|
newinitd "${FILESDIR}"/inoticoming.initd inoticoming
|
|
|
|
newconfd "${FILESDIR}"/inoticoming.confd inoticoming
|
2008-07-26 00:36:33 +02:00
|
|
|
keepdir /var/spool/incoming
|
|
|
|
}
|