Mercurial > hg > octave-lyh
annotate libinterp/mk-pkg-add @ 17506:ff5ff67946cb
meshgrid.m: Close @code{} macro in docstring.
* scripts/plot/meshgrid.m: Close @code{} macro in docstring.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 25 Sep 2013 13:44:24 -0700 |
parents | 474e6d189de1 |
children |
rev | line source |
---|---|
16847
474e6d189de1
use SED in scripts/mk-pkg-add script, use set -e consistently
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
1 #! /bin/sh |
7019 | 2 # |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 # Copyright (C) 2005-2012 John W. Eaton |
7019 | 4 # |
5 # This file is part of Octave. | |
6 # | |
7 # Octave is free software; you can redistribute it and/or modify it | |
8 # under the terms of the GNU General Public License as published by the | |
9 # Free Software Foundation; either version 3 of the License, or (at | |
10 # your option) any later version. | |
11 # | |
12 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 # for more details. | |
16 # | |
17 # You should have received a copy of the GNU General Public License | |
18 # along with Octave; see the file COPYING. If not, see | |
19 # <http://www.gnu.org/licenses/>. | |
5534 | 20 |
16847
474e6d189de1
use SED in scripts/mk-pkg-add script, use set -e consistently
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
21 set -e |
474e6d189de1
use SED in scripts/mk-pkg-add script, use set -e consistently
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
22 |
5534 | 23 SED=${SED:-'sed'} |
24 | |
25 for f in "$@"; do | |
26 if [ -f $f ]; then | |
27 | |
28 ## Compute and print the autoloads. | |
29 | |
30 base=`basename $f | $SED 's/\.df$//'` | |
5865 | 31 fcns=`$SED -n -e 's/^ *XDEFUN_DLD_INTERNAL *( *\([^, ]*\)[, ].*$/\1/p' \ |
32 -e 's/^ *XDEFUNX_DLD_INTERNAL *( *"\([^"]*\)".*$/\1/p' $f | \ | |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
7019
diff
changeset
|
33 sort -u` |
5534 | 34 if [ -n "$fcns" ]; then |
35 for n in $fcns; do | |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
7019
diff
changeset
|
36 if [ "$n" = "$base" ]; then |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
7019
diff
changeset
|
37 true |
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
7019
diff
changeset
|
38 else |
6926 | 39 echo "autoload (\"$n\", \"$base.oct\");" |
10317
42d098307c30
untabify additional source files
John W. Eaton <jwe@octave.org>
parents:
7019
diff
changeset
|
40 fi |
5534 | 41 done |
42 fi | |
43 | |
44 ## Process PKG_ADD directives after autoloads so that all | |
45 ## necessary functions can be found before they are used. | |
46 | |
47 $SED -n -e 's,^//* *PKG_ADD: *,,p' \ | |
48 -e 's,^/\* *PKG_ADD: *\(.*\) *\*/ *$,\1,p' $f | |
49 | |
50 fi | |
51 done | |
52 | |
53 exit $? |