* Uhh.. I regret to tell you that there is no USE flags to use like in Portage. But if you are an experienced user, you can also compile kernel with your own configuration. Also other applications

* A server edition is a future, we keep that in our mind

* There is a Contrib repository like Gentoo's Masked repository. But it's not very unstable. To add and use repository, please read following link;
http://liste.pardus.org.tr/pardus-users/2007-April/000039.html* COMAR is a system configuration tool. It supports classes that you use to configure your network, grub entries, users etc. E.g this gets info from a user (uid 1000). Open python console and write these lines;
>>> import comar
>>> link = comar.Link()
>>> link.call("User.Manager.userInfo", {"uid": 1000})
>>> response = link.read_cmd()
>>> response.data
'uid 1000\nname eren\nrealname Eren T\xc3\xbcrkay\ngid 100\nhomedir /home/eren\nshell /bin/bash\ngroups users,disk,wheel,audio,dialout,pnp,removable,power,pnpadmin,dbus,hal'
>>>
You know that \n is newline which can not be shown in python console. If you run it from console, newlines can be shown.
User.Manager.userInfo model is set in /etc/comar/model.xml, you can only use models in model.xml. Please open that file and see what classes to use in python code.