]> git.pld-linux.org Git - packages/adapter.git/blame - adapter.awk
- v0.31
[packages/adapter.git] / adapter.awk
CommitLineData
37fceb07 1#!/usr/bin/gawk -f
bf0a58ea 2#
2b4225ea 3# This is adapter v0.31. Adapter adapts .spec files for PLD Linux.
e18c3fe8 4# $Id$
236b87ac 5#
fccce8b5 6# Copyright (C) 1999-2007 PLD-Team <feedback@pld-linux.org>
236b87ac 7# Authors:
b4e337d9 8# Michał Kuratczyk <kura@pld.org.pl>
dda3eaa5 9# Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
b4e337d9 10# Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
d8313167 11# Artur Frysiak <wiget@pld-linux.org>
f37c1259 12# Michal Kochanowicz <mkochano@pld.org.pl>
fccce8b5 13# Jakub Bogusz <qboosh@pld-linux.org>
b4e337d9 14# Elan Ruusamäe <glen@pld-linux.org>
115a3045
ER
15#
16# See cvs log adapter{,.awk} for list of contributors
17#
236b87ac 18# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
3a14bf9d 19
8ebb1c08 20# TODO
03180d14 21# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
8ebb1c08
ER
22# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
23# - add "-nc" option to skip CVS interaction
6c67f9b1
ER
24# - sort Summary(XX)
25# - sort Requires, BuildRequires
fd5553c9 26# - check if %description (lang=C) contains 8bit
6e985933 27# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
8ebb1c08 28
bf0a58ea 29BEGIN {
0ae11f54 30 RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
2b47df45 31 SECTIONS = "^%(" RPM_SECTIONS ")"
93e2a87a 32
43f8581a 33 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)"
c58d1357 34
50037ea2
PZ
35 usedigest = 0 # Enable to switch to rpm 4.4.6+ md5 digests
36
1c955424 37 preamble = 1 # Is it part of preamble? Default - yes
6e985933
ER
38 boc = 4 # Beginning of %changelog
39 bod = 0 # Beginning of %description
7a72f436 40 tw = 70 # Descriptions width
f171fd40 41
89c604c7 42 b_idx = 0 # index of BR/R arrays
b6875e34 43 BR_count = 0 # number of additional BuildRequires
89c604c7 44
85e708f2 45 # If variable removed, then 1 (for removing it from export)
46 removed["LDFLAGS"] = 0
47 removed["CFLAGS"] = 0
48 removed["CXXFLAGS"] = 0
5c18171e 49
f6f0c932
ER
50 # get cvsaddress for changelog section
51 # using rpm macros as too lazy to add ~/.adapterrc parsing support.
52 "rpm --eval '%{?_cvsmaildomain}%{!?_cvsmaildomain:@pld-linux.org}'" | getline _cvsmaildomain
3fc5a496 53 "rpm --eval '%{?_cvsmailfeedback}%{!?_cvsmailfeedback:PLD Team <feedback@pld-linux.org>}'" | getline _cvsmailfeedback
f6f0c932 54
246ad57e 55 # If 1, we are inside of comment block (started with /^#%/)
56 comment_block = 0
f171fd40 57
ed86212f 58 # File with rpm groups
312c5d87
SZ
59 "rpm --eval %_sourcedir" | getline groups_file
60 groups_file = groups_file "/rpm.groups"
826b40ea 61 system("cd `rpm --eval %_sourcedir`; [ -f rpm.groups ] || cvs up rpm.groups >/dev/null")
c2814373 62 system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
f1991554 63
5c18171e 64 # Temporary file for changelog section
65 changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
66
f1991554 67 # Load rpm macros
43c05c3c 68 "rpm --eval %_prefix" | getline prefix
69 "rpm --eval %_bindir" | getline bindir
70 "rpm --eval %_sbindir" | getline sbindir
71 "rpm --eval %_libdir" | getline libdir
72 "rpm --eval %_sysconfdir" | getline sysconfdir
73 "rpm --eval %_datadir" | getline datadir
74 "rpm --eval %_includedir" | getline includedir
75 "rpm --eval %_mandir" | getline mandir
76 "rpm --eval %_infodir" | getline infodir
2a638fcb 77 "rpm --eval %_examplesdir" | getline examplesdir
c2b069de 78 "rpm --eval %_defaultdocdir" | getline docdir
1077f405 79 "rpm --eval %_kdedocdir" | getline kdedocdir
4a62fb54
ER
80 "rpm --eval %_desktopdir" | getline desktopdir
81 "rpm --eval %_pixmapsdir" | getline pixmapsdir
ee9487af 82 "rpm --eval %_javadir" | getline javadir
336c1a4f
ER
83
84 "rpm --eval %perl_sitearch" | getline perl_sitearch
85 "rpm --eval %perl_archlib" | getline perl_archlib
86 "rpm --eval %perl_privlib" | getline perl_privlib
336c1a4f
ER
87 "rpm --eval %perl_vendorlib" | getline perl_vendorlib
88 "rpm --eval %perl_vendorarch" | getline perl_vendorarch
89 "rpm --eval %perl_sitelib" | getline perl_sitelib
9732cb3d 90
b7839d5b
ER
91 "rpm --eval %py_sitescriptdir 2>/dev/null" | getline py_sitescriptdir
92 "rpm --eval %py_sitedir 2>/dev/null" | getline py_sitedir
93 "rpm --eval %py_scriptdir 2>/dev/null" | getline py_scriptdir
6f2c1099
ER
94
95 "rpm --eval %ruby_archdir" | getline ruby_archdir
96 "rpm --eval %ruby_ridir" | getline ruby_ridir
97 "rpm --eval %ruby_rubylibdir" | getline ruby_rubylibdir
98 "rpm --eval %ruby_sitearchdir" | getline ruby_sitearchdir
99 "rpm --eval %ruby_sitelibdir" | getline ruby_sitelibdir
100
57caba32 101 "rpm --eval %php_pear_dir" | getline php_pear_dir
4b1d6e6d 102 "rpm --eval %php_data_dir" | getline php_data_dir
3d8be7c3 103 "rpm --eval %tmpdir" | getline tmpdir
bf0a58ea 104}
105
106# There should be a comment with CVS keywords on the first line of file.
8b1938ea 107FNR == 1 {
f1991554 108 if (!/# \$Revision:/) # If this line is already OK?
109 print "# $" "Revision:$, " "$" "Date:$" # No
04dde927 110 else {
f1991554 111 print $0 # Yes
112 next # It is enough for first line
04dde927 113 }
bf0a58ea 114}
115
43c05c3c 116# If the latest line matched /%files/
117defattr == 1 {
13b24a87
ER
118 if (ENVIRON["SKIP_DEFATTR"] != 1) {
119 if ($0 !~ /defattr/) { # If no %defattr
120 print "%defattr(644,root,root,755)" # Add it
121 } else {
122 $0 = "%defattr(644,root,root,755)" # Correct mistakes (if any)
123 }
124 }
aec1bddb 125 defattr = 0
43c05c3c 126}
127
89c604c7
ER
128function b_makekey(a, b, s) {
129 s = a "" b;
130 # kill bcond
b6875e34 131 gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
3b0074cc 132
8409a9b2 133 # kill commented out items
b6875e34 134 gsub(/^#[ \t]*/, "", s);
3b0074cc 135
c58d1357 136 # force order
985d9bc7
ER
137 gsub(/^Summary\(/, "11Summary(", s);
138 gsub(/^Summary/, "10Summary", s);
139 gsub(/^Name/, "2Name", s);
140 gsub(/^Version/, "3Version", s);
141 gsub(/^Release/, "4Release", s);
142 gsub(/^Epoch/, "5Epoch", s);
143 gsub(/^License/, "5License", s);
144 gsub(/^Group/, "6Group", s);
145 gsub(/^URL/, "7URL", s);
146
147 gsub(/^BuildRequires/, "B1BuildRequires", s);
148 gsub(/^BuildConflicts/, "B2BuildConflicts", s);
43f8581a 149
43f8581a 150 gsub(/^Suggests/, "X1Suggests", s);
2eef43e9
JB
151 gsub(/^Provides/, "X2Provides", s);
152 gsub(/^Obsoletes/, "X3Obsoletes", s);
153 gsub(/^Conflicts/, "X4Conflicts", s);
154 gsub(/^BuildArch/, "X5BuildArch", s);
985d9bc7
ER
155 gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
156 gsub(/^ExcludeArch/, "X7ExcludeArch", s);
157 gsub(/^BuildRoot/, "X9BuildRoot", s);
d9e2bd9b
ER
158
159# printf("%s -> %s\n", a""b, s);
89c604c7
ER
160 return s;
161}
162
eee34ffb 163# Comments
22622171 164/^#/ && (description == 0) {
eee34ffb 165 if (/This file does not like to be adapterized!/) {
166 print # print this message
167 while (getline) # print the rest of spec as it is
168 print
169 do_not_touch_anything = 1 # do not touch anything in END()
170 exit 0
171 }
246ad57e 172
eee34ffb 173 # Generally, comments are printed without touching
70a1dc9e 174 sub(/[ \t]+$/, "")
4414eb86 175
50037ea2
PZ
176 if (/#[ \t]*Source.*md5/) {
177 if (usedigest == 1) {
178 sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
179 sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
180 }
4414eb86
ER
181 print $0
182 next
183 }
246ad57e 184}
185
1da27823 186/^%define/ {
93e2a87a 187 # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
71a4728c 188 if ($2 == "_applnkdir") {
ba4b52a7 189 next
71a4728c
ER
190 }
191 if ($2 == "date") {
ba4b52a7 192 date = 1
4ab1678b
ER
193 if (did_files == 0) {
194 print "%files"
195 print ""
196 did_files = 1
197 }
71a4728c
ER
198 }
199
200 # Do not add %define of _prefix if it already is.
201 if ($2 ~ /^_prefix/) {
202 sub("^"prefix, $3, bindir)
203 sub("^"prefix, $3, sbindir)
204 sub("^"prefix, $3, libdir)
205 sub("^"prefix, $3, datadir)
206 sub("^"prefix, $3, includedir)
207 prefix = $3
208 }
209
210 if ($2 ~ /_bindir/ && !/_sbindir/)
211 bindir = $3
212 if ($2 ~ /_sbindir/)
213 sbindir = $3
a27fac4d
ER
214 if ($2 ~ /_libdir/) {
215 if ($3 ~ /^%\(/) {
216 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
217 libdir = "%%%%%%%%%%%%%%"
218 } else {
219 libdir = $3
220 }
221 }
93e2a87a
ER
222 if ($2 ~ /_sysconfdir/) {
223 if ($3 ~ /^%\(/) {
224 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
225 sysconfdir = "%%%%%%%%%%%%%%"
226 } else {
227 sysconfdir = $3
228 }
229 }
a27fac4d
ER
230 if ($2 ~ /_datadir/) {
231 if ($3 ~ /^%\(/) {
232 # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
233 datadir = "%%%%%%%%%%%%%%"
234 } else {
235 datadir = $3
236 }
237 }
71a4728c
ER
238 if ($2 ~ /_includedir/)
239 includedir = $3
240 if ($2 ~ /_mandir/)
241 mandir = $3
242 if ($2 ~ /_infodir/)
243 infodir = $3
c2b069de
ER
244 if ($2 ~ /_docdir/)
245 docdir = $3
71a4728c
ER
246
247 # version related macros
248 if ($2 ~ /^_beta$/)
249 _beta = $3
250 if ($2 ~ /^_rc$/)
251 _rc = $3
59de1799
ER
252 if ($2 ~ /^_pre$/)
253 _pre = $3
71a4728c
ER
254 if ($2 ~ /^_snap$/)
255 _snap = $3
3c5e6e5f
ER
256 if ($2 ~ /^subver$/)
257 subver = $3
71a4728c
ER
258
259 # these are used usually when adapterizing external spec
260 if ($2 ~ /^name$/)
261 name = $3
262 if ($2 ~ /^version$/)
263 version = $3
264 if ($2 ~ /^release$/)
265 release = $3
a39ddef5 266
0ea7c3cd
ER
267 if ($2 ~ /^mod_name$/)
268 mod_name = $3
269
78d96561 270 sub(/[ \t]+$/, "");
a39ddef5
ER
271 # do nothing further, otherwise adapter thinks we're at preamble
272 print
273 next
1da27823
SZ
274}
275
6c67f9b1
ER
276# Obsolete
277/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
278 next
279}
280
246ad57e 281################
282# %description #
283################
93e2a87a 284/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
aec1bddb 285 preamble = 0
efe53381 286
3a14bf9d 287 if (/^%description/) {
aec1bddb 288 bod++
236b87ac 289 format_line = ""
290 format_indent = -1
3a14bf9d
SZ
291 }
292
236b87ac 293 # Format description
7b868d98 294 if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
3a14bf9d 295 if (/^[ \t]*$/) {
236b87ac 296 format_flush(format_line, format_indent)
3a14bf9d 297 print ""
236b87ac 298 format_line = ""
299 format_indent = -1
3a14bf9d 300 } else if (/^[ \t]*[-\*][ \t]*/) {
236b87ac 301 format_flush(format_line, format_indent)
f171fd40 302 match($0, /^[ \t]*/)
236b87ac 303 format_indent = RLENGTH
304 match($0, /^[ \t]*[-\*][ \t]/)
305 format_line = substr($0, RLENGTH)
f171fd40 306 } else
236b87ac 307 format_line = format_line " " $0
aec1bddb 308 next
efe53381 309 }
f171fd40 310
1da27823 311 if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
ddb18dd4 312 if (NF > 3 && $2 == "-l") {
313 ll = $1
314 for (i = 4; i <= NF; i++)
315 ll = ll " " $i
316 $0 = ll " -l " $3
317 }
236b87ac 318 format_flush(format_line, format_indent)
efe53381 319 if (bod == 2) {
aec1bddb
SZ
320 bod = 1
321 description = 1
efe53381 322 } else {
aec1bddb
SZ
323 bod = 0
324 description = 0
efe53381 325 }
326 } else
aec1bddb 327 description = 1
bf0a58ea 328}
329
246ad57e 330#########
331# %prep #
332#########
93e2a87a 333/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
aec1bddb 334 preamble = 0
4ab1678b 335 did_prep = 1
f171fd40 336
ac779c71
ER
337 use_macros()
338
43c05c3c 339 # Add '-q' to %setup
e780ff0a 340 if (/^%setup/ && !/-q/) {
1da27823 341 sub(/^%setup/, "%setup -q")
e780ff0a
ER
342 }
343
af38fe16 344 if (/^%setup/ && name != "setup") {
e9097b46
ER
345 $0 = fixedsub(name, "%{name}", $0);
346 $0 = fixedsub(version, "%{version}", $0);
4a8d9a70 347 if (_beta) {
e9097b46 348 $0 = fixedsub(_beta, "%{_beta}", $0);
4a8d9a70
ER
349 }
350 if (_rc) {
e9097b46 351 $0 = fixedsub(_rc, "%{_rc}", $0);
4a8d9a70 352 }
59de1799
ER
353 if (_pre) {
354 $0 = fixedsub(_pre, "%{_pre}", $0);
355 }
4a8d9a70 356 if (_snap) {
e9097b46 357 $0 = fixedsub(_snap, "%{_snap}", $0);
4a8d9a70 358 }
3c5e6e5f
ER
359 if (subver) {
360 $0 = fixedsub(subver, "%{subver}", $0);
361 }
4f822e22
ER
362 }
363
10690436 364 if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
e9097b46 365 $0 = fixedsub(" -n %{name}-%{version}", "", $0)
e780ff0a 366 }
b6875e34 367 sub("^%patch ", "%patch0 ");
ac779c71
ER
368
369 # invalid in %prep
370 sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
bf0a58ea 371}
372
246ad57e 373##########
374# %build #
375##########
93e2a87a 376/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
aec1bddb 377 preamble = 0
bf0a58ea 378
4ab1678b
ER
379 if (did_prep == 0) {
380 print "%prep"
381 print ""
382 did_prep = 1
383 }
384
aec1bddb 385 use_macros()
6ebff802 386 use_tabs()
f171fd40 387
9cb72c72 388 if (/^automake$/)
389 sub(/$/, " -a -c")
390
eb4bf70e 391 if (/LDFLAGS/) {
85e708f2 392 if (/LDFLAGS="-s"/) {
393 removed["LDFLAGS"] = 1
394 next
395 } else {
396 split($0, tmp, "LDFLAGS=")
eb4bf70e 397 count = split(tmp[2], flags, "\"")
85e708f2 398 if (flags[1] != "" && flags[1] !~ "!?debug") {
fde8f52a 399 sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
85e708f2 400 $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
401 for (i = 2; i < count; i++)
402 $0 = $0 flags[i] "\""
403 }
eb4bf70e 404 }
405 }
406
407 if (/CFLAGS=/)
408 if (cflags("CFLAGS") == 0)
409 next
410
411 if (/CXXFLAGS=/)
412 if (cflags("CXXFLAGS") == 0)
413 next
f171fd40 414
85e708f2 415 if (/^export /) {
416 if (removed["LDFLAGS"])
417 sub(" LDFLAGS", "")
418 if (removed["CFLAGS"])
419 sub(" CFLAGS", "")
420 if (removed["CXXFLAGS"])
421 sub(" CXXFLAGS", "")
422 # Is there still something?
423 if (/^export[ ]*$/)
424 next
425 }
2d74be7e 426
db9b1bf2 427 # quote CC
2d74be7e
ER
428 if (/CC=%{__cc} /) {
429 sub("CC=%{__cc}", "CC=\"%{__cc}\"")
430 }
b34b8660 431
e6f1551d 432 # use PLD Linux macros
b34b8660
ER
433 $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
434 $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
db9b1bf2 435 $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
56699a32 436 $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
4e26c5f2 437 $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
ebeed758 438 $0 = fixedsub("automake -a -c", "%{__automake}", $0);
56699a32
ER
439 $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
440 $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
db9b1bf2
ER
441
442 sub(/^aclocal$/, "%{__aclocal}");
443 sub(/^autoheader$/, "%{__autoheader}");
444 sub(/^autoconf$/, "%{__autoconf}");
445 sub(/^automake$/, "%{__automake}");
ebeed758 446 sub(/^libtoolize$/, "%{__libtoolize}");
f171fd40 447
5e15e952
ER
448 # atrpms
449 $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
450 $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
bf0a58ea 451}
452
246ad57e 453##########
454# %clean #
455##########
93e2a87a 456/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
1c52b18e 457 did_clean = 1
e6f1551d 458
b6875e34 459 use_macros()
1c52b18e
SZ
460}
461
246ad57e 462############
463# %install #
464############
93e2a87a 465/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
f171fd40 466
aec1bddb 467 preamble = 0
f171fd40 468
ec0082cc 469 # foreign rpms
624df313 470 sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b6875e34
ER
471 sub("%buildroot", "$RPM_BUILD_ROOT");
472 sub("%{buildroot}", "$RPM_BUILD_ROOT");
ec0082cc 473
624df313 474 if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
1c52b18e 475 did_rmroot=1
dda3eaa5
SZ
476 print "rm -rf $RPM_BUILD_ROOT"
477 next
478 }
43c05c3c 479
1c52b18e 480 if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
dda3eaa5 481 print "rm -rf $RPM_BUILD_ROOT"
1c52b18e 482 did_rmroot=1
dda3eaa5 483 }
f171fd40 484
b6875e34
ER
485 if (tmpdir) {
486 buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
3d8be7c3 487 gsub(buildroot, "$RPM_BUILD_ROOT")
b6875e34 488 }
3d8be7c3 489
b6875e34
ER
490 if (!/%{_lib}/) {
491 sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
492 }
259883bf 493
dda3eaa5 494 use_macros()
f171fd40 495
bf0a58ea 496 # 'install -d' instead 'mkdir -p'
497 if (/mkdir -p/)
aec1bddb 498 sub(/mkdir -p/, "install -d")
fde90d94 499
48409aee 500 # cp -a already implies cp -r
b6875e34 501 sub(/^cp -ar/, "cp -a")
f171fd40 502
43c05c3c 503 # No '-u root' or '-g root' for 'install'
681a4871 504 if (/^install/ && /-[ug][ \t]*root/)
aec1bddb 505 gsub(/-[ug][ \t]*root /, "")
f171fd40 506
2016aa83
ER
507 if (/^install/ && /-m[ \t]*[0-9]+/)
508 gsub(/-m[ \t]*[0-9]+ /, "")
f171fd40 509
f1991554 510 # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
43c05c3c 511 if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
aec1bddb 512 next
f171fd40 513
43c05c3c 514 # No lines contain 'chmod' if it sets the modes to '644'
681a4871 515 if ($1 ~ /chmod/ && $2 ~ /644/)
aec1bddb 516 next
5e15e952 517
5e15e952
ER
518 # atrpms
519 $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
bf0a58ea 520}
521
246ad57e 522##########
523# %files #
524##########
93e2a87a 525/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
aec1bddb 526 preamble = 0
4ab1678b 527 did_files = 1
f171fd40 528
1da27823 529 if ($0 ~ /^%files/)
aec1bddb 530 defattr = 1
f171fd40 531
eee34ffb 532 use_files_macros()
bf0a58ea 533}
534
246ad57e 535##############
536# %changelog #
537##############
93e2a87a 538/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
aec1bddb 539 preamble = 0
dda3eaa5 540 has_changelog = 1
97e21521 541 skip = 0
bf0a58ea 542 # There should be some CVS keywords on the first line of %changelog.
97e21521 543 if (boc == 3) {
4b7a9b6b 544 if ($0 !~ _cvsmailfeedback) {
f6f0c932 545 print "* %{date} " _cvsmailfeedback > changelog_file
4b7a9b6b 546 } else {
97e21521 547 skip = 1
4b7a9b6b 548 }
97e21521 549 boc = 2
d31b8a48 550 }
97e21521 551 if (boc == 2 && !skip) {
d31b8a48 552 if (!/All persons listed below/) {
fd5e70be 553 printf "All persons listed below can be reached at " > changelog_file
f6f0c932 554 print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
4b7a9b6b 555 } else {
97e21521 556 skip = 1
4b7a9b6b 557 }
44379e57 558 boc = 1
bf0a58ea 559 }
97e21521
JB
560 if (boc == 1 && !skip) {
561 if (!/^$/) {
4b7a9b6b 562 if (!/\$.*Log:.*\$/) {
97e21521 563 print "$" "Log:$" > changelog_file
4b7a9b6b 564 }
97e21521
JB
565 boc = 0
566 }
d31b8a48 567 }
3fdddc43 568 # Define date macro.
d31b8a48 569 if (boc == 4) {
a1aa4976 570 if (date == 0) {
5c18171e 571 printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
572 print " date +\"%a %b %d %Y\"`)" > changelog_file
1395ea1c 573 date = 1
a1aa4976 574 }
d31b8a48 575 boc = 3
3fdddc43 576 }
5c18171e 577
4b7a9b6b
ER
578 sub(/[ \t]+$/, "");
579 if (!/^%[a-z]+$/ || /changelog/) {
580 # stop changelog if "real" changelog starts
581 if (boc == 0 && /^\* /) {
582 boc = -1
583 }
584 if (boc == -1) {
585 next;
586 }
5c18171e 587 print > changelog_file
4b7a9b6b 588 } else {
5c18171e 589 print
4b7a9b6b 590 }
5c18171e 591 next
bf0a58ea 592}
593
246ad57e 594###########
595# SCRIPTS #
596###########
93e2a87a 597/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
246ad57e 598 preamble = 0
e9176470 599
723ce732
ER
600 if (gsub("/usr/sbin/useradd", "%useradd")) {
601 sub(" 2> /dev/null \|\| :", "");
602 sub(" >/dev/null 2>&1 \|\|:", "");
603 }
604
e9176470
ER
605 # %useradd and %groupadd may not be wrapped
606 if (/%(useradd|groupadd).*\\$/) {
607 a = $0; getline;
608 sub(/^[\s\t]*/, "");
609 $0 = substr(a, 1, length(a) - 1) $0;
610 }
723ce732 611 use_script_macros()
246ad57e 612}
e9176470 613
93e2a87a 614/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
246ad57e 615 preamble = 0
c2b069de 616 use_macros()
246ad57e 617}
93e2a87a 618/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
246ad57e 619 preamble = 0
d11acde9 620 use_macros()
246ad57e 621}
93e2a87a 622/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
246ad57e 623 preamble = 0
723ce732 624 use_script_macros()
246ad57e 625}
93e2a87a 626/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
bdba3986 627 preamble = 0
723ce732 628 use_script_macros()
bdba3986 629}
93e2a87a 630/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
bdba3986 631 preamble = 0
723ce732 632 use_script_macros()
bdba3986 633}
93e2a87a 634/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
bdba3986 635 preamble = 0
723ce732 636 use_script_macros()
bdba3986 637}
93e2a87a 638/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
bdba3986 639 preamble = 0
723ce732 640 use_script_macros()
bdba3986 641}
93e2a87a 642/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
bdba3986 643 preamble = 0
723ce732 644 use_script_macros()
bdba3986 645}
0ae11f54
ER
646/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
647 preamble = 0
723ce732 648 use_script_macros()
0ae11f54
ER
649}
650/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
651 preamble = 0
723ce732 652 use_script_macros()
0ae11f54 653}
246ad57e 654
655#############
656# PREAMBLES #
657#############
bf0a58ea 658preamble == 1 {
681a4871 659 # There should not be a space after the name of field
660 # and before the colon.
aec1bddb 661 sub(/[ \t]*:/, ":")
f171fd40 662
1462d6a3
ER
663 if (/^%perl_module_wo_prefix/) {
664 name = $2
665 version = $3
666 release = "0." fixedsub(".%{disttag}.at", "", $4)
667 }
668
aec1bddb 669 field = tolower($1)
db170a71 670 fieldnlower = $1
38cb34ef 671 if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
024709c6
ER
672 sub(/\.$/, "", $0);
673 }
f37c1259 674 if (field ~ /group(\([^)]+\)):/)
1a5b27d5 675 next
f37c1259 676 if (field ~ /group:/) {
677 format_preamble()
d9e2bd9b
ER
678 group = $0;
679 sub(/^[^ \t]*[ \t]*/, "", group);
ad9ea417 680 group = replace_groupnames(group);
d9e2bd9b
ER
681 $0 = "Group:\t\t" group
682
683 if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
7a72f436 684 x11 = 1
8e5358f8 685
d9e2bd9b 686 byl_plik_z_groupmi = 0
8e5358f8
SZ
687 byl_opis_grupy = 0
688 while ((getline linia_grup < groups_file) > 0) {
d9e2bd9b
ER
689 byl_plik_z_groupmi = 1
690 if (linia_grup == group) {
8e5358f8
SZ
691 byl_opis_grupy = 1
692 break
693 }
694 }
69501a12 695
d9e2bd9b 696 if (!byl_plik_z_groupmi)
8e5358f8
SZ
697 print "######\t\t" groups_file ": no such file"
698 else if (!byl_opis_grupy)
699 print "######\t\t" "Unknown group!"
f171fd40 700
8e5358f8 701 close(groups_file)
4ab1678b 702 did_groups = 1
8e5358f8 703 }
f171fd40 704
307f5229 705 if (field ~ /prereq:/) {
a68f7b3b 706 sub(/Pre[Rr]eq:/, "Requires:", $1);
307f5229
ER
707 }
708
4aa6db15 709 # split (build)requires, obsoletes on commas
44ff0c79 710 if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
ba377afe
ER
711 value = substr($0, index($0, $2));
712 $0 = format_requires($1, value);
f12ab15d 713 }
b6875e34 714
8e734165
ER
715 # BR: tar (and others) is to common (rpm-build requires it)
716 if (field ~ /^buildrequires:/) {
eb028bca
ER
717 l = substr($0, index($0, $2));
718 if (l == "awk" ||
719 l == "binutils" ||
720 l == "bzip2" ||
721 l == "cpio" ||
722 l == "diffutils" ||
723 l == "elfutils" ||
724 l == "fileutils" ||
725 l == "findutils" ||
726 l == "glibc-devel" ||
727 l == "grep" ||
728 l == "gzip" ||
729 l == "make" ||
730 l == "patch" ||
731 l == "sed" ||
732 l == "sh-utils" ||
733 l == "tar" ||
734 l == "textutils") {
8e734165
ER
735 next
736 }
d0297fb3 737
92fa789e 738 replace_requires();
8e734165
ER
739 }
740
30cd4686 741 if (field ~ /^requires:/) {
92fa789e 742 replace_requires();
b6875e34 743 }
30cd4686
ER
744
745
ff21ed9e 746 # obsolete/unwanted tags
32908bc5 747 if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
aec1bddb 748 next
ba377afe 749 }
f171fd40 750
4ab1678b 751 if (field ~ /buildroot:/) {
376e6bc4 752 $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
4ab1678b
ER
753 did_build_root = 1
754 }
681a4871 755
681a4871 756 # Use "License" instead of "Copyright" if it is (L)GPL or BSD
4932d2c6 757 if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
aec1bddb 758 $1 = "License:"
4932d2c6 759 }
f171fd40 760
3b07e07f
ER
761 if (field ~ /license:/) {
762 l = substr($0, index($0, $2));
763 if (l == "Python Software Foundation License") {
764 l = "PSF"
765 }
6112ae02
ER
766 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") {
767 l = "Apache v2.0"
768 }
769 if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
770 l = "Apache"
771 }
772 if (l == "Apache-style License" || l == "Apache-style Software License") {
773 l = "Apache-like"
774 }
775 if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
776 l = "Apache v1.1"
777 }
ee9487af
ER
778 if (l == "GPLv2") {
779 l = "GPL v2"
780 }
781 if (l == "GPLv2+") {
782 l = "GPL v2+"
783 }
3b07e07f
ER
784 $0 = "License:\t" l;
785 }
786
787
1462d6a3 788 if (field ~ /name:/) {
6426afb8 789 if ($2 == "%{name}" && name) {
63d47bae
ER
790 $2 = name
791 }
aec1bddb 792 name = $2
1462d6a3
ER
793 name_seen = 1;
794 }
681a4871 795
1462d6a3 796 if (field ~ /version:/) {
63d47bae
ER
797 if ($2 == "%{version}" && version) {
798 $2 = version
799 }
aec1bddb 800 version = $2
1462d6a3
ER
801 version_seen = 1;
802 }
803
804 if (field ~ /release:/) {
63d47bae
ER
805 if ($2 == "%{release}" && release) {
806 $2 = release
807 }
4ab1678b 808 sub(/%atrelease /, "0.", $0)
1462d6a3
ER
809 release = $2
810 release_seen = 1;
811 }
681a4871 812
32908bc5 813
c4dde22b
SZ
814 if (field ~ /serial:/)
815 $1 = "Epoch:"
b6853342 816
32908bc5
ER
817 if (field ~ /home-page:/)
818 $1 = "URL:"
819
89b1cd55 820 # proper caps
cf038723 821 if (field ~ /^url:$/)
89b1cd55
ER
822 $1 = "URL:"
823
32908bc5
ER
824 if (field ~ /^description:$/)
825 $1 = "\n%description\n"
826
681a4871 827 # Use %{name} and %{version} in the filenames in "Source:"
f4cb1924 828 if (field ~ /^source/ || field ~ /patch/) {
aec1bddb 829 n = split($2, url, /\//)
fd8718a5
SZ
830 if (url[n] ~ /\.gz$/) {
831 url[n+1] = ".gz" url[n+1]
832 sub(/\.gz$/,"",url[n])
833 }
834 if (url[n] ~ /\.zip$/) {
835 url[n+1] = ".zip" url[n+1]
836 sub(/\.zip$/,"",url[n])
837 }
838 if (url[n] ~ /\.tar$/) {
839 url[n+1] = ".tar" url[n+1]
840 sub(/\.tar$/,"",url[n])
841 }
842 if (url[n] ~ /\.patch$/) {
843 url[n+1] = ".patch" url[n+1]
844 sub(/\.patch$/,"",url[n])
845 }
846 if (url[n] ~ /\.bz2$/) {
847 url[n+1] = ".bz2" url[n+1]
848 sub(/\.bz2$/,"",url[n])
849 }
dac4e142
SZ
850 if (url[n] ~ /\.logrotate$/) {
851 url[n+1] = ".logrotate" url[n+1]
852 sub(/\.logrotate$/,"",url[n])
853 }
854 if (url[n] ~ /\.pamd$/) {
855 url[n+1] = ".pamd" url[n+1]
856 sub(/\.pamd$/,"",url[n])
857 }
858
a3fcc309 859 # allow %{name} only in last url component
ced0372e
ER
860 s = ""
861 for (i = 1; i <= n; i++) {
862 url[i] = fixedsub("%{name}", name, url[i])
863 if (s) {
864 s = s "/" url[i]
865 } else {
866 s = url[i]
867 }
868 }
869 $2 = s url[n+1]
870
aec1bddb 871 filename = url[n]
5e028343
ER
872 if (name) {
873 url[n] = fixedsub(name, "%{name}", url[n])
874 }
755ab9c0 875 if (field ~ /source/) {
5e028343
ER
876 if (version) {
877 url[n] = fixedsub(version, "%{version}", url[n])
878 }
755ab9c0
ER
879 if (_beta) {
880 url[n] = fixedsub(_beta, "%{_beta}", url[n])
881 }
882 if (_rc) {
883 url[n] = fixedsub(_rc, "%{_rc}", url[n])
884 }
59de1799
ER
885 if (_pre) {
886 url[n] = fixedsub(_pre, "%{_pre}", url[n])
887 }
755ab9c0
ER
888 if (_snap) {
889 url[n] = fixedsub(_snap, "%{_snap}", url[n])
890 }
3c5e6e5f
ER
891 if (subver) {
892 url[n] = fixedsub(subver, "%{subver}", url[n])
893 }
755ab9c0 894 }
57caba32 895 # assigning to $2 kills preamble formatting
fd8718a5 896 $2 = fixedsub(filename, url[n], $2)
f171fd40 897
8ea8f0ae 898 $2 = unify_url($2)
681a4871 899 }
8b1938ea 900
f171fd40 901
f4cb1924 902 if (field ~ /^source:/)
f171fd40 903 $1 = "Source0:"
aec1bddb 904
13b24a87 905 if (field ~ /^patch:/)
aec1bddb 906 $1 = "Patch0:"
f171fd40 907
0ea7c3cd 908 kill_preamble_macros();
aec1bddb 909 format_preamble()
f171fd40 910
c26ee7ef
ER
911 if (field ~ /requires/) {
912 # atrpms
913 $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
914 }
bf0a58ea 915}
916
4c1b7426
ER
917/^%bcond_/ {
918 # do nothing
919 print
920 next
921}
c58d1357
ER
922
923# sort BR/R!
924#
925# NOTES:
926# - mixing BR/R and anything else confuses this (all will be sorted together)
b6875e34 927# so don't do that.
c58d1357 928# - comments leading the BR/R can not be associated,
b6875e34 929# so don't adapterize when the BR/R are mixed with comments
c58d1357 930ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
57caba32 931 if ($1 ~ /Pre[Rr]eq:/) {
a68f7b3b 932 sub(/Pre[Rr]eq:/, "Requires:", $1);
c58d1357 933 }
23ddcab1
ER
934 if ($1 == "BR:" ) {
935 $1 = "BuildRequires:"
936 }
937 if ($1 == "R:" ) {
938 $1 = "Requires:"
939 }
c58d1357 940 format_preamble()
8f7c516b 941# kill_preamble_macros(); # breaks tabbing
c58d1357
ER
942
943 b_idx++;
944 l = substr($0, index($0, $2));
945 b_ktmp = b_makekey($1, l);
946 b_key[b_idx] = b_ktmp;
947 b_val[b_ktmp] = $0;
948
949 next;
950}
951
c58d1357
ER
952preamble == 1 {
953 if (b_idx > 0) {
954 isort(b_key, b_idx);
955 for (i = 1; i <= b_idx; i++) {
4932d2c6
ER
956 v = b_val[b_key[i]];
957 sub(/[ \t]+$/, "", v);
958 print "" v;
c58d1357
ER
959 }
960 b_idx = 0
961 }
962}
963
7a72f436 964# main() ;-)
bf0a58ea 965{
aec1bddb 966 preamble = 1
f171fd40 967
70a1dc9e 968 sub(/[ \t]+$/, "")
aec1bddb 969 print
1462d6a3
ER
970
971 if (name_seen == 0 && name) {
31702e1e 972 print "Name:\t\t" name
1462d6a3
ER
973 name_seen = 1
974 }
975
976 if (version_seen == 0 && version) {
977 print "Version:\t" version
978 version_seen = 1
979 }
980
981 if (release_seen == 0 && release) {
982 print "Release:\t" release
983 release_seen = 1
984 }
32908bc5
ER
985
986 if (did_build_root == 0) {
4ab1678b 987# print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
32908bc5
ER
988 did_build_root = 1
989 }
4ab1678b
ER
990 if (did_groups == 0) {
991# print "Group:\t\tunknown"
992 did_groups = 1
993 }
a1aa4976 994}
995
f1991554 996
a1aa4976 997END {
eee34ffb 998 if (do_not_touch_anything)
999 exit 0
f171fd40 1000
b6875e34
ER
1001 # TODO: need to output these in proper place
1002 if (BR_count > 0) {
1003 for (i = 0; i <= BR_count; i++) {
1004 print BR[i];
1005 }
1006 }
1c955424 1007
f1991554 1008 close(changelog_file)
1009 while ((getline < changelog_file) > 0)
1010 print
1011 system("rm -f " changelog_file)
48c6019c 1012
1c52b18e
SZ
1013 if (did_clean == 0) {
1014 print ""
1015 print "%clean"
1016 print "rm -rf $RPM_BUILD_ROOT"
1017 }
1018
dda3eaa5
SZ
1019 if (date == 0) {
1020 print ""
1021 print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
1022 }
f171fd40 1023
1c955424 1024 if (has_changelog == 0) {
1395ea1c 1025 print "%changelog"
b6875e34 1026 }
dda3eaa5 1027
1c955424 1028 if (boc > 2) {
5bdbef27 1029 print "* %{date} PLD Team <feedback@pld-linux.org>"
b6875e34 1030 }
d31b8a48 1031 if (boc > 1) {
f818cd64 1032 printf "All persons listed below can be reached at "
5bdbef27 1033 print "<cvs_login>@pld-linux.org\n"
a1aa4976 1034 }
1c955424 1035 if (boc > 0) {
d31b8a48 1036 print "$" "Log:$"
b6875e34 1037 }
bf0a58ea 1038}
1039
7a72f436 1040function fixedsub(s1,s2,t, ind) {
fd8718a5 1041# substitutes fixed strings (not regexps)
7a72f436 1042 if (ind = index(t,s1))
1043 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
1044 return t
fd8718a5
SZ
1045}
1046
8b1938ea 1047# There should be one or two tabs after the colon.
1048function format_preamble()
1049{
57caba32 1050 if (/^#/ || /^%bcond_with/) {
08f60a73
ER
1051 return;
1052 }
aec1bddb 1053 sub(/:[ \t]*/, ":")
2b94cfb4
ER
1054 if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
1055 if (RLENGTH < 8) {
aec1bddb 1056 sub(/:/, ":\t\t")
b6875e34 1057 } else {
aec1bddb 1058 sub(/:/, ":\t")
b6875e34 1059 }
8b1938ea 1060 }
1061}
1062
43c05c3c 1063# Replace directly specified directories with macros
1064function use_macros()
1065{
13b24a87
ER
1066 # -m, --skip-macros, --no-macros -- skip macros subst
1067 if (ENVIRON["SKIP_MACROS"]) {
1068 return
1069 }
1070
b05d5275
ER
1071 # leave inline sed lines alone
1072 if (/(%{__sed}|sed) -i -e/) {
1073 return;
1074 }
1075
b6875e34
ER
1076 sub("%{_defaultdocdir}", "%{_docdir}");
1077 sub("%{_bindir}/perl", "%{__perl}");
1078 sub("%{_bindir}/python", "%{__python}");
36d9a33d 1079
a372a159
ER
1080 gsub(infodir, "%{_infodir}")
1081
336c1a4f
ER
1082 gsub(perl_sitearch, "%{perl_sitearch}")
1083 gsub(perl_archlib, "%{perl_archlib}")
1084 gsub(perl_privlib, "%{perl_privlib}")
336c1a4f
ER
1085 gsub(perl_vendorlib, "%{perl_vendorlib}")
1086 gsub(perl_vendorarch, "%{perl_vendorarch}")
1087 gsub(perl_sitelib, "%{perl_sitelib}")
9732cb3d
ER
1088
1089 gsub(py_sitescriptdir, "%{py_sitescriptdir}")
4ab1678b 1090 gsub(py_sitedir, "%{py_sitedir}")
1bdf7824 1091 gsub(py_scriptdir, "%{py_scriptdir}")
4a62fb54 1092 gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
22ee0568 1093 gsub("%{python_sitelib}", "%{py_sitedir}")
6f2c1099
ER
1094
1095 gsub(ruby_archdir, "%{ruby_archdir}")
1096 gsub(ruby_ridir, "%{ruby_ridir}")
1097 gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
1098 gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
1099 gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
1100
4a62fb54
ER
1101 gsub("%{_datadir}/applications", "%{_desktopdir}")
1102 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
ee9487af 1103 gsub("%{_datadir}/java", "%{_javadir}")
336c1a4f 1104
e00f41b5 1105 gsub(libdir, "%{_libdir}")
ee9487af 1106 gsub(javadir, "%{_javadir}")
e00f41b5 1107
aec1bddb 1108 gsub(bindir, "%{_bindir}")
74edc57e 1109 gsub("%{prefix}/bin", "%{_bindir}")
b05d5275 1110 if (prefix"/bin" == bindir)
0080f34c 1111 gsub("%{_prefix}/bin", "%{_bindir}")
74edc57e 1112
de69503c 1113 for (c = 1; c <= NF; c++) {
1114 if ($c ~ sbindir "/fix-info-dir")
1115 continue;
3457b4f7
ER
1116 if ($c ~ sbindir "/webapp")
1117 continue;
a372a159
ER
1118 if ($c ~ sbindir "/ldconfig")
1119 continue;
4837c1e3
ER
1120 if ($c ~ sbindir "/chsh")
1121 continue;
1122 if ($c ~ sbindir "/usermod")
1123 continue;
f06959ff
ER
1124 if ($c ~ sbindir "/chkconfig")
1125 continue;
836e411f
ER
1126 if ($c ~ sbindir "/installzope(product|3package)")
1127 continue;
de69503c 1128 gsub(sbindir, "%{_sbindir}", $c)
1129 }
1130
74edc57e 1131 gsub("%{prefix}/sbin", "%{_sbindir}")
836e411f 1132 if (prefix"/sbin" == sbindir) {
5e1d0492 1133 gsub("%{_prefix}/sbin", "%{_sbindir}")
836e411f 1134 }
74edc57e 1135
353f5eea 1136 for (c = 1; c <= NF; c++) {
0965a1a0 1137 if ($c ~ sysconfdir "/{?cron.")
de69503c 1138 continue;
0080f34c 1139 if ($c ~ sysconfdir "/{?crontab.d")
807a0f6b 1140 continue;
6c178315
ER
1141 if ($c ~ sysconfdir "/{?env.d")
1142 continue;
90a421f5 1143 if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
554d6b98 1144 continue;
5d7c48a4
ER
1145 if ($c ~ sysconfdir "/{?udev")
1146 continue;
1147 if ($c ~ sysconfdir "/{?hotplug")
e61b5989 1148 continue;
0080f34c 1149 if ($c ~ sysconfdir "/{?logrotate.d")
353f5eea 1150 continue;
0080f34c 1151 if ($c ~ sysconfdir "/{?pam.d")
a9b2c8c7 1152 continue;
0080f34c 1153 if ($c ~ sysconfdir "/{?profile.d")
66ef7810 1154 continue;
0080f34c 1155 if ($c ~ sysconfdir "/{?rc.d")
9ad7f20b 1156 continue;
0080f34c 1157 if ($c ~ sysconfdir "/{?security")
a9b2c8c7 1158 continue;
0080f34c 1159 if ($c ~ sysconfdir "/{?skel")
c21d1979 1160 continue;
0080f34c 1161 if ($c ~ sysconfdir "/{?sysconfig")
66ef7810 1162 continue;
6e985933
ER
1163 if ($c ~ sysconfdir "/{?shrc.d")
1164 continue;
7c73bc0f
ER
1165 if ($c ~ sysconfdir "/{?certs")
1166 continue;
de5d18d8
ER
1167 if ($c ~ sysconfdir "/{?X11")
1168 continue;
5debd9f6
ER
1169 if ($c ~ sysconfdir "/{?ld.so.conf.d")
1170 continue;
ff21ed9e
ER
1171 if ($c ~ sysconfdir "/{?rpm")
1172 continue;
57caba32 1173 if ($c ~ sysconfdir "/{?bash_completion.d")
6e985933 1174 continue;
57caba32 1175 if ($c ~ sysconfdir "/{?samba")
9292b547 1176 continue;
52a943cf
ER
1177 if ($c ~ sysconfdir "/shells")
1178 continue;
5dc7f5e4
ER
1179 if ($c ~ sysconfdir "/ppp")
1180 continue;
9395915a
ER
1181 if ($c ~ sysconfdir "/dbus-1")
1182 continue;
353f5eea 1183 gsub(sysconfdir, "%{_sysconfdir}", $c)
1184 }
74edc57e 1185
1077f405 1186 gsub(kdedocdir, "%{_kdedocdir}")
c2b069de 1187 gsub(docdir, "%{_docdir}")
57caba32 1188 gsub(php_pear_dir, "%{php_pear_dir}")
4b1d6e6d 1189 gsub(php_data_dir, "%{php_data_dir}")
c2b069de 1190
c4adc376
ER
1191 for (c = 1; c <= NF; c++) {
1192 if ($c ~ datadir "/automake")
1193 continue;
13670287
ER
1194 if ($c ~ datadir "/unsermake")
1195 continue;
a9fb2db8
ER
1196 if ($c ~ datadir "/file/magic.mime")
1197 continue;
c4adc376
ER
1198 gsub(datadir, "%{_datadir}", $c)
1199 }
1200
74edc57e 1201 gsub("%{prefix}/share", "%{_datadir}")
c4adc376 1202 if (prefix"/share" == datadir)
0080f34c 1203 gsub("%{_prefix}/share", "%{_datadir}")
74edc57e 1204
826b40ea
ER
1205 # CFLAGS="-I/usr/include/ncurses is usually correct.
1206 if (!/-I\/usr\/include/) {
1207 gsub(includedir, "%{_includedir}")
1208 }
1209
74edc57e 1210 gsub("%{prefix}/include", "%{_includedir}")
826b40ea 1211 if (prefix"/include" == includedir) {
0080f34c 1212 gsub("%{_prefix}/include", "%{_includedir}")
826b40ea 1213 }
74edc57e 1214
aec1bddb 1215 gsub(mandir, "%{_mandir}")
826b40ea 1216 if ($0 !~ "%{_datadir}/manual") {
5e1d0492 1217 gsub("%{_datadir}/man", "%{_mandir}")
826b40ea 1218 }
9ce0df66 1219 gsub("%{_prefix}/share/man", "%{_mandir}")
1220 gsub("%{prefix}/share/man", "%{_mandir}")
74edc57e 1221 gsub("%{prefix}/man", "%{_mandir}")
1222 gsub("%{_prefix}/man", "%{_mandir}")
1223
aec1bddb 1224 gsub(infodir, "%{_infodir}")
74edc57e 1225 gsub("%{prefix}/info", "%{_infodir}")
1226 gsub("%{_prefix}/info", "%{_infodir}")
1227
0965a1a0 1228 if (prefix !~ "/X11R6") {
1229 gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
1230 }
cfbf94ec 1231
2a638fcb 1232 gsub(examplesdir, "%{_examplesdir}")
7c6b85c4 1233
efd2d668 1234 if (prefix != "/") {
a9fb2db8
ER
1235 # leave --with-foo=/usr alone
1236 if ($0 !~ "--with.*=.*" prefix) {
1237 for (c = 1; c <= NF; c++) {
1238 if ($c ~ prefix "/sbin/fix-info-dir")
1239 continue;
3457b4f7
ER
1240 if ($c ~ prefix "/sbin/webapp")
1241 continue;
4837c1e3
ER
1242 if ($c ~ prefix "/sbin/chsh")
1243 continue;
1244 if ($c ~ prefix "/sbin/usermod")
1245 continue;
836e411f
ER
1246 if ($c ~ prefix "/sbin/installzope(product|3package)")
1247 continue;
a9fb2db8
ER
1248 if ($c ~ prefix "/share/automake")
1249 continue;
1250 if ($c ~ prefix "/share/unsermake")
1251 continue;
1252 if ($c ~ prefix "/lib/sendmail")
1253 continue;
97dae8dc
ER
1254 if ($c ~ prefix "/lib/pkgconfig")
1255 continue;
826b40ea 1256
b5fc4b79
ER
1257 # CFLAGS="-I/usr..." is usually correct.
1258 if (/-I\/usr/)
826b40ea 1259 continue;
474f0944
ER
1260 # same for LDFLAGS="-L/usr..."
1261 if (/-L\/usr/)
1262 continue;
826b40ea 1263
a9fb2db8
ER
1264 gsub(prefix, "%{_prefix}", $c)
1265 }
de69503c 1266 }
efd2d668 1267 gsub("%{prefix}", "%{_prefix}")
1268 }
3bcd1fab 1269
53d16b95
ER
1270 # replace back
1271 gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
1272 gsub("%{_includedir}/freetype", "/usr/include/freetype")
1273
3bcd1fab 1274 gsub("%{PACKAGE_VERSION}", "%{version}")
1275 gsub("%{PACKAGE_NAME}", "%{name}")
b35c10f1 1276
59e208d5 1277 gsub("^make$", "%{__make}")
1278 gsub("^make ", "%{__make} ")
61b753c5 1279 gsub("^gcc ", "%{__cc} ")
67fe737e 1280 gsub("^rm --interactive=never ", "%{__rm} ")
9aece8c8 1281
cab706de
ER
1282 # mandrake specs
1283 gsub("^%make$", "%{__make}")
1284 gsub("^%make ", "%{__make} ")
1285 gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
b7ca53a5 1286 gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
63d47bae 1287 gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
cab706de 1288 gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
b7ca53a5 1289 gsub("^%{__install}", "install")
cab706de
ER
1290 gsub("%optflags", "%{rpmcflags}")
1291 gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
1292
a6ed8b03 1293 gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
d11acde9 1294 gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
5e15e952
ER
1295 $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
1296 $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
63d47bae 1297 $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
43f8581a 1298 $0 = fixedsub("%__install", "install", $0);
63d47bae 1299
740e3cd8
ER
1300 # split configure line to multiple lines
1301 if (/%configure / && !/\\$/) {
1302 $0 = format_configure($0);
1303 }
1304
ac779c71
ER
1305 gsub("%_bindir", "%{_bindir}")
1306 gsub("%_datadir", "%{_datadir}")
1307 gsub("%_iconsdir", "%{_iconsdir}")
c2b069de
ER
1308 gsub("%_sbindir", "%{_sbindir}")
1309 gsub("%_mandir", "%{_mandir}")
1310 gsub("%name", "%{name}")
b6875e34
ER
1311 gsub(/%__rm/, "rm");
1312 gsub(/%__mkdir_p/, "install -d");
1313 gsub(/%__cp/, "cp");
1314 gsub(/%__ln_s/, "ln -s");
1315 gsub(/%__sed/, "%{__sed}");
1316 gsub(/%__cat/, "cat");
1317 gsub(/%__chmod/, "chmod");
a6ed8b03 1318
9aece8c8 1319 gsub("/usr/src/linux", "%{_kernelsrcdir}")
1320 gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
1c955424 1321
ecaaa784 1322 if (/^ant / || /^%{ant}/) {
1c955424 1323 sub(/^ant/, "%ant")
ecaaa784 1324 sub(/^%{ant}/, "%ant")
b6875e34
ER
1325 add_br("BuildRequires: jpackage-utils");
1326 add_br("BuildRequires: rpmbuild(macros) >= 1.300");
1327 }
1c955424 1328
2dc1a8cd
ER
1329 $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
1330 $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
9ae21f47 1331}
f171fd40 1332
740e3cd8
ER
1333function format_configure(line, n, a, s) {
1334 n = split(line, a, / /);
1335 s = a[1] " \\\n";
1336 for (i = 2; i <= n; i++) {
1337 s = s "\t" a[i] " \\\n"
1338 }
1339 return s
1340}
1341
7c23055b
ER
1342
1343# insertion sort of A[1..n]
1344# copied from mawk manual
1345function isort(A,n, i,j,hold) {
1346 for (i = 2; i <= n; i++) {
1347 hold = A[j = i]
1348 while (A[j-1] > hold) {
54caef3d 1349 j-- ; A[j+1] = A[j]
1350 }
7c23055b
ER
1351 A[j] = hold
1352 }
1353 # sentinel A[0] = "" will be created if needed
1354}
1355
1356
1357function use_files_macros( i, n, t, a)
eee34ffb 1358{
e6f1551d
ER
1359 use_macros()
1360
da6457aa
ER
1361 # skip comments
1362 if (/^#/) {
1363 return;
1364 }
1365
f158eddc
ER
1366 sub("^%doc %{_mandir}", "%{_mandir}")
1367
eee34ffb 1368 gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
1369 gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
7c23055b 1370
61cb9711
ER
1371 # uid/gid nobody is not valid in %files
1372 if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
1373 $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
1374 }
1375
16bb0647
JB
1376 # s[gu]id programs with globs are evil
1377 if (/%attr\([246]...,.*\*/ && !/FIXME/) {
1378 $0 = $0 " # FIXME no globs for suid/sgid files"
85bed066
ER
1379 }
1380
5dc673eb 1381 # replace back
8f6ddcd9 1382 gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
3feaeac8 1383 gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
8f6ddcd9
ER
1384 gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
1385 gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
1386 gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
1387 gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
1388 gsub("%{_sysconfdir}/security", "/etc/security")
1389 gsub("%{_sysconfdir}/skel", "/etc/skel")
1390 gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
1391 gsub("%{_sysconfdir}/certs", "/etc/certs")
5dc673eb 1392 gsub("%{_sysconfdir}/init.d", "/etc/init.d")
9395915a 1393 gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
2fc0e274 1394
5dc673eb
ER
1395 # /etc/init.d -> /etc/rc.d/init.d
1396 if (!/^\/etc\/init\.d$/) {
1397 gsub("/etc/init.d", "/etc/rc.d/init.d")
1398 }
1399
1400 if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
2fc0e274
ER
1401 if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
1402 $0 = "%attr(754,root,root) " $0
1403 }
1404 if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
89c604c7 1405 gsub("^%attr\\(... *,", "%attr(754,");
2fc0e274 1406 }
9a7a5776
ER
1407 }
1408
71a4728c 1409 if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
55356feb
ER
1410 $0 = "%attr(755,root,root) " $0
1411 }
1412
ab9b09e2
ER
1413 if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
1414 $0 = "%attr(755,root,root) " $0
1415 }
1416
f56d5519
ER
1417 # /etc/sysconfig files
1418 # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
a825b76b 1419 # attr not required, allow default 644 attr
6ea64b8d 1420 if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
6ea0907e 1421 if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
5dc673eb
ER
1422 gsub("%config", "%config(noreplace)")
1423 }
f56d5519 1424
6ea0907e 1425 if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
5dc673eb
ER
1426 $NF = "%config(noreplace) " $NF
1427 }
f56d5519 1428
5dc673eb 1429 if (/\/etc\/sysconfig\// && /%attr\(755/) {
89c604c7 1430 gsub("^%attr\\(... *,", "%attr(640,");
5dc673eb 1431 }
f56d5519 1432
5dc673eb
ER
1433 if (/\/etc\/sysconfig\// && !/%verify/) {
1434 gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
1435 }
a825b76b
ER
1436 }
1437
f56d5519 1438 # kill leading zeros
7dfb4dea
ER
1439 if (/%attr\(0[1-9]/) {
1440 gsub("%attr\\(0", "%attr(")
1441 }
f9d5d512 1442
95ae7268 1443 # kill leading whitespace
b8085249 1444 gsub(/^ +/, "");
95ae7268 1445
b6875e34
ER
1446 # kill default attrs
1447 gsub(/%dir %attr\(755,root,root\)/, "%dir");
1448 gsub(/%attr\(755,root,root\) %dir/, "%dir");
1449 if (!/%dir/) {
1450 gsub(/%attr\(644,root,root\) /, "");
1451 }
46292535 1452
7c23055b 1453 # sort %verify attrs
12bfc5c8 1454 if (match($0, /%verify\(not([^)]+)\)/)) {
7c23055b 1455 t = substr($0, RSTART, RLENGTH)
8409a9b2
ER
1456 # kill commas: %verify(not,md5,size,mtime)
1457 gsub(/,/, " ", t);
1458
7c23055b
ER
1459 gsub(/^%verify\(not |\)$/, "", t)
1460 n = split(t, a, / /)
1461 isort(a, n)
1462
1463 s = "%verify(not"
1464 for (i = 1 ; i <= n; i++) {
1465 s = s " " a[i]
1466 }
1467 s = s ")"
1468
12bfc5c8 1469 gsub(/%verify\(not[^)]+\)/, s)
7c23055b 1470 }
13defa79
ER
1471
1472 if (/%{_mandir}/) {
d64e2ec0 1473 gsub("\.gz$", "*")
13defa79 1474 }
5e15e952 1475
ef6d2b7a 1476 # locale dir and no %lang -> bad
b9080a1b 1477 if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
ef6d2b7a
ER
1478 $(NF + 1) = "# FIXME consider using %find_lang"
1479 }
1480
5e15e952
ER
1481 # atrpms
1482 $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
1483 $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
1484 $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
97dae8dc
ER
1485
1486 gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
1487 gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
1488 gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
eee20d8d
ER
1489
1490 gsub("%{_datadir}/applications", "%{_desktopdir}");
9730a549 1491 gsub("%{_datadir}/icons", "%{_iconsdir}");
0904210e 1492 gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
4b1d6e6d
ER
1493 gsub("%{_datadir}/pear", "%{php_pear_dir}");
1494 gsub("%{_datadir}/php", "%{php_data_dir}");
eee34ffb 1495}
236b87ac 1496
723ce732
ER
1497function use_script_macros()
1498{
1499 if (gsub("/sbin/service", "%service")) {
1500 sub(" >/dev/null 2>&1 \|\|:", "");
1501 sub(" 2> /dev/null \|\| :", "");
1502 }
1503}
1504
236b87ac 1505function fill(ch, n, i) {
1506 for (i = 0; i < n; i++)
1507 printf("%c", ch)
1508}
1509
1510function format_flush(line, indent, newline, word, first_word) {
1511 first_word = 1
f171fd40 1512 if (format_indent == -1)
236b87ac 1513 newline = ""
1514 else
1515 newline = fill(" ", format_indent) "- "
1516
1517 while (match(line, /[^\t ]+/)) {
1518 word = substr(line, RSTART, RLENGTH)
1519 if (length(newline) + length(word) + 1 > tw) {
1520 print newline
f171fd40 1521
236b87ac 1522 if (format_indent == -1)
1523 newline = ""
1524 else
1525 newline = fill(" ", format_indent + 2)
1526 first_word = 1
1527 }
1528
1529 if (first_word) {
1530 newline = newline word
1531 first_word = 0
1532 } else
1533 newline = newline " " word
f171fd40 1534
236b87ac 1535 line = substr(line, RSTART + RLENGTH)
1536 }
1537 if (newline ~ /[^\t ]/) {
1538 print newline
1539 }
1540}
1541
eb4bf70e 1542function cflags(var)
1543{
85e708f2 1544 if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
1545 removed[var] = 1
eb4bf70e 1546 return 0
85e708f2 1547 }
f171fd40 1548
246ad57e 1549 if (!/!\?debug/)
fde8f52a 1550 sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
eb4bf70e 1551 return 1
1552}
0ea7c3cd 1553
8ea8f0ae
ER
1554function unify_url(url)
1555{
1556
1557 # sourceforge urls
1558 sub("[?&]big_mirror=.*$", "", url);
1559 sub("[?&]modtime=.*$", "", url);
1560 sub("[?]use_mirror=.*$", "", url);
1561 sub("[?]download$", "", url);
1562
1563 sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1564 sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", url)
1565 sub("^http://download\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1566 sub("^http://downloads\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1567
1568 sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", url)
1569 sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", url)
1570 sub("^http://dl\.sf\.net/", "http://dl.sourceforge.net/", url)
1571
1572 sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
1573 sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
1574
1575 # apache urls
1576 sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
1577
11401cd0 1578 # gnu.org
22753e56 1579 sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
29c65f09 1580 sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
11401cd0 1581
8ea8f0ae
ER
1582 return url
1583}
1584
4e26c5f2
ER
1585function demacroize(str)
1586{
8f7c516b
ER
1587 if (mod_name) {
1588 sub("%{mod_name}", mod_name, str);
1589 }
1590 if (name) {
1591 sub("%{name}", name, str);
1592 }
4e26c5f2
ER
1593 if (version) {
1594 sub("%{version}", version, str);
1595 }
1596 if (_beta) {
1597 sub("%{_beta}", _beta, str);
1598 }
1599 if (_rc) {
1600 sub("%{_rc}", _rc, str);
1601 }
59de1799
ER
1602 if (_pre) {
1603 sub("%{_pre}", _pre, str);
1604 }
4e26c5f2
ER
1605 if (_snap) {
1606 sub("%{_snap}", _snap, str);
1607 }
3c5e6e5f
ER
1608 if (subver) {
1609 sub("%{subver}", subver, str);
1610 }
4e26c5f2
ER
1611 return str;
1612}
1613
0ea7c3cd
ER
1614function kill_preamble_macros()
1615{
a64d362e
ER
1616 if ($1 ~ /^Obsoletes:/) {
1617 # NB! assigning $2 a value breaks tabbing
1618 $2 = demacroize($2);
1619 }
1620 if ($1 ~ /^URL:/) {
8f7c516b 1621 # NB! assigning $2 a value breaks tabbing
4e26c5f2 1622 $2 = demacroize($2);
ec30d23e 1623 $2 = unify_url($2)
0ea7c3cd
ER
1624 }
1625}
ba377afe 1626
9815f9b2
ER
1627function get_epoch(pkg, ver, epoch)
1628{
cccfa553
ER
1629 return
1630# should parse the BR lines more adequately:
1631# freetype = 2.0.0 -> correct
1632# freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
1633
9815f9b2
ER
1634 shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
1635 shell | getline epoch;
1636 return epoch;
1637}
1638
ba377afe 1639function format_requires(tag, value, n, p, i, deps, ndeps) {
87b130e2
ER
1640 # skip any formatting for commented out items or some weird macros
1641 if (/^#/ || /%\(/) {
3f81d059
ER
1642 return tag "\t" value
1643 }
ba377afe
ER
1644 n = split(value, p, / *,? */);
1645 for (i = 1; i <= n; i++) {
1646 if (p[i+1] ~ /[<=>]/) {
9815f9b2
ER
1647 # add epoch if the version doesn't have it but BuildRequires.txt has
1648 if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
1649 epoch = get_epoch(p[i], p[i+2])
1650 if (epoch) {
1651 p[i+2] = epoch ":" p[i+2];
1652 }
1653 }
ba377afe
ER
1654 deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
1655 i += 2;
1656 } else {
1657 deps[ndeps++] = p[i];
1658 }
1659 }
1660 s = ""
1661 for (i in deps) {
1662 s = s sprintf("%s\t%s\n", tag, deps[i]);
1663 }
1664 return substr(s, 1, length(s)-1);
1665}
6ebff802
ER
1666
1667function use_tabs()
1668{
1669 # reverse vim: ts=4 sw=4 et
1670 gsub(/ /, "\t");
1671}
1c955424
ER
1672
1673function add_br(br)
1674{
b6875e34 1675 BR[BR_count++] = br
1c955424
ER
1676}
1677
92fa789e
ER
1678function replace_requires()
1679{
1680
1681 # jpackages
1682 sub(/^java-devel$/, "jdk", $2);
1683 sub(/^log4j$/, "logging-log4j", $2);
1684 sub(/^jakarta-log4j$/, "logging-log4j", $2);
1685 sub(/^oro$/, "jakarta-oro", $2);
1686 sub(/^jakarta-ant$/, "ant", $2);
1687 sub(/^xerces-j2$/, "xerces-j", $2);
1688 sub(/^ldapjdk$/, "ldapsdk", $2);
1689 sub(/^saxon-scripts$/, "saxon", $2);
1690 sub(/^xalan-j2$/, "xalan-j", $2);
1691 sub(/^xerces-j2$/, "xerces-j", $2);
1692 sub(/^gnu-regexp$/, "gnu.regexp", $2);
1693
1694 # redhat virtual
1695 sub(/^tftp-server$/, "tftpdaemon", $2);
1696
76c234fd 1697 sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
03180d14 1698 sub(/^chkconfig$/, "/sbin/chkconfig", $2);
76c234fd 1699
06509408
ER
1700 # fedora
1701 sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
1702
92fa789e
ER
1703 replace_php_virtual_deps()
1704}
1705
30cd4686
ER
1706# php virtual deps as discussed in devel-en
1707function replace_php_virtual_deps()
1708{
b6875e34
ER
1709 pkg = $2
1710# if (pkg == "php-program") {
1711# $0 = $1 "\t/usr/bin/php"
1712# return
1713# }
1714
f72c52cf
ER
1715# if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
1716# sub(/^php-/, "php(", pkg);
1717# sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
1718# $2 = pkg
1719# }
b6875e34
ER
1720
1721 if (pkg ~/^php$/) {
1722 $2 = "webserver(php)";
1723 if ($4 ~ /^[0-9]:/) {
1724 $4 = substr($4, 3);
1725 }
1726 }
1727
1728 if (pkg ~/^php4$/) {
1729 $2 = "webserver(php)";
1730 if ($4 ~ /^[0-9]:/) {
1731 $4 = substr($4, 3);
1732 }
1733 }
30cd4686
ER
1734}
1735
ad9ea417
ER
1736function replace_groupnames(group)
1737{
1738 sub(/^Amusements\/Games\/Strategy\/Real Time/, "X11/Applications/Games/Strategy", group)
1739 sub(/^Application\/Multimedia$/, "Applications/Multimedia", group)
1740 sub(/^Applications\/Compilers$/, "Development/Languages", group)
1741 sub(/^Applications\/Daemons$/, "Daemons", group)
1742 sub(/^Applications\/Internet$/, "Applications/Networking", group)
1743 sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
1744 sub(/^Applications\/Productivity$/, "X11/Applications", group)
1745 sub(/^Database$/, "Applications/Databases", group)
1746 sub(/^Development\/Code Generators$/, "Development", group)
1747 sub(/^Development\/Docs$/, "Documentation", group)
1748 sub(/^Development\/Documentation$/, "Documentation", group)
1749 sub(/^Development\/Java/, "Development/Languages/Java", group)
1750 sub(/^Development\/Libraries\/C and C\+\+$/, "Development/Libraries", group)
1751 sub(/^Development\/Libraries\/Java$/, "Development/Languages/Java", group)
1752 sub(/^Development\/Other/,"Development", group)
1753 sub(/^Development\/Testing$/, "Development", group)
1754 sub(/^Emulators$/, "Applications/Emulators", group)
1755 sub(/^Games/,"Applications/Games", group)
1756 sub(/^Library\/Development$/, "Development/Libraries", group)
1757 sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
1758 sub(/^Shells/,"Applications/Shells", group)
1759 sub(/^System Environment\/Base$/, "Base", group)
1760 sub(/^System Environment\/Daemons$/, "Daemons", group)
1761 sub(/^System Environment\/Kernel$/, "Base/Kernel", group)
1762 sub(/^System Environment\/Libraries$/, "Libraries", group)
1763 sub(/^System$/, "Base", group)
1764 sub(/^System\/Base$/, "Base", group)
1765 sub(/^System\/Libraries$/, "Libraries", group)
1766 sub(/^System\/Servers$/, "Daemons", group)
1767 sub(/^Text Processing\/Markup\/HTML$/, "Applications/Text", group)
1768 sub(/^Text Processing\/Markup\/XML$/, "Applications/Text", group)
1769 sub(/^Utilities\//,"Applications/", group)
1770 sub(/^Web\/Database$/, "Applications/WWW", group)
1771 sub(/^X11\/GNOME/,"X11/Applications", group)
1772 sub(/^X11\/GNOME\/Applications/,"X11/Applications", group)
1773 sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries", group)
1774 sub(/^X11\/Games/,"X11/Applications/Games", group)
1775 sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
1776 sub(/^X11\/Library/,"X11/Libraries", group)
1777 sub(/^X11\/Utilities/,"X11/Applications", group)
1778 sub(/^X11\/XFree86/, "X11", group)
1779 sub(/^X11\/Xserver$/, "X11/Servers", group)
1780 sub(/^Development\/C$/, "Development/Libraries", group)
1781 sub(/^Development\/Python$/, "Development/Languages/Python", group)
1782 sub(/^System\/Kernel and hardware$/, "Base/Kernel", group)
1783 sub(/^Application\/System$/, "Applications/System", group)
1784
1785 return group;
1786}
1787
2b94cfb4 1788# vim:ts=4:sw=4
This page took 0.424378 seconds and 4 git commands to generate.