diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-12-28 19:00:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-12-28 19:00:18 +0000 |
commit | 4010b4a8bed9d7747a15ecdf5c21bdc611c98229 (patch) | |
tree | 6e7d0b92f711fe079d9eee735f018d92e9524f2d /net-p2p/bittorrent/files | |
parent | old (diff) | |
download | gentoo-2-4010b4a8bed9d7747a15ecdf5c21bdc611c98229.tar.gz gentoo-2-4010b4a8bed9d7747a15ecdf5c21bdc611c98229.tar.bz2 gentoo-2-4010b4a8bed9d7747a15ecdf5c21bdc611c98229.zip |
Cleanup ebuilds and make sure init.d script name matches that of the binaries.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'net-p2p/bittorrent/files')
-rw-r--r-- | net-p2p/bittorrent/files/bittorrent-tracker.confd | 2 | ||||
-rw-r--r-- | net-p2p/bittorrent/files/bittorrent-tracker.initd | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/net-p2p/bittorrent/files/bittorrent-tracker.confd b/net-p2p/bittorrent/files/bittorrent-tracker.confd index 0f9d19f08b2e..71e29cb861c4 100644 --- a/net-p2p/bittorrent/files/bittorrent-tracker.confd +++ b/net-p2p/bittorrent/files/bittorrent-tracker.confd @@ -8,7 +8,7 @@ PORT=8082 DFILE=/usr/share/bittorrent/tracker.dfile # path to favicon.ico which many popular web browsers can use -FAVICON=/usr/share/bittorrent/favicon.ico +FAVICON=/usr/share/pixmaps/bittorrent.ico # Connection logs are sent to stdout by default, so they should be sent to a # file when using this script. diff --git a/net-p2p/bittorrent/files/bittorrent-tracker.initd b/net-p2p/bittorrent/files/bittorrent-tracker.initd index 5f19dce83586..7732f3abf481 100644 --- a/net-p2p/bittorrent/files/bittorrent-tracker.initd +++ b/net-p2p/bittorrent/files/bittorrent-tracker.initd @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/files/bittorrent-tracker.initd,v 1.1 2005/12/18 20:08:06 mkay Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bittorrent/files/bittorrent-tracker.initd,v 1.2 2006/12/28 19:00:18 vapier Exp $ depend() { need net @@ -10,9 +10,9 @@ depend() { start() { ebegin "Starting bttrack" start-stop-daemon --start --quiet --background --make-pidfile \ - --pidfile /var/run/bttrack.pid \ - --exec /usr/bin/bittorrent-tracker -- --port ${PORT} \ - --dfile ${DFILE} --favicon ${FAVICON} --logfile ${LOGFILE} + --pidfile /var/run/bttrack.pid \ + --exec /usr/bin/bittorrent-tracker -- --port ${PORT} \ + --dfile ${DFILE} --favicon ${FAVICON} --logfile ${LOGFILE} eend $? } |