Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
022aa50b
Commit
022aa50b
authored
May 29, 2014
by
Mike Hibler
Browse files
Yet another package band-aid for 9.0.
parent
94194030
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/phases/boss/portfix
View file @
022aa50b
...
...
@@ -93,6 +93,22 @@ sub Install($$$)
ExecQuietFatal("mv /var/tmp$egg $pydir/$egg.bak");
};
}
if ($FBSD_MAJOR == 9) {
#
# Ports that were added after the 9.0 packages were made.
# As of 05/2014, the 9.0 stuff is still needed on geniracks.
#
Phase "p5-Net-IP", "Looking for p5-Net-IP and installing", sub {
DoneIfPackageInstalled("p5-Net-IP");
my $pname = GetPackage("p5-Net-IP", $packagedir);
AddPackage($pname, $packagedir);
};
Phase "p5-JSON", "Looking for p5-JSON and installing", sub {
DoneIfPackageInstalled("p5-JSON");
my $pname = GetPackage("p5-JSON", $packagedir);
AddPackage($pname, $packagedir);
};
}
if ($FBSD_MAJOR >= 10) {
Phase "bind-compat", "Creating /etc/namedb for backward compat", sub {
PhaseSkip("already exists")
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment