Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 20884 - mldonkey-2.5.0.ebuild (Update)
Summary: mldonkey-2.5.0.ebuild (Update)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement
Assignee: Hannes Mehnert (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-05-12 18:27 UTC by Gregorio Guidi (RETIRED)
Modified: 2003-06-02 19:05 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
ebuild + changelog (mldonkey-2.4.0.tar.gz,2.15 KB, application/octet-stream)
2003-05-12 18:28 UTC, Gregorio Guidi (RETIRED)
Details
ebuild for mldonkey-2.5.0 (mldonkey-2.5.0.ebuild.tar.bz2,1.43 KB, application/x-bzip2)
2003-05-29 15:46 UTC, Jason Oliveira
Details
mldonkey-2.5.0.ebuild (mldonkey-2.5.0.ebuild,1.72 KB, text/plain)
2003-06-02 04:36 UTC, Gregorio Guidi (RETIRED)
Details
mldonkey (wrapper) (mldonkey,312 bytes, text/plain)
2003-06-02 04:38 UTC, Gregorio Guidi (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gregorio Guidi (RETIRED) gentoo-dev 2003-05-12 18:27:27 UTC
Here I provide a tarball with an ebuild for mldonkey-2.4.0 along with ChangeLog and 
an extra file (a wrapper) 
 
Main changes I made: 
- changed HOMEPAGE 
- depended on lablgtk-1.2.4 instead of 1.2.3 
- update list of binaries installed 
- update list of docs installed 
- most important: the `mldonkey' executable is no longer present, so I created a 
`mldonkey' script that runs the server (now called `mlnet') inside a default dir 
(~/.mldonkey). Normally, running the server from a random dir results in cluttering that 
dir with files, as pointed out in the einfos in the old ebuild. 
- new einfos as well 
 
I did this work indipendently from bug #18934, didn't notice before, surely their 
approach would be fine, too. 
 
Bye.
Comment 1 Gregorio Guidi (RETIRED) gentoo-dev 2003-05-12 18:28:45 UTC
Created attachment 11860 [details]
ebuild + changelog
Comment 2 Gregorio Guidi (RETIRED) gentoo-dev 2003-05-12 19:01:40 UTC
Quick fix: 
in files/mldonkey, substitute  
 
cd ${HOME}/.mldonkey && mlnet 
 
with 
 
cd ${HOME}/.mldonkey && /usr/bin/mlnet 
 
otherwise wrong default configuration will be created. 
 
Comment 3 Anders Bruun Olsen 2003-05-26 11:31:45 UTC
mldonkey 2.5.0 is out. 
Comment 4 Jason Oliveira 2003-05-29 15:46:02 UTC
Created attachment 12549 [details]
ebuild for mldonkey-2.5.0

extract mldonkey-2.5.0.ebuild.tar.bz in /usr/portage/net-p2p/

modified files/mldonkey as commented above. works fine.
Comment 5 Gregorio Guidi (RETIRED) gentoo-dev 2003-06-02 04:36:38 UTC
Created attachment 12663 [details]
mldonkey-2.5.0.ebuild
Comment 6 Gregorio Guidi (RETIRED) gentoo-dev 2003-06-02 04:38:31 UTC
Created attachment 12664 [details]
mldonkey (wrapper)
Comment 7 Gregorio Guidi (RETIRED) gentoo-dev 2003-06-02 04:42:33 UTC
Recently caleb submitted an ebuild for 2.5 that is broken (the list of binaries to install, and also 
the docs, are wrong), so I put the enphasis on this bug by reposting the ebuild and the wrapper 
as simple text (thanx to all devs that pointed out that tarballs are not appreciated). 
 
Comment 8 Caleb Tennis (RETIRED) gentoo-dev 2003-06-02 13:53:14 UTC
Thanks for the fix - I was informed in Friday that there were problem with the ebuild, but I 
had a power outage and it took me a while to get things back together.  I have commited 
this as 2.5-r1. 
Comment 9 Gregorio Guidi (RETIRED) gentoo-dev 2003-06-02 19:05:26 UTC
Thanks a lot for the commit (and for all the work with gentoo, I noticed you're 
one of the more active devs on bugzilla and on cvs changelogs lately!) 
 
If you mind, another quick enhancement in the wrapper: 
 
cd ${HOME}/.mldonkey && exec /usr/bin/mlnet 
 
is better than 
 
cd ${HOME}/.mldonkey && /usr/bin/mlnet 
 
(e.g. to control the deamon with Ctrl-Z Ctrl-C from the console).