Apache/2.4.7 (Ubuntu) Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) safemode : OFF MySQL: ON | Perl: ON | cURL: OFF | WGet: ON > / usr / bin / | server ip : 104.21.89.46 your ip : 108.162.241.199 H O M E |
Filename | /usr/bin/dh_perl_dbi |
Size | 1.04 kb |
Permission | rwxr-xr-x |
Owner | root : root |
Create time | 27-Apr-2025 10:10 |
Last modified | 06-Nov-2013 01:11 |
Last accessed | 05-Jul-2025 15:41 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
#! /usr/bin/perl
use strict;
use warnings;
use Debian::Debhelper::Dh_Lib;
init();
for my $package (@{ $dh{DOPACKAGES} }) {
addsubstvar($package, 'perl:Depends', 'perl-dbdabi-94', undef);
}
__END__
=head1 NAME
dh_perl_dbi - add dependencies required for DBI modules
=head1 SYNOPSIS
B<dh_perl_dbi> [S<I<debhelper options>>]
=head1 DESCRIPTION
dh_perl_dbi is a debhelper program that is responsible for adding a dependency
on perl-dbdabi-* to the ${perl:Depends} substitution variable.
Such a dependency is required for packages that use the DBDE<lt>E<gt>DBI binary
interface; do I<not> use this for packages that only use the DBI module.
A debhelper addon is also provided. This makes it possible to just use
#!/usr/bin/make -f
%:
dh $@ --with perl_dbi
for F<debian/rules>.
=head1 SEE ALSO
L<debhelper(7)>
L<http://bugs.debian.org/577209>
=head1 COPYRIGHT AND LICENSE
Copyright 2010, Ansgar Burchardt <[email protected]>
This program is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
use strict;
use warnings;
use Debian::Debhelper::Dh_Lib;
init();
for my $package (@{ $dh{DOPACKAGES} }) {
addsubstvar($package, 'perl:Depends', 'perl-dbdabi-94', undef);
}
__END__
=head1 NAME
dh_perl_dbi - add dependencies required for DBI modules
=head1 SYNOPSIS
B<dh_perl_dbi> [S<I<debhelper options>>]
=head1 DESCRIPTION
dh_perl_dbi is a debhelper program that is responsible for adding a dependency
on perl-dbdabi-* to the ${perl:Depends} substitution variable.
Such a dependency is required for packages that use the DBDE<lt>E<gt>DBI binary
interface; do I<not> use this for packages that only use the DBI module.
A debhelper addon is also provided. This makes it possible to just use
#!/usr/bin/make -f
%:
dh $@ --with perl_dbi
for F<debian/rules>.
=head1 SEE ALSO
L<debhelper(7)>
L<http://bugs.debian.org/577209>
=head1 COPYRIGHT AND LICENSE
Copyright 2010, Ansgar Burchardt <[email protected]>
This program is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.