summaryrefslogtreecommitdiff
path: root/security/clamav/files/patch-ltmain.sh
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-09-28 13:29:28 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-09-28 13:29:28 +0000
commit5e2bc95fa1f0bd453129c777beb94396393dda0a (patch)
treecf7e544c9bcad15e703bcdc275554076c4fc2d69 /security/clamav/files/patch-ltmain.sh
parentUpdate port: security/pf - OpenBSD 3.4 pf (diff)
- don't remove clamav account on deinstall
- use included libtool (seems heavily patched) - make packageable and include a working configure file - add a rcNG start/stop script - added web site - don't install useless .la files - use DATADIR - 510001 is FreeBSD 5.10, 5.1-CURRENT is 501100 - minor cleanup PR: 57256 Submitted by: eikemeier@fillmore-labs.com
Notes
Notes: svn path=/head/; revision=89677
Diffstat (limited to '')
-rw-r--r--security/clamav/files/patch-ltmain.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/security/clamav/files/patch-ltmain.sh b/security/clamav/files/patch-ltmain.sh
new file mode 100644
index 000000000000..74d32db0b279
--- /dev/null
+++ b/security/clamav/files/patch-ltmain.sh
@@ -0,0 +1,23 @@
+--- ltmain.sh.orig Sat Sep 27 05:20:20 2003
++++ ltmain.sh Sat Sep 27 05:24:02 2003
+@@ -4259,10 +4259,16 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
+- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+- instname="$dir/$name"i
+- $show "$install_prog $instname $destdir/$name"
+- $run eval "$install_prog $instname $destdir/$name" || exit $?
++ case $host in
++ *-*-freebsd*)
++ # Do not install the useless pseudo-library
++ ;;
++ *)
++ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
++ instname="$dir/$name"i
++ $show "$install_prog $instname $destdir/$name"
++ $run eval "$install_prog $instname $destdir/$name" || exit $?
++ esac
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"