1 |
vapier |
1.5 |
Developers to contact: |
2 |
|
|
solar@gentoo.org |
3 |
|
|
vapier@gentoo.org |
4 |
|
|
|
5 |
solar |
1.1 |
/* Add notes here */ |
6 |
solar |
1.3 |
|
7 |
vapier |
1.6 |
- 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 |
solar |
1.3 |
- multiline reads don't yet work for quse/qsearch |
14 |
|
|
|
15 |
|
|
- quse needs a rewrite. |
16 |
|
|
|
17 |
|
|
- Fetching via anoncvs. |
18 |
|
|
The cvs module for gentoo-projects is mirrored. You may download a |
19 |
|
|
pretty recent copy using the following command. Note: that this is not |
20 |
|
|
the official cvs server but rather a mirror so it lags about an hour or |
21 |
|
|
so behind the real tree which is hosted on cvs.gentoo.org |
22 |
|
|
|
23 |
|
|
cvs -d:pserver:anonymous@zarquon.twobit.net:/var/cvsroot -q -z9 co -R gentoo-projects/portage-utils |
24 |
|
|
|
25 |
|
|
- Adding applets is easy using the q framework. |
26 |
|
|
cp template.c qmyapplet.c (all applets use the prefix of the letter 'q') |
27 |
|
|
edit applets.h add your prototype, applet definition to the enum then |
28 |
|
|
incr LAST_APPLET. Scroll down the typedef for applets[] and add your |
29 |
|
|
applet name following the existing syntax. Please try to keep applet |
30 |
|
|
names under 8 chars. |
31 |
|
|
|
32 |
solar |
1.4 |
When and where you can please try to use an existing applet and extend |
33 |
|
|
on it's functionality by adding more options vs adding a bunch of new |
34 |
|
|
little applets. |