diff options
author | ale <ale@FreeBSD.org> | 2009-10-27 21:37:59 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2009-10-27 21:37:59 +0800 |
commit | eb2d524aa10f852f35611897efd531313f34475b (patch) | |
tree | c1ea9d0ac161cea676e0e1ec4645325f0300d86e /security/botan/files | |
parent | 68ba3e3ba992a3c8e4397e8512a7892cc12f3112 (diff) | |
download | freebsd-ports-graphics-eb2d524aa10f852f35611897efd531313f34475b.tar.gz freebsd-ports-graphics-eb2d524aa10f852f35611897efd531313f34475b.tar.zst freebsd-ports-graphics-eb2d524aa10f852f35611897efd531313f34475b.zip |
Update to latest stable release (1.8.7):
- switch to python configure (perl one was obsolated)
- build ECC support (option to disable it)
- fix shared library name
PR: ports/139275
Submitted by: ale
Approved by: maintainer
Diffstat (limited to 'security/botan/files')
-rw-r--r-- | security/botan/files/patch-src_build_data_makefile_unix_shr.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/security/botan/files/patch-src_build_data_makefile_unix_shr.in b/security/botan/files/patch-src_build_data_makefile_unix_shr.in new file mode 100644 index 00000000000..c5b3b018b6e --- /dev/null +++ b/security/botan/files/patch-src_build_data_makefile_unix_shr.in @@ -0,0 +1,24 @@ +--- src/build-data/makefile/unix_shr.in.orig 2009-09-10 02:29:34.000000000 +0200 ++++ src/build-data/makefile/unix_shr.in 2009-10-27 14:30:46.000000000 +0100 +@@ -25,8 +25,8 @@ + BINDIR = $(DESTDIR)/bin + LIBDIR = $(DESTDIR)/%{libdir} + HEADERDIR = $(DESTDIR)/%{includedir}/botan +-DOCDIR = $(DESTDIR)/%{docdir}/Botan-$(VERSION) +-PKGCONF_DIR = $(LIBDIR)/pkgconfig ++DOCDIR = $(DESTDIR)/%{docdir}/botan ++PKGCONF_DIR = $(DESTDIR)/libdata/pkgconfig + + CONFIG_SCRIPT = %{botan_config} + PKGCONFIG = %{botan_pkgconfig} +@@ -67,8 +67,8 @@ + LIBNAME = %{lib_prefix}libbotan + STATIC_LIB = $(LIBNAME).a + +-SHARED_LIB = $(LIBNAME)-$(SO_VERSION).%{so_suffix} +-SONAME = $(LIBNAME)-$(SO_VERSION).%{so_suffix} ++SHARED_LIB = $(LIBNAME).%{so_suffix}.0 ++SONAME = $(LIBNAME).%{so_suffix}.0 + + SYMLINK = libbotan.%{so_suffix} + |