diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-08-27 17:17:55 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-08-27 17:17:55 +0000 |
commit | bf26a70073f734b7f78e124f1770933309f3979d (patch) | |
tree | 6f6887af07f7c63f5af6f496a7c272bf2e5585f1 /net-p2p/amule | |
parent | Pull in some perl scripting fixes from upstream CVS. Remove old ebuild. (diff) | |
download | gentoo-2-bf26a70073f734b7f78e124f1770933309f3979d.tar.gz gentoo-2-bf26a70073f734b7f78e124f1770933309f3979d.tar.bz2 gentoo-2-bf26a70073f734b7f78e124f1770933309f3979d.zip |
Fixed paths to config files, bug #98625
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-p2p/amule')
-rw-r--r-- | net-p2p/amule/ChangeLog | 6 | ||||
-rw-r--r-- | net-p2p/amule/files/amuled.initd | 4 | ||||
-rw-r--r-- | net-p2p/amule/files/amuleweb.initd | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/net-p2p/amule/ChangeLog b/net-p2p/amule/ChangeLog index 83559ef6ba71..805efb400b68 100644 --- a/net-p2p/amule/ChangeLog +++ b/net-p2p/amule/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/amule # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/ChangeLog,v 1.40 2005/08/26 15:21:18 sekretarz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/ChangeLog,v 1.41 2005/08/27 17:17:55 sekretarz Exp $ + + 27 Aug 2005; Karol Wojtaszek <sekretarz@gentoo.org> files/amuled.initd, + files/amuleweb.initd: + Fixed paths to config files, bug #98625 26 Aug 2005; <sekretarz@gentoo.org> -amule-1.2.8.ebuild, -amule-2.0.0_rc5.ebuild, -amule-2.0.0_rc6.ebuild, -amule-2.0.0_rc7.ebuild, diff --git a/net-p2p/amule/files/amuled.initd b/net-p2p/amule/files/amuled.initd index 236de692d691..4ebdf747e291 100644 --- a/net-p2p/amule/files/amuled.initd +++ b/net-p2p/amule/files/amuled.initd @@ -1,14 +1,14 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuled.initd,v 1.1 2005/07/10 15:02:47 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuled.initd,v 1.2 2005/08/27 17:17:55 sekretarz Exp $ depend() { need net } start() { - if ! test -f "${AMULEHOME}/.eMule"; then + if ! test -f "${AMULEHOME}/.aMule/amule.conf"; then eerror "You must start and configure amuled before launch it. Sorry." return 1 fi diff --git a/net-p2p/amule/files/amuleweb.initd b/net-p2p/amule/files/amuleweb.initd index 00036b4f0521..8734d3a323ff 100644 --- a/net-p2p/amule/files/amuleweb.initd +++ b/net-p2p/amule/files/amuleweb.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuleweb.initd,v 1.1 2005/07/10 15:02:47 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/amule/files/amuleweb.initd,v 1.2 2005/08/27 17:17:55 sekretarz Exp $ depend() { need net @@ -9,7 +9,7 @@ depend() { } start() { - if ! test -f "${AMULEHOME}/.eMule"; then + if ! test -f "${AMULEHOME}/.aMule/amule.conf"; then eerror "You must start and configure amuleweb before launch it. Sorry." return 1 fi |