Post links to your 32-bit module repos here. Repo maintainers are responsible for resolving any issues caused by their xzm's.
-
floatbit
- White ninja

- Posts: 10
- Joined: 21 Feb 2015, 05:20
- Distribution: Porteus
- Location: GMT8
Post#1
by floatbit » 21 Feb 2015, 05:51
Xfe (X File Explorer) is a graphical file manager for the X Window System for Unix and Unix-like systems, written by Roland Baudin. Its stated goals are simplicity, lightness and ease of use. The xfe file manager uses the FOX toolkit and is licensed under the terms of the GNU General Public License.
http://roland65.free.fr/xfe/
*lots of help from nemaeon #porteus, thanks!
https://mega.co.nz/#F!r8cBgJwI!V6LcGvvR7BMQspXb41dzZQ
libFOX-1.6-i486.xzm (4.2 MB)
xfe-1.32.4-i486-1sl.xzm (1.7 MB)
floatbit
-
francois
- Contributor

- Posts: 6311
- Joined: 28 Dec 2010, 14:25
- Distribution: xfce plank porteus nemesis
- Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.
Post#2
by francois » 21 Feb 2015, 13:57
Thanks. It looks good. We are in need of light packages for the older desktop. I imagine that your file explorer does not permit to surf the internet by itself?
Note: However I have build a thunar bundle with usm package manager which weights 5.9 megabytes to run in the kde environment, which compares advantageouly to your xfe module.
In addition, the problem with xfe is that it is not integrated with the porteus system. With each environment, the provided file manager provides a contextual menu to modify files into module, modules into directories ... .
Prendre son temps, profiter de celui qui passe.
francois
-
floatbit
- White ninja

- Posts: 10
- Joined: 21 Feb 2015, 05:20
- Distribution: Porteus
- Location: GMT8
Post#3
by floatbit » 21 Feb 2015, 18:20
was trying to do XForms Toolkit, which is awesome for light desktop and old machine,
http://xforms-toolkit.org/
but having some issues with gcc to compile a simple hello world, will try figure out later.
quite new with all these packaging and xzm stuff.
floatbit
-
francois
- Contributor

- Posts: 6311
- Joined: 28 Dec 2010, 14:25
- Distribution: xfce plank porteus nemesis
- Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.
Post#5
by francois » 21 Feb 2015, 19:53
In conclusion you can offer your second module to the community:
If not:
Code: Select all
root@porteus:~# usm -g xforms
Nothing found for: xforms
root@porteus:~#
You have:
And does it work?
Note: xforms was the basis for xfce:
http://en.wikipedia.org/wiki/Xfce
Prendre son temps, profiter de celui qui passe.
francois
-
floatbit
- White ninja

- Posts: 10
- Joined: 21 Feb 2015, 05:20
- Distribution: Porteus
- Location: GMT8
Post#6
by floatbit » 22 Feb 2015, 01:55
i did it manually with xfe, not yet learn about USM,
but USM really ease a lot to have something inside porteus.
and what you suggest is even more COOOOOLLLL!!
root@porteus:~# usm sbo -b xforms
it downloads and make automatically, only let us tgz2xzm, appreciate people who simplified the build process!,
i uploaded XForms in my mega link above. COol!!
floatbit
-
francois
- Contributor

- Posts: 6311
- Joined: 28 Dec 2010, 14:25
- Distribution: xfce plank porteus nemesis
- Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.
Post#7
by francois » 22 Feb 2015, 05:10
Le plaisir est pour moi.

Prendre son temps, profiter de celui qui passe.
francois
-
floatbit
- White ninja

- Posts: 10
- Joined: 21 Feb 2015, 05:20
- Distribution: Porteus
- Location: GMT8
Post#8
by floatbit » 22 Feb 2015, 06:40
thanks a lot, my hello world works now =)
gcc hello.c -lforms -o hello
code copied from xforms toolkit example website
Code: Select all
#include <forms.h>
int main(int argc, char **argv)
{
FL_FORM *form;
fl_initialize(&argc, argv, 0, 0, 0);
form = fl_bgn_form(FL_UP_BOX, 230, 100);
fl_add_button(FL_NORMAL_BUTTON, 20, 20, 190, 60, "Hello world");
fl_end_form();
fl_show_form(form, FL_PLACE_MOUSE, FL_FULLBORDER, "Hello, world!");
fl_do_forms();
fl_hide_form(form);
fl_finish();
return 0;
}
sky is the limit!
floatbit