OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.4 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../libgcrypt/add-pkgconfig-support.patch
  5. # Copyright (C) 2013 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. Upstream-Status: Inappropriate [distribution]
  17. Index: libgcrypt-1.2.4/configure.ac
  18. ===================================================================
  19. --- libgcrypt-1.2.4.orig/configure.ac 2008-03-19 22:14:50.000000000 +0000
  20. +++ libgcrypt-1.2.4/configure.ac 2008-03-19 22:14:58.000000000 +0000
  21. @@ -807,6 +807,7 @@
  22. doc/Makefile
  23. src/Makefile
  24. src/gcrypt.h
  25. +src/libgcrypt.pc
  26. src/libgcrypt-config
  27. tests/Makefile
  28. w32-dll/Makefile
  29. Index: libgcrypt-1.2.4/src/libgcrypt.pc.in
  30. ===================================================================
  31. --- /dev/null 1970-01-01 00:00:00.000000000 +0000
  32. +++ libgcrypt-1.2.4/src/libgcrypt.pc.in 2008-03-19 22:14:58.000000000 +0000
  33. @@ -0,0 +1,32 @@
  34. +# Process this file with autoconf to produce a pkg-config metadata file.
  35. +# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation
  36. +# Author: Simon Josefsson
  37. +#
  38. +# This file is free software; as a special exception the author gives
  39. +# unlimited permission to copy and/or distribute it, with or without
  40. +# modifications, as long as this notice is preserved.
  41. +#
  42. +# This file is distributed in the hope that it will be useful, but
  43. +# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  44. +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  45. +
  46. +prefix=@prefix@
  47. +exec_prefix=@exec_prefix@
  48. +libdir=@libdir@
  49. +includedir=@includedir@
  50. +
  51. +# API info
  52. +api_version=@LIBGCRYPT_CONFIG_API_VERSION@
  53. +
  54. +# Misc information.
  55. +symmetric_ciphers=@LIBGCRYPT_CIPHERS@
  56. +asymmetric_ciphers=@LIBGCRYPT_PUBKEY_CIPHERS@
  57. +digests=@LIBGCRYPT_DIGESTS@
  58. +
  59. +Name: libgcrypt
  60. +Description: GNU crypto library
  61. +URL: http://www.gnupg.org
  62. +Version: @VERSION@
  63. +Libs: -L${libdir} -lgcrypt
  64. +Libs.private: -L${libdir} -lgpg-error
  65. +Cflags: -I${includedir}