]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - adapter.awk
- some fedora extras addons
[packages/rpm-build-tools.git] / adapter.awk
CommitLineData
acf3b940 1#!/usr/bin/gawk -f
16397458 2#
b8f9e95a 3# Adapter adapts .spec files for PLD Linux.
73e1a9a3 4#
0fc8ec50 5# Copyright (C) 1999-2011 PLD-Team <feedback@pld-linux.org>
73e1a9a3 6# Authors:
d3da6a6e 7# Michał Kuratczyk <kura@pld.org.pl>
b741d74d 8# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
d3da6a6e 9# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
fb9ab58f 10# Artur Frysiak <wiget@pld-linux.org>
2873c9d1 11# Michal Kochanowicz <mkochano@pld.org.pl>
f3a8d634 12# Jakub Bogusz <qboosh@pld-linux.org>
d3da6a6e 13# Elan Ruusamäe <glen@pld-linux.org>
d5f65bb3
ER
14#
15# See cvs log adapter{,.awk} for list of contributors
16#
73e1a9a3 17# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3b100864 18
3f6918f6 19# TODO
a73cc8a9 20# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
3f6918f6
ER
21# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
22# - add "-nc" option to skip CVS interaction
a3ca2c50
ER
23# - sort Summary(XX)
24# - sort Requires, BuildRequires
2e214691 25# - check if %description (lang=C) contains 8bit
a3ad3d2b 26# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
8921159f
ER
27# - it should change: /%source([0-9]+)/i to %{SOURCE\1}
28# - extra quote on LDFLAGS line: https://bugs.launchpad.net/pld-linux/+bug/385836
512524be
AG
29# - %{with_foo:%attr()...} gets converted to %attr() %{with_foo:...} [vlc.spec]
30# - 'R: foo ' (with traliling space) gets coverted to "R: foo\nR: " [vlc.spec @ 1.199 ]
3f6918f6 31
16397458 32BEGIN {
b7ab5ec4 33 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
41c24376 34 SECTIONS = "^%(" RPM_SECTIONS ")"
37403736 35
b8f9e95a
ER
36 RCSID = "$Id$"
37 rev = RCSID # TODO: parse from RCSID
b0f031e7 38 VERSION = "0.35/" rev
b8f9e95a 39
7a5425d8 40 PREAMBLE_TAGS = "(R|BR|Summary|Name|Version|Release|Epoch|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|Pre[Rr]eq|(Build)?Requires|Suggests|Auto(Req|Prov))"
7c43f31c 41
8271f9dc
PZ
42 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
43
a3c6bbce 44 preamble = 1 # Is it part of preamble? Default - yes
a3ad3d2b
ER
45 boc = 4 # Beginning of %changelog
46 bod = 0 # Beginning of %description
2b4c59bc 47 tw = 70 # Descriptions width
d2bcf054 48
a5e4249b 49 b_idx = 0 # index of BR/R arrays
42cd9911 50 BR_count = 0 # number of additional BuildRequires
a5e4249b 51
2f46ef70 52 # If variable removed, then 1 (for removing it from export)
53 removed["LDFLAGS"] = 0
54 removed["CFLAGS"] = 0
55 removed["CXXFLAGS"] = 0
308c7423 56
337741dd 57 # If 1, we are inside of comment block (started with /^#%/)
58 comment_block = 0
d2bcf054 59
dfff3476
ER
60 import_rpm_macros()
61
e496dbf5 62 packages_dir = topdir
202b96a2 63 groups_file = packages_dir "/rpm.groups"
dfff3476 64
202b96a2 65 system("cd "packages_dir"; [ -f rpm.groups ] || cvs up rpm.groups > /dev/null")
7df3947d 66 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
6b02d821 67
308c7423 68 # Temporary file for changelog section
a91eec5c 69 changelog_file = mktemp("adapter.changelogXXXXXX")
16397458 70}
71
72# There should be a comment with CVS keywords on the first line of file.
be7dead6 73FNR == 1 {
a1887a6a 74 if (!/^# \$[R]evision: .* \$, \$[D]ate: .* \$$/) { # If this line is already OK?
6b02d821 75 print "# $" "Revision:$, " "$" "Date:$" # No
4019a00f 76 if ( /^#.*([rR]evision|[dD]ate)/ ) # There was something similar, but incorrect
77 next
78 } else {
6b02d821 79 print $0 # Yes
80 next # It is enough for first line
95255dcd 81 }
16397458 82}
83
a9f3f77c 84# If the latest line matched /%files/
85defattr == 1 {
ff9e2987
ER
86 if (ENVIRON["SKIP_DEFATTR"] != 1) {
87 if ($0 !~ /defattr/) { # If no %defattr
88 print "%defattr(644,root,root,755)" # Add it
89 } else {
90 $0 = "%defattr(644,root,root,755)" # Correct mistakes (if any)
91 }
92 }
32bb73d8 93 defattr = 0
a9f3f77c 94}
95
a91eec5c
ER
96# call mktemp(1) and return the value
97function mktemp(template, tmp) {
98 "mktemp " template | getline tmp
99 return tmp
100}
101
a5e4249b
ER
102function b_makekey(a, b, s) {
103 s = a "" b;
104 # kill bcond
42cd9911 105 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
f24835a8 106
f51e180c 107 # kill commented out items
42cd9911 108 gsub(/^#[ \t]*/, "", s);
f24835a8 109
7c43f31c 110 # force order
7a5425d8 111 gsub(/^Summary\(/, "11Summary(", s);
661f0bb5 112 gsub(/^Summary/, "10Summary", s);
7a5425d8 113
c2de2587
ER
114 gsub(/^Name/, "2Name", s);
115 gsub(/^Version/, "3Version", s);
116 gsub(/^Release/, "4Release", s);
117 gsub(/^Epoch/, "5Epoch", s);
118 gsub(/^License/, "5License", s);
119 gsub(/^Group/, "6Group", s);
120 gsub(/^URL/, "7URL", s);
121
122 gsub(/^BuildRequires/, "B1BuildRequires", s);
123 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
2f89c197 124
2f89c197 125 gsub(/^Suggests/, "X1Suggests", s);
1f042910
JB
126 gsub(/^Provides/, "X2Provides", s);
127 gsub(/^Obsoletes/, "X3Obsoletes", s);
128 gsub(/^Conflicts/, "X4Conflicts", s);
129 gsub(/^BuildArch/, "X5BuildArch", s);
c2de2587
ER
130 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
131 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
132 gsub(/^BuildRoot/, "X9BuildRoot", s);
c0bcd06f 133
7a5425d8
ER
134 gsub(/^AutoProv/, "Xx1AutoProv", s);
135 gsub(/^AutoReq/, "Xx2AutoReq", s);
136
c0bcd06f 137# printf("%s -> %s\n", a""b, s);
a5e4249b
ER
138 return s;
139}
140
0bbcf6b4 141# Comments
2f97d8ea 142/^#/ && (description == 0) {
0bbcf6b4 143 if (/This file does not like to be adapterized!/) {
144 print # print this message
145 while (getline) # print the rest of spec as it is
146 print
147 do_not_touch_anything = 1 # do not touch anything in END()
0314a444 148 exit(rc = 0)
0bbcf6b4 149 }
337741dd 150
0bbcf6b4 151 # Generally, comments are printed without touching
62565bd5 152 sub(/[ \t]+$/, "")
003a22bc 153
8271f9dc
PZ
154 if (/#[ \t]*Source.*md5/) {
155 if (usedigest == 1) {
156 sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
157 sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
158 }
003a22bc
ER
159 print $0
160 next
161 }
337741dd 162}
163
d71e64d1 164/^%define/ {
37403736 165 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
17bd16f3 166 if ($2 == "_applnkdir") {
6e01f9db 167 next
17bd16f3
ER
168 }
169 if ($2 == "date") {
6e01f9db 170 date = 1
6cfaf341
ER
171 if (did_files == 0) {
172 print "%files"
173 print ""
174 did_files = 1
175 }
17bd16f3
ER
176 }
177
178 # Do not add %define of _prefix if it already is.
179 if ($2 ~ /^_prefix/) {
180 sub("^"prefix, $3, bindir)
181 sub("^"prefix, $3, sbindir)
182 sub("^"prefix, $3, libdir)
183 sub("^"prefix, $3, datadir)
184 sub("^"prefix, $3, includedir)
185 prefix = $3
186 }
187
188 if ($2 ~ /_bindir/ && !/_sbindir/)
189 bindir = $3
190 if ($2 ~ /_sbindir/)
191 sbindir = $3
5dc7f4ee
ER
192 if ($2 ~ /_libdir/) {
193 if ($3 ~ /^%\(/) {
194 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
195 libdir = "%%%%%%%%%%%%%%"
196 } else {
197 libdir = $3
198 }
199 }
37403736
ER
200 if ($2 ~ /_sysconfdir/) {
201 if ($3 ~ /^%\(/) {
202 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
203 sysconfdir = "%%%%%%%%%%%%%%"
204 } else {
205 sysconfdir = $3
206 }
207 }
5dc7f4ee
ER
208 if ($2 ~ /_datadir/) {
209 if ($3 ~ /^%\(/) {
210 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
211 datadir = "%%%%%%%%%%%%%%"
212 } else {
213 datadir = $3
214 }
215 }
17bd16f3
ER
216 if ($2 ~ /_includedir/)
217 includedir = $3
218 if ($2 ~ /_mandir/)
219 mandir = $3
220 if ($2 ~ /_infodir/)
221 infodir = $3
99b02f64
ER
222 if ($2 ~ /_docdir/)
223 docdir = $3
17bd16f3
ER
224
225 # version related macros
226 if ($2 ~ /^_beta$/)
227 _beta = $3
228 if ($2 ~ /^_rc$/)
229 _rc = $3
f8281d0c
ER
230 if ($2 ~ /^_pre$/)
231 _pre = $3
17bd16f3
ER
232 if ($2 ~ /^_snap$/)
233 _snap = $3
88c76b14
ER
234 if ($2 ~ /^subver$/)
235 subver = $3
17bd16f3
ER
236
237 # these are used usually when adapterizing external spec
238 if ($2 ~ /^name$/)
239 name = $3
240 if ($2 ~ /^version$/)
241 version = $3
242 if ($2 ~ /^release$/)
243 release = $3
5fd6c8d4 244
0311af17
ER
245 if ($2 ~ /^mod_name$/)
246 mod_name = $3
bff32a15
ER
247 if ($2 ~ /^_?pearname$/)
248 pearname = $3
da1f781c
ER
249 if ($2 ~ /^_class$/)
250 pear_class = $3
251 if ($2 ~ /^_subclass$/)
252 pear_subclass = $3
253
254 # kill the _class and _subclass pear macros
255 if ($2 == "_pearname" || $2 == "pearname") {
256 if (pear_class) {
257 gsub("%{_class}", pear_class, $3);
258 }
259 if (pear_subclass) {
260 gsub("%{_subclass}", pear_subclass, $3);
261 }
262 }
0311af17 263
f0c5c231 264 sub(/[ \t]+$/, "");
5fd6c8d4
ER
265 # do nothing further, otherwise adapter thinks we're at preamble
266 print
267 next
d71e64d1
SZ
268}
269
a3ca2c50
ER
270# Obsolete
271/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
272 next
273}
274
337741dd 275################
276# %description #
277################
37403736 278/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
32bb73d8 279 preamble = 0
948cad9c 280
3b100864 281 if (/^%description/) {
32bb73d8 282 bod++
73e1a9a3 283 format_line = ""
284 format_indent = -1
3b100864
SZ
285 }
286
73e1a9a3 287 # Format description
db167e61 288 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3b100864 289 if (/^[ \t]*$/) {
73e1a9a3 290 format_flush(format_line, format_indent)
3b100864 291 print ""
73e1a9a3 292 format_line = ""
293 format_indent = -1
3b100864 294 } else if (/^[ \t]*[-\*][ \t]*/) {
73e1a9a3 295 format_flush(format_line, format_indent)
d2bcf054 296 match($0, /^[ \t]*/)
73e1a9a3 297 format_indent = RLENGTH
298 match($0, /^[ \t]*[-\*][ \t]/)
299 format_line = substr($0, RLENGTH)
d2bcf054 300 } else
73e1a9a3 301 format_line = format_line " " $0
32bb73d8 302 next
948cad9c 303 }
d2bcf054 304
d71e64d1 305 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
4bd1116d 306 if (NF > 3 && $2 == "-l") {
307 ll = $1
308 for (i = 4; i <= NF; i++)
309 ll = ll " " $i
310 $0 = ll " -l " $3
311 }
73e1a9a3 312 format_flush(format_line, format_indent)
948cad9c 313 if (bod == 2) {
32bb73d8
SZ
314 bod = 1
315 description = 1
948cad9c 316 } else {
32bb73d8
SZ
317 bod = 0
318 description = 0
948cad9c 319 }
320 } else
32bb73d8 321 description = 1
16397458 322}
323
337741dd 324#########
325# %prep #
326#########
37403736 327/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
32bb73d8 328 preamble = 0
6cfaf341 329 did_prep = 1
d2bcf054 330
e62422da
ER
331 use_macros()
332
a9f3f77c 333 # Add '-q' to %setup
ef56a1ca 334 if (/^%setup/ && !/-q/) {
d71e64d1 335 sub(/^%setup/, "%setup -q")
ef56a1ca
ER
336 }
337
671ba17b 338 if (/^%setup/ && name != "setup") {
928c2651
ER
339 $0 = fixedsub(name, "%{name}", $0);
340 $0 = fixedsub(version, "%{version}", $0);
3e20c912 341 if (_beta) {
928c2651 342 $0 = fixedsub(_beta, "%{_beta}", $0);
3e20c912
ER
343 }
344 if (_rc) {
928c2651 345 $0 = fixedsub(_rc, "%{_rc}", $0);
3e20c912 346 }
f8281d0c
ER
347 if (_pre) {
348 $0 = fixedsub(_pre, "%{_pre}", $0);
349 }
3e20c912 350 if (_snap) {
928c2651 351 $0 = fixedsub(_snap, "%{_snap}", $0);
3e20c912 352 }
88c76b14
ER
353 if (subver) {
354 $0 = fixedsub(subver, "%{subver}", $0);
355 }
d769e78f
ER
356 }
357
6f7b0e46 358 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
928c2651 359 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
ef56a1ca 360 }
42cd9911 361 sub("^%patch ", "%patch0 ");
e62422da 362
b7b03087
ER
363 # fedora extras
364 if (/^%apply/) {
365 sub("^%apply -n", "%patch");
366 }
367
e62422da
ER
368 # invalid in %prep
369 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
16397458 370}
371
337741dd 372##########
373# %build #
374##########
37403736 375/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
32bb73d8 376 preamble = 0
16397458 377
6cfaf341
ER
378 if (did_prep == 0) {
379 print "%prep"
380 print ""
381 did_prep = 1
382 }
383
32bb73d8 384 use_macros()
035bfa01 385 use_tabs()
d2bcf054 386
68694f00 387 if (/^automake$/)
388 sub(/$/, " -a -c")
389
0972e97d 390 if (/LDFLAGS/) {
2f46ef70 391 if (/LDFLAGS="-s"/) {
392 removed["LDFLAGS"] = 1
393 next
394 } else {
395 split($0, tmp, "LDFLAGS=")
0972e97d 396 count = split(tmp[2], flags, "\"")
2f46ef70 397 if (flags[1] != "" && flags[1] !~ "!?debug") {
fe9a6f09 398 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
2f46ef70 399 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
400 for (i = 2; i < count; i++)
401 $0 = $0 flags[i] "\""
402 }
0972e97d 403 }
404 }
405
406 if (/CFLAGS=/)
407 if (cflags("CFLAGS") == 0)
408 next
409
410 if (/CXXFLAGS=/)
411 if (cflags("CXXFLAGS") == 0)
412 next
d2bcf054 413
2f46ef70 414 if (/^export /) {
415 if (removed["LDFLAGS"])
416 sub(" LDFLAGS", "")
417 if (removed["CFLAGS"])
418 sub(" CFLAGS", "")
419 if (removed["CXXFLAGS"])
420 sub(" CXXFLAGS", "")
421 # Is there still something?
422 if (/^export[ ]*$/)
423 next
424 }
02c61abb 425
b5f420e4 426 # quote CC
02c61abb
ER
427 if (/CC=%{__cc} /) {
428 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
429 }
d92d1e4f 430
6702f869 431 # use PLD Linux macros
d92d1e4f
ER
432 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
433 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
b5f420e4 434 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
438df441 435 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
a5ab7844 436 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
82e1c3ee 437 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
438df441
ER
438 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
439 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
b5f420e4
ER
440
441 sub(/^aclocal$/, "%{__aclocal}");
442 sub(/^autoheader$/, "%{__autoheader}");
443 sub(/^autoconf$/, "%{__autoconf}");
444 sub(/^automake$/, "%{__automake}");
82e1c3ee 445 sub(/^libtoolize$/, "%{__libtoolize}");
d2bcf054 446
023aea7a
ER
447 # atrpms
448 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
449 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
fa5bc15c
ER
450
451 # alt linux
452 $0 = fixedsub("%make_build", "%{__make}", $0);
16397458 453}
454
337741dd 455##########
456# %clean #
457##########
37403736 458/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
aa666779 459 did_clean = 1
6702f869 460
42cd9911 461 use_macros()
aa666779
SZ
462}
463
337741dd 464############
465# %install #
466############
37403736 467/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
d2bcf054 468
32bb73d8 469 preamble = 0
d2bcf054 470
43042a15 471 # foreign rpms
6af280a5 472 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
42cd9911
ER
473 sub("%buildroot", "$RPM_BUILD_ROOT");
474 sub("%{buildroot}", "$RPM_BUILD_ROOT");
43042a15 475
6af280a5 476 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
aa666779 477 did_rmroot=1
b741d74d
SZ
478 print "rm -rf $RPM_BUILD_ROOT"
479 next
480 }
a9f3f77c 481
aa666779 482 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
b741d74d 483 print "rm -rf $RPM_BUILD_ROOT"
aa666779 484 did_rmroot=1
b741d74d 485 }
d2bcf054 486
42cd9911
ER
487 if (tmpdir) {
488 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
ab73bfb4 489 gsub(buildroot, "$RPM_BUILD_ROOT")
42cd9911 490 }
ab73bfb4 491
42cd9911
ER
492 if (!/%{_lib}/) {
493 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
494 }
1f948ece 495
b741d74d 496 use_macros()
d2bcf054 497
16397458 498 # 'install -d' instead 'mkdir -p'
499 if (/mkdir -p/)
32bb73d8 500 sub(/mkdir -p/, "install -d")
0071ffb3 501
96b01e16 502 # cp -a already implies cp -r
42cd9911 503 sub(/^cp -ar/, "cp -a")
d2bcf054 504
a9f3f77c 505 # No '-u root' or '-g root' for 'install'
7d285e55 506 if (/^install/ && /-[ug][ \t]*root/)
32bb73d8 507 gsub(/-[ug][ \t]*root /, "")
d2bcf054 508
db929c93
ER
509 if (/^install/ && /-m[ \t]*[0-9]+/)
510 gsub(/-m[ \t]*[0-9]+ /, "")
d2bcf054 511
6b02d821 512 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
a9f3f77c 513 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
32bb73d8 514 next
d2bcf054 515
a9f3f77c 516 # No lines contain 'chmod' if it sets the modes to '644'
7d285e55 517 if ($1 ~ /chmod/ && $2 ~ /644/)
32bb73d8 518 next
023aea7a 519
023aea7a
ER
520 # atrpms
521 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
fa5bc15c
ER
522
523 # alt linux
524 $0 = fixedsub("%make_install DESTDIR=$RPM_BUILD_ROOT install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
16397458 525}
526
337741dd 527##########
528# %files #
529##########
37403736 530/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
32bb73d8 531 preamble = 0
6cfaf341 532 did_files = 1
d2bcf054 533
d71e64d1 534 if ($0 ~ /^%files/)
32bb73d8 535 defattr = 1
d2bcf054 536
11dd9628
ER
537 if (!use_files_macros()) {
538 next
539 }
16397458 540}
541
337741dd 542##############
543# %changelog #
544##############
37403736 545/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
32bb73d8 546 preamble = 0
b741d74d 547 has_changelog = 1
dae2a065 548 skip = 0
16397458 549 # There should be some CVS keywords on the first line of %changelog.
dae2a065 550 if (boc == 3) {
a5e6295e 551 if ($0 !~ _cvsmailfeedback) {
e0ab434c 552 print "* %{date} " _cvsmailfeedback > changelog_file
a5e6295e 553 } else {
dae2a065 554 skip = 1
a5e6295e 555 }
dae2a065 556 boc = 2
1fefb3da 557 }
dae2a065 558 if (boc == 2 && !skip) {
1fefb3da 559 if (!/All persons listed below/) {
e6ca8854 560 printf "All persons listed below can be reached at " > changelog_file
e0ab434c 561 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
a5e6295e 562 } else {
dae2a065 563 skip = 1
a5e6295e 564 }
7bfb8673 565 boc = 1
16397458 566 }
dae2a065
JB
567 if (boc == 1 && !skip) {
568 if (!/^$/) {
a5e6295e 569 if (!/\$.*Log:.*\$/) {
dae2a065 570 print "$" "Log:$" > changelog_file
a5e6295e 571 }
dae2a065
JB
572 boc = 0
573 }
1fefb3da 574 }
6544a775 575 # Define date macro.
1fefb3da 576 if (boc == 4) {
57862255 577 if (date == 0) {
308c7423 578 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
579 print " date +\"%a %b %d %Y\"`)" > changelog_file
1a2653e7 580 date = 1
57862255 581 }
1fefb3da 582 boc = 3
6544a775 583 }
308c7423 584
a5e6295e
ER
585 sub(/[ \t]+$/, "");
586 if (!/^%[a-z]+$/ || /changelog/) {
587 # stop changelog if "real" changelog starts
588 if (boc == 0 && /^\* /) {
589 boc = -1
590 }
591 if (boc == -1) {
592 next;
593 }
308c7423 594 print > changelog_file
a5e6295e 595 } else {
308c7423 596 print
a5e6295e 597 }
308c7423 598 next
16397458 599}
600
337741dd 601###########
602# SCRIPTS #
603###########
37403736 604/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
337741dd 605 preamble = 0
c6aa1f63 606
afca35ce
ER
607 if (gsub("/usr/sbin/useradd", "%useradd")) {
608 sub(" 2> /dev/null \|\| :", "");
609 sub(" >/dev/null 2>&1 \|\|:", "");
610 }
611
b7b03087
ER
612 # fedora extras macros
613 if (/%__fe_useradd/) {
614 sub("%__fe_useradd", "%useradd -u ");
615 sub(" 2> /dev/null \|\| :", "");
616 sub(" >/dev/null 2>&1 \|\|:", "");
617 sub(" &>/dev/null \\|\\| :", "");
618 }
619
620 if (/%__fe_groupadd/) {
621 sub("%__fe_groupadd", "%groupadd -g ");
622 sub(" &>/dev/null \\|\\| :", "");
623 }
624
c6aa1f63
ER
625 # %useradd and %groupadd may not be wrapped
626 if (/%(useradd|groupadd).*\\$/) {
627 a = $0; getline;
628 sub(/^[\s\t]*/, "");
629 $0 = substr(a, 1, length(a) - 1) $0;
630 }
afca35ce 631 use_script_macros()
337741dd 632}
c6aa1f63 633
37403736 634/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
337741dd 635 preamble = 0
b7b03087
ER
636
637 # fedora extras macros
638 sub("%__chkconfig", "/sbin/chkconfig");
639
99b02f64 640 use_macros()
337741dd 641}
37403736 642/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
337741dd 643 preamble = 0
eba571c8 644 use_macros()
337741dd 645}
37403736 646/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
337741dd 647 preamble = 0
b7b03087
ER
648
649 # fedora extras macros
650 if (/%__fe_userdel|%__fe_groupdel/) {
651 sub("%__fe_groupdel", "%groupremove");
652 sub("%__fe_userdel", "%userremove");
653 sub(" &>/dev/null \\|\\| :", "");
654 }
655
afca35ce 656 use_script_macros()
337741dd 657}
37403736 658/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
74e9aad8 659 preamble = 0
afca35ce 660 use_script_macros()
74e9aad8 661}
37403736 662/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
74e9aad8 663 preamble = 0
afca35ce 664 use_script_macros()
74e9aad8 665}
37403736 666/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
74e9aad8 667 preamble = 0
afca35ce 668 use_script_macros()
74e9aad8 669}
37403736 670/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
74e9aad8 671 preamble = 0
afca35ce 672 use_script_macros()
74e9aad8 673}
37403736 674/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
74e9aad8 675 preamble = 0
afca35ce 676 use_script_macros()
74e9aad8 677}
b7ab5ec4
ER
678/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
679 preamble = 0
afca35ce 680 use_script_macros()
b7ab5ec4
ER
681}
682/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
683 preamble = 0
afca35ce 684 use_script_macros()
b7ab5ec4 685}
337741dd 686
687#############
688# PREAMBLES #
689#############
16397458 690preamble == 1 {
7d285e55 691 # There should not be a space after the name of field
692 # and before the colon.
32bb73d8 693 sub(/[ \t]*:/, ":")
d2bcf054 694
1ea917a3
ER
695 if (/^%perl_module_wo_prefix/) {
696 name = $2
697 version = $3
698 release = "0." fixedsub(".%{disttag}.at", "", $4)
699 }
700
32bb73d8 701 field = tolower($1)
8538dc99 702 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
61182440
ER
703 sub(/\.$/, "", $0);
704 }
2873c9d1 705 if (field ~ /group(\([^)]+\)):/)
5b95e677 706 next
2873c9d1 707 if (field ~ /group:/) {
708 format_preamble()
c0bcd06f
ER
709 group = $0;
710 sub(/^[^ \t]*[ \t]*/, "", group);
eddfcbd4 711 group = replace_groupnames(group);
c0bcd06f
ER
712 $0 = "Group:\t\t" group
713
714 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
2b4c59bc 715 x11 = 1
b2ba29bc 716
c0bcd06f 717 byl_plik_z_groupmi = 0
b2ba29bc
SZ
718 byl_opis_grupy = 0
719 while ((getline linia_grup < groups_file) > 0) {
c0bcd06f
ER
720 byl_plik_z_groupmi = 1
721 if (linia_grup == group) {
b2ba29bc
SZ
722 byl_opis_grupy = 1
723 break
724 }
725 }
ada044b5 726
c0bcd06f 727 if (!byl_plik_z_groupmi)
b2ba29bc
SZ
728 print "######\t\t" groups_file ": no such file"
729 else if (!byl_opis_grupy)
730 print "######\t\t" "Unknown group!"
d2bcf054 731
b2ba29bc 732 close(groups_file)
6cfaf341 733 did_groups = 1
b2ba29bc 734 }
d2bcf054 735
7f2507f0 736 if (field ~ /prereq:/) {
37457756 737 sub(/Pre[Rr]eq:/, "Requires:", $1);
7f2507f0
ER
738 }
739
6639ea54 740 # split (build)requires, obsoletes on commas
d8e87618 741 if (field ~ /(obsoletes|requires|provides|conflicts|suggests):/ && NF > 2) {
9911efc1
ER
742 value = substr($0, index($0, $2));
743 $0 = format_requires($1, value);
2776dcb6 744 }
42cd9911 745
7198ba75
ER
746 # BR: tar (and others) is to common (rpm-build requires it)
747 if (field ~ /^buildrequires:/) {
a3adad27
ER
748 l = substr($0, index($0, $2));
749 if (l == "awk" ||
750 l == "binutils" ||
751 l == "bzip2" ||
752 l == "cpio" ||
753 l == "diffutils" ||
754 l == "elfutils" ||
755 l == "fileutils" ||
756 l == "findutils" ||
757 l == "glibc-devel" ||
758 l == "grep" ||
759 l == "gzip" ||
760 l == "make" ||
761 l == "patch" ||
762 l == "sed" ||
763 l == "sh-utils" ||
764 l == "tar" ||
765 l == "textutils") {
7198ba75
ER
766 next
767 }
15677f60 768
485540f7 769 replace_requires();
7198ba75
ER
770 }
771
5005c892 772 if (field ~ /^requires:/ || field ~ /^requires\(/) {
485540f7 773 replace_requires();
42cd9911 774 }
cdf38256
ER
775
776
ea66cafb 777 # obsolete/unwanted tags
98125519 778 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
32bb73d8 779 next
9911efc1 780 }
d2bcf054 781
6cfaf341 782 if (field ~ /buildroot:/) {
faabbd89 783 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
6cfaf341
ER
784 did_build_root = 1
785 }
7d285e55 786
7d285e55 787 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
89411bba 788 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
32bb73d8 789 $1 = "License:"
89411bba 790 }
d2bcf054 791
1a35d71c
ER
792 # ease updating from debian .dsc
793 if (field ~ /homepage:/) {
794 $1 = "URL:"
795 }
796
a6b4adc9
ER
797 # suse
798 if (field ~ /recommends:/) {
799 $1 = "Suggests:"
800 }
801
692116a3 802 if ($3 == "==" && $1 !~ /%/) {
a6b4adc9
ER
803 $3 = "="
804 }
805
baec8afd
ER
806 if (field ~ /license:/) {
807 l = substr($0, index($0, $2));
808 if (l == "Python Software Foundation License") {
809 l = "PSF"
810 }
4f02884b
ER
811 if (l == "Apache License 2.0" || l == "Apache 2.0" || l == "Apache License Version 2.0" || l == "Apache License, Version 2.0" || l == "Apache Software License v2") {
812 l = "Apache v2.0"
813 }
814 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
815 l = "Apache"
816 }
817 if (l == "Apache-style License" || l == "Apache-style Software License") {
818 l = "Apache-like"
819 }
820 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
821 l = "Apache v1.1"
822 }
5e624f99
ER
823 if (l == "GPLv2") {
824 l = "GPL v2"
825 }
826 if (l == "GPLv2+") {
827 l = "GPL v2+"
828 }
7643e340
ER
829 if (l == "GPL v2 or later") {
830 l = "GPL v2+"
831 }
a6b4adc9
ER
832 if (l == "LGPL v2.0 only") {
833 l = "LGPL v2"
834 }
1a296ebe
ER
835 if (l == "LGPLv2+") {
836 l = "LGPL v2+"
837 }
f6187a9d
ER
838 if (l == "GPLv3") {
839 l = "GPL v3"
840 }
841 if (l == "GPLv3+") {
842 l = "GPL v3+"
843 }
eb9c5afa
ER
844 if (l == "MPLv1.1") {
845 l = "MPL v1.1"
846 }
baec8afd
ER
847 $0 = "License:\t" l;
848 }
849
850
1ea917a3 851 if (field ~ /name:/) {
95266981 852 if ($2 == "%{name}" && name) {
2fce9750
ER
853 $2 = name
854 }
32bb73d8 855 name = $2
1ea917a3
ER
856 name_seen = 1;
857 }
7d285e55 858
1ea917a3 859 if (field ~ /version:/) {
2fce9750
ER
860 if ($2 == "%{version}" && version) {
861 $2 = version
862 }
32bb73d8 863 version = $2
1ea917a3
ER
864 version_seen = 1;
865 }
866
867 if (field ~ /release:/) {
2fce9750
ER
868 if ($2 == "%{release}" && release) {
869 $2 = release
870 }
6cfaf341 871 sub(/%atrelease /, "0.", $0)
1ea917a3
ER
872 release = $2
873 release_seen = 1;
874 }
7d285e55 875
98125519 876
246dbfc6
SZ
877 if (field ~ /serial:/)
878 $1 = "Epoch:"
017fc990 879
98125519
ER
880 if (field ~ /home-page:/)
881 $1 = "URL:"
882
4edf81f6 883 # proper caps
7e50ffd2 884 if (field ~ /^url:$/)
4edf81f6
ER
885 $1 = "URL:"
886
f6187a9d
ER
887 if (field ~ /^patch/)
888 $1 = "Patch" substr(field, 6);
889
98125519
ER
890 if (field ~ /^description:$/)
891 $1 = "\n%description\n"
892
7d285e55 893 # Use %{name} and %{version} in the filenames in "Source:"
93ad28bc 894 if (field ~ /^source/ || field ~ /patch/) {
32bb73d8 895 n = split($2, url, /\//)
66437059
SZ
896 if (url[n] ~ /\.gz$/) {
897 url[n+1] = ".gz" url[n+1]
898 sub(/\.gz$/,"",url[n])
899 }
900 if (url[n] ~ /\.zip$/) {
901 url[n+1] = ".zip" url[n+1]
902 sub(/\.zip$/,"",url[n])
903 }
904 if (url[n] ~ /\.tar$/) {
905 url[n+1] = ".tar" url[n+1]
906 sub(/\.tar$/,"",url[n])
907 }
908 if (url[n] ~ /\.patch$/) {
909 url[n+1] = ".patch" url[n+1]
910 sub(/\.patch$/,"",url[n])
911 }
912 if (url[n] ~ /\.bz2$/) {
913 url[n+1] = ".bz2" url[n+1]
914 sub(/\.bz2$/,"",url[n])
915 }
45465264
SZ
916 if (url[n] ~ /\.logrotate$/) {
917 url[n+1] = ".logrotate" url[n+1]
918 sub(/\.logrotate$/,"",url[n])
919 }
920 if (url[n] ~ /\.pamd$/) {
921 url[n+1] = ".pamd" url[n+1]
922 sub(/\.pamd$/,"",url[n])
923 }
924
bf246f77 925 # allow %{name} only in last url component
ccb3335c
ER
926 s = ""
927 for (i = 1; i <= n; i++) {
928 url[i] = fixedsub("%{name}", name, url[i])
929 if (s) {
930 s = s "/" url[i]
931 } else {
932 s = url[i]
933 }
934 }
935 $2 = s url[n+1]
936
32bb73d8 937 filename = url[n]
4c237f9d
ER
938 if (name) {
939 url[n] = fixedsub(name, "%{name}", url[n])
940 }
85bbdbed 941 if (field ~ /source/) {
4c237f9d
ER
942 if (version) {
943 url[n] = fixedsub(version, "%{version}", url[n])
944 }
85bbdbed
ER
945 if (_beta) {
946 url[n] = fixedsub(_beta, "%{_beta}", url[n])
947 }
948 if (_rc) {
949 url[n] = fixedsub(_rc, "%{_rc}", url[n])
950 }
f8281d0c
ER
951 if (_pre) {
952 url[n] = fixedsub(_pre, "%{_pre}", url[n])
953 }
85bbdbed
ER
954 if (_snap) {
955 url[n] = fixedsub(_snap, "%{_snap}", url[n])
956 }
88c76b14
ER
957 if (subver) {
958 url[n] = fixedsub(subver, "%{subver}", url[n])
959 }
85bbdbed 960 }
f175a699 961 # assigning to $2 kills preamble formatting
66437059 962 $2 = fixedsub(filename, url[n], $2)
d2bcf054 963
0b8c0588 964 $2 = unify_url($2)
7d285e55 965 }
be7dead6 966
d2bcf054 967
93ad28bc 968 if (field ~ /^source:/)
d2bcf054 969 $1 = "Source0:"
32bb73d8 970
ff9e2987 971 if (field ~ /^patch:/)
32bb73d8 972 $1 = "Patch0:"
d2bcf054 973
0311af17 974 kill_preamble_macros();
32bb73d8 975 format_preamble()
d2bcf054 976
12d9b2b2
ER
977 if (field ~ /requires/) {
978 # atrpms
979 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
980 }
16397458 981}
982
8671b2a2
ER
983/^%bcond_/ {
984 # do nothing
985 print
986 next
987}
7c43f31c
ER
988
989# sort BR/R!
990#
991# NOTES:
992# - mixing BR/R and anything else confuses this (all will be sorted together)
42cd9911 993# so don't do that.
7c43f31c 994# - comments leading the BR/R can not be associated,
42cd9911 995# so don't adapterize when the BR/R are mixed with comments
4169482f 996ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS ":", $0 ~ PREAMBLE_TAGS ":"{
f175a699 997 if ($1 ~ /Pre[Rr]eq:/) {
37457756 998 sub(/Pre[Rr]eq:/, "Requires:", $1);
7c43f31c 999 }
8be3cbda
ER
1000 if ($1 == "BR:" ) {
1001 $1 = "BuildRequires:"
1002 }
1003 if ($1 == "R:" ) {
1004 $1 = "Requires:"
1005 }
7c43f31c 1006 format_preamble()
73eaf7b6 1007# kill_preamble_macros(); # breaks tabbing
7c43f31c
ER
1008
1009 b_idx++;
1010 l = substr($0, index($0, $2));
1011 b_ktmp = b_makekey($1, l);
1012 b_key[b_idx] = b_ktmp;
1013 b_val[b_ktmp] = $0;
1014
1015 next;
1016}
1017
7c43f31c
ER
1018preamble == 1 {
1019 if (b_idx > 0) {
1020 isort(b_key, b_idx);
1021 for (i = 1; i <= b_idx; i++) {
89411bba
ER
1022 v = b_val[b_key[i]];
1023 sub(/[ \t]+$/, "", v);
1024 print "" v;
7c43f31c
ER
1025 }
1026 b_idx = 0
1027 }
1028}
1029
2b4c59bc 1030# main() ;-)
16397458 1031{
32bb73d8 1032 preamble = 1
d2bcf054 1033
62565bd5 1034 sub(/[ \t]+$/, "")
32bb73d8 1035 print
1ea917a3
ER
1036
1037 if (name_seen == 0 && name) {
bd313400 1038 print "Name:\t\t" name
1ea917a3
ER
1039 name_seen = 1
1040 }
1041
1042 if (version_seen == 0 && version) {
1043 print "Version:\t" version
1044 version_seen = 1
1045 }
1046
1047 if (release_seen == 0 && release) {
1048 print "Release:\t" release
1049 release_seen = 1
1050 }
98125519
ER
1051
1052 if (did_build_root == 0) {
6cfaf341 1053# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
98125519
ER
1054 did_build_root = 1
1055 }
6cfaf341
ER
1056 if (did_groups == 0) {
1057# print "Group:\t\tunknown"
1058 did_groups = 1
1059 }
57862255 1060}
1061
6b02d821 1062
57862255 1063END {
0314a444
ER
1064 if (do_not_touch_anything) {
1065 exit(rc)
1066 }
d2bcf054 1067
42cd9911
ER
1068 # TODO: need to output these in proper place
1069 if (BR_count > 0) {
1070 for (i = 0; i <= BR_count; i++) {
1071 print BR[i];
1072 }
1073 }
a3c6bbce 1074
6b02d821 1075 close(changelog_file)
1076 while ((getline < changelog_file) > 0)
1077 print
1078 system("rm -f " changelog_file)
3c6a8648 1079
aa666779
SZ
1080 if (did_clean == 0) {
1081 print ""
1082 print "%clean"
1083 print "rm -rf $RPM_BUILD_ROOT"
1084 }
1085
b741d74d
SZ
1086 if (date == 0) {
1087 print ""
1088 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1089 }
d2bcf054 1090
a3c6bbce 1091 if (has_changelog == 0) {
1a2653e7 1092 print "%changelog"
42cd9911 1093 }
b741d74d 1094
a3c6bbce 1095 if (boc > 2) {
99f2e2ca 1096 print "* %{date} PLD Team <feedback@pld-linux.org>"
42cd9911 1097 }
1fefb3da 1098 if (boc > 1) {
9b223e29 1099 printf "All persons listed below can be reached at "
99f2e2ca 1100 print "<cvs_login>@pld-linux.org\n"
57862255 1101 }
a3c6bbce 1102 if (boc > 0) {
1fefb3da 1103 print "$" "Log:$"
42cd9911 1104 }
16397458 1105}
1106
66437059 1107# substitutes fixed strings (not regexps)
57900eb0 1108function fixedsub(s1,s2,t, ind) {
2b4c59bc 1109 if (ind = index(t,s1))
1110 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1111 return t
66437059
SZ
1112}
1113
57900eb0
ER
1114# replace s with s2 if it equals to s1
1115function replace(s, s1, s2) {
1116 if (s == s1) {
1117 return s2;
1118 } else {
1119 return s;
1120 }
1121}
1122
be7dead6 1123# There should be one or two tabs after the colon.
1124function format_preamble()
1125{
f175a699 1126 if (/^#/ || /^%bcond_with/) {
c74a804a
ER
1127 return;
1128 }
32bb73d8 1129 sub(/:[ \t]*/, ":")
13dda4dc
ER
1130 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1131 if (RLENGTH < 8) {
32bb73d8 1132 sub(/:/, ":\t\t")
42cd9911 1133 } else {
32bb73d8 1134 sub(/:/, ":\t")
42cd9911 1135 }
be7dead6 1136 }
1137}
1138
a9f3f77c 1139# Replace directly specified directories with macros
1140function use_macros()
1141{
ff9e2987
ER
1142 # -m, --skip-macros, --no-macros -- skip macros subst
1143 if (ENVIRON["SKIP_MACROS"]) {
1144 return
1145 }
1146
5110bd60
ER
1147 # leave inline sed lines alone
1148 if (/(%{__sed}|sed) -i -e/) {
1149 return;
1150 }
1151
42cd9911
ER
1152 sub("%{_defaultdocdir}", "%{_docdir}");
1153 sub("%{_bindir}/perl", "%{__perl}");
1154 sub("%{_bindir}/python", "%{__python}");
32b4e718 1155
bf42735e
ER
1156 gsub(infodir, "%{_infodir}")
1157
c9cb5723
ER
1158 gsub(perl_sitearch, "%{perl_sitearch}")
1159 gsub(perl_archlib, "%{perl_archlib}")
1160 gsub(perl_privlib, "%{perl_privlib}")
c9cb5723
ER
1161 gsub(perl_vendorlib, "%{perl_vendorlib}")
1162 gsub(perl_vendorarch, "%{perl_vendorarch}")
1163 gsub(perl_sitelib, "%{perl_sitelib}")
f9ae8d4e
ER
1164
1165 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
6cfaf341 1166 gsub(py_sitedir, "%{py_sitedir}")
96c9c215 1167 gsub(py_scriptdir, "%{py_scriptdir}")
a8e7eb6a
ER
1168
1169 gsub(py3_sitescriptdir, "%{py3_sitescriptdir}")
1170 gsub(py3_sitedir, "%{py3_sitedir}")
1171 gsub(py3_scriptdir, "%{py3_scriptdir}")
9f2514dd
ER
1172
1173 gsub(ruby_archdir, "%{ruby_archdir}")
1174 gsub(ruby_ridir, "%{ruby_ridir}")
1175 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1176 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1177 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
5fbedd3e 1178 gsub(ruby_rdocdir, "%{ruby_rdocdir}")
9f2514dd 1179
9086b883
ER
1180 gsub("%{_datadir}/applications", "%{_desktopdir}")
1181 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
5e624f99 1182 gsub("%{_datadir}/java", "%{_javadir}")
c9cb5723 1183
0314a444
ER
1184 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
1185 gsub(pkgconfigdir, "%{_pkgconfigdir}")
1186
62466386
ER
1187 gsub("%{_datadir}/pkgconfig", "%{_npkgconfigdir}")
1188 gsub(npkgconfigdir, "%{_npkgconfigdir}")
1189
6dd2a429 1190 gsub(libdir, "%{_libdir}")
5e624f99 1191 gsub(javadir, "%{_javadir}")
6dd2a429 1192
32bb73d8 1193 gsub(bindir, "%{_bindir}")
60e168c3 1194 gsub("%{prefix}/bin", "%{_bindir}")
5110bd60 1195 if (prefix"/bin" == bindir)
f0eca444 1196 gsub("%{_prefix}/bin", "%{_bindir}")
60e168c3 1197
ec98fa64 1198 for (c = 1; c <= NF; c++) {
1199 if ($c ~ sbindir "/fix-info-dir")
1200 continue;
61780b93
ER
1201 if ($c ~ sbindir "/webapp")
1202 continue;
bf42735e
ER
1203 if ($c ~ sbindir "/ldconfig")
1204 continue;
eb4e6786
ER
1205 if ($c ~ sbindir "/chsh")
1206 continue;
1207 if ($c ~ sbindir "/usermod")
1208 continue;
377c83f8
ER
1209 if ($c ~ sbindir "/chkconfig")
1210 continue;
519b18fb
ER
1211 if ($c ~ sbindir "/installzope(product|3package)")
1212 continue;
ec98fa64 1213 gsub(sbindir, "%{_sbindir}", $c)
1214 }
1215
60e168c3 1216 gsub("%{prefix}/sbin", "%{_sbindir}")
519b18fb 1217 if (prefix"/sbin" == sbindir) {
5d0dc6ec 1218 gsub("%{_prefix}/sbin", "%{_sbindir}")
519b18fb 1219 }
60e168c3 1220
38504ae2 1221 for (c = 1; c <= NF; c++) {
de2f7a1a 1222 if ($c ~ sysconfdir "/{?cron.")
ec98fa64 1223 continue;
f0eca444 1224 if ($c ~ sysconfdir "/{?crontab.d")
af3306cc 1225 continue;
269161f4
ER
1226 if ($c ~ sysconfdir "/{?env.d")
1227 continue;
66f4bdaa 1228 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
791430b4 1229 continue;
3c1352be
ER
1230 if ($c ~ sysconfdir "/{?udev")
1231 continue;
1232 if ($c ~ sysconfdir "/{?hotplug")
7a1926d6 1233 continue;
f0eca444 1234 if ($c ~ sysconfdir "/{?logrotate.d")
38504ae2 1235 continue;
f0eca444 1236 if ($c ~ sysconfdir "/{?pam.d")
a56e8186 1237 continue;
f0eca444 1238 if ($c ~ sysconfdir "/{?profile.d")
3849d745 1239 continue;
f0eca444 1240 if ($c ~ sysconfdir "/{?rc.d")
d95318c3 1241 continue;
f0eca444 1242 if ($c ~ sysconfdir "/{?security")
a56e8186 1243 continue;
f0eca444 1244 if ($c ~ sysconfdir "/{?skel")
1021eb9a 1245 continue;
f0eca444 1246 if ($c ~ sysconfdir "/{?sysconfig")
3849d745 1247 continue;
a3ad3d2b
ER
1248 if ($c ~ sysconfdir "/{?shrc.d")
1249 continue;
7666ea52
ER
1250 if ($c ~ sysconfdir "/{?certs")
1251 continue;
3c475044
ER
1252 if ($c ~ sysconfdir "/{?X11")
1253 continue;
7e2a6e20
ER
1254 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1255 continue;
ea66cafb
ER
1256 if ($c ~ sysconfdir "/{?rpm")
1257 continue;
f175a699 1258 if ($c ~ sysconfdir "/{?bash_completion.d")
a3ad3d2b 1259 continue;
f175a699 1260 if ($c ~ sysconfdir "/{?samba")
9fb04ca3 1261 continue;
5919d837
ER
1262 if ($c ~ sysconfdir "/{?xdg")
1263 continue;
e4339f15
ER
1264 if ($c ~ sysconfdir "/shells")
1265 continue;
5919d837
ER
1266 if ($c ~ sysconfdir "/inittab")
1267 continue;
a0b7bf7d
ER
1268 if ($c ~ sysconfdir "/init")
1269 continue;
f2bc05a6
ER
1270 if ($c ~ sysconfdir "/ppp")
1271 continue;
318fa94a
ER
1272 if ($c ~ sysconfdir "/dbus-1")
1273 continue;
5319da4e
ER
1274 if ($c ~ sysconfdir "/tmpwatch")
1275 continue;
f6187a9d
ER
1276 if ($c ~ sysconfdir "/acpi")
1277 continue;
1278 if ($c ~ sysconfdir "/apm")
1279 continue;
38504ae2 1280 gsub(sysconfdir, "%{_sysconfdir}", $c)
1281 }
60e168c3 1282
99b02f64 1283 gsub(docdir, "%{_docdir}")
3d5e7b27
ER
1284
1285 gsub(kdedocdir, "%{_kdedocdir}")
1286
1287 gsub(gtkdocdir, "%{_gtkdocdir}")
1288 gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
1289
f175a699 1290 gsub(php_pear_dir, "%{php_pear_dir}")
6d542d59 1291 gsub(php_data_dir, "%{php_data_dir}")
99b02f64 1292
10592e33
ER
1293 for (c = 1; c <= NF; c++) {
1294 if ($c ~ datadir "/automake")
1295 continue;
5d60467e
ER
1296 if ($c ~ datadir "/unsermake")
1297 continue;
a0e6069a
ER
1298 if ($c ~ datadir "/file/magic.mime")
1299 continue;
10592e33
ER
1300 gsub(datadir, "%{_datadir}", $c)
1301 }
1302
60e168c3 1303 gsub("%{prefix}/share", "%{_datadir}")
10592e33 1304 if (prefix"/share" == datadir)
f0eca444 1305 gsub("%{_prefix}/share", "%{_datadir}")
60e168c3 1306
03fbe002
ER
1307 # CFLAGS="-I/usr/include/ncurses is usually correct.
1308 if (!/-I\/usr\/include/) {
1309 gsub(includedir, "%{_includedir}")
1310 }
1311
60e168c3 1312 gsub("%{prefix}/include", "%{_includedir}")
03fbe002 1313 if (prefix"/include" == includedir) {
f0eca444 1314 gsub("%{_prefix}/include", "%{_includedir}")
03fbe002 1315 }
60e168c3 1316
32bb73d8 1317 gsub(mandir, "%{_mandir}")
03fbe002 1318 if ($0 !~ "%{_datadir}/manual") {
5d0dc6ec 1319 gsub("%{_datadir}/man", "%{_mandir}")
03fbe002 1320 }
cd1437c2 1321 gsub("%{_prefix}/share/man", "%{_mandir}")
1322 gsub("%{prefix}/share/man", "%{_mandir}")
60e168c3 1323 gsub("%{prefix}/man", "%{_mandir}")
1324 gsub("%{_prefix}/man", "%{_mandir}")
1325
32bb73d8 1326 gsub(infodir, "%{_infodir}")
60e168c3 1327 gsub("%{prefix}/info", "%{_infodir}")
1328 gsub("%{_prefix}/info", "%{_infodir}")
1329
de2f7a1a 1330 if (prefix !~ "/X11R6") {
1331 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1332 }
bd4a2113 1333
33957389 1334 gsub(examplesdir, "%{_examplesdir}")
d6255e69 1335
982b68ad 1336 if (prefix != "/") {
a0e6069a
ER
1337 # leave --with-foo=/usr alone
1338 if ($0 !~ "--with.*=.*" prefix) {
1339 for (c = 1; c <= NF; c++) {
1340 if ($c ~ prefix "/sbin/fix-info-dir")
1341 continue;
61780b93
ER
1342 if ($c ~ prefix "/sbin/webapp")
1343 continue;
eb4e6786
ER
1344 if ($c ~ prefix "/sbin/chsh")
1345 continue;
1346 if ($c ~ prefix "/sbin/usermod")
1347 continue;
519b18fb
ER
1348 if ($c ~ prefix "/sbin/installzope(product|3package)")
1349 continue;
a0e6069a
ER
1350 if ($c ~ prefix "/share/automake")
1351 continue;
1352 if ($c ~ prefix "/share/unsermake")
1353 continue;
1354 if ($c ~ prefix "/lib/sendmail")
1355 continue;
c0ae0d40
ER
1356 if ($c ~ prefix "/lib/pkgconfig")
1357 continue;
03fbe002 1358
589bf4b3
ER
1359 # CFLAGS="-I/usr..." is usually correct.
1360 if (/-I\/usr/)
03fbe002 1361 continue;
4e1f12b2
ER
1362 # same for LDFLAGS="-L/usr..."
1363 if (/-L\/usr/)
1364 continue;
03fbe002 1365
a0e6069a
ER
1366 gsub(prefix, "%{_prefix}", $c)
1367 }
ec98fa64 1368 }
982b68ad 1369 gsub("%{prefix}", "%{_prefix}")
1370 }
9a43821c 1371
77b6d1ab
ER
1372 # replace back
1373 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1374 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1375
9a43821c 1376 gsub("%{PACKAGE_VERSION}", "%{version}")
1377 gsub("%{PACKAGE_NAME}", "%{name}")
92bd39c6 1378
7f5aa63a 1379 gsub("^make$", "%{__make}")
1380 gsub("^make ", "%{__make} ")
ca0c404d 1381 gsub("^gcc ", "%{__cc} ")
8be48373 1382 gsub("^rm --interactive=never ", "%{__rm} ")
58ca7d6b 1383
f6187a9d
ER
1384 # fedora
1385 gsub("%{ruby_sitearch}", "%{ruby_sitearchdir}")
1386 gsub("%{python_sitearch}", "%{py_sitedir}")
eb9c5afa
ER
1387 gsub("%{python_sitelib}", "%{py_sitescriptdir}")
1388
1389 # alt linux
1390 gsub("%_man1dir", "%{_mandir}/man1")
f6187a9d 1391
3353e0d5
ER
1392 # mandrake specs
1393 gsub("^%make$", "%{__make}")
1394 gsub("^%make ", "%{__make} ")
1395 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
8705c1a9 1396 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
2fce9750 1397 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
3353e0d5 1398 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
8705c1a9 1399 gsub("^%{__install}", "install")
3353e0d5
ER
1400 gsub("%optflags", "%{rpmcflags}")
1401 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1402
32d93636 1403 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
eba571c8 1404 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
023aea7a
ER
1405 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1406 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
2fce9750 1407 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
2f89c197 1408 $0 = fixedsub("%__install", "install", $0);
2fce9750 1409
807cdd98 1410 # split configure line to multiple lines
8bb66b1c 1411 if (/%configure +$/) {
1412 sub( / +$/, "" );
1413 } else if (/%configure / && !/\\$/) {
807cdd98
ER
1414 $0 = format_configure($0);
1415 }
1416
e62422da
ER
1417 gsub("%_bindir", "%{_bindir}")
1418 gsub("%_datadir", "%{_datadir}")
1419 gsub("%_iconsdir", "%{_iconsdir}")
99b02f64
ER
1420 gsub("%_sbindir", "%{_sbindir}")
1421 gsub("%_mandir", "%{_mandir}")
1422 gsub("%name", "%{name}")
42cd9911
ER
1423 gsub(/%__rm/, "rm");
1424 gsub(/%__mkdir_p/, "install -d");
1425 gsub(/%__cp/, "cp");
1426 gsub(/%__ln_s/, "ln -s");
1427 gsub(/%__sed/, "%{__sed}");
1428 gsub(/%__cat/, "cat");
1429 gsub(/%__chmod/, "chmod");
32d93636 1430
58ca7d6b 1431 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1432 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
a3c6bbce 1433
caa01c58 1434 if (/^ant / || /^%{ant}/) {
a3c6bbce 1435 sub(/^ant/, "%ant")
caa01c58 1436 sub(/^%{ant}/, "%ant")
42cd9911
ER
1437 add_br("BuildRequires: jpackage-utils");
1438 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1439 }
a3c6bbce 1440
9b8d82c1
ER
1441 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1442 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
da1f781c
ER
1443
1444 # kill the _class and _subclass pear macros
1445 if (pear_class) {
1446 gsub("%{_class}", pear_class);
1447 }
1448 if (pear_subclass) {
1449 gsub("%{_subclass}", pear_subclass);
1450 }
1451
b6979c9c 1452}
d2bcf054 1453
807cdd98
ER
1454function format_configure(line, n, a, s) {
1455 n = split(line, a, / /);
1456 s = a[1] " \\\n";
1457 for (i = 2; i <= n; i++) {
1458 s = s "\t" a[i] " \\\n"
1459 }
1460 return s
1461}
1462
c490069b
ER
1463
1464# insertion sort of A[1..n]
1465# copied from mawk manual
1466function isort(A,n, i,j,hold) {
1467 for (i = 2; i <= n; i++) {
1468 hold = A[j = i]
1469 while (A[j-1] > hold) {
e8e4542f 1470 j-- ; A[j+1] = A[j]
1471 }
c490069b
ER
1472 A[j] = hold
1473 }
1474 # sentinel A[0] = "" will be created if needed
1475}
1476
1477
a3296e40 1478function use_files_macros( i, n, t, a, l)
0bbcf6b4 1479{
6702f869
ER
1480 use_macros()
1481
2a10aeb5
ER
1482 # skip comments
1483 if (/^#/) {
11dd9628 1484 return 1;
2a10aeb5
ER
1485 }
1486
3210b282
ER
1487 sub("^%doc %{_mandir}", "%{_mandir}")
1488
0bbcf6b4 1489 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1490 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
c490069b 1491
bb7ad876
ER
1492 # uid/gid nobody is not valid in %files
1493 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1494 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1495 }
1496
07aced3a
JB
1497 # s[gu]id programs with globs are evil
1498 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1499 $0 = $0 " # FIXME no globs for suid/sgid files"
ca68f0c3
ER
1500 }
1501
aedb74de 1502 # replace back
16590ec6 1503 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
d7018013 1504 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
16590ec6
ER
1505 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1506 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1507 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1508 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1509 gsub("%{_sysconfdir}/security", "/etc/security")
1510 gsub("%{_sysconfdir}/skel", "/etc/skel")
1511 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1512 gsub("%{_sysconfdir}/certs", "/etc/certs")
aedb74de 1513 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
318fa94a 1514 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
5319da4e
ER
1515 gsub("%{_sysconfdir}/pki", "/etc/pki")
1516 gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
fc100b2c 1517
aedb74de
ER
1518 # /etc/init.d -> /etc/rc.d/init.d
1519 if (!/^\/etc\/init\.d$/) {
1520 gsub("/etc/init.d", "/etc/rc.d/init.d")
1521 }
1522
1523 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
fc100b2c
ER
1524 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1525 $0 = "%attr(754,root,root) " $0
1526 }
1527 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
a5e4249b 1528 gsub("^%attr\\(... *,", "%attr(754,");
fc100b2c 1529 }
eeb15f12
ER
1530 }
1531
62466386 1532 if (/lib.+\.so\b/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
d749eebf
ER
1533 $0 = "%attr(755,root,root) " $0
1534 }
1535
46e31fbb
ER
1536 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1537 $0 = "%attr(755,root,root) " $0
1538 }
1539
1a296ebe
ER
1540 # remove attrs from man pages
1541 if (/%{_mandir}/ && /^%attr/) {
1542 sub("^%attr\\(.*\\) *", "");
1543 }
1544
f12fb504
ER
1545 # /etc/sysconfig files
1546 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
feb42f71 1547 # attr not required, allow default 644 attr
646a62fc 1548 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
9f60b463 1549 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
aedb74de
ER
1550 gsub("%config", "%config(noreplace)")
1551 }
f12fb504 1552
9f60b463 1553 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
aedb74de
ER
1554 $NF = "%config(noreplace) " $NF
1555 }
f12fb504 1556
aedb74de 1557 if (/\/etc\/sysconfig\// && /%attr\(755/) {
a5e4249b 1558 gsub("^%attr\\(... *,", "%attr(640,");
aedb74de 1559 }
f12fb504 1560
aedb74de
ER
1561 if (/\/etc\/sysconfig\// && !/%verify/) {
1562 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1563 }
feb42f71
ER
1564 }
1565
f12fb504 1566 # kill leading zeros
6ac67f5b
ER
1567 if (/%attr\(0[1-9]/) {
1568 gsub("%attr\\(0", "%attr(")
1569 }
7dd00833 1570
5844653b 1571 # kill leading whitespace
bcf3f2ca 1572 gsub(/^ +/, "");
5844653b 1573
42cd9911
ER
1574 # kill default attrs
1575 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1576 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1577 if (!/%dir/) {
1578 gsub(/%attr\(644,root,root\) /, "");
1579 }
68618e24 1580
c490069b 1581 # sort %verify attrs
91e497a5 1582 if (match($0, /%verify\(not([^)]+)\)/)) {
c490069b 1583 t = substr($0, RSTART, RLENGTH)
f51e180c
ER
1584 # kill commas: %verify(not,md5,size,mtime)
1585 gsub(/,/, " ", t);
1586
c490069b
ER
1587 gsub(/^%verify\(not |\)$/, "", t)
1588 n = split(t, a, / /)
1589 isort(a, n)
1590
1591 s = "%verify(not"
1592 for (i = 1 ; i <= n; i++) {
1593 s = s " " a[i]
1594 }
1595 s = s ")"
1596
91e497a5 1597 gsub(/%verify\(not[^)]+\)/, s)
c490069b 1598 }
35a7a211
ER
1599
1600 if (/%{_mandir}/) {
1dfac985 1601 gsub("\.gz$", "*")
f142c82f 1602 gsub("%ext_man$", "*")
35a7a211 1603 }
023aea7a 1604
5b33a6a1 1605 # locale dir and no %lang -> bad
d8a3c08f 1606 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
5b33a6a1
ER
1607 $(NF + 1) = "# FIXME consider using %find_lang"
1608 }
1609
a3296e40 1610 # python egg-infos
fb78b6a9 1611 if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
11dd9628
ER
1612 # tests:
1613 #%{py_sitedir}/*-py2.4.egg-info
1614 #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
1615 #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
1616 #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
1617
fb78b6a9 1618 l = index($0, "/");
11dd9628 1619 t = substr($0, 0, l);
a3296e40 1620 s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
fb78b6a9 1621 if (match(s, "[^-]+$")) {
11dd9628
ER
1622 if (RSTART > 1) {
1623 s = substr(s, 0, RSTART - 1);
f50f83ff 1624 }
a3296e40 1625 print "%if \"%{py_ver}\" > \"2.4\""
fb78b6a9 1626 gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
a3296e40
ER
1627 print
1628 print "%endif"
11dd9628 1629 return 0;
a3296e40
ER
1630 }
1631 }
1632
023aea7a
ER
1633 # atrpms
1634 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1635 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1636 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
c0ae0d40
ER
1637
1638 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1639 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1640 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
a83ba4f8
ER
1641
1642 gsub("%{_datadir}/applications", "%{_desktopdir}");
195fd300 1643 gsub("%{_datadir}/icons", "%{_iconsdir}");
6190dc2e 1644 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
6d542d59
ER
1645 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1646 gsub("%{_datadir}/php", "%{php_data_dir}");
11dd9628
ER
1647
1648 return 1
0bbcf6b4 1649}
73e1a9a3 1650
afca35ce
ER
1651function use_script_macros()
1652{
1653 if (gsub("/sbin/service", "%service")) {
1654 sub(" >/dev/null 2>&1 \|\|:", "");
1655 sub(" 2> /dev/null \|\| :", "");
1656 }
1657}
1658
73e1a9a3 1659function fill(ch, n, i) {
1660 for (i = 0; i < n; i++)
1661 printf("%c", ch)
1662}
1663
1664function format_flush(line, indent, newline, word, first_word) {
1665 first_word = 1
d2bcf054 1666 if (format_indent == -1)
73e1a9a3 1667 newline = ""
1668 else
1669 newline = fill(" ", format_indent) "- "
1670
1671 while (match(line, /[^\t ]+/)) {
1672 word = substr(line, RSTART, RLENGTH)
1673 if (length(newline) + length(word) + 1 > tw) {
1674 print newline
d2bcf054 1675
73e1a9a3 1676 if (format_indent == -1)
1677 newline = ""
1678 else
1679 newline = fill(" ", format_indent + 2)
1680 first_word = 1
1681 }
1682
1683 if (first_word) {
1684 newline = newline word
1685 first_word = 0
1686 } else
1687 newline = newline " " word
d2bcf054 1688
73e1a9a3 1689 line = substr(line, RSTART + RLENGTH)
1690 }
1691 if (newline ~ /[^\t ]/) {
1692 print newline
1693 }
1694}
1695
0972e97d 1696function cflags(var)
1697{
2f46ef70 1698 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1699 removed[var] = 1
0972e97d 1700 return 0
2f46ef70 1701 }
d2bcf054 1702
337741dd 1703 if (!/!\?debug/)
fe9a6f09 1704 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
0972e97d 1705 return 1
1706}
0311af17 1707
4401d130
ER
1708# return whole matched pattern
1709function matchstr(str, pat)
1710{
1711 match(str, "[^/]+$");
1712 return substr(str, RSTART, RLENGTH);
1713}
1714
0b8c0588
ER
1715function unify_url(url)
1716{
1717
1718 # sourceforge urls
ca5cfdea 1719 # Docs about sourceforge mirror system: http://sourceforge.net/apps/trac/sourceforge/wiki/Mirrors
1526cc0b
ER
1720
1721 # 1. unify domains
ca5cfdea
JB
1722 sub("^http://prdownloads\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1723 sub("^http://download\.sf\.net/", "http://downloads.sourceforge.net/", url)
1724 sub("^http://download\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1725 sub("^http://dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1726 sub("^http://.*\.dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
1727 sub("^http://dl\.sf\.net/", "http://downloads.sourceforge.net/", url)
1728 sub("^http://downloads\.sourceforge\.net/sourceforge/", "http://downloads.sourceforge.net/", url)
1526cc0b 1729
1526cc0b 1730 # 3. unify urls
284edbde
ER
1731 if (url ~ /sourceforge.net/) {
1732 sub("[?&]big_mirror=.*$", "", url);
1733 sub("[?&]modtime=.*$", "", url);
1734 sub("[?]use_mirror=.*$", "", url);
1735 sub("[?]download$", "", url);
1736 sub("/download$", "", url);
1737 }
0b8c0588 1738
4401d130
ER
1739 # SF: new style urls, strip "files/" between and prepend dl.
1740 if (match(url, "^http://sourceforge.net/projects/[^/]+/files/")) {
1741 url = substr(url, 1, RLENGTH - length("files/")) substr(url, RSTART + RLENGTH);
1742 sub("^http://sourceforge.net/projects/", "http://downloads.sourceforge.net/project/", url);
1743 }
1744
1745 # SF unify: http://downloads.sourceforge.net/PROJECT/TARBALL
1746 # http://downloads.sourceforge.net/project/PROJECT/FILE/VERSION/%{name}-%{version}.zip
1747 if (match(url, "^http://downloads.sourceforge.net/project/[^/]+")) {
1748 url = sprintf("http://downloads.sourceforge.net/%s/%s", substr(url, 42, RLENGTH - 41), matchstr(url, "[^/]+$"));
1749 }
1750
0b8c0588
ER
1751 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1752 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1753
1754 # apache urls
1755 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1756
8d69f95f 1757 # gnu.org
ce803f28
ER
1758 sub("^ftp://ftp\.gnu\.org/", "http://ftp.gnu.org/", url)
1759 sub("^http://ftp\.gnu\.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
1760
1761 # debian.org
1762 sub("^ftp://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1763 sub("^http://ftp\.[^.]+\.debian\.org/", "ftp://ftp.debian.org/", url)
1764 sub("^ftp://ftp\.debian\.org/pub/debian/", "ftp://ftp.debian.org/debian/", url)
8d69f95f 1765
0b8c0588
ER
1766 return url
1767}
1768
a5ab7844
ER
1769function demacroize(str)
1770{
73eaf7b6
ER
1771 if (mod_name) {
1772 sub("%{mod_name}", mod_name, str);
1773 }
bff32a15
ER
1774 if (pearname) {
1775 sub("%{_pearname}", pearname, str);
1776 }
1777 if (pearname) {
1778 sub("%{pearname}", pearname, str);
1779 }
73eaf7b6
ER
1780 if (name) {
1781 sub("%{name}", name, str);
1782 }
a5ab7844
ER
1783 if (version) {
1784 sub("%{version}", version, str);
1785 }
1786 if (_beta) {
1787 sub("%{_beta}", _beta, str);
1788 }
1789 if (_rc) {
1790 sub("%{_rc}", _rc, str);
1791 }
f8281d0c
ER
1792 if (_pre) {
1793 sub("%{_pre}", _pre, str);
1794 }
a5ab7844
ER
1795 if (_snap) {
1796 sub("%{_snap}", _snap, str);
1797 }
88c76b14
ER
1798 if (subver) {
1799 sub("%{subver}", subver, str);
1800 }
a5ab7844
ER
1801 return str;
1802}
1803
0311af17
ER
1804function kill_preamble_macros()
1805{
a90171f0
ER
1806 if ($1 ~ /^Obsoletes:/) {
1807 # NB! assigning $2 a value breaks tabbing
1808 $2 = demacroize($2);
1809 }
1810 if ($1 ~ /^URL:/) {
73eaf7b6 1811 # NB! assigning $2 a value breaks tabbing
a5ab7844 1812 $2 = demacroize($2);
d57766c4 1813 $2 = unify_url($2)
0311af17 1814 }
b7b03087
ER
1815
1816 # fedora extras
1817 if (/%{\?FE_USERADD_REQ}/) {
1818 $0 = "";
1819 print "BuildRequires: rpmbuild(macros) >= 1.202"
1820 print "Provides: user(xxx)"
1821 print "Requires(postun): /usr/sbin/userdel"
1822 print "Requires(pre): /bin/id"
1823 print "Requires(pre): /usr/sbin/useradd"
1824 }
0311af17 1825}
9911efc1 1826
18cdb713
ER
1827function get_epoch(pkg, ver, epoch)
1828{
2a50ce70
ER
1829 return
1830# should parse the BR lines more adequately:
1831# freetype = 2.0.0 -> correct
1832# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1833
18cdb713
ER
1834 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1835 shell | getline epoch;
1836 return epoch;
1837}
1838
9911efc1 1839function format_requires(tag, value, n, p, i, deps, ndeps) {
83c487a0
ER
1840 # skip any formatting for commented out items or some weird macros
1841 if (/^#/ || /%\(/) {
f3b115ea
ER
1842 return tag "\t" value
1843 }
9911efc1
ER
1844 n = split(value, p, / *,? */);
1845 for (i = 1; i <= n; i++) {
1846 if (p[i+1] ~ /[<=>]/) {
18cdb713
ER
1847 # add epoch if the version doesn't have it but BuildRequires.txt has
1848 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1849 epoch = get_epoch(p[i], p[i+2])
1850 if (epoch) {
1851 p[i+2] = epoch ":" p[i+2];
1852 }
1853 }
9911efc1
ER
1854 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1855 i += 2;
1856 } else {
1857 deps[ndeps++] = p[i];
1858 }
1859 }
1860 s = ""
1861 for (i in deps) {
1862 s = s sprintf("%s\t%s\n", tag, deps[i]);
1863 }
1864 return substr(s, 1, length(s)-1);
1865}
035bfa01
ER
1866
1867function use_tabs()
1868{
1869 # reverse vim: ts=4 sw=4 et
1870 gsub(/ /, "\t");
1871}
a3c6bbce
ER
1872
1873function add_br(br)
1874{
42cd9911 1875 BR[BR_count++] = br
a3c6bbce
ER
1876}
1877
d0c7fe0c
ER
1878# Load rpm macros
1879# you should update the list also in adapter when making changes here
1880function import_rpm_macros() {
1881 # File with rpm groups
1882 topdir = ENVIRON["_topdir"]
1883
1884 if (!topdir) {
1885 print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
1886 do_not_touch_anything = 1
0314a444
ER
1887 exit(rc = 1);
1888 }
1889
70661105
ER
1890 # update this version dep each time some new macro export is added
1891 if (!ENVIRON["ADAPTER_REVISION"] || ENVIRON["ADAPTER_REVISION"] < 1.47) {
0314a444
ER
1892 print "adapter shell script is outdated, please cvs up it" > "/dev/stderr"
1893 do_not_touch_anything = 1
1894 exit(rc = 1);
d0c7fe0c
ER
1895 }
1896
1897 # get cvsaddress for changelog section
1898 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
1899 _cvsmaildomain = ENVIRON["_cvsmaildomain"]
1900 _cvsmailfeedback = ENVIRON["_cvsmailfeedback"]
1901
1902 prefix = ENVIRON["_prefix"]
1903 bindir = ENVIRON["_bindir"]
1904 sbindir = ENVIRON["_sbindir"]
1905 libdir = ENVIRON["_libdir"]
1906 sysconfdir = ENVIRON["_sysconfdir"]
1907 datadir = ENVIRON["_datadir"]
1908 includedir = ENVIRON["_includedir"]
1909 mandir = ENVIRON["_mandir"]
1910 infodir = ENVIRON["_infodir"]
1911 examplesdir = ENVIRON["_examplesdir"]
1912 docdir = ENVIRON["_defaultdocdir"]
1913 kdedocdir = ENVIRON["_kdedocdir"]
1914 gtkdocdir = ENVIRON["_gtkdocdir"]
1915 desktopdir = ENVIRON["_desktopdir"]
1916 pixmapsdir = ENVIRON["_pixmapsdir"]
1917 javadir = ENVIRON["_javadir"]
0314a444 1918 pkgconfigdir = ENVIRON["_pkgconfigdir"]
62466386 1919 npkgconfigdir = ENVIRON["_npkgconfigdir"]
d0c7fe0c
ER
1920
1921 perl_sitearch = ENVIRON["perl_sitearch"]
1922 perl_archlib = ENVIRON["perl_archlib"]
1923 perl_privlib = ENVIRON["perl_privlib"]
1924 perl_vendorlib = ENVIRON["perl_vendorlib"]
1925 perl_vendorarch = ENVIRON["perl_vendorarch"]
1926 perl_sitelib = ENVIRON["perl_sitelib"]
1927
1928 py_sitescriptdir = ENVIRON["py_sitescriptdir"]
1929 py_sitedir = ENVIRON["py_sitedir"]
1930 py_scriptdir = ENVIRON["py_scriptdir"]
1931 py_ver = ENVIRON["py_ver"]
1932
70661105
ER
1933 py3_sitescriptdir = ENVIRON["py3_sitescriptdir"]
1934 py3_sitedir = ENVIRON["py3_sitedir"]
1935 py3_scriptdir = ENVIRON["py3_scriptdir"]
1936 py3_ver = ENVIRON["py3_ver"]
1937
d0c7fe0c
ER
1938 ruby_archdir = ENVIRON["ruby_archdir"]
1939 ruby_ridir = ENVIRON["ruby_ridir"]
1940 ruby_rubylibdir = ENVIRON["ruby_rubylibdir"]
1941 ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
1942 ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
1943 ruby_rdocdir = ENVIRON["ruby_rdocdir"]
1944
1945 php_pear_dir = ENVIRON["php_pear_dir"]
1946 php_data_dir = ENVIRON["php_data_dir"]
1947 tmpdir = ENVIRON["tmpdir"]
1948}
1949
d0c7fe0c
ER
1950# php virtual deps as discussed in devel-en
1951function replace_php_virtual_deps() {
1952 pkg = $2
1953# if (pkg == "php-program") {
1954# $0 = $1 "\t/usr/bin/php"
1955# return
1956# }
1957
1958# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1959# sub(/^php-/, "php(", pkg);
1960# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1961# $2 = pkg
1962# }
1963
1964 if (pkg ~/^php$/) {
1965 $2 = "webserver(php)";
1966 if ($4 ~ /^[0-9]:/) {
1967 $4 = substr($4, 3);
1968 }
1969 }
1970
1971 if (pkg ~/^php4$/) {
1972 $2 = "webserver(php)";
1973 if ($4 ~ /^[0-9]:/) {
1974 $4 = substr($4, 3);
1975 }
1976 }
1977}
1978
9f2dada8
ER
1979function replace_groupnames(group) {
1980 group = replace(group, "Amusements/Games", "Applications/Games");
1981 group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
1982 group = replace(group, "Application/Multimedia", "Applications/Multimedia");
1983 group = replace(group, "Application/System", "Applications/System");
1984 group = replace(group, "Applications/Compilers", "Development/Languages");
1985 group = replace(group, "Applications/Daemons", "Daemons");
1986 group = replace(group, "Applications/Internet", "Applications/Networking");
1987 group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
1988 group = replace(group, "Applications/Productivity", "X11/Applications");
1989 group = replace(group, "Applications/Security", "Applications/System");
1990 group = replace(group, "Applications/Web", "Applications/WWW");
1991 group = replace(group, "Database", "Applications/Databases");
1992 group = replace(group, "Development/C", "Development/Libraries");
1993 group = replace(group, "Development/Code Generators", "Development");
1994 group = replace(group, "Development/Docs", "Documentation");
1995 group = replace(group, "Development/Documentation", "Documentation");
1996 group = replace(group, "Development/Java", "Development/Languages/Java");
1997 group = replace(group, "Development/Languages/C and C++", "Libraries");
1998 group = replace(group, "Development/Languages/Other", "Development/Languages");;
1999 group = replace(group, "Development/Languages/Ruby", "Development/Languages");
2000 group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
2001 group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
2002 group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
2003 group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
2004 group = replace(group, "Development/Other", "Development");
2005 group = replace(group, "Development/Python", "Development/Languages/Python");
2006 group = replace(group, "Development/Testing", "Development");
2007 group = replace(group, "Editors", "Applications/Text");
2008 group = replace(group, "Emulators", "Applications/Emulators");
2009 group = replace(group, "File tools", "Applications/File");
2010 group = replace(group, "Games", "Applications/Games");
2011 group = replace(group, "Library/Development", "Development/Libraries");
2012 group = replace(group, "Networking/Deamons", "Networking/Daemons");
2013 group = replace(group, "Networking/Mail", "Applications/Mail");
2014 group = replace(group, "Networking/Other", "Networking");
2015 group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
2016 group = replace(group, "Productivity/Multimedia/Other", "X11/Applications/Multimedia");
2017 group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
2018 group = replace(group, "Shells", "Applications/Shells");
2019 group = replace(group, "System Environment/Base", "Base");
2020 group = replace(group, "System Environment/Daemons", "Daemons");
2021 group = replace(group, "System Environment/Kernel", "Base/Kernel");
2022 group = replace(group, "System Environment/Libraries", "Libraries");
2023 group = replace(group, "System Tools", "Applications/System");
2024 group = replace(group, "System", "Base");
2025 group = replace(group, "System/Base", "Base");
2026 group = replace(group, "System/Kernel and hardware", "Base/Kernel");
2027 group = replace(group, "System/Libraries", "Libraries");
2028 group = replace(group, "System/Servers", "Daemons");
2029 group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
2030 group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
2031 group = replace(group, "Text tools", "Applications/Text");
2032 group = replace(group, "User Interface/Desktops", "X11/Applications");
2033 group = replace(group, "Utilities/System", "Applications/System");
2034 group = replace(group, "Web/Database", "Applications/WWW");
2035 group = replace(group, "X11/GNOME", "X11/Applications");
2036 group = replace(group, "X11/GNOME/Applications", "X11/Applications");
2037 group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
2038 group = replace(group, "X11/Games", "X11/Applications/Games");
2039 group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
2040 group = replace(group, "X11/Library", "X11/Libraries");
2041 group = replace(group, "X11/Utilities", "X11/Applications");
2042 group = replace(group, "X11/XFree86", "X11");
2043 group = replace(group, "X11/Xserver", "X11/Servers");
2044
2045 return group;
2046}
2047
5005c892 2048function replace_requires() {
485540f7 2049
a6b4adc9 2050 sub(/^python-setuptools-devel$/, "python-distribute", $2);
7850eda3 2051 sub(/^gcc-g77/, "gcc-fortran", $2);
791e241c
ER
2052
2053 # use virtual, not package name
2054 sub(/^rpm-build-macros$/, "rpmbuild(macros)", $2);
2055
94f4b277
ER
2056 # bad package.xml, see http://pear.php.net/bugs/bug.php?id=17779
2057 sub(/^php-php-gtk/, "php-gtk2", $2);
2058
485540f7 2059 # jpackages
cda1ace5 2060 sub(/^antlr3$/, "java-antlr3", $2);
84549bd3 2061 sub(/^avalon-framework$/, "java-avalon-framework", $2);
2062 sub(/^avalon-logkit$/, "java-avalon-logkit", $2);
e441e70d 2063 sub(/^axis$/, "java-axis", $2);
cda1ace5 2064 sub(/^bsf$/, "java-bsf", $2);
1e44ff46
ER
2065 sub(/^gnu-regexp$/, "java-gnu-regexp", $2);
2066 sub(/^gnu.regexp$/, "java-gnu-regexp", $2);
cbd68959 2067 sub(/^hamcrest$/, "java-hamcrest", $2);
e210d877 2068 sub(/^jaas$/, "java(jaas)", $2);
2069 sub(/^jaf$/, "java(jaf)", $2);
e441e70d 2070 sub(/^jakarta-ant$/, "ant", $2);
2071 sub(/^jakarta-commons-httpclient$/, "java-commons-httpclient", $2);
2072 sub(/^jakarta-log4j$/, "java-log4j", $2);
2073 sub(/^jakarta-oro$/, "java-oro", $2);
84549bd3 2074 sub(/^jakarta-servletapi$/, "java(servlet)", $2);
8962c9c4
ER
2075 sub(/^java-devel$/, "jdk", $2);
2076 sub(/^java\(JSP\)$/, "java(jsp)", $2);
2077 sub(/^java\(JavaServerFaces\)$/, "java(javaserverfaces)", $2);
2078 sub(/^java\(Portlet\)$/, "java(portlet)", $2);
2079 sub(/^java\(Servlet\)$/, "java(servlet)", $2);
e441e70d 2080 sub(/^javamail$/, "java(javamail)", $2);
e210d877 2081 sub(/^jaxp$/, "java(jaxp)", $2);
2082 sub(/^jaxp_parser_impl$/, "java(jaxp_parser_impl)", $2);
981c8edf 2083 sub(/^jaxp_transform_impl$/, "java(jaxp_transform_impl)", $2);
e210d877 2084 sub(/^jce$/, "java(jce)", $2);
722d2feb 2085 sub(/^jcommon$/, "java-jcommon", $2);
e210d877 2086 sub(/^jdbc-stdext$/, "java(jdbc-stdext)", $2);
cda1ace5 2087 sub(/^jdepend$/, "java-jdepend", $2);
722d2feb 2088 sub(/^jfreechart$/, "java-jfreechart", $2);
e210d877 2089 sub(/^jmx$/, "java(jmx)", $2);
2090 sub(/^jndi$/, "java(jndi)", $2);
cda1ace5 2091 sub(/^jsch$/, "java-jsch", $2);
e210d877 2092 sub(/^jsse$/, "java(jsse)", $2);
981c8edf 2093 sub(/^jta$/, "java(jta)", $2);
cda1ace5 2094 sub(/^junit$/, "java-junit", $2);
e441e70d 2095 sub(/^ldapjdk$/, "ldapsdk", $2);
2096 sub(/^log4j$/, "java-log4j", $2);
2097 sub(/^logging-log4j$/, "java-log4j", $2);
2098 sub(/^oro$/, "java-oro", $2);
2099 sub(/^rhino$/, "java-rhino", $2);
2100 sub(/^saxon-scripts$/, "saxon", $2);
981c8edf 2101 sub(/^servlet$/, "java(servlet)", $2);
e441e70d 2102 sub(/^uddi4j$/, "java-uddi4j", $2);
2103 sub(/^wsdl4j$/, "java-wsdl4j", $2);
e441e70d 2104 sub(/^xalan-j$/, "java-xalan", $2);
8962c9c4 2105 sub(/^xalan-j2$/, "java-xalan", $2);
8d05813c
ER
2106 sub(/^xerces-j$/, "java(jaxp_parser_impl)", $2);
2107 sub(/^xerces-j2$/, "java(jaxp_parser_impl)", $2);
2108 sub(/^java-xerces$/, "java(jaxp_parser_impl)", $2);
e441e70d 2109 sub(/^xml-commons-apis$/, "java-xml-commons-apis", $2);
2110 sub(/^xml-commons-resolver$/, "java-xml-commons-resolver", $2);
485540f7 2111
8962c9c4 2112 # fedora / redhat
884d38da 2113 sub(/^Django$/, "python-django", $2);
41cf1970 2114 sub(/^GitPython$/, "python-git", $2);
1526cc0b
ER
2115 sub(/^PyQt4-devel$/, "python-PyQt4-devel", $2);
2116 sub(/^PyQwt-devel$/, "python-PyQwt-devel", $2);
01d2701e 2117 sub(/^ccid$/, "pcsc-driver-ccid", $2);
a73cc8a9 2118 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
b2b85983 2119 sub(/^db4-devel$/, "db-devel", $2);
8962c9c4
ER
2120 sub(/^dbus-python$/, "python-dbus", $2);
2121 sub(/^file-devel$/, "libmagic-devel", $2);
283c3196 2122 sub(/^freetype2-devel$/, "freetype-devel", $2);
0393f419 2123 sub(/^fuse-devel$/, "libfuse-devel", $2);
8962c9c4
ER
2124 sub(/^gamin-python$/, "python-gamin", $2);
2125 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
1a296ebe 2126 sub(/^gnome-python2-extras$/, "python-gnome-extras", $2);
f6187a9d 2127 sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2);
283c3196 2128 sub(/^gtk-sharp2-devel$/, "dotnet-gtk-sharp2-devel", $2);
1a296ebe 2129 sub(/^gtk2$/, "gtk+2", $2);
f731fd27 2130 sub(/^gtk2-devel$/, "gtk+2-devel", $2);
b7b03087 2131 sub(/^gtk3-devel$/, "gtk+3-devel", $2);
8962c9c4 2132 sub(/^initscripts$/, "rc-scripts", $2);
283c3196 2133 sub(/^iproute$/, "iproute2", $2);
8962c9c4
ER
2134 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
2135 sub(/^libXft-devel$/, "xorg-lib-libXft-devel", $2);
b2b85983 2136 sub(/^libXrandr-devel$/, "xorg-lib-libXrandr-devel", $2);
b7b03087 2137 sub(/^libacl-devel$/, "acl-devel", $2);
283c3196 2138 sub(/^libcurl-devel$/, "curl-devel", $2);
c6ddd554 2139 sub(/^libsrtp-devel$/, "srtp-devel", $2);
eb9c5afa 2140 sub(/^mod_wsgi$/, "apache-mod_wsgi", $2);
8962c9c4 2141 sub(/^notify-python$/, "python-pynotify", $2);
01d2701e 2142 sub(/^pcsc-lite-ccid$/, "pcsc-driver-ccid", $2);
6547efbd 2143 sub(/^pulseaudio-libs-devel$/, "pulseaudio-devel", $2);
7b0e3e39 2144 sub(/^pyOpenSSL$/, "python-pyOpenSSL", $2);
30f2ac22 2145 sub(/^pyflakes$/, "python-pyflakes", $2);
a3e413bc 2146 sub(/^pygobject2$/, "python-pygobject", $2);
8962c9c4
ER
2147 sub(/^pygtk2$/, "python-pygtk", $2);
2148 sub(/^pygtk2-devel$/, "python-pygtk-devel", $2);
30f2ac22 2149 sub(/^pysvn$/, "python-pysvn", $2);
eb9c5afa 2150 sub(/^python-enchant$/, "python-pyenchant", $2);
5005c892
ER
2151 sub(/^python-imaging$/, "python-PIL", $2);
2152 sub(/^python-imaging-tk$/, "python-PIL-tk", $2);
f6187a9d 2153 sub(/^python-pygtk$/, "python-pygtk-gtk", $2);
30f2ac22
ER
2154 sub(/^python-recaptcha-client$/, "python-recaptcha", $2);
2155 sub(/^python-twisted-core$/, "python-TwistedCore", $2);
1526cc0b
ER
2156 sub(/^python-twisted-core$/, "python-TwistedCore", $2);
2157 sub(/^python-twisted-names$/, "python-TwistedNames", $2);
eb9c5afa 2158 sub(/^python2-devel$/, "python-devel", $2);
30f2ac22 2159 sub(/^pytz$/, "python-pytz", $2);
8962c9c4 2160 sub(/^qt4-devel$/, "qt4-build", $2);
1526cc0b 2161 sub(/^qt4-webkit-devel$/, "QtWebKit-devel", $2);
b2b85983 2162 sub(/^qtlockedfile-devel$/, "QtLockedFile-devel", $2);
c6ddd554 2163 sub(/^qtsingleapplication-devel$/, "QtSingleApplication-devel", $2);
c93842aa 2164 sub(/^rpm-python$/, "python-rpm", $2);
1526cc0b 2165 sub(/^sip-devel$/, "python-sip-devel", $2);
8962c9c4
ER
2166 sub(/^tftp-server$/, "tftpdaemon", $2);
2167 sub(/^tkinter$/, "python-tkinter", $2);
884d38da 2168 sub(/^xapian-bindings-python$/, "python-xapian", $2);
c6ddd554 2169 sub(/^xorg-x11-server-sdk$/, "xorg-xserver-server-devel", $2);
91dd18e8 2170
5919d837
ER
2171 # mandriva
2172 sub(/^python-gobject-devel$/, "python-pygobject-devel", $2);
2173 sub(/^python-pyrex$/, "python-Pyrex", $2);
2174 sub(/^webkitgtk-devel$/, "gtk-webkit-devel", $2);
2175 sub(/^python-curl$/, "python-pycurl", $2);
2176 sub(/^python-webkitgtk$/, "python-pywebkitgtk", $2);
2177 sub(/^pygtk2.0$/, "python-pygtk-gtk", $2);
2178 sub(/^gnome-python-gconf$/, "python-gnome-gconf", $2);
2179
2b4124b8 2180 # debian / ubuntu
8962c9c4
ER
2181 sub(/^blkid-dev$/, "libblkid-devel", $2);
2182 sub(/^ext2fs-dev$/, "e2fsprogs-devel", $2);
2183 sub(/^libao-dev$/, "libao-devel", $2);
eb4c7da2
ER
2184 sub(/^libboost-filesystem[0-9.]+-dev$/, "boost-devel", $2);
2185 sub(/^libboost-program-options[0-9.]+-dev$/, "boost-devel", $2);
2186 sub(/^libboost-regex[0-9.]+-dev$/, "boost-devel", $2);
2187 sub(/^libboost-thread[0-9.]+-dev$/, "boost-devel", $2);
eb4c7da2 2188 sub(/^libcurl4-openssl-dev$/, "curl-devel", $2);
75488183 2189 sub(/^libdnet-dev$/, "libdnet-devel", $2);
75488183 2190 sub(/^libesd0-dev$/, "esound-devel", $2);
75488183 2191 sub(/^libfishsound1-dev$/, "libfishsound-devel", $2);
8962c9c4
ER
2192 sub(/^libgconf2-dev$/, "GConf2-devel", $2);
2193 sub(/^libgl1-mesa-dev$/, "OpenGL-devel", $2);
2194 sub(/^libgl1-mesa-dri$/, "OpenGL", $2);
2195 sub(/^libglib2.0-dev$/, "glib2-devel", $2);
2196 sub(/^libglu1-mesa-dev$/, "OpenGL-GLU-devel", $2);
2197 sub(/^libgtk2.0-dev$/, "gtk+2-devel", $2);
2198 sub(/^libhunspell-dev$/, "hunspell-devel", $2);
2199 sub(/^libmcrypt-dev$/, "libmcrypt-devel", $2);
2200 sub(/^libmhash-dev$/, "mhash-devel", $2);
2201 sub(/^liboggz1-dev$/, "libggz-devel", $2);
2202 sub(/^libpango1.0-dev$/, "pango-devel", $2);
2203 sub(/^libqt4-dev$/, "qt4-build", $2);
2204 sub(/^libshout3-dev$/, "libshout-devel", $2);
75488183 2205 sub(/^libslp-dev$/, "openslp-devel", $2);
8962c9c4
ER
2206 sub(/^libsndfile1-dev$/, "libsndfile-devel", $2);
2207 sub(/^libspeex-dev$/, "speex-devel", $2);
2208 sub(/^libssl-dev$/, "openssl-devel", $2);
2209 sub(/^libvorbis-dev$/, "libvorbis-devel", $2);
2210 sub(/^libxslt1-dev$/, "libxslt-devel", $2);
2211 sub(/^libxss-dev$/, "xorg-lib-libXScrnSaver-devel", $2);
2212 sub(/^mesa-common-dev$/, "OpenGL-devel", $2);
5919d837
ER
2213 sub(/^libudev$/, "udev-libs", $2);
2214 sub(/^tcp_wrappers-devel$/, "libwrap-devel", $2);
2215 sub(/^vala-tools$/, "vala", $2);
2216 sub(/^vala-devel$/, "vala", $2);
f9aa4b77 2217
344db4b4 2218 # altlinux
9466625b 2219 sub(/^libgit-devel$/, "git-core-devel", $2);
344db4b4
ER
2220 sub(/^libncurses-devel$/, "ncurses-devel", $2);
2221 sub(/^libncursesxx-devel$/, "ncurses-c++-devel", $2);
2222 sub(/^libpcre-devel$/, "pcre-devel", $2);
9466625b 2223 sub(/^libssl-devel$/, "openssl-devel", $2);
344db4b4 2224
a6b4adc9 2225 # suse
a6b4adc9 2226 sub(/^alsa-devel$/, "alsa-lib-devel", $2);
a6b4adc9 2227 sub(/^gtk-sharp2$/, "dotnet-gtk-sharp2", $2);
c6ddd554 2228 sub(/^gtkmm2-devel$/, "gtkmm-devel", $2);
01d2701e
ER
2229 sub(/^libexpat-devel$/, "expat-devel", $2);
2230 sub(/^libffmpeg-devel$/, "ffmpeg-devel", $2);
c6ddd554 2231 sub(/^libopenssl-devel$/, "openssl-devel", $2);
01d2701e 2232 sub(/^libpulse-devel$/, "pulseaudio-devel", $2);
a6b4adc9 2233 sub(/^monodoc-core$/, "mono-monodoc", $2);
01d2701e 2234 sub(/^python-gtk$/, "python-pygtk-gtk", $2);
a6b4adc9 2235
485540f7
ER
2236 replace_php_virtual_deps()
2237}
2238
13dda4dc 2239# vim:ts=4:sw=4
This page took 0.67362 seconds and 4 git commands to generate.