[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: Makefile.am
User: pcjc2
Date: 07/02/11 18:59:10
Modified: . Tag: noscreen Makefile.am gschemdoc.sh refdes_renum
Added: . Tag: noscreen gnet_hier_verilog.sh
Log:
Sync with trunc
Revision Changes Path
No revision
No revision
1.13.4.1 +3 -2 eda/geda/gaf/utils/scripts/Makefile.am
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Makefile.am
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/scripts/Makefile.am,v
retrieving revision 1.13
retrieving revision 1.13.4.1
diff -u -b -r1.13 -r1.13.4.1
--- Makefile.am 31 Oct 2006 13:16:08 -0000 1.13
+++ Makefile.am 11 Feb 2007 23:59:10 -0000 1.13.4.1
@@ -1,9 +1,10 @@
-## $Id: Makefile.am,v 1.13 2006/10/31 13:16:08 danmc Exp $
+## $Id: Makefile.am,v 1.13.4.1 2007/02/11 23:59:10 pcjc2 Exp $
##
## Process this file with automake to produce Makefile.in
bin_SCRIPTS = sarlacc_sym gschupdate gsymupdate gschemdoc refdes_renum \
- tragesym pads_backannotate garchive gsymfix.pl
+ tragesym pads_backannotate garchive gsymfix.pl \
+ gnet_hier_verilog.sh
EXTRA_DIST = convert_sym.awk gpstoimage mk_char_tab.pl \
sarlacc_sym gschupdate gsymupdate refdes_renum gsymfix.pl \
1.9.6.1 +8 -2 eda/geda/gaf/utils/scripts/gschemdoc.sh
(In the diff below, changes in quantity of whitespace are not shown.)
Index: gschemdoc.sh
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/scripts/gschemdoc.sh,v
retrieving revision 1.9
retrieving revision 1.9.6.1
diff -u -b -r1.9 -r1.9.6.1
--- gschemdoc.sh 27 Sep 2006 18:04:34 -0000 1.9
+++ gschemdoc.sh 11 Feb 2007 23:59:10 -0000 1.9.6.1
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: gschemdoc.sh,v 1.9 2006/09/27 18:04:34 cnieves Exp $
+# $Id: gschemdoc.sh,v 1.9.6.1 2007/02/11 23:59:10 pcjc2 Exp $
#
# NOTE: built from gschemdoc.sh
#
@@ -29,6 +29,12 @@
CANDIDATE_PDFREADER="xpdf acroread ggv gv"
CANDIDATE_LOCATE="slocate locate"
+# For OS X, since Linux has 'open' with different semantics
+if [ "`uname -s`" = "Darwin" ]; then
+ CANDIDATE_BROWSER="open $CANDIDATE_BROWSER"
+ CANDIDATE_PDFREADER="open $CANDIDATE_PDFREADER"
+fi
+
#
# make symbol filename into something more akin to a device name
#
@@ -80,7 +86,7 @@
echo "Using browser and file: $file"
# NOTE: Mozilla and Netscape does not seem to support
# -- on the command line
- ${browser} "file:$file"
+ ${browser} "file://$file"
exit
else
echo "Did not find a browser application."
1.2.6.1 +34 -11 eda/geda/gaf/utils/scripts/refdes_renum
(In the diff below, changes in quantity of whitespace are not shown.)
Index: refdes_renum
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/utils/scripts/refdes_renum,v
retrieving revision 1.2
retrieving revision 1.2.6.1
diff -u -b -r1.2 -r1.2.6.1
--- refdes_renum 21 Dec 2005 00:09:56 -0000 1.2
+++ refdes_renum 11 Feb 2007 23:59:10 -0000 1.2.6.1
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w
#
-# $Id: refdes_renum,v 1.2 2005/12/21 00:09:56 danmc Exp $
+# $Id: refdes_renum,v 1.2.6.1 2007/02/11 23:59:10 pcjc2 Exp $
#
# Copyright (C) 2003 Dan McMahill
#
@@ -36,11 +36,14 @@
# don't allow -he to be interpreted as --help
$Getopt::Long::autoabbrev=0;
+my $clear; # reset all refdes
+
&GetOptions(("help" => \&usage,
"nocopy" => \$nocopy,
"pgskip:i" => \$pgskip,
"verbose" => \$verbose,
- "version" => \&version
+ "version" => \&version,
+ "clear" => \$clear,
));
usage() if $Getopt::Long::error;
@@ -84,9 +87,12 @@
# is at work right now.
$pre = $line;
$pre =~ s/^refdes=//;
- $pre =~ s/[0-9\?]*$//;
- print "Refdes line \"$line\" has pre=\"$pre\"\n" if($verbose);
-
+ $pre =~ s/([0-9\?])*$//;
+ my $suf = $1;
+ print "Refdes line \"$line\" has pre=\"$pre\"m suf=$suf\n" if($verbose);
+ if ($clear) {
+ print OUTNET "refdes=$pre?\n";
+ } else {
# if we're skipping numbers, then start at 100 for page 1
# and we'll jump to 200 for page 2, etc.
if( ! $devcnt{$pre} ) { $devcnt{$pre} = $pgskip ? ($i+1)*$pgskip : 0; }
@@ -94,6 +100,7 @@
print "Renumbering $line to $pre$devcnt{$pre}\n" if($verbose);
print OUTNET "refdes=$pre$devcnt{$pre}\n";
}
+ }
close(NETLIST);
close(OUTNET);
@@ -206,6 +213,12 @@
# Change Log
#
# $Log: refdes_renum,v $
+# Revision 1.2.6.1 2007/02/11 23:59:10 pcjc2
+# Sync with trunc
+#
+# Revision 1.3 2007/02/10 20:46:17 sdb
+# Added --clear option to clear refdeses. (* jcl *)
+#
# Revision 1.2 2005/12/21 00:09:56 danmc
# - Fix a bug where when using the --pgskip option, components which were
# present on page n, but not on pages n+1 through n+j, and present again
No revision
No revision
1.1.2.1 +0 -0 eda/geda/gaf/utils/scripts/gnet_hier_verilog.sh
(In the diff below, changes in quantity of whitespace are not shown.)
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs