diff options
author | Sebastian Pipping <sping@gentoo.org> | 2014-05-29 16:08:18 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2014-05-29 16:08:18 +0000 |
commit | d7157d2f8f82d8b9d6faf1bef405b9d6c5efc0f0 (patch) | |
tree | 3e92fd098ad521f87a2d342d7eb790958be0956a /www-client | |
parent | version bump, CVE-2014-0177 (bug #511788) (diff) | |
download | gentoo-2-d7157d2f8f82d8b9d6faf1bef405b9d6c5efc0f0.tar.gz gentoo-2-d7157d2f8f82d8b9d6faf1bef405b9d6c5efc0f0.tar.bz2 gentoo-2-d7157d2f8f82d8b9d6faf1bef405b9d6c5efc0f0.zip |
www-client/httrack: 3.48.9
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/httrack/ChangeLog | 9 | ||||
-rw-r--r-- | www-client/httrack/httrack-3.48.9.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/www-client/httrack/ChangeLog b/www-client/httrack/ChangeLog index 85833a82f16c..9493fd0eb357 100644 --- a/www-client/httrack/ChangeLog +++ b/www-client/httrack/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-client/httrack -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/httrack/ChangeLog,v 1.63 2013/09/21 23:43:40 sping Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/httrack/ChangeLog,v 1.64 2014/05/29 16:08:18 sping Exp $ + +*httrack-3.48.9 (29 May 2014) + + 29 May 2014; Sebastian Pipping <sping@gentoo.org> +httrack-3.48.9.ebuild: + Bump to 3.48.9 *httrack-3.47.27 (21 Sep 2013) diff --git a/www-client/httrack/httrack-3.48.9.ebuild b/www-client/httrack/httrack-3.48.9.ebuild new file mode 100644 index 000000000000..55203d9b1e21 --- /dev/null +++ b/www-client/httrack/httrack-3.48.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/httrack/httrack-3.48.9.ebuild,v 1.1 2014/05/29 16:08:18 sping Exp $ + +EAPI="4" + +DESCRIPTION="HTTrack Website Copier, Open Source Offline Browser" +HOMEPAGE="http://www.httrack.com/" +SRC_URI="http://mirror.httrack.com/historical/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="static-libs" + +RDEPEND=">=sys-libs/zlib-1.2.5.1-r1 + dev-libs/openssl" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS README greetings.txt history.txt ) + +src_configure() { + econf $(use_enable static-libs static) \ + --docdir=/usr/share/doc/${PF} \ + --htmldir=/usr/share/doc/${PF}/html +} + +src_install() { + default + find "${ED}" -type f -name '*.la' -delete || die +} |