blob: 3cfebf4a140b34b1dc36fab559a3c29dbf3bd5b4 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/hxtools/hxtools-20121125.ebuild,v 1.2 2012/11/30 10:10:11 scarabeus Exp $
EAPI=5
DESCRIPTION="A collection of tools and scripts"
HOMEPAGE="http://inai.de/projects/hxtools/"
SRC_URI="http://jftp.inai.de/${PN}/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=sys-libs/libhx-3.12.1"
RDEPEND="${DEPEND}"
src_install() {
default
# man2html is provided by man
rm -rf "${ED}"/usr/bin/man2html
}
|