blob: a42898d90506b98522565ed26054bff7f8b59504 (
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: /var/cvsroot/gentoo-x86/net-mail/popick/popick-0.1.ebuild,v 1.4 2006/02/13 14:58:10 mcummings Exp $
inherit eutils
DESCRIPTION="A POP3 mailbox deleter that allows you to interactively specify regular expressions to match the message headers, and delete matching messages."
HOMEPAGE="http://www.topfx.com"
SRC_URI="http://www.topfx.com/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/perl
dev-perl/Curses-UI
virtual/perl-Getopt-Long"
src_unpack() {
unpack ${A}
cd ${S}
mv popick.pl popick || die "Renaming popick.pl to popick"
sed -i -e 's:/usr/local:/usr:g' $(grep -rl /usr/local *) || die "sed /usr/local failed"
}
src_compile() {
# No compiling needed :)
pod2man popick > popick.1 || die "Generating manpage failed"
}
src_install() {
dobin popick
doman popick.1
}
|