blob: 3771c56e0708f06fe942bc57e0c1bd188ba46b2c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/httrack/httrack-3.43.9.ebuild,v 1.1 2010/06/09 01:40:35 vanquirius Exp $
inherit versionator
MY_P="${PN}-$(replace_version_separator 2 '-' )C"
DESCRIPTION="HTTrack Website Copier, Open Source Offline Browser"
HOMEPAGE="http://www.httrack.com/"
SRC_URI="http://www.httrack.com/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE=""
src_compile() {
econf || die
# won't compile in parallel
emake -j1 || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS README greetings.txt history.txt
dohtml httrack-doc.html
}
|