diff options
author | Modestas Vainius <modestas@vainius.eu> | 2009-06-15 16:20:11 +0300 |
---|---|---|
committer | Modestas Vainius <modestas@vainius.eu> | 2009-06-17 22:44:31 +0300 |
commit | 95f0a0968c30a6737c3f321f305985b3fd33a63e (patch) | |
tree | e0bf3bd0f3745792682e7f4397c7f7b84072761b /Debian/Debhelper/Buildsystem | |
parent | 49b64c7852744f54250121b1c60544e1f5de70b6 (diff) |
Some cosmetic changes in the comments and strings.
* buildsystem -> build system
* dh_auto build system -> debhelper build system
* plugin -> class
* a few rewording changes in the comments.
* Enhance python_distutils::DESCRIPTION().
Diffstat (limited to 'Debian/Debhelper/Buildsystem')
-rw-r--r-- | Debian/Debhelper/Buildsystem/autoconf.pm | 2 | ||||
-rw-r--r-- | Debian/Debhelper/Buildsystem/cmake.pm | 6 | ||||
-rw-r--r-- | Debian/Debhelper/Buildsystem/makefile.pm | 2 | ||||
-rw-r--r-- | Debian/Debhelper/Buildsystem/perl_build.pm | 2 | ||||
-rw-r--r-- | Debian/Debhelper/Buildsystem/perl_makemaker.pm | 2 | ||||
-rw-r--r-- | Debian/Debhelper/Buildsystem/python_distutils.pm | 6 |
6 files changed, 10 insertions, 10 deletions
diff --git a/Debian/Debhelper/Buildsystem/autoconf.pm b/Debian/Debhelper/Buildsystem/autoconf.pm index c92e2c1..60fa9e8 100644 --- a/Debian/Debhelper/Buildsystem/autoconf.pm +++ b/Debian/Debhelper/Buildsystem/autoconf.pm @@ -1,4 +1,4 @@ -# A buildsystem plugin for handling autoconf based projects +# A debhelper build system class for handling Autoconf based projects # # Copyright: © 2008 Joey Hess # © 2008-2009 Modestas Vainius diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm index 057f327..c2a3769 100644 --- a/Debian/Debhelper/Buildsystem/cmake.pm +++ b/Debian/Debhelper/Buildsystem/cmake.pm @@ -1,5 +1,5 @@ -# A buildsystem plugin for handling CMake based projects. -# It enforces out of source tree building. +# A debhelper build system class for handling CMake based projects. +# It prefers out of source tree building. # # Copyright: © 2008-2009 Modestas Vainius # License: GPL-2+ @@ -25,7 +25,7 @@ sub new { my $class=shift; my $this=$class->SUPER::new(@_); my %args=@_; - # Enforce out of source tree building (soft mode). + # Prefer out of source tree building. $this->enforce_out_of_source_building($args{builddir}); return $this; } diff --git a/Debian/Debhelper/Buildsystem/makefile.pm b/Debian/Debhelper/Buildsystem/makefile.pm index 6a9e687..d84d334 100644 --- a/Debian/Debhelper/Buildsystem/makefile.pm +++ b/Debian/Debhelper/Buildsystem/makefile.pm @@ -1,4 +1,4 @@ -# A buildsystem plugin for handling simple Makefile based projects. +# A debhelper build system class for handling simple Makefile based projects. # # Copyright: © 2008 Joey Hess # © 2008-2009 Modestas Vainius diff --git a/Debian/Debhelper/Buildsystem/perl_build.pm b/Debian/Debhelper/Buildsystem/perl_build.pm index 525b0e1..3567cb1 100644 --- a/Debian/Debhelper/Buildsystem/perl_build.pm +++ b/Debian/Debhelper/Buildsystem/perl_build.pm @@ -1,4 +1,4 @@ -# A buildsystem plugin for handling Perl Build based projects. +# A build system class for handling Perl Build based projects. # # Copyright: © 2008-2009 Joey Hess # © 2008-2009 Modestas Vainius diff --git a/Debian/Debhelper/Buildsystem/perl_makemaker.pm b/Debian/Debhelper/Buildsystem/perl_makemaker.pm index 4281fa2..07a827a 100644 --- a/Debian/Debhelper/Buildsystem/perl_makemaker.pm +++ b/Debian/Debhelper/Buildsystem/perl_makemaker.pm @@ -1,4 +1,4 @@ -# A buildsystem plugin for handling Perl MakeMaker based projects. +# A debhelper build system class for handling Perl MakeMaker based projects. # # Copyright: © 2008-2009 Joey Hess # © 2008-2009 Modestas Vainius diff --git a/Debian/Debhelper/Buildsystem/python_distutils.pm b/Debian/Debhelper/Buildsystem/python_distutils.pm index 2641173..d05e381 100644 --- a/Debian/Debhelper/Buildsystem/python_distutils.pm +++ b/Debian/Debhelper/Buildsystem/python_distutils.pm @@ -1,5 +1,5 @@ -# A buildsystem plugin for building Python Distutils based -# projects. +# A debhelper build system class for building Python Distutils based +# projects. It prefers out of source tree building. # # Copyright: © 2008 Joey Hess # © 2008-2009 Modestas Vainius @@ -13,7 +13,7 @@ use Debian::Debhelper::Dh_Lib qw(error); use base 'Debian::Debhelper::Buildsystem'; sub DESCRIPTION { - "Python distutils" + "Python Distutils (setup.py)" } sub DEFAULT_BUILD_DIRECTORY { |