[gentoo-dev] Themes for Webapplication
I am writing an eubild for an webapplication (wiki) and there are a lot of themes available. I write an ebuild for these themes. Now my question is where do I install these themes so that webapp-config handles them correctly. -- gentoo-dev@gentoo.org mailing list
Re: [gentoo-dev] Themes for Webapplication
I am writing an ebuild for pmwiki. Its not in the portage tree yet. I think I will put the themes in /usr/share/pmwiki/Skins Hope that is OK. Stuart Herbert wrote: Hi, On Fri, 2005-11-04 at 07:41 +0100, Rene Zbinden wrote: I am writing an eubild for an webapplication (wiki) and there are a lot of themes available. I write an ebuild for these themes. Now my question is where do I install these themes so that webapp-config handles them correctly. We need a little more information to help answer that question. Which wiki are you writing an ebuild for? Best regards, Stu -- gentoo-dev@gentoo.org mailing list
[gentoo-dev] Ebuilds and USE flags
I am writing an ebuild for a program written in perl. This program has the dependency of gnuplot but with the png flag enabled. What is the gentoo way to enable this USE Flag for gnuplot when I emerge my program. cheers rene -- gentoo-dev@gentoo.org mailing list
[gentoo-dev] server owned directory with webapp eclass
hi how do I create a server owned directory with the webapp eclass? If it is not possible, what is a workaround? I could do it with chown apache:apache dir but then it only works with the apache webserver. Any ideas? thanks in advance rene -- gentoo-dev@gentoo.org mailing list
[gentoo-dev] where to put *.pm files
Hi I am writing a new ebuild. The program contains a perlscript (mainprog.pl) which needs two perl modules like (module1.pm module2.pm) I will put mainprog.pl in /usr/bin but where do I put the two modules. Shall I put them in /usr/share/programename and put that to the perl path? -- cheers, reen -- gentoo-dev@gentoo.org mailing list
Re: [gentoo-dev] where to put *.pm files
Yes the program looks in @INC for the modules and no the name of the program is not mainprog.pl. How can I put the two modules in the @INC the gentoo way. I saw that there is a perl eclass, but I am not sure how to use it correctly. I will file a Bug when the program works. Or should I already file a bug? Until now I have submitted several ebuilds and patches but none made it into the portage tree On Wednesday 25 May 2005 11:12, Michael Cummings wrote: > Well, first off, how does the program look for the perl modules? If it > isn't suggesting that you place them in your @INC, then it is most likely > loading them directly. So it all depends on how the main script (please > tell me it isn't really called mainprog.pl) tries to load those modules as > to the best place to put them. > > /me waits for the bug report for this one > > On Wednesday 25 May 2005 02:06 am, Rene Zbinden wrote: > > Hi > > > > I am writing a new ebuild. The program contains a perlscript > > (mainprog.pl) which needs two perl modules like (module1.pm module2.pm) > > > > I will put mainprog.pl in /usr/bin but where do I put the two modules. > > Shall I put them in /usr/share/programename and put that to the perl > > path? > > > > -- > > cheers, > > reen -- cheers, reen -- gentoo-dev@gentoo.org mailing list
Re: [gentoo-dev] where to put *.pm files
Thanks, but unfortunately it is not on CPAN. On Wednesday 25 May 2005 23:32, Drake Wyrm wrote: > Rene Zbinden <[EMAIL PROTECTED]> wrote: > > I am writing a new ebuild. The program contains a perlscript > > (mainprog.pl) which needs two perl modules like (module1.pm > > module2.pm) > > > > I will put mainprog.pl in /usr/bin but where do I put the two modules. > > Shall I put them in /usr/share/programename and put that to the perl > > path? > > Is this a package that is currently on CPAN? If so, I have a relatively > useful skeleton for writing CPAN ebuilds. I was able to install several > CPAN packages this way. In the ebuild, you'll need to edit or delete any > line marked with "XXX", but that will likely be all you need to get it > to work. Let me know if anything needs more explanation. > > <http://www.haell.com/~wyrm/works/comp/env/prgmmg/perl/skel_cpan.tbz2> -- cheers, reen -- gentoo-dev@gentoo.org mailing list
Re: [gentoo-dev] baselayout-1.11.12-r2 request for testers
works perfectly here. good work. I like the new network setup. when do you thing it changes from ~x86 to x86. On Thursday 26 May 2005 00:20, Mike Frysinger wrote: > yes, it's finally that time ... after months of hearing us say 'we want to > get new baselayout stable asap', we're serious > > so can people please try out baselayout-1.11.12-r2+ and see if they notice > any regressions ? the 'best' tests are simply rebooting and seeing if your > system comes up :) > > common gotchas: > - many config options have moved from /etc/rc.conf into /etc/conf.d/ files > - /etc/hostname and /etc/*domainname have been moved into /etc/conf.d/ > files - the net scripts have been completely rewritten thanks to UberLord > ... old config styles should work fine, but it's best if you update > your /etc/conf.d/net syntax ... just review /etc/conf.d/net.example or this > URL: http://dev.gentoo.org/~uberlord/net-book/ > > somethings to note ... > regressions with lvm/lvm2/evms will not be considered ... they have had all > their code forked into the respective packages and thus are no longer part > of baselayout ... bugs with those packages should be taken up with their > respective maintainers > -mike -- cheers, reen -- gentoo-dev@gentoo.org mailing list
Re: [gentoo-dev] where to put *.pm files
Thanks for the help! I put it here: http://bugs.gentoo.org/show_bug.cgi?id=94060 On Wednesday 25 May 2005 11:12, Michael Cummings wrote: > Well, first off, how does the program look for the perl modules? If it > isn't suggesting that you place them in your @INC, then it is most likely > loading them directly. So it all depends on how the main script (please > tell me it isn't really called mainprog.pl) tries to load those modules as > to the best place to put them. > > /me waits for the bug report for this one > > On Wednesday 25 May 2005 02:06 am, Rene Zbinden wrote: > > Hi > > > > I am writing a new ebuild. The program contains a perlscript > > (mainprog.pl) which needs two perl modules like (module1.pm module2.pm) > > > > I will put mainprog.pl in /usr/bin but where do I put the two modules. > > Shall I put them in /usr/share/programename and put that to the perl > > path? > > > > -- > > cheers, > > reen -- cheers, reen -- gentoo-dev@gentoo.org mailing list
[gentoo-dev] python module
Hi I want to write an ebuild, that installs a python module. After unpacking the zipfile there is only one module module.py. What is the best way to install that package. Is there an eclass that I can use? Thanks in advance. rene -- gentoo-dev@gentoo.org mailing list
Re: [gentoo-dev] python module
Yes in the meantime I found that eclass. The problem was, that there was no setup.py file. I created my own and put it into the files directory. Here is my ebuild: http://bugs.gentoo.org/show_bug.cgi?id=101296 pyamazon is a Python wrapper for the Amazon web API. Homepage: http://www.josephson.org/projects/pyamazon/ You can check it out if you want. Comments are welcome. On Thursday 04 August 2005 09:15, Alin Dobre wrote: > Rene Zbinden wrote: > > Hi > > > > I want to write an ebuild, that installs a python module. After unpacking > > the zipfile there is only one module module.py. What is the best way to > > install that package. Is there an eclass that I can use? > > # The distutils eclass is designed to allow easier installation of > # distutils-based python modules and their incorporation into > # the Gentoo Linux system. > > > -- > Alin DOBRE > Romanian Lead Translator > Gentoo Documentation Project: http://www.gentoo.org/doc/en/ > Gentoo.RO Community: http://www.gentoo.ro/ -- cheers, reen -- gentoo-dev@gentoo.org mailing list