2018-05-02 16:04:02 +03:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2018-05-02 16:04:02 +03:00
|
|
|
EAPI=0
|
|
|
|
|
2012-02-06 16:39:49 +04:00
|
|
|
DESCRIPTION="A perl implementation of the tree(1) program"
|
|
|
|
HOMEPAGE="http://freshmeat.net/projects/ddir"
|
|
|
|
SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="dev-lang/perl"
|
|
|
|
|
|
|
|
src_compile() { :; }
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
newbin bin/ddir.pl ddir || die
|
|
|
|
doman bin/ddir.1
|
|
|
|
dodoc ChangeLog doc/manual/*.txt README
|
|
|
|
dohtml doc/manual/*.html
|
|
|
|
}
|