blob: dd9511560431182d14c3389685167d84f8e10761 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit autotools
DESCRIPTION="A free application to download issues of Hinduism Today"
HOMEPAGE="http://www.nongnu.org/getht/"
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-libs/libxml2
>=net-misc/curl-7.7.2"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install || die "install failed"
dodoc README
}
|