[arch-commits] Commit in httrack/repos (6 files)
Jelle van der Waa
jelle at archlinux.org
Fri Mar 3 20:55:22 UTC 2017
Date: Friday, March 3, 2017 @ 20:55:21
Author: jelle
Revision: 214708
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
httrack/repos/community-staging-i686/
httrack/repos/community-staging-i686/514c308ec71074228e7a32356646a7ea18576377.patch
(from rev 214707, httrack/trunk/514c308ec71074228e7a32356646a7ea18576377.patch)
httrack/repos/community-staging-i686/PKGBUILD
(from rev 214707, httrack/trunk/PKGBUILD)
httrack/repos/community-staging-x86_64/
httrack/repos/community-staging-x86_64/514c308ec71074228e7a32356646a7ea18576377.patch
(from rev 214707, httrack/trunk/514c308ec71074228e7a32356646a7ea18576377.patch)
httrack/repos/community-staging-x86_64/PKGBUILD
(from rev 214707, httrack/trunk/PKGBUILD)
-------------------------------------------------------------------------+
community-staging-i686/514c308ec71074228e7a32356646a7ea18576377.patch | 22 +++++
community-staging-i686/PKGBUILD | 42 ++++++++++
community-staging-x86_64/514c308ec71074228e7a32356646a7ea18576377.patch | 22 +++++
community-staging-x86_64/PKGBUILD | 42 ++++++++++
4 files changed, 128 insertions(+)
Copied: httrack/repos/community-staging-i686/514c308ec71074228e7a32356646a7ea18576377.patch (from rev 214707, httrack/trunk/514c308ec71074228e7a32356646a7ea18576377.patch)
===================================================================
--- community-staging-i686/514c308ec71074228e7a32356646a7ea18576377.patch (rev 0)
+++ community-staging-i686/514c308ec71074228e7a32356646a7ea18576377.patch 2017-03-03 20:55:21 UTC (rev 214708)
@@ -0,0 +1,22 @@
+From 514c308ec71074228e7a32356646a7ea18576377 Mon Sep 17 00:00:00 2001
+From: Xavier Roche <roche at httrack.com>
+Date: Sun, 26 Jun 2016 14:26:37 +0200
+Subject: [PATCH] Fixed FTBFS with openssl 1.1.0
+
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 3f43580..4268cb9 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -160,7 +160,7 @@ AC_CHECK_LIB(crypto, EVP_get_digestbyname,
+ ]
+ )
+ LIBS="$LIBS $OPENSSL_LIBS"
+-AC_CHECK_LIB(ssl, SSL_library_init,
++AC_CHECK_LIB(ssl, SSL_CTX_new,
+ [
+ OPENSSL_LIBS="$OPENSSL_LIBS -lssl"
+ AC_DEFINE(HTS_USEOPENSSL, 1, [Check for OpenSSL])
Copied: httrack/repos/community-staging-i686/PKGBUILD (from rev 214707, httrack/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-03 20:55:21 UTC (rev 214708)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Marcos Heredia <chelqo at gmail.com>
+# Contributor: Joris Steyn <jorissteyn at gmail.com>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: Roman Kyrylych <roman at archlinux.org>
+# Contributor: orelien <aurelien.foret at wanadoo.fr>
+# Contributor: Muflone <webreg at vbsimple.net>
+
+pkgname=httrack
+pkgver=3.48.22
+pkgrel=3
+pkgdesc="An easy-to-use offline browser utility"
+arch=('i686' 'x86_64')
+url="http://www.httrack.com/"
+license=('GPL3')
+depends=('bash' 'xdg-utils' 'hicolor-icon-theme' 'openssl')
+source=(http://mirror.httrack.com/historical/$pkgname-$pkgver.tar.gz{,.asc} 514c308ec71074228e7a32356646a7ea18576377.patch)
+validpgpkeys=('BB71C7E6CB1AD8FAF53FE42A60C3AA7180598EFB') # Xavier Roche
+sha256sums=('b2831ad7b48e933959f83a9de8a72bcaa0f8eb87e9453ad85debd50d33a9c48f'
+ 'SKIP'
+ '8c5129ed281a6468238d09f83c2fe5fe8a6e77bc7998d119eb40b8034ff95307')
+
+prepare() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ patch -Np1 -i $srcdir/514c308ec71074228e7a32356646a7ea18576377.patch
+ autoconf -i
+
+}
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-static=no
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ make DESTDIR="${pkgdir}" install
+}
Copied: httrack/repos/community-staging-x86_64/514c308ec71074228e7a32356646a7ea18576377.patch (from rev 214707, httrack/trunk/514c308ec71074228e7a32356646a7ea18576377.patch)
===================================================================
--- community-staging-x86_64/514c308ec71074228e7a32356646a7ea18576377.patch (rev 0)
+++ community-staging-x86_64/514c308ec71074228e7a32356646a7ea18576377.patch 2017-03-03 20:55:21 UTC (rev 214708)
@@ -0,0 +1,22 @@
+From 514c308ec71074228e7a32356646a7ea18576377 Mon Sep 17 00:00:00 2001
+From: Xavier Roche <roche at httrack.com>
+Date: Sun, 26 Jun 2016 14:26:37 +0200
+Subject: [PATCH] Fixed FTBFS with openssl 1.1.0
+
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 3f43580..4268cb9 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -160,7 +160,7 @@ AC_CHECK_LIB(crypto, EVP_get_digestbyname,
+ ]
+ )
+ LIBS="$LIBS $OPENSSL_LIBS"
+-AC_CHECK_LIB(ssl, SSL_library_init,
++AC_CHECK_LIB(ssl, SSL_CTX_new,
+ [
+ OPENSSL_LIBS="$OPENSSL_LIBS -lssl"
+ AC_DEFINE(HTS_USEOPENSSL, 1, [Check for OpenSSL])
Copied: httrack/repos/community-staging-x86_64/PKGBUILD (from rev 214707, httrack/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2017-03-03 20:55:21 UTC (rev 214708)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Marcos Heredia <chelqo at gmail.com>
+# Contributor: Joris Steyn <jorissteyn at gmail.com>
+# Contributor: speps <speps at aur dot archlinux dot org>
+# Contributor: Roman Kyrylych <roman at archlinux.org>
+# Contributor: orelien <aurelien.foret at wanadoo.fr>
+# Contributor: Muflone <webreg at vbsimple.net>
+
+pkgname=httrack
+pkgver=3.48.22
+pkgrel=3
+pkgdesc="An easy-to-use offline browser utility"
+arch=('i686' 'x86_64')
+url="http://www.httrack.com/"
+license=('GPL3')
+depends=('bash' 'xdg-utils' 'hicolor-icon-theme' 'openssl')
+source=(http://mirror.httrack.com/historical/$pkgname-$pkgver.tar.gz{,.asc} 514c308ec71074228e7a32356646a7ea18576377.patch)
+validpgpkeys=('BB71C7E6CB1AD8FAF53FE42A60C3AA7180598EFB') # Xavier Roche
+sha256sums=('b2831ad7b48e933959f83a9de8a72bcaa0f8eb87e9453ad85debd50d33a9c48f'
+ 'SKIP'
+ '8c5129ed281a6468238d09f83c2fe5fe8a6e77bc7998d119eb40b8034ff95307')
+
+prepare() {
+ cd "${srcdir}"/$pkgname-$pkgver
+ patch -Np1 -i $srcdir/514c308ec71074228e7a32356646a7ea18576377.patch
+ autoconf -i
+
+}
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr --enable-static=no
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ make DESTDIR="${pkgdir}" install
+}
More information about the arch-commits
mailing list