1 |
Developers to contact: |
2 |
solar@gentoo.org |
3 |
vapier@gentoo.org |
4 |
|
5 |
/* Add notes here */ |
6 |
|
7 |
- relative qfile doesnt quite work: |
8 |
$ cd /bin |
9 |
$ qfile bash |
10 |
app-shells/bash (/bin/bash) |
11 |
app-shells/bash (/etc/bash) |
12 |
|
13 |
-- We cant/wont do relative paths unless we force dot slash ./behavior |
14 |
|
15 |
- FIXME: mozilla-launcher's rdeps breaks dep_grow_tree() with an assertion failed. |
16 |
RDEPEND="|| ( ( x11-misc/xtoolwait x11-apps/xdpyinfo ) virtual/x11 )" |
17 |
|
18 |
- multiline reads don't yet work for quse/qsearch |
19 |
|
20 |
- quse needs a rewrite. |
21 |
|
22 |
- Fetching via anoncvs. |
23 |
The cvs module for gentoo-projects is mirrored. You may download a |
24 |
pretty recent copy using the following command. Note: that this is not |
25 |
the official cvs server but rather a mirror so it lags about an hour or |
26 |
so behind the real tree which is hosted on cvs.gentoo.org |
27 |
|
28 |
cvs -d:pserver:anonymous@zarquon.twobit.net:/var/cvsroot -q -z9 co -R gentoo-projects/portage-utils |
29 |
|
30 |
- Adding applets is easy using the q framework. |
31 |
cp template.c qmyapplet.c (all applets use the prefix of the letter 'q') |
32 |
edit applets.h add your prototype, applet definition to the enum then |
33 |
incr LAST_APPLET. Scroll down the typedef for applets[] and add your |
34 |
applet name following the existing syntax. Please try to keep applet |
35 |
names under 8 chars. Finally, edit main.c, scroll to the bottom, and |
36 |
add your applet to the #include list. |
37 |
|
38 |
When and where you can please try to use an existing applet and extend |
39 |
on it's functionality by adding more options vs adding a bunch of new |
40 |
little applets. |