blob: 34b667f550d4bdf3c2a8803577b8b2888a970203 (
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
32
33
34
35
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="qmqtool is a qmail queue manipulation program"
HOMEPAGE="http://jeremy.kister.net/code/qmqtool/"
SRC_URI="http://jeremy.kister.net/code/qmqtool/${PN}-current.tgz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="virtual/qmail
dev-lang/perl"
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/qmqtool-perlpath.patch"
}
src_install() {
dodoc README FAQ ChangeLog
docinto contrib/argus
dodoc contrib/argus/*
docinto contrib/cricket
dodoc contrib/cricket/*
dobin qmqtool
}
|