Solved Shared object "libevent-2.1.so.6" not found, required by "transmission-daemon"

Hi all!
I've upgraded ports and packages with portmaster. After reboot the server, I've found that transmission daemon doesn't start correctly.
Code:
# uname -srm
FreeBSD 11.3-RELEASE-p3 amd64
Bash:
# service transmission restart
transmission not running? (check /var/run/transmission/daemon.pid).
Starting transmission.
Shared object "libevent-2.1.so.6" not found, required by "transmission-daemon"
/usr/local/etc/rc.d/transmission: WARNING: failed to start transmission
pkg info | grep libevent
Bash:
# pkg info | grep libeven
libevent-2.1.11                API for executing callback functions on events or timeouts
And
# ls /usr/local/lib | grep libevent
Bash:
# ls /usr/local/lib | grep libevent
libevent_core-2.1.so.7
libevent_core-2.1.so.7.0.0
libevent_core.a
libevent_core.so
libevent_extra-2.1.so.7
libevent_extra-2.1.so.7.0.0
libevent_extra.a
libevent_extra.so
libevent_openssl-2.1.so.7
libevent_openssl-2.1.so.7.0.0
libevent_openssl.a
libevent_openssl.so
libevent_pthreads-2.1.so.7
libevent_pthreads-2.1.so.7.0.0
libevent_pthreads.a
libevent_pthreads.so
libevent-2.1.so.7
libevent-2.1.so.7.0.0
libevent.a
libevent.so
I see the libevent-2.1.so.7 library. So, how can I change libevent-2.1.so.6 with libevent-2.1.so.7 to launch transmission daemon?
P.S. Also I've reinstalled transmission meta port and no success
 
It seems libevent was updated and transmission was not rebuilt to link to the new version, then rebuild transmission-daemon.

Btw, the transmission meta package is just a "bookmark" to install transmission ports. If the necessary port is already installed rebuild it will do nothing.
 
Should rebuild:)
the transmission meta package
Yes, I know. So, fixed it.
Code:
[CODE=bash]# portmaster --show-work net-p2p/transmission

===>>> Currently installed version: transmission-2.94_4
===>>> Port directory: /usr/ports/net-p2p/transmission

===>>> Starting check for all dependencies
===>>> Gathering dependency list for net-p2p/transmission from ports

===>>> Installed net-p2p/transmission-cli
===>>> Installed net-p2p/transmission-daemon
===>>> Installed ports-mgmt/pkg
===>>> Installed www/transmission-web
And # portmaster -f net-p2p/transmission-daemon[/code]
 
Back
Top