Xfe X File Explorer

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
White ninja
Posts: 10
Joined: 21 Feb 2015, 05:20
Distribution: Porteus
Location: GMT8

Xfe X File Explorer

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/

Image

*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)

User avatar
francois
Contributor
Contributor
Posts: 6434
Joined: 28 Dec 2010, 14:25
Distribution: xfce plank porteus nemesis
Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.

Re: Xfe X File Explorer

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? :wink:

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.

floatbit
White ninja
White ninja
Posts: 10
Joined: 21 Feb 2015, 05:20
Distribution: Porteus
Location: GMT8

Re: Xfe X File Explorer

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.

User avatar
francois
Contributor
Contributor
Posts: 6434
Joined: 28 Dec 2010, 14:25
Distribution: xfce plank porteus nemesis
Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.

Re: Xfe X File Explorer

Post#4 by francois » 21 Feb 2015, 19:38

1.0 To build packages under porteus you need devel.xzm package:
http://dl.porteus.org/i486/current/modules/

2.0 The usm package manager in command line has sbo (slackbuild support):

Code: Select all

root@porteus:~# usm sbo -b xfe
And you need libfox:

Code: Select all

root@porteus:~# usm -g libfox
 Nothing found for:  libfox 
root@porteus:~#
Fox-toolkit:

Code: Select all

root@porteus:~# usm -g fox-toolkit
 root@porteus:~#
Note: It seems that you have to build fox --with-xim configure option (see readme file in the fox-toolkit package)

3.0 You can also follow the slackware slack.build procedure:
http://slackbuilds.org/repository/13.1/system/xfe/

Slackbuild howto instructions:
http://slackbuilds.org/howto/

4.0 There is the kosher method to build a porteus package, the lightweight method in terms of megabytes:
http://www.porteus.org/tutorials/9-modu ... ource.html
Prendre son temps, profiter de celui qui passe.

User avatar
francois
Contributor
Contributor
Posts: 6434
Joined: 28 Dec 2010, 14:25
Distribution: xfce plank porteus nemesis
Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.

Re: Xfe X File Explorer

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:

Code: Select all

root@porteus:~# usm sbo -b xforms
And does it work? :wink:

Note: xforms was the basis for xfce:
http://en.wikipedia.org/wiki/Xfce
Prendre son temps, profiter de celui qui passe.

floatbit
White ninja
White ninja
Posts: 10
Joined: 21 Feb 2015, 05:20
Distribution: Porteus
Location: GMT8

Re: Xfe X File Explorer

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!!
:D :D :D :D
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!!

User avatar
francois
Contributor
Contributor
Posts: 6434
Joined: 28 Dec 2010, 14:25
Distribution: xfce plank porteus nemesis
Location: Le printemps, le printemps, le printemps... ... l'hiver s'essoufle.

Re: Xfe X File Explorer

Post#7 by francois » 22 Feb 2015, 05:10

Le plaisir est pour moi. :wink:
Prendre son temps, profiter de celui qui passe.

floatbit
White ninja
White ninja
Posts: 10
Joined: 21 Feb 2015, 05:20
Distribution: Porteus
Location: GMT8

Re: Xfe X File Explorer

Post#8 by floatbit » 22 Feb 2015, 06:40

thanks a lot, my hello world works now =)

Image

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!

Post Reply