Code::Blocks Forums

User forums => Help => Topic started by: Alaric on February 08, 2007, 10:55:55 pm

Title: Where do I get plugins?
Post by: Alaric on February 08, 2007, 10:55:55 pm
Where do I get plugins like the devpak installer for Codeblocks?
Title: Re: Where do I get plugins?
Post by: mscava on February 08, 2007, 11:03:53 pm
It's already there... See Plugins->Dev-Pak installer/updater. If it's not there try to enable it in Manage Plugins.
Title: Re: Where do I get plugins?
Post by: Alaric on February 08, 2007, 11:13:57 pm
umm... no... it's not... I don't even have it in my manage plugins.  I'm using version "svn build rev 3586 (2007-02-07 13:53:13) gcc 4.0.3 Linux/unicode" if it helps
Title: Re: Where do I get plugins?
Post by: wxLearner on February 08, 2007, 11:19:11 pm
The contributed plugins are in src/plugins/contrib.
Title: Re: Where do I get plugins?
Post by: Alaric on February 08, 2007, 11:57:09 pm
... and where would that be?  Already on my harddrive?  Inside of a CVS server?  On the main website?  I've seen that path before, but WHERE is it? 
Title: Re: Where do I get plugins?
Post by: jpaterso on February 09, 2007, 12:29:04 am
Are you building the sources? Did you run an svn checkout? If so, the plugins will be in codeblocks/trunk/src/plugins/contrib
Title: Re: Where do I get plugins?
Post by: Alaric on February 09, 2007, 12:42:42 am
I got it from the nightly build forums.  What's this SVN I keep hearing about? 
Title: Re: Where do I get plugins?
Post by: TDragon on February 09, 2007, 12:50:49 am
I got it from the nightly build forums.
If it truly doesn't show up even in the Manage Plugins dialog, try wiping your Code::Blocks installation folder and installing a new nightly. (You will not lose any customized settings.)
Title: Re: Where do I get plugins?
Post by: Alaric on February 09, 2007, 01:18:15 am
umm... still nothing.  I got the Feb 06
svn build rev 3577 (2007-02-06 16:23:55) gcc 4.0.3 Linux/unicode build.  The Feburary 8 link was down. 
Title: Re: Where do I get plugins?
Post by: TDragon on February 09, 2007, 01:27:03 am
I got the Feb 06 svn build rev 3577 (2007-02-06 16:23:55) gcc 4.0.3 Linux/unicode build.
I don't use C::B under Linux, so I can't help you here. I'm not sure whether the DevPak plugin is even available for non-Windows systems.
Title: Re: Where do I get plugins?
Post by: Alaric on February 09, 2007, 01:28:12 am
O.k. then where do I get new wizards, in specific, one for Gtk?
Title: Re: Where do I get plugins?
Post by: Biplab on February 09, 2007, 04:23:34 am
Did you use ./configure --enable-contrib command to configure? Plugins should also get compiled after that, AFAIK.

Regards,

Biplab  :)
Title: Re: Where do I get plugins?
Post by: Alaric on February 09, 2007, 04:37:03 am
I didn't use ./configure, I used apt.  Can I still recomiple with these plugins? 
Title: Re: Where do I get plugins?
Post by: Biplab on February 09, 2007, 04:45:53 am
Have u compiled C::B from source or have downloaded using apt? If you are compiling C::B from source then use ./configure --enable-contrib and this should solve the problem.

Regarding recompiling plugins only, you can do them by regenerating the make files using configure and then compiling again.
Title: Re: Where do I get plugins?
Post by: Alaric on February 09, 2007, 05:04:17 am
As I said before, I got Code::Blocks with syaptic/apt. 
Title: Re: Where do I get plugins?
Post by: Biplab on February 09, 2007, 05:13:38 am
You can't compile plugins alone as they require C::B lib to link. You have to download C::B source through SVN and then compile it with that option.  :)
Title: Re: Where do I get plugins?
Post by: Alaric on February 09, 2007, 05:16:23 am
O.k. then, now what the heck is an SVN?
Title: Re: Where do I get plugins?
Post by: killerbot on February 09, 2007, 09:03:15 am
the version control system wee use for the CB sources.

See codeblocks home page -> Sources
or go to the wiki and search on nightly cookbook -> will have some explanation
Title: Re: Where do I get plugins?
Post by: wxLearner on February 09, 2007, 09:06:08 am
The homepage of svn is http://subversion.tigris.org/ (http://subversion.tigris.org/). It's a version control system. If you want a gui, open synaptic and select rapidsvn (http://rapidsvn.tigris.org/). The svn urls for codeblocks are listed at http://developer.berlios.de/svn/?group_id=5358 (http://developer.berlios.de/svn/?group_id=5358).
Title: Re: Where do I get plugins?
Post by: mandrav on February 09, 2007, 09:47:22 am
The devpak plugin is NOT compiled in linux.
Title: Re: Where do I get plugins?
Post by: joubertdj on February 09, 2007, 10:11:20 am
SVN stands for Subversion.

It is a tool that helps developers work on the same set of source codes without having to download the package when one single difference was made... really safes a heck of a lot of bandwidth... believe me...
It is also very useful if you make a small change and you want to contribute that change... that small change is what is usually referred to as a patch... Very nifty...

When you want the source of a project, you need to identify the URL and do a "checkout", this will then download all the files that are within that "repository". After you downloaded that initial checkout... you only have to update your repository with the URL provided (You don't need to remember the URL, SVN does that for you... cool hey!), SVN will "see" what changes was made to the server and update you, it will also "see" any changes you made so that if you screwed up somewhere, you can "revert" to the original on the server... even cooler! (I screwup allot you see! :) )

I recommend Tortoise SVN... integrates with Explorer of Windows (Don't know about Linux though, normal command SVN might be sufficient)

A small brief intro to SVN... I hope...