Solved I have 2 same systems on 1 laptop showing different pkg selections for same app.

1
Code:
From system 1
userx@FreeBeSD:~$ sudo pkg search audacious
audacious-4.2                  Lightweight and versatile audio player
audacious-gtk2-4.2             Lightweight and versatile audio player
audacious-plugins-4.2_1        Plugins needed for audacious
audacious-plugins-gtk2-4.2_1   Plugins needed for audacious
audacious-skins-0.4            Collection of audacious skins
userx@FreeBeSD:~$

userx@FreeBeSD:~$ freebsd-version
13.1-RELEASE-p7
userx@FreeBeSD:~$ uname -a
FreeBSD FreeBeSD.ork 13.1-RELEASE-p6 FreeBSD 13.1-RELEASE-p6 GENERIC amd64
2
Code:
from System 2

userx@FreeBeSD:~$ sudo pkg search audacious
audacious-4.3                  Lightweight and versatile audio player
audacious-gtk2-4.3             Lightweight and versatile audio player
audacious-gtk3-4.3             Lightweight and versatile audio player
audacious-plugins-4.3          Plugins needed for audacious
audacious-plugins-gtk2-4.3     Plugins needed for audacious
audacious-plugins-gtk3-4.3     Plugins needed for audacious
audacious-plugins-qt6-4.3      Plugins needed for audacious
audacious-qt6-4.3              Lightweight and versatile audio player
audacious-skins-0.4

userx@FreeBeSD:~$ freebsd-version
13.1-RELEASE-p7
userx@FreeBeSD:~$ uname -a
FreeBSD FreeBeSD.ork 13.1-RELEASE-p6 FreeBSD 13.1-RELEASE-p6 GENERIC amd64

system 2 is showing extra for gt6 and gkt3
2 questions.

1. why?
2. how to get the systems to match up ?
 
Look at pkg -vv. I'm betting one is set to the quarterly packages and the other to latest. That would explain the version differences.

As for the *-gtk2, *-gtk3 and *-qt6 differences. They're different 'flavors' of audacious. Each flavor uses a different toolkit for the GUI part. One is GTK2 based, one for GTK3 and one for QT6.

Code:
Package flavors (<flavor>: <package>)

        qt5: audacious
        qt6: audacious-qt6
        gtk2: audacious-gtk2
        gtk3: audacious-gtk3

how to get the systems to match up ?
Remove the 'flavor' you don't need on system 2 or install the same flavors on system 1.
 
Look at pkg -vv. I'm betting one is set to the quarterly packages and the other to latest. That would explain the version differences.

As for the *-gtk2, *-gtk3 and *-qt6 differences. They're different 'flavors' of audacious. Each flavor uses a different toolkit for the GUI part. One is GTK2 based, one for GTK3 and one for QT6.

Code:
Package flavors (<flavor>: <package>)

        qt5: audacious
        qt6: audacious-qt6
        gtk2: audacious-gtk2
        gtk3: audacious-gtk3


Remove the 'flavor' you don't need on system 2 or install the same flavors on system 1.
yeah now that you mention it that rings a bell as I had the what I call the 2nd system on another HDD for a week or so tinkering with it before I decied to put it on my main ssd . I kind of remember running into a webpage that showed how to do that. NOw I have to go look that back up again. ?
 
Back
Top