kdegames
will also remove kde5
, and a pkg-autoremove(8) will then remove everything else. It is possible to remove a required dependency without removing the parent package by using the pkg-delete(8) -f (--force) argument.No, the x11/kde5 meta-port includes games/kdegames. Removingkdegames
will also removekde5
, and a pkg-autoremove(8) will then remove everything else.
# pkg info -d xfce4
xfce-4.18_1:
xfce4-terminal-1.1.3
xfce4-wm-4.18.0_3
xfce4-session-4.18.4
xfce4-panel-4.18.6
xfce4-desktop-4.18.1_4
xfce-icons-elementary-0.20
greybird-theme-3.23.3
xfce4-settings-4.18.6
xfce4-power-manager-4.18.4
xfce4-appfinder-4.18.1_2
mousepad-0.6.3
xfce4-notifyd-0.9.6
# pkg del xfce4-appfinder
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 2 packages (of 0 packages in the universe):
Installed packages to be REMOVED:
xfce: 4.18_1
xfce4-appfinder: 4.18.1_2
Number of packages to be removed: 2
Proceed with deinstalling packages? [y/N]: N
# pkg del -f xfce4-appfinder
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 1 packages (of 0 packages in the universe):
Installed packages to be REMOVED:
xfce4-appfinder: 4.18.1_2
Number of packages to be removed: 1
Proceed with deinstalling packages? [y/N]: y
1/1] Deinstalling xfce4-appfinder-4.18.1_2...
[1/1] Deleting files for xfce4-appfinder-4.18.1_2:
...
# pkg autoremove
Checking integrity... done (0 conflicting)
Nothing to do.
Which will then be reinstalled on the next pkg-upgrade(8) because it's a dependency ofIt is possible to remove a required dependency without removing the parent package by using the pkg-delete(8) -f (--force) argument.
kde
. While this certainly works it'll be temporarily. Also a pkg-check(8) is going to complain about missing dependencies. Good point.Which will then be reinstalled on the next pkg-upgrade(8) because it's a dependency ofkde
.
the best option is to install the "clean" KDE desktop (x11/plasma5-plasma) and then only the individual meta-ports from x11/kde5 you do want.
OPTIONS_DEFINE= KDEADMIN KDEEDU \
KDEGAMES KDEGRAPHICS KDEMULTIMEDIA KDENETWORK \
KDEPIM KDEUTILS \
PULSEAUDIO
pkg install kde5
could I install each of these separate packages, without KDEGAMES ?Yes, correct. They're all meta-ports of themselves too, it then depends on the actual applications, so you could also install only the individual applications you want. None of these meta-ports contain anything of themselves, they all simply depend on other packages, so you don't need to use those meta-ports.So rather thanpkg install kde5
could I install each of these separate packages, without KDEGAMES ?