diff options
author | Amy Winston <amynka@gentoo.org> | 2015-12-05 14:23:38 +0100 |
---|---|---|
committer | Amy Winston <amynka@gentoo.org> | 2015-12-05 14:23:38 +0100 |
commit | 7733ecb896d2af618cb4b624240b663844303c01 (patch) | |
tree | 21beb092ed0d93875444d208568d537332d433ad /sci-geosciences/grass/files | |
parent | sci-geosciences/grass: cleaning mess from package removal (diff) | |
download | gentoo-7733ecb896d2af618cb4b624240b663844303c01.tar.gz gentoo-7733ecb896d2af618cb4b624240b663844303c01.tar.bz2 gentoo-7733ecb896d2af618cb4b624240b663844303c01.zip |
sci-geosciences/grass: add SONAME patch and revbump.
Adds patch from upstream to build libraries with SONAME per bug 475188.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'sci-geosciences/grass/files')
-rw-r--r-- | sci-geosciences/grass/files/grass-7.0.2-soname.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sci-geosciences/grass/files/grass-7.0.2-soname.patch b/sci-geosciences/grass/files/grass-7.0.2-soname.patch new file mode 100644 index 000000000000..3f3442cc309d --- /dev/null +++ b/sci-geosciences/grass/files/grass-7.0.2-soname.patch @@ -0,0 +1,26 @@ +Index: aclocal.m4 +=================================================================== +--- aclocal.m4 (revision 66647) ++++ aclocal.m4 (working copy) +@@ -488,7 +488,7 @@ + case $host in + *-linux-* | *-gnu* | *-kfreebsd*-gnu) + SHLIB_CFLAGS="-fPIC" +- SHLIB_LD_FLAGS="" ++ SHLIB_LD_FLAGS="-Wl,-soname,\$(notdir \$[@])" + SHLIB_SUFFIX=".so" + SHLIB_LD="${CC} -shared" + LDFLAGS="-Wl,--export-dynamic" +Index: configure +=================================================================== +--- configure (revision 66647) ++++ configure (working copy) +@@ -1481,7 +1481,7 @@ + case $host in + *-linux-* | *-gnu* | *-kfreebsd*-gnu) + SHLIB_CFLAGS="-fPIC" +- SHLIB_LD_FLAGS="" ++ SHLIB_LD_FLAGS="-Wl,-soname,\$(notdir \$@)" + SHLIB_SUFFIX=".so" + SHLIB_LD="${CC} -shared" + LDFLAGS="-Wl,--export-dynamic" |