Update of /home/halls/cvs/debian-openoffice/oo-deb/debian/scripts
In directory gluck:/tmp/cvs-serv11868/debian/scripts

Added Files:
        gen_lib_list 
Log Message:
- fix typo in nas' changelog entry and enhance it
- shorten the config-switches changelog entry
- mention myspell and altlinuxhyph patches; add libaltlinuxhyph-dev
  and libmyspell-dev (>= 1:3.1-1) to Build-Depends:, libhnj-dev to
  Build-Conflicts: (they are not yet in Debian but hopefully will be
  shortly; the myspell2 now works too, but not dynamically, for what 3.1 is
  needed and what we want. altlinuxhyph is available from
  http://people.debian.org/~rene/openoffice.org/altlinuxhyph/ until
  it is out of NEW
- generate a list in openoffice.org-bin which contains used libs which
  then can used from oooprelink
- openoffice.org Suggests: www-browser, libxrender1
- fix Build-Depends: to not be confusing for dpkg-checkbuilddeps
- s/with-system-sane/with-system-sane-headers/
- remove obsolete section in debian/rules


--- NEW FILE: gen_lib_list ---
#!/usr/bin/perl

open(SUBSTVARS, "debian/openoffice.org-bin.substvars");

while(<SUBSTVARS>) {
        if(/shlibs/) {
                s/shlibs:Depends=//;
                s/,/\n/g;
                s/(.*)\(.*\)/\1/g;
                s/ //g;
                s/\|xlibs//g;
                print;  
        }
}

Reply via email to