~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to tools/pdbgen/stddefs.pdb

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# The GIMP -- an image manipulation program
 
1
# GIMP - The GNU Image Manipulation Program
2
2
# Copyright (C) 1998-2003 Manish Singh <yosh@gimp.org>
3
3
 
4
4
# This program is free software; you can redistribute it and/or modify
22
22
    $date   = '1995-1996';
23
23
}
24
24
 
 
25
sub contrib_pdb_misc {
 
26
    my $a = shift;
 
27
    my $e = shift;
 
28
    my $d = shift;
 
29
    my $s = shift;
 
30
 
 
31
    if ($e eq '') {
 
32
        $author = "$a";
 
33
    } else {
 
34
        $author = "$a <$e>";
 
35
    }
 
36
 
 
37
    $copyright = "$a";
 
38
    $date = "$d";
 
39
 
 
40
    if ($s) {
 
41
        $since = "$s";
 
42
    }
 
43
}
 
44
 
 
45
sub adam_pdb_misc {
 
46
    contrib_pdb_misc('Adam D. Moss', '', @_);
 
47
}
 
48
 
 
49
sub adrian_pdb_misc {
 
50
    contrib_pdb_misc('Adrian Likins', 'adrian@gimp.org', @_);
 
51
}
 
52
 
 
53
sub andy_pdb_misc {
 
54
    contrib_pdb_misc('Andy Thomas', '', @_);
 
55
}
 
56
 
 
57
sub austin_pdb_misc {
 
58
    contrib_pdb_misc('Austin Donnelly', '', @_);
 
59
}
 
60
 
 
61
sub bill_pdb_misc {
 
62
    contrib_pdb_misc('Bill Skaggs', 'weskaggs@primate.ucdavis.edu', @_);
 
63
}
 
64
 
 
65
sub david_pdb_misc {
 
66
    contrib_pdb_misc('David Gowers', '', @_);
 
67
}
 
68
 
 
69
sub federico_pdb_misc {
 
70
    contrib_pdb_misc('Federico Mena Quintero', '', @_);
 
71
}
 
72
 
 
73
sub jay_pdb_misc {
 
74
    contrib_pdb_misc('Jay Cox', '', @_);
 
75
}
 
76
 
 
77
sub joao_pdb_misc {
 
78
    contrib_pdb_misc('Jo\xc3\xa3o S. O. Bueno Calligaris', '', @_);
 
79
}
 
80
 
 
81
sub josh_pdb_misc {
 
82
    contrib_pdb_misc('Josh MacDonald', '', @_);
 
83
}
 
84
 
 
85
sub kevins_pdb_misc {
 
86
    contrib_pdb_misc('Kevin Sookocheff', '', @_);
 
87
}
 
88
 
 
89
sub larry_pdb_misc {
 
90
    contrib_pdb_misc('Larry Ewing', '', @_);
 
91
}
 
92
 
 
93
sub marc_pdb_misc {
 
94
    contrib_pdb_misc('Marc Lehmann', '', @_);
 
95
}
 
96
 
 
97
sub martin_pdb_misc {
 
98
    contrib_pdb_misc('Martin Nordholts', '', @_);
 
99
}
 
100
 
 
101
sub mitch_pdb_misc {
 
102
    contrib_pdb_misc('Michael Natterer', 'mitch@gimp.org', @_);
 
103
}
 
104
 
 
105
sub neo_pdb_misc {
 
106
    contrib_pdb_misc('Sven Neumann', 'sven@gimp.org', @_);
 
107
}
 
108
 
 
109
sub nick_pdb_misc {
 
110
    contrib_pdb_misc('Nick Lamb', '', @_);
 
111
}
 
112
 
 
113
sub raphael_pdb_misc {
 
114
    contrib_pdb_misc('Rapha\xc3\xabl Quinet', 'raphael@gimp.org', @_);
 
115
}
 
116
 
 
117
sub rock_pdb_misc {
 
118
    contrib_pdb_misc('Nathan Summers', 'rock@gimp.org', @_);
 
119
}
 
120
 
 
121
sub seth_pdb_misc {
 
122
    contrib_pdb_misc('Seth Burgess', '', @_);
 
123
}
 
124
 
 
125
sub shlomi_pdb_misc {
 
126
    contrib_pdb_misc('Shlomi Fish', 'shlomif@iglu.org.il', @_);
 
127
}
 
128
 
 
129
sub simon_pdb_misc {
 
130
    contrib_pdb_misc('Simon Budig', '', @_);
 
131
}
 
132
 
 
133
sub sylvain_pdb_misc {
 
134
    contrib_pdb_misc('Sylvain Foret', '', @_);
 
135
}
 
136
 
 
137
sub wolfgang_pdb_misc {
 
138
    contrib_pdb_misc('Wolfgang Hofer', '', @_);
 
139
}
 
140
 
 
141
sub yosh_pdb_misc {
 
142
    contrib_pdb_misc('Manish Singh', '', @_);
 
143
}
 
144
 
25
145
sub std_pdb_deprecated {
26
146
    if (@_) {
27
147
        $blurb = $help = "This procedure is deprecated! Use '@_' instead.";
33
153
    $author = $copyright = $date = '';
34
154
}
35
155
 
36
 
sub std_image_arg () {{
37
 
    name  => 'image',   
38
 
    type  => 'image',
39
 
    desc  => 'The image',
40
 
    alias => 'gimage'
41
 
}}
42
 
 
43
 
sub std_antialias_arg () {{
44
 
    name => 'antialias',
45
 
    type => 'boolean',
46
 
    desc => 'Antialiasing (%%desc%%)'
47
 
}}
48
 
 
49
 
sub std_orientation_enum () {
50
 
    'enum GimpOrientationType (no GIMP_ORIENTATION_UNKNOWN)'
51
 
}
52
 
 
53
156
1;