diff options
Diffstat (limited to 'www-client/httrack/httrack-3.43.4.ebuild')
-rw-r--r-- | www-client/httrack/httrack-3.43.4.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/www-client/httrack/httrack-3.43.4.ebuild b/www-client/httrack/httrack-3.43.4.ebuild new file mode 100644 index 000000000000..001df515d748 --- /dev/null +++ b/www-client/httrack/httrack-3.43.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/httrack/httrack-3.43.4.ebuild,v 1.1 2009/05/17 02:02:00 vanquirius Exp $ + +inherit versionator + +MY_P="${PN}-$(replace_version_separator 2 '-' )" +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" +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 +} |