diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-14 12:27:10 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-11-14 12:27:10 +0000 |
commit | 6a8bacf328c3efebc9192cabce6c60d03d2fd9e3 (patch) | |
tree | 73d46703d166c3a69cf24b9b84b4da175e22b8a2 /kde-misc/tork/files | |
parent | Typo, see bug #154504 (diff) | |
download | historical-6a8bacf328c3efebc9192cabce6c60d03d2fd9e3.tar.gz historical-6a8bacf328c3efebc9192cabce6c60d03d2fd9e3.tar.bz2 historical-6a8bacf328c3efebc9192cabce6c60d03d2fd9e3.zip |
Version bump, add dependency over tsocks (that upstream ships and builds inline), and remove old versions.
Package-Manager: portage-2.1.2_rc1-r6
Diffstat (limited to 'kde-misc/tork/files')
-rw-r--r-- | kde-misc/tork/files/digest-tork-0.11 | 3 | ||||
-rw-r--r-- | kde-misc/tork/files/tork-0.11-external-tsocks.patch | 40 |
2 files changed, 43 insertions, 0 deletions
diff --git a/kde-misc/tork/files/digest-tork-0.11 b/kde-misc/tork/files/digest-tork-0.11 new file mode 100644 index 000000000000..ebfa00863866 --- /dev/null +++ b/kde-misc/tork/files/digest-tork-0.11 @@ -0,0 +1,3 @@ +MD5 21d1a3a3b18734211fce46991b24a882 tork-0.11.tar.bz2 1970291 +RMD160 991c50023826e2b0dd780a8806b9f02b8c5de3d0 tork-0.11.tar.bz2 1970291 +SHA256 7325494586577492a4b66eca01a646bfa70c86844ed9d04486abf4e84107086c tork-0.11.tar.bz2 1970291 diff --git a/kde-misc/tork/files/tork-0.11-external-tsocks.patch b/kde-misc/tork/files/tork-0.11-external-tsocks.patch new file mode 100644 index 000000000000..30e60eec8553 --- /dev/null +++ b/kde-misc/tork/files/tork-0.11-external-tsocks.patch @@ -0,0 +1,40 @@ +Index: tork-0.11/configure.in.in +=================================================================== +--- tork-0.11.orig/configure.in.in ++++ tork-0.11/configure.in.in +@@ -251,7 +251,11 @@ AM_CONDITIONAL([EXTERNAL_GEOIP], [test " + + + ++AC_ARG_WITH(external-tsocks, ++ AC_HELP_STRING([--with-external-tsocks], [Don't build the internal copy of TSocks])) ++AM_CONDITIONAL([EXTERNAL_TSOCKS], [test "x$with_external_tsocks" = "xyes"]) + ++if test "x$with_external_tsocks" != "xyes"; then + + dnl Process this file with autoconf to produce a configure script. + +@@ -624,3 +628,5 @@ SPECIALLIBS=${LIBS} + AC_SUBST(SPECIALLIBS) + LIBS=${SIMPLELIBS} + ++fi ++ +Index: tork-0.11/src/Makefile.am +=================================================================== +--- tork-0.11.orig/src/Makefile.am ++++ tork-0.11/src/Makefile.am +@@ -11,7 +11,12 @@ geoiplib=GeoIP-1.4.0/libGeoIP/libGeoIP.l + geoipdir=GeoIP-1.4.0 + endif + +-SUBDIRS=icons about arkollon $(geoipdir) tsocks . ++if EXTERNAL_TSOCKS ++else ++tsocks=tsocks ++endif ++ ++SUBDIRS=icons about arkollon $(geoipdir) $(tsocks) . + + # set the include path for X, qt and KDE + INCLUDES = $(all_includes) |