[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: CVS update: ChangeLog



  User: pcjc2   
  Date: 07/02/11 18:59:07

  Modified:    .        Tag: noscreen ChangeLog configure.ac
  Log:
  Sync with trunc
  
  
  
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.129.2.1 +60 -0     eda/geda/gaf/utils/ChangeLog
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/ChangeLog,v
  retrieving revision 1.129
  retrieving revision 1.129.2.1
  diff -u -b -r1.129 -r1.129.2.1
  --- ChangeLog	22 Nov 2006 00:06:03 -0000	1.129
  +++ ChangeLog	11 Feb 2007 23:59:07 -0000	1.129.2.1
  @@ -1,3 +1,63 @@
  +2007-02-10 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* src/gsch2pcb.c: Applied patch by Jeff Mallatt to fix a typo 
  +	in some helpful output for pcb's Disperse all elements. Thanks.
  +
  +	* scripts/gschemdoc.sh: Applied patch by Charles Lepple [ 1590587 ] 
  +	gschemdoc additions for Mac OS X.  Thanks!
  +
  +	* src/convert_sym.c: Applied patch by Hans N. [ 1581813 ] Patch
  +	to ignore '|' tags.  Thanks!
  +
  +	* gschlas/globals.c: Removed quit_func since it is
  +	completely unused.
  +
  +	* scripts/gnet_hier_verilog.sh: Added new script by Paul Tan
  +	[ 1566117 ] Script for non-flatten herarchical Verilog netlist.
  +	Thanks!  Fixed some of the headers to be correct (copyright
  +	in particular).
  +
  +	* man/grenum.1:  Updated the man page a little for bug: 
  +	[ 1556064 ] man page version out of date
  +
  +	* configure.ac: Bumped package version to 20070216.
  +
  +2007-02-08 19:24  Dan McMahill <danmc>
  +
  +	* configure.ac, examples/gsch2pcb/Makefile.am,
  +	  examples/gsch2pcb/first.sch, examples/gsch2pcb/project.sample,
  +	  examples/gsch2pcb/second.sch, examples/gsch2pcb/third.sch,
  +	  src/gsch2pcb.c: 1)  add a new option to gsch2pcb "use-m4" for the
  +	  project file or "--use-m4" for the command line.  By default now,
  +	  gsch2pcb will not try to run m4 at all.  If you want the old
  +	  behaviour of running m4, you'll have to use this option.  It
  +	  seems that this is what most users want (no m4 involved at run
  +	  time).
  +
  +	  2) rather than hard coding a number of paths like /usr/X11R6/lib
  +	  and /usr/local/share into the code for places to look for PCB
  +	  footprints, use a single default directory which is based on
  +	  ${datadir}.  If the user wants to, they can override that with
  +	  --with-pcb-datadir=/opt/pcb-20070204/share for example.
  +
  +	  3)  when searching for newlib footprints with, for example, a
  +	  name like footprint=MY1206, match either "MY1206" or "MY1206.fp"
  +	  so we can start having extensions on footprint files without
  +	  needing to explicitly add the ".fp" part in the footprint=
  +	  attribute.  All of the footprints in the pcb distribution which
  +	  came from the m4 libraries have .fp extensions now.
  +
  +	  4)  add some example schematic files in the gsch2pcb example
  +	  directory
  +
  +2007-01-08 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
  +
  +	* gschlas/Makefile.am, gschlas/globals.c, gschlas/gschlas.c,
  +	gschlas/parsecmd.c, gschlas/s_util.c, include/globals.h,
  +	include/prototype.h: Added embed/unembed command line switched to
  +	gschlas to support embedding/unembedding all components/pictures
  +	in the specified schematics on the command line.
  +
   2006-11-21 Ales Hvezda   <ahvezda@xxxxxxxxxxxxx>
   
           * configure.ac: Fixed libgeda detection/find error message when
  
  
  
  1.31.2.2  +37 -1     eda/geda/gaf/utils/configure.ac
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/configure.ac,v
  retrieving revision 1.31.2.1
  retrieving revision 1.31.2.2
  diff -u -b -r1.31.2.1 -r1.31.2.2
  --- configure.ac	27 Dec 2006 17:37:58 -0000	1.31.2.1
  +++ configure.ac	11 Feb 2007 23:59:07 -0000	1.31.2.2
  @@ -4,7 +4,7 @@
   AC_PREREQ(2.54)
   
   PACKAGE=geda-utils
  -VERSION=20061020
  +VERSION=20070216
   echo Configuring $PACKAGE version $VERSION
   
   # Initialize automake 
  @@ -29,6 +29,7 @@
   
   # Checks for programs.
   AC_PROG_CC
  +AM_PROG_CC_C_O
   AM_CONDITIONAL(CCISGCC, test "$GCC" = "yes")
   AC_PROG_CPP
   AC_PROG_MAKE_SET
  @@ -286,6 +287,39 @@
   
   #
   #########################################################################
  +
  +#########################################################################
  +#
  +# Change default location for pcb's newlib library directory
  +#
  +# Used by gsch2pcb
  +
  +AC_MSG_CHECKING([For the default pcb installation data directory])
  +AC_ARG_WITH(pcb-datadir,
  +	[  --with-pcb-datadir=path
  +                          Change the default location for an installed pcb.  This is used
  +                          to set the default search path for pcb newlib libraries.
  +                          [[default=${datadir}]]],
  +	[PCBDATADIR=$withval],
  +	[PCBDATADIR="${datadir}"]
  +)
  +AC_MSG_RESULT([${PCBDATADIR}])
  +CPPFLAGS="$CPPFLAGS -DPCBDATADIR=\\\"${PCBDATADIR}\\\""
  +
  +AC_MSG_CHECKING([For the default pcb newlib search path])
  +AC_ARG_WITH(pcb-newlib-path,
  +	[  --with-pcb-newlib-path=path
  +                          Change the default search path for PCB newlib libraries
  +                          [[default=${datadir}/pcb/pcblib-newlib:${datadir}/pcb/newlib]]],
  +	[PCBLIBPATH=$withval],
  +	[PCBLIBPATH="${PCBDATADIR}/pcb/pcblib-newlib:${PCBDATADIR}/pcb/newlib"]
  +)
  +AC_MSG_RESULT([${PCBLIBPATH}])
  +CPPFLAGS="$CPPFLAGS -DPCBLIBPATH=\\\"${PCBLIBPATH}\\\""
  +
  +#
  +#########################################################################
  +
   #########################################################################
   # Check for groff start
   #
  @@ -388,6 +422,7 @@
   expandedGEDADATADIR=`eval "echo $GEDADATADIR"`
   expandedGEDARCDIR=`eval "echo $GEDARCDIR"`
   expandedGEDADOCDIR=`eval "echo $GEDADOCDIR"`
  +expandedPCBLIBPATH=`eval "echo $PCBLIBPATH"`
   
   AC_MSG_RESULT([
   ** Configuration summary for $PACKAGE $VERSION:
  @@ -399,6 +434,7 @@
      data directory:                   $expandedGEDADATADIR
      rc directory:                     $expandedGEDARCDIR
      documentation directory:          $expandedGEDADOCDIR
  +   default pcb newlib path:          $expandedPCBLIBPATH
      dmalloc debugging:                $with_dmalloc
      Electric Fence debugging:         $with_efence
   ])
  
  
  


_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs