Wed, 14 Jan 2009 15:59:12 +0100
Correct and improve many buildconf and code logic blocks. In particular:
1. Document potential problems building with current binutils releases.
2. Document the flawed webkit and explain its temporary exclusion.
3. Document the edition of Qt which is built and installed.
4. Remove the Solaris x11_supdir logic as it is no longer found.
5. Correct several .pr[io] files including QMAKE_CXXFLAGS and INCPATH,
which previously caused preexisting Qt installations to deliver
erroneous old include and library logic instead of relying on
that of the currently building package. -I/opkg/include is now
placed at the end of the compile statements.
6. Don't trust the QMAKE_[INC|LIB]DIR_X11 identifiers in qmake.conf.
7. Allow more 64-bit builds and more properly identify the platform.
8. Place plugins (which are shared objects) in lib instead of share.
9. Build components as plugins when possible if with_shared is enabled.
10. Translate German text to English to be more consistent.
11. Instead of removing the pkgconfig directory of with_shared builds,
place it in a child directory useful for shared building.
12. Document the nonstandard shared build directory structure,
including using the hidden pkgconfig directory (PKG_CONFIG_PATH.)
13. Change %doc to specify files rather than directories in the RPM DB.
1 ##
2 ## mailman-apache.conf -- Apache Configuration for Mailman
3 ##
5 <VirtualHost host.example.com>
6 # server information
7 ServerName host.example.com
8 ServerAdmin hostmaster@host.example.com
9 ServerSignature on
11 # document area
12 DocumentRoot @l_prefix@/libexec/mailman/htdocs/
13 <Directory "@l_prefix@/libexec/mailman/htdocs">
14 Options FollowSymLinks
15 AllowOverride None
16 Order allow,deny
17 Allow from all
18 </Directory>
20 # pipermail area
21 Alias /mailman/pipermail/ @l_prefix@/var/mailman/archives/public/
22 <Directory "@l_prefix@/var/mailman/archives/public">
23 Options FollowSymLinks
24 AllowOverride None
25 Order allow,deny
26 Allow from all
27 </Directory>
29 # icon area
30 Alias /mailman/icons/ @l_prefix@/libexec/mailman/icons/
31 <Directory "@l_prefix@/libexec/mailman/icons">
32 Options FollowSymLinks
33 AllowOverride None
34 Order allow,deny
35 Allow from all
36 </Directory>
38 # executable area
39 ScriptAlias /mailman/ @l_prefix@/libexec/mailman/cgi-bin/
40 <Directory "@l_prefix@/libexec/mailman/cgi-bin">
41 Options FollowSymLinks ExecCGI
42 AllowOverride None
43 Order allow,deny
44 Allow from all
45 </Directory>
47 # logging
48 CustomLog @l_prefix@/var/mailman/logs/http-access.log common
49 ErrorLog @l_prefix@/var/mailman/logs/http-error.log
50 LogLevel warn
51 </VirtualHost>