Changeset 1081


Ignore:
Timestamp:
08/09/10 01:51:42 (3 years ago)
Author:
bruno
Message:
  • Solve most lintian errors for Ubuntu 10.04 - Prepare for another Debian submission
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/Makefile.PL

    r989 r1081  
    5858    # Produce the man page for pb.conf 
    5959    $text .= "\t".'mkdir -p $(DESTDIR)'."$mandir/man5\n"; 
    60     $text .= "\t".'pod2man etc/pb.conf.pod > $(DESTDIR)'."$mandir/man5/pb.conf.5\n"; 
     60    $text .= "\t".'pod2man --section=5 etc/pb.conf.pod > $(DESTDIR)'."$mandir/man5/pb.conf.5\n"; 
    6161    return($text); 
    6262} 
  • pbconf/devel/ProjectBuilder/deb/copyright

    r418 r1081  
    77Upstream Authors: Bruno Cornec <bruno@project-builder.org> 
    88 
     9Copyright 2010 Bruno Cornec <bruno@project-builder.org> 
    910Copyright: 
    1011 
     
    2425 
    2526On Debian systems, the complete text of the GNU General 
    26 Public License can be found in `/usr/share/common-licenses/GPL'. 
     27Public License can be found in `/usr/share/common-licenses/GPL-2'. 
  • pbconf/devel/ProjectBuilder/deb/rules

    r918 r1081  
    1010#export DH_VERBOSE=1 
    1111 
     12# If set to a true value then MakeMaker's prompt function will 
     13# always return the default without waiting for user input. 
     14export PERL_MM_USE_DEFAULT=1 
     15 
     16ifndef PERL 
     17PERL = /usr/bin/perl 
     18endif 
     19 
    1220# Define package name variable for a one-stop change. 
    1321PACKAGE_NAME = PBREALPKG 
    14  
    15 # These are used for cross-compiling and for saving the configure script 
    16 # from having to guess our platform (since we know it already) 
    17 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) 
    18 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) 
    19  
    20 CFLAGS = -Wall -g 
    21  
    22 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) 
    23     CFLAGS += -O0 
    24 else 
    25     CFLAGS += -O2 
    26 endif 
    27 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) 
    28     INSTALL_PROGRAM += -s 
    29 endif 
    3022 
    3123build: build-stamp 
     
    3527 
    3628        # Add here commands to compile the package. 
    37         perl Makefile.PL CONFDIR=/etc/pb 
     29        $(PERL) Makefile.PL CONFDIR=/etc/pb INSTALLDIRS=vendor  PBKEYWORD=$(CURDIR)/PBFINALDIR MANDIR=/usr/share/man 
    3830        $(MAKE) 
    3931        touch $@ 
     
    5850        $(MAKE) install DESTDIR=$(CURDIR)/debian/PBREALPKG 
    5951 
     52# Build architecture-dependent files here. Nothing here 
     53binary-arch: build install 
     54 
    6055# Build architecture-independent files here. 
    6156binary-indep: build install 
    62     # We have nothing to do by default. 
    63  
    64 # Build architecture-dependent files here. 
    65 binary-arch: build install 
    66             dh_testdir 
    67             dh_testroot 
    68             dh_installchangelogs ChangeLog 
    69             dh_installdocs 
    70             dh_installexamples 
    71                 #       dh_install 
    72                 #       dh_installmenu 
    73                 #       dh_installdebconf 
    74                 #       dh_installlogrotate 
    75                 #       dh_installemacsen 
    76                 #       dh_installpam 
    77                 #       dh_installmime 
    78                 #       dh_python 
    79                 #       dh_installinit 
    80                 #       dh_installcron 
    81                 #       dh_installinfo 
    82             dh_installman 
    83             dh_strip 
    84             dh_compress 
    85             dh_fixperms 
    86                                 #       dh_perl 
    87                                 #       dh_makeshlibs 
    88             dh_installdeb 
    89             dh_shlibdeps 
    90             dh_gencontrol 
    91             dh_md5sums 
    92             dh_builddeb 
     57        dh_testdir 
     58        dh_testroot 
     59        dh_installchangelogs ChangeLog 
     60        dh_installdocs 
     61        #dh_installexamples 
     62        #       dh_install 
     63        #       dh_installmenu 
     64        #       dh_installdebconf 
     65        #       dh_installlogrotate 
     66        #       dh_installemacsen 
     67        #       dh_installpam 
     68        #       dh_installmime 
     69        #       dh_python 
     70        #       dh_installinit 
     71        #       dh_installcron 
     72        #       dh_installinfo 
     73        dh_installman 
     74        dh_perl 
     75        dh_strip 
     76        dh_compress 
     77        dh_fixperms 
     78        #       dh_makeshlibs 
     79        dh_installdeb 
     80        #       dh_shlibdeps 
     81        dh_gencontrol 
     82        dh_md5sums 
     83        dh_builddeb 
    9384 
    9485binary: binary-indep binary-arch 
Note: See TracChangeset for help on using the changeset viewer.