Bug 129926 - Wrong configure argument in devel/codeblocks
Summary: Wrong configure argument in devel/codeblocks
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Dirk Meyer
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-25 13:00 UTC by Henry Hu
Modified: 2009-01-17 09:46 UTC (History)
0 users

See Also:


Attachments
file.diff (422 bytes, patch)
2008-12-25 13:00 UTC, Henry Hu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Henry Hu 2008-12-25 13:00:07 UTC
In devel/codeblocks/Makefile:

CONFIGURE_ARGS+=	--with-wx-config=${WX_CONFIG} --with-contrib-plugins=All

But it should be --with-contrib-plugins=all, since the contrib plugins are not built now, and are built if I change All to all.
See configure line 23788:

{ echo "$as_me:$LINENO: checking which (if any) contrib plugins to build" >&5
echo $ECHO_N "checking which (if any) contrib plugins to build... $ECHO_C" >&6; }

# Check whether --with-contrib-plugins was given.
if test "${with_contrib_plugins+set}" = set; then
  withval=$with_contrib_plugins; plugins="$withval"
else
  plugins="none"
fi


plugins=`echo $plugins | sed 's/,/ /g'`
for plugin in $plugins
do
    case "$plugin" in
	all)

Fix: Patch attached with submission follows:
How-To-Repeat: 1. Install code::blocks from devel/codeblocks
2. Start code::blocks and see plugin list
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2008-12-25 13:00:16 UTC
Responsible Changed
From-To: freebsd-ports-bugs->dinoex

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2009-01-17 09:36:44 UTC
dinoex      2009-01-17 09:36:30 UTC

  FreeBSD ports repository

  Modified files:
    devel/codeblocks     Makefile pkg-plist 
  Log:
  - enable plugins
  PR:             129926
  Submitted by:   Henry Hu
  
  - switch to wx2.8 unicode to build wxsmith
  - add plugins to plist
  
  Revision  Changes    Path
  1.9       +4 -3      ports/devel/codeblocks/Makefile
  1.3       +206 -1    ports/devel/codeblocks/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Dirk Meyer freebsd_committer freebsd_triage 2009-01-17 09:45:36 UTC
State Changed
From-To: open->closed

committed with changes, thanks.