Fri May 25 23:29:36 UTC 2018

patches/packages/glibc-zoneinfo-2018e-noarch-2_slack14.0.txz:  Rebuilt.
  Handle removal of US/Pacific-New timezone. If we see that the machine is
  using this, it will be automatically switched to US/Pacific.
This commit is contained in:
Patrick J Volkerding 2018-05-25 23:29:36 +00:00 committed by Eric Hameleers
parent 9664bee729
commit 3152fcc3bb
1524 changed files with 186170 additions and 127609 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -0,0 +1,28 @@
if [ ! -r etc/httpd/mod_php.conf ]; then
cp -a etc/httpd/mod_php.conf.example etc/httpd/mod_php.conf
elif [ "`cat etc/httpd/mod_php.conf 2> /dev/null`" = "" ]; then
cp -a etc/httpd/mod_php.conf.example etc/httpd/mod_php.conf
fi
config() {
NEW="$1"
OLD="`dirname $NEW`/`basename $NEW .new`"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
# Keep same perms on rc.php-fpm.new:
if [ -e etc/rc.d/rc.php-fpm ]; then
cp -a etc/rc.d/rc.php-fpm etc/rc.d/rc.php-fpm.new.incoming
cat etc/rc.d/rc.php-fpm.new > etc/rc.d/rc.php-fpm.new.incoming
mv etc/rc.d/rc.php-fpm.new.incoming etc/rc.d/rc.php-fpm.new
fi
config etc/rc.d/rc.php-fpm.new
cp -a etc/httpd/php.ini-production etc/httpd/php.ini.new
config etc/httpd/php.ini.new
cp -a etc/php-fpm.conf.default etc/php-fpm.conf.new
config etc/php-fpm.conf.new

View file

@ -0,0 +1 @@
lftpget http://us.php.net/distributions/php-5.4.45.tar.bz2

View file

@ -0,0 +1,29 @@
#
# mod_php - PHP Hypertext Preprocessor module
#
# Load the PHP module:
LoadModule php5_module lib/httpd/modules/libphp5.so
# Tell Apache to feed all *.php files through PHP. If you'd like to
# parse PHP embedded in files with different extensions, comment out
# these lines and see the example below.
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
# Tell Apache to feed all *.php, *.html, and *.htm files through
# the PHP module. Add or subtract extensions here as desired. Please
# note that running pages through PHP for no reason can be both slow
# and insecure, so be sure to know what you're doing. It's a convenient
# shortcut, but probably isn't suitible for high-traffic sites if you
# write any of your pages in straight HTML.
#<FilesMatch "\.(php|html|htm)$">
# SetHandler application/x-httpd-php
#</FilesMatch>
# This will display PHP files in colored syntax form. Use with caution.
#<FilesMatch "\.phps$">
# SetHandler application/x-httpd-php-source
#</FilesMatch>

View file

@ -0,0 +1,28 @@
--- ./sapi/fpm/php-fpm.conf.in.orig 2012-05-20 19:47:53.000000000 +0200
+++ ./sapi/fpm/php-fpm.conf.in 2012-05-21 09:16:32.646276661 +0200
@@ -12,7 +12,7 @@
; Relative path can also be used. They will be prefixed by:
; - the global prefix if it's been set (-p arguement)
; - @prefix@ otherwise
-;include=etc/fpm.d/*.conf
+;include=etc/php-fpm/*.conf
;;;;;;;;;;;;;;;;;;
; Global Options ;
@@ -22,14 +22,14 @@
; Pid file
; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@
; Default Value: none
-;pid = run/php-fpm.pid
+pid = run/php-fpm.pid
; Error log file
; If it's set to "syslog", log is sent to syslogd instead of being written
; in a local file.
; Note: the default prefix is @EXPANDED_LOCALSTATEDIR@
; Default Value: log/php-fpm.log
-;error_log = log/php-fpm.log
+error_log = log/php-fpm.log
; syslog_facility is used to specify what type of program is logging the
; message. This lets syslogd specify that messages from different facilities

311
pasture/source/php/php.SlackBuild Executable file
View file

@ -0,0 +1,311 @@
#!/bin/sh
# Build and package mod_php on Slackware.
# by: David Cantrell <david@slackware.com>
# Modified for PHP 4-5 by volkerdi@slackware.com
# Copyright 2007, 2008, 2009, 2010, 2011, 2012 Patrick Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
VERSION=${VERSION:-$(echo php-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
ALPINE=2.02
BUILD=${BUILD:-1_slack14.0}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i486 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
NUMJOBS=${NUMJOBS:-" -j7 "}
CWD=$(pwd)
TMP=${TMP:-/tmp}
PKG=$TMP/package-php/
rm -rf $PKG
mkdir -p $TMP $PKG
if [ "$ARCH" = "i386" ]; then
SLKCFLAGS="-O2 -march=i386 -mcpu=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "s390" ]; then
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
# we need to compile alpine to get c-client.a for IMAP support:
IMAPLIBDIR=/usr/local/lib${LIBDIRSUFFIX}/c-client
if [ -r $IMAPLIBDIR/lib${LIBDIRSUFFIX}/c-client.a ]; then
echo "Using IMAP library:"
ls -l $IMAPLIBDIR/lib${LIBDIRSUFFIX}/c-client.a
sleep 5
else
( cd $CWD/../alpine ; ./alpine.SlackBuild || exit 1 ) || exit 1
( cd $TMP/re-alpine-${ALPINE}/imap/c-client
strip -g c-client.a
mkdir -p $IMAPLIBDIR/lib${LIBDIRSUFFIX}
cp c-client.a $IMAPLIBDIR/lib${LIBDIRSUFFIX}
mkdir -p $IMAPLIBDIR/include
cp *.h $IMAPLIBDIR/include
)
fi
mkdir -p $PKG/etc/httpd
mkdir -p $PKG/etc/php
# A trick from DaMouse to enable building php into $PKG.
# We'll remove this later on.
cat /etc/httpd/original/httpd.conf > $PKG/etc/httpd/httpd.conf
if [ ! -e /etc/httpd/original/httpd.conf ]; then
echo "FATAL: no /etc/httpd/original/httpd.conf found."
exit 1
fi
cd $TMP
rm -rf php-$VERSION
tar xvf $CWD/php-$VERSION.tar.?z* || exit 1
cd php-$VERSION
# cleanup:
find . -name "*.orig" -delete
# Add missing(?) PEAR modules back:
if [ -d php-$VERSION/pear/packages ]; then
( cd php-$VERSION/pear/packages
cp -a $CWD/pear/*.bz2 . 2> /dev/null
bzip2 -d *.bz2 2> /dev/null
)
fi
# Add install-pear-nozlib.phar if it wasn't shipped in the PHP tarball:
if [ ! -r pear/install-pear-nozlib.phar ]; then
xzcat $CWD/install-pear-nozlib.phar.xz > pear/install-pear-nozlib.phar || exit 1
elif [ -r $CWD/install-pear-nozlib.phar.xz ]; then
echo "pear/install-pear-nozlib.phar found in the PHP tarball... recommend removing possibly stale version in \$CWD."
echo "Have a little time to think this over..."
sleep 3600
fi
if [ "$ARCH" = "s390" ]; then
zcat $CWD/php.configure.s390.diff.gz | patch -p1 || exit
fi
# Fixup perms/owners:
chown -R root:root .
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
find . -name "*.h" -exec chmod 644 {} \;
# Sometimes they ship a few of these:
find . -name "*.orig" -exec rm {} \;
# Patch ini files:
zcat $CWD/php.ini-development.diff.gz | patch -p1 --verbose || exit 1
zcat $CWD/php.ini-development.diff.gz | patch -p1 --verbose php.ini-production || exit 1
zcat $CWD/php-fpm.conf.diff.gz | patch -p1 --verbose || exit 1
# Install the build folder into /usr/lib$LIBDIRSUFFIX/php/build
# and adapt phpize accordingly:
sed -i "s|build$|php/build|" scripts/Makefile.frag
sed -i "s|build\"$|php/build\"|" scripts/phpize.in
# Generic "kitchen sink" configure function, with as many things as possible (and
# maybe then some ;-) compiled as shared extensions:
EXTENSION_DIR=/usr/lib${LIBDIRSUFFIX}/php/extensions \
CFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--with-libdir=lib${LIBDIRSUFFIX} \
--localstatedir=/var \
--sysconfdir=/etc \
--datarootdir=/usr/share \
--datadir=/usr/share \
--infodir=/usr/info \
--mandir=/usr/man \
--with-apxs2=/usr/bin/apxs \
--enable-fpm \
--with-fpm-user=apache \
--with-fpm-group=apache \
--enable-maintainer-zts \
--enable-pcntl \
--enable-mbregex \
--enable-tokenizer=shared \
--with-config-file-scan-dir=/etc/php \
--with-config-file-path=/etc/httpd \
--enable-mod_charset \
--with-layout=PHP \
--disable-sigchild \
--enable-xml \
--with-libxml-dir=/usr \
--enable-simplexml \
--enable-xmlreader=shared \
--enable-dom=shared \
--enable-filter \
--disable-debug \
--with-openssl=shared \
--with-pcre-regex=/usr \
--with-zlib=shared,/usr \
--enable-bcmath=shared \
--with-bz2=shared,/usr \
--enable-calendar=shared \
--enable-ctype=shared \
--with-curl=shared \
--with-curlwrappers \
--with-mcrypt=/usr \
--enable-dba=shared \
--with-gdbm=/usr \
--with-db4=/usr \
--enable-exif=shared \
--enable-ftp=shared \
--with-gd=shared \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-zlib-dir=/usr \
--with-xpm-dir=/usr \
--with-freetype-dir=/usr \
--with-t1lib=/usr \
--enable-gd-native-ttf \
--with-gettext=shared,/usr \
--with-gmp=shared,/usr \
--with-iconv=shared \
--with-imap-ssl=/usr \
--with-imap=$IMAPLIBDIR \
--with-ldap=shared \
--enable-mbstring=shared \
--enable-hash \
--with-mysql=shared,mysqlnd \
--with-mysqli=shared,mysqlnd \
--with-mysql-sock=/var/run/mysql/mysql.sock \
--enable-pdo=shared \
--with-pdo-mysql=shared,mysqlnd \
--with-pdo-sqlite=shared,/usr \
--with-pspell=shared,/usr \
--with-enchant=shared,/usr \
--enable-shmop=shared \
--with-snmp=shared,/usr \
--enable-soap=shared \
--enable-sockets \
--with-sqlite3=shared \
--with-regex=php \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx=shared \
--with-xsl=shared,/usr \
--enable-zip=shared \
--with-tsrm-pthreads \
--enable-intl=shared \
--enable-shared=yes \
--enable-static=no \
--with-gnu-ld \
--with-pic \
--build=$ARCH-slackware-linux
# I am told this option is worse than nothing. :-)
# --enable-safe-mode
#
# I would recommend *against* and will take no responbility for turning on
# "safe" mode.
make $NUMJOBS || make || exit 1
make install INSTALL_ROOT=$PKG || exit 1
mkdir -p $PKG/etc/{rc.d,php-fpm}
cp sapi/fpm/init.d.php-fpm $PKG/etc/rc.d/rc.php-fpm.new
chmod 644 $PKG/etc/rc.d/rc.php-fpm.new
# PHP (used to) install Pear with some strange permissions.
chmod 755 $PKG/usr/bin/pear
# PHP sometimes puts junk in the root directory:
( cd $PKG
rm -rf .channels .depdb .depdblock .filemap .lock .registry
)
# We do not package static extension libraries:
rm -f $PKG/usr/lib${LIBDIRSUFFIX}/php/extensions/*.a
# Fix $PKG/usr/lib/php perms:
( cd $PKG/usr/lib${LIBDIRSUFFIX}/php
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
)
mkdir -p $PKG/usr/doc/php-$VERSION
cp -a \
CODING_STANDARDS CREDITS EXTENSIONS INSTALL LICENSE NEWS README* TODO* UPGRADING* \
sapi/cgi/README.FastCGI \
$PKG/usr/doc/php-$VERSION
chown -R root:root $PKG/usr/doc/php-$VERSION
chmod 644 $PKG/usr/doc/php-$VERSION/UPGRADING*
mkdir -p $PKG/etc/httpd
cp -a php.ini-development php.ini-production $PKG/etc/httpd
cat $CWD/mod_php.conf.example | sed -e "s#lib/httpd#lib${LIBDIRSUFFIX}/httpd#" \
> $PKG/etc/httpd/mod_php.conf.example
chmod 644 $PKG/etc/httpd/*
chown root:root $PKG/etc/httpd/*
# This can go now.
rm -f $PKG/etc/httpd/httpd*
# Session directory for PHP:
mkdir -p $PKG/var/lib/php
chmod 770 $PKG/var/lib/php
chown root:apache $PKG/var/lib/php
# Strip ELF objects.
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
gzip -9 $PKG/usr/man/man?/*.?
mkdir -p $PKG/install
zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh
cat $CWD/slack-desc > $PKG/install/slack-desc
#if [ -d "$IMAPLIBDIR" ]; then
# ( cd $IMAPLIBDIR && rm -rf * )
# rmdir $IMAPLIBDIR
#fi
cd $PKG
/sbin/makepkg -l y -c n $TMP/php-$VERSION-$ARCH-$BUILD.txz

View file

@ -0,0 +1,58 @@
--- ./php.ini-development.orig 2012-07-18 01:19:16.000000000 -0500
+++ ./php.ini-development 2012-08-08 20:06:33.512546116 -0500
@@ -859,6 +859,46 @@
; If you only provide the name of the extension, PHP will look for it in its
; default extension directory.
;
+
+; These are the extensions that are available for use on this PHP build.
+; If you do NOT need any of these extensions, you should comment them out.
+; That will probably increase both your security and performance.
+
+extension=bcmath.so
+extension=bz2.so
+extension=calendar.so
+extension=ctype.so
+extension=curl.so
+extension=dba.so
+extension=dom.so
+extension=enchant.so
+extension=exif.so
+extension=ftp.so
+extension=gd.so
+extension=gettext.so
+extension=gmp.so
+extension=iconv.so
+extension=intl.so
+extension=ldap.so
+extension=mbstring.so
+extension=mysql.so
+extension=mysqli.so
+extension=openssl.so
+extension=pdo.so
+extension=pdo_mysql.so
+extension=pdo_sqlite.so
+extension=pspell.so
+extension=shmop.so
+extension=snmp.so
+extension=soap.so
+extension=sqlite3.so
+extension=tokenizer.so
+extension=wddx.so
+extension=xmlreader.so
+extension=xsl.so
+extension=zip.so
+extension=zlib.so
+
; Windows Extensions
; Note that ODBC support is built in, so no dll is needed for it.
; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
@@ -1391,7 +1431,7 @@
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
; http://php.net/session.save-path
-;session.save_path = "/tmp"
+session.save_path = "/var/lib/php"
; Whether to use cookies.
; http://php.net/session.use-cookies

View file

@ -0,0 +1,19 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
php: php (HTML-embedded scripting language)
php:
php: PHP is an HTML-embedded scripting language. It shares syntax
php: characteristics with C, Java, and Perl. The primary objective behind
php: this language is to make a fast and easy-to-use scripting language
php: for dynamic web sites.
php:
php: More information can be found online at http://www.php.net/
php:
php:
php:

View file

@ -0,0 +1,11 @@
MPlayer: MPlayer (Linux movie player)
MPlayer:
MPlayer: MPlayer is a movie player for Linux. It plays most MPEG, VOB, AVI,
MPlayer: Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, FLI, RM, NuppelVideo,
MPlayer: YUV4MPEG, FILM, RoQ, PVA files, supported by many native, XAnim,
MPlayer: and Win32 DLL codecs. You can watch VideoCD, SVCD, DVD, 3ivx,
MPlayer: DivX 3/4/5 and even WMV movies, too (without the avifile library).
MPlayer: MPlayer supports 10 types of subtitles formats: VobSub,
MPlayer: MicroDVD, SubRip, SubViewer, Sami, VPlayer, RT, SSA, AQTitle, MPsub.
MPlayer:
MPlayer: Homepage for MPLayer is http://www.mplayerhq.hu/

View file

@ -0,0 +1,11 @@
apr: apr (Apache Portable Runtime)
apr:
apr: The mission of the Apache Portable Runtime (APR) is to provide a
apr: free library of C data structures and routines, forming a system
apr: portability layer to as many operating systems as possible.
apr:
apr:
apr:
apr:
apr:
apr:

View file

@ -0,0 +1,11 @@
apr-util: apr-util (Apache Portable Runtime utilities)
apr-util:
apr-util: The mission of the Apache Portable Runtime (APR) is to provide a
apr-util: free library of C data structures and routines, forming a system
apr-util: portability layer to as many operating systems as possible.
apr-util:
apr-util: This package contains additional utility interfaces for APR;
apr-util: including support for XML, LDAP, database interfaces, URI parsing,
apr-util: and more.
apr-util:
apr-util:

View file

@ -0,0 +1,11 @@
bash: bash (sh-compatible shell)
bash:
bash: The GNU Bourne-Again SHell. Bash is a sh-compatible command
bash: interpreter that executes commands read from the standard input or
bash: from a file. Bash also incorporates useful features from the Korn
bash: and C shells (ksh and csh). Bash is ultimately intended to be a
bash: conformant implementation of the IEEE Posix Shell and Tools
bash: specification (IEEE Working Group 1003.2).
bash:
bash: Bash must be present for the system to boot properly.
bash:

View file

@ -0,0 +1,11 @@
bind: bind (DNS server and utilities)
bind:
bind: The named daemon and support utilities such as dig, host, and
bind: nslookup. Sample configuration files for running a simple caching
bind: nameserver are included. Documentation for advanced name server
bind: setup can be found in /usr/doc/bind-9.x.x/.
bind:
bind:
bind:
bind:
bind:

View file

@ -0,0 +1,11 @@
blueman: Blueman (Graphical Bluetooth Manager)
blueman:
blueman: Blueman is a GTK+ Bluetooth Manager for tasks such as:
blueman:
blueman: - Connecting to 3G/EDGE/GPRS via DUN profile.
blueman: - Connecting to/Creating bluetooth networks
blueman: - Connecting to input and audio devices
blueman: - Sending/Receiving/Browsing files via OBEX
blueman: - Pairing
blueman:
blueman: Homepage: http://blueman-project.org

View file

@ -0,0 +1,11 @@
bluez: bluez (Bluetooth libraries and utilities)
bluez:
bluez: Bluez is the Bluetooth stack for Linux, allowing Bluetooth adaptors
bluez: and devices to be used with Linux. This package contains the Bluez
bluez: libraries, utilities, and other support files.
bluez:
bluez: For more info, visit: http://www.bluez.org
bluez:
bluez:
bluez:
bluez:

View file

@ -0,0 +1,11 @@
ca-certificates: ca-certificates (PEM Files of CA Certificates)
ca-certificates:
ca-certificates: This package includes PEM files of CA certificates to allow SSL-based
ca-certificates: applications to check for the authenticity of SSL connections.
ca-certificates:
ca-certificates: Homepage: http://packages.qa.debian.org/c/ca-certificates.html
ca-certificates:
ca-certificates:
ca-certificates:
ca-certificates:
ca-certificates:

View file

@ -0,0 +1,11 @@
cups: CUPS (Common UNIX Printing System)
cups:
cups: The Common UNIX Printing System provides a portable printing layer for
cups: UNIX(R)-like operating systems. It has been developed by Easy Software
cups: Products to promote a standard printing solution for all UNIX vendors
cups: and users. CUPS uses the Internet Printing Protocol ("IPP") as the
cups: basis for managing print jobs and queues. The CUPS package includes
cups: System V and Berkeley command-line interfaces, a PostScript RIP
cups: package for supporting non-PostScript printer drivers, and tools for
cups: creating additional printer drivers and other CUPS services.
cups:

View file

@ -0,0 +1,11 @@
curl: curl (command line URL data transfer tool)
curl:
curl: Curl is a command line tool for transferring data specified with URL
curl: syntax. The command is designed to work without user interaction or
curl: any kind of interactivity. Curl offers a busload of useful tricks
curl: like proxy support, user authentication, ftp upload, HTTP post, SSL
curl: (https:) connections, cookies, file transfer resume and more.
curl:
curl: libcurl is a library that Curl uses to do its job. It is readily
curl: available to be used by your software, too.
curl:

View file

@ -0,0 +1,11 @@
dbus: dbus (D-Bus message bus system)
dbus:
dbus: D-Bus supplies both a system daemon (for events such as "new hardware
dbus: device added" or "printer queue changed") and a per user login
dbus: session daemon (for general IPC needs among user applications).
dbus: Also, the message bus is built on top of a general one-to-one message
dbus: passing framework, which can be used by any two apps to communicate
dbus: directly (without going through the message bus daemon).
dbus:
dbus:
dbus:

View file

@ -0,0 +1,11 @@
dhcp: dhcp (DHCP server and client utilities)
dhcp:
dhcp: This package provides the ISC's DHCP utilities, including both a
dhcp: server and client. The DHCP protocol allows a host to contact a
dhcp: central server which maintains a list of IP addresses which may be
dhcp: assigned on one or more subnets. A DHCP client may request an
dhcp: address from this pool, and then use it temporarily for communication
dhcp: on the network. The DHCP protocol also provides a mechanism whereby
dhcp: a client can learn important details about the network to which it is
dhcp: attached, such as the location of a default router or name server.
dhcp:

View file

@ -0,0 +1,11 @@
dhcpcd: dhcpcd (DHCP client daemon)
dhcpcd:
dhcpcd: The DHCP client program dhcpcd is used to connect to a network by
dhcpcd: contacting a DHCP server. dhcpcd gets an IP address and other
dhcpcd: information from a corresponding DHCP server, configures the network
dhcpcd: interface automatically, and tries to renew the lease time according
dhcpcd: to RFC2131 or RFC1541 depending on the command line option.
dhcpcd:
dhcpcd:
dhcpcd:
dhcpcd:

View file

@ -0,0 +1,11 @@
dnsmasq: dnsmasq (small DNS and DHCP server)
dnsmasq:
dnsmasq: Dnsmasq is a lightweight, easy to configure DNS forwarder and DHCP
dnsmasq: server. It is designed to provide DNS (and optionally DHCP) to a
dnsmasq: small network, and can serve the names of local machines which are not
dnsmasq: in the global DNS.
dnsmasq:
dnsmasq: Dnsmasq was written by Simon Kelley.
dnsmasq:
dnsmasq: Homepage: http://www.thekelleys.org.uk/dnsmasq/
dnsmasq:

View file

@ -0,0 +1,11 @@
emacs: emacs (GNU Emacs)
emacs:
emacs: Emacs is the extensible, customizable, self-documenting real-time
emacs: display editor. If this seems to be a bit of a mouthful, an
emacs: easier explanation is that Emacs is a text editor and more. At
emacs: its core is an interpreter for Emacs Lisp, a dialect of the Lisp
emacs: programming language with extensions to support text editing.
emacs: This version supports X.
emacs:
emacs: http://www.gnu.org/software/emacs/
emacs:

View file

@ -0,0 +1,11 @@
expat: expat (C library for parsing XML)
expat:
expat: This is Expat, a C library for parsing XML, written by James Clark.
expat: Expat is a stream-oriented XML parser used by Python, GNOME, Xft2,
expat: and other things.
expat:
expat:
expat:
expat:
expat:
expat:

View file

@ -0,0 +1,11 @@
flac: flac (Free Lossless Audio Codec)
flac:
flac: FLAC stands for Free Lossless Audio Codec. Grossly oversimplified,
flac: FLAC is similar to MP3, but lossless. "Free" means that the
flac: specification of the stream format is in the public domain, and that
flac: neither the FLAC format nor any of the implemented encoding/decoding
flac: methods are covered by any patent. It also means that the sources for
flac: libFLAC and libFLAC++ are available under the LGPL and the sources for
flac: flac, metaflac, and the plugins are available under the GPL.
flac:
flac: FLAC was developed by Josh Coalson.

View file

@ -0,0 +1,11 @@
freetype: freetype (A Free, High-Quality, and Portable Font Engine)
freetype:
freetype: The FreeType engine is a free and portable TrueType font rendering
freetype: engine. It has been developed to provide TrueType support to a
freetype: great variety of platforms and environments.
freetype:
freetype:
freetype:
freetype:
freetype:
freetype:

View file

@ -0,0 +1,11 @@
gdk-pixbuf2: gdk-pixbuf2 (image library used by GTK+ v2)
gdk-pixbuf2:
gdk-pixbuf2: The gdk-pixbuf library provides a number of features:
gdk-pixbuf2: - GdkPixbuf structure for representing images.
gdk-pixbuf2: - Image loading facilities, both synchronous and progressive.
gdk-pixbuf2: - Rendering of a GdkPixbuf into various formats:
gdk-pixbuf2: drawables (windows, pixmaps), GdkRGB buffers.
gdk-pixbuf2: - Fast scaling and compositing of pixbufs.
gdk-pixbuf2: - Simple animation loading (ie. animated gifs).
gdk-pixbuf2:
gdk-pixbuf2:

View file

@ -0,0 +1,11 @@
gegl: GEGL (Generic Graphics Library)
gegl:
gegl: GEGL (Generic Graphics Library) is a graph based image processing
gegl: framework.
gegl:
gegl: GEGL provides infrastructure to do demand based cached non destructive
gegl: image editing on larger than RAM buffers. Through babl it provides
gegl: support for a wide range of color models and pixel storage formats for
gegl: input and output.
gegl:
gegl:

View file

@ -0,0 +1,11 @@
gimp: gimp (The GNU Image Manipulation Program)
gimp:
gimp: The GIMP is a powerful tool for the preparation and manipulation of
gimp: digital images. The GIMP provides the user with a wide variety of
gimp: image manipulation, painting, processing, and rendering tools. The
gimp: GIMP's open design and extensible architecture make for a very
gimp: powerful end product for photo and image retouching, web graphics
gimp: design, or digital illustration.
gimp:
gimp:
gimp:

View file

@ -0,0 +1,11 @@
git: git (the stupid content tracker)
git:
git: Git is a fast, scalable, distributed revision control system with an
git: unusually rich command set that provides both high-level operations
git: and full access to internals.
git:
git: "git" can mean anything, depending on your mood.
git:
git: Git was originally written by Linus Torvalds and is currently
git: maintained by Junio C. Hamano.
git:

View file

@ -0,0 +1,11 @@
glibc: glibc (GNU C libraries)
glibc:
glibc: This package contains the GNU C libraries and header files. The GNU
glibc: C library was written originally by Roland McGrath, and is currently
glibc: maintained by Ulrich Drepper. Some parts of the library were
glibc: contributed or worked on by other people.
glibc:
glibc: You'll need this package to compile programs.
glibc:
glibc:
glibc:

View file

@ -0,0 +1,11 @@
glibc-i18n: glibc-i18n (locale files from glibc)
glibc-i18n:
glibc-i18n: These files go in /usr/lib/locale and /usr/share/i18n/ to provide
glibc-i18n: internationalization support. You'll need this package unless you
glibc-i18n: will be using US English only.
glibc-i18n:
glibc-i18n:
glibc-i18n:
glibc-i18n:
glibc-i18n:
glibc-i18n:

View file

@ -0,0 +1,11 @@
glibc-profile: glibc-profile (GNU C libraries with profiling support)
glibc-profile:
glibc-profile: This package contains static versions of the GNU C libraries with
glibc-profile: support for profiling binaries using gprof. gprof calculates how
glibc-profile: much time a program spends in each routine which can suggest where
glibc-profile: to concentrate efforts to improve performance.
glibc-profile:
glibc-profile: See the gprof man page for more details.
glibc-profile:
glibc-profile:
glibc-profile:

View file

@ -0,0 +1,11 @@
glibc-solibs: glibc-solibs (shared GNU C libraries)
glibc-solibs:
glibc-solibs: This package contains the shared libraries, binaries, and support
glibc-solibs: files required to run most Linux applications linked with glibc.
glibc-solibs:
glibc-solibs:
glibc-solibs:
glibc-solibs:
glibc-solibs:
glibc-solibs:
glibc-solibs:

View file

@ -0,0 +1,11 @@
glibc-zoneinfo: glibc-zoneinfo (timezone database)
glibc-zoneinfo:
glibc-zoneinfo: This package allows you to configure your time zone.
glibc-zoneinfo:
glibc-zoneinfo: This timezone database comes from the tzdata and tzcode packages by
glibc-zoneinfo: Arthur David Olson et.al. The latest version and more information
glibc-zoneinfo: may be found at: http://www.iana.org/time-zones
glibc-zoneinfo:
glibc-zoneinfo: Use the timeconfig utility to set your local time zone.
glibc-zoneinfo:
glibc-zoneinfo:

View file

@ -0,0 +1,11 @@
gnupg: gnupg (The GNU Privacy Guard)
gnupg:
gnupg: GnuPG is GNU's tool for secure communication and data storage. It can
gnupg: be used to encrypt data and to create digital signatures. It includes
gnupg: an advanced key management facility and is compliant with the proposed
gnupg: OpenPGP Internet standard as described in RFC2440.
gnupg:
gnupg:
gnupg:
gnupg:
gnupg:

View file

@ -0,0 +1,11 @@
gnupg2: GnuPG2 (The GNU Privacy Guard version 2.x)
gnupg2:
gnupg2: GnuPG is GNU's tool for secure communication and data storage. It can
gnupg2: be used to encrypt data and to create digital signatures. It includes
gnupg2: an advanced key management facility and is compliant with the proposed
gnupg2: OpenPGP Internet standard as described in RFC2440 and the S/MIME
gnupg2: standard as described by several RFCs.
gnupg2:
gnupg2: GnuPG 2.0 is the stable version of GnuPG integrating support for
gnupg2: OpenPGP and S/MIME. It does not conflict with an installed 1.4.x
gnupg2: OpenPGP-only version.

View file

@ -0,0 +1,11 @@
gnutls: gnutls (GNU TLS library)
gnutls:
gnutls: This is a TLS (Transport Layer Security) 1.0 and SSL (Secure Sockets
gnutls: Layer) 3.0 implementation. In brief, GnuTLS can be described as a
gnutls: library which offers an API to access secure communication protocols.
gnutls: These protocols provide privacy over insecure lines, and were designed
gnutls: to prevent eavesdropping, tampering, or message forgery.
gnutls:
gnutls: Homepage: http://www.gnu.org/software/gnutls/
gnutls:
gnutls:

View file

@ -0,0 +1,11 @@
hplip: hplip (HP print/scan/fax support)
hplip:
hplip: HPLIP is an HP developed solution for printing, scanning, and faxing
hplip: with HP inkjet and laser based printers in Linux. The HPLIP project
hplip: provides printing support for more than 1400 HP printer models,
hplip: including Deskjet, Officejet, Photosmart, PSC (Print Scan Copy),
hplip: Business Inkjet, LaserJet, and LaserJet MFP.
hplip:
hplip: For more information, see: http://hplipopensource.com
hplip:
hplip:

View file

@ -0,0 +1,11 @@
httpd: httpd (The Apache HTTP Server)
httpd:
httpd: Apache is an HTTP server designed as a plug-in replacement for the
httpd: NCSA HTTP server. It fixes numerous bugs in the NCSA server and
httpd: includes many frequently requested new features, and has an API which
httpd: allows it to be extended to meet users' needs more easily.
httpd:
httpd: Apache is the most popular web server in the known universe; over
httpd: half of the servers on the Internet are running Apache or one of
httpd: its variants.
httpd:

View file

@ -0,0 +1,11 @@
imagemagick: imagemagick (a robust collection of image processing tools)
imagemagick:
imagemagick: ImageMagick is a collection of tools for manipulating and displaying
imagemagick: digital images. It can merge images, transform image dimensions,
imagemagick: do screen captures, create animation sequences, and convert between
imagemagick: many different image formats.
imagemagick:
imagemagick: ImageMagick was written by John Cristy of ImageMagick Studio.
imagemagick:
imagemagick: Home page: http://www.imagemagick.org/
imagemagick:

View file

@ -0,0 +1,11 @@
inputproto: inputproto (C prototypes for X Input extension)
inputproto:
inputproto: inputproto is part of X11.
inputproto:
inputproto: For more information about the X.Org Foundation (the providers of the
inputproto: X.Org implementation of the X Window System), see their website:
inputproto:
inputproto: http://www.x.org
inputproto:
inputproto:
inputproto:

View file

@ -0,0 +1,11 @@
iptables: iptables (IP packet filter administration)
iptables:
iptables: iptables is a packet filter administration tool.
iptables:
iptables: Iptables can be used to build internet firewalls based on stateless
iptables: and stateful packet filtering, use NAT and masquerading for sharing
iptables: internet access if you don't have enough public IP addresses, use NAT
iptables: to implement transparent proxies, aid the tc and iproute2 systems
iptables: used to build sophisticated QoS and policy routers, do further packet
iptables: manipulation (mangling) like altering the TOS/DSCP/ECN bits of the IP
iptables: header, and much more. See: http://www.netfilter.org

View file

@ -0,0 +1,11 @@
irssi: irssi (Internet Relay Chat client)
irssi:
irssi: Irssi is an Internet Relay Chat client. Designed to be both secure
irssi: and expandable, irssi is easily customized using modules and scripts.
irssi:
irssi: For more information, visit: http://irssi.org
irssi:
irssi: irssi was written by Timo Sirainen.
irssi:
irssi:
irssi:

View file

@ -0,0 +1,11 @@
jasper: jasper (free implementation of the JPEG-2000 standard)
jasper:
jasper: The JasPer Project is an open-source initiative to provide a free
jasper: software-based reference implementation of the codec specified in the
jasper: JPEG-2000 Part-1 standard (i.e., ISO/IEC 15444-1).jasper:
jasper:
jasper: jasper home: http://www.ece.uvic.ca/~mdadams/jasper/
jasper:
jasper:
jasper:
jasper:

View file

@ -0,0 +1,11 @@
kdelibs: kdelibs (KDE libraries)
kdelibs:
kdelibs: System libraries and other resources required for the KDE Platform.
kdelibs:
kdelibs:
kdelibs:
kdelibs:
kdelibs:
kdelibs:
kdelibs:
kdelibs:

View file

@ -0,0 +1,11 @@
libX11: libX11 (Core X11 protocol client library)
libX11:
libX11: libX11 is part of X11.
libX11:
libX11: For more information about the X.Org Foundation (the providers of the
libX11: X.Org implementation of the X Window System), see their website:
libX11:
libX11: http://www.x.org
libX11:
libX11:
libX11:

View file

@ -0,0 +1,11 @@
libXcursor: libXcursor (X Window System Cursor management library)
libXcursor:
libXcursor: libXcursor is part of X11.
libXcursor:
libXcursor: For more information about the X.Org Foundation (the providers of the
libXcursor: X.Org implementation of the X Window System), see their website:
libXcursor:
libXcursor: http://www.x.org
libXcursor:
libXcursor:
libXcursor:

View file

@ -0,0 +1,11 @@
libXext: libXext (library for common extensions to the X11 protocol)
libXext:
libXext: libXext is part of X11.
libXext:
libXext: For more information about the X.Org Foundation (the providers of the
libXext: X.Org implementation of the X Window System), see their website:
libXext:
libXext: http://www.x.org
libXext:
libXext:
libXext:

View file

@ -0,0 +1,11 @@
libXfixes: libXfixes (client library for the Xfixes extension)
libXfixes:
libXfixes: libXfixes is part of X11.
libXfixes:
libXfixes: For more information about the X.Org Foundation (the providers of the
libXfixes: X.Org implementation of the X Window System), see their website:
libXfixes:
libXfixes: http://www.x.org
libXfixes:
libXfixes:
libXfixes:

View file

@ -0,0 +1,11 @@
libXfont: libXfont (library for legacy X11 font system)
libXfont:
libXfont: libXfont provides the core of the legacy X11 font system, handling the
libXfont: index files (fonts.dir, fonts.alias, fonts.scale), the various font
libXfont: file formats, and rasterizing them. It is used by the X servers, the
libXfont: X Font Server (xfs), and some font utilities (bdftopcf for instance),
libXfont: but should not be used by normal X11 clients. X11 clients access fonts
libXfont: via either the new API's in libXft, or the legacy API's in libX11.
libXfont:
libXfont:
libXfont:

View file

@ -0,0 +1,11 @@
libXi: libXi (library for the X Input Extension)
libXi:
libXi: libXi is part of X11.
libXi:
libXi: For more information about the X.Org Foundation (the providers of the
libXi: X.Org implementation of the X Window System), see their website:
libXi:
libXi: http://www.x.org
libXi:
libXi:
libXi:

View file

@ -0,0 +1,11 @@
libXrandr: libXrandr (X Resize, Rotate and Reflection extension library)
libXrandr:
libXrandr: libXrandr is part of X11.
libXrandr:
libXrandr: For more information about the X.Org Foundation (the providers of the
libXrandr: X.Org implementation of the X Window System), see their website:
libXrandr:
libXrandr: http://www.x.org
libXrandr:
libXrandr:
libXrandr:

View file

@ -0,0 +1,11 @@
libXrender: libXrender (library for the Render Extension to the X11 protocol)
libXrender:
libXrender: libXrender is part of X11.
libXrender:
libXrender: For more information about the X.Org Foundation (the providers of the
libXrender: X.Org implementation of the X Window System), see their website:
libXrender:
libXrender: http://www.x.org
libXrender:
libXrender:
libXrender:

View file

@ -0,0 +1,11 @@
libXtst: libXtst (client library for the XTEST & RECORD extensions)
libXtst:
libXtst: libXtst is part of X11.
libXtst:
libXtst: For more information about the X.Org Foundation (the providers of the
libXtst: X.Org implementation of the X Window System), see their website:
libXtst:
libXtst: http://www.x.org
libXtst:
libXtst:
libXtst:

View file

@ -0,0 +1,11 @@
libXv: libXv (library for the X Video (Xv) extension to the X Window System)
libXv:
libXv: libXv is part of X11.
libXv:
libXv: For more information about the X.Org Foundation (the providers of the
libXv: X.Org implementation of the X Window System), see their website:
libXv:
libXv: http://www.x.org
libXv:
libXv:
libXv:

View file

@ -0,0 +1,11 @@
libXvMC: libXvMC (X.Org X11 libXvMC runtime library)
libXvMC:
libXvMC: libXvMC is part of X11.
libXvMC:
libXvMC: For more information about the X.Org Foundation (the providers of the
libXvMC: X.Org implementation of the X Window System), see their website:
libXvMC:
libXvMC: http://www.x.org
libXvMC:
libXvMC:
libXvMC:

View file

@ -0,0 +1,11 @@
libgcrypt: libgcrypt (General purpose crypto library)
libgcrypt:
libgcrypt: Libgcrypt is a general purpose crypto library based on the code
libgcrypt: used in GnuPG.
libgcrypt:
libgcrypt:
libgcrypt:
libgcrypt:
libgcrypt:
libgcrypt:
libgcrypt:

View file

@ -0,0 +1,11 @@
libgpg-error: libgpg-error (GnuPG Error Definitions Library)
libgpg-error:
libgpg-error: This is a library that defines common error values for all GnuPG
libgpg-error: components. Among these are GPG, GPGSM, GPGME, GPG-Agent,
libgpg-error: libgcrypt, Libksba, DirMngr, Pinentry, SmartCard Daemon, and more.
libgpg-error:
libgpg-error:
libgpg-error:
libgpg-error:
libgpg-error:
libgpg-error:

View file

@ -0,0 +1,11 @@
libidn: libidn (GNU Internationalized Domain Name library)
libidn:
libidn: GNU Libidn is an implementation of the Stringprep, Punycode and IDNA
libidn: specifications defined by the IETF Internationalized Domain Names
libidn: (IDN) working group, used for internationalized domain names.
libidn:
libidn:
libidn:
libidn:
libidn:
libidn:

View file

@ -0,0 +1,11 @@
libiodbc: libiodbc (Independent Open DataBase Connectivity)
libiodbc:
libiodbc: iODBC is the acronym for Independent Open DataBase Connectivity,
libiodbc: an Open Source platform independent implementation of both the ODBC
libiodbc: and X/Open specifications. It allows for developing solutions
libiodbc: that are language, platform and database independent.
libiodbc:
libiodbc:
libiodbc:
libiodbc: Homepage: http://iodbc.org/
libiodbc:

View file

@ -0,0 +1,11 @@
libjpeg: libjpeg (Independent JPEG Group's JPEG software)
libjpeg:
libjpeg: Software to implement JPEG image compression and decompression. JPEG
libjpeg: (pronounced 'jay-peg') is a standardized compression method for
libjpeg: full-color and gray-scale images. JPEG is intended for compressing
libjpeg: 'real-world' scenes; cartoons and other non-realistic images are not
libjpeg: its strong suit. JPEG is lossy, however, on typical images of
libjpeg: real-world scenes, very good compression levels can be obtained with
libjpeg: no visible change, and amazingly high compression levels are possible
libjpeg: if you can tolerate a low-quality image.
libjpeg:

View file

@ -0,0 +1,11 @@
libpcap: libpcap (packet capture library)
libpcap:
libpcap: libpcap is a library for user-level packet capture. libpcap provides
libpcap: a portable framework for low-level network monitoring. Applications
libpcap: include network statistics collection, security monitoring, network
libpcap: debugging, etc. The tcpdump utility uses libpcap.
libpcap:
libpcap: Project homepage: http://www.tcpdump.org
libpcap:
libpcap:
libpcap:

View file

@ -0,0 +1,11 @@
libpng: libpng (Portable Network Graphics library)
libpng:
libpng: PNG (Portable Network Graphics) is an extensible file format for the
libpng: lossless, portable, well-compressed storage of raster images. PNG
libpng: provides a patent-free replacement for GIF and can also replace many
libpng: common uses of TIFF. Indexed-color, grayscale, and truecolor images
libpng: are supported, plus an optional alpha channel. Sample depths range
libpng: from 1 to 16 bits.
libpng:
libpng:
libpng:

View file

@ -0,0 +1,11 @@
libsndfile: libsndfile (C library for reading and writing wav files)
libsndfile:
libsndfile: Libsndfile is a C library for reading and writing files containing
libsndfile: sampled sound (such as MS Windows WAV and Apple/SGI AIFF format).
libsndfile:
libsndfile: Homepage: http://www.mega-nerd.com/libsndfile/
libsndfile:
libsndfile:
libsndfile:
libsndfile:
libsndfile:

View file

@ -0,0 +1,11 @@
libssh: libssh (library implementing ssh protocols)
libssh:
libssh: libssh is a mulitplatform C library implementing the SSHv2 and SSHv1
libssh: protocol on client and server side. With libssh, you can remotely
libssh: execute programs, transfer files, and use a secure and transparent
libssh: tunnel for your remote applications.
libssh:
libssh: Homepage: http://www.libssh.org/
libssh:
libssh:
libssh:

View file

@ -0,0 +1,11 @@
libtasn1: libtasn1 (ASN.1 library)
libtasn1:
libtasn1: Libtasn1 is the GNU ASN.1 library. Abstract Syntax Notation One
libtasn1: (ASN.1) is a standard and flexible notation that describes rules and
libtasn1: structures for representing, encoding, transmitting, and decoding
libtasn1: data in telecommunications and computer networking.
libtasn1:
libtasn1: Libtasn1 was written by Fabio Fiorina.
libtasn1:
libtasn1:
libtasn1:

View file

@ -0,0 +1,11 @@
libtiff: libtiff (a library for reading and writing TIFF files)
libtiff:
libtiff: This package provides support for the Tag Image File Format (TIFF),
libtiff: a widely used format for storing image data. Included is the libtiff
libtiff: library (for reading and writing TIFF files), and a collection of
libtiff: tools for working with TIFF images.
libtiff:
libtiff:
libtiff:
libtiff:
libtiff:

View file

@ -0,0 +1,11 @@
libvorbis: libvorbis (Ogg Vorbis library)
libvorbis:
libvorbis: This library supports the Vorbis General Audio Compression Codec
libvorbis: (commonly known as Ogg Vorbis). Ogg Vorbis is a fully open,
libvorbis: non-proprietary, patent-and-royalty-free, general-purpose compressed
libvorbis: audio format for audio and music at fixed and variable bitrates.
libvorbis:
libvorbis: The libvorbis library requires libao and libogg. You'll find some
libvorbis: basic tools for creating and using Ogg Vorbis files in the
libvorbis: vorbis-tools package.
libvorbis:

View file

@ -0,0 +1,11 @@
libwmf: libwmf (WMF graphics format library)
libwmf:
libwmf: libwmf is a library for interpreting metafile images and either
libwmf: displaying them using X or converting them to standard formats such
libwmf: as PNG, JPEG, PS, EPS and SVG.
libwmf:
libwmf:
libwmf:
libwmf:
libwmf:
libwmf:

View file

@ -0,0 +1,11 @@
libxcb: libxcb (X protocol C-language Binding)
libxcb:
libxcb: The XCB library provides an interface to the X Window System protocol
libxcb: which is fully capable of replacing Xlib. In fact, libX11 makes use
libxcb: of libxcb as much as possible. :-) Porting to XCB has several
libxcb: advantages such as a smaller memory footprint, latency hiding, direct
libxcb: protocol access, and improved thread support.
libxcb:
libxcb:
libxcb:
libxcb:

View file

@ -0,0 +1,11 @@
libxml2: libxml2 (XML parser library)
libxml2:
libxml2: Libxml2 is the XML C parser library and toolkit. XML itself is a
libxml2: metalanguage to design markup languages -- i.e. a text language where
libxml2: structures are added to the content using extra "markup" information
libxml2: enclosed between angle brackets. HTML is the most well-known markup
libxml2: language. Though the library is written in C, a variety of language
libxml2: bindings make it available in other environments.
libxml2:
libxml2:
libxml2:

View file

@ -0,0 +1,11 @@
libxslt: libxslt (XML transformation library)
libxslt:
libxslt: XSLT support for libxml2. (XSLT is a language used for transforming
libxslt: XML documents)
libxslt:
libxslt:
libxslt:
libxslt:
libxslt:
libxslt:
libxslt:

View file

@ -0,0 +1,11 @@
libyaml: libyaml (YAML parser, written in C)
libyaml:
libyaml: YAML Ain't Markup Language. It is a human friendly data serialization
libyaml: standard for all programming languages.
libyaml:
libyaml: Homepage: http://pyyaml.org/wiki/LibYAML
libyaml:
libyaml:
libyaml:
libyaml:
libyaml:

View file

@ -0,0 +1,11 @@
kernel-firmware: kernel-firmware (Firmware for the kernel)
kernel-firmware:
kernel-firmware: These are firmware files for the Linux kernel.
kernel-firmware:
kernel-firmware: You'll need these to use certain hardware drivers with Linux.
kernel-firmware:
kernel-firmware: Upstream site:
kernel-firmware:
kernel-firmware: git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
kernel-firmware:
kernel-firmware:

View file

@ -0,0 +1,11 @@
kernel-generic: kernel-generic (a general purpose SMP Linux kernel)
kernel-generic:
kernel-generic: This is a Linux kernel with built-in support for most disk
kernel-generic: controllers. To use filesystems, or to load support for a SCSI or
kernel-generic: other controller, then you'll need to load one or more kernel
kernel-generic: modules using an initial ramdisk, or initrd. For more information
kernel-generic: about creating an initrd, see the README.initrd file in the /boot
kernel-generic: directory.
kernel-generic:
kernel-generic: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
kernel-generic:

View file

@ -0,0 +1,11 @@
kernel-headers: kernel-headers (Linux kernel include files)
kernel-headers:
kernel-headers: These are the include files from the Linux kernel.
kernel-headers:
kernel-headers: You'll need these to compile most system software for Linux.
kernel-headers:
kernel-headers:
kernel-headers:
kernel-headers:
kernel-headers:
kernel-headers:

View file

@ -0,0 +1,11 @@
kernel-huge: kernel-huge (a fully-loaded SMP Linux kernel)
kernel-huge:
kernel-huge: This is a Linux kernel with built-in support for most disk
kernel-huge: controllers. If you're looking for a more stripped down kernel
kernel-huge: (this one contains everything but the kitchen sink ;-), then install
kernel-huge: the kernel-generic in the /boot directory along with an initrd to
kernel-huge: load support for your boot device and filesystem. For instructions
kernel-huge: on the initrd, see README.initrd in the /boot directory.
kernel-huge:
kernel-huge: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
kernel-huge:

View file

@ -0,0 +1,11 @@
kernel-modules: kernel-modules (Linux kernel modules)
kernel-modules:
kernel-modules: Kernel modules are pieces of code that can be loaded and unloaded into
kernel-modules: the kernel upon demand. They extend the functionality of the kernel
kernel-modules: without the need to reboot the system. These modules provide support
kernel-modules: for hardware such as USB devices, RAID controllers, network
kernel-modules: interfaces, and display devices, or add other additional capabilities
kernel-modules: to the kernel.
kernel-modules:
kernel-modules:
kernel-modules:

View file

@ -0,0 +1,11 @@
kernel-source: kernel-source (Linux kernel source)
kernel-source:
kernel-source: Source code for Linus Torvalds' Linux kernel.
kernel-source:
kernel-source: This is the complete and unmodified source code for the Linux kernel.
kernel-source:
kernel-source:
kernel-source:
kernel-source:
kernel-source:
kernel-source:

View file

@ -0,0 +1,11 @@
llvm: llvm (LLVM compiler toolkit)
llvm:
llvm: Low Level Virtual Machine is a toolkit for the construction of highly
llvm: optimized compilers, optimizers, and runtime environments.
llvm:
llvm: This package also includes the clang frontend for the C family of
llvm: languages: C, C++, Objective-C, and Objective-C++
llvm:
llvm:
llvm: Homepage: http://llvm.org/
llvm:

View file

@ -0,0 +1,11 @@
lm_sensors: lm_sensors (hardware monitoring package)
lm_sensors:
lm_sensors: lm_sensors provides tools for monitoring the temperatures, voltages,
lm_sensors: and fans of Linux systems with hardware monitoring devices. Included
lm_sensors: are text-based tools for sensor reporting, and a library for sensors
lm_sensors: access called libsensors. It also contains tools for sensor hardware
lm_sensors: identification and I2C bus probing.
lm_sensors:
lm_sensors: IMPORTANT NOTE: If you have a Thinkpad, please read the warnings in
lm_sensors: the README.thinkpad file. lm_sensors has been known to cause damage
lm_sensors: to some Thinkpads.

View file

@ -0,0 +1,11 @@
loudmouth: loudmouth (XMPP C programming library)
loudmouth:
loudmouth: Loudmouth is a lightweight and easy-to-use C library for programming
loudmouth: with the Jabber protocol. It is designed to be easy to get started
loudmouth: with, and yet extensible enough to allow you to do anything that the
loudmouth: Jabber protocol allows.
loudmouth:
loudmouth: loudmouth home: https://github.com/mcabber/loudmouth
loudmouth:
loudmouth:
loudmouth:

View file

@ -0,0 +1,11 @@
lynx: Lynx (text mode browser)
lynx:
lynx: Lynx is a distributed hypertext browser with full World Wide Web
lynx: capabilities. Lynx can be used to access information on the World
lynx: Wide Web, or to build information systems intended primarily for local
lynx: access. For example, Lynx has been used to build several Campus Wide
lynx: Information Systems (CWIS).
lynx:
lynx: Lynx's authors include Lou Montulli, Garrett Blythe, Craig Lavender,
lynx: Michael Grobe, and Charles Rezac.
lynx:

View file

@ -0,0 +1,11 @@
mailx: mailx (a simple mail client)
mailx:
mailx: Mailx is derived from Berkeley Mail and is intended provide the
mailx: functionality of the POSIX mailx command with additional support
mailx: for MIME, IMAP, POP3, SMTP, and S/MIME. It provides enhanced
mailx: features for interactive use, such as caching and disconnected
mailx: operation for IMAP, message threading, scoring, and filtering.
mailx: It is also usable as a mail batch language, both for sending
mailx: and receiving mail.
mailx:
mailx: The maintainer and primary developer of mailx is Gunnar Ritter.

View file

@ -0,0 +1,11 @@
make: make (GNU make utility to maintain groups of programs)
make:
make: This is the GNU implementation of make, which was written by Richard
make: Stallman and Roland McGrath. The purpose of the make utility is to
make: determine automatically which pieces of a large program need to be
make: recompiled, and issue the commands to recompile them.
make:
make: This is needed to compile just about any major C program, including
make: the Linux kernel.
make:
make:

View file

@ -0,0 +1,11 @@
mcabber: mcabber (Jabber console client)
mcabber:
mcabber: mcabber is a small Jabber console client for Linux, maintained by
mcabber: Mikael Berthe. Mcabber includes features such as SSL support,
mcabber: multi-user chat (MUC), history logging, commands completion, and
mcabber: external actions triggers.
mcabber:
mcabber: mcabber project home is: http://www.lilotux.net/~mikael/mcabber/
mcabber:
mcabber:
mcabber:

View file

@ -0,0 +1,11 @@
mercurial: mercurial (a distributed source management system)
mercurial:
mercurial: Mercurial is a cross-platform, distributed source management tool for
mercurial: software developers. It is written in Python, with a binary diff
mercurial: implementation written in C. Its major features include high-
mercurial: performance; serverless, fully distributed collaborative development;
mercurial: robust handling of both plain text and binary files; advanced
mercurial: branching and merging capabilities; and full source code available
mercurial: under the terms of the LGPL.
mercurial:
mercurial: Mercurial was written by Matt Mackall and other contributors.

View file

@ -0,0 +1,11 @@
minicom: minicom (communications package)
minicom:
minicom: Minicom - a full featured menu-driven communications package similar
minicom: to the DOS program 'Telix'. Also includes sz/rz - utilities used to
minicom: upload and download files using the Zmodem protocol.
minicom:
minicom: Homepage: http://alioth.debian.org/projects/minicom
minicom:
minicom:
minicom:
minicom:

View file

@ -0,0 +1,11 @@
mkinitrd: mkinitrd (make an initial ramdisk)
mkinitrd:
mkinitrd: mkinitrd is a script to create an initial ramdisk that is loaded at
mkinitrd: the same time as the kernel. The initial ramdisk may be responsible
mkinitrd: for loading kernel modules (such a filesystem or SCSI controller
mkinitrd: module) that are needed to mount the root filesystem.
mkinitrd:
mkinitrd: The "initrd" is implemented as an initramfs. See the kernel
mkinitrd: documentation for more information on this, if you are interested.
mkinitrd:
mkinitrd:

View file

@ -0,0 +1,11 @@
mozilla-firefox: mozilla-firefox (Mozilla Firefox Web browser)
mozilla-firefox:
mozilla-firefox: This project is a redesign of the Mozilla browser component written
mozilla-firefox: using the XUL user interface language. Firefox empowers you to
mozilla-firefox: browse faster, more safely and more efficiently than with any other
mozilla-firefox: browser.
mozilla-firefox:
mozilla-firefox: Visit the Mozilla Firefox project online:
mozilla-firefox: http://www.mozilla.org/projects/firefox/
mozilla-firefox:
mozilla-firefox:

View file

@ -0,0 +1,11 @@
mozilla-nss: mozilla-nss (Network Security Services)
mozilla-nss:
mozilla-nss: Network Security Services (NSS) is a set of libraries designed to
mozilla-nss: support cross-platform development of security-enabled client and
mozilla-nss: server applications. Applications built with NSS can support
mozilla-nss: SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME,
mozilla-nss: X.509 v3 certificates, and other security standards.
mozilla-nss:
mozilla-nss:
mozilla-nss: Read http://www.mozilla.org/projects/security/pki/nss/overview.html
mozilla-nss:

View file

@ -0,0 +1,11 @@
mozilla-thunderbird: mozilla-thunderbird (Mozilla Thunderbird mail application)
mozilla-thunderbird:
mozilla-thunderbird: Mozilla Thunderbird is a redesign of the Mozilla mail component
mozilla-thunderbird: written using the XUL user interface language. Thunderbird makes
mozilla-thunderbird: emailing safer, faster, and easier than ever before with the
mozilla-thunderbird: industry's best implementations of features such as intelligent spam
mozilla-thunderbird: filters, built-in RSS reader, quick search, and much more.
mozilla-thunderbird:
mozilla-thunderbird: Visit the Mozilla Thunderbird project online:
mozilla-thunderbird: http://www.mozilla.org/projects/thunderbird/
mozilla-thunderbird:

View file

@ -0,0 +1,11 @@
mutt: Mutt (the Mutt mail user agent)
mutt:
mutt: Mutt is a small but very powerful text-based MIME mail client. Mutt
mutt: is highly configurable, and is well suited to the mail power user with
mutt: advanced features like key bindings, keyboard macros, mail threading,
mutt: regular expression searches and a powerful pattern matching language
mutt: for selecting groups of messages.
mutt:
mutt:
mutt:
mutt:

View file

@ -0,0 +1,11 @@
mysql: mysql (SQL-based relational database server)
mysql:
mysql: MySQL is a fast, multi-threaded, multi-user, and robust SQL
mysql: (Structured Query Language) database server. It comes with a nice API
mysql: which makes it easy to integrate into other applications.
mysql:
mysql: The home page for MySQL is http://www.mysql.com/
mysql:
mysql:
mysql:
mysql:

View file

@ -0,0 +1,11 @@
nettle: Nettle (small cryptographic library)
nettle:
nettle: Nettle is a cryptographic library that is designed to fit easily in
nettle: more or less any context: In crypto toolkits for object-oriented
nettle: languages (C++, Python, Pike, ...), in applications like LSH or
nettle: GNUPG, or even in kernel space.
nettle:
nettle: Homepage: http://www.lysator.liu.se/~nisse/nettle/
nettle:
nettle:
nettle:

View file

@ -0,0 +1,11 @@
ntp: ntp (Network Time Protocol daemon)
ntp:
ntp: The Network Time Protocol (NTP) is used to synchronize the time of a
ntp: computer client or server to another server or reference time source,
ntp: such as a radio or satellite receiver or modem. It provides client
ntp: accuracies typically within a millisecond on LANs and up to a few tens
ntp: of milliseconds on WANs relative to a primary server synchronized to
ntp: Coordinated Universal Time (UTC) via a Global Positioning Service
ntp: (GPS) receiver, for example.
ntp:
ntp:

Some files were not shown because too many files have changed in this diff Show more