diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2005-07-07 21:38:02 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2005-07-07 21:38:02 +0000 |
commit | 89dea9c29b48b292ebd5ea574f5860da93410b7c (patch) | |
tree | 916fcf13647d536242eb7608c9fb33412222887b /mail/elm+ME/files/00elm.sh | |
parent | WindowMaker dockapp for displaying signal strenghts of WLAN Adapters (diff) |
Update from elm-2.4ME+119 to elm-2.4ME+121h. Install the auxiliary
shared libraries into ${PREFIX}/lib thus making 000.elm.sh unneeded.
Add patches, that allow warning-free compilation.
Add a patch, that removes the delay on every "metamail not needed"
notification.
Change scripts/pre-configure to allow use of nl_langinfo().
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=138680
Diffstat (limited to 'mail/elm+ME/files/00elm.sh')
-rw-r--r-- | mail/elm+ME/files/00elm.sh | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/mail/elm+ME/files/00elm.sh b/mail/elm+ME/files/00elm.sh deleted file mode 100644 index e94cfad0196d..000000000000 --- a/mail/elm+ME/files/00elm.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Configure the shared library cache -# -# PROVIDE: elm -# REQUIRE: ldconfig -# KEYWORD: FreeBSD - -elm_enable=${elm_enable:-"YES"} -elm_shlib_dir=${elm_shlib_dir:-"%%SHLIB_DIR%%"} - -. %%RC_SUBR%% - -name=ldconfig -rcvar=$(set_rcvar) -ldconfig_command="/sbin/ldconfig" -load_rc_config ${name} - -name="elm" -rcvar=$(set_rcvar) -start_cmd="elm_start" -stop_cmd=":" - -elm_start () -{ - local _ins - - _ins= - ldconfig=${ldconfig_command} - checkyesno ldconfig_insecure && _ins="-i" - if [ -x "${ldconfig_command}" ]; then - ${ldconfig} -m ${_ins} ${elm_shlib_dir} - fi -} - -load_rc_config ${name} -run_rc_command "$1" |