diff options
Diffstat (limited to 'misc/porteasy')
-rw-r--r-- | misc/porteasy/Makefile | 1 | ||||
-rw-r--r-- | misc/porteasy/src/porteasy.pl | 14 |
2 files changed, 7 insertions, 8 deletions
diff --git a/misc/porteasy/Makefile b/misc/porteasy/Makefile index e308340ea2fe..f62714be7bf7 100644 --- a/misc/porteasy/Makefile +++ b/misc/porteasy/Makefile @@ -9,6 +9,7 @@ PORTNAME= porteasy PORTVERSION= 2.7.0 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= # none DISTFILES= # none diff --git a/misc/porteasy/src/porteasy.pl b/misc/porteasy/src/porteasy.pl index 33a546e1adaa..ec3fdaeab489 100644 --- a/misc/porteasy/src/porteasy.pl +++ b/misc/porteasy/src/porteasy.pl @@ -913,15 +913,13 @@ sub build_port($) { my @makeargs; # Arguments to make() if ($packages) { - push(@makeargs, "package", "DEPENDS_TARGET=package clean"); - foreach (values(%{$port_dep{$port}})) { - if ($_ ne 'install') { - push(@makeargs, "-DNOCLEANDEPENDS"); - last; - } - } + push(@makeargs, "package"); + push(@makeargs, "DEPENDS_TARGET=package clean", "-DNOCLEANDEPENDS") + unless ($dontclean); } else { push(@makeargs, "install"); + push(@makeargs, "DEPENDS_TARGET=install clean", "-DNOCLEANDEPENDS") + unless ($dontclean); } if ($force) { push(@makeargs, "-DFORCE_PKG_REGISTER"); @@ -1095,7 +1093,7 @@ MAIN:{ } # Step 3: update port directories and discover dependencies - $need_deps = ($update || $build || $fetch || $list || $packages); + $need_deps = ($update || $list); update_ports_tree(keys(%reqd)); # Step 4: deselect ports which are already installed |