TeXlive: package list proper.

Shell: 'webcam test with mplayer' function.
master
Ambrevar 2012-09-10 22:42:43 +02:00
parent 02bca376ed
commit a300eab28d
7 changed files with 98 additions and 3 deletions

View File

@ -4,6 +4,8 @@ dropbox-cli
emacs-mediawiki-bzr
emacs-yasnippet
fortune-mod-tbbt
google-talkplugin
libpng12
movgrab
package-query
pacman-color

View File

@ -20,6 +20,7 @@ bzip2
calc
ccrypt
cdrtools
cheese
cifs-utils
cmus
coreutils
@ -51,6 +52,7 @@ file
filesystem
finch
findutils
firefox
flashplugin
flex
fortune-mod
@ -64,6 +66,7 @@ gettext
git
glibc
gnu-netcat
google-talkplugin
graphicsmagick
grep
gsasl

View File

@ -31,9 +31,15 @@ calc
ccrypt
cdparanoia
cdrtools
cheese
cifs-utils
cloog
clutter
clutter-gst
clutter-gtk
cmus
cogl
colord
compositeproto
coreutils
cracklib
@ -49,6 +55,7 @@ db
dbus
dbus-core
dbus-glib
dconf
desktop-file-utils
device-mapper
dhclient
@ -81,6 +88,7 @@ file
filesystem
finch
findutils
firefox
fixesproto
flac
flashplugin
@ -97,6 +105,7 @@ gc
gcc
gcc-libs
gcolor2
gconf
gd
gdb
gdbm
@ -114,6 +123,8 @@ glibc
glib-networking
glproto
gmp
gnome-desktop
gnome-video-effects
gnu-netcat
gnupg
gnutls
@ -131,10 +142,13 @@ gstreamer0.10
gstreamer0.10-bad
gstreamer0.10-bad-plugins
gstreamer0.10-base
gstreamer0.10-base-plugins
gstreamer0.10-ffmpeg
gstreamer0.10-good
gstreamer0.10-good-plugins
gstreamer0.10-python
gtk2
gtk3
gtk-update-icon-cache
gts
gzip
@ -170,6 +184,7 @@ jack
jasper
jfsutils
json-c
json-glib
kbd
kbproto
keyutils
@ -195,6 +210,7 @@ libavc1394
libbluray
libburn
libcaca
libcanberra
libcap
libcap-ng
libcdaudio
@ -226,12 +242,17 @@ libgl
libglade
libglapi
libgme
libgnome-keyring
libgpg-error
libgphoto2
libgsf
libgssglue
libgusb
libice
libid3tag
libidn
libiec61883
libieee1284
libirman
libisoburn
libisofs
@ -266,10 +287,12 @@ libraw1394
librsvg
libsamplerate
libsasl
libshout
libsigc++
libsm
libsndfile
libsoup
libsoup-gnome
libspectre
libssh2
libstdc++5
@ -285,6 +308,7 @@ libusb-compat
libusbx
libva
libvdpau
libvisual
libvorbis
libvpx
libwbclient
@ -359,11 +383,13 @@ mtdev
mtools
musicbrainz
mutt
mx
nasm
nawk
ncdu
ncurses
neon
net-snmp
nettle
net-tools
nmap
@ -441,6 +467,7 @@ renderproto
rtmpdump
rtorrent
run-parts
sane
schroedinger
scrnsaverproto
scrot
@ -449,6 +476,7 @@ sdparm
sed
sg3_utils
shadow
shared-color-profiles
shared-mime-info
slock
smbclient
@ -469,6 +497,7 @@ systemd
sysvbanner
sysvinit
sysvinit-tools
taglib
talloc
tar
task
@ -498,6 +527,7 @@ vim
vim-runtime
vlock
w3m
wavpack
wget
which
wildmidi

View File

@ -20,6 +20,7 @@ graphics
hyperref
lipsum
listings
lm
marvosym
mdwtools
microtype
@ -32,5 +33,4 @@ was
wrapfig
xargs
xcolor
zapfding
lm
zapfding

42
.pkg-texlive-edf23ads Normal file
View File

@ -0,0 +1,42 @@
amsmath
babel
beamer
bigfoot
carlisle
cm-super
collection-basic
ec
eplain
etoolbox
eukdate
eurosym
fancyhdr
geometry
graphics
hyperref
latex
latex-bin
latexconfig
latex-fonts
listings
marvosym
microtype
moderncv
ms
needspace
ntheorem
numprint
oberdiek
pdftex-def
pgf
scheme-minimal
texlive-common
texlive-docindex
texlive-en
tools
url
was
wrapfig
xargs
xcolor
xkeyval

13
.save
View File

@ -103,9 +103,10 @@ if [ -e "${ARCHIVENAME}.${ARCEXT}" ]; then
fi
##==============================================================================
## Arch Linux packages list
## Packages list
##==============================================================================
## Arch Linux
if [ -e "/usr/bin/pacman" ]; then
HOST=$(hostname)
@ -123,6 +124,16 @@ if [ -e "/usr/bin/pacman" ]; then
eval "${PKG_FOREIGN}" >"${ARCH_PKG_AUR}-${HOST}"
fi
## TeXlive
if type tlmgr >/dev/null 2>&1; then
HOST=$(hostname)
TEXLIVE_BASIC="$(tlmgr info collection-basic --list | sed -n '/^\s\+/{s/\s\+//g;p}' | sort)"
TEXLIVE_ALL="$(tlmgr info --only-installed | grep -v 'x86_64' | cut -d' ' -f2 | cut -f1 -d':' | sort)"
comm -3 <(echo "$TEXLIVE_BASIC") <(echo "$TEXLIVE_ALL") | sed 's/\s\+//g' >"$HOME/.pkg-texlive-${HOST}"
fi
##==============================================================================
## Let's fill the file list:
##==============================================================================

View File

@ -181,6 +181,13 @@ cpuusage(){
fi
}
## Webcam
webcam ()
{
## With mplayer.
mplayer -fps 30 -tv driver=v4l2:width=640:height=480:device=/dev/video0 tv:// -flip
}
## Vim-only: search the vim reference manual for a keyword.
## Usage: :h <keyword>