Solved Is there a world file or similar list of user installed packages?

In gentoo, there's a world file that contains packages that the user requested be installed without the dependencies. Is there something similar in FreeBSD, or a way to get at this information?

I did pkg info|wc but I didn't explicitly ask for 961 packages.

Currently, I just put pkg install notes in my note after I've done some I like, but that's an error prone way to keep track. The world file of gentoo is nice.
 
68 packages is more like it! I can't believe I limped along all this time not know this! Learn something new every single day!
 
Sure enough, long ago, it seems... I put a note in my install notes about adding:

Code:
message: "query '[%C/%n] %M'",
rmessage: query -i "[%C/%n-%v] %M",

into that file so I could get messages back after an install and it's very useful. I'm not sure I have the time/patience to learn query programming, but I surely can look at the file and see what's already available, duh!
 
Back
Top