/usr/bin/jh_setupenvironment is in javahelper 0.45ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | #!/usr/bin/perl
=head1 NAME
jh_setupenvironment - Prepares a build environment to compile an eclipse feature.
=cut
use strict;
use warnings;
use autodie;
use Debian::Debhelper::Dh_Lib;
=head1 SYNOPSIS
B<jh_setupenvironment> [S<I<debhelper options>>] [B<--pde-build-dir=>I<dir>] [S<I<copy [...]>>]
=head1 DESCRIPTION
jh_setupenvironment is a javahelper program that handles creating
an environment for building an eclipse feature. It does not setup
an orbit dir (use jh_generateorbitdir for that). It will copy files
specified in debian/eclipse.environment as well as those given on
command line into the environment dir. If no files are given per
command line and the environment file is not present (or is empty),
it will default to "org.eclipse.*"
=head1 FILES
=over 4
=item debian/eclipse.environment
List of file- and directory glob patterns to copy into the build
environment.
=back
=head1 OPTIONS
=over 4
=item B<--pde-build-dir=>I<dir>
Specifies where the environment should be or is placed.
=item B<--clean>
If passed, jh_setupenvironment will clean up the build environment.
When cleaning jh_setupenvironment will not record itself in the
debhelper log to avoid confusing dh, when it has to use the log
to trace where it was.
=back
=cut
my $builddir = undef;
my $me = basename($0);
my $clean = '';
init(options => {
'pde-build-dir=s' => \$builddir,
'clean' => sub { $clean = 1 },
});
$clean = 0 unless(defined($clean) and $clean ne q{});
$builddir = 'debian/.eclipse-build' unless(defined($builddir));
# do not write to the log if we are cleaning.
inhibit_log() if($clean);
if($clean){
doit('rm', '-fr', $builddir);
# clean up after jh_generateorbitdeps - dh_clean tend to miss this file
# because it does not "belong" to a package.
doit('rm', '-f', 'debian/orbitdeps.debhelper');
} else{
my $bfile = 'debian/eclipse.environment';
if( -f $bfile){
push(@ARGV, filearray($bfile));
}
push(@ARGV, 'org.eclipse.*') unless(scalar(@ARGV) > 0);
doit('mkdir', '-p', $builddir);
complex_doit('cp -far ' . join(' ', @ARGV) . " $builddir");
}
exit(0);
=head1 EXAMPLE
jh_setupenvironment org.eclipse.* debian/*.properties
Will clone all files and folders starting with "org.eclipse." and all
property files in the debian-folder and put them into the environment.
=head1 SEE ALSO
L<debhelper(7)>
This program is a part of javahelper and uses debhelper as backend. There are
also tutorials in /usr/share/doc/javahelper.
=head1 AUTHOR
Niels Thykier <niels@thykier.net>
=head1 COPYRIGHT AND LICENSE
Copyright 2010 by Niels Thykier
This tool is free software; you may redistribute it and/or modify
it under the terms of GNU GPL 2.
=cut
|