Changeset 998

Show
Ignore:
Timestamp:
02/12/08 12:06:36 (7 months ago)
Author:
joximu
Message:

opensuse103: config, makefiles & package list - needs a test...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r997 r998  
    11ispCP ω 1.0.0 Changelog 
    22~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     3 
     42008-02-12 Christian Hernmarck 
     5        - DISTS: 
     6                openSuSE10 (10.3): 
     7                * improved package list (smaller), repositories - with howto 
     8                * corrected the config & Makefile to for openSuSE 10.3 - should also fit to 10.2 
    39 
    4102008-02-11 Christian Hernmarck 
  • trunk/configs/dists/opensuse10/Makefile

    r973 r998  
    55 
    66        if test $(HOST_OS) = opensuse10 ; then \ 
    7                 cp ./ispcp.conf $(SYSTEM_CONF) ; \ 
    8                 cd ./apache && $(MAKE) install ; cd .. ; \ 
    9                 cd ./bind && $(MAKE) install ; cd .. ; \ 
    10                 cd ./cron.d && $(MAKE) install ; cd .. ; \ 
    11                 cd ./database && $(MAKE) install ; cd .. ;  \ 
    12                 cd ./init.d && $(MAKE) install ; cd .. ; \ 
    13                 cd ./postfix && $(MAKE) install ; cd .. ; \ 
    14                 cd ./courier && $(MAKE) install ; cd .. ; \ 
    15                 cd ./proftpd && $(MAKE) install ; cd .. ; \ 
    16                 cd ./logrotate && $(MAKE) install ; cd .. ; \ 
     7                cp ./ispcp.conf $(SYSTEM_CONF) ; \ 
     8                cd ./apache && $(MAKE) install ; cd .. ; \ 
     9                cd ./bind && $(MAKE) install ; cd .. ; \ 
     10                cd ./courier && $(MAKE) install ; cd .. ; \ 
     11                cd ./cron.d && $(MAKE) install ; cd .. ; \ 
     12                cd ./database && $(MAKE) install ; cd .. ;  \ 
     13                cd ./fcgi && $(MAKE) install ; cd .. ; \ 
     14                cd ./init.d && $(MAKE) install ; cd .. ; \ 
     15                cd ./logrotate && $(MAKE) install ; cd .. ; \ 
     16                cd ./postfix && $(MAKE) install ; cd .. ; \ 
     17                cd ./proftpd && $(MAKE) install ; cd .. ; \ 
    1718        fi 
    1819 
     
    2021 
    2122        if test $(HOST_OS) = opensuse10 ; then \ 
    22                 rm -rf $(SYSTEM_CONF)/ispcp.conf ;  \ 
    23                 cd ./apache && $(MAKE) uninstall ; cd .. ; \ 
    24                 cd ./bind && $(MAKE) uninstall ; cd .. ; \ 
     23                rm -rf $(SYSTEM_CONF)/ispcp.conf ;  \ 
     24                cd ./apache && $(MAKE) uninstall ; cd .. ; \ 
     25                cd ./bind && $(MAKE) uninstall ; cd .. ; \ 
     26                cd ./courier && $(MAKE) uninstall ; cd .. ; \ 
    2527                cd ./cron.d && $(MAKE) uninstall ; cd .. ; \ 
    2628                cd ./database && $(MAKE) uninstall ; cd .. ;  \ 
    27                cd ./init.d && $(MAKE) uninstall ; cd .. ; \ 
    28                cd ./postfix && $(MAKE) uninstall ; cd .. ; \ 
    29                cd ./courier && $(MAKE) uninstall ; cd .. ; \ 
    30                cd ./proftpd && $(MAKE) uninstall ; cd .. ; \ 
    31                cd ./logrotate && $(MAKE) uninstall ; cd .. ; \ 
     29                cd ./fcgi && $(MAKE) uninstall ; cd .. ; \ 
     30                cd ./init.d && $(MAKE) uninstall ; cd .. ; \ 
     31                cd ./logrotate && $(MAKE) uninstall ; cd .. ; \ 
     32                cd ./postfix && $(MAKE) uninstall ; cd .. ; \ 
     33                cd ./proftpd && $(MAKE) uninstall ; cd .. ; \ 
    3234        fi 
    33  
    34  
  • trunk/configs/dists/opensuse10/apache/Makefile

    r969 r998  
    1 ROOT_APACHE_CONF=$(ROOT_CONF)/apache2/conf.d 
     1ROOT_APACHE_CONF=$(ROOT_CONF)/apache2 
    22 
    33export 
     
    55install: 
    66 
    7         $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/apache2 
     7        $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/apache 
    88        $(SYSTEM_MAKE_DIRS) $(ROOT_APACHE_CONF) 
    9         $(SYSTEM_MAKE_DIRS) $(ROOT_APACHE_CONF)/modules.d 
     9        $(SYSTEM_MAKE_DIRS) $(ROOT_APACHE_CONF)/conf.d 
    1010        $(SYSTEM_MAKE_DIRS) $(ROOT_APACHE_CONF)/ispcp 
    1111 
    12         cp ./httpd.conf ./working/ispcp.conf 
    13         cp ./httpd.conf ./parts/ispcp_base.tpl 
    14         cp ./fastcgi.conf ./working/fastcgi_ispcp.conf 
     12        cp ./httpd.conf $(SYSTEM_CONF)/apache 
     13        cp ./00_master.conf $(SYSTEM_CONF)/apache 
     14        cp ./01_awstats.conf $(SYSTEM_CONF)/apache 
     15        cp -R ./backup $(SYSTEM_CONF)/apache 
     16        cp -R ./parts $(SYSTEM_CONF)/apache 
     17        cp -R ./working $(SYSTEM_CONF)/apache 
    1518 
    16         cp ./httpd.conf $(SYSTEM_CONF)/apache2 
    17         cp ./00_master.conf $(SYSTEM_CONF)/apache2 
    18         cp -R ./backup $(SYSTEM_CONF)/apache2 
    19         cp -R ./parts $(SYSTEM_CONF)/apache2 
    20         cp -R ./working $(SYSTEM_CONF)/apache2 
     19        cp ./httpd.conf $(SYSTEM_CONF)/apache/working/ispcp.conf 
     20        cp ./httpd.conf $(SYSTEM_CONF)/apache/parts/ispcp_base.tpl 
    2121 
    22         cp -R ./working/fastcgi_ispcp.conf ${ROOT_APACHE_CONF}/modules.d/fastcgi_ispcp.conf 
     22        cp ./fastcgi.conf $(SYSTEM_CONF)/apache/working/fastcgi_ispcp.conf 
     23 
     24        cp -R $(SYSTEM_CONF)/apache/working/fastcgi_ispcp.conf $(ROOT_APACHE_CONF)/conf.d/fastcgi_ispcp.conf 
    2325 
    2426uninstall: 
    2527 
    26         rm -rf $(SYSTEM_CONF)/apache2 
    27         rm -rf $(ROOT_APACHE_CONF)/ispcp.conf 
    28         rm -rf ${ROOT_APACHE_CONF}/modules.d/fastcgi_ispcp.conf 
     28        rm -rf $(SYSTEM_CONF)/apache 
     29        rm -rf $(ROOT_APACHE_CONF)/vhosts.d/ispcp.conf 
     30        rm -rf $(ROOT_APACHE_CONF)/conf.d/fastcgi_ispcp.conf 
  • trunk/configs/dists/opensuse10/apache/fastcgi.conf

    r885 r998  
    2424 
    2525<IfModule mod_fastcgi.c> 
    26 FastCgiWrapper On 
    27 FastCgiIpcDir /srv/lib/apache2/fastcgi 
    28 FastCgiConfig -minProcesses 1 -maxProcesses 10 -singleThreshold 100 
    29               #-killInterval 300 \ 
    30               #-autoUpdate \ 
    31               #-idle-timeout 240 \ 
    32               #-pass-header HTTP_AUTHORIZATION 
     26        FastCgiWrapper On 
     27        FastCgiIpcDir /var/lib/apache2/fastcgi2 
    3328 
    34 FastCgiServer {PHP_STARTER_DIR}/master/php4-fcgi-starter -user {APACHE_SUEXEC_USER_PREF}{APACHE_SUEXEC_MIN_UID} -group {APACHE_SUEXEC_USER_PREF}{APACHE_SUEXEC_MIN_GID} 
     29        FastCgiConfig -minProcesses 1 \ 
     30                      -maxProcesses 400 \ 
     31                      -maxClassProcesses 5 \ 
     32                      -multiThreshold 80 \ 
     33                      -killInterval 60 \ 
     34                      -startDelay 5 \ 
     35                      -idle-timeout 300 
     36                      # -singleThreshold 100 \ 
     37                      # -autoUpdate \ 
     38                      # -pass-header HTTP_AUTHORIZATION 
    3539 
    36 
    37 # PHP4 SUPPORT 
    38 
     40        FastCgiServer {PHP_STARTER_DIR}/master/php{PHP_VERSION}-fcgi-starter -user {APACHE_SUEXEC_USER_PREF}{APACHE_SUEXEC_MIN_UID} -group {APACHE_SUEXEC_USER_PREF}{APACHE_SUE 
    3941 
    40 AddHandler php-fastcgi .php 
     42        # 
     43        # PHP{PHP_VERSION} SUPPORT 
     44        # 
    4145 
    42 <Location /php4/php4-fcgi-starter> 
    43     SetHandler fastcgi-script 
    44     Options +ExecCGI 
    45 </Location> 
     46        AddHandler php-fastcgi .php .php{PHP_VERSION} 
    4647 
    47 Action php-fastcgi /php4/php4-fcgi-starter 
    48 AddType application/x-httpd-php .php 
     48        <Location /php{PHP_VERSION}/php{PHP_VERSION}-fcgi-starter> 
     49            SetHandler fastcgi-script 
     50            Options +ExecCGI 
     51        </Location> 
    4952 
    50 
    51 # PHP5 SUPPORT 
    52 
    53  
    54 #AddHandler php5-fastcgi .php5 
    55  
    56 #<Location /php5/php5-fcgi-starter> 
    57 #    SetHandler fastcgi-script 
    58 #    Options +ExecCGI 
    59 #</Location> 
    60  
    61 #Action php5-fastcgi /php5/php5-fcgi-starter 
     53        Action php-fastcgi /php{PHP_VERSION}/php{PHP_VERSION}-fcgi-starter 
     54        AddType application/x-httpd-php .php .php{PHP_VERSION} 
    6255</IfModule> 
  • trunk/configs/dists/opensuse10/bind/Makefile

    r885 r998  
     1 
    12export 
    23 
    34install: 
    45 
    5         $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/named.
     6        $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/bin
    67        cp ./named.conf ./working 
    7         cp ./named.conf $(SYSTEM_CONF)/named.
    8         cp -R ./backup $(SYSTEM_CONF)/named.
    9         cp -R ./parts $(SYSTEM_CONF)/named.
    10         cp -R ./working $(SYSTEM_CONF)/named.
     8        cp ./named.conf $(SYSTEM_CONF)/bin
     9        cp -R ./backup $(SYSTEM_CONF)/bin
     10        cp -R ./parts $(SYSTEM_CONF)/bin
     11        cp -R ./working $(SYSTEM_CONF)/bin
    1112 
    1213uninstall: 
    1314 
    14         rm -rf $(SYSTEM_CONF)/named.d 
    15  
     15        rm -rf $(SYSTEM_CONF)/bind 
  • trunk/configs/dists/opensuse10/courier/Makefile

    r885 r998  
    3030        cp ./pop3d $(ROOT_COURIER_CONF) 
    3131        cp ./userdb $(ROOT_AUTHLIB_CONF) 
     32#       Set userdb to "user only access", otherwise makeuserdb will complain 
     33        chmod 600 $(ROOT_AUTHLIB_CONF)/userdb 
    3234 
    3335uninstall: 
  • trunk/configs/dists/opensuse10/fcgi/parts/master/php5-fcgi-starter.tpl

    r885 r998  
    1111export PHP_FCGI_MAX_REQUESTS 
    1212 
    13 exec /usr/bin/php5-cgi 
     13exec /usr/bin/php-cgi5 
  • trunk/configs/dists/opensuse10/fcgi/parts/php5-fcgi-starter.tpl

    r885 r998  
    99export PHP_FCGI_MAX_REQUESTS 
    1010 
    11 exec /usr/bin/php5-cgi 
     11exec /usr/bin/php-cgi5 
  • trunk/configs/dists/opensuse10/init.d/ispcp_daemon

    r885 r998  
    4141PATH=/sbin:/bin:/usr/sbin:/usr/bin 
    4242NAME=ispcp_daemon 
    43 DAEMON=/var/www/ispcp/daemon/$NAME 
     43DAEMON=/srv/www/ispcp/daemon/$NAME 
    4444PID=/var/run/$NAME.pid 
    4545DESC="ispCP GUI-Backend communication Daemon" 
  • trunk/configs/dists/opensuse10/init.d/ispcp_network

    r885 r998  
    4242NAME=ispcp_network 
    4343LFILE=/var/run/$NAME 
    44 IPTABLES=/sbin/iptables 
     44IPTABLES=/usr/sbin/iptables 
    4545LOGDIR=/var/log/ispcp 
    4646LOGFILE=${LOGDIR}/${NAME}.log 
  • trunk/configs/dists/opensuse10/ispcp.conf

    r973 r998  
    11# 
    22# ispCP ω (OMEGA) a Virtual Hosting Control Panel 
    3 # Copyright (c) 2006-2007 by isp Control Panel 
     3# Copyright (c) 2006-2008 by isp Control Panel 
    44# http://isp-control.net 
    55# 
     
    99# 
    1010 
    11 BuildDate = 20070418 
    12  
    13 Version = 1.0.0 RC3 OMEGA 
     11BuildDate = 20080207 
     12 
     13Version = 1.0.0 RC4 OMEGA 
    1414 
    1515VersionH = 1.0 Priamos 
    1616 
    17 DEFAULT_ADMIN_ADDRESS = monotek@gmx.net 
    18  
    19 SERVER_HOSTNAME = OpenSues10.3 
     17DEFAULT_ADMIN_ADDRESS =  
     18 
     19SERVER_HOSTNAME = opensuse_10.3 
    2020 
    2121BASE_SERVER_IP = 127.0.0.1 
    2222 
    23 BASE_SERVER_VHOST = 
     23BASE_SERVER_VHOST =  
    2424 
    2525MR_LOCK_FILE = /var/run/ispcp.lock 
     
    3131CMD_AWK = /usr/bin/awk 
    3232 
     33CMD_BZCAT = /bin/bzcat 
     34 
    3335CMD_BZIP = /bin/bzip2 
    3436 
     37CMD_CHMOD = /bin/chmod 
     38 
    3539CMD_CHOWN = /bin/chown 
    3640 
     
    4549CMD_ECHO = /bin/echo 
    4650 
     51CMD_GREP = /bin/grep 
     52 
     53CMD_GROUPADD = /usr/sbin/groupadd 
     54 
     55CMD_GROUPDEL = /usr/sbin/groupdel 
     56 
     57CMD_GZCAT = /bin/zcat 
     58 
     59CMD_GZIP = /bin/gzip 
     60 
    4761CMD_HOSTNAME = /bin/hostname 
    4862 
     
    5165CMD_IPTABLES = /sbin/iptables 
    5266 
    53 CMD_GREP = /bin/grep 
    54  
    55 CMD_GROUPADD = /usr/sbin/groupadd 
    56  
    57 CMD_GROUPDEL = /usr/sbin/groupdel 
    58  
    5967CMD_LN = /bin/ln 
    6068 
     
    6674 
    6775CMD_RM = /bin/rm 
     76 
     77CMD_SHELL = /bin/bash 
    6878 
    6979CMD_TAR = /bin/tar 
     
    98108CMD_MYSQLDUMP = /usr/bin/mysqldump 
    99109 
     110DATABASE_UTF8 = yes 
     111 
    100112# 
    101113# Main variables 
     
    116128SCOREBOARDS_DIR = /srv/www/scoreboards 
    117129 
     130# Select Zipping Algorithm for Backups 
     131# Supported: gzip, bzip2 
     132ZIP = gzip 
     133 
    118134# 
    119135# PHP FastCGI data 
     
    130146# 
    131147 
    132 FTPD_CONF_FILE = /etc/proftpd.conf 
     148FTPD_CONF_FILE = /etc/proftpd/proftpd.conf 
    133149 
    134150# 
     
    136152# 
    137153 
    138 BIND_CONF_FILE = /etc/named.d/named.conf 
     154BIND_CONF_FILE = /etc/named.conf 
    139155 
    140156BIND_DB_DIR = /var/lib/named 
     
    146162# 
    147163 
    148 AWSTATS_ACTIVE = yes 
     164AWSTATS_ACTIVE = no 
    149165 
    150166# could be 'dynamic' = 0 or 'static' = 1 
     
    179195APACHE_USERS_LOG_DIR = /var/log/apache2/users 
    180196 
    181 APACHE_MODS_DIR = /etc/apache2/modules.d 
     197APACHE_MODS_DIR = /etc/apache2/conf.d 
    182198 
    183199APACHE_SITES_DIR = /etc/apache2/vhosts.d 
    184200 
     201APACHE_CUSTOM_SITES_CONFIG_DIR = /etc/apache2/ispcp 
     202 
    185203APACHE_SUEXEC_USER_PREF = vu 
    186204 
     
    229247MTA_MAILBOX_GID_NAME = mail 
    230248 
    231 MTA_SASLDB_LOCAL_DOMAIN = isp-control.net 
     249#MTA_SASLDB_LOCAL_DOMAIN = isp-control.net 
    232250 
    233251MTA_SASLDB_FILE = /var/spool/postfix/etc/sasldb2 
     
    250268 
    251269AUTHLIB_CONF_DIR = /etc/courier 
     270# maybe /etc/authlib... has to be tested.. 
    252271 
    253272CMD_MAKEUSERDB = /usr/sbin/makeuserdb 
     
    260279 
    261280BACKUP_MINUTE = 40 
     281 
     282BACKUP_ISPCP = yes 
     283 
     284BACKUP_DOMAINS = yes 
    262285 
    263286BACKUP_ROOT_DIR = /srv/www/ispcp/engine/backup 
     
    300323CMD_PFLOGSUM = /usr/sbin/maillogconvert.pl 
    301324 
    302 TRAFF_LOG_DIR = /srv/log 
     325TRAFF_LOG_DIR = /var/log 
    303326 
    304327FTP_TRAFF_LOG = ftp_traff.log 
     
    306329MAIL_TRAFF_LOG = mail.log 
    307330 
    308 PREV_TRAFF_LOG_MAX_SIZE = 10485760 
     331PREV_TRAFF_LOG_MAX_SIZE = 70391808 
    309332 
    310333TRAFF_ROOT_DIR = /srv/www/ispcp/engine/traffic 
     
    326349USER_INITIAL_THEME = omega_original 
    327350 
    328 ISPCP_LICENSE = ispCP 1.0rc2 OMEGA<br />build: 2007-04-18<br />Priamos 
     351ISPCP_LICENSE = ispCP 1.0rc4 OMEGA<br />build: 2008-02-07<br />Priamos 
    329352 
    330353FTP_USERNAME_SEPARATOR = @ 
     
    382405 
    383406BACKUP_FILE_DIR = /srv/www/ispcp/backups 
     407 
     408# 
     409# Developer Mode 
     410# 
     411 
     412DEBUG = 0 
  • trunk/configs/dists/opensuse10/proftpd/Makefile

    r885 r998  
    44 
    55        $(SYSTEM_MAKE_DIRS) $(SYSTEM_CONF)/proftpd 
     6        $(SYSTEM_MAKE_DIRS) $(ROOT_CONF)/proftpd 
     7 
    68        cp -R ./backup $(SYSTEM_CONF)/proftpd 
    79        cp ./proftpd.conf $(SYSTEM_CONF)/proftpd 
    8         cp ./proftpd.conf $(ROOT_CONF) 
     10        cp ./proftpd.conf $(ROOT_CONF)/proftpd 
    911 
    1012uninstall: 
  • trunk/docs/OpenSuse/INSTALL

    r886 r998  
    3333 
    3434Add the following repositories via Yast: 
     35http://download.opensuse.org/repositories/Apache:/Modules/openSUSE_10.3/ 
     36http://download.opensuse.org/repositories/home:/netmax/openSUSE_10.3/ 
     37http://download.opensuse.org/repositories/server:/ftp/openSUSE_10.3/ 
     38http://download.opensuse.org/repositories/network:/utilities/openSUSE_10.3/ 
    3539 
    36 http://download.opensuse.org/repositories/Apache:/Modules/openSUSE_10.3/ 
     40or like this in the shell: 
     41zypper ar http://download.opensuse.org/repositories/home:/netmax/openSUSE_10.3/ repo-netmax 
     42zypper ar http://download.opensuse.org/repositories/server:/ftp/openSUSE_10.3/ repo-ftp 
     43zypper ar http://download.opensuse.org/repositories/network:/utilities/openSUSE_10.3/ repo-awstats 
     44zypper ar http://download.opensuse.org/repositories/Apache:/Modules/openSUSE_10.3/ repo-apache 
    3745 
    38 http://download.opensuse.org/repositories/home:/netmax/openSUSE_10.3 
    39  
    40 http://download.opensuse.org/repositories/server:/ftp/openSUSE_10.3 
     46While importing the packages from theese repositories the first time you have to trust theese sites. 
    4147 
    4248All OpenSuse 10.3 required packages are listed in: 
  • trunk/docs/OpenSuse/opensuse103-packages

    r886 r998  
    11apache2 
    2 apache2-mod_auth_mysql 
    3 apache2-mod_perl 
    4 apache2-prefork 
    5 postfix 
    6 amavisd-new 
    7 clamav 
    8 spamassassin 
     2apache2-worker 
     3apache2-mod_cband 
     4apache2-mod_fastcgi 
     5awstats 
     6bash 
    97bind 
     8bind-chrootenv 
    109bind-libs 
    1110bind-utils 
    12 mysql-client 
    13 mysql-shared 
    14 mysql 
    15 unixODBC 
     11bzip2 
     12chkrootkit 
     13courier-authlib 
     14courier-authlib-userdb 
     15courier-imap 
     16cron 
    1617cyrus-sasl 
    1718cyrus-sasl-crammd5 
     
    2122cyrus-sasl-plain 
    2223cyrus-sasl-saslauthd 
    23 courier-authlib 
    24 courier-authlib-userdb 
    25 courier-imap 
    26 tnef 
    27 unzip 
    28 unrar 
    29 wget 
    30 zip 
     24expect 
     25gcc 
     26glibc-devel 
    3127gzip 
    32 bzip2 
    33 tar 
     28iptables 
     29lha 
     30mailx 
     31mhash 
     32mysql 
     33mysql-Max 
     34mysql-client 
     35mysql-shared 
     36patch 
    3437perl 
    35 perl-IO-stringy 
    36 perl-TermReadKey 
    37 perl-TermReadLine-Gnu 
    38 perl-TimeDate 
    39 perl-Crypt-Blowfish 
    40 perl-Crypt-CBC 
    41 perl-Crypt-DES 
    42 perl-DBD-mysql 
    43 perl-DBI 
    44 perl-Date-Calc 
    45 perl-DateManip 
    46 perl-Net-DNS 
    47 perl-Net-Netmask 
    48 perl-Net-SNMP 
    49 perl-SNMP 
    50 perl-Net-ext 
    51 perl-Mcrypt 
    52 perl-MailTools 
    53 perl-libwww-perl 
    54 perl-MIME-tools 
    55 iptables 
    56 libmcrypt 
    57 cron 
    58 mailx 
    59 NX 
    60 bind-chrootenv 
    61 expect 
    62 fam 
    63 fontconfig 
    64 freetype2 
    65 gcc 
    66 gd 
    67 glibc-devel 
    68 gmp 
    69 imap-lib 
    70 latex2html-pngicons 
    71 lha 
    72 libjpeg 
    73 liblcms 
    74 libmcal 
    75 libmng 
    76 libpng 
    77 libstdc++-devel 
    78 libtiff 
    79 libtool 
    80 mhash 
    81 net-snmp 
    8238perl-Archive-Tar 
    8339perl-Archive-Zip 
     
    8844perl-Convert-TNEF 
    8945perl-Convert-UUlib 
     46perl-Crypt-Blowfish 
     47perl-Crypt-CBC 
     48perl-Crypt-DES 
     49perl-Crypt-PasswdMD5 
     50perl-DBD-mysql 
     51perl-DBI 
    9052perl-Data-ShowTable 
     53perl-Date-Calc 
     54perl-DateManip 
    9155perl-Digest-HMAC 
    9256perl-HTML-Parser 
    9357perl-HTML-Tagset 
     58perl-IO-stringy 
     59perl-MIME-tools 
     60perl-MailTools 
     61perl-Mcrypt 
     62perl-Net-DNS 
    9463perl-Net-Daemon 
    9564perl-Net-IP 
     65perl-Net-Netmask 
     66perl-Net-SNMP 
    9667perl-Net-Server 
     68perl-Net-ext 
    9769perl-PlRPC 
     70perl-SNMP 
     71perl-Term-ReadPassword 
     72perl-TermReadKey 
     73perl-TermReadLine-Gnu 
    9874perl-Tie-IxHash 
     75perl-TimeDate 
    9976perl-URI 
    10077perl-Unix-Syslog 
    101 perl-spamassassin 
    102 postgresql-libs 
    103 qt3 
    104 sablot 
    105 sharutils 
    106 t1lib 
    107 tcl 
    108 unace 
    109 unarj 
    110 xorg-x11-libs 
    111 zoo 
    112 xntp 
    113 patch 
    114 perl-Term-ReadPassword  
    115 perl-Crypt-PasswdMD5  
     78perl-libwww-perl 
     79php5 
     80php5-fastcgi 
     81php5-mbstring 
     82php5-mcrypt 
     83php5-mysql 
     84php5-suhosin 
     85postfix 
    11686proftpd 
    11787proftpd-sql-mysql 
    118 chkrootkit 
    11988rkhunter 
     89tar 
     90wget