Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 35782 - gkrellm 2.1.22 is out
Summary: gkrellm 2.1.22 is out
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Martin Holzer (RETIRED)
URL: http://www.gkrellm.net
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-12-13 22:48 UTC by Jordan
Modified: 2003-12-16 08:27 UTC (History)
1 user (show)

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


Attachments
Updated ebuild (gkrellm.diff,1.05 KB, patch)
2003-12-16 07:50 UTC, Andy Dustman
Details | Diff
Updated ebuild with ssl support (gkrellm.diff,1.30 KB, patch)
2003-12-16 08:27 UTC, Andy Dustman
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jordan 2003-12-13 22:48:29 UTC
gkrellm 2.1.22 has been releaesd.
Comment 1 Martin Holzer (RETIRED) gentoo-dev 2003-12-14 06:36:54 UTC
in cvs
Comment 2 Andy Dustman 2003-12-15 08:42:51 UTC
2.1.22 and older ebuilds have arguably faulty dependencies. The gtk dependencies should only be included if the user has specified USE=X. They should be changed from this:

DEPEND=">=sys-apps/sed-4
        gtk? (  >=x11-libs/gtk+-2.0.5 )
        gtk2? ( >=x11-libs/gtk+-2.0.5 )"

to this:

DEPEND=">=sys-apps/sed-4
        X? (
            gtk? (  >=x11-libs/gtk+-2.0.5 )
            gtk2? ( >=x11-libs/gtk+-2.0.5 )
        )"
Comment 3 Martin Holzer (RETIRED) gentoo-dev 2003-12-15 10:10:56 UTC
do i really need a local X for this ?

how about just connect remote to a X11 ?
Comment 4 Andy Dustman 2003-12-16 06:44:48 UTC
The point is, you can compile just gkrellmd, which does not use X at all. It listens for clients on 19150. Anyway, if you are USE=-X, it shouldn't matter whether or not you've turned gtk or gtk2 on or off. My servers recently started coming up +gtk2 because it was added to the profile. This causes gtk+-2 to get pulled in and it's dependencies...
Comment 5 Andy Dustman 2003-12-16 07:50:27 UTC
Created attachment 22299 [details, diff]
Updated ebuild

 * gtk and gtk2 are removed from the USE flags entirely and replaced with X

 * >=x11-libs/gtk+-2.0.5 is required if USE=X

 * >=dev-libs-glib-1.2 is required in all cases (it will work with the 1.2 or
2.x series)
Comment 6 Andy Dustman 2003-12-16 07:56:54 UTC
Looking at the Changelog for 2.1.22, I see that SSL support has been added for mailcheck, so we need an optional ssl dependency. I'll work on this.
Comment 7 Andy Dustman 2003-12-16 08:27:13 UTC
Created attachment 22302 [details, diff]
Updated ebuild with ssl support

 * Remove gtk and gtk2 USE flags

 * Add dependency >=dev-libs/glib-1.2 in all cases

 * If USE=X, add >=x11-libs/gtk+-2.0.5 depenency

 * If USE="X ssl", add dev-libs/openssl

Note that gkrellmd (the piece that does not use X) does not have the mail check
capability, so it does not link against OpenSSL.