summaryrefslogtreecommitdiff
path: root/usr.bin/pkg-config
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2012-06-11 10:16:47 +0000
committerMarc Espie <espie@cvs.openbsd.org>2012-06-11 10:16:47 +0000
commit9f6743841362c6e0b9de246293433674ff3a1ccd (patch)
tree3be0869b28a7292afa842136f7c077551c40d24c /usr.bin/pkg-config
parent76e77fc24fdfa5ab7023719e4752a3443f32f014 (diff)
move PkgConfig.pm where it belongs
as requested by matthieu@, ok jasper@, miod@, matthieu@
Diffstat (limited to 'usr.bin/pkg-config')
-rw-r--r--usr.bin/pkg-config/Makefile13
-rw-r--r--usr.bin/pkg-config/OpenBSD/PkgConfig.pm252
2 files changed, 262 insertions, 3 deletions
diff --git a/usr.bin/pkg-config/Makefile b/usr.bin/pkg-config/Makefile
index f465698cd39..3a58f86a239 100644
--- a/usr.bin/pkg-config/Makefile
+++ b/usr.bin/pkg-config/Makefile
@@ -1,9 +1,16 @@
-# $OpenBSD: Makefile,v 1.4 2006/11/28 00:48:08 ckuethe Exp $
+# $OpenBSD: Makefile,v 1.5 2012/06/11 10:16:46 espie Exp $
MAN=pkg-config.1
-beforeinstall:
- ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+LIBDIR = /usr/libdata/perl5/OpenBSD
+
+realinstall:
+ ${INSTALL} -d -o ${LIBOWN} -g ${LIBGRP} -m ${DIRMODE} \
+ ${DESTDIR}${LIBDIR}
+ ${INSTALL} ${INSTALL_COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
+ ${.CURDIR}/OpenBSD/PkgConfig.pm ${DESTDIR}${LIBDIR}
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/pkg-config ${DESTDIR}${BINDIR}/pkg-config
+NOPROG =
.include <bsd.prog.mk>
diff --git a/usr.bin/pkg-config/OpenBSD/PkgConfig.pm b/usr.bin/pkg-config/OpenBSD/PkgConfig.pm
new file mode 100644
index 00000000000..a5eeec0d488
--- /dev/null
+++ b/usr.bin/pkg-config/OpenBSD/PkgConfig.pm
@@ -0,0 +1,252 @@
+# ex:ts=8 sw=4:
+# $OpenBSD: PkgConfig.pm,v 1.1 2012/06/11 10:16:46 espie Exp $
+#
+# Copyright (c) 2006 Marc Espie <espie@openbsd.org>
+#
+# Permission to use, copy, modify, and distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+
+use strict;
+use warnings;
+
+# this is a 'special' package, interface to the *.pc file format of pkg-config.
+package OpenBSD::PkgConfig;
+
+# specific properties may have specific needs.
+
+my $parse = {
+ Requires => sub {
+ [split qr{
+ (?<![<=>]) # not preceded by <=>
+ [,\s]+ # delimiter
+ (?![<=>]) # not followed by <=>
+ }x, shift ] }
+};
+
+
+my $write = {
+ Libs => sub { " ".__PACKAGE__->compress(shift) }
+};
+
+$parse->{'Requires.private'} = $parse->{Requires};
+$write->{'Libs.private'} = $write->{Libs};
+
+sub new
+{
+ my $class = shift;
+
+ return bless {
+ variables => {},
+ vlist => [],
+ properties => {},
+ proplist => []
+ }, $class;
+}
+
+sub add_variable
+{
+ my ($self, $name, $value) = @_;
+ if (defined $self->{variables}->{$name}) {
+ die "Duplicate variable $name";
+ }
+ push(@{$self->{vlist}}, $name);
+ $self->{variables}->{$name} = $value;
+}
+
+sub add_property
+{
+ my ($self, $name, $value) = @_;
+ if (defined $self->{properties}->{$name}) {
+ die "Duplicate property $name";
+ }
+ push(@{$self->{proplist}}, $name);
+ my $v;
+ if (defined $value) {
+ if (defined $parse->{$name}) {
+ $v = $parse->{$name}($value);
+ } else {
+ $v = [split /(?<!\\)\s+/o, $value];
+ }
+ } else {
+ $v = [];
+ }
+ $self->{properties}->{$name} = $v;
+}
+
+sub read_fh
+{
+ my ($class, $fh, $name) = @_;
+ my $cfg = $class->new;
+ my $_;
+
+ $name = '' if !defined $name;
+ while (<$fh>) {
+ chomp;
+ # continuation lines
+ while (m/(?<!\\)\\$/) {
+ s/\\$//;
+ $_.=<$fh>;
+ chomp;
+ }
+ next if m/^\s*$/;
+ next if m/^\#/;
+ # zap comments
+ s/(?<!\\)\#.*//;
+ if (m/^([\w.]*)\s*\=\s*(.*)$/) {
+ $cfg->add_variable($1, $2);
+ } elsif (m/^([\w.]*)\:\s+(.*)$/) {
+ $cfg->add_property($1, $2);
+ } elsif (m/^([\w.]*)\:\s*$/) {
+ $cfg->add_property($1);
+ } else {
+ die "Incorrect cfg file $name";
+ }
+ }
+ if (defined $cfg->{properties}->{Libs}) {
+ $cfg->{properties}->{Libs} =
+ $cfg->compress_list($cfg->{properties}->{Libs});
+ }
+ return $cfg;
+}
+
+sub read_file
+{
+ my ($class, $filename) = @_;
+
+ open my $fh, '<:crlf', $filename or die "Can't open $filename: $!";
+ return $class->read_fh($fh, $filename);
+}
+
+sub write_fh
+{
+ my ($self, $fh) = @_;
+
+ foreach my $variable (@{$self->{vlist}}) {
+ print $fh "$variable=", $self->{variables}->{$variable}, "\n";
+ }
+ print $fh "\n\n";
+ foreach my $property (@{$self->{proplist}}) {
+ my $p = $self->{properties}->{$property};
+ print $fh "$property:";
+ if (defined $write->{$property}) {
+ print $fh $write->{$property}($p);
+ } else {
+ print $fh (map { " $_" } @$p);
+ }
+ print $fh "\n";
+ }
+}
+
+sub write_file
+{
+ my ($cfg, $filename) = @_;
+ open my $fh, '>', $filename or die "Can't open $filename: $!";
+ $cfg->write_fh($fh);
+}
+
+sub compress_list
+{
+ my ($class, $l, $keep) = @_;
+ my $h = {};
+ my $r = [];
+ foreach my $i (@$l) {
+ next if defined $h->{$i};
+ next if defined $keep && !&$keep($i);
+ push(@$r, $i);
+ $h->{$i} = 1;
+ }
+ return $r;
+}
+
+sub compress
+{
+ my ($class, $l, $keep) = @_;
+ return join(' ', @{$class->compress_list($l, $keep)});
+}
+
+sub rcompress
+{
+ my ($class, $l, $keep) = @_;
+ my @l2 = reverse @$l;
+ return join(' ', reverse @{$class->compress_list(\@l2, $keep)});
+}
+
+sub expanded
+{
+ my ($self, $v, $extra) = @_;
+
+ $extra = {} if !defined $extra;
+ my $get_value =
+ sub {
+ my $var = shift;
+ if (defined $extra->{$var}) {
+ return $extra->{$var};
+ } elsif (defined $self->{variables}->{$var}) {
+ return $self->{variables}->{$var};
+ } else {
+ return '';
+ }
+ };
+
+ while ($v =~ s/\$\{(.*?)\}/&$get_value($1)/ge) {
+ }
+ return $v;
+}
+
+sub get_property
+{
+ my ($self, $k, $extra) = @_;
+
+ my $l = $self->{properties}->{$k};
+ if (!defined $l) {
+ return undef;
+ }
+ my $r = [];
+ for my $v (@$l) {
+ push(@$r, $self->expanded($v, $extra));
+ }
+ return $r;
+}
+
+sub get_variable
+{
+ my ($self, $k, $extra) = @_;
+
+ my $v = $self->{variables}->{$k};
+ if (defined $v) {
+ return $self->expanded($v, $extra);
+ } else {
+ return undef;
+ }
+}
+
+# to be used to make sure a config does not depend on absolute path names,
+# e.g., $cfg->add_bases(X11R6 => '/usr/X11R6');
+
+sub add_bases
+{
+ my ($self, $extra) = @_;
+
+ while (my ($k, $v) = each %$extra) {
+ for my $name (keys %{$self->{variables}}) {
+ $self->{variables}->{$name} =~ s/\Q$v\E\b/\$\{\Q$k\E\}/g;
+ }
+ for my $name (keys %{$self->{properties}}) {
+ for my $e (@{$self->{properties}->{$name}}) {
+ $e =~ s/\Q$v\E\b/\$\{\Q$k\E\}/g;
+ }
+ }
+ $self->{variables}->{$k} = $v;
+ unshift(@{$self->{vlist}}, $k);
+ }
+}
+
+1;