blob: 9b3e77a3fcc4c010f4fc09c14a8b7e4ddc268cf7 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mr/mr-0.51.ebuild,v 1.1 2010/12/17 10:31:49 tove Exp $
DESCRIPTION="Multiple Repository management tool"
HOMEPAGE="http://kitenet.net/~joey/code/mr/"
SRC_URI="mirror://debian/pool/main/m/${PN}/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}
dev-perl/libwww-perl
dev-perl/HTML-Parser"
S=${WORKDIR}/${PN}
src_install() {
dobin mr webcheckout || die
doman mr.1 webcheckout.1 || die
dodoc README TODO debian/changelog \
mrconfig mrconfig.complex || die
insinto /usr/share/${PN}
doins lib/* || die
}
|