blob: 9bcd1fede2aa98330f5e15e7ea4dc793968526ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DESCRIPTION="A submitter for gnopaste, a nopaste service like http://nopaste.info"
HOMEPAGE="http://gnopaste.sf.net"
SRC_URI="mirror://sourceforge/gnopaste/${P}.pl.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="dev-lang/perl
dev-perl/libwww-perl
dev-perl/Config-Simple"
src_install() {
dobin ${WORKDIR}/${P}.pl
dosym ${P}.pl /usr/bin/${PN}
}
|