Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 194899 - app-misc/tracker ebuild does not include deskbar applet module, even with "applet" use
Summary: app-misc/tracker ebuild does not include deskbar applet module, even with "ap...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Saleem Abdulrasool (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-06 10:58 UTC by Denis Demidov
Modified: 2007-10-07 01:46 UTC (History)
0 users

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


Attachments
ebuild which solves the problem (tracker-0.6.3-r1.ebuild,3.87 KB, text/plain)
2007-10-06 11:03 UTC, Denis Demidov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Denis Demidov 2007-10-06 10:58:34 UTC
Even when "applet" use flag is specified, deskbar module for app-misc/tracker is not built. 

Reproducible: Always

Steps to Reproduce:
1. USE=applet emerge app-misc/tracker
2. add deskbar applet to gnome panel and open its preferences
3. tracker support is not there

Actual Results:  
tracker support for deskbar is not built

Expected Results:  
tracker support for deskbar should be built when "applet" use flag is enabled
Comment 1 Denis Demidov 2007-10-06 11:03:45 UTC
Created attachment 132717 [details]
ebuild which solves the problem

In order to enable deskbar support, we need to pass 
  --enable-deskbar-applet=ARG 
                          Enable support for deskbar applet (handler, module,
                          auto)
to configure script.

So I replaced 
    $(use_enable applet deskbar-applet)
with
    if use applet ; then
        myconf="${myconf} --enable-deskbar-applet=auto"
    fi
Comment 2 Jakub Moc (RETIRED) gentoo-dev 2007-10-06 11:42:21 UTC
You can use $(use_enable applet deskbar-applet auto); please do NOT resolve bugs that are not fixed in CVS.
Comment 3 Saleem Abdulrasool (RETIRED) gentoo-dev 2007-10-07 01:46:09 UTC
Fixed.