Skip to content

Instantly share code, notes, and snippets.

@therealromster
Created February 9, 2015 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save therealromster/d664291b8e684611eb7d to your computer and use it in GitHub Desktop.
Save therealromster/d664291b8e684611eb7d to your computer and use it in GitHub Desktop.
quick code snippet to list ports i maintain from deptree foo in crux.
$ for p in `prt-get quickdep wine`; do if [ -n "`prt-get info $p | egrep 'Maintainer:.*Danny Rawlins'`" ]; then echo $p; fi; done
elfutils
libxslt
prelink
freeglut
wine
$ for p in `prt-get quickdep skype`; do if [ -n "`prt-get info $p | egrep 'Maintainer:.*Danny Rawlins'`" ]; then echo $p; fi; done
libvisual
orc
elfutils
libxslt
libtheora
gobject-introspection
gstreamer-compat
gst-plugins-base-compat
skype
$ for p in `prt-get quickdep mcomix`; do if [ -n "`prt-get info $p | egrep 'Maintainer:.*Danny Rawlins'`" ]; then echo $p; fi; done
libxslt
libwebp
setuptools
gobject-introspection
pillow
mcomix
for p in `prt-get quickdep deluge`; do if [ -n "`prt-get info $p | egrep 'Maintainer:.*Danny Rawlins'`" ]; then echo $p; fi; done
icu
libxslt
boost
setuptools
pyxdg
gobject-introspection
libtorrent-rasterbar
python2-chardet
zope.interface
mako
twisted
deluge
$ for p in `prt-get quickdep firefox-gst`; do if [ -n "`prt-get info $p | egrep 'Maintainer:.*Danny Rawlins'`" ]; then echo $p; fi; done
libvisual
orc
wavpack
liba52
libcddb
libdvdcss
libmad
opencore-amr
faad2
libdca
fribidi
libmodplug
libxvid
opus
libmp4v2
ladspa
rtmpdump
flac
speex
schroedinger
libmusicbrainz
x264
elfutils
libcdio
libdvdread
libmpcdec
faac
libxslt
libtheora
libshout
libsndfile
libdvdnav
libbluray
openjpeg
taglib
x265
gobject-introspection
glib-networking
libmms
gstreamer-compat
libsoup
libass
libva
gst-plugins-base-compat
libdv
ffmpeg
gst-ffmpeg
gst-plugins-good-compat
gst-plugins-ugly-compat
libquicktime
mjpegtools
gst-plugins-bad-compat
gstreamer-vaapi-compat
firefox-gst
$ for p in `prt-get quickdep ffmpeg`; do if [ -n "`prt-get info $p | egrep 'Maintainer:.*Danny Rawlins'`" ]; then echo $p; fi; done
fribidi
libmodplug
libxvid
opencore-amr
opus
orc
rtmpdump
elfutils
speex
x264
schroedinger
libxslt
libtheora
libbluray
openjpeg
x265
libass
libva
ffmpeg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment