[arch-dev-public] License cleanup
Hey guys, You may have noticed I added license information to a handful (~27ish) packages in [extra] - this email is just to keep you informed as to what I'm doing. Right now, I'm just adding license fields where I can. For many of them, I'm simply searching Gentoo's package search and adding the licenses that come up there. If the package in question isn't in Gentoo's tree, I've been looking at the website and downloading sources. For custom licenses, I'm even adding the command at the end of the build() function to install the license to the proper directory. What I'm NOT doing: . Rebuilding any of these packages - I doubt users would appreciate needing to redownload their whole systems to get updated license information only. . Updating any of these packages to newest version - I've already come across a couple that are definitively out of date, one whose sources I couldn't even download to add the proper license-installation instruction into the build() method. I'm not updating these - the point of what I'm doing is to add licenses, not make our entire repo uptodate. Maybe that'll come later. ;) In any case, I think I'm done for tonight; I'm feeling pretty tired. If anyone wants to join me in this crusade, check out my thread entitled "Useful Scripts", grab the script that checks for bad licenses, and give it a run in your cvs dir for extra or unstable or community (making sure to run cvs update first!) - that'll give you a niiiice long list of packages that need tending to. -- Travis
Travis Willard wrote:
Hey guys,
You may have noticed I added license information to a handful (~27ish) packages in [extra] - this email is just to keep you informed as to what I'm doing.
Right now, I'm just adding license fields where I can. For many of them, I'm simply searching Gentoo's package search and adding the licenses that come up there. If the package in question isn't in Gentoo's tree, I've been looking at the website and downloading sources. For custom licenses, I'm even adding the command at the end of the build() function to install the license to the proper directory.
What I'm NOT doing: . Rebuilding any of these packages - I doubt users would appreciate needing to redownload their whole systems to get updated license information only. . Updating any of these packages to newest version - I've already come across a couple that are definitively out of date, one whose sources I couldn't even download to add the proper license-installation instruction into the build() method. I'm not updating these - the point of what I'm doing is to add licenses, not make our entire repo uptodate. Maybe that'll come later. ;)
In any case, I think I'm done for tonight; I'm feeling pretty tired. If anyone wants to join me in this crusade, check out my thread entitled "Useful Scripts", grab the script that checks for bad licenses, and give it a run in your cvs dir for extra or unstable or community (making sure to run cvs update first!) - that'll give you a niiiice long list of packages that need tending to.
-- Travis
_______________________________________________ arch-dev-public mailing list arch-dev-public@archlinux.org http://archlinux.org/mailman/listinfo/arch-dev-public
Attached is a patch for each repo, they mainly contain - typo fixes - Artistic => PerlArtistic - zlib => custom:zlib - license="..." => license=(...) (aesthetic, but the license field should be a bash array) The patches can be applied with `patch -Np1` (-Np2 for repo-current.patch) from /var/abs. Andrew diff -Naur old/unstable/lib/libflashsupport/PKGBUILD new/unstable/lib/libflashsupport/PKGBUILD --- old/unstable/lib/libflashsupport/PKGBUILD 2007-03-19 23:18:15.000000000 +0000 +++ new/unstable/lib/libflashsupport/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Macromedia flash plugin support lib (OSS SSL)" url="http://www.macromedia.com/software/flashplayer/" -license="custom" +license=('custom') arch=('i686') depends=('flashplugin' 'icu' 'openssl') source=(http://www.kaourantin.net/flashplayer/flashsupport.c) diff -Naur old/unstable/modules/at76c503a-cvs/PKGBUILD new/unstable/modules/at76c503a-cvs/PKGBUILD --- old/unstable/modules/at76c503a-cvs/PKGBUILD 2006-12-23 02:45:35.000000000 +0000 +++ new/unstable/modules/at76c503a-cvs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Another driver for the Atmel AT76C503A based USB WLAN adapters from latest CVS version." url="http://developer.berlios.de/projects/at76c503a" -license="GPL" +license=('GPL') depends=('wireless_tools' 'kernel26' 'at76c503a-fw-cvs') provides=('at76c503a') conflicts=('at76c503a') diff -Naur old/unstable/modules/at76c503a-cvs-ck/PKGBUILD new/unstable/modules/at76c503a-cvs-ck/PKGBUILD --- old/unstable/modules/at76c503a-cvs-ck/PKGBUILD 2006-12-23 02:50:24.000000000 +0000 +++ new/unstable/modules/at76c503a-cvs-ck/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Another driver for the Atmel AT76C503A based USB WLAN adapters from latest CVS version." url="http://developer.berlios.de/projects/at76c503a" -license="GPL" +license=('GPL') depends=('wireless_tools' 'kernel26ck' 'at76c503a-fw-cvs') provides=('at76c503a-ck') conflicts=('at76c503a-ck') diff -Naur old/unstable/modules/at76c503a-cvs-suspend2/PKGBUILD new/unstable/modules/at76c503a-cvs-suspend2/PKGBUILD --- old/unstable/modules/at76c503a-cvs-suspend2/PKGBUILD 2007-05-08 23:24:56.000000000 +0100 +++ new/unstable/modules/at76c503a-cvs-suspend2/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Another driver for the Atmel AT76C503A based USB WLAN adapters from latest CVS version." url="http://developer.berlios.de/projects/at76c503a" -license="GPL" +license=('GPL') depends=('wireless_tools' 'kernel26suspend2' 'at76c503a-fw-cvs') provides=('at76c503a-suspend2') conflicts=('at76c503a-suspend2') diff -Naur old/unstable/modules/at76c503a-fw-cvs/PKGBUILD new/unstable/modules/at76c503a-fw-cvs/PKGBUILD --- old/unstable/modules/at76c503a-fw-cvs/PKGBUILD 2006-12-23 02:11:57.000000000 +0000 +++ new/unstable/modules/at76c503a-fw-cvs/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Another driver for the Atmel AT76C503A based USB WLAN adapters from latest CVS version." url="http://developer.berlios.de/projects/at76c503a" -license="custom" +license=('custom') depends=('wireless_tools' 'kernel26') provides=('at76c503a-fw') conflicts=('at76c503a-fw') diff -Naur old/unstable/multimedia/mplayer-svn/PKGBUILD new/unstable/multimedia/mplayer-svn/PKGBUILD --- old/unstable/multimedia/mplayer-svn/PKGBUILD 2007-04-14 09:41:43.000000000 +0100 +++ new/unstable/multimedia/mplayer-svn/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -16,7 +16,7 @@ conflicts=('mplayer') provides=('mplayer') url="http://www.mplayerhq.hu/" -license="GPL" +license=('GPL') _svntrunk=svn://svn.mplayerhq.hu/mplayer/trunk _svnmod=mplayer diff -Naur old/unstable/network/bitlbee-devel/PKGBUILD new/unstable/network/bitlbee-devel/PKGBUILD --- old/unstable/network/bitlbee-devel/PKGBUILD 2007-03-04 07:41:39.000000000 +0000 +++ new/unstable/network/bitlbee-devel/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="An IRC to IM gateway. Supports MSN, ICQ, Jabber, Yahoo!, and AIM" arch=(i686 x86_64) url="http://www.bitlbee.org/" -license="GPL" +license=('GPL') depends=('gnutls>=1.4.0' 'glib2') conflicts=('bitlbee') install=bitlbee.install diff -Naur old/unstable/network/frostwire/PKGBUILD new/unstable/network/frostwire/PKGBUILD --- old/unstable/network/frostwire/PKGBUILD 2007-07-31 01:43:38.000000000 +0100 +++ new/unstable/network/frostwire/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ source=(http://www.peercommons.org/frostwire/4.13.2/frostwire-$pkgver.noarch.tar.gz icons.tar.gz frostwire) url="http://www.frostwire.com" -license="GPL" +license=('GPL') build() { mkdir -p $startdir/pkg/usr/share/frostwire diff -Naur old/unstable/network/ipw3945-mm/PKGBUILD new/unstable/network/ipw3945-mm/PKGBUILD --- old/unstable/network/ipw3945-mm/PKGBUILD 2007-07-31 01:43:38.000000000 +0100 +++ new/unstable/network/ipw3945-mm/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Driver for the Intel PRO/Wireless 3945ABG miniPCI express adapter. For kernel26mm" arch=(i686 x86_64) url="http://ipw3945.sourceforge.net" -license="" +license=() depends=('wireless_tools' 'kernel26mm' 'ipw3945-ucode' 'ipw3945d') install=ipw3945.install source=(http://optusnet.dl.sourceforge.net/sourceforge/ipw3945/ipw3945-$pkgver.tgz) diff -Naur old/unstable/network/linuxdcpp-cvs/PKGBUILD new/unstable/network/linuxdcpp-cvs/PKGBUILD --- old/unstable/network/linuxdcpp-cvs/PKGBUILD 2007-05-28 00:28:11.000000000 +0100 +++ new/unstable/network/linuxdcpp-cvs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Linux dc++ from CVS" url="http://linuxdcpp.berlios.de" -license="GPL" +license=('GPL') arch=('i686') depends=('libglade' 'bzip2' 'gcc') makedepends=('scons' 'cvs') diff -Naur old/unstable/system/reiser4progs/PKGBUILD new/unstable/system/reiser4progs/PKGBUILD --- old/unstable/system/reiser4progs/PKGBUILD 2007-05-10 02:27:18.000000000 +0100 +++ new/unstable/system/reiser4progs/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -8,7 +8,7 @@ url="http://www.namesys.com/v4/v4.html" depends=('e2fsprogs' 'libaal') source=(ftp://ftp.namesys.com/pub/reiser4progs/$pkgname-$pkgver.tar.gz) -license="" +license=() install=reiser4progs.install build() { diff -Naur old/unstable/x11/fglrx-mm/PKGBUILD new/unstable/x11/fglrx-mm/PKGBUILD --- old/unstable/x11/fglrx-mm/PKGBUILD 2007-04-23 04:50:03.000000000 +0100 +++ new/unstable/x11/fglrx-mm/PKGBUILD 2007-08-03 13:52:19.000000000 +0100 @@ -9,7 +9,7 @@ MOBILITY RADEON (M10 and later), RADEON XPRESS IGP and FireGL (Z1 and later) series of graphics accelerators." arch=('i686' 'x86_64') url="http://www.ati.com" -license=('custom:"ATI"') #license provided by ati-fglrx-utils package +license=('custom:ATI') #license provided by ati-fglrx-utils package depends=('fglrx-utils' 'kernel26mm') makedepends=() replaces=('ati-fglrx-mm') diff -Naur old/unstable/x11/fvwm-crystal/PKGBUILD new/unstable/x11/fvwm-crystal/PKGBUILD --- old/unstable/x11/fvwm-crystal/PKGBUILD 2006-06-30 21:41:21.000000000 +0100 +++ new/unstable/x11/fvwm-crystal/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Transparent Themes for fvwm" url="http://fvwm-crystal.org" -license="GPL" +license=('GPL') depends=('fvwm-devel' 'imagemagick' 'python' 'habak' 'trayer') makedepends=() install=fvwm-crystal.install diff -Naur old/community/daemons/abyssws/PKGBUILD new/community/daemons/abyssws/PKGBUILD --- old/community/daemons/abyssws/PKGBUILD 2007-01-16 23:21:13.000000000 +0000 +++ new/community/daemons/abyssws/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Abyss Web Server X1 - a compact full-featured web server" arch=(i686) url="http://www.aprelium.com/abyssws/" -license="custom" +license=('custom') depends=(glibc) backup=(opt/abyssws/abyss.conf etc/conf.d/abyssws) source=(http://www.aprelium.com/data/abwsx1.tgz abyss.conf \ diff -Naur old/community/daemons/anacron/PKGBUILD new/community/daemons/anacron/PKGBUILD --- old/community/daemons/anacron/PKGBUILD 2006-05-27 21:59:57.000000000 +0100 +++ new/community/daemons/anacron/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=8 pkgdesc="A cron-like periodic command scheduler" url="http://sourceforge.net/projects/anacron" -license="GPL" +license=('GPL') depends=('glibc' 'bash') backup=(etc/anacrontab) source=(http://dl.sourceforge.net/sourceforge/anacron/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/daemons/apache13/PKGBUILD new/community/daemons/apache13/PKGBUILD --- old/community/daemons/apache13/PKGBUILD 2006-09-13 12:05:51.000000000 +0100 +++ new/community/daemons/apache13/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="apache web server with mod_ssl $_modsslver" url="http://httpd.apache.org/" -license="GPL" +license=('GPL') depends=(expat openssl db) provides=(apache) diff -Naur old/community/daemons/apcupsd/PKGBUILD new/community/daemons/apcupsd/PKGBUILD --- old/community/daemons/apcupsd/PKGBUILD 2007-06-04 20:52:36.000000000 +0100 +++ new/community/daemons/apcupsd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Apcupsd can be used for power mangement and controlling most of APC's UPS models on Unix and Windows machines." arch=(i686 x86_64) url='http://www.apcupsd.org' -license="GPL" +license=('GPL') depends=('gcc' 'gd') backup=(etc/apcupsd/apcupsd.conf etc/apcupsd/hosts.conf \ etc/apcupsd/multimon.conf) diff -Naur old/community/daemons/cherokee/PKGBUILD new/community/daemons/cherokee/PKGBUILD --- old/community/daemons/cherokee/PKGBUILD 2007-03-12 00:22:31.000000000 +0000 +++ new/community/daemons/cherokee/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A small light-weight HTTP server" arch=('i686' 'x86_64') url="http://www.cherokee-project.com" -license="GPL" +license=('GPL') depends=('pam' 'gnutls' 'pcre') backup=('etc/cherokee/cherokee.conf' 'etc/cherokee/icons.conf' 'etc/cherokee/mime.conf' 'etc/cherokee/advanced.conf' 'etc/cherokee/sites-available/default') install=$pkgname.install diff -Naur old/community/daemons/dellfand/PKGBUILD new/community/daemons/dellfand/PKGBUILD --- old/community/daemons/dellfand/PKGBUILD 2007-05-25 15:29:42.000000000 +0100 +++ new/community/daemons/dellfand/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A a daemon for regulating the fan on certain Dell laptops." url="http://dellfand.dinglisch.net/" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('gcc') install=(dellfand.install) diff -Naur old/community/daemons/dictd/PKGBUILD new/community/daemons/dictd/PKGBUILD --- old/community/daemons/dictd/PKGBUILD 2006-09-14 18:07:26.000000000 +0100 +++ new/community/daemons/dictd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="Online dictionary client and server" url="http://www.dict.org/" -license="GPL" +license=('GPL') depends=('zlib') makedepends=('flex') conflicts=() diff -Naur old/community/daemons/dkfilter/PKGBUILD new/community/daemons/dkfilter/PKGBUILD --- old/community/daemons/dkfilter/PKGBUILD 2007-06-24 17:12:27.000000000 +0100 +++ new/community/daemons/dkfilter/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Domain key filter" arch=(i686) url="http://jason.long.name/dkfilter/" -license="GPL" +license=('GPL') depends=(perl-crypt-openssl-rsa perl-mail-address perl-net-dns perl-net-server perl-mail-domainkeys) option=('!emptydirs') install=dkfilter.install diff -Naur old/community/daemons/ejabberd/PKGBUILD new/community/daemons/ejabberd/PKGBUILD --- old/community/daemons/ejabberd/PKGBUILD 2007-06-15 13:24:51.000000000 +0100 +++ new/community/daemons/ejabberd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An erlang jabber server" arch=(i686 x86_64) url="http://ejabberd.jabber.ru/" -license="GPL" +license=('GPL') depends=('expat' 'openssl' 'zlib' 'erlang') makedepends=() backup=(etc/ejabberd/ejabberd.cfg) diff -Naur old/community/daemons/esekeyd/PKGBUILD new/community/daemons/esekeyd/PKGBUILD --- old/community/daemons/esekeyd/PKGBUILD 2007-01-04 12:02:14.000000000 +0000 +++ new/community/daemons/esekeyd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Multimedia keyboard driver for Linux" url="http://www.burghardt.pl/wiki/software/esekeyd" -license="GPL" +license=('GPL') depends=('glibc') source=(http://freshmeat.net/redir/esekeyd/55170/url_tgz/$pkgname-$pkgver.tar.gz esekeyd.rc esekeyd.confd esekeyd.conf) diff -Naur old/community/daemons/gpsd/PKGBUILD new/community/daemons/gpsd/PKGBUILD --- old/community/daemons/gpsd/PKGBUILD 2007-03-22 21:44:55.000000000 +0000 +++ new/community/daemons/gpsd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686 x86_64) url="http://gpsd.berlios.de" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('lesstif' 'libxaw' 'python>=2.5' 'gcc') source=(http://download2.berlios.de/gpsd/gpsd-$pkgver.tar.gz \ gpsd.confd gpsd \ diff -Naur old/community/daemons/lastfmsubmitd/PKGBUILD new/community/daemons/lastfmsubmitd/PKGBUILD --- old/community/daemons/lastfmsubmitd/PKGBUILD 2007-06-15 13:24:52.000000000 +0100 +++ new/community/daemons/lastfmsubmitd/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="a Last.fm 'plugin' client for MPD, implemented in Python." arch=(i686 x86_64) url="http://www.red-bean.com/~decklin/software/lastfmsubmitd/" -license="MIT" +license=('MIT') depends=('python-mpdclient2' 'mpd') makedepends=('python') backup=( etc/lastfmsubmitd.conf ) diff -Naur old/community/daemons/openntpd/PKGBUILD new/community/daemons/openntpd/PKGBUILD --- old/community/daemons/openntpd/PKGBUILD 2006-11-08 21:10:15.000000000 +0000 +++ new/community/daemons/openntpd/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="Free, easy to use implementation of the Network Time Protocol." url="http://www.openntpd.org/" -license="" +license=() depends=(openssl iputils) backup=(etc/ntpd.conf) source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/daemons/pptpd/PKGBUILD new/community/daemons/pptpd/PKGBUILD --- old/community/daemons/pptpd/PKGBUILD 2007-05-04 10:16:59.000000000 +0100 +++ new/community/daemons/pptpd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Poptop server" arch=(i686 x86_64) url="http://www.poptop.org/" -license="GPL" +license=('GPL') depends=(ppp glibc) backup=(etc/pptpd.conf) source=(http://dl.sourceforge.net/sourceforge/poptop/pptpd-$pkgver.tar.gz \ diff -Naur old/community/daemons/ultimate-ircd/PKGBUILD new/community/daemons/ultimate-ircd/PKGBUILD --- old/community/daemons/ultimate-ircd/PKGBUILD 2007-07-03 13:44:47.000000000 +0100 +++ new/community/daemons/ultimate-ircd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="ultimate irc server" arch=(i686 x86_64) url="http://www.shadow-realm.org/" -license="GPL" +license=('GPL') depends=(glibc) makedepends=(patch) conflicts=(ircd) diff -Naur old/community/daemons/webfs/PKGBUILD new/community/daemons/webfs/PKGBUILD --- old/community/daemons/webfs/PKGBUILD 2006-12-10 12:23:14.000000000 +0000 +++ new/community/daemons/webfs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Simple http server for mostly static content." url="http://linux.bytesex.org/misc/webfs.html" -license="GPL" +license=('GPL') depends=('openssl') backup=(etc/conf.d/webfsd) source=(http://dl.bytesex.org/releases/webfs/webfs-$pkgver.tar.gz diff -Naur old/community/daemons/wildfire/PKGBUILD new/community/daemons/wildfire/PKGBUILD --- old/community/daemons/wildfire/PKGBUILD 2007-03-06 00:17:35.000000000 +0000 +++ new/community/daemons/wildfire/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="An enterprise XMPP server" arch=(i686 x86_64) url="www.igniterealtime.org/" -license="GPL" +license=('GPL') depends=('j2re' 'pam') source=(http://www.igniterealtime.org/builds/${pkgname}/${pkgname}_$_realver.tar.gz wildfire.rcd wildfire.sh) diff -Naur old/community/daemons/wzdftpd/PKGBUILD new/community/daemons/wzdftpd/PKGBUILD --- old/community/daemons/wzdftpd/PKGBUILD 2006-05-31 01:36:31.000000000 +0100 +++ new/community/daemons/wzdftpd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A portable, modular and efficient ftp server" url="http://www.wzdftpd.net" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('avahi' 'gnutls' 'tcl' 'pam') source=(http://dl.sourceforge.net/sourceforge/wzdftpd/wzdftpd-$pkgver.tar.gz \ wzd.cfg.sample wzdftpd) diff -Naur old/community/devel/buildbot/PKGBUILD new/community/devel/buildbot/PKGBUILD --- old/community/devel/buildbot/PKGBUILD 2007-03-14 15:39:09.000000000 +0000 +++ new/community/devel/buildbot/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A system to automate the compile/test cycle required by most software projects" url="http://buildbot.sourceforge.net" -license="GPL" +license=('GPL') depends=('twisted') source=(http://dl.sourceforge.net/sourceforge/buildbot/buildbot-$pkgver.tar.gz) md5sums=('86b7fad95381ce5ce2e9b8c6c56c6109') diff -Naur old/community/devel/cherrypy/PKGBUILD new/community/devel/cherrypy/PKGBUILD --- old/community/devel/cherrypy/PKGBUILD 2007-07-04 12:41:44.000000000 +0100 +++ new/community/devel/cherrypy/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A pythonic, object-oriented web development framework" arch=(i686 x86_64) url="http://www.cherrypy.org" -license="BSD" +license=('BSD') depends=('python') source=(http://download.cherrypy.org/cherrypy/$pkgver/CherryPy-$pkgver.tar.gz \ license) diff -Naur old/community/devel/classpath/PKGBUILD new/community/devel/classpath/PKGBUILD --- old/community/devel/classpath/PKGBUILD 2007-06-24 17:12:27.000000000 +0100 +++ new/community/devel/classpath/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A free replacement for Sun's proprietary core Java class libraries." arch=(i686) url="http://www.gnu.org/software/classpath/" -license="GPL" +license=('GPL') depends=('gtk2>=2.8' 'libxtst') makedepends=('jikes' 'gtk2>=2.8' 'libxtst') source=(ftp://ftp.gnu.org/gnu/classpath/$pkgname-$pkgver.tar.gz) diff -Naur old/community/devel/clearsilver/PKGBUILD new/community/devel/clearsilver/PKGBUILD --- old/community/devel/clearsilver/PKGBUILD 2007-04-16 10:01:51.000000000 +0100 +++ new/community/devel/clearsilver/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="clearsilver is a fast, powerful, and language-neutral HTML template system" url="http://www.clearsilver.net" -license="custom" +license=('custom') depends=('python' 'perl' 'ruby' 'j2re' 'apache') source=(http://www.clearsilver.net/downloads/$pkgname-$pkgver.tar.gz \ clearsilver-0.10.1-python25-fixes.patch) diff -Naur old/community/devel/clewn/PKGBUILD new/community/devel/clewn/PKGBUILD --- old/community/devel/clewn/PKGBUILD 2007-05-07 11:03:47.000000000 +0100 +++ new/community/devel/clewn/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgdesc="gdb support for vim" arch=(i686) url="http://clewn.sourceforge.net" -license="GPL" +license=('GPL') depends=("vim" "gdb") install=$pkgname.install source=("clewn.install" "http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz") diff -Naur old/community/devel/codeblocks/PKGBUILD new/community/devel/codeblocks/PKGBUILD --- old/community/devel/codeblocks/PKGBUILD 2007-05-21 11:08:30.000000000 +0100 +++ new/community/devel/codeblocks/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686) url="http://www.codeblocks.org/" options=(!libtool) -license="GPL" +license=('GPL') depends=('wxgtk>=2.6.3') makedepends=('hd2u>=1.0.0' 'zip') source=(http://dl.sourceforge.net/sourceforge/codeblocks/codeblocks-$pkgver.tgz \ diff -Naur old/community/devel/cxxtest/PKGBUILD new/community/devel/cxxtest/PKGBUILD --- old/community/devel/cxxtest/PKGBUILD 2006-02-28 15:49:13.000000000 +0000 +++ new/community/devel/cxxtest/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="A JUnit/CppUnit/xUnit-like framework for C++." url="http://cxxtest.sourceforge.net" -license="LGPL" +license=('LGPL') depends=('perl' 'gcc') makedepends=() conflicts=() diff -Naur old/community/devel/dejagnu/PKGBUILD new/community/devel/dejagnu/PKGBUILD --- old/community/devel/dejagnu/PKGBUILD 2007-04-10 17:51:31.000000000 +0100 +++ new/community/devel/dejagnu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="GNU testing framework" url="https://www.gnu.org/software/dejagnu/" -license="GPL" +license=('GPL') arch=('i686') depends=() makedepends=() diff -Naur old/community/devel/factor/PKGBUILD new/community/devel/factor/PKGBUILD --- old/community/devel/factor/PKGBUILD 2007-03-01 05:37:01.000000000 +0000 +++ new/community/devel/factor/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Factor is a general purpose, dynamically typed, stack-based programming language." url="http://factorcode.org/" -license="BSD" +license=('BSD') depends=(freetype2 mesa libgl) source=(http://prdownloads.sourceforge.net/factor/Factor-$pkgver.tar.gz $url/images/$pkgver/boot.image.x86) md5sums=('b08933ec226175309ec856144cd39efc' 'b2cd3918e95346df4f72bf4231ef47ad') diff -Naur old/community/devel/fox-legacy/PKGBUILD new/community/devel/fox-legacy/PKGBUILD --- old/community/devel/fox-legacy/PKGBUILD 2006-07-22 03:21:41.000000000 +0100 +++ new/community/devel/fox-legacy/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Free Objects for X: GUI Toolkit for C++ (version 1.4.X)" url="http://www.fox-toolkit.org/" -license="LGPL" +license=('LGPL') options=('NOLIBTOOL') depends=('bzip2' 'cups' 'libxcursor' 'libxft' 'libxrandr' 'mesa') source=(http://www.fox-toolkit.org/ftp/fox-$pkgver.tar.gz) diff -Naur old/community/devel/gambas/PKGBUILD new/community/devel/gambas/PKGBUILD --- old/community/devel/gambas/PKGBUILD 2007-07-22 09:59:13.000000000 +0100 +++ new/community/devel/gambas/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -11,7 +11,7 @@ license=('GPL') depends=('qt' 'bzip2' 'libxslt' 'curl') makedepends=('postgresql' 'mysql' 'gettext' 'sqlite3' 'libxml2') -license="GPL" +license=('GPL') options=(!libtool) source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2 \ gambas.desktop gambas.png) diff -Naur old/community/devel/gambas2/PKGBUILD new/community/devel/gambas2/PKGBUILD --- old/community/devel/gambas2/PKGBUILD 2007-05-28 19:05:23.000000000 +0100 +++ new/community/devel/gambas2/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ url="http://gambas.sourceforge.net" depends=('libldap' 'librsvg' 'postgresql-libs' 'libmysqlclient' 'curl' 'sqlite3' \ 'sdl_mixer' 'sdl_image' 'unixodbc' 'kdelibs') -license="GPL" +license=('GPL') source=(http://downloads.sourceforge.net/sourceforge/gambas/gambas2-$pkgver.tar.bz2) md5sums=('0dd35587ebb571a5360b3dcbd5f5cf53') diff -Naur old/community/devel/geany/PKGBUILD new/community/devel/geany/PKGBUILD --- old/community/devel/geany/PKGBUILD 2007-05-27 14:55:11.000000000 +0100 +++ new/community/devel/geany/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A fast and lightweight IDE" url="http://geany.uvena.de" -license="GPL" +license=('GPL') arch=('i686') depends=('gtk2' 'gcc') makedepends=('gettext' 'pkgconfig') diff -Naur old/community/devel/gputils/PKGBUILD new/community/devel/gputils/PKGBUILD --- old/community/devel/gputils/PKGBUILD 2007-04-26 15:08:49.000000000 +0100 +++ new/community/devel/gputils/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="PIC Programming Utilities" arch=(i686) -license="GPL" +license=('GPL') url="http://gputils.sourceforge.net/" depends=('glibc') source=(http://dl.sourceforge.net/sourceforge/gputils/$pkgname-$pkgver.tar.gz) diff -Naur old/community/devel/gquilt/PKGBUILD new/community/devel/gquilt/PKGBUILD --- old/community/devel/gquilt/PKGBUILD 2007-03-08 23:22:22.000000000 +0000 +++ new/community/devel/gquilt/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A PyGTK GUI wrapper for quilt" url="http://users.bigpond.net.au/Peter-Williams/" -license="" +license=() depends=('quilt' 'pygtk') makedepends=() conflicts=() diff -Naur old/community/devel/happs/PKGBUILD new/community/devel/happs/PKGBUILD --- old/community/devel/happs/PKGBUILD 2006-12-02 16:51:52.000000000 +0000 +++ new/community/devel/happs/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Haskell Application Server" url="http://happs.org" -license="" +license=() depends=(haxml ghc) makedepends=() conflicts=() diff -Naur old/community/devel/haskell-binary/PKGBUILD new/community/devel/haskell-binary/PKGBUILD --- old/community/devel/haskell-binary/PKGBUILD 2007-03-07 06:58:26.000000000 +0000 +++ new/community/devel/haskell-binary/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Efficient, pure binary serialisation using lazy ByteStrings for Haskell" url="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/binary" -license="" +license=() makedepends=(ghc) conflicts=() replaces=() diff -Naur old/community/devel/haxml/PKGBUILD new/community/devel/haxml/PKGBUILD --- old/community/devel/haxml/PKGBUILD 2006-12-02 17:07:34.000000000 +0000 +++ new/community/devel/haxml/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="a collection of utilities for parsing, filtering, transforming, and generating XML documents using Haskell" url="http://haskell.org/HaXml/" -license="" +license=() depends=(gmp ghc) conflicts=() replaces=() diff -Naur old/community/devel/iasl/PKGBUILD new/community/devel/iasl/PKGBUILD --- old/community/devel/iasl/PKGBUILD 2007-04-25 19:48:12.000000000 +0100 +++ new/community/devel/iasl/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Intel ACPI Source Language compiler" arch=('i686') url="http://www.intel.com/technology/iapc/acpi" -license="custom" +license=('custom') makedepends=('flex') install=iasl.install # to downlaod the source: diff -Naur old/community/devel/interlis-compiler/PKGBUILD new/community/devel/interlis-compiler/PKGBUILD --- old/community/devel/interlis-compiler/PKGBUILD 2006-11-11 15:37:16.000000000 +0000 +++ new/community/devel/interlis-compiler/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Compiler for INTERLIS 2" url="http://www.interlis.ch/content/index.php?language=e" -license="LGPL" +license=('LGPL') depends=('j2re') makedepends=() source=(http://www.interlis.ch/interlis2/docs/ili2c-$pkgver.zip ili2c) diff -Naur old/community/devel/junit/PKGBUILD new/community/devel/junit/PKGBUILD --- old/community/devel/junit/PKGBUILD 2007-02-10 15:45:09.000000000 +0000 +++ new/community/devel/junit/PKGBUILD 2007-08-03 13:39:07.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Java unit testing framework" url="http://www.junit.org/" -license="CPL" +license=('custom:CPL') depends=(j2re) makedepends=() conflicts=() diff -Naur old/community/devel/kcachegrind/PKGBUILD new/community/devel/kcachegrind/PKGBUILD --- old/community/devel/kcachegrind/PKGBUILD 2007-02-13 02:29:05.000000000 +0000 +++ new/community/devel/kcachegrind/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A profile data visualization tool for the valgrind tool callgrind" url="http://kcachegrind.sourceforge.net" -license="" +license=() depends=(valgrind kdelibs graphviz binutils) makedepends=(perl) conflicts=() diff -Naur old/community/devel/kdiff3/PKGBUILD new/community/devel/kdiff3/PKGBUILD --- old/community/devel/kdiff3/PKGBUILD 2007-05-03 03:02:00.000000000 +0100 +++ new/community/devel/kdiff3/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A KDE file comparator/merge tool" arch=('i686' 'x86_64') url="http://kdiff3.sourceforge.net/" -license="GPL" +license=('GPL') depends=('kdebase') source=(http://downloads.sourceforge.net/sourceforge/kdiff3/$pkgname-$pkgver.tar.gz) md5sums=('c7b52bfee6a085393de0c4f83732e8f0') diff -Naur old/community/devel/man2texi/PKGBUILD new/community/devel/man2texi/PKGBUILD --- old/community/devel/man2texi/PKGBUILD 2006-03-16 15:47:29.000000000 +0000 +++ new/community/devel/man2texi/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Converts well-structured man pages to Texinfo format" url="http://www.math.utah.edu/pub/man2texi/" -license="" +license=() depends=('awk') source=(http://www.math.utah.edu/pub/man2texi/$pkgname-$pkgver.tar.bz2) md5sums=('96489411b5f1aff644abc12ef50510e7') diff -Naur old/community/devel/mod_ruby/PKGBUILD new/community/devel/mod_ruby/PKGBUILD --- old/community/devel/mod_ruby/PKGBUILD 2007-05-11 23:36:14.000000000 +0100 +++ new/community/devel/mod_ruby/PKGBUILD 2007-08-03 13:30:31.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Embeds the Ruby interpreter into the Apache web server" arch=('i686') url="http://www.modruby.net" -license="Apache" +license=('APACHE') depends=('ruby' 'apache') source=(http://www.modruby.net/archive/$pkgname-$pkgver.tar.gz) install=$pkgname.install diff -Naur old/community/devel/motor/PKGBUILD new/community/devel/motor/PKGBUILD --- old/community/devel/motor/PKGBUILD 2007-04-04 14:26:41.000000000 +0100 +++ new/community/devel/motor/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Motor is a text mode based programming environment for Linux." url="http://thekonst.net/motor/" -license="GPL" +license=('GPL') depends=('ncurses' 'cvs' 'automake' 'autoconf' 'gdb' 'make') source=(http://thekonst.net/download/$pkgname-$pkgver.tar.bz2) md5sums=('0fcf7ce0386b269e8bdbb7a86e9bee19') diff -Naur old/community/devel/netbeans/PKGBUILD new/community/devel/netbeans/PKGBUILD --- old/community/devel/netbeans/PKGBUILD 2007-06-28 20:51:19.000000000 +0100 +++ new/community/devel/netbeans/PKGBUILD 2007-08-03 13:39:16.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Netbeans IDE development platform" url="http://www.netbeans.org" arch=('i686') -license="CDDL" +license=('CDDL') depends=('jdk') install=$pkgname.install source=(http://us1.mirror.netbeans.org/download/5_5_1/fcs/200704122300/netbeans-5_5_... diff -Naur old/community/devel/nvu/PKGBUILD new/community/devel/nvu/PKGBUILD --- old/community/devel/nvu/PKGBUILD 2005-10-07 20:01:42.000000000 +0100 +++ new/community/devel/nvu/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A Dreamweaver style WYSIWYG web editor" url="http://www.nvu.com/" -license="" +license=() depends=('gtk2' 'libidl2' 'mozilla-common') makedepends=('sed' 'gcc' 'zip') conflicts=('nvu-kde') diff -Naur old/community/devel/openthreads/PKGBUILD new/community/devel/openthreads/PKGBUILD --- old/community/devel/openthreads/PKGBUILD 2007-04-16 10:11:02.000000000 +0100 +++ new/community/devel/openthreads/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A minimal & complete Object-Oriented thread interface for C++ programmers" url="http://openthreads.sourceforge.net" -license="LGPL" +license=('LGPL') depends=('libstdc++5') source=(http://www.openscenegraph.org/downloads/dependencies/OpenThreads-$pkgver.zip \ installfix.patch) diff -Naur old/community/devel/php-apc/PKGBUILD new/community/devel/php-apc/PKGBUILD --- old/community/devel/php-apc/PKGBUILD 2007-06-30 14:08:41.000000000 +0100 +++ new/community/devel/php-apc/PKGBUILD 2007-08-03 13:48:01.000000000 +0100 @@ -8,7 +8,7 @@ url="http://pecl.php.net/package/APC" depends=('php') makedepends=('apache') -license="PHP" +license=('PHP') source=(http://pecl.php.net/get/APC-$pkgver.tgz apc_add.patch) md5sums=('0f452f936239b6107d3e2e5cda4f4bda' 'bc6a1cf76ecf0d84d9cc26f3f290d367') @@ -19,4 +19,4 @@ ./configure --prefix=/usr --enable-apc --with-apxs --enable-apc-mmap --enable-sem || return 1 make || return 1 install -D -m 0644 modules/apc.so $startdir/pkg`php-config --extension-dir`/apc.so -} \ No newline at end of file +} diff -Naur old/community/devel/php-fileinfo/PKGBUILD new/community/devel/php-fileinfo/PKGBUILD --- old/community/devel/php-fileinfo/PKGBUILD 2007-06-27 18:52:10.000000000 +0100 +++ new/community/devel/php-fileinfo/PKGBUILD 2007-08-03 13:47:46.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686 x86_64) pkgdesc="This extension allows retrieval of information regarding vast majority of file." url="http://pecl.php.net/package/Fileinfo" -license="PHP" +license=('PHP') depends=('file' 'php') source=(http://pecl.php.net/get/Fileinfo-$pkgver.tgz) md5sums=('2854e749db157365c769cb9496f5586f') diff -Naur old/community/devel/php-suhosin-extension/PKGBUILD new/community/devel/php-suhosin-extension/PKGBUILD --- old/community/devel/php-suhosin-extension/PKGBUILD 2007-06-27 18:52:10.000000000 +0100 +++ new/community/devel/php-suhosin-extension/PKGBUILD 2007-08-03 13:47:52.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Suhosin is an advanced protection system for PHP installations." url="http://www.hardened-php.net/suhosin/" depends=('php') -license="PHP" +license=('PHP') source=(http://www.hardened-php.net/suhosin/_media/suhosin-$pkgver.tgz) md5sums=('966033e599c11d977fb28924c7ef0fa1') diff -Naur old/community/devel/poedit/PKGBUILD new/community/devel/poedit/PKGBUILD --- old/community/devel/poedit/PKGBUILD 2007-07-07 00:32:07.000000000 +0100 +++ new/community/devel/poedit/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Cross-platform gettext catalogs (.po files) editor" arch=('i686' 'x86_64') url="http://www.poedit.net/" -license="MIT" +license=('MIT') depends=('gettext' 'wxgtk' 'db' 'gtkspell') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) diff -Naur old/community/devel/psyco/PKGBUILD new/community/devel/psyco/PKGBUILD --- old/community/devel/psyco/PKGBUILD 2007-03-19 01:57:55.000000000 +0000 +++ new/community/devel/psyco/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="JIT compiler for Python" arch=('i686') url="http://psyco.sourceforge.net" -license="MIT" +license=('MIT') depends=('python' 'glibc') source=(http://heanet.dl.sourceforge.net/sourceforge/psyco/psyco-$pkgver-src.tar.gz) diff -Naur old/community/devel/pydb/PKGBUILD new/community/devel/pydb/PKGBUILD --- old/community/devel/pydb/PKGBUILD 2007-05-30 02:00:25.000000000 +0100 +++ new/community/devel/pydb/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Pydb - Extended Python Debugger" arch=('i686' 'x86_64') url="http://bashdb.sourceforge.net/pydb/" -license="GPL" +license=('GPL') depends=('python') source=(http://dl.sourceforge.net/bashdb/${pkgname}-${pkgver}.tar.gz) md5sums=('1acb757e635fe01ac5fb51d91fd867cb') diff -Naur old/community/devel/qdevelop/PKGBUILD new/community/devel/qdevelop/PKGBUILD --- old/community/devel/qdevelop/PKGBUILD 2007-07-04 23:50:15.000000000 +0100 +++ new/community/devel/qdevelop/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A Development Environment for Qt4" arch=('i686' 'x86_64') url="http://qdevelop.org/index.php" -license="GPL" +license=('GPL') depends=('qt4>=4.2') makedepends=('unzip') install=qdevelop.install diff -Naur old/community/devel/quilt/PKGBUILD new/community/devel/quilt/PKGBUILD --- old/community/devel/quilt/PKGBUILD 2006-10-28 18:05:08.000000000 +0100 +++ new/community/devel/quilt/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Manage a series of patches by keeping track of the changes each patch makes. Patches can be applied, un-applied, refreshed, etc" url="http://savannah.nongnu.org/projects/quilt" -license="GPL" +license=('GPL') depends=('perl' 'diffstat' 'gawk' 'patch' 'diffutils' 'mktemp' 'gettext') source=(http://savannah.nongnu.org/download/quilt/$pkgname-$pkgver.tar.gz) md5sums=('5f8dd5a041ca7c700b16620228f922aa') diff -Naur old/community/devel/rubygems/PKGBUILD new/community/devel/rubygems/PKGBUILD --- old/community/devel/rubygems/PKGBUILD 2007-05-28 12:15:57.000000000 +0100 +++ new/community/devel/rubygems/PKGBUILD 2007-08-03 13:32:09.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A package management framework for the Ruby programming language" arch=('i686' 'x86_64') url="http://docs.rubygems.org" -license="Ruby" +license=('RUBY') depends=('ruby') source=(http://rubyforge.iasi.roedu.net/files/rubygems/$pkgname-$pkgver.tgz) diff -Naur old/community/devel/splint/PKGBUILD new/community/devel/splint/PKGBUILD --- old/community/devel/splint/PKGBUILD 2006-09-03 08:38:54.000000000 +0100 +++ new/community/devel/splint/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A tool for statically checking C programs for security vulnerabilities and coding mistakes" url="http://www.splint.org" -license="GPL" +license=('GPL') depends=('glibc') source=(http://www.splint.org/downloads/splint-$pkgver.src.tgz \ splint.sh) diff -Naur old/community/devel/sqlitebrowser/PKGBUILD new/community/devel/sqlitebrowser/PKGBUILD --- old/community/devel/sqlitebrowser/PKGBUILD 2006-06-26 01:57:54.000000000 +0100 +++ new/community/devel/sqlitebrowser/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="SQLite Database browser is a light GUI editor for SQLite databases, built on top of QT" url="http://sqlitebrowser.sf.net" -license="GPL" +license=('GPL') depends=('qt' 'libstdc++5') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver-src.tar.gz) diff -Naur old/community/devel/telepathy-inspector/PKGBUILD new/community/devel/telepathy-inspector/PKGBUILD --- old/community/devel/telepathy-inspector/PKGBUILD 2007-04-15 11:36:13.000000000 +0100 +++ new/community/devel/telepathy-inspector/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A telepathy client whose objective is to expose all interfaces and functionalities implemented by a given connection manager" arch=('i686' 'x86_64') url="http://tapioca-voip.sourceforge.net" -license="GPL" +license=('GPL') depends=('libglade' 'dbus') makedepends=('scons') source=(http://dl.sourceforge.net/sourceforge/tapioca-voip/telepathy-inspector-$pkgv...) diff -Naur old/community/editors/emacs-lua-mode/PKGBUILD new/community/editors/emacs-lua-mode/PKGBUILD --- old/community/editors/emacs-lua-mode/PKGBUILD 2007-03-16 13:05:40.000000000 +0000 +++ new/community/editors/emacs-lua-mode/PKGBUILD 2007-08-03 13:30:21.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Emacs lua-mode" url="http://lua-mode.luaforge.net" -license="GPLv2" +license=('GPL2') depends=() install=$pkgname.install source=(http://luaforge.net/frs/download.php/2074/lua-mode-$pkgver.tar.gz) diff -Naur old/community/editors/emacs-php-mode/PKGBUILD new/community/editors/emacs-php-mode/PKGBUILD --- old/community/editors/emacs-php-mode/PKGBUILD 2007-04-10 14:31:31.000000000 +0100 +++ new/community/editors/emacs-php-mode/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -2,7 +2,7 @@ pkgname=emacs-php-mode pkgver=1.2.0 pkgrel=4 -license="GPL" +license=('GPL') pkgdesc="Emacs mode for php" url="http://php-mode.sf.net" arch=('i686') diff -Naur old/community/editors/emacs-python-mode/PKGBUILD new/community/editors/emacs-python-mode/PKGBUILD --- old/community/editors/emacs-python-mode/PKGBUILD 2007-04-10 14:31:09.000000000 +0100 +++ new/community/editors/emacs-python-mode/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="Python mode for Emacs" url="http://python-mode.sf.net" -license="GPL" +license=('GPL') arch=('i686') depends=('emacs') makedepends=('bash') diff -Naur old/community/editors/jedit/PKGBUILD new/community/editors/jedit/PKGBUILD --- old/community/editors/jedit/PKGBUILD 2006-05-16 18:01:20.000000000 +0100 +++ new/community/editors/jedit/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=7 pkgdesc="Java based extensible text editor" url="http://www.jedit.org" -license="GPL" +license=('GPL') depends=(bash j2re) source=(http://dl.sourceforge.net/jedit/jedit42install.jar \ jedit-bin ) diff -Naur old/community/editors/tea/PKGBUILD new/community/editors/tea/PKGBUILD --- old/community/editors/tea/PKGBUILD 2007-05-06 17:29:21.000000000 +0100 +++ new/community/editors/tea/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="TEA is the GTK2-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." arch=('i686' 'x86_64') url="http://tea-editor.sourceforge.net/" -license="GPL" +license=('GPL') depends=('gtksourceview' 'gnome-vfs' 'enchant') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/sourceforge/tea-editor/$pkgname-$pkgver.tar.bz2 \ diff -Naur old/community/editors/tea-lite/PKGBUILD new/community/editors/tea-lite/PKGBUILD --- old/community/editors/tea-lite/PKGBUILD 2007-05-06 17:36:38.000000000 +0100 +++ new/community/editors/tea-lite/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="TEA is the GTK2-based text editor for Linux and *BSD. This version doesn't require GNOME." arch=('i686' 'x86_64') url="http://tea-editor.sourceforge.net/" -license="GPL" +license=('GPL') depends=('gtk2' 'aspell') makedepends=('pkgconfig' 'aspell') provides=('tea') diff -Naur old/community/editors/umleditor/PKGBUILD new/community/editors/umleditor/PKGBUILD --- old/community/editors/umleditor/PKGBUILD 2006-11-11 15:42:13.000000000 +0000 +++ new/community/editors/umleditor/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="UML/INTERLIS-Editor" url="http://www.interlis.ch/content/index.php?language=e" -license="LGPL" +license=('LGPL') depends=('j2re' 'interlis-compiler') makedepends=() source=(http://www.interlis.ch/interlis2/docs/$pkgname-$pkgver.zip umleditor) diff -Naur old/community/editors/vim-timestamp/PKGBUILD new/community/editors/vim-timestamp/PKGBUILD --- old/community/editors/vim-timestamp/PKGBUILD 2007-05-16 23:00:46.000000000 +0100 +++ new/community/editors/vim-timestamp/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A Vim plugin to automate the timestamping of files" arch=(i686 x86_64) url="http://www.vim.org/scripts/script.php?script_id=923" -license="GPL" +license=('GPL') depends=('vim') install=vim-timestamp.install source=(http://www.vim.org/scripts/download_script.php?src_id=5722) diff -Naur old/community/emulators/basilisk/PKGBUILD new/community/emulators/basilisk/PKGBUILD --- old/community/emulators/basilisk/PKGBUILD 2006-07-13 04:36:15.000000000 +0100 +++ new/community/emulators/basilisk/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A free, portable Mac II emulator with JIT compiler" url="http://gwenole.beauchesne.online.fr/basilisk2/" -license="GPL" +license=('GPL') depends=('gtk2' 'esd' 'bash' 'gcc' 'libxxf86vm' 'libxxf86dga') source=(http://www.gibix.net/projects/basilisk2/files/BasiliskII_src_01052006.tar.bz...) md5sums=('dfe9e088649133485bae28a713979481') diff -Naur old/community/emulators/fceu/PKGBUILD new/community/emulators/fceu/PKGBUILD --- old/community/emulators/fceu/PKGBUILD 2006-07-18 01:02:55.000000000 +0100 +++ new/community/emulators/fceu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="FCE Ultra is a fast and ultra-compatible NES/Famicom emulator with SDL, OpenGL and SVGALIB support." url="http://fceultra.sourceforge.net" -license="GPL" +license=('GPL') options=('KEEPDOCS') depends=('sdl' 'zlib') source=(http://bsd-unix.org/downloads/$pkgname-$pkgver-pre.src.tar.bz2 man.patch) diff -Naur old/community/emulators/generator/PKGBUILD new/community/emulators/generator/PKGBUILD --- old/community/emulators/generator/PKGBUILD 2007-04-24 03:57:25.000000000 +0100 +++ new/community/emulators/generator/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Sega MegaDrive/Genesis Emulator (patched version)" arch=('i686') url="http://www.ghostwhitecrab.com/generator/" -license="GPL" +license=('GPL') depends=('gtk' 'sdl' 'bzip2' 'zlib' 'libjpeg' 'libsm') source=(http://www.ghostwhitecrab.com/generator/$pkgname-$_realver.tar.bz2) md5sums=('5ab81706482d2c2c9932521a25dbae28') diff -Naur old/community/emulators/visualboyadvance/PKGBUILD new/community/emulators/visualboyadvance/PKGBUILD --- old/community/emulators/visualboyadvance/PKGBUILD 2006-05-03 01:03:40.000000000 +0100 +++ new/community/emulators/visualboyadvance/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=5 pkgdesc="An emulator for Gameboy and Gameboy Advance systems." url="http://vba.ngemu.com/" -license="GPL" +license=('GPL') depends=('libglademm' 'sdl') makedepends=('nasm') source=(http://dl.sourceforge.net/sourceforge/vba/VisualBoyAdvance-src-$pkgver.tar.g...) diff -Naur old/community/games/adom/PKGBUILD new/community/games/adom/PKGBUILD --- old/community/games/adom/PKGBUILD 2007-06-25 23:01:28.000000000 +0100 +++ new/community/games/adom/PKGBUILD 2007-08-03 13:39:26.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Ancient Domains Of Mystery is a roguelike game with a quest-centric, plot driven structure" arch=('i686' 'x86_64') url="http://www.adom.de/" -license='custom:"adom"' +license=('custom:adom') depends=('ncurses') source=(http://www.adom.de/adom/download/linux/$pkgname-111-elf.tar.gz license.txt) md5sums=('801484ba7c7c03b3b999365bc45db053' 'c462e91a70db094c71bd192b349467cf') diff -Naur old/community/games/assaultcube/PKGBUILD new/community/games/assaultcube/PKGBUILD --- old/community/games/assaultcube/PKGBUILD 2007-06-24 15:29:05.000000000 +0100 +++ new/community/games/assaultcube/PKGBUILD 2007-08-03 13:33:05.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A realistic team oriented multiplayer FPS based on the Cube engine." arch=('i686' 'x86_64') url="http://assault.cubers.net/" -license="ZLIB" +license=('custom:zlib') replaces=('actioncube') depends=('sdl_mixer' 'sdl_image' 'mesa') source=(http://dl.sourceforge.net/actiongame/AssaultCube_v$pkgver.tar.bz2 diff -Naur old/community/games/atanks/PKGBUILD new/community/games/atanks/PKGBUILD --- old/community/games/atanks/PKGBUILD 2007-06-28 20:51:19.000000000 +0100 +++ new/community/games/atanks/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Atomic Tanks game" arch=('i686' 'x86_64') url="http://atanks.sourceforge.net/" -license="GPL" +license=('GPL') depends=("gcc" "allegro") source=(http://downloads.sourceforge.net/sourceforge/atanks/atanks-$pkgver.tar.gz) md5sums=('c949306b0ad5ff7a006d932261c7e86e') diff -Naur old/community/games/blobwars/PKGBUILD new/community/games/blobwars/PKGBUILD --- old/community/games/blobwars/PKGBUILD 2007-05-18 20:16:11.000000000 +0100 +++ new/community/games/blobwars/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Platform action game featuring a variety of different weaponry and multiple objectives." arch=('i686') url="http://www.parallelrealities.co.uk/blobWars.php" -license="GPL" +license=('GPL') options=('docs') depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'gcc') source=(http://www.parallelrealities.co.uk/download.php\?file\=blobwars-$pkgver-1.tar.gz\&type\=zip) diff -Naur old/community/games/bsd-games/PKGBUILD new/community/games/bsd-games/PKGBUILD --- old/community/games/bsd-games/PKGBUILD 2007-02-17 01:24:21.000000000 +0000 +++ new/community/games/bsd-games/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A linux port for a collection of BSD command line games." url="ftp://metalab.unc.edu/pub/Linux/games/" arch=('i686') -license="BSD" +license=('BSD') depends=('ncurses' 'words') makedepends=('flex' 'bison' 'm4') source=(ftp://metalab.unc.edu/pub/Linux/games/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/games/campgen/PKGBUILD new/community/games/campgen/PKGBUILD --- old/community/games/campgen/PKGBUILD 2007-07-22 09:59:13.000000000 +0100 +++ new/community/games/campgen/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A Battle for Wesnoth campaign creation tool" url="http://www.wesnoth.org/wiki/CampGen" arch=('i686' 'x86_64') -license="GPL" +license=('GPL') depends=('wxpython') source=(http://download.gna.org/campgen/campgen-$pkgver.tar.gz) md5sums=('dff478a4ac90a908c4c1c954f07a4c3c') diff -Naur old/community/games/childsplay/PKGBUILD new/community/games/childsplay/PKGBUILD --- old/community/games/childsplay/PKGBUILD 2007-02-11 19:47:04.000000000 +0000 +++ new/community/games/childsplay/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A suite of educational games for young children" url="http://childsplay.sourceforge.net" -license="GPL" +license=('GPL') arch=('i686') depends=('python-pygame') backup=('var/games/childsplay.score') diff -Naur old/community/games/childsplay-plugins/PKGBUILD new/community/games/childsplay-plugins/PKGBUILD --- old/community/games/childsplay-plugins/PKGBUILD 2007-02-12 05:53:50.000000000 +0000 +++ new/community/games/childsplay-plugins/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Additional games for childsplay" url="http://childsplay.sourceforge.net" -license="GPL" +license=('GPL') arch=('i686') depends=('childsplay>=0.84') install=childsplay-plugins.install diff -Naur old/community/games/chromium/PKGBUILD new/community/games/chromium/PKGBUILD --- old/community/games/chromium/PKGBUILD 2006-06-01 04:53:11.000000000 +0100 +++ new/community/games/chromium/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=4 pkgdesc="A 2d scrolling shooter" url="http://www.reptilelabour.com/software/chromium/" -license="" +license=() depends=('freealut' 'smpeg' 'mesa' 'libvorbis') source=(http://www.reptilelabour.com/software/files/chromium/chromium-src-$pkgver.ta... \ http://www.reptilelabour.com/software/files/chromium/chromium-data-$pkgver.t... \ diff -Naur old/community/games/crack-attack/PKGBUILD new/community/games/crack-attack/PKGBUILD --- old/community/games/crack-attack/PKGBUILD 2006-10-13 03:32:00.000000000 +0100 +++ new/community/games/crack-attack/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A free OpenGL game based on the Super Nintendo classic Tetris Attack" url="http://www.nongnu.org/crack-attack/" -license="GPL" +license=('GPL') depends=('gtk2' 'libxmu' 'freeglut') makedepends=('pkgconfig') source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz freeglut.patch) diff -Naur old/community/games/crawl/PKGBUILD new/community/games/crawl/PKGBUILD --- old/community/games/crawl/PKGBUILD 2007-02-22 12:51:10.000000000 +0000 +++ new/community/games/crawl/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ arch=('i686') pkgdesc="Linley's Dungeon Crawl roguelike" url="http://www.dungeoncrawl.org/" -license="custom" +license=('custom') depends=('ncurses') source=('ftp://ftp.dungeoncrawl.org/dev/4.0.x/src/dc400b26-src.tbz2' \ 'crawlpatch.diff' 'crawl') diff -Naur old/community/games/cube/PKGBUILD new/community/games/cube/PKGBUILD --- old/community/games/cube/PKGBUILD 2007-05-03 17:59:55.000000000 +0100 +++ new/community/games/cube/PKGBUILD 2007-08-03 13:33:05.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Open source multiplayer and singleplayer first person shooter game" arch=('i686' 'x86_64') url="http://www.cubeengine.com/" -license="ZLIB" +license=('custom:zlib') depends=('sdl_mixer' 'sdl_image' 'mesa' 'libgl' 'enet') makedepends=('unzip') backup=(opt/cube/autoexec.cfg opt/cube/servers.cfg) diff -Naur old/community/games/flightgear/PKGBUILD new/community/games/flightgear/PKGBUILD --- old/community/games/flightgear/PKGBUILD 2006-04-08 04:52:03.000000000 +0100 +++ new/community/games/flightgear/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="An open-source, multi-platform flight simulator" depends=('simgear' 'libxmu' 'libxi' 'zlib' 'flightgear-data') -license="GPL" +license=('GPL') url="http://www.flightgear.org" source=(ftp://ftp.de.flightgear.org/pub/fgfs/Source/FlightGear-$pkgver.tar.gz) md5sums=('f4b89c9cafc18d56beab77a04f1ebdce') diff -Naur old/community/games/freedroid/PKGBUILD new/community/games/freedroid/PKGBUILD --- old/community/games/freedroid/PKGBUILD 2007-07-09 10:30:22.000000000 +0100 +++ new/community/games/freedroid/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgdesc="Freedroid is a clone of the classic game "Paradroid" on Commodore 64 with some improvements and extensions to the classic version." arch=(i686) url="http://freedroid.sourceforge.net/" -license="GPL" +license=('GPL') depends=('glibc' 'sdl') source=(http://mesh.dl.sourceforge.net/sourceforge/freedroid/$pkgname-$pkgver.tar.gz) md5sums=('585a65f61c2cd308ab45d5c514f695dc') diff -Naur old/community/games/gl-117/PKGBUILD new/community/games/gl-117/PKGBUILD --- old/community/games/gl-117/PKGBUILD 2006-05-31 03:13:04.000000000 +0100 +++ new/community/games/gl-117/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="An action flight simulator" url="http://www.heptargon.de/gl-117/gl-117.html" -license="GPL" +license=('GPL') depends=('freeglut' 'sdl_mixer' 'libxmu' 'libxi') source=(http://dl.sourceforge.net/sourceforge/gl-117/gl-117-$pkgver-src.tar.bz2) md5sums=('aad53c5531943529fd769fae4efeae02') diff -Naur old/community/games/glob2/PKGBUILD new/community/games/glob2/PKGBUILD --- old/community/games/glob2/PKGBUILD 2007-05-03 23:11:04.000000000 +0100 +++ new/community/games/glob2/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Globulation 2 is a Real-Time Strategy [RTS] game, which minimizes micro-management by automatically assigning tasks to units." arch=('i686' 'x86_64') url="http://www.ysagoon.com/glob2/" -license="GPL" +license=('GPL') depends=('sdl_net' 'sdl_image' 'sdl_ttf' 'libvorbis' 'speex' 'mesa' 'fribidi') makedepends=('boost') source=(http://dl.sv.nongnu.org/releases/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz) diff -Naur old/community/games/hedgewars/PKGBUILD new/community/games/hedgewars/PKGBUILD --- old/community/games/hedgewars/PKGBUILD 2007-03-27 12:06:17.000000000 +0100 +++ new/community/games/hedgewars/PKGBUILD 2007-08-03 13:30:21.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Free Worms-like turn based strategy game" url="http://hedgewars.org" -license="GPLv2" +license=('GPL2') depends=('qt4' 'sdl' 'sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf') makedepends=('fpc' 'cmake') source=(http://hedgewars.org/download/$pkgname-src-$pkgver.tar.bz2) diff -Naur old/community/games/kcheckers/PKGBUILD new/community/games/kcheckers/PKGBUILD --- old/community/games/kcheckers/PKGBUILD 2006-09-23 03:50:24.000000000 +0100 +++ new/community/games/kcheckers/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="Qt4-based checkers boardgame" url="http://kcheckers.wibix.de/" -license="GPL" +license=('GPL') depends=("qt4") source=("http://wibix.de/infusions/pro_download_panel/file.php?did=15&file_id=9") diff -Naur old/community/games/klogoturtle/PKGBUILD new/community/games/klogoturtle/PKGBUILD --- old/community/games/klogoturtle/PKGBUILD 2006-06-24 11:07:44.000000000 +0100 +++ new/community/games/klogoturtle/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Multilingual KDE turtle simulator" url="http://klogoturtle.sourceforge.net/" -license="" +license=() depends=('kdelibs') makedepends=() conflicts=() diff -Naur old/community/games/kpacman/PKGBUILD new/community/games/kpacman/PKGBUILD --- old/community/games/kpacman/PKGBUILD 2007-02-13 17:39:24.000000000 +0000 +++ new/community/games/kpacman/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=5 pkgdesc="The classic pacman arcade game for the KDE Desktop" url="http://kpacman.sourceforge.net/" -license="GPL" +license=('GPL') depends=(kdegames) source=(http://dl.sourceforge.net/sourceforge/kpacman/$pkgname-$pkgver.tar.gz \ build-fix.patch) diff -Naur old/community/games/ltris/PKGBUILD new/community/games/ltris/PKGBUILD --- old/community/games/ltris/PKGBUILD 2006-07-06 03:36:37.000000000 +0100 +++ new/community/games/ltris/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="LTris as a tetris clone which means you have a bowl with blocks falling down." url="http://lgames.sourceforge.net/index.php?project=LTris" -license="GPL" +license=('GPL') depends=('sdl_mixer') source=(http://dl.sourceforge.net/lgames/$pkgname-$pkgver.tar.gz) md5sums=('412ecd9b7577a5bbcb76e19b5397391c') diff -Naur old/community/games/nexuiz/PKGBUILD new/community/games/nexuiz/PKGBUILD --- old/community/games/nexuiz/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/games/nexuiz/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ arch=('i686' 'x86_64') pkgdesc="A 3d deathmatch game based on the The Quake1 engine." url="http://www.nexuiz.com" -license="GPL" +license=('GPL') depends=('sdl' 'libxxf86vm' 'libxxf86dga' 'alsa-lib') makedepends=('unzip') source=(http://dl.sourceforge.net/sourceforge/$pkgname/nexuiz-23.zip \ diff -Naur old/community/games/openttd/PKGBUILD new/community/games/openttd/PKGBUILD --- old/community/games/openttd/PKGBUILD 2007-06-15 13:24:52.000000000 +0100 +++ new/community/games/openttd/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="An engine for running Transport Tycoon Deluxe -- requires non-free data" arch=('i686' 'x86_64') url="http://www.openttd.com" -license="GPL" +license=('GPL') depends=(libpng sdl gcc fontconfig) makedepends=() install=openttd.install diff -Naur old/community/games/pingus/PKGBUILD new/community/games/pingus/PKGBUILD --- old/community/games/pingus/PKGBUILD 2006-04-20 05:52:34.000000000 +0100 +++ new/community/games/pingus/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Pingus is a Lemmings clone, i.e. a level-based puzzle game." url="http://pingus.seul.org" -license="GPL" +license=('GPL') options=('NOSTRIP') source=(http://pingus.seul.org/files/$pkgname-$pkgver-binary-linux-i386.tar.bz2) md5sums=('d5b852caedf49980e91a4dafb16bf605') diff -Naur old/community/games/ppracer/PKGBUILD new/community/games/ppracer/PKGBUILD --- old/community/games/ppracer/PKGBUILD 2006-04-20 07:22:07.000000000 +0100 +++ new/community/games/ppracer/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="An OpenGL racing game where Tux, the Linux Penguin, sliding down a snow and ice covered mountain as quickly as possible." url="http://projects.planetpenguin.de/racer/index.php" -license="GPL" +license=('GPL') depends=('sdl_mixer' 'tcl' 'libpng' 'freetype2' 'libxi' 'libxmu' 'mesa') source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.bz2) md5sums=('fa80d5dc1e4b63edf05d27b2e86637ec') diff -Naur old/community/games/pysol/PKGBUILD new/community/games/pysol/PKGBUILD --- old/community/games/pysol/PKGBUILD 2006-05-28 00:44:39.000000000 +0100 +++ new/community/games/pysol/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="PySol is an exciting collection of more than 200 solitaire games." url="http://www.pysol.org/" -license="GPL" +license=('GPL') depends=('python' 'pysol-sound-server' 'tk') source=(http://www.astro.umontreal.ca/~belanger/$pkgname-$pkgver-data.tar.bz2 http://www.pysol.org/download/pysol/$pkgname-$pkgver-src.tar.bz2 pysol) md5sums=('edc38d657a7a7e317ed82f0f9eec8892' 'be0fd45c016fe2dcacb03fb29871aff4'\ diff -Naur old/community/games/pysol-cardsets/PKGBUILD new/community/games/pysol-cardsets/PKGBUILD --- old/community/games/pysol-cardsets/PKGBUILD 2006-05-28 00:07:33.000000000 +0100 +++ new/community/games/pysol-cardsets/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A collection of free cardsets adapted for use with PySol." url="http://ftp.surfnet.nl" -license="GPL" +license=('GPL') depends=('pysol') source=(http://ftp.surfnet.nl/sunsite/games/solitaires/$pkgname-$pkgver.tar.gz) md5sums=('4878f498bd038884554de9e938a8ab03') diff -Naur old/community/games/sauerbraten/PKGBUILD new/community/games/sauerbraten/PKGBUILD --- old/community/games/sauerbraten/PKGBUILD 2007-06-24 17:12:28.000000000 +0100 +++ new/community/games/sauerbraten/PKGBUILD 2007-08-03 13:33:05.000000000 +0100 @@ -7,7 +7,7 @@ arch=('i686' 'x86_64') pkgdesc="Sauerbraten is an improved version of the Cube engine" url="http://sauerbraten.org" -license="ZLIB" +license=('custom:zlib') depends=('sdl_mixer' 'sdl_image' 'libgl' 'mesa' 'enet') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/${pkgname}_${pkgver}_linux.tar.bz2 sauerbraten-client diff -Naur old/community/games/simgear/PKGBUILD new/community/games/simgear/PKGBUILD --- old/community/games/simgear/PKGBUILD 2006-04-08 04:33:24.000000000 +0100 +++ new/community/games/simgear/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A set of open-source libraries designed to be used as building blocks for quickly assembling 3d simulations, games, and visualization applications." depends=('glut' 'freealut' 'plib') -license="GPL" +license=('GPL') url="http://www.simgear.org" source=(ftp://ftp.de.simgear.org/pub/simgear/Source/SimGear-$pkgver.tar.gz) md5sums=('469e17b08ed4267a33dbd19eabdd976b') diff -Naur old/community/games/smc-music/PKGBUILD new/community/games/smc-music/PKGBUILD --- old/community/games/smc-music/PKGBUILD 2007-03-09 03:34:54.000000000 +0000 +++ new/community/games/smc-music/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Music for the Super Mario Brothers Clone" arch=('i686' 'x86_64') url="http://smclone.sourceforge.net" -license="GPL" +license=('GPL') depends=('smc') replaces=('smclone-music') conflicts=('smclone-music') diff -Naur old/community/games/solarwolf/PKGBUILD new/community/games/solarwolf/PKGBUILD --- old/community/games/solarwolf/PKGBUILD 2006-11-02 11:23:00.000000000 +0000 +++ new/community/games/solarwolf/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="SolarWolf is an action/arcade game written in Python" url="http://www.pygame.org/shredwheat/solarwolf/" depends=('python-pygame>=1.5.6') -license="LGPL" +license=('LGPL') source=(http://www.pygame.org/shredwheat/$pkgname/$pkgname-$pkgver.tar.gz solarwolf.desktop) md5sums=('52fbed0a33c3c4c08d9dc0e533f90f8c' '9d0b8c95d84eacf86a1fb1f3249d97bb') diff -Naur old/community/games/stone-soup/PKGBUILD new/community/games/stone-soup/PKGBUILD --- old/community/games/stone-soup/PKGBUILD 2007-01-08 12:01:32.000000000 +0000 +++ new/community/games/stone-soup/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="community maintained variant of Linley's Dungeon Crawl" url="http://crawl-ref.sourceforge.net/" -license="custom" +license=('custom') depends=('ncurses') conflicts=('crawl') source=("http://dl.sourceforge.net/crawl-ref/stone_soup-${pkgver}-src.tbz2" \ diff -Naur old/community/games/supertux/PKGBUILD new/community/games/supertux/PKGBUILD --- old/community/games/supertux/PKGBUILD 2006-12-20 05:31:39.000000000 +0000 +++ new/community/games/supertux/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games" url="http://super-tux.sourceforge.net" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('sdl_image' 'gcc' 'libgl' 'physfs' 'openal' 'libvorbis') makedepends=('ftjam') diff -Naur old/community/games/tmw/PKGBUILD new/community/games/tmw/PKGBUILD --- old/community/games/tmw/PKGBUILD 2007-07-11 20:01:53.000000000 +0100 +++ new/community/games/tmw/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG." url="http://themanaworld.org" -license="GPL" +license=('GPL') arch=(i686) depends=('curl' 'guichan>=0.7.0' 'sdl_image' 'libgl' 'libxml2' 'physfs' 'sdl_mixer' 'sdl_net') makedepends=('pkgconfig') diff -Naur old/community/games/tmwmusic/PKGBUILD new/community/games/tmwmusic/PKGBUILD --- old/community/games/tmwmusic/PKGBUILD 2007-03-17 20:28:24.000000000 +0000 +++ new/community/games/tmwmusic/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="The music of The Mana World, separately packaged because of its size." url="http://themanaworld.org" -license="GPL" +license=('GPL') depends=('tmw') source=(http://dl.sourceforge.net/sourceforge/themanaworld/$pkgname-$pkgver.tar.gz) md5sums=('eec5e7d6c8ddb8938209815dbf5da812') diff -Naur old/community/games/torcs/PKGBUILD new/community/games/torcs/PKGBUILD --- old/community/games/torcs/PKGBUILD 2007-01-14 00:55:00.000000000 +0000 +++ new/community/games/torcs/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A 3D racing cars simulator using OpenGL" url="http://torcs.sourceforge.net" -license="GPL" +license=('GPL') arch=('i686') depends=('freeglut' 'libpng' 'freealut' 'libxi' 'libxmu' 'libxrandr') makedepends=('plib') diff -Naur old/community/games/tremulous/PKGBUILD new/community/games/tremulous/PKGBUILD --- old/community/games/tremulous/PKGBUILD 2007-04-18 18:00:21.000000000 +0100 +++ new/community/games/tremulous/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A completely free online team based FPS/RTS hybrid game based on the ioquake3 engine." url="http://tremulous.net/" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('sdl' 'openal') makedepends=('unzip') diff -Naur old/community/games/tuxkart/PKGBUILD new/community/games/tuxkart/PKGBUILD --- old/community/games/tuxkart/PKGBUILD 2006-04-23 21:52:03.000000000 +0100 +++ new/community/games/tuxkart/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A 3D racing game featuring tux" url="http://tuxkart.sourceforge.net" -license="GPL" +license=('GPL') depends=('libxi' 'gcc' 'libxmu' 'libgl') makedepends=('plib') source=(http://tuxkart.sourceforge.net/dist/$pkgname-$pkgver.tar.gz) diff -Naur old/community/games/uqm/PKGBUILD new/community/games/uqm/PKGBUILD --- old/community/games/uqm/PKGBUILD 2007-01-17 08:23:58.000000000 +0000 +++ new/community/games/uqm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="The Ur-Quan Masters is a port of Star Control 2" url="http://sc2.sf.net/" -license="GPL" +license=('GPL') depends=('libmikmod' 'libvorbis' 'sdl_image' 'libgl') makedepends=('sed') source=(http://dl.sourceforge.net/sourceforge/sc2/uqm-${pkgver}-source.tgz \ diff -Naur old/community/games/warzone/PKGBUILD new/community/games/warzone/PKGBUILD --- old/community/games/warzone/PKGBUILD 2007-04-18 19:36:45.000000000 +0100 +++ new/community/games/warzone/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="3D realtime strategy game on a future Earth" url="http://wz2100.net/" arch=(i686) -license="" +license=() depends=('sdl_net' 'libgl' 'openal' 'libjpeg' 'libpng' 'libvorbis' 'libmad' 'physfs' 'mesa') makedepends=('gawk') source=(http://download.gna.org/warzone/releases/2.0/${pkgname}2100-$pkgver.tar.bz2) diff -Naur old/community/gnome/alexandria/PKGBUILD new/community/gnome/alexandria/PKGBUILD --- old/community/gnome/alexandria/PKGBUILD 2006-03-17 00:05:20.000000000 +0000 +++ new/community/gnome/alexandria/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=5 pkgdesc="A GNOME application to help you manage your book collection" url="http://alexandria.rubyforge.org" -license="GPL" +license=('GPL') depends=('ruby-amazon' 'ruby-libglade' 'ruby-gconf2' 'ruby-zoom' 'ruby-gettext' 'ruby-libart' 'ruby-gnome2') makedepends=('intltool') source=(http://rubyforge.org/frs/download.php/6308/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/gnome/buoh/PKGBUILD new/community/gnome/buoh/PKGBUILD --- old/community/gnome/buoh/PKGBUILD 2007-04-27 06:17:12.000000000 +0100 +++ new/community/gnome/buoh/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A reader for online strips comics." arch=('i686' 'x86_64') url="http://buoh.steve-o.org/" -license="GPL" +license=('GPL') depends=('libgnomeui' 'libsoup') makedepends=('gettext' 'intltool' 'pkgconfig') install=buoh.install diff -Naur old/community/gnome/byzanz/PKGBUILD new/community/gnome/byzanz/PKGBUILD --- old/community/gnome/byzanz/PKGBUILD 2007-05-12 04:49:00.000000000 +0100 +++ new/community/gnome/byzanz/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A desktop recorder that records to GIF" arch=('i686' 'x86_64') url="http://www.freedesktop.org/~company/byzanz" -license="GPL" +license=('GPL') depends=('gnome-panel' 'libxdamage') makedepends=('intltool') install=$pkgname.install diff -Naur old/community/gnome/comix/PKGBUILD new/community/gnome/comix/PKGBUILD --- old/community/gnome/comix/PKGBUILD 2007-05-30 09:37:46.000000000 +0100 +++ new/community/gnome/comix/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A comic book viewer." arch=(i686 x86_64) url="http://comix.sourceforge.net" -license="GPL" +license=('GPL') depends=('pygtk' 'pil' 'unrar') makedepends=('gettext' 'intltool') source=(http://downloads.sourceforge.net/sourceforge/comix/comix-$pkgver.tar.gz) diff -Naur old/community/gnome/eiciel/PKGBUILD new/community/gnome/eiciel/PKGBUILD --- old/community/gnome/eiciel/PKGBUILD 2007-05-03 19:17:12.000000000 +0100 +++ new/community/gnome/eiciel/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="GNOME file ACL editor" arch=('i686' 'x86_64') url="http://rofi.pinchito.com/eiciel" -license="GPL" +license=('GPL') depends=('acl' 'gtkmm' 'nautilus') makedepends=('pkgconfig') source=(http://rofi.pinchito.com/eiciel/download/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/gnome/gfceu/PKGBUILD new/community/gnome/gfceu/PKGBUILD --- old/community/gnome/gfceu/PKGBUILD 2007-02-24 01:41:43.000000000 +0000 +++ new/community/gnome/gfceu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="GNOME FCE Ultra (gfceu) is a GUI for the popular Nintendo Emulator, FCE Ultra." url="http://dietschnitzel.com/gfceu/" -license="GPL" +license=('GPL') arch=('i686') depends=('pygtk' 'fceu') source=(http://dietschnitzel.com/gfceu/$pkgname-$pkgver.tar.gz) diff -Naur old/community/gnome/gimmie/PKGBUILD new/community/gnome/gimmie/PKGBUILD --- old/community/gnome/gimmie/PKGBUILD 2007-06-15 13:24:52.000000000 +0100 +++ new/community/gnome/gimmie/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgdesc="GNOME panel revisited" arch=('i686' 'x86_64') url="http://beatniksoftware.com/gimmie/Main_Page" -license="LGPL" +license=('LGPL') depends=('gnome-desktop' 'libgnomecups' 'libwnck' 'dbus-python' 'gnome-python-desktop') makedepends=('findutils') source=(http://www.beatniksoftware.com/gimmie/releases/$pkgname-$pkgver.tar.gz) diff -Naur old/community/gnome/gnochm/PKGBUILD new/community/gnome/gnochm/PKGBUILD --- old/community/gnome/gnochm/PKGBUILD 2007-05-27 16:46:46.000000000 +0100 +++ new/community/gnome/gnochm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A CHM file viewer for GNOME" arch=('i686' 'x86_64') url="http://gnochm.sourceforge.net" -license="GPL" +license=('GPL') depends=('python-pychm' 'gnome-python-extras' 'libgtkhtml') makedepends=('pkgconfig' 'perlxml') install=gnochm.install diff -Naur old/community/gnome/gnome-schedule/PKGBUILD new/community/gnome/gnome-schedule/PKGBUILD --- old/community/gnome/gnome-schedule/PKGBUILD 2007-03-16 23:40:58.000000000 +0000 +++ new/community/gnome/gnome-schedule/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="GNOME frontend to cron and at" arch=('i686' 'x86_64') url="http://gnome-schedule.sourceforge.net" -license="GPL" +license=('GPL') depends=('gnome-panel' 'dcron' 'at' 'gnome-python') makedepends=('pkgconfig' 'intltool') install=$pkgname.install diff -Naur old/community/gnome/gnomesu/PKGBUILD new/community/gnome/gnomesu/PKGBUILD --- old/community/gnome/gnomesu/PKGBUILD 2007-04-28 07:35:28.000000000 +0100 +++ new/community/gnome/gnomesu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A program that allows a user to su to root in a Gnome environment." arch=('i686' 'x86_64') url="http://xsu.sourceforge.net" -license="GPL" +license=('GPL') depends=('libgnomeui' 'libzvt') makedepends=('pkgconfig') conflicts=('libgnomesu') diff -Naur old/community/gnome/gourmet/PKGBUILD new/community/gnome/gourmet/PKGBUILD --- old/community/gnome/gourmet/PKGBUILD 2007-04-12 04:55:47.000000000 +0100 +++ new/community/gnome/gourmet/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A simple but powerful recipe-managing application" arch=('i686') url="http://grecipe-manager.sourceforge.net" -license="GPL" +license=('GPL') depends=('metakit' 'pil' 'gnome-python-extras' 'libglade' 'python-reportlab' 'python-pysqlite') install=gourmet.install source=(http://downloads.sourceforge.net/sourceforge/grecipe-manager/gourmet-$pkgver...) diff -Naur old/community/gnome/gshare/PKGBUILD new/community/gnome/gshare/PKGBUILD --- old/community/gnome/gshare/PKGBUILD 2007-04-27 05:47:36.000000000 +0100 +++ new/community/gnome/gshare/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Easy file sharing for Gnome" arch=('i686') url="http://yimports.com/~cpinto/projects/gnome/gshare" -license="GPL" +license=('GPL') depends=('gtk-sharp-2' 'avahi') install=$pkgname.install source=(http://yimports.com/~cpinto/downloads/gshare/$pkgver/gshare-$pkgver.tar.gz) diff -Naur old/community/gnome/gstm/PKGBUILD new/community/gnome/gstm/PKGBUILD --- old/community/gnome/gstm/PKGBUILD 2006-08-10 04:12:21.000000000 +0100 +++ new/community/gnome/gstm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Gnome front-end to ssh tunneling" url="http://gstm.sourceforge.net" -license="GPL" +license=('GPL') depends=('libgnomeui') makedepends=('intltool') source=(http://dl.sourceforge.net/sourceforge/gstm/gstm-$pkgver.tar.gz) diff -Naur old/community/gnome/hardware-monitor/PKGBUILD new/community/gnome/hardware-monitor/PKGBUILD --- old/community/gnome/hardware-monitor/PKGBUILD 2007-05-06 14:46:57.000000000 +0100 +++ new/community/gnome/hardware-monitor/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="The Hardware Monitor applet is a small program for the Gnome panel which tries to be a beautiful all-round solution to hardware monitoring." arch=('i686' 'x86_64') url="http://www.cs.aau.dk/~olau/hardware-monitor/" -license="GPL" +license=('GPL') depends=('gtkmm>=2.6' 'gconfmm' 'libglademm' 'libgnomecanvasmm' 'libgtop' 'gnome-panel' 'lm_sensors') makedepends=('perlxml') diff -Naur old/community/gnome/kanatest/PKGBUILD new/community/gnome/kanatest/PKGBUILD --- old/community/gnome/kanatest/PKGBUILD 2007-03-29 23:54:57.000000000 +0100 +++ new/community/gnome/kanatest/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple Hiragana and Katakana drill tool" depends=('gtk2' 'libxml2') url="http://clay.ll.pl/kanatest" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') install=kanatest.install source=(http://clay.ll.pl/kanatest/$pkgname-$pkgver.tar.gz diff -Naur old/community/gnome/listen/PKGBUILD new/community/gnome/listen/PKGBUILD --- old/community/gnome/listen/PKGBUILD 2007-04-27 04:01:58.000000000 +0100 +++ new/community/gnome/listen/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Music player and management for GNOME" arch=('i686' 'x86_64') url="http://www.listen-project.org/" -license="GPL" +license=('GPL') depends=('pygtk' 'gnome-python-extras' 'pyvorbis' 'pymad' 'mutagen' \ 'gstreamer0.10-python' 'gstreamer0.10-gconf' \ 'gstreamer0.10-alsa' 'gstreamer0.10-mad' 'gstreamer0.10-vorbis' \ diff -Naur old/community/gnome/music-applet/PKGBUILD new/community/gnome/music-applet/PKGBUILD --- old/community/gnome/music-applet/PKGBUILD 2007-01-13 22:23:58.000000000 +0000 +++ new/community/gnome/music-applet/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A small, simple GNOME panel applet that lets you control a variety of different music players" url="http://www.kuliniewicz.org/music-applet/" -license="GPL" +license=('GPL') depends=('gnome-panel' 'eel') makedepends=('pkgconfig' 'perlxml') source=(http://www.kuliniewicz.org/music-applet/downloads/$pkgname-$pkgver.tar.gz) diff -Naur old/community/gnome/nautilus-actions/PKGBUILD new/community/gnome/nautilus-actions/PKGBUILD --- old/community/gnome/nautilus-actions/PKGBUILD 2007-05-06 15:16:07.000000000 +0100 +++ new/community/gnome/nautilus-actions/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Configures programs to be launched when files are selected in Nautilus" arch=('i686' 'x86_64') url="http://www.grumz.net/index.php?q=node/8" -license="GPL" +license=('GPL') depends=('nautilus' 'libglade') makedepends=('pkgconfig' 'intltool') install=nautilus-actions.install diff -Naur old/community/gnome/nautilus-audio-convert/PKGBUILD new/community/gnome/nautilus-audio-convert/PKGBUILD --- old/community/gnome/nautilus-audio-convert/PKGBUILD 2007-05-06 16:04:21.000000000 +0100 +++ new/community/gnome/nautilus-audio-convert/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An extension of Nautilus that provides a user-friendly way to convert several audio files" arch=('i686' 'x86_64') url="http://www.arakhne.org/article.php3?id_article=11" -license="GPL" +license=('GPL') depends=('nautilus') makedepends=('intltool') source=(http://www.arakhne.org/IMG/gz/${pkgname}_$pkgver-1.tar.gz) diff -Naur old/community/gnome/nautilus-open-terminal/PKGBUILD new/community/gnome/nautilus-open-terminal/PKGBUILD --- old/community/gnome/nautilus-open-terminal/PKGBUILD 2007-05-06 15:27:05.000000000 +0100 +++ new/community/gnome/nautilus-open-terminal/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A nautilus plugin for opening terminals in arbitrary local paths" arch=('i686' 'x86_64') #url="http://manny.cluecoder.org/packages/nautilus-open-terminal" -license="GPL" +license=('GPL') depends=('nautilus') makedepends=('pkgconfig' 'intltool') source=(http://archive.ubuntu.com/ubuntu/pool/universe/n/$pkgname/${pkgname}_${pkgver}.orig.tar.gz) diff -Naur old/community/gnome/nautilus-share/PKGBUILD new/community/gnome/nautilus-share/PKGBUILD --- old/community/gnome/nautilus-share/PKGBUILD 2007-05-06 16:57:56.000000000 +0100 +++ new/community/gnome/nautilus-share/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Share files through Samba with Nautilus" arch=('i686' 'x86_64') url="http://gentoo.ovibes.net/nautilus-share" -license="GPL" +license=('GPL') depends=('nautilus' 'libglade' 'samba') makedepends=('intltool') backup=('etc/samba/usershare.conf') diff -Naur old/community/gnome/pessulus/PKGBUILD new/community/gnome/pessulus/PKGBUILD --- old/community/gnome/pessulus/PKGBUILD 2007-05-06 17:06:52.000000000 +0100 +++ new/community/gnome/pessulus/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A lockdown editor for GNOME." arch=('i686' 'x86_64') url="http://live.gnome.org/Pessulus" -license="GPL" +license=('GPL') depends=('gnome-python' 'gconf') makedepends=('pkgconfig' 'gettext' 'intltool') source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.16/$pkgname-$pkgver.tar.gz) diff -Naur old/community/gnome/scribes/PKGBUILD new/community/gnome/scribes/PKGBUILD --- old/community/gnome/scribes/PKGBUILD 2007-06-24 17:12:28.000000000 +0100 +++ new/community/gnome/scribes/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A simple PyGTK+ text editor" url="http://scribes.sourceforge.net" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('gnome-python-extras' 'gtksourceview' 'yelp' 'gconf' 'dbus-python') makedepends=('pkgconfig' 'perlxml') diff -Naur old/community/gnome/serpentine/PKGBUILD new/community/gnome/serpentine/PKGBUILD --- old/community/gnome/serpentine/PKGBUILD 2007-04-07 20:47:19.000000000 +0100 +++ new/community/gnome/serpentine/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An application for writing CD-Audio discs" arch=('i686' 'x86_64') url="http://s1x.homelinux.net/projects/serpentine" -license="GPL" +license=('GPL') depends=('gnome-python-extras' 'gstreamer0.10-python' 'nautilus-cd-burner' 'pyxml') makedepends=('intltool') source=(http://download.berlios.de/serpentine/serpentine-$pkgver.tar.gz) diff -Naur old/community/gnome/tablet-apps/PKGBUILD new/community/gnome/tablet-apps/PKGBUILD --- old/community/gnome/tablet-apps/PKGBUILD 2007-03-04 14:44:26.000000000 +0000 +++ new/community/gnome/tablet-apps/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Gnome panel and control center applets to configure and monitor graphics tablet devices." url="http://alexmac.cc/tablet-apps/" -license="GPL" +license=('GPL') arch=('i686') depends=('gnome-python-desktop') source=(http://alexmac.cc/tablet-apps/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/gnome/vmoviedb/PKGBUILD new/community/gnome/vmoviedb/PKGBUILD --- old/community/gnome/vmoviedb/PKGBUILD 2007-05-06 17:23:05.000000000 +0100 +++ new/community/gnome/vmoviedb/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A movie collection manager for the Gnome desktop" arch=('i686' 'x86_64') url="http://vmoviedb.sourceforge.net" -license="GPL" +license=('GPL') depends=('libgnomeui') source=(http://dl.sourceforge.net/sourceforge/vmoviedb/vmoviedb-$pkgver.tar.gz) install=$pkgname.install diff -Naur old/community/gnome/webboard/PKGBUILD new/community/gnome/webboard/PKGBUILD --- old/community/gnome/webboard/PKGBUILD 2006-05-28 09:42:06.000000000 +0100 +++ new/community/gnome/webboard/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="A pygtk frontend to pastebin" url="http://pimpzkru.de/sebi/webboard" -license="GPL" +license=('GPL') depends=('gnome-python' 'gnome-panel') makedepends=('intltool') source=(http://pimpzkru.de/sebi/$pkgname/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/i18n/openoffice-spell-it/PKGBUILD new/community/i18n/openoffice-spell-it/PKGBUILD --- old/community/i18n/openoffice-spell-it/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/i18n/openoffice-spell-it/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="OpenOffice italian spellchecker files" arch=(i686 x86_64) url="http://linguistico.sourceforge.net/" -license="GPL" +license=('GPL') depends=('openoffice-base' 'ed' 'unzip') source=(http://dl.sourceforge.net/linguistico/it_IT-OOo2-pack_1_1_beta_2007_05_06.zi... spell.it) diff -Naur old/community/i18n/openoffice-spell-uk/PKGBUILD new/community/i18n/openoffice-spell-uk/PKGBUILD --- old/community/i18n/openoffice-spell-uk/PKGBUILD 2007-06-26 20:23:30.000000000 +0100 +++ new/community/i18n/openoffice-spell-uk/PKGBUILD 2007-08-03 13:25:33.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="OpenOffice Ukrainian spellchecker files" arch=('i686' 'x86_64') url="http://openoffice.org.ua/" -license="GPL LGPL" +license=('GPL' 'LGPL') depends=('openoffice-base' 'ed') install=dictionary.install mirror=(ftp://sunsite.informatik.rwth-aachen.de/pub/mirror/OpenOffice/contrib/dictionaries) diff -Naur old/community/i18n/openoffice-uk/PKGBUILD new/community/i18n/openoffice-uk/PKGBUILD --- old/community/i18n/openoffice-uk/PKGBUILD 2007-06-26 20:23:30.000000000 +0100 +++ new/community/i18n/openoffice-uk/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="OpenOffice Ukrainian language files" arch=('i686' 'x86_64') url="http://openoffice.org.ua/" -license="LGPL" +license=('LGPL') makedepends=('rpmextract') depends=('openoffice-base') source=(ftp://ftp-1.gwdg.de/pub/openoffice/extended/2.2.1rc3/OOo_2.2.1rc3_20070529_LinuxIntel_langpack_uk.tar.gz) diff -Naur old/community/i18n/psi-i18n/PKGBUILD new/community/i18n/psi-i18n/PKGBUILD --- old/community/i18n/psi-i18n/PKGBUILD 2006-10-30 20:48:06.000000000 +0000 +++ new/community/i18n/psi-i18n/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ arch=(i686 x86_64) pkgdesc="Language-Packs for Psi" depends=('psi') -license="GPL" +license=('GPL') url="http://www.psi-im.org" source=(http://psi-im.org/files/translation/$pkgver/psi_bg.qm \ http://psi-im.org/files/translation/$pkgver/psi_ca.qm \ diff -Naur old/community/kde/dolphin/PKGBUILD new/community/kde/dolphin/PKGBUILD --- old/community/kde/dolphin/PKGBUILD 2007-02-21 14:37:14.000000000 +0000 +++ new/community/kde/dolphin/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ source=(http://enzosworld.gmxhome.de/download/$pkgname-$pkgver.tar.gz) md5sums=('376f7a1deca0f4d69fa96a393cea464b') arch=(i686) -license="GPL" +license=('GPL') build() { cd $startdir/src/$pkgname-$pkgver diff -Naur old/community/kde/kdbg/PKGBUILD new/community/kde/kdbg/PKGBUILD --- old/community/kde/kdbg/PKGBUILD 2007-03-12 17:03:31.000000000 +0000 +++ new/community/kde/kdbg/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A gdb GUI for KDE." url="http://www.kdbg.org" -license="GPL" +license=('GPL') arch=('i686') depends=('kdelibs' 'gdb') source=(http://dl.sourceforge.net/sourceforge/kdbg/$pkgname-$pkgver.tar.gz) diff -Naur old/community/kde/kdestyle-lipstik/PKGBUILD new/community/kde/kdestyle-lipstik/PKGBUILD --- old/community/kde/kdestyle-lipstik/PKGBUILD 2007-05-17 13:58:35.000000000 +0100 +++ new/community/kde/kdestyle-lipstik/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Based on the plastik style, Lipstik is a purified KDE style with many options to tune your desktop look." url="http://www.kde-look.org/content/show.php?content=18223" -license="GPL" +license=('GPL') arch=('i686') depends=('kdebase') makedepends=() diff -Naur old/community/kde/kdestyle-polyester/PKGBUILD new/community/kde/kdestyle-polyester/PKGBUILD --- old/community/kde/kdestyle-polyester/PKGBUILD 2007-05-17 13:55:07.000000000 +0100 +++ new/community/kde/kdestyle-polyester/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="KDE style and window decoration" url="http://www.kde-look.org/content/show.php?content=27968" -license="LGPL" +license=('LGPL') arch=("i686") depends=('kdebase') makedepends=() diff -Naur old/community/kde/kdesvn/PKGBUILD new/community/kde/kdesvn/PKGBUILD --- old/community/kde/kdesvn/PKGBUILD 2007-06-15 13:24:52.000000000 +0100 +++ new/community/kde/kdesvn/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686' 'x86_64') pkgdesc="A pure C++ SVN-client for KDE" url="http://www.alwins-world.de/programs/kdesvn/" -license="GPL" +license=('GPL') depends=('kdelibs' 'subversion') makedepends=('cmake') source=(http://www.alwins-world.de/programs/download/kdesvn/0.12.x/kdesvn-$pkgver.ta...) diff -Naur old/community/kde/kdvdauthorwizard/PKGBUILD new/community/kde/kdvdauthorwizard/PKGBUILD --- old/community/kde/kdvdauthorwizard/PKGBUILD 2007-07-20 15:34:07.000000000 +0100 +++ new/community/kde/kdvdauthorwizard/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A very simple and nice wizard app for authoring DVDs with menu and stuff, based on kommander" url="http://dvdauthorwizard.sourceforge.net" -license="GPL" +license=('GPL') arch=('i686') depends=('kdelibs' 'kdewebdev' 'imagemagick' 'dvdauthor' \ 'transcode' 'mjpegtools' 'mplayer' 'sox' 'bc') diff -Naur old/community/kde/keepassx/PKGBUILD new/community/kde/keepassx/PKGBUILD --- old/community/kde/keepassx/PKGBUILD 2007-07-01 14:32:43.000000000 +0100 +++ new/community/kde/keepassx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ depends=('qt4>=4.1.0') source=("http://downloads.sourceforge.net/sourceforge/$pkgname/KeePassX-$pkgver.tar.g...") url="http://keepassx.sourceforge.net/" -license="GPL" +license=('GPL') md5sums=('5ee945ab12c2667ef5c4013a0636c26f') build() { diff -Naur old/community/kde/kftpgrabber/PKGBUILD new/community/kde/kftpgrabber/PKGBUILD --- old/community/kde/kftpgrabber/PKGBUILD 2007-05-29 21:52:07.000000000 +0100 +++ new/community/kde/kftpgrabber/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A graphical FTP client for KDE" url="http://www.kftp.org/" -license="GPL" +license=('GPL') arch=('i686') depends=('kdelibs') makedepends=() diff -Naur old/community/kde/kio-sysinfo/PKGBUILD new/community/kde/kio-sysinfo/PKGBUILD --- old/community/kde/kio-sysinfo/PKGBUILD 2007-05-29 21:12:19.000000000 +0100 +++ new/community/kde/kio-sysinfo/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="kio slave to display system infomation in konqueror." url="http://en.opensuse.org/Image:Screeny102_sysinfo.jpg" -license="GPL" +license=('GPL') depends=('kdelibs' 'hwinfo') makedepends=('rpmextract') arch=('i686') diff -Naur old/community/kde/kleansweep/PKGBUILD new/community/kde/kleansweep/PKGBUILD --- old/community/kde/kleansweep/PKGBUILD 2007-02-21 18:12:57.000000000 +0000 +++ new/community/kde/kleansweep/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -3,7 +3,7 @@ pkgver=0.2.9 pkgrel=1 pkgdesc="Allows you to reclaim disk space by finding unneeded files" -license="GPL" +license=('GPL') url="http://linux.bydg.org/~yogin/" arch=(i686) depends=('kdelibs' 'python') diff -Naur old/community/kde/klogwatch/PKGBUILD new/community/kde/klogwatch/PKGBUILD --- old/community/kde/klogwatch/PKGBUILD 2007-02-12 15:13:25.000000000 +0000 +++ new/community/kde/klogwatch/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Monitors a kernel log file for Netfilter log lines and reports them" url="http://klogwatch.sourceforge.net/" -license="GPL" +license=('GPL') depends=('kdelibs') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('921bf810a7e555818f7a8e13e30ff58f') diff -Naur old/community/kde/kplayer/PKGBUILD new/community/kde/kplayer/PKGBUILD --- old/community/kde/kplayer/PKGBUILD 2007-07-31 01:43:59.000000000 +0100 +++ new/community/kde/kplayer/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="MPlayer frontend for KDE" arch=('i686' 'x86_64') url="http://kplayer.sourceforge.net" -license="GPL" +license=('GPL') depends=('kdelibs' 'mplayer') source=(http://kplayer.sourceforge.net/$pkgname-$pkgver.tar.bz2) md5sums=('f55dab07cefb666f745015ac4dc5de2a') diff -Naur old/community/kde/krename/PKGBUILD new/community/kde/krename/PKGBUILD --- old/community/kde/krename/PKGBUILD 2007-03-28 02:53:21.000000000 +0100 +++ new/community/kde/krename/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A very powerfull batch file renamer for KDE." arch=('i686' 'x86_64') url="http://www.krename.net" -license="GPL" +license=('GPL') depends=('kdelibs>=3.3.0') source=(http://downloads.sourceforge.net/sourceforge/krename/$pkgname-$pkgver.tar.bz...) md5sums=('1f5fe57384d912c11fbd0fae94bb7fca') diff -Naur old/community/kde/ksplash-engine-moodin/PKGBUILD new/community/kde/ksplash-engine-moodin/PKGBUILD --- old/community/kde/ksplash-engine-moodin/PKGBUILD 2006-08-14 13:41:00.000000000 +0100 +++ new/community/kde/ksplash-engine-moodin/PKGBUILD 2007-08-03 13:32:31.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Splash Screen Engine for KDE" url="http://www.kde-look.org/content/show.php?content=25705" depends=('qt' 'kdelibs>=3.3.0') -license='GPL' +license=('GPL') source=(http://moodwrod.com/files/$pkgname'_'$pkgver.tar.gz) md5sums=('322404928ed7e17a1c8708d4dc13b960') diff -Naur old/community/kde/kxdocker/PKGBUILD new/community/kde/kxdocker/PKGBUILD --- old/community/kde/kxdocker/PKGBUILD 2007-04-04 17:07:32.000000000 +0100 +++ new/community/kde/kxdocker/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="KXDocker is a KDE animated docker, supports plugins and notifications" patch="kxdocker114a-compiz.diff" url="http://www.xiaprojects.com/www/prodotti/kxdocker/main.php" -license="GPL" +license=('GPL') depends=('kdelibs') source=(http://www.xiaprojects.com/www/downloads/files/$pkgname/1.0.0/$pkgname-$pkgv...) diff -Naur old/community/kde/synce-kde/PKGBUILD new/community/kde/synce-kde/PKGBUILD --- old/community/kde/synce-kde/PKGBUILD 2007-06-05 20:09:21.000000000 +0100 +++ new/community/kde/synce-kde/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="provide a means of communication with a Windows CE device - KDE tools and integration" arch=('i686' 'x86_64') url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') depends=(unshield kdelibs file synce-librapi orange dynamite) makedepends=(agsync synce-rra) source=(http://dl.sourceforge.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) diff -Naur old/community/kde/syncekonnector/PKGBUILD new/community/kde/syncekonnector/PKGBUILD --- old/community/kde/syncekonnector/PKGBUILD 2007-03-28 12:19:57.000000000 +0100 +++ new/community/kde/syncekonnector/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ url="http://synce.sourceforge.net/" depends=(kdepim synce-librapi) makedepends=(synce-kde) -license="GPL" +license=('GPL') source=(http://dl.sourceforge.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('a0ec8a8d4d8a9302b9009bc78439a004') diff -Naur old/community/kde/tweak/PKGBUILD new/community/kde/tweak/PKGBUILD --- old/community/kde/tweak/PKGBUILD 2007-07-11 20:01:54.000000000 +0100 +++ new/community/kde/tweak/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ arch=('i686' 'x86_64') pkgdesc="tweaK is a config tool for editing KDE's various secret and hidden config options." url="http://beta.smileaf.org/projects/" -license="GPL" +license=('GPL') depends=('kdelibs') makedepends=('automake') source=(http://beta.smileaf.org/files/tweaK/tweaK-$pkgver.tar.bz2) diff -Naur old/community/lib/aqbanking/PKGBUILD new/community/lib/aqbanking/PKGBUILD --- old/community/lib/aqbanking/PKGBUILD 2006-11-23 01:32:04.000000000 +0000 +++ new/community/lib/aqbanking/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A library for online banking and financial applications" options=('NOLIBTOOL') url="http://www.aquamaniac.de/aqbanking" -license="GPL" +license=('GPL') depends=('ktoblzcheck' 'libofx' 'gwenhywfar') source=(http://dl.sourceforge.net/aqbanking/aqbanking-$pkgver.tar.gz) md5sums=('875203b18dcc3ef1b591397d5381a4ca') diff -Naur old/community/lib/bakery/PKGBUILD new/community/lib/bakery/PKGBUILD --- old/community/lib/bakery/PKGBUILD 2007-03-11 19:55:41.000000000 +0000 +++ new/community/lib/bakery/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A C++ Application Framework for use with gtkmm" arch=('i686' 'x86_64') url="http://bakery.sourceforge.net/" -license="GPL" +license=('GPL') depends=('libxml++2' 'gnome-vfsmm' 'libglademm' 'gconfmm') makedepends=('intltool') source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.4/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/lib/bse-alsa/PKGBUILD new/community/lib/bse-alsa/PKGBUILD --- old/community/lib/bse-alsa/PKGBUILD 2007-05-24 08:49:19.000000000 +0100 +++ new/community/lib/bse-alsa/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="The Bedevilled Sound Engine, BEAST's core library (ALSA version)" arch=('i686') url="http://beast.gtk.org" -license="GPL" +license=('GPL') depends=('beast' 'alsa-lib') makedepends=('pkgconfig') options=('nolibtool') diff -Naur old/community/lib/cdbxx/PKGBUILD new/community/lib/cdbxx/PKGBUILD --- old/community/lib/cdbxx/PKGBUILD 2007-02-14 11:02:52.000000000 +0000 +++ new/community/lib/cdbxx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="cdbxx is a small STL style C++ library for TinyCDB implementation of Constant Database" url="http://cdbxx.sourceforge.net/" -license="GPL" +license=('GPL') depends=(gcc) makedepends=(tinycdb) source=(http://dl.sourceforge.net/sourceforge/cdbxx/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/lib/cegui/PKGBUILD new/community/lib/cegui/PKGBUILD --- old/community/lib/cegui/PKGBUILD 2006-12-07 00:06:50.000000000 +0000 +++ new/community/lib/cegui/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A free library providing windowing and widgets for graphics APIs/engines" url="http://crayzedsgui.sourceforge.net" options=('NOLIBTOOL' 'force') -license="MIT" +license=('MIT') depends=('freeglut' 'xerces-c') source=(http://dl.sourceforge.net/crayzedsgui/CEGUI-$pkgver.tar.gz) md5sums=('b42322a33c6a06eede76b15f75694a17') diff -Naur old/community/lib/cfitsio/PKGBUILD new/community/lib/cfitsio/PKGBUILD --- old/community/lib/cfitsio/PKGBUILD 2007-03-22 20:45:28.000000000 +0000 +++ new/community/lib/cfitsio/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format" arch=(i686 x86_64) url="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html" -license="custom" +license=('custom') depends=() makedepends=() conflicts=() diff -Naur old/community/lib/confuse/PKGBUILD new/community/lib/confuse/PKGBUILD --- old/community/lib/confuse/PKGBUILD 2007-01-23 15:59:50.000000000 +0000 +++ new/community/lib/confuse/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=4 pkgdesc="C-library for parsing configuration files" url="http://www.nongnu.org/confuse" -license="LGPL" +license=('LGPL') depends=('glibc') source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('4bc9b73d77ebd571ac834619ce0b3582') diff -Naur old/community/lib/ctemplate/PKGBUILD new/community/lib/ctemplate/PKGBUILD --- old/community/lib/ctemplate/PKGBUILD 2007-03-13 01:30:41.000000000 +0000 +++ new/community/lib/ctemplate/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A library implementing a simple but powerful template language for C++." arch=(i686 x86_64) url="http://code.google.com/p/google-ctemplate/" -license="BSD" +license=('BSD') depends=('gcc') options=('NOLIBTOOL') source=(http://google-ctemplate.googlecode.com/files/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/cupsddk/PKGBUILD new/community/lib/cupsddk/PKGBUILD --- old/community/lib/cupsddk/PKGBUILD 2007-05-29 21:01:53.000000000 +0100 +++ new/community/lib/cupsddk/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="CUPSD Development Kit" url="http://cups.org/ddk/index.php" -license="GPL" +license=('GPL') depends=('libcups') makedepends=('libcups') arch=('i686') diff -Naur old/community/lib/cwiid/PKGBUILD new/community/lib/cwiid/PKGBUILD --- old/community/lib/cwiid/PKGBUILD 2007-05-28 06:28:06.000000000 +0100 +++ new/community/lib/cwiid/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ arch=(i686 x86_64) url="http://abstrakraft.org/cwiid/wiki" depends=('gawk' 'autoconf' 'bison' 'flex' 'bluez-libs' 'gtk2') -license="GPL" +license=('GPL') install=cwiid.install source=(http://abstrakraft.org/cwiid/downloads/$pkgname-$pkgver.tgz) diff -Naur old/community/lib/diacanvas/PKGBUILD new/community/lib/diacanvas/PKGBUILD --- old/community/lib/diacanvas/PKGBUILD 2006-05-14 22:52:36.000000000 +0100 +++ new/community/lib/diacanvas/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Library for drawing diagrams" url="http://sourceforge.net/projects/diacanvas" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gnome-python' 'libgnomecanvas' 'libgnomeprint') source=(http://dl.sourceforge.net/sourceforge/diacanvas/${pkgname}2-$pkgver.tar.gz ) md5sums=('b3db6c961de3023489a4d2419dab89bd') diff -Naur old/community/lib/dietlibc/PKGBUILD new/community/lib/dietlibc/PKGBUILD --- old/community/lib/dietlibc/PKGBUILD 2007-04-04 17:13:12.000000000 +0100 +++ new/community/lib/dietlibc/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="a libc optimized for small size" url="http://www.fefe.de/dietlibc/" -license="GPL" +license=('GPL') source=(http://www.kernel.org/pub/linux/libs/dietlibc/$pkgname-$pkgver.tar.bz2) md5sums=('2465d652fff6f1fad3da3b98e60e83c9') diff -Naur old/community/lib/dynamite/PKGBUILD new/community/lib/dynamite/PKGBUILD --- old/community/lib/dynamite/PKGBUILD 2007-03-27 23:24:46.000000000 +0100 +++ new/community/lib/dynamite/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Dynamite is a tool and library for decompressing data compressed with PKWARE Data Compression Library" url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') source=(http://switch.dl.sourceforge.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('5e99d9172f60b8084cc6f6ba1a8c8261') diff -Naur old/community/lib/enca/PKGBUILD new/community/lib/enca/PKGBUILD --- old/community/lib/enca/PKGBUILD 2007-02-13 17:55:34.000000000 +0000 +++ new/community/lib/enca/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Charset analyser and converter" url="http://trific.ath.cx/software/enca" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=() source=(http://trific.ath.cx/Ftp/enca/enca-$pkgver.tar.bz2) md5sums=('b3581e28d68d452286fb0bfe58bed3b3') diff -Naur old/community/lib/gavl/PKGBUILD new/community/lib/gavl/PKGBUILD --- old/community/lib/gavl/PKGBUILD 2007-03-11 18:39:48.000000000 +0000 +++ new/community/lib/gavl/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A low level library, upon which multimedia APIs can be built." url="http://gmerlin.sourceforge.net/" -license="GPL" +license=('GPL') arch=('i686') depends=('glibc') source=(http://dl.sourceforge.net/sourceforge/gmerlin/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/geos/PKGBUILD new/community/lib/geos/PKGBUILD --- old/community/lib/geos/PKGBUILD 2006-07-22 20:23:08.000000000 +0100 +++ new/community/lib/geos/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A C++ port of the Java Topology Suite" url="http://geos.refractions.net" -license="LGPL" +license=('LGPL') options=('NOLIBTOOL') depends=() source=(http://geos.refractions.net/geos-$pkgver.tar.bz2) diff -Naur old/community/lib/glib-java/PKGBUILD new/community/lib/glib-java/PKGBUILD --- old/community/lib/glib-java/PKGBUILD 2007-03-27 12:49:18.000000000 +0100 +++ new/community/lib/glib-java/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Glib bindings for Java" url="http://java-gnome.sourceforge.net" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('glib' 'j2re') makedepends=('gcc-gcj') source=(http://ftp.gnome.org/pub/gnome/sources/glib-java/0.4/glib-java-$pkgver.tar.b...) diff -Naur old/community/lib/gloox/PKGBUILD new/community/lib/gloox/PKGBUILD --- old/community/lib/gloox/PKGBUILD 2006-10-21 19:50:47.000000000 +0100 +++ new/community/lib/gloox/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="C++ libraries for development of Jabber client/component/server" url="http://camaya.net/gloox" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('libidn' 'iksemel') source=(http://camaya.net/download/gloox-$pkgver.tar.bz2) md5sums=('b153bf4884e89633ff290d4342ebea02') diff -Naur old/community/lib/gnonlin/PKGBUILD new/community/lib/gnonlin/PKGBUILD --- old/community/lib/gnonlin/PKGBUILD 2007-06-04 20:52:38.000000000 +0100 +++ new/community/lib/gnonlin/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -8,7 +8,7 @@ url="http://gnonlin.sourceforge.net" depends=('gstreamer0.10') options=('!LIBTOOL') -license="LGPL" +license=('LGPL') source=(http://gstreamer.freedesktop.org/src/gnonlin/$pkgname-$pkgver.tar.gz) md5sums=('13164648910ef291405383cee594254f') diff -Naur old/community/lib/goocanvas/PKGBUILD new/community/lib/goocanvas/PKGBUILD --- old/community/lib/goocanvas/PKGBUILD 2007-04-17 21:31:44.000000000 +0100 +++ new/community/lib/goocanvas/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686 x86_64) url="http://sourceforge.net/projects/goocanvas" options=('!libtool') -license="LGPL" +license=('LGPL') depends=('gtk2') source=(http://downloads.sourceforge.net/sourceforge/goocanvas/goocanvas-$pkgver.tar...) diff -Naur old/community/lib/gtk2hs/PKGBUILD new/community/lib/gtk2hs/PKGBUILD --- old/community/lib/gtk2hs/PKGBUILD 2007-01-01 10:47:31.000000000 +0000 +++ new/community/lib/gtk2hs/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A GTK+2 binding for Haskell (prerelease)" url="http://gtk2hs.sourceforge.net" options=('NOSTRIP') -license="LGPL" +license=('LGPL') depends=('ghc' 'libglade' 'gtksourceview' 'gconf') makedepends=() install=gtk2hs.install diff -Naur old/community/lib/gtkdatabox/PKGBUILD new/community/lib/gtkdatabox/PKGBUILD --- old/community/lib/gtkdatabox/PKGBUILD 2007-03-21 09:14:52.000000000 +0000 +++ new/community/lib/gtkdatabox/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686 x86_64) url="http://www.eudoxos.net/gtk/gtkdatabox" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gtk2') source=(http://www.eudoxos.net/gtk/gtkdatabox/download/gtkdatabox-$pkgver.tar.gz) md5sums=('5aa9b13d347c7429e0c74b2ef93a88e3') diff -Naur old/community/lib/guichan/PKGBUILD new/community/lib/guichan/PKGBUILD --- old/community/lib/guichan/PKGBUILD 2007-07-24 19:53:41.000000000 +0100 +++ new/community/lib/guichan/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." arch=(i686 x86_64) url="http://guichan.sourceforge.net/" -license="BSD" +license=('BSD') depends=() makedepends=('sdl_image' 'allegro' 'libgl' 'glut') conflicts=('guichan-sdl' 'guichan-allegro' 'guichan-opengl' 'guichan-glut') diff -Naur old/community/lib/guichan-allegro/PKGBUILD new/community/lib/guichan-allegro/PKGBUILD --- old/community/lib/guichan-allegro/PKGBUILD 2007-02-17 10:57:59.000000000 +0000 +++ new/community/lib/guichan-allegro/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." url="http://guichan.sourceforge.net/" -license="BSD" +license=('BSD') arch=(i686) depends=('guichan>=0.6.1' 'allegro') source=(http://dl.sourceforge.net/sourceforge/guichan/guichan-$pkgver.tar.gz) diff -Naur old/community/lib/guichan-glut/PKGBUILD new/community/lib/guichan-glut/PKGBUILD --- old/community/lib/guichan-glut/PKGBUILD 2007-02-17 10:58:17.000000000 +0000 +++ new/community/lib/guichan-glut/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." url="http://guichan.sourceforge.net/" -license="BSD" +license=('BSD') arch=(i686) depends=('guichan>=0.6.1' 'glut') source=(http://dl.sourceforge.net/sourceforge/guichan/guichan-$pkgver.tar.gz) diff -Naur old/community/lib/guichan-opengl/PKGBUILD new/community/lib/guichan-opengl/PKGBUILD --- old/community/lib/guichan-opengl/PKGBUILD 2007-02-17 10:58:10.000000000 +0000 +++ new/community/lib/guichan-opengl/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." url="http://guichan.sourceforge.net/" -license="BSD" +license=('BSD') arch=(i686) depends=('guichan>=0.6.1' 'libgl') source=(http://dl.sourceforge.net/sourceforge/guichan/guichan-$pkgver.tar.gz) diff -Naur old/community/lib/guichan-sdl/PKGBUILD new/community/lib/guichan-sdl/PKGBUILD --- old/community/lib/guichan-sdl/PKGBUILD 2007-02-17 10:58:04.000000000 +0000 +++ new/community/lib/guichan-sdl/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." url="http://guichan.sourceforge.net/" -license="BSD" +license=('BSD') arch=(i686) depends=('guichan>=0.6.1' 'sdl_image') source=(http://dl.sourceforge.net/sourceforge/guichan/guichan-$pkgver.tar.gz) diff -Naur old/community/lib/gwenhywfar/PKGBUILD new/community/lib/gwenhywfar/PKGBUILD --- old/community/lib/gwenhywfar/PKGBUILD 2007-03-20 09:36:58.000000000 +0000 +++ new/community/lib/gwenhywfar/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686 x86_64) url="http://gwenhywfar.sourceforge.net/" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('openssl') source=(http://dl.sourceforge.net/sourceforge/gwenhywfar/gwenhywfar-$pkgver.tar.gz) md5sums=('59c8e1443c5bb8e11ac2fa552f183a94') diff -Naur old/community/lib/iksemel/PKGBUILD new/community/lib/iksemel/PKGBUILD --- old/community/lib/iksemel/PKGBUILD 2006-07-29 00:41:28.000000000 +0100 +++ new/community/lib/iksemel/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="XML parser library for Jabber applications in ANSI C" url="http://iksemel.jabberstudio.org" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gnutls') source=(http://files.jabberstudio.org/iksemel/$pkgname-$pkgver.tar.gz) md5sums=(82e7c8fdb6211839246b788c040a796b) diff -Naur old/community/lib/iniparser/PKGBUILD new/community/lib/iniparser/PKGBUILD --- old/community/lib/iniparser/PKGBUILD 2007-06-24 17:12:28.000000000 +0100 +++ new/community/lib/iniparser/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A free stand-alone ini file parsing library written in portable ANSI C" arch=('i686' 'x86_64') url="http://ndevilla.free.fr/iniparser/" -license="MIT" +license=('MIT') depends=('glibc') source=(http://ndevilla.free.fr/iniparser/$pkgname-$pkgver.tar.gz) md5sums=('a7425ca813c13458928b1f1012323616') diff -Naur old/community/lib/iodbc/PKGBUILD new/community/lib/iodbc/PKGBUILD --- old/community/lib/iodbc/PKGBUILD 2007-01-09 17:28:18.000000000 +0000 +++ new/community/lib/iodbc/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Independent ODBC" url="http://www.iodbc.org" -license="GPL" +license=('GPL') depends=(gtk) source=(http://dl.sourceforge.net/sourceforge/iodbc/libiodbc-$pkgver.tar.gz) md5sums=('550234c4f9fbaf45e6e5d74c460dff0d') diff -Naur old/community/lib/java-xerces2/PKGBUILD new/community/lib/java-xerces2/PKGBUILD --- old/community/lib/java-xerces2/PKGBUILD 2006-12-30 13:42:32.000000000 +0000 +++ new/community/lib/java-xerces2/PKGBUILD 2007-08-03 13:30:31.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="High performance fully compliant Java XML parser" url="http://xml.apache.org/xerces2-j" -license="Apache" +license=('APACHE') depends=('jre') source=(http://www.apache.org/dist/xml/xerces-j/Xerces-J-bin.$pkgver.tar.gz) diff -Naur old/community/lib/jrtplib/PKGBUILD new/community/lib/jrtplib/PKGBUILD --- old/community/lib/jrtplib/PKGBUILD 2007-05-03 00:35:56.000000000 +0100 +++ new/community/lib/jrtplib/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="An object-oriented RTP library written in C++" arch=('i686' 'x86_64') url="http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jrtplib" -license="MIT" +license=('MIT') options=('NOLIBTOOL' 'FORCE') depends=('jthread') source=(http://research.edm.luc.ac.be/jori/jrtplib/jrtplib-$pkgver.tar.bz2) diff -Naur old/community/lib/jthread/PKGBUILD new/community/lib/jthread/PKGBUILD --- old/community/lib/jthread/PKGBUILD 2006-06-21 01:33:26.000000000 +0100 +++ new/community/lib/jthread/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Provides some classes to make use of threads easy on different platforms" url="http://research.edm.luc.ac.be/jori/jthread/jthread.html" -license="MIT" +license=('MIT') options=('NOLIBTOOL') depends=() source=(http://research.edm.luc.ac.be/jori/jthread/jthread-$pkgver.tar.gz) diff -Naur old/community/lib/kiwi/PKGBUILD new/community/lib/kiwi/PKGBUILD --- old/community/lib/kiwi/PKGBUILD 2007-07-31 01:43:59.000000000 +0100 +++ new/community/lib/kiwi/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A set of classes and wrappers for PyGTK" arch=('i686' 'x86_64') url="http://www.async.com.br/projects/kiwi" -license="LGPL" +license=('LGPL') depends=('pygtk') makedepends=('gettext') source=(http://download.gnome.org/sources/kiwi/1.9/kiwi-$pkgver.tar.bz2) diff -Naur old/community/lib/ktoblzcheck/PKGBUILD new/community/lib/ktoblzcheck/PKGBUILD --- old/community/lib/ktoblzcheck/PKGBUILD 2006-08-28 00:53:04.000000000 +0100 +++ new/community/lib/ktoblzcheck/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A library to check account numbers and bank codes of German banks" url="http://ktoblzcheck.sourceforge.net" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=() source=(http://dl.sourceforge.net/sourceforge/ktoblzcheck/ktoblzcheck-$pkgver.tar.gz) md5sums=('76341845a4b4b00a9abbf8ee5bcadc51') diff -Naur old/community/lib/libasyncns/PKGBUILD new/community/lib/libasyncns/PKGBUILD --- old/community/lib/libasyncns/PKGBUILD 2007-06-24 17:12:28.000000000 +0100 +++ new/community/lib/libasyncns/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A C library for Linux/Unix for executing name service queries asynchronously" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/libasyncns" -license="LGPL" +license=('LGPL') options=('!libtool') depends=('glibc') source=(http://0pointer.de/lennart/projects/libasyncns/libasyncns-$pkgver.tar.gz) diff -Naur old/community/lib/libburn/PKGBUILD new/community/lib/libburn/PKGBUILD --- old/community/lib/libburn/PKGBUILD 2007-05-05 00:22:39.000000000 +0100 +++ new/community/lib/libburn/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Library for reading, mastering and writing optical discs" arch=('i686' 'x86_64') url="http://libburnia.pykix.org/" -license="GPL" +license=('GPL') depends=('glibc') source=(http://libburnia-download.pykix.org/releases/$pkgname-$pkgver.tar.gz) md5sums=('84cba948a8587841fcd6d95bc2571312') diff -Naur old/community/lib/libcgi/PKGBUILD new/community/lib/libcgi/PKGBUILD --- old/community/lib/libcgi/PKGBUILD 2006-06-24 10:55:07.000000000 +0100 +++ new/community/lib/libcgi/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="A powerful and easy to use library for writing CGI applications in C" url="http://libcgi.sourceforge.net/" -license="GPL" +license=('GPL') depends=('glibc') source=(http://heanet.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g...) md5sums=('110af367081d33c7ed6527a1a60fc274') diff -Naur old/community/lib/libgalago/PKGBUILD new/community/lib/libgalago/PKGBUILD --- old/community/lib/libgalago/PKGBUILD 2007-01-25 12:36:39.000000000 +0000 +++ new/community/lib/libgalago/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686 x86_64) url="http://www.galago-project.org" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('dbus') source=(http://www.galago-project.org/files/releases/source/libgalago/libgalago-$pkg... \ libgalago-mkinstalldirs.patch) diff -Naur old/community/lib/libgalago-gtk/PKGBUILD new/community/lib/libgalago-gtk/PKGBUILD --- old/community/lib/libgalago-gtk/PKGBUILD 2007-04-19 10:31:10.000000000 +0100 +++ new/community/lib/libgalago-gtk/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="GTK+ widgets for the Galago presence framework" url="http://www.galago-project.org" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gtk2' 'libgalago') source=(http://www.galago-project.org/files/releases/source/libgalago-gtk/libgalago-...) md5sums=('810f7922ac37ca87d61a0fb0cd830b8b') diff -Naur old/community/lib/libggi/PKGBUILD new/community/lib/libggi/PKGBUILD --- old/community/lib/libggi/PKGBUILD 2006-03-13 18:08:15.000000000 +0000 +++ new/community/lib/libggi/PKGBUILD 2007-08-03 13:28:47.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=2 pkgdesc="GGI graphics library" url="http://www.ggi-project.org/" -license="" +license=() groups=('ggi') depends=('libgii' 'aalib' 'libxxf86vm') source=(http://dl.sourceforge.net/sourceforge/ggi/$pkgname-$pkgver.src.tar.bz2) diff -Naur old/community/lib/libggimisc/PKGBUILD new/community/lib/libggimisc/PKGBUILD --- old/community/lib/libggimisc/PKGBUILD 2006-03-13 18:00:07.000000000 +0000 +++ new/community/lib/libggimisc/PKGBUILD 2007-08-03 13:28:47.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=2 pkgdesc="GGI assorted features" url="http://www.ggi-project.org/" -license="" +license=() groups=('ggi') depends=('libggi') source=(http://dl.sourceforge.net/sourceforge/ggi/$pkgname-$pkgver.src.tar.bz2) diff -Naur old/community/lib/libgii/PKGBUILD new/community/lib/libgii/PKGBUILD --- old/community/lib/libgii/PKGBUILD 2007-03-02 19:15:49.000000000 +0000 +++ new/community/lib/libgii/PKGBUILD 2007-08-03 13:28:47.000000000 +0100 @@ -4,7 +4,7 @@ pkgdesc="GGI input handling library" arch=('i686' 'x86_64') url="http://www.ggi-project.org/" -license="" +license=() groups=('ggi') depends=('libxxf86dga') source=(http://dl.sourceforge.net/sourceforge/ggi/$pkgname-$pkgver.src.tar.bz2 \ diff -Naur old/community/lib/libgiigic/PKGBUILD new/community/lib/libgiigic/PKGBUILD --- old/community/lib/libgiigic/PKGBUILD 2006-03-13 18:00:34.000000000 +0000 +++ new/community/lib/libgiigic/PKGBUILD 2007-08-03 13:28:47.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=2 pkgdesc="GII high-level key binding support" url="http://www.ggi-project.org/" -license="" +license=() groups=('ggi') depends=('libgii') source=(http://dl.sourceforge.net/sourceforge/ggi/$pkgname-$pkgver.src.tar.bz2) diff -Naur old/community/lib/libgtk-java/PKGBUILD new/community/lib/libgtk-java/PKGBUILD --- old/community/lib/libgtk-java/PKGBUILD 2006-06-13 16:29:01.000000000 +0100 +++ new/community/lib/libgtk-java/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="GTK2 java bindings for Java" url="http://java-gnome.sourceforge.net" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gtk2' 'cairo-java') makedepends=('gcc-gcj') source=(http://research.operationaldynamics.com/linux/java-gnome/dist/$pkgname-$pkgv...) diff -Naur old/community/lib/libgtksourceviewmm/PKGBUILD new/community/lib/libgtksourceviewmm/PKGBUILD --- old/community/lib/libgtksourceviewmm/PKGBUILD 2007-04-01 17:18:35.000000000 +0100 +++ new/community/lib/libgtksourceviewmm/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A C++ API for gtksourceview" arch=('i686' 'x86_64') url="http://home.gna.org/gtksourceviewmm/" -license="LGPL" +license=('LGPL') depends=('gtkmm' 'gtksourceview') makedepends=('doxygen') replaces=('gtksourceviewmm') diff -Naur old/community/lib/libisofs/PKGBUILD new/community/lib/libisofs/PKGBUILD --- old/community/lib/libisofs/PKGBUILD 2007-01-31 19:34:03.000000000 +0000 +++ new/community/lib/libisofs/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image" url="http://libburnia.pykix.org/" -license="GPL" +license=('GPL') depends=('glibc') makedepends=('libburn') source=(http://libburnia-download.pykix.org/releases/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/libmatio/PKGBUILD new/community/lib/libmatio/PKGBUILD --- old/community/lib/libmatio/PKGBUILD 2006-06-16 15:22:13.000000000 +0100 +++ new/community/lib/libmatio/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files" url="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=8187&objectType=File" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('zlib') source=(http://www.mathworks.com/matlabcentral/files/8187/matio.zip) md5sums=('c2b37ee40a418f44aea4399267fa2c52') diff -Naur old/community/lib/libmimic/PKGBUILD new/community/lib/libmimic/PKGBUILD --- old/community/lib/libmimic/PKGBUILD 2006-04-08 02:54:40.000000000 +0100 +++ new/community/lib/libmimic/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="An open source video encoding/decoding library for Mimic V2.x" url="http://farsight.sourceforge.net" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=() source=(http://dl.sourceforge.net/sourceforge/farsight/libmimic-$pkgver.tar.gz) md5sums=('94f0dbb1d3c253201553a4069555fb84') diff -Naur old/community/lib/libnewt/PKGBUILD new/community/lib/libnewt/PKGBUILD --- old/community/lib/libnewt/PKGBUILD 2007-05-13 20:11:49.000000000 +0100 +++ new/community/lib/libnewt/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Not Erik's Windowing Toolkit - text mode windowing with slang" arch=('i686' 'x86_64') url="http://www.redhat.com" -license="GPL" +license=('GPL') depends=('slang' 'popt') makedepends=('tcl') source=(http://ftp.debian.org/debian/pool/main/n/newt/newt_$pkgver.orig.tar.gz) diff -Naur old/community/lib/libofx/PKGBUILD new/community/lib/libofx/PKGBUILD --- old/community/lib/libofx/PKGBUILD 2007-03-09 01:52:57.000000000 +0000 +++ new/community/lib/libofx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="API for the OFX banking standard" arch=('i686' 'x86_64') url="http://libofx.sourceforge.net" -license="GPL" +license=('GPL') options=('NOLIBTOOL') depends=('opensp' 'curl') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/liboop/PKGBUILD new/community/lib/liboop/PKGBUILD --- old/community/lib/liboop/PKGBUILD 2006-04-08 02:56:30.000000000 +0100 +++ new/community/lib/liboop/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A low-level event loop management library" url="http://liboop.org" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('glib' 'glib2' 'readline' 'adns') source=(http://download.ofb.net/liboop/liboop-$pkgver.tar.bz2) md5sums=('88fc8decf99fd75d2af40e0a005fa0d3') diff -Naur old/community/lib/libquicktime/PKGBUILD new/community/lib/libquicktime/PKGBUILD --- old/community/lib/libquicktime/PKGBUILD 2007-04-24 00:22:03.000000000 +0100 +++ new/community/lib/libquicktime/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="a library for reading and writing quicktime files." arch=('i686') -license="GPL" +license=('GPL') url="http://libquicktime.sourceforge.net/" depends=('gtk2>=2.4' 'x264' 'libdv' 'ffmpeg' 'alsa-lib' 'mesa') options=('nolibtool') diff -Naur old/community/lib/librsync/PKGBUILD new/community/lib/librsync/PKGBUILD --- old/community/lib/librsync/PKGBUILD 2007-04-06 01:49:20.000000000 +0100 +++ new/community/lib/librsync/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A free software library that implements the rsync remote-delta algorithm (rdiff)." arch=('i686') url="http://librsync.sourceforge.net/" -license="GPL" +license=('GPL') depends=('popt' 'zlib' 'bzip2') options=('nolibtool') source=(http://downloads.sourceforge.net/sourceforge/librsync/$pkgname-$pkgver.tar.g...) diff -Naur old/community/lib/libtelepathy/PKGBUILD new/community/lib/libtelepathy/PKGBUILD --- old/community/lib/libtelepathy/PKGBUILD 2007-06-04 20:52:38.000000000 +0100 +++ new/community/lib/libtelepathy/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -8,7 +8,7 @@ url="http://telepathy.freedesktop.org" options=('!LIBTOOL') groups=('telepathy') -license="LGPL" +license=('LGPL') depends=('dbus-glib') makedepends=('pkgconfig') source=(http://telepathy.freedesktop.org/releases/libtelepathy/$pkgname-$pkgver.tar....) diff -Naur old/community/lib/libtlen/PKGBUILD new/community/lib/libtlen/PKGBUILD --- old/community/lib/libtlen/PKGBUILD 2006-06-24 11:00:54.000000000 +0100 +++ new/community/lib/libtlen/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="A Tlen.pl protocol library" url="http://libtlen.sourceforge.net/" -license="GPL" +license=('GPL') depends=(glibc) source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('b77c0a3234a21d1b79df8a8b9a9b9534') diff -Naur old/community/lib/libvc/PKGBUILD new/community/lib/libvc/PKGBUILD --- old/community/lib/libvc/PKGBUILD 2006-02-28 15:35:55.000000000 +0000 +++ new/community/lib/libvc/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="vCard library." url="http://rolo.sourceforge.net" -license="LGPL" +license=('LGPL') depends=('glibc') makedepends=() conflicts=() diff -Naur old/community/lib/libview/PKGBUILD new/community/lib/libview/PKGBUILD --- old/community/lib/libview/PKGBUILD 2007-05-10 10:32:33.000000000 +0100 +++ new/community/lib/libview/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ arch=('i686' 'x86_64') url="http://view.sourceforge.net" options=('NOLIBTOOL') -license="MIT" +license=('MIT') depends=('gtkmm') source=(http://dl.sf.net/sourceforge/view/libview-$pkgver.tar.gz) md5sums=('d602e3ae7e758488e459e6cab3ac154c') diff -Naur old/community/lib/libzzub/PKGBUILD new/community/lib/libzzub/PKGBUILD --- old/community/lib/libzzub/PKGBUILD 2007-05-12 15:46:42.000000000 +0100 +++ new/community/lib/libzzub/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A Buzz-like tracker library" arch=('i686') -license="GPL" +license=('GPL') url="http://trac.zeitherrschaft.org/zzub" makedepends=('scons') depends=('gcc' 'zlib' 'jack-audio-connection-kit') diff -Naur old/community/lib/lwp/PKGBUILD new/community/lib/lwp/PKGBUILD --- old/community/lib/lwp/PKGBUILD 2007-04-06 10:35:47.000000000 +0100 +++ new/community/lib/lwp/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Light weight process library" url="http://www.coda.cs.cmu.edu" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=() source=(http://www.coda.cs.cmu.edu/pub/lwp/src/lwp-$pkgver.tar.gz) md5sums=('8dfc35e6ef31598cfa35cb377e2387f8') diff -Naur old/community/lib/net6/PKGBUILD new/community/lib/net6/PKGBUILD --- old/community/lib/net6/PKGBUILD 2007-06-24 17:12:28.000000000 +0100 +++ new/community/lib/net6/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -8,7 +8,7 @@ arch=('i686' 'x86_64') url="http://gobby.0x539.de" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gnutls' 'libsigc++2.0') source=(http://releases.0x539.de/net6/net6-$pkgver.tar.gz) md5sums=('41f6bfce129029d8c4427d26a48b9ee2') diff -Naur old/community/lib/obby/PKGBUILD new/community/lib/obby/PKGBUILD --- old/community/lib/obby/PKGBUILD 2007-05-02 20:29:44.000000000 +0100 +++ new/community/lib/obby/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A library which provides synced document buffers" url="http://gobby.0x539.de" options=('NOLIBTOOL') -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('net6' 'avahi') source=(http://releases.0x539.de/obby/obby-$pkgver.tar.gz) diff -Naur old/community/lib/perl-algorithm-annotate/PKGBUILD new/community/lib/perl-algorithm-annotate/PKGBUILD --- old/community/lib/perl-algorithm-annotate/PKGBUILD 2007-05-18 17:44:54.000000000 +0100 +++ new/community/lib/perl-algorithm-annotate/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Algorithm::Annotate" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/Algorithm-Annotate" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/Algorithm-Annotate-0.10.tar.gz") md5sums=("453395489640e28fc772944ef08d396b") makedepends=("perl-algorithm-diff") diff -Naur old/community/lib/perl-algorithm-diff/PKGBUILD new/community/lib/perl-algorithm-diff/PKGBUILD --- old/community/lib/perl-algorithm-diff/PKGBUILD 2007-05-18 18:23:09.000000000 +0100 +++ new/community/lib/perl-algorithm-diff/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Algorithm::Diff : Diff also Longest Common Subsequence" arch=("i686" "x86_64") url="http://search.cpan.org/TYEMQ/Algorithm-Diff" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TY/TYEMQ/Algorithm-Diff-1.1902.tar.gz") md5sums=("ff3e17ae485f8adfb8857b183991fbce") build() { diff -Naur old/community/lib/perl-app-cli/PKGBUILD new/community/lib/perl-app-cli/PKGBUILD --- old/community/lib/perl-app-cli/PKGBUILD 2007-05-18 17:41:34.000000000 +0100 +++ new/community/lib/perl-app-cli/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module App::CLI" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/App-CLI" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/App-CLI-0.07.tar.gz") md5sums=("8981b0628874bb7e83b00b00e58a7259") makedepends=("perl-pod-simple-text" "perl-locale-maketext-simple") diff -Naur old/community/lib/perl-archive-extract/PKGBUILD new/community/lib/perl-archive-extract/PKGBUILD --- old/community/lib/perl-archive-extract/PKGBUILD 2007-05-18 18:13:45.000000000 +0100 +++ new/community/lib/perl-archive-extract/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Archive::Extract" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Archive-Extract" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Archive-Extract-0.18.tar.gz") md5sums=("2ce8d99284e708928f1e6b7c8a31dbd1") makedepends=("perl-locale-maketext-simple" "perl-module-load-conditional" "perl-ipc-cmd" "perl-params-check") diff -Naur old/community/lib/perl-authen-sasl/PKGBUILD new/community/lib/perl-authen-sasl/PKGBUILD --- old/community/lib/perl-authen-sasl/PKGBUILD 2007-05-18 17:44:21.000000000 +0100 +++ new/community/lib/perl-authen-sasl/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Authen::SASL : SASL authentication framework" arch=("i686" "x86_64") url="http://search.cpan.org/GBARR/Authen-SASL" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GB/GBARR/Authen-SASL-2.10.tar.gz") md5sums=("041ce912640c5dff626a91435a359b88") build() { diff -Naur old/community/lib/perl-berkeleydb/PKGBUILD new/community/lib/perl-berkeleydb/PKGBUILD --- old/community/lib/perl-berkeleydb/PKGBUILD 2007-05-18 18:27:11.000000000 +0100 +++ new/community/lib/perl-berkeleydb/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module BerkeleyDB : Interface to Berkeley DB version 2 3 or 4" arch=("i686" "x86_64") url="http://search.cpan.org/PMQS/BerkeleyDB" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PM/PMQS/BerkeleyDB-0.31.tar.gz") md5sums=("48e2cf29d37f457a35eedc3104c41eac") build() { diff -Naur old/community/lib/perl-cache-memcached/PKGBUILD new/community/lib/perl-cache-memcached/PKGBUILD --- old/community/lib/perl-cache-memcached/PKGBUILD 2007-05-18 17:45:01.000000000 +0100 +++ new/community/lib/perl-cache-memcached/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Cache::Memcached" arch=("i686" "x86_64") url="http://search.cpan.org/BRADFITZ/Cache-Memcached" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BR/BRADFITZ/Cache-Memcached-1.21.tar.gz") md5sums=("f8788f874f2c83a8836642bfdfa35ddd") makedepends=("perl-string-crc32") diff -Naur old/community/lib/perl-cgi-formbuilder/PKGBUILD new/community/lib/perl-cgi-formbuilder/PKGBUILD --- old/community/lib/perl-cgi-formbuilder/PKGBUILD 2007-05-18 18:23:59.000000000 +0100 +++ new/community/lib/perl-cgi-formbuilder/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module CGI::FormBuilder : Easily generate and process stateful forms" arch=("i686" "x86_64") url="http://search.cpan.org/NWIGER/CGI-FormBuilder" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/N/NW/NWIGER/CGI-FormBuilder-3.0501.tgz") md5sums=("65646f3064ecaef5e8c1dc38dd7c3807") build() { diff -Naur old/community/lib/perl-cgi-session/PKGBUILD new/community/lib/perl-cgi-session/PKGBUILD --- old/community/lib/perl-cgi-session/PKGBUILD 2007-05-18 18:27:47.000000000 +0100 +++ new/community/lib/perl-cgi-session/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module CGI::Session : Session management in CGI applications" arch=("i686" "x86_64") url="http://search.cpan.org/MARKSTOS/CGI-Session" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARKSTOS/CGI-Session-4.20.tar.gz") md5sums=("34740f5b944d42760816288f727f98fb") build() { diff -Naur old/community/lib/perl-class-accessor/PKGBUILD new/community/lib/perl-class-accessor/PKGBUILD --- old/community/lib/perl-class-accessor/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-class-accessor/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Accessor : Automated accessor generation" arch=('i686' 'x86_64') url="http://search.cpan.org/KASEI/Class-Accessor" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/K/KA/KASEI/Class-Accessor-0.30.tar.gz") md5sums=('7e880c9493e42154d8f636c9e5bc9c0a') provides=("perl-class-accessor-fast") diff -Naur old/community/lib/perl-class-accessor-chained/PKGBUILD new/community/lib/perl-class-accessor-chained/PKGBUILD --- old/community/lib/perl-class-accessor-chained/PKGBUILD 2007-05-18 17:51:15.000000000 +0100 +++ new/community/lib/perl-class-accessor-chained/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Accessor::Chained" arch=("i686" "x86_64") url="http://search.cpan.org/RCLAMP/Class-Accessor-Chained" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCLAMP/Class-Accessor-Chained-0.01.tar.g...") md5sums=("9825a1f30a70e55e61bb5660b2bd7365") makedepends=("perl-class-accessor") diff -Naur old/community/lib/perl-class-autouse/PKGBUILD new/community/lib/perl-class-autouse/PKGBUILD --- old/community/lib/perl-class-autouse/PKGBUILD 2007-05-18 17:56:28.000000000 +0100 +++ new/community/lib/perl-class-autouse/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Autouse" arch=("i686" "x86_64") url="http://search.cpan.org/ADAMK/Class-Autouse" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AD/ADAMK/Class-Autouse-1.27.tar.gz") md5sums=("f6b69cae6db84d6c1728384e6e7bd281") build() { diff -Naur old/community/lib/perl-class-data-inheritable/PKGBUILD new/community/lib/perl-class-data-inheritable/PKGBUILD --- old/community/lib/perl-class-data-inheritable/PKGBUILD 2007-05-18 17:54:06.000000000 +0100 +++ new/community/lib/perl-class-data-inheritable/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Data::Inheritable" arch=("i686" "x86_64") url="http://search.cpan.org/TMTM/Class-Data-Inheritable" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TM/TMTM/Class-Data-Inheritable-0.06.tar.gz") md5sums=("86d95ee16854a5503dc9f86a2f2ffa83") build() { diff -Naur old/community/lib/perl-class-errorhandler/PKGBUILD new/community/lib/perl-class-errorhandler/PKGBUILD --- old/community/lib/perl-class-errorhandler/PKGBUILD 2007-05-18 17:48:01.000000000 +0100 +++ new/community/lib/perl-class-errorhandler/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::ErrorHandler" arch=("i686" "x86_64") url="http://search.cpan.org/BTROTT/Class-ErrorHandler" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BT/BTROTT/Class-ErrorHandler-0.01.tar.gz") md5sums=("6a07ad34dfcdf510677f92e47643976d") build() { diff -Naur old/community/lib/perl-class-inspector/PKGBUILD new/community/lib/perl-class-inspector/PKGBUILD --- old/community/lib/perl-class-inspector/PKGBUILD 2007-05-18 18:24:11.000000000 +0100 +++ new/community/lib/perl-class-inspector/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Inspector" arch=("i686" "x86_64") url="http://search.cpan.org/ADAMK/Class-Inspector" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AD/ADAMK/Class-Inspector-1.16.tar.gz") md5sums=("46eeeeb5a5df0da03f4e53229f7ed360") build() { diff -Naur old/community/lib/perl-class-methodmaker/PKGBUILD new/community/lib/perl-class-methodmaker/PKGBUILD --- old/community/lib/perl-class-methodmaker/PKGBUILD 2007-05-18 17:54:48.000000000 +0100 +++ new/community/lib/perl-class-methodmaker/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::MethodMaker : Create generic class methods" arch=("i686" "x86_64") url="http://search.cpan.org/SCHWIGON/Class-MethodMaker" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodM...") md5sums=("97181580315dd9776eafae67827c909f") build() { diff -Naur old/community/lib/perl-class-singleton/PKGBUILD new/community/lib/perl-class-singleton/PKGBUILD --- old/community/lib/perl-class-singleton/PKGBUILD 2007-05-18 17:58:25.000000000 +0100 +++ new/community/lib/perl-class-singleton/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Singleton : Implementation of a Singleton class" arch=("i686" "x86_64") url="http://search.cpan.org/ABW/Class-Singleton" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AB/ABW/Class-Singleton-1.03.tar.gz") md5sums=("80202a57411cb3e939fec327a87564bf") build() { diff -Naur old/community/lib/perl-class-trigger/PKGBUILD new/community/lib/perl-class-trigger/PKGBUILD --- old/community/lib/perl-class-trigger/PKGBUILD 2007-05-18 17:43:29.000000000 +0100 +++ new/community/lib/perl-class-trigger/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Class::Trigger" arch=("i686" "x86_64") url="http://search.cpan.org/MIYAGAWA/Class-Trigger" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Class-Trigger-0.11.tar.gz") md5sums=("28cfe60971d8aecafc91afe55565aab2") makedepends=("perl-io-scalar") diff -Naur old/community/lib/perl-clone/PKGBUILD new/community/lib/perl-clone/PKGBUILD --- old/community/lib/perl-clone/PKGBUILD 2007-05-18 18:30:38.000000000 +0100 +++ new/community/lib/perl-clone/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Clone : Recursive copy of nested objects" arch=("i686" "x86_64") url="http://search.cpan.org/RDF/Clone" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RD/RDF/Clone-0.23.tar.gz") md5sums=("25a3637a240fb4ddc93e95d65c0dcf4d") build() { diff -Naur old/community/lib/perl-color-calc/PKGBUILD new/community/lib/perl-color-calc/PKGBUILD --- old/community/lib/perl-color-calc/PKGBUILD 2007-05-18 17:49:57.000000000 +0100 +++ new/community/lib/perl-color-calc/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Color::Calc : Simple calculations with RGB colors" arch=("i686" "x86_64") url="http://search.cpan.org/CFAERBER/Color-Calc" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CF/CFAERBER/Color-Calc-1.04.tar.gz") md5sums=("9a474f4600fb0381461fbd6b20ca0e1c") makedepends=("perl-params-validate" "perl-graphics-colornames-www" "perl-graphics-colornames") diff -Naur old/community/lib/perl-compress-zlib/PKGBUILD new/community/lib/perl-compress-zlib/PKGBUILD --- old/community/lib/perl-compress-zlib/PKGBUILD 2007-08-03 12:34:15.000000000 +0100 +++ new/community/lib/perl-compress-zlib/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Compress::Zlib : Interface to zlib compression library" arch=('i686' 'x86_64') url="http://search.cpan.org/~pmqs/Compress-Zlib/" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/P/PM/PMQS/Compress-Zlib-$pkgver.tar.gz") md5sums=('2eb448ae8ec536f4b6744882f02819d3') depends=("perl") diff -Naur old/community/lib/perl-convert-asn1/PKGBUILD new/community/lib/perl-convert-asn1/PKGBUILD --- old/community/lib/perl-convert-asn1/PKGBUILD 2007-05-18 18:15:14.000000000 +0100 +++ new/community/lib/perl-convert-asn1/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Convert::ASN1 : Standard endecode of ASN1 structures" arch=("i686" "x86_64") url="http://search.cpan.org/GBARR/Convert-ASN1" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GB/GBARR/Convert-ASN1-0.21.tar.gz") md5sums=("6f5c45724db1b09911e489275d19d0f5") build() { diff -Naur old/community/lib/perl-cpanplus/PKGBUILD new/community/lib/perl-cpanplus/PKGBUILD --- old/community/lib/perl-cpanplus/PKGBUILD 2007-05-18 18:31:23.000000000 +0100 +++ new/community/lib/perl-cpanplus/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module CPANPLUS : Commandline access to the CPAN interface" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/CPANPLUS" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/CPANPLUS-0.78.tar.gz") md5sums=("bd14f33f193515e401bef67b957617d7") build() { diff -Naur old/community/lib/perl-crypt-blowfish/PKGBUILD new/community/lib/perl-crypt-blowfish/PKGBUILD --- old/community/lib/perl-crypt-blowfish/PKGBUILD 2007-05-18 18:28:04.000000000 +0100 +++ new/community/lib/perl-crypt-blowfish/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Crypt::Blowfish : XSbased implementation of Blowfish" arch=("i686" "x86_64") url="http://search.cpan.org/DPARIS/Crypt-Blowfish" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DP/DPARIS/Crypt-Blowfish-2.10.tar.gz") md5sums=("15b53308df3b29a62a9f2f718aace19a") build() { diff -Naur old/community/lib/perl-crypt-cbc/PKGBUILD new/community/lib/perl-crypt-cbc/PKGBUILD --- old/community/lib/perl-crypt-cbc/PKGBUILD 2007-05-18 17:38:07.000000000 +0100 +++ new/community/lib/perl-crypt-cbc/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Crypt::CBC : Cipherblock chaining for CryptDESIDEA" arch=("i686" "x86_64") url="http://search.cpan.org/LDS/Crypt-CBC" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/L/LD/LDS/Crypt-CBC-2.22.tar.gz") md5sums=("02622a5f0e70c1bc45c8db7985606643") build() { diff -Naur old/community/lib/perl-crypt-openssl-bignum/PKGBUILD new/community/lib/perl-crypt-openssl-bignum/PKGBUILD --- old/community/lib/perl-crypt-openssl-bignum/PKGBUILD 2007-06-25 10:24:25.000000000 +0100 +++ new/community/lib/perl-crypt-openssl-bignum/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686) url="http://search.cpan.org/~IROBERTS/Crypt-OpenSSL-Bignum" depends=('perl') -license="GPL" +license=('GPL') option=('noemptydirs') source=(http://www.cpan.org/authors/id/I/IR/IROBERTS/Crypt-OpenSSL-Bignum-$pkgver.ta...) md5sums=('9369ef722b0705c0604998559988eb18') diff -Naur old/community/lib/perl-crypt-openssl-random/PKGBUILD new/community/lib/perl-crypt-openssl-random/PKGBUILD --- old/community/lib/perl-crypt-openssl-random/PKGBUILD 2007-06-09 12:19:26.000000000 +0100 +++ new/community/lib/perl-crypt-openssl-random/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686) url="http://search.cpan.org/~IROBERTS/Crypt-OpenSSL-Random" depends=('perl') -license="GPL" +license=('GPL') option=('noemptydirs') source=(http://www.cpan.org/authors/id/I/IR/IROBERTS/Crypt-OpenSSL-Random-$pkgver.ta...) md5sums=('c56ac5dbdd46122eb9b8da59613b7b0a') diff -Naur old/community/lib/perl-crypt-openssl-rsa/PKGBUILD new/community/lib/perl-crypt-openssl-rsa/PKGBUILD --- old/community/lib/perl-crypt-openssl-rsa/PKGBUILD 2007-06-26 20:23:30.000000000 +0100 +++ new/community/lib/perl-crypt-openssl-rsa/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686) url="http://search.cpan.org/~IROBERTS/Crypt-OpenSSL-RSA" depends=('perl-crypt-openssl-random' 'perl-crypt-openssl-bignum') -license="GPL" +license=('GPL') option=('noemptydirs') source=(http://www.cpan.org/authors/id/I/IR/IROBERTS/Crypt-OpenSSL-RSA-$pkgver.tar.g...) md5sums=('fdf19c9093f47cffb851ae937d053c14') diff -Naur old/community/lib/perl-crypt-simple/PKGBUILD new/community/lib/perl-crypt-simple/PKGBUILD --- old/community/lib/perl-crypt-simple/PKGBUILD 2007-05-18 18:30:23.000000000 +0100 +++ new/community/lib/perl-crypt-simple/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Crypt::Simple" arch=("i686" "x86_64") url="http://search.cpan.org/KASEI/Crypt-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KASEI/Crypt-Simple-0.06.tar.gz") md5sums=("cdea18a98593364855f27afcb8519ec0") build() { diff -Naur old/community/lib/perl-crypt-ssleay/PKGBUILD new/community/lib/perl-crypt-ssleay/PKGBUILD --- old/community/lib/perl-crypt-ssleay/PKGBUILD 2007-05-18 17:49:13.000000000 +0100 +++ new/community/lib/perl-crypt-ssleay/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Crypt::SSLeay : OpenSSL glue that provides LWP https support" arch=("i686" "x86_64") url="http://search.cpan.org/DLAND/Crypt-SSLeay" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DL/DLAND/Crypt-SSLeay-0.54.tar.gz") md5sums=("7b2807e0c994eaca89221c053e7bb58d") depends=("openssl") diff -Naur old/community/lib/perl-curses/PKGBUILD new/community/lib/perl-curses/PKGBUILD --- old/community/lib/perl-curses/PKGBUILD 2007-05-18 18:19:12.000000000 +0100 +++ new/community/lib/perl-curses/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Curses : Character screen handling and windowing" arch=("i686" "x86_64") url="http://search.cpan.org/GIRAFFED/Curses" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GI/GIRAFFED/Curses-1.15.tgz") md5sums=("6f3c5ea61cbbfabe15b0004febcb3a4d") depends=("ncurses") diff -Naur old/community/lib/perl-curses-ui/PKGBUILD new/community/lib/perl-curses-ui/PKGBUILD --- old/community/lib/perl-curses-ui/PKGBUILD 2007-05-18 18:28:25.000000000 +0100 +++ new/community/lib/perl-curses-ui/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Curses::UI" arch=("i686" "x86_64") url="http://search.cpan.org/MARCUS/Curses-UI" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARCUS/Curses-UI-0.95.tar.gz") md5sums=("f1ee30de6cbba611acca785fa668d8b8") makedepends=("perl-curses" "perl-term-readkey" "perl-test-pod") diff -Naur old/community/lib/perl-curses-ui-poe/PKGBUILD new/community/lib/perl-curses-ui-poe/PKGBUILD --- old/community/lib/perl-curses-ui-poe/PKGBUILD 2007-05-18 18:32:02.000000000 +0100 +++ new/community/lib/perl-curses-ui-poe/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Curses::UI::POE : A subclass that forces CursesUI to use POE" arch=("i686" "x86_64") url="http://search.cpan.org/TAG/Curses-UI-POE" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TA/TAG/Curses-UI-POE-0.02801.tar.gz") md5sums=("b5a97d0f9a13c6b04f60427d8bd173d9") makedepends=("perl-curses-ui" "perl-poe") diff -Naur old/community/lib/perl-data-hierarchy/PKGBUILD new/community/lib/perl-data-hierarchy/PKGBUILD --- old/community/lib/perl-data-hierarchy/PKGBUILD 2007-05-18 18:29:59.000000000 +0100 +++ new/community/lib/perl-data-hierarchy/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Data::Hierarchy" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/Data-Hierarchy" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/Data-Hierarchy-0.34.tar.gz") md5sums=("f4ac04c7f676cbfff9bbd1be118d4c66") makedepends=("perl-test-exception") diff -Naur old/community/lib/perl-data-structure-util/PKGBUILD new/community/lib/perl-data-structure-util/PKGBUILD --- old/community/lib/perl-data-structure-util/PKGBUILD 2007-05-18 17:42:56.000000000 +0100 +++ new/community/lib/perl-data-structure-util/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Data::Structure::Util" arch=("i686" "x86_64") url="http://search.cpan.org/FOTANGO/Data-Structure-Util" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FO/FOTANGO/Data-Structure-Util-0.12.tar.gz") md5sums=("1af2a4149ba81f42d11dbfaecbaf5973") build() { diff -Naur old/community/lib/perl-data-uuid/PKGBUILD new/community/lib/perl-data-uuid/PKGBUILD --- old/community/lib/perl-data-uuid/PKGBUILD 2007-05-18 17:55:11.000000000 +0100 +++ new/community/lib/perl-data-uuid/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Data::UUID" arch=("i686" "x86_64") url="http://search.cpan.org/RJBS/Data-UUID" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RJ/RJBS/Data-UUID-1.148.tar.gz") md5sums=("23ccf452a798e865821c3b0770a5f736") build() { diff -Naur old/community/lib/perl-date-format/PKGBUILD new/community/lib/perl-date-format/PKGBUILD --- old/community/lib/perl-date-format/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-date-format/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Date::Format : Date formatter ala strftime" arch=('i686' 'x86_64') url="http://search.cpan.org/GBARR/TimeDate" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/G/GB/GBARR/TimeDate-1.16.tar.gz") md5sums=('b3cc35a7cabd106ac8829d2f2ff4bd9d') provides=("perl-date-parse" "perl-time-zone") diff -Naur old/community/lib/perl-datetime/PKGBUILD new/community/lib/perl-datetime/PKGBUILD --- old/community/lib/perl-datetime/PKGBUILD 2007-05-18 17:58:48.000000000 +0100 +++ new/community/lib/perl-datetime/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime : A complete easy to use date and time object" arch=("i686" "x86_64") url="http://search.cpan.org/DROLSKY/DateTime" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-0.37.tar.gz") md5sums=("5f2f9a59c92acce6a023bc68c69a83ee") makedepends=("perl-datetime-timezone" "perl-datetime-locale" "perl-params-validate") diff -Naur old/community/lib/perl-datetime-cron-simple/PKGBUILD new/community/lib/perl-datetime-cron-simple/PKGBUILD --- old/community/lib/perl-datetime-cron-simple/PKGBUILD 2007-05-18 18:05:22.000000000 +0100 +++ new/community/lib/perl-datetime-cron-simple/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Cron::Simple" arch=("i686" "x86_64") url="http://search.cpan.org/BITS/DateTime-Cron-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BI/BITS/DateTime-Cron-Simple-0.2.tar.gz") md5sums=("a7c2b3f9dadd56d707684bef08bb895f") build() { diff -Naur old/community/lib/perl-datetime-event-ical/PKGBUILD new/community/lib/perl-datetime-event-ical/PKGBUILD --- old/community/lib/perl-datetime-event-ical/PKGBUILD 2007-05-18 18:09:47.000000000 +0100 +++ new/community/lib/perl-datetime-event-ical/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Event::ICal" arch=("i686" "x86_64") url="http://search.cpan.org/FGLOCK/DateTime-Event-ICal" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FG/FGLOCK/DateTime-Event-ICal-0.09.tar.gz") md5sums=("a68e58f5aac48a739249118d078e9947") makedepends=("perl-datetime" "perl-datetime-event-recurrence") diff -Naur old/community/lib/perl-datetime-event-recurrence/PKGBUILD new/community/lib/perl-datetime-event-recurrence/PKGBUILD --- old/community/lib/perl-datetime-event-recurrence/PKGBUILD 2007-05-18 17:40:49.000000000 +0100 +++ new/community/lib/perl-datetime-event-recurrence/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Event::Recurrence" arch=("i686" "x86_64") url="http://search.cpan.org/FGLOCK/DateTime-Event-Recurrence" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FG/FGLOCK/DateTime-Event-Recurrence-0.16.ta...") md5sums=("9a08830b081a93619f4a8564063e3bf0") makedepends=("perl-datetime" "perl-datetime-set") diff -Naur old/community/lib/perl-datetime-format-ical/PKGBUILD new/community/lib/perl-datetime-format-ical/PKGBUILD --- old/community/lib/perl-datetime-format-ical/PKGBUILD 2007-05-18 17:47:45.000000000 +0100 +++ new/community/lib/perl-datetime-format-ical/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Format::ICal" arch=("i686" "x86_64") url="http://search.cpan.org/DROLSKY/DateTime-Format-ICal" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-ICal-0.08.tar.gz") md5sums=("b0be692f3a84f2a7f73a39220ec69a52") makedepends=("perl-datetime-timezone" "perl-datetime-event-ical" "perl-datetime" "perl-params-validate" "perl-datetime-set") diff -Naur old/community/lib/perl-datetime-format-mail/PKGBUILD new/community/lib/perl-datetime-format-mail/PKGBUILD --- old/community/lib/perl-datetime-format-mail/PKGBUILD 2007-05-18 18:03:59.000000000 +0100 +++ new/community/lib/perl-datetime-format-mail/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Format::Mail" arch=("i686" "x86_64") url="http://search.cpan.org/DROLSKY/DateTime-Format-Mail" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-Mail-0.30.tar.gz") md5sums=("d3940d6b387b75de0332201db1685e7d") makedepends=("perl-datetime" "perl-params-validate") diff -Naur old/community/lib/perl-datetime-format-strptime/PKGBUILD new/community/lib/perl-datetime-format-strptime/PKGBUILD --- old/community/lib/perl-datetime-format-strptime/PKGBUILD 2007-05-18 17:42:07.000000000 +0100 +++ new/community/lib/perl-datetime-format-strptime/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Format::Strptime : Parse and Format DateTimes using Strptime" arch=("i686" "x86_64") url="http://search.cpan.org/RICKM/DateTime-Format-Strptime" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RI/RICKM/DateTime-Format-Strptime-1.0700.ta...") md5sums=("fcda7127b01dcad43ca7cf30be9a1dc6") makedepends=("perl-datetime-timezone" "perl-datetime-locale" "perl-datetime" "perl-params-validate") diff -Naur old/community/lib/perl-datetime-format-w3cdtf/PKGBUILD new/community/lib/perl-datetime-format-w3cdtf/PKGBUILD --- old/community/lib/perl-datetime-format-w3cdtf/PKGBUILD 2007-05-18 18:18:06.000000000 +0100 +++ new/community/lib/perl-datetime-format-w3cdtf/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Format::W3CDTF" arch=("i686" "x86_64") url="http://search.cpan.org/KELLAN/DateTime-Format-W3CDTF" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KE/KELLAN/DateTime-Format-W3CDTF-0.04.tar.g...") md5sums=("5ad0a41bb5de08f9c16395ea311bb491") build() { diff -Naur old/community/lib/perl-datetime-locale/PKGBUILD new/community/lib/perl-datetime-locale/PKGBUILD --- old/community/lib/perl-datetime-locale/PKGBUILD 2007-05-18 18:30:08.000000000 +0100 +++ new/community/lib/perl-datetime-locale/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Locale" arch=("i686" "x86_64") url="http://search.cpan.org/DROLSKY/DateTime-Locale" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Locale-0.34.tar.gz") md5sums=("18753fcc10e72f0a63f926f8790e7fc3") makedepends=("perl-params-validate") diff -Naur old/community/lib/perl-datetime-set/PKGBUILD new/community/lib/perl-datetime-set/PKGBUILD --- old/community/lib/perl-datetime-set/PKGBUILD 2007-05-18 17:49:20.000000000 +0100 +++ new/community/lib/perl-datetime-set/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::Set" arch=("i686" "x86_64") url="http://search.cpan.org/FGLOCK/DateTime-Set" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FG/FGLOCK/DateTime-Set-0.25.tar.gz") md5sums=("777f0d8c2f6c6092cd7a70bf7e701831") makedepends=("perl-datetime" "perl-set-infinite") diff -Naur old/community/lib/perl-datetime-timezone/PKGBUILD new/community/lib/perl-datetime-timezone/PKGBUILD --- old/community/lib/perl-datetime-timezone/PKGBUILD 2007-05-18 17:56:41.000000000 +0100 +++ new/community/lib/perl-datetime-timezone/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DateTime::TimeZone" arch=("i686" "x86_64") url="http://search.cpan.org/DROLSKY/DateTime-TimeZone" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-TimeZone-0.6601.tar.gz") md5sums=("61c4f717f1b7ddb969618f0a4ce035ed") makedepends=("perl-class-singleton" "perl-params-validate") diff -Naur old/community/lib/perl-dbd-sqlite2/PKGBUILD new/community/lib/perl-dbd-sqlite2/PKGBUILD --- old/community/lib/perl-dbd-sqlite2/PKGBUILD 2007-05-18 17:53:17.000000000 +0100 +++ new/community/lib/perl-dbd-sqlite2/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DBD::SQLite2" arch=("i686" "x86_64") url="http://search.cpan.org/MSERGEANT/DBD-SQLite2" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSERGEANT/DBD-SQLite2-0.33.tar.gz") md5sums=("babd83fd5eb9ba7560ad4bab4c76c0eb") makedepends=("perl-dbi") diff -Naur old/community/lib/perl-dbi-shell/PKGBUILD new/community/lib/perl-dbi-shell/PKGBUILD --- old/community/lib/perl-dbi-shell/PKGBUILD 2007-05-18 17:42:49.000000000 +0100 +++ new/community/lib/perl-dbi-shell/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module DBI::Shell" arch=("i686" "x86_64") url="http://search.cpan.org/TLOWERY/DBI-Shell" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TL/TLOWERY/DBI-Shell-11.94.tar.gz") md5sums=("ac2334518e77ffca276132f4ed7323cc") makedepends=("perl-text-reform" "perl-io-tee") diff -Naur old/community/lib/perl-devel-symdump/PKGBUILD new/community/lib/perl-devel-symdump/PKGBUILD --- old/community/lib/perl-devel-symdump/PKGBUILD 2007-05-18 17:49:27.000000000 +0100 +++ new/community/lib/perl-devel-symdump/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Devel::Symdump : Perl symbol table access and dumping" arch=("i686" "x86_64") url="http://search.cpan.org/ANDK/Devel-Symdump" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-2.07.tar.gz") md5sums=("4c7dfb240687cf0105ca7e81d07781bf") build() { diff -Naur old/community/lib/perl-digest-hmac-md5/PKGBUILD new/community/lib/perl-digest-hmac-md5/PKGBUILD --- old/community/lib/perl-digest-hmac-md5/PKGBUILD 2007-05-18 17:53:25.000000000 +0100 +++ new/community/lib/perl-digest-hmac-md5/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Digest::HMAC_MD5" arch=("i686" "x86_64") url="http://search.cpan.org/GAAS/Digest-HMAC" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GA/GAAS/Digest-HMAC-1.01.tar.gz") md5sums=("32dc54c765100c638b5d7f7ff4c5c626") build() { diff -Naur old/community/lib/perl-digest-sha/PKGBUILD new/community/lib/perl-digest-sha/PKGBUILD --- old/community/lib/perl-digest-sha/PKGBUILD 2007-05-18 18:23:29.000000000 +0100 +++ new/community/lib/perl-digest-sha/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Digest::SHA : Perl extension for SHA1224256384512" arch=("i686" "x86_64") url="http://search.cpan.org/MSHELOR/Digest-SHA" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSHELOR/Digest-SHA-5.44.tar.gz") md5sums=("bddab365973a795baddc3ec3fb84d16e") build() { diff -Naur old/community/lib/perl-event-execflow/PKGBUILD new/community/lib/perl-event-execflow/PKGBUILD --- old/community/lib/perl-event-execflow/PKGBUILD 2007-05-18 17:48:07.000000000 +0100 +++ new/community/lib/perl-event-execflow/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Event::ExecFlow" arch=("i686" "x86_64") url="http://search.cpan.org/JRED/Event-ExecFlow" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JR/JRED/Event-ExecFlow-0.63.tar.gz") md5sums=("79116732b550701a3436a448581e01da") makedepends=("perl-anyevent" "perl-locale-textdomain") diff -Naur old/community/lib/perl-extutils-depends/PKGBUILD new/community/lib/perl-extutils-depends/PKGBUILD --- old/community/lib/perl-extutils-depends/PKGBUILD 2007-05-18 18:14:11.000000000 +0100 +++ new/community/lib/perl-extutils-depends/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module ExtUtils::Depends" arch=("i686" "x86_64") url="http://search.cpan.org/RMCFARLA/ExtUtils-Depends" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RM/RMCFARLA/Gtk2-Perl/ExtUtils-Depends-0.20...") md5sums=("02c22a93ec9efb8e457764114ce24eb4") build() { diff -Naur old/community/lib/perl-extutils-pkgconfig/PKGBUILD new/community/lib/perl-extutils-pkgconfig/PKGBUILD --- old/community/lib/perl-extutils-pkgconfig/PKGBUILD 2007-05-18 17:46:05.000000000 +0100 +++ new/community/lib/perl-extutils-pkgconfig/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module ExtUtils::PkgConfig" arch=("i686" "x86_64") url="http://search.cpan.org/RMCFARLA/ExtUtils-PkgConfig" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RM/RMCFARLA/Gtk2-Perl/ExtUtils-PkgConfig-1....") md5sums=("a8cf945d09c6458cb27228218e9a2f45") build() { diff -Naur old/community/lib/perl-extutils-xsbuilder/PKGBUILD new/community/lib/perl-extutils-xsbuilder/PKGBUILD --- old/community/lib/perl-extutils-xsbuilder/PKGBUILD 2007-05-18 17:40:56.000000000 +0100 +++ new/community/lib/perl-extutils-xsbuilder/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module ExtUtils::XSBuilder" arch=("i686" "x86_64") url="http://search.cpan.org/GRICHTER/ExtUtils-XSBuilder" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GR/GRICHTER/ExtUtils-XSBuilder-0.28.tar.gz") md5sums=("1d33ddeacc01426a02e23c71c2e4cd04") makedepends=("perl-tie-ixhash" "perl-parse-recdescent") diff -Naur old/community/lib/perl-fcgi/PKGBUILD new/community/lib/perl-fcgi/PKGBUILD --- old/community/lib/perl-fcgi/PKGBUILD 2007-05-18 18:22:17.000000000 +0100 +++ new/community/lib/perl-fcgi/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module FCGI : Fast CGI" arch=("i686" "x86_64") url="http://search.cpan.org/SKIMO/FCGI" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SK/SKIMO/FCGI-0.67.tar.gz") md5sums=("2e9b5bd1f74290fd9788555e8108a3d2") build() { diff -Naur old/community/lib/perl-feed-find/PKGBUILD new/community/lib/perl-feed-find/PKGBUILD --- old/community/lib/perl-feed-find/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-feed-find/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Feed::Find" arch=("i686" "x86_64") url="http://search.cpan.org/BTROTT/Feed-Find" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BT/BTROTT/Feed-Find-0.06.tar.gz") md5sums=("be4537f652d41243cbf98f5e937d16f3") makedepends=("perl-uri" "perl-html-parser" "perl-libwww" "perl-class-errorhandler") diff -Naur old/community/lib/perl-file-chdir/PKGBUILD new/community/lib/perl-file-chdir/PKGBUILD --- old/community/lib/perl-file-chdir/PKGBUILD 2007-07-31 01:43:59.000000000 +0100 +++ new/community/lib/perl-file-chdir/PKGBUILD 2007-08-03 13:16:32.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::chdir" arch=("i686" "x86_64") url="http://search.cpan.org/MSCHWERN/File-chdir" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/File-chdir-0.08.tar.gz") md5sums=("af3e657e4cfa224cdf3200dddf84bf37") build() { diff -Naur old/community/lib/perl-file-fetch/PKGBUILD new/community/lib/perl-file-fetch/PKGBUILD --- old/community/lib/perl-file-fetch/PKGBUILD 2007-05-18 18:28:10.000000000 +0100 +++ new/community/lib/perl-file-fetch/PKGBUILD 2007-08-03 13:16:32.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::Fetch" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/File-Fetch" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/File-Fetch-0.10.tar.gz") md5sums=("515746879e2ef1aa780e24c1e7b7f04f") makedepends=("perl-locale-maketext-simple" "perl-ipc-cmd" "perl-params-check" "perl-module-load-conditional") diff -Naur old/community/lib/perl-file-homedir/PKGBUILD new/community/lib/perl-file-homedir/PKGBUILD --- old/community/lib/perl-file-homedir/PKGBUILD 2007-05-18 18:12:56.000000000 +0100 +++ new/community/lib/perl-file-homedir/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::HomeDir" arch=("i686" "x86_64") url="http://search.cpan.org/ADAMK/File-HomeDir" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AD/ADAMK/File-HomeDir-0.65.tar.gz") md5sums=("82b4ddff5b9fc55f5b80e1af2e640835") build() { diff -Naur old/community/lib/perl-file-nfslock/PKGBUILD new/community/lib/perl-file-nfslock/PKGBUILD --- old/community/lib/perl-file-nfslock/PKGBUILD 2007-05-18 17:48:21.000000000 +0100 +++ new/community/lib/perl-file-nfslock/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::NFSLock : NFS compatible safe locking utility" arch=("i686" "x86_64") url="http://search.cpan.org/BBB/File-NFSLock" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BB/BBB/File-NFSLock-1.20.tar.gz") md5sums=("68bddc5e2c32d9748ae689f398fc1147") build() { diff -Naur old/community/lib/perl-file-path-expand/PKGBUILD new/community/lib/perl-file-path-expand/PKGBUILD --- old/community/lib/perl-file-path-expand/PKGBUILD 2007-05-18 18:17:00.000000000 +0100 +++ new/community/lib/perl-file-path-expand/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::Path::Expand" arch=("i686" "x86_64") url="http://search.cpan.org/RCLAMP/File-Path-Expand" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCLAMP/File-Path-Expand-1.02.tar.gz") md5sums=("742aa40a4ffb26d14de01192764bd7ab") build() { diff -Naur old/community/lib/perl-file-remove/PKGBUILD new/community/lib/perl-file-remove/PKGBUILD --- old/community/lib/perl-file-remove/PKGBUILD 2007-05-18 17:44:27.000000000 +0100 +++ new/community/lib/perl-file-remove/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::Remove : Remove files and directories" arch=("i686" "x86_64") url="http://search.cpan.org/ADAMK/File-Remove" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AD/ADAMK/File-Remove-0.34.tar.gz") md5sums=("91d2a50209c0cf070e26e407b888b3d4") build() { diff -Naur old/community/lib/perl-file-slurp/PKGBUILD new/community/lib/perl-file-slurp/PKGBUILD --- old/community/lib/perl-file-slurp/PKGBUILD 2007-05-18 17:57:00.000000000 +0100 +++ new/community/lib/perl-file-slurp/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::Slurp : Readwriteappend files quickly" arch=("i686" "x86_64") url="http://search.cpan.org/URI/File-Slurp" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/U/UR/URI/File-Slurp-9999.12.tar.gz") md5sums=("6a162082834307bac95be3e3fc955ce9") build() { diff -Naur old/community/lib/perl-file-type/PKGBUILD new/community/lib/perl-file-type/PKGBUILD --- old/community/lib/perl-file-type/PKGBUILD 2007-05-18 18:15:21.000000000 +0100 +++ new/community/lib/perl-file-type/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::Type" arch=("i686" "x86_64") url="http://search.cpan.org/PMISON/File-Type" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PM/PMISON/File-Type-0.22.tar.gz") md5sums=("4be3b0b7000b325c60351fcc8a04815d") build() { diff -Naur old/community/lib/perl-file-which/PKGBUILD new/community/lib/perl-file-which/PKGBUILD --- old/community/lib/perl-file-which/PKGBUILD 2007-05-18 17:56:21.000000000 +0100 +++ new/community/lib/perl-file-which/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module File::Which : Portable implementation of which" arch=("i686" "x86_64") url="http://search.cpan.org/PEREINAR/File-Which" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PE/PEREINAR/File-Which-0.05.tar.gz") md5sums=("bd671a65f770fc0a124095e74c7c8013") build() { diff -Naur old/community/lib/perl-finance-quote/PKGBUILD new/community/lib/perl-finance-quote/PKGBUILD --- old/community/lib/perl-finance-quote/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-finance-quote/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Finance::Quote : Fetch stock prices over the Internet" arch=("i686" "x86_64") url="http://search.cpan.org/HAMPTON/Finance-Quote" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/H/HA/HAMPTON/Finance-Quote-1.13.tar.gz") md5sums=("3619ccb3fb09ed9eebe1941e6cf361c9") makedepends=( "perl-html-tableextract" "perl-crypt-ssleay" "perl-libwww") diff -Naur old/community/lib/perl-font-afm/PKGBUILD new/community/lib/perl-font-afm/PKGBUILD --- old/community/lib/perl-font-afm/PKGBUILD 2007-05-18 18:10:09.000000000 +0100 +++ new/community/lib/perl-font-afm/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Font::AFM : Parse Adobe Font Metric files" arch=("i686" "x86_64") url="http://search.cpan.org/GAAS/Font-AFM" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GA/GAAS/Font-AFM-1.19.tar.gz") md5sums=("f72a12a20656c41b29a79c985bd231c9") build() { diff -Naur old/community/lib/perl-freezethaw/PKGBUILD new/community/lib/perl-freezethaw/PKGBUILD --- old/community/lib/perl-freezethaw/PKGBUILD 2007-05-18 18:14:19.000000000 +0100 +++ new/community/lib/perl-freezethaw/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module FreezeThaw : Convert arbitrary objects tofrom strings" arch=("i686" "x86_64") url="http://search.cpan.org/ILYAZ/FreezeThaw" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/I/IL/ILYAZ/modules/FreezeThaw-0.43.tar.gz") md5sums=("705efa533b366151953a5e2b1744650f") build() { diff -Naur old/community/lib/perl-fuse/PKGBUILD new/community/lib/perl-fuse/PKGBUILD --- old/community/lib/perl-fuse/PKGBUILD 2007-07-18 03:52:07.000000000 +0100 +++ new/community/lib/perl-fuse/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686) url="http://search.cpan.org/~DPAVLIN/Fuse" depends=('perl' 'fuse') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/D/DP/DPAVLIN/Fuse-$pkgver.tar.gz) md5sums=('163345265c99ddc87e40fe5d46596863') diff -Naur old/community/lib/perl-getopt-argvfile/PKGBUILD new/community/lib/perl-getopt-argvfile/PKGBUILD --- old/community/lib/perl-getopt-argvfile/PKGBUILD 2007-05-18 18:24:18.000000000 +0100 +++ new/community/lib/perl-getopt-argvfile/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Getopt::ArgvFile : Take options from files" arch=("i686" "x86_64") url="http://search.cpan.org/JSTENZEL/Getopt-ArgvFile" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JS/JSTENZEL/Getopt-ArgvFile-1.11.tar.gz") md5sums=("42117db2af4a24c062b2da25d4fdf756") build() { diff -Naur old/community/lib/perl-gettext/PKGBUILD new/community/lib/perl-gettext/PKGBUILD --- old/community/lib/perl-gettext/PKGBUILD 2007-05-18 18:05:31.000000000 +0100 +++ new/community/lib/perl-gettext/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Gettext" arch=("i686" "x86_64") url="http://search.cpan.org/JBRIGGS/Gettext" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JB/JBRIGGS/Gettext-0.01.tar.gz") md5sums=("4dcd26e2f02595310bda1c952633b8db") build() { diff -Naur old/community/lib/perl-glib/PKGBUILD new/community/lib/perl-glib/PKGBUILD --- old/community/lib/perl-glib/PKGBUILD 2007-05-18 18:21:42.000000000 +0100 +++ new/community/lib/perl-glib/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Glib : Bindings for the glib2x UI Toolkit" arch=("i686" "x86_64") url="http://search.cpan.org/TSCH/Glib" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TS/TSCH/Glib-1.144.tar.gz") md5sums=("8d7b9a6cd0707a402752d58f82fbe528") makedepends=("perl-extutils-depends" "perl-extutils-pkgconfig") diff -Naur old/community/lib/perl-graphics-colornames/PKGBUILD new/community/lib/perl-graphics-colornames/PKGBUILD --- old/community/lib/perl-graphics-colornames/PKGBUILD 2007-05-18 18:31:34.000000000 +0100 +++ new/community/lib/perl-graphics-colornames/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Graphics::ColorNames : provides RGB values for standard color names" arch=("i686" "x86_64") url="http://search.cpan.org/RRWO/Graphics-ColorNames" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RR/RRWO/Graphics-ColorNames-1.06.tar.gz") md5sums=("0551cb0b17babcbdef284d5b502731a4") makedepends=("perl-module-load") diff -Naur old/community/lib/perl-graphics-colornames-www/PKGBUILD new/community/lib/perl-graphics-colornames-www/PKGBUILD --- old/community/lib/perl-graphics-colornames-www/PKGBUILD 2007-05-18 17:55:01.000000000 +0100 +++ new/community/lib/perl-graphics-colornames-www/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Graphics::ColorNames::WWW" arch=("i686" "x86_64") url="http://search.cpan.org/CFAERBER/Graphics-ColorNames-WWW" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CF/CFAERBER/Graphics-ColorNames-WWW-0.01.ta...") md5sums=("e8cb5f84b94fdb57f5bc4e6f988f1189") makedepends=("perl-graphics-colornames") diff -Naur old/community/lib/perl-gssapi/PKGBUILD new/community/lib/perl-gssapi/PKGBUILD --- old/community/lib/perl-gssapi/PKGBUILD 2007-05-18 18:28:40.000000000 +0100 +++ new/community/lib/perl-gssapi/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module GSSAPI" arch=("i686" "x86_64") url="http://search.cpan.org/AGROLMS/GSSAPI" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AG/AGROLMS/GSSAPI-0.24.tar.gz") md5sums=("403e856559fb4264bab748206125c3e7") build() { diff -Naur old/community/lib/perl-gtk2-sexy/PKGBUILD new/community/lib/perl-gtk2-sexy/PKGBUILD --- old/community/lib/perl-gtk2-sexy/PKGBUILD 2007-07-20 17:22:55.000000000 +0100 +++ new/community/lib/perl-gtk2-sexy/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -16,7 +16,7 @@ pkgdesc="Perl/CPAN Module Gtk2::Sexy" arch=('i686' 'x86_64') url="http://search.cpan.org/search?query=Gtk2::Sexy" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') depends=('gtk2') makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') source=("http://www.cpan.org/authors/id/F/FL/FLORA/Gtk2-Sexy-0.02.tar.gz") diff -Naur old/community/lib/perl-gtk2-trayicon/PKGBUILD new/community/lib/perl-gtk2-trayicon/PKGBUILD --- old/community/lib/perl-gtk2-trayicon/PKGBUILD 2007-08-03 12:34:15.000000000 +0100 +++ new/community/lib/perl-gtk2-trayicon/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ url="http://gtk2-perl.sourceforge.net/doc/pod/Gtk2/TrayIcon.html" depends=('gtk2-perl') makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') -license="GPL" +license=('GPL') source=(http://dl.sourceforge.net/sourceforge/gtk2-perl/Gtk2-TrayIcon-$pkgver.tar.gz) md5sums=('522c328f14681a25d76eeaf317e05049') diff -Naur old/community/lib/perl-hash-merge/PKGBUILD new/community/lib/perl-hash-merge/PKGBUILD --- old/community/lib/perl-hash-merge/PKGBUILD 2007-05-18 17:48:28.000000000 +0100 +++ new/community/lib/perl-hash-merge/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Hash::Merge" arch=("i686" "x86_64") url="http://search.cpan.org/DMUEY/Hash-Merge" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DM/DMUEY/Hash-Merge-0.10.tar.gz") md5sums=("8beb0eb99d2f0cdc2246fbcb181406c0") makedepends=("perl-clone") diff -Naur old/community/lib/perl-heap/PKGBUILD new/community/lib/perl-heap/PKGBUILD --- old/community/lib/perl-heap/PKGBUILD 2007-05-18 18:19:52.000000000 +0100 +++ new/community/lib/perl-heap/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Heap : Define Heap interface" arch=("i686" "x86_64") url="http://search.cpan.org/JMM/Heap" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JM/JMM/Heap-0.80.tar.gz") md5sums=("05fed19a7552dadee11c780cd68c0116") build() { diff -Naur old/community/lib/perl-html-elementtable/PKGBUILD new/community/lib/perl-html-elementtable/PKGBUILD --- old/community/lib/perl-html-elementtable/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-html-elementtable/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::ElementTable : Tables as easy HTML element structures" arch=('i686' 'x86_64') url="http://search.cpan.org/MSISK/HTML-Element-Extended" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/M/MS/MSISK/HTML-Element-Extended-1.17.tar.gz") md5sums=('3d4db4f619178111770e3046fc88412f') makedepends=("perl-html-element") diff -Naur old/community/lib/perl-html-highlight/PKGBUILD new/community/lib/perl-html-highlight/PKGBUILD --- old/community/lib/perl-html-highlight/PKGBUILD 2007-05-18 17:47:11.000000000 +0100 +++ new/community/lib/perl-html-highlight/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::Highlight" arch=("i686" "x86_64") url="http://search.cpan.org/TRIPIE/HTML-Highlight" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TR/TRIPIE/HTML-Highlight-0.20.tar.gz") md5sums=("85cfcff2d5880bdbe126a9a4fdc7b155") build() { diff -Naur old/community/lib/perl-html-scrubber/PKGBUILD new/community/lib/perl-html-scrubber/PKGBUILD --- old/community/lib/perl-html-scrubber/PKGBUILD 2007-05-18 17:45:51.000000000 +0100 +++ new/community/lib/perl-html-scrubber/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::Scrubber" arch=("i686" "x86_64") url="http://search.cpan.org/PODMASTER/HTML-Scrubber" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PO/PODMASTER/HTML-Scrubber-0.08.tar.gz") md5sums=("abadf246e528f3e2d31717ef8a1d90f2") makedepends=("perl-html-parser") diff -Naur old/community/lib/perl-html-strip/PKGBUILD new/community/lib/perl-html-strip/PKGBUILD --- old/community/lib/perl-html-strip/PKGBUILD 2007-05-18 18:10:21.000000000 +0100 +++ new/community/lib/perl-html-strip/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::Strip" arch=("i686" "x86_64") url="http://search.cpan.org/KILINRAX/HTML-Strip" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KI/KILINRAX/HTML-Strip-1.06.tar.gz") md5sums=("ceeacef0c7c31983e3a991e77bb58b45") build() { diff -Naur old/community/lib/perl-html-tableextract/PKGBUILD new/community/lib/perl-html-tableextract/PKGBUILD --- old/community/lib/perl-html-tableextract/PKGBUILD 2007-05-18 18:21:55.000000000 +0100 +++ new/community/lib/perl-html-tableextract/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::TableExtract : Flexible HTML table extraction" arch=("i686" "x86_64") url="http://search.cpan.org/MSISK/HTML-TableExtract" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSISK/HTML-TableExtract-2.10.tar.gz") md5sums=("e6e355f6049dc57706e719c5ce61ff39") makedepends=("perl-html-parser" "perl-html-elementtable") diff -Naur old/community/lib/perl-html-tagfilter/PKGBUILD new/community/lib/perl-html-tagfilter/PKGBUILD --- old/community/lib/perl-html-tagfilter/PKGBUILD 2007-05-18 18:17:32.000000000 +0100 +++ new/community/lib/perl-html-tagfilter/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::TagFilter" arch=("i686" "x86_64") url="http://search.cpan.org/WROSS/HTML-TagFilter" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/W/WR/WROSS/HTML-TagFilter-1.03.tar.gz") md5sums=("e61d2f180e3ba55e5d71293d472ffebb") makedepends=("perl-uri-escape" "perl-html-parser") diff -Naur old/community/lib/perl-html-template/PKGBUILD new/community/lib/perl-html-template/PKGBUILD --- old/community/lib/perl-html-template/PKGBUILD 2007-05-18 18:05:38.000000000 +0100 +++ new/community/lib/perl-html-template/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::Template : a simple HTML templating system" arch=("i686" "x86_64") url="http://search.cpan.org/SAMTREGAR/HTML-Template" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SA/SAMTREGAR/HTML-Template-2.9.tar.gz") md5sums=("cbf88a486b36284be55765ac7357c187") build() { diff -Naur old/community/lib/perl-html-template-expr/PKGBUILD new/community/lib/perl-html-template-expr/PKGBUILD --- old/community/lib/perl-html-template-expr/PKGBUILD 2007-05-18 17:36:45.000000000 +0100 +++ new/community/lib/perl-html-template-expr/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::Template::Expr" arch=("i686" "x86_64") url="http://search.cpan.org/SAMTREGAR/HTML-Template-Expr" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SA/SAMTREGAR/HTML-Template-Expr-0.07.tar.gz") md5sums=("717ea56c2244b6e2d26a0e477a4d069c") makedepends=("perl-html-template" "perl-parse-recdescent") diff -Naur old/community/lib/perl-html-tree/PKGBUILD new/community/lib/perl-html-tree/PKGBUILD --- old/community/lib/perl-html-tree/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-html-tree/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTML::Tree" arch=('i686' 'x86_64') url="http://search.cpan.org/PETEK/HTML-Tree" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/P/PE/PETEK/HTML-Tree-3.23.tar.gz") md5sums=('6352f50be402301f79b580dd235d7762') makedepends=("perl-html-tagset" "perl-html-parser") diff -Naur old/community/lib/perl-http-cache-transparent/PKGBUILD new/community/lib/perl-http-cache-transparent/PKGBUILD --- old/community/lib/perl-http-cache-transparent/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-http-cache-transparent/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTTP::Cache::Transparent : Cache the result of httpgets persistently" arch=("i686" "x86_64") url="http://search.cpan.org/MATTIASH/HTTP-Cache-Transparent" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MATTIASH/HTTP-Cache-Transparent-0.7.tar....") md5sums=("654535577fa1474474e714bd40087943") makedepends=("perl-libwww") diff -Naur old/community/lib/perl-http-lite/PKGBUILD new/community/lib/perl-http-lite/PKGBUILD --- old/community/lib/perl-http-lite/PKGBUILD 2007-05-18 18:04:58.000000000 +0100 +++ new/community/lib/perl-http-lite/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module HTTP::Lite" arch=("i686" "x86_64") url="http://search.cpan.org/RHOOPER/HTTP-Lite" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RH/RHOOPER/HTTP-Lite-2.1.6.tar.gz") md5sums=("29e1324555a805981be132f3979970ba") build() { diff -Naur old/community/lib/perl-ical-parser/PKGBUILD new/community/lib/perl-ical-parser/PKGBUILD --- old/community/lib/perl-ical-parser/PKGBUILD 2007-05-18 18:16:05.000000000 +0100 +++ new/community/lib/perl-ical-parser/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module iCal::Parser : Parse iCalendar files into a data structure" arch=("i686" "x86_64") url="http://search.cpan.org/RFRANKEL/iCal-Parser" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RF/RFRANKEL/iCal-Parser-1.14.tar.gz") md5sums=("96e5447e9222ae27e9b8f02a392773cf") makedepends=("perl-io-string" "perl-datetime-format-ical" "perl-text-vfile-asdata") diff -Naur old/community/lib/perl-inline/PKGBUILD new/community/lib/perl-inline/PKGBUILD --- old/community/lib/perl-inline/PKGBUILD 2007-05-18 18:30:47.000000000 +0100 +++ new/community/lib/perl-inline/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Inline : Write Perl subroutines in other languages" arch=("i686" "x86_64") url="http://search.cpan.org/INGY/Inline" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/I/IN/INGY/Inline-0.44.tar.gz") md5sums=("840f47d9b6cef39e68370faf9dceab2c") build() { diff -Naur old/community/lib/perl-io-compress-base-common/PKGBUILD new/community/lib/perl-io-compress-base-common/PKGBUILD --- old/community/lib/perl-io-compress-base-common/PKGBUILD 2007-05-18 17:46:49.000000000 +0100 +++ new/community/lib/perl-io-compress-base-common/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Compress::Base::Common" arch=("i686" "x86_64") url="http://search.cpan.org/PMQS/IO-Compress-Base" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PM/PMQS/IO-Compress-Base-2.004.tar.gz") md5sums=("a48a6185d239985d3a9755a36c2ff659") build() { diff -Naur old/community/lib/perl-io-digest/PKGBUILD new/community/lib/perl-io-digest/PKGBUILD --- old/community/lib/perl-io-digest/PKGBUILD 2007-05-18 17:36:50.000000000 +0100 +++ new/community/lib/perl-io-digest/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Digest" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/IO-Digest" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/IO-Digest-0.10.tar.gz") md5sums=("0448841e0559c2c19c7e8001ef087e26") makedepends=("perlio-via-dynamic") diff -Naur old/community/lib/perl-io-multiplex/PKGBUILD new/community/lib/perl-io-multiplex/PKGBUILD --- old/community/lib/perl-io-multiplex/PKGBUILD 2007-05-18 17:53:42.000000000 +0100 +++ new/community/lib/perl-io-multiplex/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Multiplex : Manage Input Output on many file handles" arch=("i686" "x86_64") url="http://search.cpan.org/BBB/IO-Multiplex" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BB/BBB/IO-Multiplex-1.09.tar.gz") md5sums=("cf459a39f2964d5ec6c32622759c9e90") build() { diff -Naur old/community/lib/perl-io-pager/PKGBUILD new/community/lib/perl-io-pager/PKGBUILD --- old/community/lib/perl-io-pager/PKGBUILD 2007-05-18 17:37:38.000000000 +0100 +++ new/community/lib/perl-io-pager/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Pager" arch=("i686" "x86_64") url="http://search.cpan.org/JPIERCE/IO-Pager" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JP/JPIERCE/IO-Pager-0.06.tgz") md5sums=("dda54801e176089d9b93e05dc07324a4") build() { diff -Naur old/community/lib/perl-io-string/PKGBUILD new/community/lib/perl-io-string/PKGBUILD --- old/community/lib/perl-io-string/PKGBUILD 2007-05-18 17:45:07.000000000 +0100 +++ new/community/lib/perl-io-string/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::String : IOFile interface for incore strings" arch=("i686" "x86_64") url="http://search.cpan.org/GAAS/IO-String" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz") md5sums=("250e5424f290299fc3d6b5d1e9da3835") build() { diff -Naur old/community/lib/perl-io-stringy/PKGBUILD new/community/lib/perl-io-stringy/PKGBUILD --- old/community/lib/perl-io-stringy/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-io-stringy/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Stringy : IO on incore objects like stringsarrays" arch=('i686' 'x86_64') url="http://search.cpan.org/DSKOLL/IO-stringy" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/D/DS/DSKOLL/IO-stringy-2.110.tar.gz") md5sums=('2e6a976cfa5521e815c1fdf4006982de') provides=("perl-io-scalar" "perl-io-atomicfile" "perl-io-clever" "perl-io-innerfile" "perl-io-lines" "perl-io-scalar" "perl-io-scalararray" "perl-io-wrap" "perl-io-wraptie") diff -Naur old/community/lib/perl-io-tee/PKGBUILD new/community/lib/perl-io-tee/PKGBUILD --- old/community/lib/perl-io-tee/PKGBUILD 2007-05-18 17:42:01.000000000 +0100 +++ new/community/lib/perl-io-tee/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Tee : Multiplex output to multiple handles" arch=("i686" "x86_64") url="http://search.cpan.org/KENSHAN/IO-Tee" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KE/KENSHAN/IO-Tee-0.64.tar.gz") md5sums=("97d91e38fcadc1f01d8030a8d4f30701") build() { diff -Naur old/community/lib/perl-io-tty/PKGBUILD new/community/lib/perl-io-tty/PKGBUILD --- old/community/lib/perl-io-tty/PKGBUILD 2007-05-18 18:06:19.000000000 +0100 +++ new/community/lib/perl-io-tty/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Tty : provide an interface to TTYs and PTYs" arch=("i686" "x86_64") url="http://search.cpan.org/RGIERSIG/IO-Tty" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RG/RGIERSIG/IO-Tty-1.07.tar.gz") md5sums=("2a54e49b60a4092e93af5b8073ec5325") build() { diff -Naur old/community/lib/perl-io-uncompress-base/PKGBUILD new/community/lib/perl-io-uncompress-base/PKGBUILD --- old/community/lib/perl-io-uncompress-base/PKGBUILD 2007-05-18 18:23:19.000000000 +0100 +++ new/community/lib/perl-io-uncompress-base/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IO::Uncompress::Base" arch=("i686" "x86_64") url="http://search.cpan.org/PMQS/IO-Compress-Base" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PM/PMQS/IO-Compress-Base-2.004.tar.gz") md5sums=("a48a6185d239985d3a9755a36c2ff659") build() { diff -Naur old/community/lib/perl-ipc-cmd/PKGBUILD new/community/lib/perl-ipc-cmd/PKGBUILD --- old/community/lib/perl-ipc-cmd/PKGBUILD 2007-05-18 17:57:07.000000000 +0100 +++ new/community/lib/perl-ipc-cmd/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IPC::Cmd" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/IPC-Cmd" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/IPC-Cmd-0.36.tar.gz") md5sums=("56c6a27022ba5ebc2701364313f751b9") makedepends=("perl-locale-maketext-simple" "perl-module-load-conditional" "perl-params-check") diff -Naur old/community/lib/perl-ipc-run/PKGBUILD new/community/lib/perl-ipc-run/PKGBUILD --- old/community/lib/perl-ipc-run/PKGBUILD 2007-05-18 18:27:26.000000000 +0100 +++ new/community/lib/perl-ipc-run/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IPC::Run : Child procs w piping redir and psuedottys" arch=("i686" "x86_64") url="http://search.cpan.org/RSOD/IPC-Run" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RS/RSOD/IPC-Run-0.80.tar.gz") md5sums=("a867e694862afd4a3c429124618fc15e") build() { diff -Naur old/community/lib/perl-ipc-shareable/PKGBUILD new/community/lib/perl-ipc-shareable/PKGBUILD --- old/community/lib/perl-ipc-shareable/PKGBUILD 2007-05-18 18:10:42.000000000 +0100 +++ new/community/lib/perl-ipc-shareable/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module IPC::Shareable : Tie a variable to shared memory" arch=("i686" "x86_64") url="http://search.cpan.org/BSUGARS/IPC-Shareable" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BS/BSUGARS/IPC-Shareable-0.60.tar.gz") md5sums=("51462dabfb4eec81e0b3417a9f9add4e") build() { diff -Naur old/community/lib/perl-json/PKGBUILD new/community/lib/perl-json/PKGBUILD --- old/community/lib/perl-json/PKGBUILD 2007-05-18 17:42:19.000000000 +0100 +++ new/community/lib/perl-json/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module JSON" arch=("i686" "x86_64") url="http://search.cpan.org/MAKAMAKA/JSON" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MAKAMAKA/JSON-1.14.tar.gz") md5sums=("d95d9cdb7c0a64a51d3d946915db52fb") makedepends=("perl-http-response" "perl-http-request") diff -Naur old/community/lib/perl-ldap/PKGBUILD new/community/lib/perl-ldap/PKGBUILD --- old/community/lib/perl-ldap/PKGBUILD 2007-04-17 12:07:49.000000000 +0100 +++ new/community/lib/perl-ldap/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Interface to LDAP Protocol (RFC1777)" url="http://search.cpan.org/~GBARR/perl-ldap" depends=('perl-convert-asn1') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/G/GB/GBARR/perl-ldap-$pkgver.tar.gz) md5sums=('398689b0a7b1615075a6b5035f6e3e91') diff -Naur old/community/lib/perl-libapreq2/PKGBUILD new/community/lib/perl-libapreq2/PKGBUILD --- old/community/lib/perl-libapreq2/PKGBUILD 2007-04-06 09:59:52.000000000 +0100 +++ new/community/lib/perl-libapreq2/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ url="http://search.cpan.org/~JOESUF/libapreq2" depends=('mod_perl') makedepends=('perl-extutils-xsbuilder') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/J/JO/JOESUF/libapreq2-$pkgver.tar.gz) md5sums=('9fb3deec448f74c455d4ffc13846ea9f') options=('NOLIBTOOL') diff -Naur old/community/lib/perl-libxml/PKGBUILD new/community/lib/perl-libxml/PKGBUILD --- old/community/lib/perl-libxml/PKGBUILD 2007-07-18 03:52:07.000000000 +0100 +++ new/community/lib/perl-libxml/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Perl bindings for libxml2" arch=('i686' 'x86_64') url="http://search.cpan.org/~pajas/XML-LibXML/" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') depends=('perl' 'perl-libxml-common' 'perl-xml-sax' 'libxml2') install=perl-libxml.install source=(http://search.cpan.org/CPAN/authors/id/P/PA/PAJAS/XML-LibXML-$pkgver.tar.gz) diff -Naur old/community/lib/perl-list-moreutils/PKGBUILD new/community/lib/perl-list-moreutils/PKGBUILD --- old/community/lib/perl-list-moreutils/PKGBUILD 2007-05-18 17:38:35.000000000 +0100 +++ new/community/lib/perl-list-moreutils/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module List::MoreUtils" arch=("i686" "x86_64") url="http://search.cpan.org/VPARSEVAL/List-MoreUtils" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/V/VP/VPARSEVAL/List-MoreUtils-0.21.tar.gz") md5sums=("67cf1980e582ac49136219ce5146da92") build() { diff -Naur old/community/lib/perl-locale-maketext-lexicon/PKGBUILD new/community/lib/perl-locale-maketext-lexicon/PKGBUILD --- old/community/lib/perl-locale-maketext-lexicon/PKGBUILD 2007-07-31 01:43:59.000000000 +0100 +++ new/community/lib/perl-locale-maketext-lexicon/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Locale::Maketext::Lexicon : Use other catalog formats in Maketext" arch=("i686" "x86_64") url="http://search.cpan.org/author/AUDREYT/Locale-Maketext-Lexicon-0.64/lib/Local..." -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://search.cpan.org/CPAN/authors/id/A/AU/AUDREYT/Locale-Maketext-Lexicon-...") md5sums=("ce0fc6dfbf41fc4a72d1431e9551a634") build() { diff -Naur old/community/lib/perl-locale-maketext-simple/PKGBUILD new/community/lib/perl-locale-maketext-simple/PKGBUILD --- old/community/lib/perl-locale-maketext-simple/PKGBUILD 2007-05-18 18:11:02.000000000 +0100 +++ new/community/lib/perl-locale-maketext-simple/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Locale::Maketext::Simple" arch=("i686" "x86_64") url="http://search.cpan.org/AUDREYT/Locale-Maketext-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AU/AUDREYT/Locale-Maketext-Simple-0.18.tar....") md5sums=("51cc6dc109bf49cca063f3baa2cfd9e6") build() { diff -Naur old/community/lib/perl-locale-textdomain/PKGBUILD new/community/lib/perl-locale-textdomain/PKGBUILD --- old/community/lib/perl-locale-textdomain/PKGBUILD 2007-05-18 17:39:09.000000000 +0100 +++ new/community/lib/perl-locale-textdomain/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Locale::TextDomain" arch=("i686" "x86_64") url="http://search.cpan.org/GUIDO/libintl-perl" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GU/GUIDO/libintl-perl-1.16.tar.gz") md5sums=("7dfcd9ac3a4ff41038a2c67a733d42b9") build() { diff -Naur old/community/lib/perl-log-log4perl/PKGBUILD new/community/lib/perl-log-log4perl/PKGBUILD --- old/community/lib/perl-log-log4perl/PKGBUILD 2007-05-18 17:40:13.000000000 +0100 +++ new/community/lib/perl-log-log4perl/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Log::Log4perl : Log4j implementation in Perl" arch=("i686" "x86_64") url="http://search.cpan.org/MSCHILLI/Log-Log4perl" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSCHILLI/Log-Log4perl-1.10.tar.gz") md5sums=("69bc755866704e7d1c76f771255ac1a3") build() { diff -Naur old/community/lib/perl-log-message/PKGBUILD new/community/lib/perl-log-message/PKGBUILD --- old/community/lib/perl-log-message/PKGBUILD 2007-05-18 17:58:55.000000000 +0100 +++ new/community/lib/perl-log-message/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Log::Message" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Log-Message" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Log-Message-0.01.tar.gz") md5sums=("f04298e81488a5a39930fd417d47656e") build() { diff -Naur old/community/lib/perl-log-message-simple/PKGBUILD new/community/lib/perl-log-message-simple/PKGBUILD --- old/community/lib/perl-log-message-simple/PKGBUILD 2007-05-18 18:22:36.000000000 +0100 +++ new/community/lib/perl-log-message-simple/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Log::Message::Simple" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Log-Message-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Log-Message-Simple-0.01.tar.gz") md5sums=("0c60795da495f6a79d09362e8b4f0061") makedepends=("perl-log-message") diff -Naur old/community/lib/perl-mail-address/PKGBUILD new/community/lib/perl-mail-address/PKGBUILD --- old/community/lib/perl-mail-address/PKGBUILD 2007-07-11 20:01:54.000000000 +0100 +++ new/community/lib/perl-mail-address/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Perl/CPAN Module Mail::Address : Manipulation of electronic mail addresses" arch=('i686' 'x86_64') url="http://search.cpan.org/MARKOV/MailTools" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/M/MA/MARKOV/MailTools-1.77.tar.gz") md5sums=('c1bcd6627cb9bab271b77a8323d62c48') provides=("perl-mailtools" "perl-mail-cap" "perl-mail-field" "perl-mail-field-addrlist" "perl-mail-field-date" "perl-mail-filter" "perl-mail-header" "perl-mail-internet" "perl-mail-mailer" "perl-mail-mailer-qmail" "perl-mail-mailer-rfc822" "perl-mail-mailer-sendmail" "perl-mail-mailer-smtp" "perl-mail-mailer-testfile" "perl-mail-send" "perl-mail-util") diff -Naur old/community/lib/perl-mail-box/PKGBUILD new/community/lib/perl-mail-box/PKGBUILD --- old/community/lib/perl-mail-box/PKGBUILD 2007-05-18 18:25:56.000000000 +0100 +++ new/community/lib/perl-mail-box/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Mail::Box : Mail folder manager and MUA backend" arch=("i686" "x86_64") url="http://search.cpan.org/MARKOV/Mail-Box" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARKOV/Mail-Box-2.070.tar.gz") md5sums=("f6b0da296a582e06880f93f166f57bb7") makedepends=("perl-file-remove" "perl-io-scalar" "perl-object-realize-later" "perl-time-zone" "perl-user-identity" "perl-digest-hmac-md5" "perl-mail-address" "perl-uri" "perl-mime-types" "perl-date-parse") diff -Naur old/community/lib/perl-mail-box-parser-c/PKGBUILD new/community/lib/perl-mail-box-parser-c/PKGBUILD --- old/community/lib/perl-mail-box-parser-c/PKGBUILD 2007-05-18 17:36:50.000000000 +0100 +++ new/community/lib/perl-mail-box-parser-c/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Mail::Box::Parser::C : extends MailBox with the speed of C" arch=("i686" "x86_64") url="http://search.cpan.org/MARKOV/Mail-Box-Parser-C" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARKOV/Mail-Box-Parser-C-3.006.tar.gz") md5sums=("3dfb3e2729597ae33114250cbce1b884") build() { diff -Naur old/community/lib/perl-mail-dkim/PKGBUILD new/community/lib/perl-mail-dkim/PKGBUILD --- old/community/lib/perl-mail-dkim/PKGBUILD 2007-06-20 13:20:17.000000000 +0100 +++ new/community/lib/perl-mail-dkim/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686) url="http://search.cpan.org/~JASLONG/Mail-DKIM" depends=('perl-crypt-openssl-rsa>=0.22' 'perl-digest-sha' 'perl-digest-sha1' 'perl-error' 'perl-mailtools' 'perl-net-dns') -license="GPL" +license=('GPL') option=('!emptydirs') source=(http://www.cpan.org/authors/id/J/JA/JASLONG/Mail-DKIM-$pkgver.tar.gz) md5sums=('8ee96cc0c34de9a57c4af61fe462d4ff') diff -Naur old/community/lib/perl-mail-domainkeys/PKGBUILD new/community/lib/perl-mail-domainkeys/PKGBUILD --- old/community/lib/perl-mail-domainkeys/PKGBUILD 2007-06-20 11:47:48.000000000 +0100 +++ new/community/lib/perl-mail-domainkeys/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686) url="http://search.cpan.org/~ANTHONYU/Mail-DomainKeys" depends=('perl-crypt-openssl-rsa' 'perl-mailtools' 'perl-net-dns>=0.34') -license="GPL" +license=('GPL') option=('!emptydirs') source=(http://www.cpan.org/authors/id/A/AN/ANTHONYU/Mail-DomainKeys-$pkgver.tar.gz) md5sums=('a4565f21ada263cf34c55f50d7eb9944') diff -Naur old/community/lib/perl-mail-sendmail/PKGBUILD new/community/lib/perl-mail-sendmail/PKGBUILD --- old/community/lib/perl-mail-sendmail/PKGBUILD 2007-05-18 18:15:46.000000000 +0100 +++ new/community/lib/perl-mail-sendmail/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Mail::Sendmail : Simple platform independent mailer" arch=("i686" "x86_64") url="http://search.cpan.org/MIVKOVIC/Mail-Sendmail" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MI/MIVKOVIC/Mail-Sendmail-0.79.tar.gz") md5sums=("038f261afd091d8fad347d6c66d2833d") build() { diff -Naur old/community/lib/perl-mail-spamassassin/PKGBUILD new/community/lib/perl-mail-spamassassin/PKGBUILD --- old/community/lib/perl-mail-spamassassin/PKGBUILD 2007-05-18 18:07:22.000000000 +0100 +++ new/community/lib/perl-mail-spamassassin/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Mail::SpamAssassin : identify spam mail using text analysis" arch=("i686" "x86_64") url="http://search.cpan.org/JMASON/Mail-SpamAssassin" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JM/JMASON/Mail-SpamAssassin-3.2.0.tar.gz") md5sums=("aed988bb6cf463afc868a64d4cd771a3") build() { diff -Naur old/community/lib/perl-mail-transport-dbx/PKGBUILD new/community/lib/perl-mail-transport-dbx/PKGBUILD --- old/community/lib/perl-mail-transport-dbx/PKGBUILD 2007-05-18 17:50:43.000000000 +0100 +++ new/community/lib/perl-mail-transport-dbx/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Mail::Transport::Dbx : Parse Outlook Express mailboxes" arch=("i686" "x86_64") url="http://search.cpan.org/VPARSEVAL/Mail-Transport-Dbx" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/V/VP/VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz") md5sums=("4dcf5346a67c0a7f861cb2bb51a7d14e") build() { diff -Naur old/community/lib/perl-mailtool/PKGBUILD new/community/lib/perl-mailtool/PKGBUILD --- old/community/lib/perl-mailtool/PKGBUILD 2007-05-18 17:45:22.000000000 +0100 +++ new/community/lib/perl-mailtool/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module MailTool" arch=("i686" "x86_64") url="http://search.cpan.org/ERYQ/MIME-Lite" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/E/ER/ERYQ/MIME-Lite-2.117.tar.gz") md5sums=("aacd69f446b5d0fd33c8d910b0c7f362") build() { diff -Naur old/community/lib/perl-math-base85/PKGBUILD new/community/lib/perl-math-base85/PKGBUILD --- old/community/lib/perl-math-base85/PKGBUILD 2007-05-18 18:31:56.000000000 +0100 +++ new/community/lib/perl-math-base85/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Math::Base85" arch=("i686" "x86_64") url="http://search.cpan.org/TMONROE/Math-Base85" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TM/TMONROE/Math-Base85-0.2.tar.gz") md5sums=("3a2914651dc680fd22661f35213211d3") build() { diff -Naur old/community/lib/perl-math-round/PKGBUILD new/community/lib/perl-math-round/PKGBUILD --- old/community/lib/perl-math-round/PKGBUILD 2007-05-18 17:57:15.000000000 +0100 +++ new/community/lib/perl-math-round/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Math::Round : Perl extension for rounding numbers" arch=("i686" "x86_64") url="http://search.cpan.org/GROMMEL/Math-Round" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GR/GROMMEL/Math-Round-0.06.tar.gz") md5sums=("552cef2753b246f97a6e20d8dee66e7c") build() { diff -Naur old/community/lib/perl-mime-parser/PKGBUILD new/community/lib/perl-mime-parser/PKGBUILD --- old/community/lib/perl-mime-parser/PKGBUILD 2007-05-18 17:44:04.000000000 +0100 +++ new/community/lib/perl-mime-parser/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module MIME::Parser : Parses streams to create MIME entities" arch=("i686" "x86_64") url="http://search.cpan.org/DSKOLL/MIME-tools" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DS/DSKOLL/MIME-tools-5.420.tar.gz") md5sums=("4db6505cc0132c80c5a9cc54f443a21a") makedepends=("perl-io-stringy" "perl-mail-field" "perl-mail-header" "perl-mail-internet") diff -Naur old/community/lib/perl-mime-types/PKGBUILD new/community/lib/perl-mime-types/PKGBUILD --- old/community/lib/perl-mime-types/PKGBUILD 2007-05-18 17:59:01.000000000 +0100 +++ new/community/lib/perl-mime-types/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module MIME::Types : Information and processing MIME types" arch=("i686" "x86_64") url="http://search.cpan.org/MARKOV/MIME-Types" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARKOV/MIME-Types-1.19.tar.gz") md5sums=("6572937900211b0638f662d40d9eb8ef") build() { diff -Naur old/community/lib/perl-module-build/PKGBUILD new/community/lib/perl-module-build/PKGBUILD --- old/community/lib/perl-module-build/PKGBUILD 2007-05-18 18:12:34.000000000 +0100 +++ new/community/lib/perl-module-build/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::Build : Build test and install Perl modules" arch=("i686" "x86_64") url="http://search.cpan.org/KWILLIAMS/Module-Build" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Module-Build-0.2808.tar.gz") md5sums=("b8e457b1a4b72c46bcec3d9bce87329b") build() { diff -Naur old/community/lib/perl-module-corelist/PKGBUILD new/community/lib/perl-module-corelist/PKGBUILD --- old/community/lib/perl-module-corelist/PKGBUILD 2007-05-18 18:07:45.000000000 +0100 +++ new/community/lib/perl-module-corelist/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::CoreList" arch=("i686" "x86_64") url="http://search.cpan.org/RGARCIA/Module-CoreList" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RG/RGARCIA/Module-CoreList-2.11.tar.gz") md5sums=("58d2d31cce9bc7aef7adf0ac26ed8a7f") build() { diff -Naur old/community/lib/perl-module-load/PKGBUILD new/community/lib/perl-module-load/PKGBUILD --- old/community/lib/perl-module-load/PKGBUILD 2007-05-18 18:04:51.000000000 +0100 +++ new/community/lib/perl-module-load/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::Load" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Module-Load" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Module-Load-0.10.tar.gz") md5sums=("ee40eb2fa3059381e43d1f14d414fe67") build() { diff -Naur old/community/lib/perl-module-load-conditional/PKGBUILD new/community/lib/perl-module-load-conditional/PKGBUILD --- old/community/lib/perl-module-load-conditional/PKGBUILD 2007-05-18 17:46:12.000000000 +0100 +++ new/community/lib/perl-module-load-conditional/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::Load::Conditional" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Module-Load-Conditional" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Module-Load-Conditional-0.16.tar.gz") md5sums=("fae73541e0b1d87d0bbe6e1676e5e738") makedepends=("perl-module-load" "perl-version" "perl-locale-maketext-simple" "perl-params-check") diff -Naur old/community/lib/perl-module-loaded/PKGBUILD new/community/lib/perl-module-loaded/PKGBUILD --- old/community/lib/perl-module-loaded/PKGBUILD 2007-05-18 17:51:55.000000000 +0100 +++ new/community/lib/perl-module-loaded/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::Loaded" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Module-Loaded" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Module-Loaded-0.01.tar.gz") md5sums=("bf2830c75b4ce78ebeee7f5ed074ea2a") build() { diff -Naur old/community/lib/perl-module-pluggable/PKGBUILD new/community/lib/perl-module-pluggable/PKGBUILD --- old/community/lib/perl-module-pluggable/PKGBUILD 2007-05-18 18:30:56.000000000 +0100 +++ new/community/lib/perl-module-pluggable/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::Pluggable" arch=("i686" "x86_64") url="http://search.cpan.org/SIMONW/Module-Pluggable" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-3.6.tar.gz") md5sums=("9b804c4a3dc2df0c6259ff43ee0a165c") build() { diff -Naur old/community/lib/perl-module-scandeps/PKGBUILD new/community/lib/perl-module-scandeps/PKGBUILD --- old/community/lib/perl-module-scandeps/PKGBUILD 2007-05-18 17:55:18.000000000 +0100 +++ new/community/lib/perl-module-scandeps/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::ScanDeps : Recursively scan Perl code for dependencies" arch=("i686" "x86_64") url="http://search.cpan.org/SMUELLER/Module-ScanDeps" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SM/SMUELLER/Module-ScanDeps-0.74.tar.gz") md5sums=("281d1072a47b535cc27ca6623c5a9206") build() { diff -Naur old/community/lib/perl-module-signature/PKGBUILD new/community/lib/perl-module-signature/PKGBUILD --- old/community/lib/perl-module-signature/PKGBUILD 2007-05-18 18:28:17.000000000 +0100 +++ new/community/lib/perl-module-signature/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Module::Signature : Module signature file manipulation" arch=("i686" "x86_64") url="http://search.cpan.org/AUDREYT/Module-Signature" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AU/AUDREYT/Module-Signature-0.55.tar.gz") md5sums=("0e2571a76c4bf37d61d9f24d71afbd77") build() { diff -Naur old/community/lib/perl-net-dbus/PKGBUILD new/community/lib/perl-net-dbus/PKGBUILD --- old/community/lib/perl-net-dbus/PKGBUILD 2007-05-18 18:29:02.000000000 +0100 +++ new/community/lib/perl-net-dbus/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::DBus : Binding for DBus messaging protocol" arch=("i686" "x86_64") url="http://search.cpan.org/DANBERR/Net-DBus" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DA/DANBERR/Net-DBus-0.32.2.tar.gz") md5sums=("07c1b2b986db39ef96ba2055cf0b1759") makedepends=("perl-xml-parser" "perl-xml-grove") diff -Naur old/community/lib/perl-net-dns/PKGBUILD new/community/lib/perl-net-dns/PKGBUILD --- old/community/lib/perl-net-dns/PKGBUILD 2007-05-18 17:44:38.000000000 +0100 +++ new/community/lib/perl-net-dns/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::DNS : Interface to the DNS resolver" arch=("i686" "x86_64") url="http://search.cpan.org/OLAF/Net-DNS" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/O/OL/OLAF/Net-DNS-0.59.tar.gz") md5sums=("d3408875f34e5fa0a313a4a21c70e832") makedepends=("perl-digest-hmac-md5" "perl-net-ip") diff -Naur old/community/lib/perl-net-ip/PKGBUILD new/community/lib/perl-net-ip/PKGBUILD --- old/community/lib/perl-net-ip/PKGBUILD 2007-05-18 18:23:47.000000000 +0100 +++ new/community/lib/perl-net-ip/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::IP" arch=("i686" "x86_64") url="http://search.cpan.org/MANU/Net-IP" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MANU/Net-IP-1.25.tar.gz") md5sums=("a49c0b02a9b793ff60191cdafc0c202e") build() { diff -Naur old/community/lib/perl-net-ipv4addr/PKGBUILD new/community/lib/perl-net-ipv4addr/PKGBUILD --- old/community/lib/perl-net-ipv4addr/PKGBUILD 2007-05-18 17:44:14.000000000 +0100 +++ new/community/lib/perl-net-ipv4addr/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::IPv4Addr" arch=("i686" "x86_64") url="http://search.cpan.org/FRAJULAC/Net-IPv4Addr" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FR/FRAJULAC/Net-IPv4Addr-0.10.tar.gz") md5sums=("57aa8e28ebcd4c0c9f15792740e53d3c") build() { diff -Naur old/community/lib/perl-net-ipv6addr/PKGBUILD new/community/lib/perl-net-ipv6addr/PKGBUILD --- old/community/lib/perl-net-ipv6addr/PKGBUILD 2007-05-18 18:17:43.000000000 +0100 +++ new/community/lib/perl-net-ipv6addr/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::IPv6Addr" arch=("i686" "x86_64") url="http://search.cpan.org/TMONROE/Net-IPv6Addr" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TM/TMONROE/Net-IPv6Addr-0.2.tar.gz") md5sums=("cd06f0422ddb3ac119e2ef1e27aa9339") build() { diff -Naur old/community/lib/perl-net-jabber/PKGBUILD new/community/lib/perl-net-jabber/PKGBUILD --- old/community/lib/perl-net-jabber/PKGBUILD 2007-05-18 18:31:05.000000000 +0100 +++ new/community/lib/perl-net-jabber/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::Jabber : Access to the Jabber protocol" arch=("i686" "x86_64") url="http://search.cpan.org/REATMON/Net-Jabber" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RE/REATMON/Net-Jabber-2.0.tar.gz") md5sums=("1fd348fb9a1a6c5a167ae862ed89cd53") makedepends=("perl-net-xmpp") diff -Naur old/community/lib/perl-net-ldap/PKGBUILD new/community/lib/perl-net-ldap/PKGBUILD --- old/community/lib/perl-net-ldap/PKGBUILD 2007-05-18 17:57:28.000000000 +0100 +++ new/community/lib/perl-net-ldap/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::LDAP : Interface to LDAP Protocol RFC1777" arch=("i686" "x86_64") url="http://search.cpan.org/GBARR/perl-ldap" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GB/GBARR/perl-ldap-0.34.tar.gz") md5sums=("398689b0a7b1615075a6b5035f6e3e91") makedepends=("perl-convert-asn1") diff -Naur old/community/lib/perl-net-server/PKGBUILD new/community/lib/perl-net-server/PKGBUILD --- old/community/lib/perl-net-server/PKGBUILD 2007-06-09 12:39:04.000000000 +0100 +++ new/community/lib/perl-net-server/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Extensible (class) oriented internet server" arch=(i686) url="http://search.cpan.org/~RHANDOM/Net-Server" -license="GPL" +license=('GPL') option=('noemptydirs') source=(http://www.cpan.org/authors/id/R/RH/RHANDOM/Net-Server-$pkgver.tar.gz) md5sums=('eb5e1eac0b7232d86058a0c14d9c35ab') diff -Naur old/community/lib/perl-net-subnets/PKGBUILD new/community/lib/perl-net-subnets/PKGBUILD --- old/community/lib/perl-net-subnets/PKGBUILD 2007-05-18 17:49:34.000000000 +0100 +++ new/community/lib/perl-net-subnets/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::Subnets : Computing subnets in large scale networks" arch=("i686" "x86_64") url="http://search.cpan.org/SRI/Net-Subnets" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SR/SRI/Net-Subnets-0.21.tar.gz") md5sums=("34f945ee4f89be35065c6ec6f2e01255") build() { diff -Naur old/community/lib/perl-net-telnet/PKGBUILD new/community/lib/perl-net-telnet/PKGBUILD --- old/community/lib/perl-net-telnet/PKGBUILD 2007-05-18 17:47:17.000000000 +0100 +++ new/community/lib/perl-net-telnet/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::Telnet : Interact with TELNET port or other TCP ports" arch=("i686" "x86_64") url="http://search.cpan.org/JROGERS/Net-Telnet" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JR/JROGERS/Net-Telnet-3.03.tar.gz") md5sums=("2f7d34b09d6117baefe89d44cff9d5fc") build() { diff -Naur old/community/lib/perl-net-xmpp/PKGBUILD new/community/lib/perl-net-xmpp/PKGBUILD --- old/community/lib/perl-net-xmpp/PKGBUILD 2007-05-18 17:53:48.000000000 +0100 +++ new/community/lib/perl-net-xmpp/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Net::XMPP" arch=("i686" "x86_64") url="http://search.cpan.org/HACKER/Net-XMPP" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/H/HA/HACKER/Net-XMPP-1.02.tar.gz") md5sums=("67cf40d3bbbe6740c21c856c79692fde") makedepends=("perl-digest-sha1" "perl-xml-stream") diff -Naur old/community/lib/perl-object-accessor/PKGBUILD new/community/lib/perl-object-accessor/PKGBUILD --- old/community/lib/perl-object-accessor/PKGBUILD 2007-05-18 18:29:44.000000000 +0100 +++ new/community/lib/perl-object-accessor/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Object::Accessor" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Object-Accessor" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Object-Accessor-0.32.tar.gz") md5sums=("bb898baa4cee74cbacdb3fd116b29922") makedepends=("perl-params-check") diff -Naur old/community/lib/perl-object-multitype/PKGBUILD new/community/lib/perl-object-multitype/PKGBUILD --- old/community/lib/perl-object-multitype/PKGBUILD 2007-05-18 17:43:38.000000000 +0100 +++ new/community/lib/perl-object-multitype/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Object::MultiType" arch=("i686" "x86_64") url="http://search.cpan.org/GMPASSOS/Object-MultiType" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GM/GMPASSOS/Object-MultiType-0.05.tar.gz") md5sums=("171ed010dab19fb8b94f22a5fca97814") build() { diff -Naur old/community/lib/perl-object-realize-later/PKGBUILD new/community/lib/perl-object-realize-later/PKGBUILD --- old/community/lib/perl-object-realize-later/PKGBUILD 2007-05-18 17:55:33.000000000 +0100 +++ new/community/lib/perl-object-realize-later/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Object::Realize::Later : Delay construction of real data until used" arch=("i686" "x86_64") url="http://search.cpan.org/MARKOV/Object-Realize-Later" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARKOV/Object-Realize-Later-0.16.tar.gz") md5sums=("c6e124d52305c1f6c7f08aeaf6bd82d4") build() { diff -Naur old/community/lib/perl-package-constants/PKGBUILD new/community/lib/perl-package-constants/PKGBUILD --- old/community/lib/perl-package-constants/PKGBUILD 2007-05-18 18:11:14.000000000 +0100 +++ new/community/lib/perl-package-constants/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Package::Constants" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Package-Constants" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Package-Constants-0.01.tar.gz") md5sums=("1449c0b9f1cbf42d8588734322085d18") build() { diff -Naur old/community/lib/perl-par/PKGBUILD new/community/lib/perl-par/PKGBUILD --- old/community/lib/perl-par/PKGBUILD 2007-05-18 18:32:16.000000000 +0100 +++ new/community/lib/perl-par/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module PAR : Perl Archive Toolkit" arch=("i686" "x86_64") url="http://search.cpan.org/SMUELLER/PAR" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SM/SMUELLER/PAR-0.973.tar.gz") md5sums=("0dc8da9b0eeb0f2cd73ba000c7694b8d") makedepends=("perl-par-dist" "perl-compress-zlib" "perl-archive-zip") diff -Naur old/community/lib/perl-par-dist/PKGBUILD new/community/lib/perl-par-dist/PKGBUILD --- old/community/lib/perl-par-dist/PKGBUILD 2007-05-18 18:32:08.000000000 +0100 +++ new/community/lib/perl-par-dist/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module PAR::Dist" arch=("i686" "x86_64") url="http://search.cpan.org/SMUELLER/PAR-Dist" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SM/SMUELLER/PAR-Dist-0.22.tar.gz") md5sums=("b718f271f49169d73562b46e9f7b1271") build() { diff -Naur old/community/lib/perl-params-check/PKGBUILD new/community/lib/perl-params-check/PKGBUILD --- old/community/lib/perl-params-check/PKGBUILD 2007-05-18 18:15:02.000000000 +0100 +++ new/community/lib/perl-params-check/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Params::Check" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Params-Check" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Params-Check-0.26.tar.gz") md5sums=("d740a81f3078dcae83d8b6b4859885c7") makedepends=("perl-locale-maketext-simple") diff -Naur old/community/lib/perl-params-validate/PKGBUILD new/community/lib/perl-params-validate/PKGBUILD --- old/community/lib/perl-params-validate/PKGBUILD 2007-05-18 17:46:21.000000000 +0100 +++ new/community/lib/perl-params-validate/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Params::Validate : Validate sub params against a spec" arch=("i686" "x86_64") url="http://search.cpan.org/DROLSKY/Params-Validate" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/Params-Validate-0.88.tar.gz") md5sums=("a8b89d2e2b79091337b619fee53e469e") build() { diff -Naur old/community/lib/perl-parse-plainconfig/PKGBUILD new/community/lib/perl-parse-plainconfig/PKGBUILD --- old/community/lib/perl-parse-plainconfig/PKGBUILD 2007-05-18 18:27:34.000000000 +0100 +++ new/community/lib/perl-parse-plainconfig/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Parse::PlainConfig : Humanreadable config file parsergenerator" arch=("i686" "x86_64") url="http://search.cpan.org/CORLISS/ParsePlainConfig" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CO/CORLISS/ParsePlainConfig-1.7a.tar.gz") md5sums=("14138102429479e62fc73590452e8c51") build() { diff -Naur old/community/lib/perl-parse-recdescent/PKGBUILD new/community/lib/perl-parse-recdescent/PKGBUILD --- old/community/lib/perl-parse-recdescent/PKGBUILD 2007-05-18 18:13:55.000000000 +0100 +++ new/community/lib/perl-parse-recdescent/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Parse::RecDescent : Recursive descent parser generator" arch=("i686" "x86_64") url="http://search.cpan.org/DCONWAY/Parse-RecDescent" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DC/DCONWAY/Parse-RecDescent-1.94.tar.gz") md5sums=("497600b337a501eae11f31195ccec9d4") build() { diff -Naur old/community/lib/perl-parse-yapp/PKGBUILD new/community/lib/perl-parse-yapp/PKGBUILD --- old/community/lib/perl-parse-yapp/PKGBUILD 2007-05-18 18:11:26.000000000 +0100 +++ new/community/lib/perl-parse-yapp/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules" arch=("i686" "x86_64") url="http://search.cpan.org/FDESAR/Parse-Yapp" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FD/FDESAR/Parse-Yapp-1.05.tar.gz") md5sums=("7bfca736d6af36c51edf7a97111a8f3b") build() { diff -Naur old/community/lib/perl-path-class/PKGBUILD new/community/lib/perl-path-class/PKGBUILD --- old/community/lib/perl-path-class/PKGBUILD 2007-05-18 17:52:01.000000000 +0100 +++ new/community/lib/perl-path-class/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Path::Class" arch=("i686" "x86_64") url="http://search.cpan.org/KWILLIAMS/Path-Class" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-0.16.tar.gz") md5sums=("3a2416d2f5ed1a8a98525baea5c25e1c") build() { diff -Naur old/community/lib/perl-pod-coverage/PKGBUILD new/community/lib/perl-pod-coverage/PKGBUILD --- old/community/lib/perl-pod-coverage/PKGBUILD 2007-05-18 18:17:50.000000000 +0100 +++ new/community/lib/perl-pod-coverage/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Pod::Coverage" arch=("i686" "x86_64") url="http://search.cpan.org/RCLAMP/Pod-Coverage" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCLAMP/Pod-Coverage-0.18.tar.gz") md5sums=("12e4f06fa8411a1f5011d3e6ce3628b3") makedepends=("perl-devel-symdump") diff -Naur old/community/lib/perl-pod-escapes/PKGBUILD new/community/lib/perl-pod-escapes/PKGBUILD --- old/community/lib/perl-pod-escapes/PKGBUILD 2007-05-18 18:31:13.000000000 +0100 +++ new/community/lib/perl-pod-escapes/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Pod::Escapes" arch=("i686" "x86_64") url="http://search.cpan.org/SBURKE/Pod-Escapes" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SB/SBURKE/Pod-Escapes-1.04.tar.gz") md5sums=("00ea2e0d2e84ed98517a4616708b68d3") build() { diff -Naur old/community/lib/perl-pod-simple/PKGBUILD new/community/lib/perl-pod-simple/PKGBUILD --- old/community/lib/perl-pod-simple/PKGBUILD 2007-05-18 18:20:42.000000000 +0100 +++ new/community/lib/perl-pod-simple/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Pod::Simple : the framework for parsing Pod" arch=("i686" "x86_64") url="http://search.cpan.org/ARANDAL/Pod-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AR/ARANDAL/Pod-Simple-3.05.tar.gz") md5sums=("be3f9e5d685ff38a3f0be66322d68cef") makedepends=("perl-pod-escapes") diff -Naur old/community/lib/perl-pod-simple-text/PKGBUILD new/community/lib/perl-pod-simple-text/PKGBUILD --- old/community/lib/perl-pod-simple-text/PKGBUILD 2007-05-18 18:16:46.000000000 +0100 +++ new/community/lib/perl-pod-simple-text/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Pod::Simple::Text" arch=("i686" "x86_64") url="http://search.cpan.org/ARANDAL/Pod-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AR/ARANDAL/Pod-Simple-3.05.tar.gz") md5sums=("be3f9e5d685ff38a3f0be66322d68cef") makedepends=("perl-pod-escapes") diff -Naur old/community/lib/perl-poe/PKGBUILD new/community/lib/perl-poe/PKGBUILD --- old/community/lib/perl-poe/PKGBUILD 2007-05-18 18:26:27.000000000 +0100 +++ new/community/lib/perl-poe/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module POE" arch=("i686" "x86_64") url="http://search.cpan.org/RCAPUTO/POE" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCAPUTO/POE-0.9989.tar.gz") md5sums=("c4d7c842ac5a9a36acab08f43f6f6a97") build() { diff -Naur old/community/lib/perl-poe-component-client-dns/PKGBUILD new/community/lib/perl-poe-component-client-dns/PKGBUILD --- old/community/lib/perl-poe-component-client-dns/PKGBUILD 2007-05-18 18:22:42.000000000 +0100 +++ new/community/lib/perl-poe-component-client-dns/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module POE::Component::Client::DNS" arch=("i686" "x86_64") url="http://search.cpan.org/RCAPUTO/POE-Component-Client-DNS" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCAPUTO/POE-Component-Client-DNS-1.00.ta...") md5sums=("3cafec48ed997ecb97cb980ef82732b8") makedepends=("perl-net-dns" "perl-poe") diff -Naur old/community/lib/perl-poe-component-client-http/PKGBUILD new/community/lib/perl-poe-component-client-http/PKGBUILD --- old/community/lib/perl-poe-component-client-http/PKGBUILD 2007-05-18 17:48:35.000000000 +0100 +++ new/community/lib/perl-poe-component-client-http/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module POE::Component::Client::HTTP : nonblockingparallel web requests engine" arch=("i686" "x86_64") url="http://search.cpan.org/RCAPUTO/POE-Component-Client-HTTP" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCAPUTO/POE-Component-Client-HTTP-0.82.t...") md5sums=("482f91b91de6d21c9072d69ffb6026cc") makedepends=("perl-uri" "perl-poe-component-client-keepalive" "perl-http-response" "perl-http-request" "perl-poe" "perl-net-http-methods") diff -Naur old/community/lib/perl-poe-component-client-keep/PKGBUILD new/community/lib/perl-poe-component-client-keep/PKGBUILD --- old/community/lib/perl-poe-component-client-keep/PKGBUILD 2007-04-16 10:39:01.000000000 +0100 +++ new/community/lib/perl-poe-component-client-keep/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="manage connections, with keep-alive" url="http://search.cpan.org/~RCAPUTO/POE-Component-Client-Keepalive" depends=('perl-poe-component-client-dns') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/R/RC/RCAPUTO/POE-Component-Client-Keepalive-$...) md5sums=('b44e206d4ab18c2d260c08f3a1dc4639') diff -Naur old/community/lib/perl-poe-component-client-keepalive/PKGBUILD new/community/lib/perl-poe-component-client-keepalive/PKGBUILD --- old/community/lib/perl-poe-component-client-keepalive/PKGBUILD 2007-05-18 17:57:40.000000000 +0100 +++ new/community/lib/perl-poe-component-client-keepalive/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module POE::Component::Client::Keepalive" arch=("i686" "x86_64") url="http://search.cpan.org/RCAPUTO/POE-Component-Client-Keepalive" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCAPUTO/POE-Component-Client-Keepalive-0...") md5sums=("b44e206d4ab18c2d260c08f3a1dc4639") makedepends=("perl-poe-component-client-dns" "perl-poe") diff -Naur old/community/lib/perl-poe-component-ikc/PKGBUILD new/community/lib/perl-poe-component-ikc/PKGBUILD --- old/community/lib/perl-poe-component-ikc/PKGBUILD 2007-05-18 18:29:52.000000000 +0100 +++ new/community/lib/perl-poe-component-ikc/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module POE::Component::IKC" arch=("i686" "x86_64") url="http://search.cpan.org/GWYN/POE-Component-IKC" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GW/GWYN/POE-Component-IKC-0.1904.tar.gz") md5sums=("2a01e448dceb29be6e0ebbe2aa9b2d9b") makedepends=("perl-poe") diff -Naur old/community/lib/perl-regexp-shellish/PKGBUILD new/community/lib/perl-regexp-shellish/PKGBUILD --- old/community/lib/perl-regexp-shellish/PKGBUILD 2007-05-18 18:19:21.000000000 +0100 +++ new/community/lib/perl-regexp-shellish/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Regexp::Shellish : Shelllike regular expressions" arch=("i686" "x86_64") url="http://search.cpan.org/RBS/Regexp-Shellish" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RB/RBS/Regexp-Shellish-0.93.tar.gz") md5sums=("a5f92bf82b3d5033518e6d2c1028ee37") build() { diff -Naur old/community/lib/perl-rpc-xml/PKGBUILD new/community/lib/perl-rpc-xml/PKGBUILD --- old/community/lib/perl-rpc-xml/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-rpc-xml/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module RPC::XML" arch=("i686" "x86_64") url="http://search.cpan.org/RJRAY/RPC-XML" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RJ/RJRAY/RPC-XML-0.59.tar.gz") md5sums=('c65c66b3dbc3ff6236fe665a600aa57b') makedepends=("perlxml" "perl-libwww") diff -Naur old/community/lib/perl-set-infinite/PKGBUILD new/community/lib/perl-set-infinite/PKGBUILD --- old/community/lib/perl-set-infinite/PKGBUILD 2007-05-18 18:12:47.000000000 +0100 +++ new/community/lib/perl-set-infinite/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Set::Infinite : Infinite Set Theory module with Date Time" arch=("i686" "x86_64") url="http://search.cpan.org/FGLOCK/Set-Infinite" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FG/FGLOCK/Set-Infinite-0.61.tar.gz") md5sums=("c9912f4ee6ac2e2291be94a5a2bd11f2") build() { diff -Naur old/community/lib/perl-soap-lite/PKGBUILD new/community/lib/perl-soap-lite/PKGBUILD --- old/community/lib/perl-soap-lite/PKGBUILD 2007-05-18 17:55:46.000000000 +0100 +++ new/community/lib/perl-soap-lite/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module SOAP::Lite" arch=("i686" "x86_64") url="http://search.cpan.org/BYRNE/SOAP-Lite" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BY/BYRNE/SOAP-Lite-0.69.tar.gz") md5sums=("24e0c656a6a7047c91f7f3f3b5c36513") makedepends=("perl-mime-parser" "perl-uri" "perl-compress-zlib" "perl-crypt-ssleay" "perl-http-daemon" "perl-mime-lite" "perl-xml-parser" "perl-fcgi") diff -Naur old/community/lib/perl-spiffy/PKGBUILD new/community/lib/perl-spiffy/PKGBUILD --- old/community/lib/perl-spiffy/PKGBUILD 2007-05-18 18:11:37.000000000 +0100 +++ new/community/lib/perl-spiffy/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Spiffy" arch=("i686" "x86_64") url="http://search.cpan.org/INGY/Spiffy" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/I/IN/INGY/Spiffy-0.30.tar.gz") md5sums=("49860ccf2127c6d2af3d98560ffae644") build() { diff -Naur old/community/lib/perl-string-crc32/PKGBUILD new/community/lib/perl-string-crc32/PKGBUILD --- old/community/lib/perl-string-crc32/PKGBUILD 2007-05-18 17:48:42.000000000 +0100 +++ new/community/lib/perl-string-crc32/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module String::CRC32 : ZMODEMlike CRC32 generation" arch=("i686" "x86_64") url="http://search.cpan.org/SOENKE/String-CRC32" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SO/SOENKE/String-CRC32-1.4.tar.gz") md5sums=("9b241bc4a482a3aa59fbb1429bc30546") build() { diff -Naur old/community/lib/perl-string-shellquote/PKGBUILD new/community/lib/perl-string-shellquote/PKGBUILD --- old/community/lib/perl-string-shellquote/PKGBUILD 2007-05-18 18:14:52.000000000 +0100 +++ new/community/lib/perl-string-shellquote/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module String::ShellQuote : Quote string for safe passage through shells" arch=("i686" "x86_64") url="http://search.cpan.org/ROSCH/String-ShellQuote" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RO/ROSCH/String-ShellQuote-1.03.tar.gz") md5sums=("b42822efe385f6604f55b0cea5ac0b76") build() { diff -Naur old/community/lib/perl-sub-uplevel/PKGBUILD new/community/lib/perl-sub-uplevel/PKGBUILD --- old/community/lib/perl-sub-uplevel/PKGBUILD 2007-05-18 18:27:40.000000000 +0100 +++ new/community/lib/perl-sub-uplevel/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Sub::Uplevel" arch=("i686" "x86_64") url="http://search.cpan.org/DAGOLDEN/Sub-Uplevel" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.14.tar.gz") md5sums=("ed0cbc3ef75df91a22fd0d0404336765") build() { diff -Naur old/community/lib/perl-svn-mirror/PKGBUILD new/community/lib/perl-svn-mirror/PKGBUILD --- old/community/lib/perl-svn-mirror/PKGBUILD 2007-05-18 17:50:51.000000000 +0100 +++ new/community/lib/perl-svn-mirror/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module SVN::Mirror" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/SVN-Mirror" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/SVN-Mirror-0.73.tar.gz") md5sums=("170e067de85916f8d0b6a508194fbba3") makedepends=("perl-svn-simple-edit" "perl-uri-escape" "perl-class-accessor" "perl-file-chdir" "perl-date-format" "perl-uri-file" "perl-term-readkey") diff -Naur old/community/lib/perl-svn-simple-edit/PKGBUILD new/community/lib/perl-svn-simple-edit/PKGBUILD --- old/community/lib/perl-svn-simple-edit/PKGBUILD 2007-05-18 18:14:42.000000000 +0100 +++ new/community/lib/perl-svn-simple-edit/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module SVN::Simple::Edit" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/SVN-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/SVN-Simple-0.27.tar.gz") md5sums=("6a5609e038421564051019649dd05fd0") build() { diff -Naur old/community/lib/perl-sys-hostname-long/PKGBUILD new/community/lib/perl-sys-hostname-long/PKGBUILD --- old/community/lib/perl-sys-hostname-long/PKGBUILD 2007-05-18 17:57:46.000000000 +0100 +++ new/community/lib/perl-sys-hostname-long/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Sys::Hostname::Long : Return the hosts fully qualified name" arch=("i686" "x86_64") url="http://search.cpan.org/SCOTT/Sys-Hostname-Long" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SC/SCOTT/Sys-Hostname-Long-1.4.tar.gz") md5sums=("a5b3c23754cbcff10e283d16c42ec3d3") build() { diff -Naur old/community/lib/perl-term-animation/PKGBUILD new/community/lib/perl-term-animation/PKGBUILD --- old/community/lib/perl-term-animation/PKGBUILD 2007-05-18 17:46:28.000000000 +0100 +++ new/community/lib/perl-term-animation/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Term::Animation" arch=("i686" "x86_64") url="http://search.cpan.org/KBAUCOM/Term-Animation" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KB/KBAUCOM/Term-Animation-2.4.tar.gz") md5sums=("92799819f87f38cdbccf4c215e49b4cb") makedepends=("perl-curses") diff -Naur old/community/lib/perl-term-progressbar/PKGBUILD new/community/lib/perl-term-progressbar/PKGBUILD --- old/community/lib/perl-term-progressbar/PKGBUILD 2007-05-18 17:38:43.000000000 +0100 +++ new/community/lib/perl-term-progressbar/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Term::ProgressBar : Progress bar in just ASCII using Term" arch=("i686" "x86_64") url="http://search.cpan.org/FLUFFY/Term-ProgressBar" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FL/FLUFFY/Term-ProgressBar-2.09.tar.gz") md5sums=("440dfd04fe51a12d314e9adf2445f04a") makedepends=("perl-class-methodmaker" "perl-term-readkey") diff -Naur old/community/lib/perl-term-readkey/PKGBUILD new/community/lib/perl-term-readkey/PKGBUILD --- old/community/lib/perl-term-readkey/PKGBUILD 2007-05-18 17:42:40.000000000 +0100 +++ new/community/lib/perl-term-readkey/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Term::ReadKey : Read keystrokes and change terminal modes" arch=("i686" "x86_64") url="http://search.cpan.org/JSTOWE/TermReadKey" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JS/JSTOWE/TermReadKey-2.30.tar.gz") md5sums=("f0ef2cea8acfbcc58d865c05b0c7e1ff") build() { diff -Naur old/community/lib/perl-term-readpassword/PKGBUILD new/community/lib/perl-term-readpassword/PKGBUILD --- old/community/lib/perl-term-readpassword/PKGBUILD 2007-05-18 17:49:44.000000000 +0100 +++ new/community/lib/perl-term-readpassword/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Term::ReadPassword" arch=("i686" "x86_64") url="http://search.cpan.org/PHOENIX/Term-ReadPassword" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PH/PHOENIX/Term-ReadPassword-0.07.tar.gz") md5sums=("cc1a611fbb6dfd4d6e96e54434bb20b8") build() { diff -Naur old/community/lib/perl-term-ui/PKGBUILD new/community/lib/perl-term-ui/PKGBUILD --- old/community/lib/perl-term-ui/PKGBUILD 2007-05-18 17:36:51.000000000 +0100 +++ new/community/lib/perl-term-ui/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Term::UI" arch=("i686" "x86_64") url="http://search.cpan.org/KANE/Term-UI" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KA/KANE/Term-UI-0.14.tar.gz") md5sums=("a929235d67c718af3d1d431987796cd8") makedepends=("perl-locale-maketext-simple" "perl-log-message-simple" "perl-params-check") diff -Naur old/community/lib/perl-test-base/PKGBUILD new/community/lib/perl-test-base/PKGBUILD --- old/community/lib/perl-test-base/PKGBUILD 2007-05-18 18:24:39.000000000 +0100 +++ new/community/lib/perl-test-base/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Base" arch=("i686" "x86_64") url="http://search.cpan.org/INGY/Test-Base" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/I/IN/INGY/Test-Base-0.53.tar.gz") md5sums=("df7518b1b3df82f446ee36e4ce063f18") makedepends=("perl-spiffy") diff -Naur old/community/lib/perl-test-deep/PKGBUILD new/community/lib/perl-test-deep/PKGBUILD --- old/community/lib/perl-test-deep/PKGBUILD 2007-05-18 18:09:20.000000000 +0100 +++ new/community/lib/perl-test-deep/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Deep" arch=("i686" "x86_64") url="http://search.cpan.org/FDALY/Test-Deep" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FD/FDALY/Test-Deep-0.096.tar.gz") md5sums=("593cbc52d0170df46979e88645977bd5") makedepends=("perl-test-tester" "perl-test-nowarnings") diff -Naur old/community/lib/perl-test-differences/PKGBUILD new/community/lib/perl-test-differences/PKGBUILD --- old/community/lib/perl-test-differences/PKGBUILD 2007-05-18 17:36:51.000000000 +0100 +++ new/community/lib/perl-test-differences/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Differences" arch=("i686" "x86_64") url="http://search.cpan.org/RBS/Test-Differences" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RB/RBS/Test-Differences-0.47.tar.gz") md5sums=("e4fa76bb11b0d1db2d4213390413f5af") build() { diff -Naur old/community/lib/perl-test-exception/PKGBUILD new/community/lib/perl-test-exception/PKGBUILD --- old/community/lib/perl-test-exception/PKGBUILD 2007-05-18 17:45:40.000000000 +0100 +++ new/community/lib/perl-test-exception/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Exception : Functions for testing exceptionbased code" arch=("i686" "x86_64") url="http://search.cpan.org/ADIE/Test-Exception" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AD/ADIE/Test-Exception-0.25.tar.gz") md5sums=("aaef654ff2239008e8827ece592f7a0a") makedepends=("perl-sub-uplevel") diff -Naur old/community/lib/perl-test-longstring/PKGBUILD new/community/lib/perl-test-longstring/PKGBUILD --- old/community/lib/perl-test-longstring/PKGBUILD 2007-05-18 17:55:25.000000000 +0100 +++ new/community/lib/perl-test-longstring/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::LongString" arch=("i686" "x86_64") url="http://search.cpan.org/RGARCIA/Test-LongString" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RG/RGARCIA/Test-LongString-0.11.tar.gz") md5sums=("860635425e63c5f15261418f25cf106f") build() { diff -Naur old/community/lib/perl-test-manifest/PKGBUILD new/community/lib/perl-test-manifest/PKGBUILD --- old/community/lib/perl-test-manifest/PKGBUILD 2007-05-18 17:43:18.000000000 +0100 +++ new/community/lib/perl-test-manifest/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Manifest : configure which test files to run" arch=("i686" "x86_64") url="http://search.cpan.org/BDFOY/Test-Manifest" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Manifest-1.17.tar.gz") md5sums=("6c4e391aab2a42e6edb0970c45da31cd") build() { diff -Naur old/community/lib/perl-test-mockobject/PKGBUILD new/community/lib/perl-test-mockobject/PKGBUILD --- old/community/lib/perl-test-mockobject/PKGBUILD 2007-05-18 18:17:59.000000000 +0100 +++ new/community/lib/perl-test-mockobject/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::MockObject" arch=("i686" "x86_64") url="http://search.cpan.org/CHROMATIC/Test-MockObject" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CH/CHROMATIC/Test-MockObject-1.07.tar.gz") md5sums=("197af22ac675405199693ed68f0959e1") makedepends=("perl-universal-isa" "perl-universal-can") diff -Naur old/community/lib/perl-test-nowarnings/PKGBUILD new/community/lib/perl-test-nowarnings/PKGBUILD --- old/community/lib/perl-test-nowarnings/PKGBUILD 2007-05-18 17:44:49.000000000 +0100 +++ new/community/lib/perl-test-nowarnings/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::NoWarnings" arch=("i686" "x86_64") url="http://search.cpan.org/FDALY/Test-NoWarnings" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FD/FDALY/Test-NoWarnings-0.083.tar.gz") md5sums=("8c55c1ca89919caf42cf83c67d44d7f4") makedepends=("perl-test-tester") diff -Naur old/community/lib/perl-test-pod/PKGBUILD new/community/lib/perl-test-pod/PKGBUILD --- old/community/lib/perl-test-pod/PKGBUILD 2007-05-18 18:27:57.000000000 +0100 +++ new/community/lib/perl-test-pod/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Pod : Tests POD files for correctness" arch=("i686" "x86_64") url="http://search.cpan.org/PETDANCE/Test-Pod" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PE/PETDANCE/Test-Pod-1.26.tar.gz") md5sums=("2f259135656ac4549b65a4f14f07b7c6") makedepends=("perl-pod-simple") diff -Naur old/community/lib/perl-test-simple/PKGBUILD new/community/lib/perl-test-simple/PKGBUILD --- old/community/lib/perl-test-simple/PKGBUILD 2007-02-09 16:42:31.000000000 +0000 +++ new/community/lib/perl-test-simple/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ url="http://search.cpan.org/~MSCHWERN/Test-Simple" depends=('perl') makedepends=('perl') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/M/MS/MSCHWERN/Test-Simple-$pkgver.tar.gz) md5sums=('e22dcd4f06eed7b389f2bd0d17ed4dc1') diff -Naur old/community/lib/perl-test-tester/PKGBUILD new/community/lib/perl-test-tester/PKGBUILD --- old/community/lib/perl-test-tester/PKGBUILD 2007-05-18 18:19:30.000000000 +0100 +++ new/community/lib/perl-test-tester/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Test::Tester" arch=("i686" "x86_64") url="http://search.cpan.org/FDALY/Test-Tester" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/F/FD/FDALY/Test-Tester-0.104.tar.gz") md5sums=("3339108ed79bf8dbb51fc34ca7816c49") build() { diff -Naur old/community/lib/perl-text-charwidth/PKGBUILD new/community/lib/perl-text-charwidth/PKGBUILD --- old/community/lib/perl-text-charwidth/PKGBUILD 2007-05-18 18:11:52.000000000 +0100 +++ new/community/lib/perl-text-charwidth/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::CharWidth" arch=("i686" "x86_64") url="http://search.cpan.org/KUBOTA/Text-CharWidth" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KU/KUBOTA/Text-CharWidth-0.04.tar.gz") md5sums=("37a723df0580c0758c0ee67b37336c15") build() { diff -Naur old/community/lib/perl-text-csv/PKGBUILD new/community/lib/perl-text-csv/PKGBUILD --- old/community/lib/perl-text-csv/PKGBUILD 2007-05-18 18:28:50.000000000 +0100 +++ new/community/lib/perl-text-csv/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::CSV : Manipulate commaseparated value strings" arch=("i686" "x86_64") url="http://search.cpan.org/ALANCITT/Text-CSV" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AL/ALANCITT/Text-CSV-0.01.tar.gz") md5sums=("f85f63d0e72b7c06164d894e5726a27a") build() { diff -Naur old/community/lib/perl-text-csv-xs/PKGBUILD new/community/lib/perl-text-csv-xs/PKGBUILD --- old/community/lib/perl-text-csv-xs/PKGBUILD 2007-05-18 18:22:52.000000000 +0100 +++ new/community/lib/perl-text-csv-xs/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::CSV_XS : Fast 8bit clean version of TextCSV" arch=("i686" "x86_64") url="http://search.cpan.org/HMBRAND/Text-CSV_XS" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/H/HM/HMBRAND/Text-CSV_XS-0.26.tgz") md5sums=("36f2ed83f3de6471d1e9e892a054be66") build() { diff -Naur old/community/lib/perl-text-diff/PKGBUILD new/community/lib/perl-text-diff/PKGBUILD --- old/community/lib/perl-text-diff/PKGBUILD 2007-05-18 17:53:57.000000000 +0100 +++ new/community/lib/perl-text-diff/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::Diff" arch=("i686" "x86_64") url="http://search.cpan.org/RBS/Text-Diff" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RB/RBS/Text-Diff-0.35.tar.gz") md5sums=("4931662ea353384dec2a54a71b26ee8c") build() { diff -Naur old/community/lib/perl-text-glob/PKGBUILD new/community/lib/perl-text-glob/PKGBUILD --- old/community/lib/perl-text-glob/PKGBUILD 2007-05-18 17:40:43.000000000 +0100 +++ new/community/lib/perl-text-glob/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::Glob" arch=("i686" "x86_64") url="http://search.cpan.org/RCLAMP/Text-Glob" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCLAMP/Text-Glob-0.08.tar.gz") md5sums=("39a1a3e890cd5d3f51a707579098bc1c") build() { diff -Naur old/community/lib/perl-text-iconv/PKGBUILD new/community/lib/perl-text-iconv/PKGBUILD --- old/community/lib/perl-text-iconv/PKGBUILD 2007-05-18 17:36:51.000000000 +0100 +++ new/community/lib/perl-text-iconv/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::Iconv : Interface to iconv codeset conversion" arch=("i686" "x86_64") url="http://search.cpan.org/MPIOTR/Text-Iconv" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MP/MPIOTR/Text-Iconv-1.4.tar.gz") md5sums=("3e9306e9262ff13bb9ba29a251c5094a") build() { diff -Naur old/community/lib/perl-text-markdown/PKGBUILD new/community/lib/perl-text-markdown/PKGBUILD --- old/community/lib/perl-text-markdown/PKGBUILD 2007-05-18 18:16:15.000000000 +0100 +++ new/community/lib/perl-text-markdown/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::Markdown" arch=("i686" "x86_64") url="http://search.cpan.org/SRI/Text-Markdown" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SR/SRI/Text-Markdown-1.0.3.tar.gz") md5sums=("cbef6151c4ec798754e4dd21164a4dac") build() { diff -Naur old/community/lib/perl-text-reform/PKGBUILD new/community/lib/perl-text-reform/PKGBUILD --- old/community/lib/perl-text-reform/PKGBUILD 2007-05-18 18:25:14.000000000 +0100 +++ new/community/lib/perl-text-reform/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::Reform" arch=("i686" "x86_64") url="http://search.cpan.org/DCONWAY/Text-Reform" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/D/DC/DCONWAY/Text-Reform-1.11.tar.gz") md5sums=("18646b9fee3d2ddecdacde1d9210d83d") build() { diff -Naur old/community/lib/perl-text-vfile-asdata/PKGBUILD new/community/lib/perl-text-vfile-asdata/PKGBUILD --- old/community/lib/perl-text-vfile-asdata/PKGBUILD 2007-05-18 18:24:47.000000000 +0100 +++ new/community/lib/perl-text-vfile-asdata/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::vFile::asData" arch=("i686" "x86_64") url="http://search.cpan.org/RCLAMP/Text-vFile-asData" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RC/RCLAMP/Text-vFile-asData-0.05.tar.gz") md5sums=("3e2ec1f22562dc3d92ababac4f882bed") makedepends=("perl-class-accessor-chained") diff -Naur old/community/lib/perl-text-wrapi18n/PKGBUILD new/community/lib/perl-text-wrapi18n/PKGBUILD --- old/community/lib/perl-text-wrapi18n/PKGBUILD 2007-05-18 17:47:23.000000000 +0100 +++ new/community/lib/perl-text-wrapi18n/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Text::WrapI18N" arch=("i686" "x86_64") url="http://search.cpan.org/KUBOTA/Text-WrapI18N" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KU/KUBOTA/Text-WrapI18N-0.06.tar.gz") md5sums=("0799c16a00926e6c18d400c2e2861d5f") build() { diff -Naur old/community/lib/perl-tidy/PKGBUILD new/community/lib/perl-tidy/PKGBUILD --- old/community/lib/perl-tidy/PKGBUILD 2007-05-18 17:45:30.000000000 +0100 +++ new/community/lib/perl-tidy/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Perl::Tidy" arch=("i686" "x86_64") url="http://search.cpan.org/SHANCOCK/Perl-Tidy" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SH/SHANCOCK/Perl-Tidy-20070508.tar.gz") md5sums=("364c1b019771947a437fa35018f7ece1") build() { diff -Naur old/community/lib/perl-tie-cphash/PKGBUILD new/community/lib/perl-tie-cphash/PKGBUILD --- old/community/lib/perl-tie-cphash/PKGBUILD 2007-05-18 17:43:23.000000000 +0100 +++ new/community/lib/perl-tie-cphash/PKGBUILD 2007-08-03 13:16:43.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Tie::CPHash : Case preserving but case insensitive hash" arch=("i686" "x86_64") url="http://search.cpan.org/CJM/Tie-CPHash" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CJ/CJM/Tie-CPHash-1.03.tar.gz") md5sums=("6bf733fdd8ad4ff03c7169f6d7f704ff") depends=("perl-module-build") diff -Naur old/community/lib/perl-tie-hash-indexed/PKGBUILD new/community/lib/perl-tie-hash-indexed/PKGBUILD --- old/community/lib/perl-tie-hash-indexed/PKGBUILD 2007-05-18 17:55:58.000000000 +0100 +++ new/community/lib/perl-tie-hash-indexed/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Tie::Hash::Indexed" arch=("i686" "x86_64") url="http://search.cpan.org/MHX/Tie-Hash-Indexed" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MH/MHX/Tie-Hash-Indexed-0.04.tar.gz") md5sums=("4823507164ce236a00cee66e33e71484") build() { diff -Naur old/community/lib/perl-tie-ixhash/PKGBUILD new/community/lib/perl-tie-ixhash/PKGBUILD --- old/community/lib/perl-tie-ixhash/PKGBUILD 2007-05-18 18:27:19.000000000 +0100 +++ new/community/lib/perl-tie-ixhash/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Tie::IxHash : Indexed hash ordered arrayhash composite" arch=("i686" "x86_64") url="http://search.cpan.org/GSAR/Tie-IxHash" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GS/GSAR/Tie-IxHash-1.21.tar.gz") md5sums=("567ddc13081596b52cfe3d82218cb264") build() { diff -Naur old/community/lib/perl-time-duration/PKGBUILD new/community/lib/perl-time-duration/PKGBUILD --- old/community/lib/perl-time-duration/PKGBUILD 2007-05-18 18:20:55.000000000 +0100 +++ new/community/lib/perl-time-duration/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Time::Duration" arch=("i686" "x86_64") url="http://search.cpan.org/AVIF/Time-Duration" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AV/AVIF/Time-Duration-1.04.tar.gz") md5sums=("0c8f3d4702bcf0b0750dd476ed5f17ec") build() { diff -Naur old/community/lib/perl-time-format/PKGBUILD new/community/lib/perl-time-format/PKGBUILD --- old/community/lib/perl-time-format/PKGBUILD 2007-05-18 17:50:58.000000000 +0100 +++ new/community/lib/perl-time-format/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Time::Format : Easytouse datetime formatting" arch=("i686" "x86_64") url="http://search.cpan.org/ROODE/Time-Format" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RO/ROODE/Time-Format-1.02.tar.gz") md5sums=("f19a947ae3c2490a3edc9ca859ec43b3") build() { diff -Naur old/community/lib/perl-time-human/PKGBUILD new/community/lib/perl-time-human/PKGBUILD --- old/community/lib/perl-time-human/PKGBUILD 2007-05-18 18:09:28.000000000 +0100 +++ new/community/lib/perl-time-human/PKGBUILD 2007-08-03 13:16:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Time::Human" arch=("i686" "x86_64") url="http://search.cpan.org/JHOBLITT/Time-Human" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JH/JHOBLITT/Time-Human-1.03.tar.gz") md5sums=("0e869154c54593305cb1366285c8cac5") build() { diff -Naur old/community/lib/perl-tk-tablematrix/PKGBUILD new/community/lib/perl-tk-tablematrix/PKGBUILD --- old/community/lib/perl-tk-tablematrix/PKGBUILD 2007-05-18 17:58:03.000000000 +0100 +++ new/community/lib/perl-tk-tablematrix/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Tk::TableMatrix : Display data in TableSpreadsheet format" arch=("i686" "x86_64") url="http://search.cpan.org/CERNEY/Tk-TableMatrix" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CE/CERNEY/Tk-TableMatrix-1.23.tar.gz") md5sums=("6b7653d129bf1a8327054a88b58d6364") build() { diff -Naur old/community/lib/perl-unicode-string/PKGBUILD new/community/lib/perl-unicode-string/PKGBUILD --- old/community/lib/perl-unicode-string/PKGBUILD 2007-05-18 17:38:52.000000000 +0100 +++ new/community/lib/perl-unicode-string/PKGBUILD 2007-08-03 13:16:42.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module Unicode::String : String manipulation for Unicode strings" arch=("i686" "x86_64") url="http://search.cpan.org/GAAS/Unicode-String" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GA/GAAS/Unicode-String-2.09.tar.gz") md5sums=("553e68e603723bf7c631f8701ab0d678") build() { diff -Naur old/community/lib/perl-universal-can/PKGBUILD new/community/lib/perl-universal-can/PKGBUILD --- old/community/lib/perl-universal-can/PKGBUILD 2007-05-18 17:40:32.000000000 +0100 +++ new/community/lib/perl-universal-can/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module UNIVERSAL::can" arch=("i686" "x86_64") url="http://search.cpan.org/CHROMATIC/UNIVERSAL-can" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CH/CHROMATIC/UNIVERSAL-can-1.12.tar.gz") md5sums=("4386c4f7479447fc5b51e8c3770cd2f4") build() { diff -Naur old/community/lib/perl-universal-isa/PKGBUILD new/community/lib/perl-universal-isa/PKGBUILD --- old/community/lib/perl-universal-isa/PKGBUILD 2007-05-18 17:43:50.000000000 +0100 +++ new/community/lib/perl-universal-isa/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module UNIVERSAL::isa" arch=("i686" "x86_64") url="http://search.cpan.org/CHROMATIC/UNIVERSAL-isa" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CH/CHROMATIC/UNIVERSAL-isa-0.06.tar.gz") md5sums=("835c9aa89e18521767c9c13b6c9f50d3") build() { diff -Naur old/community/lib/perl-universal-require/PKGBUILD new/community/lib/perl-universal-require/PKGBUILD --- old/community/lib/perl-universal-require/PKGBUILD 2007-05-18 17:43:56.000000000 +0100 +++ new/community/lib/perl-universal-require/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module UNIVERSAL::require" arch=("i686" "x86_64") url="http://search.cpan.org/MSCHWERN/UNIVERSAL-require" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSCHWERN/UNIVERSAL-require-0.11.tar.gz") md5sums=("a93b419333866dcf1e974e8079a41bd7") build() { diff -Naur old/community/lib/perl-uri-fetch/PKGBUILD new/community/lib/perl-uri-fetch/PKGBUILD --- old/community/lib/perl-uri-fetch/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-uri-fetch/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module URI::Fetch" arch=("i686" "x86_64") url="http://search.cpan.org/BTROTT/URI-Fetch" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BT/BTROTT/URI-Fetch-0.08.tar.gz") md5sums=("8fb5b27b33bd18006d6c11378ae5de8d") makedepends=("perl-uri" "perl-libwww" "perl-class-errorhandler") diff -Naur old/community/lib/perl-user-identity/PKGBUILD new/community/lib/perl-user-identity/PKGBUILD --- old/community/lib/perl-user-identity/PKGBUILD 2007-05-18 17:48:14.000000000 +0100 +++ new/community/lib/perl-user-identity/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module User::Identity : Define a person" arch=("i686" "x86_64") url="http://search.cpan.org/MARKOV/User-Identity" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MA/MARKOV/User-Identity-0.91.tar.gz") md5sums=("d5929be62a99b90f60b07062ab86a2ec") build() { diff -Naur old/community/lib/perl-version/PKGBUILD new/community/lib/perl-version/PKGBUILD --- old/community/lib/perl-version/PKGBUILD 2007-05-18 17:41:16.000000000 +0100 +++ new/community/lib/perl-version/PKGBUILD 2007-08-03 13:16:33.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module version : structured version objects" arch=("i686" "x86_64") url="http://search.cpan.org/JPEACOCK/version" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JP/JPEACOCK/version-0.7203.tar.gz") md5sums=("796053989cb6e3ca3fb0c5b4e92cf109") build() { diff -Naur old/community/lib/perl-www-curl/PKGBUILD new/community/lib/perl-www-curl/PKGBUILD --- old/community/lib/perl-www-curl/PKGBUILD 2007-05-18 18:12:09.000000000 +0100 +++ new/community/lib/perl-www-curl/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module WWW::Curl" arch=("i686" "x86_64") url="http://search.cpan.org/CRISB/WWW-Curl" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CR/CRISB/WWW-Curl-3.02.tar.gz") md5sums=("0619d1a39fc92e9a5363f2269b7b1d59") depends=("curl") diff -Naur old/community/lib/perl-www-mechanize/PKGBUILD new/community/lib/perl-www-mechanize/PKGBUILD --- old/community/lib/perl-www-mechanize/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-www-mechanize/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module WWW::Mechanize : Automates web page form link interaction" arch=("i686" "x86_64") url="http://search.cpan.org/PETDANCE/WWW-Mechanize" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PE/PETDANCE/WWW-Mechanize-1.30.tar.gz") md5sums=('13efe329942f741f966f09ea4f95710b') makedepends=( "perl-uri" "perl-html-parser" "perl-html-parser" "perl-libwww") diff -Naur old/community/lib/perl-www-sms/PKGBUILD new/community/lib/perl-www-sms/PKGBUILD --- old/community/lib/perl-www-sms/PKGBUILD 2007-05-18 18:22:03.000000000 +0100 +++ new/community/lib/perl-www-sms/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module WWW::SMS : A Perl framework for sending SMS messages" arch=("i686" "x86_64") url="http://search.cpan.org/EIM/WWW-SMS" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/E/EI/EIM/WWW-SMS/WWW-SMS-0.09.tar.gz") md5sums=("bf5810409bfdc9dfb9fb44e8ef3ec346") install=perl-www-sms.install diff -Naur old/community/lib/perl-x11-protocol/PKGBUILD new/community/lib/perl-x11-protocol/PKGBUILD --- old/community/lib/perl-x11-protocol/PKGBUILD 2007-05-18 17:58:11.000000000 +0100 +++ new/community/lib/perl-x11-protocol/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module X11::Protocol : Raw interface to X Window System servers" arch=("i686" "x86_64") url="http://search.cpan.org/SMCCAM/X11-Protocol" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/S/SM/SMCCAM/X11-Protocol-0.56.tar.gz") md5sums=("2260bad68d373b201b17c60d761e0f0a") depends=("xorg-server") diff -Naur old/community/lib/perl-xml-atom/PKGBUILD new/community/lib/perl-xml-atom/PKGBUILD --- old/community/lib/perl-xml-atom/PKGBUILD 2007-05-18 18:13:34.000000000 +0100 +++ new/community/lib/perl-xml-atom/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Atom" arch=("i686" "x86_64") url="http://search.cpan.org/MIYAGAWA/XML-Atom" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MI/MIYAGAWA/XML-Atom-0.25.tar.gz") md5sums=("6ffe8485517481f30b5a16f4ff677941") makedepends=("perl-uri" "perl-class-data-inheritable") diff -Naur old/community/lib/perl-xml-dom/PKGBUILD new/community/lib/perl-xml-dom/PKGBUILD --- old/community/lib/perl-xml-dom/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-xml-dom/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::DOM : Implements Level 1 of W3s DOM" arch=("i686" "x86_64") url="http://search.cpan.org/TJMATHER/XML-DOM" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TJ/TJMATHER/XML-DOM-1.44.tar.gz") md5sums=('1ec2032a06e5762984f7a332c199c205') makedepends=("perl-xml-parser-perlsax" "perl-libwww" "perl-xml-regexp" "perlxml") diff -Naur old/community/lib/perl-xml-feed/PKGBUILD new/community/lib/perl-xml-feed/PKGBUILD --- old/community/lib/perl-xml-feed/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-xml-feed/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Feed" arch=("i686" "x86_64") url="http://search.cpan.org/BTROTT/XML-Feed" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BT/BTROTT/XML-Feed-0.12.tar.gz") md5sums=("77565d61b511f7ae05623064e04e9f56") makedepends=("perl-datetime" "perl-xml-rss" "perl-uri-fetch" "perl-xml-atom" "perl-datetime-format-mail" "perl-class-errorhandler" "perl-datetime-format-w3cdtf" "perl-feed-find") diff -Naur old/community/lib/perl-xml-grove/PKGBUILD new/community/lib/perl-xml-grove/PKGBUILD --- old/community/lib/perl-xml-grove/PKGBUILD 2007-05-18 17:46:34.000000000 +0100 +++ new/community/lib/perl-xml-grove/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Grove : Flexible lightweight midlevel XML objects" arch=("i686" "x86_64") url="http://search.cpan.org/KMACLEOD/XML-Grove" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KM/KMACLEOD/XML-Grove-0.46alpha.tar.gz") md5sums=("48bee70ae412bd6cf8ef302b6c68e24e") build() { diff -Naur old/community/lib/perl-xml-libxml/PKGBUILD new/community/lib/perl-xml-libxml/PKGBUILD --- old/community/lib/perl-xml-libxml/PKGBUILD 2007-05-18 17:52:40.000000000 +0100 +++ new/community/lib/perl-xml-libxml/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::LibXML : Interface to the libxml library" arch=("i686" "x86_64") url="http://search.cpan.org/PAJAS/XML-LibXML" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PA/PAJAS/XML-LibXML-1.63.tar.gz") md5sums=("750e296f57a6e245caf4829a25440cef") install=perl-xml-libxml.install diff -Naur old/community/lib/perl-xml-libxml-common/PKGBUILD new/community/lib/perl-xml-libxml-common/PKGBUILD --- old/community/lib/perl-xml-libxml-common/PKGBUILD 2007-05-18 17:48:57.000000000 +0100 +++ new/community/lib/perl-xml-libxml-common/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::LibXML::Common" arch=("i686" "x86_64") url="http://search.cpan.org/PHISH/XML-LibXML-Common" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PH/PHISH/XML-LibXML-Common-0.13.tar.gz") md5sums=("13b6d93f53375d15fd11922216249659") build() { diff -Naur old/community/lib/perl-xml-libxslt/PKGBUILD new/community/lib/perl-xml-libxslt/PKGBUILD --- old/community/lib/perl-xml-libxslt/PKGBUILD 2007-05-18 18:21:10.000000000 +0100 +++ new/community/lib/perl-xml-libxslt/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::LibXSLT" arch=("i686" "x86_64") url="http://search.cpan.org/PAJAS/XML-LibXSLT" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/P/PA/PAJAS/XML-LibXSLT-1.62.tar.gz") md5sums=("aed0af386cda3f6117aceacef7cb98d9") makedepends=("perl-xml-libxml") diff -Naur old/community/lib/perl-xml-namespacesupport/PKGBUILD new/community/lib/perl-xml-namespacesupport/PKGBUILD --- old/community/lib/perl-xml-namespacesupport/PKGBUILD 2007-05-18 17:38:00.000000000 +0100 +++ new/community/lib/perl-xml-namespacesupport/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::NamespaceSupport : Generic namespace helpers ported from SAX2" arch=("i686" "x86_64") url="http://search.cpan.org/RBERJON/XML-NamespaceSupport" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RB/RBERJON/XML-NamespaceSupport-1.09.tar.gz") md5sums=("b0867d7b599d8a63ba630fa6227936fe") build() { diff -Naur old/community/lib/perl-xml-parser/PKGBUILD new/community/lib/perl-xml-parser/PKGBUILD --- old/community/lib/perl-xml-parser/PKGBUILD 2007-05-18 17:50:31.000000000 +0100 +++ new/community/lib/perl-xml-parser/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Parser : Flexible fast parser with plugin styles" arch=("i686" "x86_64") url="http://search.cpan.org/MSERGEANT/XML-Parser" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSERGEANT/XML-Parser-2.34.tar.gz") md5sums=("84d9e0001fe01c14867256c3fe115899") build() { diff -Naur old/community/lib/perl-xml-parser-perlsax/PKGBUILD new/community/lib/perl-xml-parser-perlsax/PKGBUILD --- old/community/lib/perl-xml-parser-perlsax/PKGBUILD 2007-05-18 18:24:55.000000000 +0100 +++ new/community/lib/perl-xml-parser-perlsax/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Parser::PerlSAX" arch=("i686" "x86_64") url="http://search.cpan.org/KMACLEOD/libxml-perl" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KM/KMACLEOD/libxml-perl-0.08.tar.gz") md5sums=("0ed5fbdda53d1301ddaed88db10503bb") build() { diff -Naur old/community/lib/perl-xml-regexp/PKGBUILD new/community/lib/perl-xml-regexp/PKGBUILD --- old/community/lib/perl-xml-regexp/PKGBUILD 2007-05-18 18:13:03.000000000 +0100 +++ new/community/lib/perl-xml-regexp/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::RegExp : Regular expressions for XML tokens" arch=("i686" "x86_64") url="http://search.cpan.org/TJMATHER/XML-RegExp" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/T/TJ/TJMATHER/XML-RegExp-0.03.tar.gz") md5sums=("5826b24e0d05714e25c2bb04e1f1c09b") build() { diff -Naur old/community/lib/perl-xml-rss/PKGBUILD new/community/lib/perl-xml-rss/PKGBUILD --- old/community/lib/perl-xml-rss/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-xml-rss/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::RSS : Parse or create Rich Site Summaries RSS" arch=("i686" "x86_64") url="http://search.cpan.org/ABH/XML-RSS" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AB/ABH/XML-RSS-1.22.tar.gz") md5sums=("0ae1aca75c024dfe2e1306881963ff39") makedepends=("perl-datetime-format-w3cdtf" "perl-datetime" "perl-html-parser" "perl-test-manifest" "perl-datetime-format-mail" "perlxml") diff -Naur old/community/lib/perl-xml-rsslite/PKGBUILD new/community/lib/perl-xml-rsslite/PKGBUILD --- old/community/lib/perl-xml-rsslite/PKGBUILD 2007-05-18 18:07:57.000000000 +0100 +++ new/community/lib/perl-xml-rsslite/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::RSSLite" arch=("i686" "x86_64") url="http://search.cpan.org/JPIERCE/XML-RSSLite" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JP/JPIERCE/XML-RSSLite-0.11.tgz") md5sums=("96940cdc3c85958a0825c44245750bd6") build() { diff -Naur old/community/lib/perl-xml-sax/PKGBUILD new/community/lib/perl-xml-sax/PKGBUILD --- old/community/lib/perl-xml-sax/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/perl-xml-sax/PKGBUILD 2007-08-03 13:16:38.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::SAX" arch=('i686' 'x86_64') url="http://search.cpan.org/GRANTM/XML-SAX" -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') source=("http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-0.15.tar.gz") md5sums=('4b2276bafedc5a41cf50fea2296e31c4') install=perl-xml-sax.install diff -Naur old/community/lib/perl-xml-sax-base/PKGBUILD new/community/lib/perl-xml-sax-base/PKGBUILD --- old/community/lib/perl-xml-sax-base/PKGBUILD 2007-05-18 17:58:18.000000000 +0100 +++ new/community/lib/perl-xml-sax-base/PKGBUILD 2007-08-03 13:16:41.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::SAX::Base" arch=("i686" "x86_64") url="http://search.cpan.org/KHAMPTON/XML-SAX-Base" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/K/KH/KHAMPTON/XML-SAX-Base-1.02.tar.gz") md5sums=("1f2171d74940ad9bc5d7256e4972813d") build() { diff -Naur old/community/lib/perl-xml-sax-expat/PKGBUILD new/community/lib/perl-xml-sax-expat/PKGBUILD --- old/community/lib/perl-xml-sax-expat/PKGBUILD 2007-05-18 18:19:38.000000000 +0100 +++ new/community/lib/perl-xml-sax-expat/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::SAX::Expat" arch=("i686" "x86_64") url="http://search.cpan.org/BJOERN/XML-SAX-Expat" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/B/BJ/BJOERN/XML-SAX-Expat-0.38.tar.gz") md5sums=("7684b32ae18cee16d9c21e6487e935b3") install=perl-xml-sax-expat.install diff -Naur old/community/lib/perl-xml-simple/PKGBUILD new/community/lib/perl-xml-simple/PKGBUILD --- old/community/lib/perl-xml-simple/PKGBUILD 2007-05-18 18:08:08.000000000 +0100 +++ new/community/lib/perl-xml-simple/PKGBUILD 2007-08-03 13:16:39.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Simple : Easy API to maintain XML esp config files" arch=("i686" "x86_64") url="http://search.cpan.org/GRANTM/XML-Simple" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GR/GRANTM/XML-Simple-2.16.tar.gz") md5sums=("80c0980ff63d77b871de41acc7175df7") makedepends=("perl-xml-sax" "perl-xml-namespacesupport" "perl-xml-sax-expat") diff -Naur old/community/lib/perl-xml-smart/PKGBUILD new/community/lib/perl-xml-smart/PKGBUILD --- old/community/lib/perl-xml-smart/PKGBUILD 2007-05-18 18:09:36.000000000 +0100 +++ new/community/lib/perl-xml-smart/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Smart" arch=("i686" "x86_64") url="http://search.cpan.org/GMPASSOS/XML-Smart" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/G/GM/GMPASSOS/XML-Smart-1.6.9.tar.gz") md5sums=("648309c0d613ddaca6f6b16e9f13c81d") build() { diff -Naur old/community/lib/perl-xml-stream/PKGBUILD new/community/lib/perl-xml-stream/PKGBUILD --- old/community/lib/perl-xml-stream/PKGBUILD 2007-05-18 18:29:20.000000000 +0100 +++ new/community/lib/perl-xml-stream/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Stream : Module for handling XML Streams" arch=("i686" "x86_64") url="http://search.cpan.org/REATMON/XML-Stream" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/R/RE/REATMON/XML-Stream-1.22.tar.gz") md5sums=("ae09400fac17eaea4c9b12283db06881") makedepends=("perl-authen-sasl") diff -Naur old/community/lib/perl-xml-twig/PKGBUILD new/community/lib/perl-xml-twig/PKGBUILD --- old/community/lib/perl-xml-twig/PKGBUILD 2007-05-18 18:13:18.000000000 +0100 +++ new/community/lib/perl-xml-twig/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Twig : A module for easy processing of XML" arch=("i686" "x86_64") url="http://search.cpan.org/MIROD/XML-Twig" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MI/MIROD/XML-Twig-3.29.tar.gz") md5sums=("fd1931464e28fb7ad082439bc2c11c2c") makedepends=("perl-xml-parser") diff -Naur old/community/lib/perl-xml-writer/PKGBUILD new/community/lib/perl-xml-writer/PKGBUILD --- old/community/lib/perl-xml-writer/PKGBUILD 2007-05-18 18:20:00.000000000 +0100 +++ new/community/lib/perl-xml-writer/PKGBUILD 2007-08-03 13:16:40.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::Writer : Module for writing XML documents" arch=("i686" "x86_64") url="http://search.cpan.org/JOSEPHW/XML-Writer" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/J/JO/JOSEPHW/XML-Writer-0.602.tar.gz") md5sums=("c715d6fd90ac775316cc313815ba3b77") provides=(perl-writer) diff -Naur old/community/lib/perl-xml-xpath/PKGBUILD new/community/lib/perl-xml-xpath/PKGBUILD --- old/community/lib/perl-xml-xpath/PKGBUILD 2007-05-18 17:46:42.000000000 +0100 +++ new/community/lib/perl-xml-xpath/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module XML::XPath : A set of modules for parsing and evaluating" arch=("i686" "x86_64") url="http://search.cpan.org/MSERGEANT/XML-XPath" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/M/MS/MSERGEANT/XML-XPath-1.13.tar.gz") md5sums=("b5919d9220d83982feb6e2321850c5d7") build() { diff -Naur old/community/lib/perl-yaml/PKGBUILD new/community/lib/perl-yaml/PKGBUILD --- old/community/lib/perl-yaml/PKGBUILD 2007-05-18 17:56:12.000000000 +0100 +++ new/community/lib/perl-yaml/PKGBUILD 2007-08-03 13:16:36.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module YAML : YAML Aint Markup Language tm" arch=("i686" "x86_64") url="http://search.cpan.org/INGY/YAML" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/I/IN/INGY/YAML-0.62.tar.gz") md5sums=("4be042a043ec520074b0ab6f7ca0bded") build() { diff -Naur old/community/lib/perlio-eol/PKGBUILD new/community/lib/perlio-eol/PKGBUILD --- old/community/lib/perlio-eol/PKGBUILD 2007-05-18 17:37:54.000000000 +0100 +++ new/community/lib/perlio-eol/PKGBUILD 2007-08-03 13:16:37.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module PerlIO::eol" arch=("i686" "x86_64") url="http://search.cpan.org/AUDREYT/PerlIO-eol" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/A/AU/AUDREYT/PerlIO-eol-0.14.tar.gz") md5sums=("55c5d3fafab00a511ff1c2722060235c") build() { diff -Naur old/community/lib/perlio-via-dynamic/PKGBUILD new/community/lib/perlio-via-dynamic/PKGBUILD --- old/community/lib/perlio-via-dynamic/PKGBUILD 2007-05-18 17:43:45.000000000 +0100 +++ new/community/lib/perlio-via-dynamic/PKGBUILD 2007-08-03 13:16:32.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module PerlIO::via::dynamic" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/PerlIO-via-dynamic" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/PerlIO-via-dynamic-0.12.tar.gz") md5sums=("2bbb9d61c3e8df006e8bede08ed5c9c1") build() { diff -Naur old/community/lib/perlio-via-symlink/PKGBUILD new/community/lib/perlio-via-symlink/PKGBUILD --- old/community/lib/perlio-via-symlink/PKGBUILD 2007-05-18 18:15:53.000000000 +0100 +++ new/community/lib/perlio-via-symlink/PKGBUILD 2007-08-03 13:16:35.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Perl/CPAN Module PerlIO::via::symlink" arch=("i686" "x86_64") url="http://search.cpan.org/CLKAO/PerlIO-via-symlink" -license=("GPL" "Artistic") +license=("GPL" "PerlArtistic") source=("http://www.cpan.org/authors/id/C/CL/CLKAO/PerlIO-via-symlink-0.05.tar.gz") md5sums=("bf33533dba6a48eb459a15df15c8415f") build() { diff -Naur old/community/lib/physfs/PKGBUILD new/community/lib/physfs/PKGBUILD --- old/community/lib/physfs/PKGBUILD 2007-07-02 18:24:05.000000000 +0100 +++ new/community/lib/physfs/PKGBUILD 2007-08-03 13:33:05.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A library to provide abstract access to various archives." arch=('i686') url="http://icculus.org/physfs/" -license="ZLIB" +license=('custom:zlib') options=('!libtool') depends=('zlib') source=(http://icculus.org/physfs/downloads/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/pigment/PKGBUILD new/community/lib/pigment/PKGBUILD --- old/community/lib/pigment/PKGBUILD 2007-05-12 15:33:41.000000000 +0100 +++ new/community/lib/pigment/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="The Elisa GUI framework" arch=('i686') -license="GPL" +license=('GPL') url="http://www.fluendo.com/elisa/pigment.php" options=('!libtool') depends=('sdl' 'libgl' 'gstreamer0.10-base' 'gstreamer0.10-python' 'pygtk' 'cairo') diff -Naur old/community/lib/plib/PKGBUILD new/community/lib/plib/PKGBUILD --- old/community/lib/plib/PKGBUILD 2007-05-12 04:42:19.000000000 +0100 +++ new/community/lib/plib/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -13,7 +13,7 @@ pkgdesc=" PLIB is a set of libraries to write games and other realtime interactive applications" arch=('i686') url="http://plib.sourceforge.net/" -license="LGPL" +license=('LGPL') depends=() source=(http://plib.sourceforge.net/dist/$pkgname-$pkgver.tar.gz plib-gcc41.patch) md5sums=('5e3f289a9d1c5de0b1cfdec76bf139e6' 'bc1ea9c63cddafaa5ecad4f75f0171cf') diff -Naur old/community/lib/postgis/PKGBUILD new/community/lib/postgis/PKGBUILD --- old/community/lib/postgis/PKGBUILD 2007-03-24 16:57:21.000000000 +0000 +++ new/community/lib/postgis/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Adds support for geographic objects to PostgreSQL" arch=('i686' 'x86_64') url="http://postgis.refractions.net" -license="GPL" +license=('GPL') depends=('postgresql' 'proj' 'geos') source=(http://postgis.refractions.net/download/postgis-$pkgver.tar.gz) md5sums=('95430ee371c64a992ebcd8ddf2801acf') diff -Naur old/community/lib/pygoocanvas/PKGBUILD new/community/lib/pygoocanvas/PKGBUILD --- old/community/lib/pygoocanvas/PKGBUILD 2007-04-17 21:47:54.000000000 +0100 +++ new/community/lib/pygoocanvas/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -8,7 +8,7 @@ arch=('i686') url="http://developer.berlios.de/projects/pygoocanvas" options=('!libtool' 'docs') -license="LGPL" +license=('LGPL') depends=('python' 'goocanvas') makedepends=('pkgconfig') source=(http://download.berlios.de/pygoocanvas/pygoocanvas-$pkgver.tar.gz) diff -Naur old/community/lib/pymsn/PKGBUILD new/community/lib/pymsn/PKGBUILD --- old/community/lib/pymsn/PKGBUILD 2007-04-16 10:03:19.000000000 +0100 +++ new/community/lib/pymsn/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A msn python library, rewrite of the Ivy library" arch=('i686' 'x86_64') url="http://telepathy.freedesktop.org/wiki/Pymsn" -license="GPL" +license=('GPL') depends=('pygobject') source=(http://telepathy.freedesktop.org/releases/pymsn/pymsn-$pkgver.tar.gz) md5sums=('db54e7181ed226e0f047e83677aa706d') diff -Naur old/community/lib/pyopenssl/PKGBUILD new/community/lib/pyopenssl/PKGBUILD --- old/community/lib/pyopenssl/PKGBUILD 2007-03-18 22:03:15.000000000 +0000 +++ new/community/lib/pyopenssl/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="pyOpenSSL is a Python interface to the OpenSSL library" arch=('i686' 'x86_64') url="http://pyopenssl.sourceforge.net" -license="GPL" +license=('GPL') depends=('python' 'openssl') source=(http://dl.sourceforge.net/sourceforge/pyopenssl/pyOpenSSL-${pkgver}.tar.gz) md5sums=('6200b71d3eb294a312d52c4825fc71c5') diff -Naur old/community/lib/pyqwt/PKGBUILD new/community/lib/pyqwt/PKGBUILD --- old/community/lib/pyqwt/PKGBUILD 2007-07-29 17:21:16.000000000 +0100 +++ new/community/lib/pyqwt/PKGBUILD 2007-08-03 13:30:21.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Python bindings for the Qwt scientific library" arch=('i686') url="http://pyqwt.sourceforge.net" -license="GPL2" +license=('GPL2') depends=('pyqt' 'python-scipy' 'qwt') source=(http://downloads.sourceforge.net/pyqwt/PyQwt-$pkgver.tar.gz) diff -Naur old/community/lib/pyrtf/PKGBUILD new/community/lib/pyrtf/PKGBUILD --- old/community/lib/pyrtf/PKGBUILD 2006-01-12 21:59:49.000000000 +0000 +++ new/community/lib/pyrtf/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A set of Python classes that make it possible to produce RTF documents from Python programs." url="http://pyrtf.sourceforge.net" -license="GPL" +license=('GPL') depends=('python') source=(http://dl.sourceforge.net/sourceforge/$pkgname/PyRTF-$pkgver.tar.gz) md5sums=('6da40728b27c6a0150291f19c3f2ceb9') diff -Naur old/community/lib/pysdl_mixer/PKGBUILD new/community/lib/pysdl_mixer/PKGBUILD --- old/community/lib/pysdl_mixer/PKGBUILD 2006-07-15 03:07:15.000000000 +0100 +++ new/community/lib/pysdl_mixer/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A pyrex interface SDL_mixer for python" url="https://gna.org/projects/pysdlmixer" -license="GPL" +license=('GPL') depends=('python' 'sdl_mixer') source=(http://download.gna.org/pysdlmixer/$pkgname-$pkgver.tar.gz) md5sums=('81d109f02938c6a1c368dd461252450a') diff -Naur old/community/lib/python-chardet/PKGBUILD new/community/lib/python-chardet/PKGBUILD --- old/community/lib/python-chardet/PKGBUILD 2006-06-28 03:47:50.000000000 +0100 +++ new/community/lib/python-chardet/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Python module for character encoding auto-detection" url="http://chardet.feedparser.org" -license="LGPL" +license=('LGPL') depends=('python') source=(http://chardet.feedparser.org/download/chardet-$pkgver.tgz) md5sums=('29f69d097052a4eae3774382c234cf2b') diff -Naur old/community/lib/python-clientform/PKGBUILD new/community/lib/python-clientform/PKGBUILD --- old/community/lib/python-clientform/PKGBUILD 2007-06-01 01:10:25.000000000 +0100 +++ new/community/lib/python-clientform/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Python module for handling HTML forms on the client side." arch=('i686') url="http://wwwsearch.sourceforge.net/mechanize/" -license="BSD" +license=('BSD') depends=('python') makedepends=('setuptools') source=(http://wwwsearch.sourceforge.net/ClientForm/src/ClientForm-$pkgver.tar.gz) diff -Naur old/community/lib/python-ctypes/PKGBUILD new/community/lib/python-ctypes/PKGBUILD --- old/community/lib/python-ctypes/PKGBUILD 2007-03-19 04:35:28.000000000 +0000 +++ new/community/lib/python-ctypes/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Allows one to call functions exposed from dlls/shared libraries" arch=('i686' 'x86_64') url="http://starship.python.net/crew/theller/ctypes" -license="MIT" +license=('MIT') depends=('glibc' 'python') source=(http://downloads.sourceforge.net/sourceforge/ctypes/ctypes-$pkgver.tar.gz) diff -Naur old/community/lib/python-dnspython/PKGBUILD new/community/lib/python-dnspython/PKGBUILD --- old/community/lib/python-dnspython/PKGBUILD 2006-06-10 04:11:49.000000000 +0100 +++ new/community/lib/python-dnspython/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A DNS toolkit for Python" url="http://www.dnspython.org" -license="BSD" +license=('BSD') depends=('python') source=(http://www.dnspython.org/kits/stable/dnspython-$pkgver.tar.gz) md5sums=('7f7e58379235b2b626620a7bda810270') diff -Naur old/community/lib/python-elementtree/PKGBUILD new/community/lib/python-elementtree/PKGBUILD --- old/community/lib/python-elementtree/PKGBUILD 2007-04-07 19:33:10.000000000 +0100 +++ new/community/lib/python-elementtree/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Contains a number of light-weight components for working with XML in python" arch=('i686' 'x86_64') url="http://effbot.org/downloads/#elementtree" -license="MIT" +license=('MIT') depends=('python') provides=('elementtree') replaces=('elementtree') diff -Naur old/community/lib/python-galago/PKGBUILD new/community/lib/python-galago/PKGBUILD --- old/community/lib/python-galago/PKGBUILD 2006-05-04 05:53:53.000000000 +0100 +++ new/community/lib/python-galago/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A library of simple functions that are optimized for various CPUs" url="http://galago-project.org" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('libgalago' 'python') source=(http://galago-project.org/files/releases/source/galago-python/galago-python-...) md5sums=('27be31fcf2886aa21823caec15dc34aa') diff -Naur old/community/lib/python-galago-gtk/PKGBUILD new/community/lib/python-galago-gtk/PKGBUILD --- old/community/lib/python-galago-gtk/PKGBUILD 2006-05-04 05:55:11.000000000 +0100 +++ new/community/lib/python-galago-gtk/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A library of simple functions that are optimized for various CPUs" url="http://galago-project.org" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('libgalago-gtk' 'pygtk') source=(http://galago-project.org/files/releases/source/galago-gtk-python/galago-gtk...) md5sums=('3eb752eaa87d986bf272cf1266528c43') diff -Naur old/community/lib/python-geotypes-svn/PKGBUILD new/community/lib/python-geotypes-svn/PKGBUILD --- old/community/lib/python-geotypes-svn/PKGBUILD 2007-05-03 18:50:24.000000000 +0100 +++ new/community/lib/python-geotypes-svn/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A python library that implements the OpenGIS 'Simple Features Specification for SQL' Geometric Object Model" url="http://initd.org/projects/geotypes" -license="LGPL" +license=('LGPL') depends=('python-psycopg1') makedepends=('subversion') source=() diff -Naur old/community/lib/python-m2crypto/PKGBUILD new/community/lib/python-m2crypto/PKGBUILD --- old/community/lib/python-m2crypto/PKGBUILD 2007-05-23 14:21:37.000000000 +0100 +++ new/community/lib/python-m2crypto/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A crypto and SSL toolkit for Python" arch=(i686) url="http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto" -license="BSD" +license=('BSD') depends=('python' 'swig' 'openssl') source=(http://wiki.osafoundation.org/pub/Projects/MeTooCrypto/m2crypto-$pkgver.tar....) md5sums=('6fc06583a2be56fc2a46872a0540d78e') diff -Naur old/community/lib/python-mechanize/PKGBUILD new/community/lib/python-mechanize/PKGBUILD --- old/community/lib/python-mechanize/PKGBUILD 2007-06-01 01:12:54.000000000 +0100 +++ new/community/lib/python-mechanize/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Stateful programmatic web browsing in Python" arch=('i686') url="http://wwwsearch.sourceforge.net/mechanize/" -license="BSD" +license=('BSD') depends=('python-clientform') makedepends=('setuptools') source=(http://wwwsearch.sourceforge.net/mechanize/src/mechanize-$pkgver.tar.gz) diff -Naur old/community/lib/python-mpdclient2/PKGBUILD new/community/lib/python-mpdclient2/PKGBUILD --- old/community/lib/python-mpdclient2/PKGBUILD 2006-11-29 22:05:52.000000000 +0000 +++ new/community/lib/python-mpdclient2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Python module for interfacing MPD" url="http://www.musicpd.org/py-libmpdclient.shtml" -license="LGPL" +license=('LGPL') depends=('python') source=(http://pygmy.berlios.de/files/py-libmpdclient-$pkgver.tar.bz2 ) md5sums=('854d2ed1ca620305dd27c5a3f244f913') diff -Naur old/community/lib/python-musicbrainz2/PKGBUILD new/community/lib/python-musicbrainz2/PKGBUILD --- old/community/lib/python-musicbrainz2/PKGBUILD 2007-03-20 01:38:17.000000000 +0000 +++ new/community/lib/python-musicbrainz2/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A client library written in python which provides easy object oriented access to the MusicBrainz database" arch=('i686') url="http://wiki.musicbrainz.org/PythonMusicBrainz2" -license="BSD" +license=('BSD') depends=('musicbrainz' 'python') source=(http://musicbrainz.org/~matt/${pkgname}-${pkgver}.tar.gz) md5sums=('c61079631f453059b56c8bcab525018c') diff -Naur old/community/lib/python-notify/PKGBUILD new/community/lib/python-notify/PKGBUILD --- old/community/lib/python-notify/PKGBUILD 2007-04-07 20:17:25.000000000 +0100 +++ new/community/lib/python-notify/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Python bindings for libnotify" arch=('i686' 'x86_64') url="http://www.galago-project.org/" -license="GPL" +license=('GPL') depends=('pygtk>=2.4.0' 'libnotify>=0.4.0') makedepends=('pkgconfig' 'python') source=(http://www.galago-project.org/files/releases/source/notify-python/notify-pyt...) diff -Naur old/community/lib/python-numarray/PKGBUILD new/community/lib/python-numarray/PKGBUILD --- old/community/lib/python-numarray/PKGBUILD 2007-03-19 05:06:33.000000000 +0000 +++ new/community/lib/python-numarray/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Provides array manipulation and computational capabilities similar to those found in IDL, Matlab, or Octave." arch=('i686' 'x86_64') url="http://www.pfdubois.com/numpy" -license="BSD" +license=('BSD') depends=('python') source=(http://heanet.dl.sourceforge.net/sourceforge/numpy/numarray-$pkgver.tar.gz LICENSE) diff -Naur old/community/lib/python-numpy/PKGBUILD new/community/lib/python-numpy/PKGBUILD --- old/community/lib/python-numpy/PKGBUILD 2007-06-11 16:58:40.000000000 +0100 +++ new/community/lib/python-numpy/PKGBUILD 2007-08-03 13:20:52.000000000 +0100 @@ -4,7 +4,7 @@ pkgver=1.0.3 pkgrel=2 pkgdesci="Scientific tools for Python" -license=('CUSTOM') +license=('custom') arch=('i686' 'x86_64') url="http://numpy.scipy.org/" depends=('python' 'gcc-fortran' 'fftw' 'lapack' 'blas') diff -Naur old/community/lib/python-paramiko/PKGBUILD new/community/lib/python-paramiko/PKGBUILD --- old/community/lib/python-paramiko/PKGBUILD 2007-06-19 15:56:36.000000000 +0100 +++ new/community/lib/python-paramiko/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Python module that implements the SSH2 protocol" url="http://www.lag.net/paramiko/" -license="LGPL" +license=('LGPL') arch=('i686' 'x86_64') depends=('pycrypto') replaces=('paramiko') diff -Naur old/community/lib/python-psycopg1/PKGBUILD new/community/lib/python-psycopg1/PKGBUILD --- old/community/lib/python-psycopg1/PKGBUILD 2007-03-22 02:10:18.000000000 +0000 +++ new/community/lib/python-psycopg1/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A PostgreSQL database adapter for Python" url="http://initd.org/projects/psycopg1" -license="GPL" +license=('GPL') depends=('python-egenix-mx-base>=2.0.6-3' 'postgresql>=8.2.3') source=(http://initd.org/pub/software/psycopg/psycopg-$pkgver.tar.gz) md5sums=('a31f79f68d6d32898d6f24e11369a106') diff -Naur old/community/lib/python-pybluez/PKGBUILD new/community/lib/python-pybluez/PKGBUILD --- old/community/lib/python-pybluez/PKGBUILD 2007-05-14 10:31:41.000000000 +0100 +++ new/community/lib/python-pybluez/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Python wrapper for the BlueZ Bluetooth stack" arch=(i686) url="http://org.csail.mit.edu/pybluez/" -license="GPL" +license=('GPL') provides=('pybluez') conflicts=('pybluez') replaces=('pybluez') diff -Naur old/community/lib/python-pychart/PKGBUILD new/community/lib/python-pychart/PKGBUILD --- old/community/lib/python-pychart/PKGBUILD 2007-03-19 03:17:54.000000000 +0000 +++ new/community/lib/python-pychart/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A python library for creating high quality Encapsulated Postscript, PDF, PNG, or SVG charts." arch=('i686') url="http://home.gna.org/pychart" -license="GPL" +license=('GPL') depends=('python') replaces=('pychart') conflicts=('pychart') diff -Naur old/community/lib/python-pychm/PKGBUILD new/community/lib/python-pychm/PKGBUILD --- old/community/lib/python-pychm/PKGBUILD 2007-04-07 20:30:25.000000000 +0100 +++ new/community/lib/python-pychm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Python bindings for CHMLIB" arch=('i686' 'x86_64') url="http://gnochm.sourceforge.net" -license="GPL" +license=('GPL') depends=('chmlib' 'python') source=(http://dl.sourceforge.net/sourceforge/gnochm/pychm-$pkgver.tar.gz) md5sums=('ff7f0baf94290c44263a1618e7e6a116') diff -Naur old/community/lib/python-pypdf/PKGBUILD new/community/lib/python-pypdf/PKGBUILD --- old/community/lib/python-pypdf/PKGBUILD 2007-03-19 03:23:13.000000000 +0000 +++ new/community/lib/python-pypdf/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A Pure-Python library built as a PDF toolkit" arch=('i686') url="http://pybrary.net/pyPdf" -license="BSD" +license=('BSD') depends=('python') conflicts=('pypdf') provides=('pypdf') diff -Naur old/community/lib/python-pytz/PKGBUILD new/community/lib/python-pytz/PKGBUILD --- old/community/lib/python-pytz/PKGBUILD 2007-03-19 03:25:22.000000000 +0000 +++ new/community/lib/python-pytz/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Cross platform time zone library for Python" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/pytz" -license="MIT" +license=('MIT') depends=('python') source=(http://heanet.dl.sourceforge.net/sourceforge/pytz/pytz-$pkgver.tar.gz) diff -Naur old/community/lib/python-pyx/PKGBUILD new/community/lib/python-pyx/PKGBUILD --- old/community/lib/python-pyx/PKGBUILD 2007-03-19 03:56:48.000000000 +0000 +++ new/community/lib/python-pyx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Python library for the creation of PostScript and PDF files" arch=('i686') url="http://pyx.sourceforge.net" -license="GPL" +license=('GPL') depends=('python' 'tetex') source=(http://heanet.dl.sourceforge.net/sourceforge/pyx/PyX-$pkgver.tar.gz) diff -Naur old/community/lib/python-pyxmpp/PKGBUILD new/community/lib/python-pyxmpp/PKGBUILD --- old/community/lib/python-pyxmpp/PKGBUILD 2006-04-24 04:07:39.000000000 +0100 +++ new/community/lib/python-pyxmpp/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A Python XMPP and Jabber implementation based on libxml2" url="http://pyxmpp.jabberstudio.org" -license="LGPL" +license=('LGPL') depends=('python-dnspython' 'libxml2' 'python-m2crypto') source=(http://jabberstudio.rediris.es/pyxmpp/pyxmpp-$pkgver.tar.gz) md5sums=('02700da5a2f36b57916e9da200d2c14f') diff -Naur old/community/lib/pyzzub/PKGBUILD new/community/lib/pyzzub/PKGBUILD --- old/community/lib/pyzzub/PKGBUILD 2007-05-12 15:49:01.000000000 +0100 +++ new/community/lib/pyzzub/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A Buzz-like tracker library" arch=('i686') -license="GPL" +license=('GPL') url="http://trac.zeitherrschaft.org/zzub" makedepends=('scons') depends=('libzzub' 'python' 'python-ctypes') diff -Naur old/community/lib/qof/PKGBUILD new/community/lib/qof/PKGBUILD --- old/community/lib/qof/PKGBUILD 2006-04-19 01:53:12.000000000 +0100 +++ new/community/lib/qof/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Provides a set of C Language utilities for performing generic structured complex queries" url="http://qof.sourceforge.net" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('libgda') source=(http://dl.sourceforge.net/sourceforge/qof/qof-$pkgver.tar.gz) md5sums=('555787c7ea06a3412ff9119fe4127886') diff -Naur old/community/lib/rpc2/PKGBUILD new/community/lib/rpc2/PKGBUILD --- old/community/lib/rpc2/PKGBUILD 2007-04-06 10:37:58.000000000 +0100 +++ new/community/lib/rpc2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Remote procedure call package for IP/UDP" url="http://www.coda.cs.cmu.edu" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('lwp' 'readline') source=(http://www.coda.cs.cmu.edu/pub/rpc2/src/rpc2-$pkgver.tar.gz) md5sums=('85e73e58a541859f6b8475459746cf27') diff -Naur old/community/lib/ruby-amazon/PKGBUILD new/community/lib/ruby-amazon/PKGBUILD --- old/community/lib/ruby-amazon/PKGBUILD 2006-03-16 06:03:56.000000000 +0000 +++ new/community/lib/ruby-amazon/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="Ruby library that allows access to Amazon" url="http://www.caliban.org/ruby/ruby-amazon.shtml" -license="GPL" +license=('GPL') depends=('ruby') source=(http://www.caliban.org/files/ruby/$pkgname-$pkgver.tar.gz) md5sums=('e33a51b767142356a0363273ce79ce63') diff -Naur old/community/lib/ruby-atk/PKGBUILD new/community/lib/ruby-atk/PKGBUILD --- old/community/lib/ruby-atk/PKGBUILD 2007-01-09 20:54:36.000000000 +0000 +++ new/community/lib/ruby-atk/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby bindings for ATK" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby' 'atk' 'ruby-glib2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz) md5sums=('aedca2b3a7c6ae0f02cf5fd1e02f642c') diff -Naur old/community/lib/ruby-event-loop/PKGBUILD new/community/lib/ruby-event-loop/PKGBUILD --- old/community/lib/ruby-event-loop/PKGBUILD 2007-01-09 22:27:06.000000000 +0000 +++ new/community/lib/ruby-event-loop/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A simple and easy-to-use event loop for Ruby" url="http://www.brockman.se/software/ruby-event-loop/" -license="GPL" +license=('GPL') depends=('ruby') source=(http://www.brockman.se/software/ruby-event-loop/event-loop-$pkgver.tar.gz) md5sums=('1f899e5526ed112477e9c1ebd3d05a41') diff -Naur old/community/lib/ruby-gconf2/PKGBUILD new/community/lib/ruby-gconf2/PKGBUILD --- old/community/lib/ruby-gconf2/PKGBUILD 2007-01-09 21:10:27.000000000 +0000 +++ new/community/lib/ruby-gconf2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby GConf2 bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-glib2' 'gconf') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gdkpixbuf2/PKGBUILD new/community/lib/ruby-gdkpixbuf2/PKGBUILD --- old/community/lib/ruby-gdkpixbuf2/PKGBUILD 2007-01-09 21:04:47.000000000 +0000 +++ new/community/lib/ruby-gdkpixbuf2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby gdkpixbuf2 bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-glib2' 'gtk2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz) md5sums=('aedca2b3a7c6ae0f02cf5fd1e02f642c') diff -Naur old/community/lib/ruby-glib2/PKGBUILD new/community/lib/ruby-glib2/PKGBUILD --- old/community/lib/ruby-glib2/PKGBUILD 2007-01-09 20:54:24.000000000 +0000 +++ new/community/lib/ruby-glib2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby Glib2 bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby' 'glib2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz) md5sums=('aedca2b3a7c6ae0f02cf5fd1e02f642c') diff -Naur old/community/lib/ruby-gnome2/PKGBUILD new/community/lib/ruby-gnome2/PKGBUILD --- old/community/lib/ruby-gnome2/PKGBUILD 2007-01-09 21:14:59.000000000 +0000 +++ new/community/lib/ruby-gnome2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby Gnome bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('libgnomeui' 'ruby-gnomecanvas') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gnomecanvas/PKGBUILD new/community/lib/ruby-gnomecanvas/PKGBUILD --- old/community/lib/ruby-gnomecanvas/PKGBUILD 2007-01-09 21:13:44.000000000 +0000 +++ new/community/lib/ruby-gnomecanvas/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby GnomeCanvas bindings." url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('libgnomecanvas' 'ruby-gtk2' 'ruby-libart') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gnomeprint/PKGBUILD new/community/lib/ruby-gnomeprint/PKGBUILD --- old/community/lib/ruby-gnomeprint/PKGBUILD 2007-01-09 21:18:45.000000000 +0000 +++ new/community/lib/ruby-gnomeprint/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby GnomePrint bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-libart' 'ruby-pango' 'libgnomeprint') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gnomeprintui/PKGBUILD new/community/lib/ruby-gnomeprintui/PKGBUILD --- old/community/lib/ruby-gnomeprintui/PKGBUILD 2007-01-09 21:25:46.000000000 +0000 +++ new/community/lib/ruby-gnomeprintui/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby GnomePrintUI bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-gnomeprint' 'ruby-gtk2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gnomevfs/PKGBUILD new/community/lib/ruby-gnomevfs/PKGBUILD --- old/community/lib/ruby-gnomevfs/PKGBUILD 2007-01-09 21:16:13.000000000 +0000 +++ new/community/lib/ruby-gnomevfs/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Ruby GnomeVFS bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('gnome-vfs' 'ruby-glib2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gtk2/PKGBUILD new/community/lib/ruby-gtk2/PKGBUILD --- old/community/lib/ruby-gtk2/PKGBUILD 2007-01-09 21:11:15.000000000 +0000 +++ new/community/lib/ruby-gtk2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby language bindings for GTK2." url="http://ruby-gnome2.sourceforge.jp/" -license="LGPL" +license=('LGPL') depends=('ruby-glib2' 'ruby-atk' 'ruby-pango' 'ruby-gdkpixbuf2' 'ruby-rcairo') source=(http://dl.sf.net/sourceforge/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz) md5sums=('aedca2b3a7c6ae0f02cf5fd1e02f642c') diff -Naur old/community/lib/ruby-gtkhtml2/PKGBUILD new/community/lib/ruby-gtkhtml2/PKGBUILD --- old/community/lib/ruby-gtkhtml2/PKGBUILD 2007-01-09 21:27:00.000000000 +0000 +++ new/community/lib/ruby-gtkhtml2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby gtkhtml2 bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-gtk2' 'libgtkhtml') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gtkmozembed/PKGBUILD new/community/lib/ruby-gtkmozembed/PKGBUILD --- old/community/lib/ruby-gtkmozembed/PKGBUILD 2007-01-09 21:34:19.000000000 +0000 +++ new/community/lib/ruby-gtkmozembed/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby GtkMozEmbed bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby' 'gtk2' 'nspr') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gtksourceview/PKGBUILD new/community/lib/ruby-gtksourceview/PKGBUILD --- old/community/lib/ruby-gtksourceview/PKGBUILD 2007-01-09 21:29:32.000000000 +0000 +++ new/community/lib/ruby-gtksourceview/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby gtksourceview bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('gtksourceview' 'ruby-gtk2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-gtktrayicon/PKGBUILD new/community/lib/ruby-gtktrayicon/PKGBUILD --- old/community/lib/ruby-gtktrayicon/PKGBUILD 2006-03-16 06:17:12.000000000 +0000 +++ new/community/lib/ruby-gtktrayicon/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Ruby binding for the System Tray Protocol Specification" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-gnome2') source=(http://dl.sf.net/sourceforge/ruby-gnome2/$pkgname-$pkgver.tar.gz) md5sums=('77a47e80a49e5a944da6aaf2768527c8') diff -Naur old/community/lib/ruby-libart/PKGBUILD new/community/lib/ruby-libart/PKGBUILD --- old/community/lib/ruby-libart/PKGBUILD 2007-01-09 20:58:29.000000000 +0000 +++ new/community/lib/ruby-libart/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby Libart2 bindings" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-glib2' 'libart-lgpl' 'libpng' 'libjpeg') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-libglade/PKGBUILD new/community/lib/ruby-libglade/PKGBUILD --- old/community/lib/ruby-libglade/PKGBUILD 2007-01-09 21:29:59.000000000 +0000 +++ new/community/lib/ruby-libglade/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby libglade2 bindings." url="http://ruby-gnome2.sourceforge.jp/" -license="LGPL" +license=('LGPL') depends=('ruby-gtk2' 'libglade') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-mpd/PKGBUILD new/community/lib/ruby-mpd/PKGBUILD --- old/community/lib/ruby-mpd/PKGBUILD 2006-06-19 21:18:23.000000000 +0100 +++ new/community/lib/ruby-mpd/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="Interface to MPD (Music Player Daemon) server." url="http://raa.ruby-lang.org/project/mpd-rb/" -license="GPL" +license=('GPL') depends=('ruby') source=(http://www.andsoforth.com/downloads/mpd-rb/mpd-rb-$pkgver.tar.gz) md5sums=('2312aa2e1c28f15ce3f3270486be8a88') diff -Naur old/community/lib/ruby-ncurses/PKGBUILD new/community/lib/ruby-ncurses/PKGBUILD --- old/community/lib/ruby-ncurses/PKGBUILD 2006-07-11 21:30:45.000000000 +0100 +++ new/community/lib/ruby-ncurses/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="This ruby extension makes most functions, constants, and external variables of the C library ncurses accessible from the Ruby programming language." url="http://ncurses-ruby.berlios.de" -license="GPL" +license=('GPL') depends=('ruby') source=(http://download.berlios.de/ncurses-ruby/ncurses-ruby-$pkgver.tar.bz2) md5sums=('c96ff6a2fb971aeccebe33cfc6b46035') diff -Naur old/community/lib/ruby-pango/PKGBUILD new/community/lib/ruby-pango/PKGBUILD --- old/community/lib/ruby-pango/PKGBUILD 2007-01-09 21:03:28.000000000 +0000 +++ new/community/lib/ruby-pango/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby language bindings for Pango" url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('ruby-glib2' 'pango') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz) md5sums=('aedca2b3a7c6ae0f02cf5fd1e02f642c') diff -Naur old/community/lib/ruby-postgres/PKGBUILD new/community/lib/ruby-postgres/PKGBUILD --- old/community/lib/ruby-postgres/PKGBUILD 2006-03-15 04:25:34.000000000 +0000 +++ new/community/lib/ruby-postgres/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="Library to access a PostgreSQL database from Ruby" url="http://ruby.scripting.ca/postgres/" -license="custom" +license=('custom') depends=('ruby' 'postgresql') source=(http://www.postgresql.jp/interfaces/ruby/archive/$pkgname-$pkgver.tar.gz \ LICENSE.txt) diff -Naur old/community/lib/ruby-rsvg/PKGBUILD new/community/lib/ruby-rsvg/PKGBUILD --- old/community/lib/ruby-rsvg/PKGBUILD 2007-01-09 21:33:19.000000000 +0000 +++ new/community/lib/ruby-rsvg/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Ruby librsvg bindings." url="http://ruby-gnome2.sourceforge.jp" -license="LGPL" +license=('LGPL') depends=('librsvg' 'ruby-glib2' 'ruby-gdkpixbuf2') source=(http://dl.sourceforge.net/sourceforge/ruby-gnome2/ruby-gnome2-all-$pkgver.ta...) md5sums=('b3b4f81ef0fe2ce6b3f965bb7c6d3686') diff -Naur old/community/lib/ruby-scw/PKGBUILD new/community/lib/ruby-scw/PKGBUILD --- old/community/lib/ruby-scw/PKGBUILD 2007-03-09 19:43:15.000000000 +0000 +++ new/community/lib/ruby-scw/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Ruby bindings for scw" url="http://scwwidgets.googlepages.com/" -license="LGPL" +license=('LGPL') depends=('ruby-gtk2' 'scw') source=(http://scwwidgets.googlepages.com/$pkgname-$pkgver.tar.gz) md5sums=('c2d037215edcf8cff51c5d954b730597') diff -Naur old/community/lib/ruby-shout/PKGBUILD new/community/lib/ruby-shout/PKGBUILD --- old/community/lib/ruby-shout/PKGBUILD 2006-04-25 01:54:46.000000000 +0100 +++ new/community/lib/ruby-shout/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Ruby bindings for libshout" url="http://ruby-shout.rubyforge.org" -license="BSD" +license=('BSD') depends=('ruby' 'libshout') source=(http://rubyforge.org/frs/download.php/7211/ruby-shout-$pkgver.tar.gz) md5sums=('10a3adc40dfe0100f9c845a3e56adf68') diff -Naur old/community/lib/ruby-sqlite3/PKGBUILD new/community/lib/ruby-sqlite3/PKGBUILD --- old/community/lib/ruby-sqlite3/PKGBUILD 2007-02-18 14:38:44.000000000 +0000 +++ new/community/lib/ruby-sqlite3/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A Ruby interface for the SQLite3 database engine" url="http://rubyforge.org/projects/sqlite-ruby" -license="BSD" +license=('BSD') depends=('ruby' 'sqlite3') provides=('sqlite3-ruby') conflicts=('sqlite3-ruby') diff -Naur old/community/lib/ruby-zoom/PKGBUILD new/community/lib/ruby-zoom/PKGBUILD --- old/community/lib/ruby-zoom/PKGBUILD 2006-04-16 17:45:46.000000000 +0100 +++ new/community/lib/ruby-zoom/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="A Ruby binding to the Z39.50 Object-Orientation Model" url="http://ruby-zoom.rubyforge.org" -license="LGPL" +license=('LGPL') depends=('ruby' 'yaz') source=(http://rubyforge.org/frs/download.php/6940/$pkgname-$pkgver.tar.gz) md5sums=('e38f664296b70b2d74962359f381cfb7') diff -Naur old/community/lib/rubygame/PKGBUILD new/community/lib/rubygame/PKGBUILD --- old/community/lib/rubygame/PKGBUILD 2007-04-27 17:02:45.000000000 +0100 +++ new/community/lib/rubygame/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A game-development extension and library for the Ruby language." arch=('i686') url="http://rubygame.sourceforge.net/" -license="GPL" +license=('GPL') depends=('ruby' 'sdl_gfx' 'sdl_image' 'sdl_ttf' 'sdl_mixer') makedepends=('rake') source=(http://dl.sourceforge.net/sourceforge/rubygame/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/lib/scw/PKGBUILD new/community/lib/scw/PKGBUILD --- old/community/lib/scw/PKGBUILD 2007-03-09 19:42:30.000000000 +0000 +++ new/community/lib/scw/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Widget set specifically designed for chat programs" url="http://scwwidgets.googlepages.com/" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('gtk2') makedepends=('pkgconfig') source=(http://scwwidgets.googlepages.com/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/slib/PKGBUILD new/community/lib/slib/PKGBUILD --- old/community/lib/slib/PKGBUILD 2006-04-16 21:22:15.000000000 +0100 +++ new/community/lib/slib/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A library providing functions for Scheme implementations" url="http://swissnet.ai.mit.edu/~jaffer/SLIB.html" options=('NOLIBTOOL') -license="custom" +license=('custom') depends=('guile') source=(http://swissnet.ai.mit.edu/ftpdir/scm/OLD/$pkgname$pkgver.tar.gz \ slib-3a1-arch_install.patch \ diff -Naur old/community/lib/sofia-sip/PKGBUILD new/community/lib/sofia-sip/PKGBUILD --- old/community/lib/sofia-sip/PKGBUILD 2007-05-03 00:46:31.000000000 +0100 +++ new/community/lib/sofia-sip/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ arch=('i686' 'x86_64') url="http://sofia-sip.sourceforge.net" options=('NOLIBTOOL') -license="LGPL" +license=('LGPL') depends=('glib2' 'openssl') source=(http://dl.sourceforge.net/sofia-sip/$pkgname-$pkgver.tar.gz) md5sums=('8c24a9d58179f8fa7c7edd4af7dab104') diff -Naur old/community/lib/synce-libmimedir/PKGBUILD new/community/lib/synce-libmimedir/PKGBUILD --- old/community/lib/synce-libmimedir/PKGBUILD 2007-03-27 18:27:05.000000000 +0100 +++ new/community/lib/synce-libmimedir/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="provide a means of communication with a Windows CE device - library that parses MIME Directory Profile." url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') source=(http://dl.sourceforge.net/sourceforge/synce/libmimedir-$pkgver.tar.gz) md5sums=('156e1eb69377d9ae9180a09e38148ec6') diff -Naur old/community/lib/synce-librapi/PKGBUILD new/community/lib/synce-librapi/PKGBUILD --- old/community/lib/synce-librapi/PKGBUILD 2007-05-07 17:46:14.000000000 +0100 +++ new/community/lib/synce-librapi/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="provide a means of communication with a Windows CE device - libraries and tools for making remote calls to pocket pc" arch=('i686' 'x86_64') url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') makedepends=(pyrex) depends=(synce-libsynce) source=(http://dl.sf.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) diff -Naur old/community/lib/synce-libsynce/PKGBUILD new/community/lib/synce-libsynce/PKGBUILD --- old/community/lib/synce-libsynce/PKGBUILD 2007-05-07 17:37:01.000000000 +0100 +++ new/community/lib/synce-libsynce/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="provide a means of communication with a Windows CE device - libraries" url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') depends=(glibc) source=(http://dl.sf.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('e46c72219bff559f4bb1615613671942') diff -Naur old/community/lib/tagpy/PKGBUILD new/community/lib/tagpy/PKGBUILD --- old/community/lib/tagpy/PKGBUILD 2007-05-30 09:26:21.000000000 +0100 +++ new/community/lib/tagpy/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Python bindings for TagLib" arch=('i686' 'x86_64') url="http://news.tiker.net/software/tagpy" -license="BSD" +license=('BSD') depends=('python' 'taglib' 'boost') source=(http://news.tiker.net/news.tiker.net/download/software/tagpy/tagpy-$pkgver.t...) md5sums=('c9de0b7b3819579b5f460b20c42e03c9') diff -Naur old/community/lib/tapioca/PKGBUILD new/community/lib/tapioca/PKGBUILD --- old/community/lib/tapioca/PKGBUILD 2007-03-17 19:00:44.000000000 +0000 +++ new/community/lib/tapioca/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A daemon providing the VoIP engine and a client interface" url="http://tapioca-voip.sourceforge.net" -license="LGPL" +license=('LGPL') options=('NOLIBTOOL') depends=('dbus-glib') makedepends=('pkgconfig') diff -Naur old/community/lib/telepathy-glib/PKGBUILD new/community/lib/telepathy-glib/PKGBUILD --- old/community/lib/telepathy-glib/PKGBUILD 2007-06-04 20:52:39.000000000 +0100 +++ new/community/lib/telepathy-glib/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ arch=('i686' 'x86_64') url="http://telepathy.freedesktop.org" groups=('telepathy') -license="LGPL" +license=('LGPL') options=('!LIBTOOL') depends=('dbus-glib') source=(http://telepathy.freedesktop.org/releases/telepathy-glib/$pkgname-$pkgver.ta...) diff -Naur old/community/lib/tinycdb/PKGBUILD new/community/lib/tinycdb/PKGBUILD --- old/community/lib/tinycdb/PKGBUILD 2007-02-14 11:01:29.000000000 +0000 +++ new/community/lib/tinycdb/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="very fast and simple package for creating and reading constant data bases" url="http://www.corpit.ru/mjt/tinycdb.html" -license="GPL" +license=('GPL') depends=(glibc) source=(http://www.corpit.ru/mjt/tinycdb/${pkgname}_$pkgver.tar.gz) md5sums=('300f35ad36e503cff8f0fa3240e287dd') diff -Naur old/community/lib/tksystray/PKGBUILD new/community/lib/tksystray/PKGBUILD --- old/community/lib/tksystray/PKGBUILD 2007-02-24 11:39:46.000000000 +0000 +++ new/community/lib/tksystray/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="tksystray is compatible with freedesktop.org standarts systray for Tk" url="http://tkabber.jabber.ru/tksystray" -license="GPL" +license=('GPL') depends=(tcl tk imlib) source=(http://sgolovan.nes.ru/debian/pool/main/tcl/tksystray/${pkgname}_$pkgver.orig.tar.gz) md5sums=('d1784d2f786304bd6eaa82512fd5cf1c') diff -Naur old/community/lib/tktheme/PKGBUILD new/community/lib/tktheme/PKGBUILD --- old/community/lib/tktheme/PKGBUILD 2007-01-25 15:55:35.000000000 +0000 +++ new/community/lib/tktheme/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="A library to allow Tkabber docking in the system tray." depends=('tk') -license="GPL" +license=('GPL') source=(http://tkabber.jabber.ru/files/other/Tk_Theme-23.tgz) url="http://tkabber.jabber.ru" md5sums=('121c335e3b3764cbd04eea68b6a66dd3') diff -Naur old/community/lib/tvision/PKGBUILD new/community/lib/tvision/PKGBUILD --- old/community/lib/tvision/PKGBUILD 2007-04-06 10:19:45.000000000 +0100 +++ new/community/lib/tvision/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="turbo vision library port (console interface)" url="http://tvision.sourceforge.net" -license="GPL" +license=('GPL') source=("http://prdownloads.sourceforge.net/tvision/rhtvision-$pkgver.src.tar.gz") md5sums=('b6129f5c510ba9d28d21c9575b7e1c75') diff -Naur old/community/lib/twisted-words/PKGBUILD new/community/lib/twisted-words/PKGBUILD --- old/community/lib/twisted-words/PKGBUILD 2006-06-22 01:14:54.000000000 +0100 +++ new/community/lib/twisted-words/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="Low-level protocol implementations of OSCAR,IRC,MSN,TOC and Jabber libs for python" url="http://twistedmatrix.com/projects/words/" -license="MIT" +license=('MIT') depends=('twisted-web') source=(http://tmrc.mit.edu/mirror/twisted/Words/0.3/TwistedWords-$pkgver.tar.bz2) md5sums=('8fdb18c85bde467baddc1c7f3febb82e') diff -Naur old/community/lib/xalan-c/PKGBUILD new/community/lib/xalan-c/PKGBUILD --- old/community/lib/xalan-c/PKGBUILD 2006-05-31 02:15:28.000000000 +0100 +++ new/community/lib/xalan-c/PKGBUILD 2007-08-03 13:30:31.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A XSLT processor for transforming XML documents" url="http://xml.apache.org/xalan-c" -license="APACHE" +license=('APACHE') depends=('xerces-c') source=(http://www.axint.net/apache/xml/xalan-c/source/Xalan-C_1_10_0-src.tar.gz) md5sums=('0a3fbb535885531cc544b07a2060bfb1') diff -Naur old/community/lib/xdebug/PKGBUILD new/community/lib/xdebug/PKGBUILD --- old/community/lib/xdebug/PKGBUILD 2007-05-17 00:20:33.000000000 +0100 +++ new/community/lib/xdebug/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Xdebug is a PHP extension for debugging and profiling" arch=('i686' 'x86_64') url="http://xdebug.org/" -license="custom" +license=('custom') depends=('php') install=xdebug.install source=(http://www.xdebug.org/files/$pkgname-$pkgver.tgz) diff -Naur old/community/lib/xerces-c/PKGBUILD new/community/lib/xerces-c/PKGBUILD --- old/community/lib/xerces-c/PKGBUILD 2006-05-20 00:11:38.000000000 +0100 +++ new/community/lib/xerces-c/PKGBUILD 2007-08-03 13:30:31.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A validating XML parser written in a portable subset of C++." url="http://xml.apache.org/xerces-c" -license="APACHE" +license=('APACHE') depends=() source=("http://www.apache.org/dist/xml/xerces-c/source/$pkgname-src_2_7_0.tar.gz") md5sums=('04169609449a8846bc1e6891c04cadf4') diff -Naur old/community/lib/xmpppy/PKGBUILD new/community/lib/xmpppy/PKGBUILD --- old/community/lib/xmpppy/PKGBUILD 2006-10-23 12:40:42.000000000 +0100 +++ new/community/lib/xmpppy/PKGBUILD 2007-08-03 13:28:47.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A Python library to provide easy scripting with Jabber" url="http://xmpppy.sourceforge.net/" -license="" +license=() depends=('python') source=(http://dl.sourceforge.net/sourceforge/xmpppy/$pkgname-$pkgver.tar.gz) md5sums=('bcec3068bc297e672a1d5b258090ee3d') diff -Naur old/community/lib/yaz/PKGBUILD new/community/lib/yaz/PKGBUILD --- old/community/lib/yaz/PKGBUILD 2007-04-24 00:55:02.000000000 +0100 +++ new/community/lib/yaz/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A toolkit supporting the development of Z39.50/SRW/SRU clients and servers" arch=('i686') options=('nolibtool') -license="custom" +license=('custom') url="http://www.indexdata.dk/yaz" depends=('openssl' 'libxslt' 'libpcap') source=(http://ftp.indexdata.dk/pub/$pkgname/$pkgname-$pkgver.tar.gz) diff -Naur old/community/modules/apache13-mod_accounting/PKGBUILD new/community/modules/apache13-mod_accounting/PKGBUILD --- old/community/modules/apache13-mod_accounting/PKGBUILD 2006-09-13 12:19:15.000000000 +0100 +++ new/community/modules/apache13-mod_accounting/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="accounting module for apache 1 branch" url="http://mod-acct.sourceforge.net/" -license="GPL" +license=('GPL') depends=(apache13 mysql) makedepends=(patch) conflicts=() diff -Naur old/community/modules/apache13-mod_bandwidth/PKGBUILD new/community/modules/apache13-mod_bandwidth/PKGBUILD --- old/community/modules/apache13-mod_bandwidth/PKGBUILD 2006-09-13 12:19:25.000000000 +0100 +++ new/community/modules/apache13-mod_bandwidth/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="bandwidth module for apache 1 branch" url="http://www.cohprog.com/mod_bandwidth.html" -license="GPL" +license=('GPL') depends=(apache13) conflicts=() replaces=() diff -Naur old/community/modules/doxygenfilter/PKGBUILD new/community/modules/doxygenfilter/PKGBUILD --- old/community/modules/doxygenfilter/PKGBUILD 2007-05-29 21:17:41.000000000 +0100 +++ new/community/modules/doxygenfilter/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Doxygen Filter is an input filter for Doxygen enabling support for Perl code documentation." url="http://www.bigsister.ch/doxygenfilter/" -license="GPL" +license=('GPL') depends=('perl' 'doxygen') arch=('i686' 'x86_64') options=('!emptydirs') diff -Naur old/community/modules/em8300-cvs/PKGBUILD new/community/modules/em8300-cvs/PKGBUILD --- old/community/modules/em8300-cvs/PKGBUILD 2006-06-24 09:52:27.000000000 +0100 +++ new/community/modules/em8300-cvs/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="DXR3 and Hollywood+ driver" url="http://dxr3.sourceforge.net/" -license="GPL" +license=('GPL') depends=(kernel26 gtk2) makedepends=(cvs) conflicts=(em8300) diff -Naur old/community/modules/gimp-plugin-greycstoration/PKGBUILD new/community/modules/gimp-plugin-greycstoration/PKGBUILD --- old/community/modules/gimp-plugin-greycstoration/PKGBUILD 2007-03-30 13:21:58.000000000 +0100 +++ new/community/modules/gimp-plugin-greycstoration/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ url="http://www.haypocalc.com/wiki/Gimp_Plugin_GREYCstoration" depends=('gimp') makedepends=('perlxml' 'pkgconfig') -license="GPL" +license=('GPL') source=("http://www.greyc.ensicaen.fr/~dtschump/greycstoration/data/GREYCstoration-$p...") md5sums=('5a43ec42f9a3831dc80b52462dc8147b') diff -Naur old/community/modules/xchat-systray-integration/PKGBUILD new/community/modules/xchat-systray-integration/PKGBUILD --- old/community/modules/xchat-systray-integration/PKGBUILD 2007-02-14 11:16:05.000000000 +0000 +++ new/community/modules/xchat-systray-integration/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Systray integration for xchat" arch=(i686 x86_64) url="http://www.blight.tk/" -license="GPL" +license=('GPL') depends=('xchat' 'gtk2') makedepends=('gcc' 'gtk2' 'gdk-pixbuf') source=(http://dl.sourceforge.net/sourceforge/xchat2-plugins/$pkgname-$pkgver-src.ta... \ diff -Naur old/community/multimedia/agave/PKGBUILD new/community/multimedia/agave/PKGBUILD --- old/community/multimedia/agave/PKGBUILD 2007-05-27 15:03:50.000000000 +0100 +++ new/community/multimedia/agave/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An colorscheme designer for the Gnome desktop" arch=('i686' 'x86_64') url="http://home.gna.org/colorscheme" -license="GPL" +license=('GPL') depends=('libgnomeui' 'libglademm' 'gconfmm') makedepends=('intltool' 'boost') install=agave.install diff -Naur old/community/multimedia/aldo/PKGBUILD new/community/multimedia/aldo/PKGBUILD --- old/community/multimedia/aldo/PKGBUILD 2006-11-15 20:36:30.000000000 +0000 +++ new/community/multimedia/aldo/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A morse code learning tool" url="http://www.nongnu.org/aldo/" -license="GPL" +license=('GPL') depends=('libao' 'gcc') makedepends=('gcc') source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/multimedia/aldrin/PKGBUILD new/community/multimedia/aldrin/PKGBUILD --- old/community/multimedia/aldrin/PKGBUILD 2007-05-12 15:50:34.000000000 +0100 +++ new/community/multimedia/aldrin/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A Buzz-like tracker" arch=('i686') -license="GPL" +license=('GPL') url="http://trac.zeitherrschaft.org/aldrin" makedepends=('scons') depends=('wxpython' 'pyzzub') diff -Naur old/community/multimedia/alsa-plugins/PKGBUILD new/community/multimedia/alsa-plugins/PKGBUILD --- old/community/multimedia/alsa-plugins/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/multimedia/alsa-plugins/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ arch=('i686' 'x86_64') url="http://www.alsa-project.org" options=('!libtool') -license="GPL" +license=('GPL') depends=('alsa-lib') install=$pkgname.install force=y diff -Naur old/community/multimedia/arch-artwork/PKGBUILD new/community/multimedia/arch-artwork/PKGBUILD --- old/community/multimedia/arch-artwork/PKGBUILD 2007-05-15 10:13:49.000000000 +0100 +++ new/community/multimedia/arch-artwork/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="collection of artwork related to Arch" arch=(i686) url="http://groknil.org/arch/" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/multimedia/audacious-docklet/PKGBUILD new/community/multimedia/audacious-docklet/PKGBUILD --- old/community/multimedia/audacious-docklet/PKGBUILD 2007-03-08 14:26:54.000000000 +0000 +++ new/community/multimedia/audacious-docklet/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=5 pkgdesc="A Gnome/KDE system tray icon for the Audacious Player." url="http://nedudu.hu/?page_id=11" -license="GPL" +license=('GPL') arch=('i686') depends=('audacious-player') makedepends=('pkgconfig' 'perlxml') diff -Naur old/community/multimedia/audacious-itouch-control/PKGBUILD new/community/multimedia/audacious-itouch-control/PKGBUILD --- old/community/multimedia/audacious-itouch-control/PKGBUILD 2007-05-16 23:22:56.000000000 +0100 +++ new/community/multimedia/audacious-itouch-control/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="iTouch-Control is a plugin for Audacious media player wich helps you control the player using your keyboard multimedia keys." arch=('i686' 'x86_64') url="http://sourceforge.net/projects/itouch-control" -license="GPL" +license=('GPL') depends=('audacious-player') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/sourceforge/itouch-control/itouch-control-$pkgver....) diff -Naur old/community/multimedia/audio-convert/PKGBUILD new/community/multimedia/audio-convert/PKGBUILD --- old/community/multimedia/audio-convert/PKGBUILD 2006-07-26 00:57:35.000000000 +0100 +++ new/community/multimedia/audio-convert/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A script with an easy to use interface to convert audio files: wav, mp3, ogg, flac, aac, mpc, ape and wma." url="https://savannah.nongnu.org/projects/audio-convert/" -license="GPL" +license=('GPL') depends=('bash' 'zenity') install=audio-convert.install source=(http://savannah.nongnu.org/download/audio-convert/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/multimedia/awesfx/PKGBUILD new/community/multimedia/awesfx/PKGBUILD --- old/community/multimedia/awesfx/PKGBUILD 2007-03-28 19:23:01.000000000 +0100 +++ new/community/multimedia/awesfx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Utilities for emu10k1 cards (e.g. sfxload)" url="http://www.alsa-project.org/~iwai/awedrv.html#Utils" -license="GPL" +license=('GPL') arch=(i686 x86_64) depends=('alsa-lib') makedepends=() diff -Naur old/community/multimedia/beast/PKGBUILD new/community/multimedia/beast/PKGBUILD --- old/community/multimedia/beast/PKGBUILD 2007-02-11 01:10:32.000000000 +0000 +++ new/community/multimedia/beast/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ url="http://beast.gtk.org" arch=(i686) options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('libgnomecanvas' 'guile' 'libvorbis' 'libmad') makedepends=('pkgconfig') source=(http://beast.gtk.org/beast-ftp/v0.7/beast-$pkgver.tar.bz2 beast-guile.patch) diff -Naur old/community/multimedia/bitterbpp/PKGBUILD new/community/multimedia/bitterbpp/PKGBUILD --- old/community/multimedia/bitterbpp/PKGBUILD 2007-04-11 01:40:05.000000000 +0100 +++ new/community/multimedia/bitterbpp/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A program to backup DVDs to matroska" arch=('i686') url="http://www.derekfrye.com/bitterbpp/" -license="GPL" +license=('GPL') depends=('gtk2-perl' 'libdvdcss' 'lsdvd' 'mkvtoolnix' 'vorbis-tools' 'mplayer' 'gksu' 'zenity') source=(http://downloads.sourceforge.net/sourceforge/bitterbpp/bitterbpp_$pkgver.tar...) md5sums=('2787866d896e048ee5a3f58d670ff733') diff -Naur old/community/multimedia/brasero/PKGBUILD new/community/multimedia/brasero/PKGBUILD --- old/community/multimedia/brasero/PKGBUILD 2007-05-05 00:31:26.000000000 +0100 +++ new/community/multimedia/brasero/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A disc burning application for Gnome" arch=('i686' 'x86_64') url="http://www.gnome.org/projects/brasero" -license="GPL" +license=('GPL') depends=('totem-plparser' 'nautilus-cd-burner' 'gstreamer0.10-gconf' 'libnotify' \ 'libburn' 'libisofs') makedepends=('intltool' 'libburn' 'libisofs') diff -Naur old/community/multimedia/codeine/PKGBUILD new/community/multimedia/codeine/PKGBUILD --- old/community/multimedia/codeine/PKGBUILD 2006-06-13 05:13:58.000000000 +0100 +++ new/community/multimedia/codeine/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A simple, smart xine video player for KDE" url="http://www.methylblue.com/codeine/" -license="GPL" +license=('GPL') depends=('xine-lib' 'kdelibs' 'libxtst') makedepends=('scons') source=(http://www.methylblue.com/codeine/$pkgname-$pkgver-3.tar.bz2) diff -Naur old/community/multimedia/comical/PKGBUILD new/community/multimedia/comical/PKGBUILD --- old/community/multimedia/comical/PKGBUILD 2006-03-22 00:28:18.000000000 +0000 +++ new/community/multimedia/comical/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Comic book file (.cbr .cbz) reader." url="http://comical.sourceforge.net" -license="GPL" +license=('GPL') depends=('gcc' 'wxgtk') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('f5808e28fd5a2a3d21b59cdad10eca3d') diff -Naur old/community/multimedia/cowbell/PKGBUILD new/community/multimedia/cowbell/PKGBUILD --- old/community/multimedia/cowbell/PKGBUILD 2007-04-24 03:41:15.000000000 +0100 +++ new/community/multimedia/cowbell/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An elegant music orgainzer" arch=('i686' 'x86_64') url="http://www.more-cowbell.org" -license="GPL" +license=('GPL') options=('NOLIBTOOL') depends=('gtk-sharp-2' 'taglib') makedepends=('gettext' 'intltool' 'pkgconfig') diff -Naur old/community/multimedia/democracy/PKGBUILD new/community/multimedia/democracy/PKGBUILD --- old/community/multimedia/democracy/PKGBUILD 2007-07-02 18:24:06.000000000 +0100 +++ new/community/multimedia/democracy/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="The free and open source internet TV platform" arch=('i686' 'x86_64') url="http://www.getdemocracy.com" -license="GPL" +license=('GPL') depends=('xine-lib' 'boost' 'gnome-python-extras' 'dbus-python' 'pyrex' \ 'nss' 'nspr' 'pygtk' 'gtk2' 'xulrunner') makedepends=('pkgconfig') diff -Naur old/community/multimedia/denemo/PKGBUILD new/community/multimedia/denemo/PKGBUILD --- old/community/multimedia/denemo/PKGBUILD 2007-03-11 18:24:32.000000000 +0000 +++ new/community/multimedia/denemo/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A music score editor" arch=('i686') -license="GPL" +license=('GPL') url="http://denemo.sourceforge.net" depends=('lilypond' 'gtk2' 'libxml2') options=('nolibtool') diff -Naur old/community/multimedia/discid/PKGBUILD new/community/multimedia/discid/PKGBUILD --- old/community/multimedia/discid/PKGBUILD 2007-02-22 15:51:51.000000000 +0000 +++ new/community/multimedia/discid/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="A program to calculate the disc-ID for audio compact discs" url="http://discid.sourceforge.net" -license="GPL" +license=('GPL') depends=(gcc) source=("http://dl.sourceforge.net/sourceforge/discid/$pkgname-$pkgver.tar.gz") md5sums=('4f1c06efa40995576e6436246e5bd674') diff -Naur old/community/multimedia/dvbshout/PKGBUILD new/community/multimedia/dvbshout/PKGBUILD --- old/community/multimedia/dvbshout/PKGBUILD 2006-11-17 22:56:17.000000000 +0000 +++ new/community/multimedia/dvbshout/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Sends a DVB audio channel to an Icecast/Shoutcast server" url="http://www.ecs.soton.ac.uk/~njh/dvbshout/" -license="GPL" +license=('GPL') backup=('etc/dvbshout/dvbshout.conf') depends=('libshout' 'perl' 'ortp') source=(http://www.ecs.soton.ac.uk/~njh/dvbshout/dvbshout-$pkgver.tar.gz) diff -Naur old/community/multimedia/dvd-slideshow/PKGBUILD new/community/multimedia/dvd-slideshow/PKGBUILD --- old/community/multimedia/dvd-slideshow/PKGBUILD 2007-07-25 13:15:46.000000000 +0100 +++ new/community/multimedia/dvd-slideshow/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="Makes a DVD slideshow video with menus from pictures, effects, and audio tracks" arch=('i686') url="http://dvd-slideshow.sourceforge.net/" -license="GPL" +license=('GPL') depends=('bc' 'cdrkit' 'dvdauthor' 'jhead' 'netpbm' 'sox' 'toolame' 'transcode' 'vorbis-tools') source=(http://download.sourceforge.net/$pkgname/$pkgname-$pkgver-1.tar.gz) md5sums=('83ff69e76ba2bfd0d1c735ada0dc64dd') diff -Naur old/community/multimedia/dvdbackup/PKGBUILD new/community/multimedia/dvdbackup/PKGBUILD --- old/community/multimedia/dvdbackup/PKGBUILD 2007-04-11 09:24:02.000000000 +0100 +++ new/community/multimedia/dvdbackup/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Backup contents of video-dvd to harddisk" url="http://dvd-create.sourceforge.net" -license="GPL" +license=('GPL') depends=('glibc') source=(http://dvd-create.sourceforge.net/$pkgname-$pkgver.tar.gz http://dvd-create.sourceforge.net/libdvdread-0.9.3.tar.gz) diff -Naur old/community/multimedia/entice/PKGBUILD new/community/multimedia/entice/PKGBUILD --- old/community/multimedia/entice/PKGBUILD 2007-03-09 00:21:11.000000000 +0000 +++ new/community/multimedia/entice/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Image Viewer using Enlightenment Foundation Libraries" arch=('i686') url="http://www.enlightenment.org/" -license="BSD" +license=('BSD') groups=('e17') depends=('esmart') conflicts=('entice-cvs') diff -Naur old/community/multimedia/festival-gaim/PKGBUILD new/community/multimedia/festival-gaim/PKGBUILD --- old/community/multimedia/festival-gaim/PKGBUILD 2007-02-04 22:27:30.000000000 +0000 +++ new/community/multimedia/festival-gaim/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A gaim plugin that speaks messages using festival" url="http://festival-gaim.sourceforge.net/" -license="GPL" +license=('GPL') arch=('i686') options=('NOLIBTOOL') depends=('festival' 'gaim' 'glibc') diff -Naur old/community/multimedia/freewrl/PKGBUILD new/community/multimedia/freewrl/PKGBUILD --- old/community/multimedia/freewrl/PKGBUILD 2007-06-24 17:12:31.000000000 +0100 +++ new/community/multimedia/freewrl/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="VRML viewer" arch=(i686 x86_64) url="http://freewrl.sourceforge.net/" -license="GPL" +license=('GPL') depends=(j2re libx11) makedepends=(j2sdk perl patch) conflicts=() diff -Naur old/community/multimedia/gcolor2/PKGBUILD new/community/multimedia/gcolor2/PKGBUILD --- old/community/multimedia/gcolor2/PKGBUILD 2007-02-15 02:05:11.000000000 +0000 +++ new/community/multimedia/gcolor2/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A simple GTK+2 color selector" url="http://gcolor2.sf.net/" -license="GPL" +license=('GPL') arch=('i686') depends=('gtk2') makedepends=('perlxml') diff -Naur old/community/multimedia/gcstar/PKGBUILD new/community/multimedia/gcstar/PKGBUILD --- old/community/multimedia/gcstar/PKGBUILD 2007-02-19 11:42:54.000000000 +0000 +++ new/community/multimedia/gcstar/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A collection management application" url="http://www.gcstar.org" -license="GPL" +license=('GPL') conflicts=('gcfilms') replaces=('gcfilms') provides=('gcfilms') diff -Naur old/community/multimedia/gimmix/PKGBUILD new/community/multimedia/gimmix/PKGBUILD --- old/community/multimedia/gimmix/PKGBUILD 2007-03-14 20:27:38.000000000 +0000 +++ new/community/multimedia/gimmix/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="graphical MPD client written in C using GTK+2" arch=('i686' 'x86_64') url="http://gimmix.berlios.de/" -license="GPL" +license=('GPL') depends=('libglade>=2.6.0' 'libmpd>=0.12.0' 'taglib') makedepends=('pkgconfig') source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/multimedia/gimpshop/PKGBUILD new/community/multimedia/gimpshop/PKGBUILD --- old/community/multimedia/gimpshop/PKGBUILD 2007-04-26 04:44:07.000000000 +0100 +++ new/community/multimedia/gimpshop/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A modified Gimp that features menu layouts and naming conventions similar to those in Photoshop." arch=('i686' 'x86_64') url="http://plasticbugs.com/?page_id=294" -license="GPL" +license=('GPL') options=('nolibtool') depends=('libxmu' 'libxpm' 'gtk2' 'librsvg' 'libmng' 'lcms' 'libexif' 'libwmf' 'libart-lgpl' 'alsa-lib' 'libgtkhtml') makedepends=('pkgconfig' 'intltool') diff -Naur old/community/multimedia/greycstoration/PKGBUILD new/community/multimedia/greycstoration/PKGBUILD --- old/community/multimedia/greycstoration/PKGBUILD 2007-03-30 13:07:18.000000000 +0100 +++ new/community/multimedia/greycstoration/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="image denoising and interpolation" url="http://www.greyc.ensicaen.fr/~dtschump/greycstoration/" -license="GPL" +license=('GPL') depends=(gcc libxext) source=("http://www.greyc.ensicaen.fr/~dtschump/greycstoration/data/GREYCstoration-$p...") md5sums=('5a43ec42f9a3831dc80b52462dc8147b') diff -Naur old/community/multimedia/griffith/PKGBUILD new/community/multimedia/griffith/PKGBUILD --- old/community/multimedia/griffith/PKGBUILD 2007-07-12 10:47:21.000000000 +0100 +++ new/community/multimedia/griffith/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Movie collection manager application" arch=('i686' 'x86_64') url="http://griffith.vasconunes.net/" -license="GPL" +license=('GPL') depends=('pygtk>=2.6.1' 'sqlite3' 'python-pysqlite' \ 'python-reportlab>=1.19' 'pil' 'pyxml' 'python-sqlalchemy') install=griffith.install diff -Naur old/community/multimedia/ico2xpm/PKGBUILD new/community/multimedia/ico2xpm/PKGBUILD --- old/community/multimedia/ico2xpm/PKGBUILD 2006-11-05 22:31:47.000000000 +0000 +++ new/community/multimedia/ico2xpm/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="a utility which converts Windows icons into X pixmaps" url="http://freshmeat.net/projects/ixo2xpm/" -license="" +license=() depends=() makedepends=() install= diff -Naur old/community/multimedia/icoconvert/PKGBUILD new/community/multimedia/icoconvert/PKGBUILD --- old/community/multimedia/icoconvert/PKGBUILD 2006-10-28 18:12:53.000000000 +0100 +++ new/community/multimedia/icoconvert/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="Converts Windows .ico icon files to .png images. All .ico file types are supported, including transparency." url="http://www.mox.net/" -license="" +license=() depends=('gd>=2.0' 'libjpeg') source=(http://www.mox.net/downloads/$pkgname-$pkgver.tar.gz) md5sums=('56fe4474c8eaae2c8b886331cda41aca') diff -Naur old/community/multimedia/isomaster/PKGBUILD new/community/multimedia/isomaster/PKGBUILD --- old/community/multimedia/isomaster/PKGBUILD 2007-06-24 17:12:32.000000000 +0100 +++ new/community/multimedia/isomaster/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="CD image editor written in GTK2" arch=('i686' 'x86_64') url="http://littlesvr.ca/isomaster" -license="GPL" +license=('GPL') depends=('gtk2') makedepends=('pkgconfig' 'iniparser') source=(http://littlesvr.ca/isomaster/releases/$pkgname-$pkgver.tar.bz2 diff -Naur old/community/multimedia/istanbul/PKGBUILD new/community/multimedia/istanbul/PKGBUILD --- old/community/multimedia/istanbul/PKGBUILD 2007-04-27 04:47:47.000000000 +0100 +++ new/community/multimedia/istanbul/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Desktop Session Recorder" arch=('i686' 'x86_64') url="http://live.gnome.org/Istanbul" -license="GPL" +license=('GPL') options=('nolibtool') depends=('gstreamer0.10' 'gnome-python-extras' 'gstreamer0.10-theora' \ 'gstreamer0.10-python' 'gstreamer0.10-jpeg' 'gstreamer0.10-gconf' \ diff -Naur old/community/multimedia/jokosher/PKGBUILD new/community/multimedia/jokosher/PKGBUILD --- old/community/multimedia/jokosher/PKGBUILD 2007-06-04 20:52:39.000000000 +0100 +++ new/community/multimedia/jokosher/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple and easy-to-use Open Source multi-track editor" arch=('i686' 'x86_64') url="http://jokosher.org" -license="GPL" +license=('GPL') depends=('gstreamer0.10-python>=0.10.6' 'gnonlin>=0.10.8' 'pygtk' 'dbus-python' 'librsvg' 'setuptools' 'gstreamer0.10-gnomevfs' 'gstreamer0.10-base>=0.10.12' 'gstreamer0.10-good>=0.10.5') source=(http://www.jokosher.org/downloads/source/$pkgname-$pkgver.tar.gz jokosher) diff -Naur old/community/multimedia/kungfu/PKGBUILD new/community/multimedia/kungfu/PKGBUILD --- old/community/multimedia/kungfu/PKGBUILD 2007-05-13 20:22:01.000000000 +0100 +++ new/community/multimedia/kungfu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A GStreamer based DVD ripper." arch=('i686' 'x86_64') url="http://jasonderose.org/kungfu/" -license="GPL" +license=('GPL') depends=('pygtk' 'gstreamer0.10-python' 'gstreamer0.10-dvdread' \ 'gstreamer0.10-mpeg2dec' 'gstreamer0.10-ffmpeg' 'gstreamer0.10-libpng' \ 'gstreamer0.10-theora' 'dbus-python') diff -Naur old/community/multimedia/lirc-xmms-plugin/PKGBUILD new/community/multimedia/lirc-xmms-plugin/PKGBUILD --- old/community/multimedia/lirc-xmms-plugin/PKGBUILD 2005-04-19 21:57:44.000000000 +0100 +++ new/community/multimedia/lirc-xmms-plugin/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="XMMS LIRC plugin" url="http://www.lirc.org" -license="GPL" +license=('GPL') depends=('gtk' 'lirc') source=(http://dl.sourceforge.net/sourceforge/lirc/$pkgname-$pkgver.tar.bz2) md5sums=('d853ef236a67eef0d61749fca90a0990') diff -Naur old/community/multimedia/madman/PKGBUILD new/community/multimedia/madman/PKGBUILD --- old/community/multimedia/madman/PKGBUILD 2007-04-04 14:52:13.000000000 +0100 +++ new/community/multimedia/madman/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="I-tunes like music player" url="http://madman.sourceforge.net/" -license="GPL" +license=('GPL') depends=('qt' 'xmms' 'libid3tag') makedepends=('python') source=(http://dl.sourceforge.net/sourceforge/madman/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/multimedia/mcdp/PKGBUILD new/community/multimedia/mcdp/PKGBUILD --- old/community/multimedia/mcdp/PKGBUILD 2007-04-04 17:14:54.000000000 +0100 +++ new/community/multimedia/mcdp/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="small console cd player" url="http://www.mcmilk.de/projects/mcdp/" -license="GPL" +license=('GPL') makedepends=('dietlibc') source=(http://www.mcmilk.de/projects/mcdp/dl/$pkgname-$pkgver.tar.bz2) md5sums=('d52c32df83161b46f451018aeddad0ed') diff -Naur old/community/multimedia/mhwaveedit/PKGBUILD new/community/multimedia/mhwaveedit/PKGBUILD --- old/community/multimedia/mhwaveedit/PKGBUILD 2007-06-01 01:23:32.000000000 +0100 +++ new/community/multimedia/mhwaveedit/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -9,7 +9,7 @@ url="https://gna.org/projects/mhwaveedit" depends=('libsamplerate' 'gtk2' 'jack-audio-connection-kit') source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2 $pkgname-$pkgver-sox_effects.patch) -license="GPL" +license=('GPL') build() { cd $startdir/src/$pkgname-$pkgver diff -Naur old/community/multimedia/mms_client/PKGBUILD new/community/multimedia/mms_client/PKGBUILD --- old/community/multimedia/mms_client/PKGBUILD 2006-05-31 02:30:47.000000000 +0100 +++ new/community/multimedia/mms_client/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="mms protocol download utility" url="http://www.geocities.com/majormms" -license="GPL" +license=('GPL') source=(http://www.geocities.com/majormms/$pkgname-$pkgver.tar.gz \ mmsclient-0.0.3-fbsd.patch \ mmsclient-0.0.3-r1.patch) diff -Naur old/community/multimedia/mozplugger/PKGBUILD new/community/multimedia/mozplugger/PKGBUILD --- old/community/multimedia/mozplugger/PKGBUILD 2007-04-13 16:25:41.000000000 +0100 +++ new/community/multimedia/mozplugger/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A Mozilla & Firefox multimedia plugin." arch=(i686 x86_64) url="http://mozplugger.mozdev.org" -license="GPL" +license=('GPL') arch=('i686') depends=('libx11') backup=(etc/mozpluggerrc) diff -Naur old/community/multimedia/mp3gain/PKGBUILD new/community/multimedia/mp3gain/PKGBUILD --- old/community/multimedia/mp3gain/PKGBUILD 2007-04-26 13:02:04.000000000 +0100 +++ new/community/multimedia/mp3gain/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Lossless mp3 normalizer with statistical analysis " arch=('i686') url="http://mp3gain.sourceforge.net" -license="GPL" +license=('GPL') depends=('glibc') source=(http://dl.sourceforge.net/$pkgname/$pkgname-${pkgver//./_}-src.zip) md5sums=('4327167375dce5bce97625729a95fdb9') diff -Naur old/community/multimedia/mpdcon/PKGBUILD new/community/multimedia/mpdcon/PKGBUILD --- old/community/multimedia/mpdcon/PKGBUILD 2007-03-27 17:28:35.000000000 +0100 +++ new/community/multimedia/mpdcon/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A simple GNUstep controller for MPD" url="http://www.musicpd.org/MPDCon.shtml" -license="" +license=() depends=('gnustep-back') makedepends=() source=(http://ftp.debian.org/debian/pool/main/m/mpdcon.app/mpdcon.app_$pkgver.orig....) diff -Naur old/community/multimedia/mpdscribble/PKGBUILD new/community/multimedia/mpdscribble/PKGBUILD --- old/community/multimedia/mpdscribble/PKGBUILD 2007-05-26 15:55:05.000000000 +0100 +++ new/community/multimedia/mpdscribble/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="mpd client which submits track info to audioscrobbler." url="http://www.frob.nl/scribble.html" arch=('i686') -license="GPL" +license=('GPL') depends=('libsoup') makedepends=('pkgconfig') backup=(etc/mpdscribble.conf) diff -Naur old/community/multimedia/mpgtx/PKGBUILD new/community/multimedia/mpgtx/PKGBUILD --- old/community/multimedia/mpgtx/PKGBUILD 2006-04-02 04:28:26.000000000 +0100 +++ new/community/multimedia/mpgtx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A command line MPEG audio/video/system toolkit" url="http://mpgtx.sourceforge.net" -license="GPL" +license=('GPL') depends=() source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('d628060aa04ad3b40a175bf35f5167cf') diff -Naur old/community/multimedia/mtpaint/PKGBUILD new/community/multimedia/mtpaint/PKGBUILD --- old/community/multimedia/mtpaint/PKGBUILD 2007-04-09 20:01:51.000000000 +0100 +++ new/community/multimedia/mtpaint/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="mtPaint is a simple GTK2 painting program designed for creating icons and pixel based artwork." arch=('i686' 'x86_64') url="http://mtpaint.sourceforge.net" -license="GPL" +license=('GPL') depends=('gtk2' 'libungif' 'libpng') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 \ diff -Naur old/community/multimedia/musepack-tools/PKGBUILD new/community/multimedia/musepack-tools/PKGBUILD --- old/community/multimedia/musepack-tools/PKGBUILD 2006-07-26 00:53:05.000000000 +0100 +++ new/community/multimedia/musepack-tools/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Musepack decoder/encoder" url="http://www.musepack.net/" -license="LGPL" +license=('LGPL') depends=('esd') source=(http://files2.musepack.net/source/mpcsv7-src-$pkgver.tar.bz2) md5sums=('eb3e6b64b1f7d68aaeb04e39936d87fb') diff -Naur old/community/multimedia/musicmanager/PKGBUILD new/community/multimedia/musicmanager/PKGBUILD --- old/community/multimedia/musicmanager/PKGBUILD 2007-04-23 12:56:13.000000000 +0100 +++ new/community/multimedia/musicmanager/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -3,7 +3,7 @@ pkgname=musicmanager pkgver=0.7.5 pkgrel=1 -license="GPL" +license=('GPL') url="http://code.google.com/p/gogglesmm/" pkgdesc="Music Manager and Player" arch=('i686' 'x86_64') diff -Naur old/community/multimedia/ogle-gui/PKGBUILD new/community/multimedia/ogle-gui/PKGBUILD --- old/community/multimedia/ogle-gui/PKGBUILD 2006-02-20 06:47:33.000000000 +0000 +++ new/community/multimedia/ogle-gui/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A gtk2 gui for ogle." url="http://www.dtek.chalmers.se/groups/dvd/" -license="GPL" +license=('GPL') depends=('ogle' 'libglade') source=(http://www.dtek.chalmers.se/groups/dvd/dist/ogle_gui-$pkgver.tar.gz) md5sums=('e685aa3046f9da13532ede9300f2f794') diff -Naur old/community/multimedia/optipng/PKGBUILD new/community/multimedia/optipng/PKGBUILD --- old/community/multimedia/optipng/PKGBUILD 2007-05-17 04:16:04.000000000 +0100 +++ new/community/multimedia/optipng/PKGBUILD 2007-08-03 13:33:05.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A PNG optimizer that recompresses image files to a smaller size, without losing any information" arch=(i686) url="http://optipng.sourceforge.net/" -license="ZLIB" +license=('custom:zlib') depends=('glibc') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g...) md5sums=('9dbc2bb39e39b6ab4ed0c705d8035bdf') diff -Naur old/community/multimedia/padevchooser/PKGBUILD new/community/multimedia/padevchooser/PKGBUILD --- old/community/multimedia/padevchooser/PKGBUILD 2007-04-26 02:28:27.000000000 +0100 +++ new/community/multimedia/padevchooser/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple GTK tool which allows quick access to some features of PulseAudio" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/padevchooser" -license="GPL" +license=('GPL') depends=('libglade' 'pulseaudio' 'libnotify') source=(http://0pointer.de/lennart/projects/padevchooser/padevchooser-$pkgver.tar.gz) md5sums=('6a9b52ad349f3fb3d5a3ccdf85958710') diff -Naur old/community/multimedia/paman/PKGBUILD new/community/multimedia/paman/PKGBUILD --- old/community/multimedia/paman/PKGBUILD 2007-04-26 02:35:08.000000000 +0100 +++ new/community/multimedia/paman/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple GTK frontend for the PulseAudio sound server" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/paman" -license="GPL" +license=('GPL') depends=('libglademm' 'pulseaudio') source=(http://0pointer.de/lennart/projects/paman/paman-$pkgver.tar.gz) md5sums=('5b475acbcf2613790b3497404f91fd48') diff -Naur old/community/multimedia/paprefs/PKGBUILD new/community/multimedia/paprefs/PKGBUILD --- old/community/multimedia/paprefs/PKGBUILD 2007-04-26 05:09:10.000000000 +0100 +++ new/community/multimedia/paprefs/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple GTK based configuration dialog for PulseAudio" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/paprefs" -license="GPL" +license=('GPL') depends=('libglademm' 'gconfmm' 'pulseaudio') source=(http://0pointer.de/lennart/projects/paprefs/paprefs-$pkgver.tar.gz) md5sums=('3c7688657415618996344f475cde2442') diff -Naur old/community/multimedia/pavucontrol/PKGBUILD new/community/multimedia/pavucontrol/PKGBUILD --- old/community/multimedia/pavucontrol/PKGBUILD 2007-04-26 05:09:52.000000000 +0100 +++ new/community/multimedia/pavucontrol/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple GTK based volume control tool for the PulseAudio sound server" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/pavucontrol" -license="GPL" +license=('GPL') depends=('libglademm' 'pulseaudio') source=(http://0pointer.de/lennart/projects/pavucontrol/pavucontrol-$pkgver.tar.gz) md5sums=('49f1fb77b425514e6ccfe2a60221a407') diff -Naur old/community/multimedia/pavumeter/PKGBUILD new/community/multimedia/pavumeter/PKGBUILD --- old/community/multimedia/pavumeter/PKGBUILD 2007-04-26 05:05:44.000000000 +0100 +++ new/community/multimedia/pavumeter/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple GTK volume meter for the PulseAudio sound server" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/pavumeter" -license="GPL" +license=('GPL') depends=('gtkmm' 'pulseaudio') source=(http://0pointer.de/lennart/projects/pavumeter/pavumeter-$pkgver.tar.gz) md5sums=('03e72b8e3f653d6af5b2be64b5d593d9') diff -Naur old/community/multimedia/png2ico/PKGBUILD new/community/multimedia/png2ico/PKGBUILD --- old/community/multimedia/png2ico/PKGBUILD 2006-10-28 18:09:09.000000000 +0100 +++ new/community/multimedia/png2ico/PKGBUILD 2007-08-03 13:39:51.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Converts PNG files to Windows icon resource files" url="http://www.winterdrache.de/freeware/png2ico/" -license= +license=() depends=('libpng' 'gcc') source=(http://www.winterdrache.de/freeware/png2ico/data/$pkgname-src-2002-12-08.tar...) md5sums=('9b663df81c826cd564638cba2e6bc75b') diff -Naur old/community/multimedia/rawstudio/PKGBUILD new/community/multimedia/rawstudio/PKGBUILD --- old/community/multimedia/rawstudio/PKGBUILD 2007-02-22 11:51:30.000000000 +0000 +++ new/community/multimedia/rawstudio/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgver=0.5.1 pkgrel=1 pkgdesc="Rawstudio is an open source raw-image converter written in GTK+." -license="GPL" +license=('GPL') url="http://rawstudio.org/" depends=('gconf' 'cairo' 'lcms') source=(http://rawstudio.org/files/release/$pkgname-$pkgver.tar.gz) diff -Naur old/community/multimedia/rexima/PKGBUILD new/community/multimedia/rexima/PKGBUILD --- old/community/multimedia/rexima/PKGBUILD 2006-03-16 04:58:23.000000000 +0000 +++ new/community/multimedia/rexima/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A curses-based interactive mixer." url="http://rus.members.beeb.net/rexima.html" -license="GPL" +license=('GPL') depends=('ncurses') source=(ftp://ftp.ibiblio.org/pub/Linux/apps/sound/mixers/$pkgname-$pkgver.tar.gz) md5sums=('333a4db26409b9cca9b9e96ddf42f44c') diff -Naur old/community/multimedia/schismtracker/PKGBUILD new/community/multimedia/schismtracker/PKGBUILD --- old/community/multimedia/schismtracker/PKGBUILD 2007-02-20 14:17:55.000000000 +0000 +++ new/community/multimedia/schismtracker/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="music editor based on Impulse Tracker" url="http://rigelseven.com/schism/" -license="GPL" +license=('GPL') builddepends=(mesa) depends=(sdl gcc) source=(http://rigelseven.com/schism/dl/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/multimedia/showimg/PKGBUILD new/community/multimedia/showimg/PKGBUILD --- old/community/multimedia/showimg/PKGBUILD 2007-03-20 06:20:36.000000000 +0000 +++ new/community/multimedia/showimg/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="ShowImg is a feature-rich image viewer for KDE which can display numerous formats." arch=('i686' 'x86_64') url="http://www.jalix.org/projects/showimg/" -license="GPL" +license=('GPL') depends=('kdebase' 'libpqxx' 'libkexif' 'libkipi') source=(http://www.jalix.org/projects/showimg/download/$pkgver/$pkgname-$pkgver.tar....) md5sums=('281c5f5e65ca14c69810d2099c43a4b8') diff -Naur old/community/multimedia/sidplay/PKGBUILD new/community/multimedia/sidplay/PKGBUILD --- old/community/multimedia/sidplay/PKGBUILD 2006-05-08 11:02:01.000000000 +0100 +++ new/community/multimedia/sidplay/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Simple command-line SID player" url="http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/linux.html" -license="" +license=() depends=('libsidplay') source=(http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/$pkgname-...) diff -Naur old/community/multimedia/soundconverter/PKGBUILD new/community/multimedia/soundconverter/PKGBUILD --- old/community/multimedia/soundconverter/PKGBUILD 2007-05-20 21:39:27.000000000 +0100 +++ new/community/multimedia/soundconverter/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A simple sound converter application for GNOME" arch=('i686' 'x86_64') -license="GPL" +license=('GPL') url="http://soundconverter.berlios.de" depends=('pygtk' ' gnome-python' 'gstreamer0.10-gnomevfs' \ 'gstreamer0.10-python' 'gstreamer0.10-vorbis' \ diff -Naur old/community/multimedia/thoggen/PKGBUILD new/community/multimedia/thoggen/PKGBUILD --- old/community/multimedia/thoggen/PKGBUILD 2007-04-08 19:15:21.000000000 +0100 +++ new/community/multimedia/thoggen/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A DVD ripper based on GStreamer and Gtk+." arch=('i686') -license="GPL" +license=('GPL') url="http://thoggen.net/" depends=('perlxml' 'gstreamer0.10-theora' 'gstreamer0.10-dvdread' 'gstreamer0.10-a52dec' \ 'gstreamer0.10-mpeg2dec' 'gstreamer0.10-vorbis' 'gstreamer0.10-ogg' 'gstreamer0.10-good'\ diff -Naur old/community/multimedia/vorbissimple/PKGBUILD new/community/multimedia/vorbissimple/PKGBUILD --- old/community/multimedia/vorbissimple/PKGBUILD 2006-06-26 17:05:12.000000000 +0100 +++ new/community/multimedia/vorbissimple/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A Vorbis decoder" url="http://kamaelia.sourceforge.net" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('libvorbis') source=(http://dl.sourceforge.net/kamaelia/$pkgname-$pkgver.tar.gz) md5sums=('332077b25a4c9547947ab0922361ffda') diff -Naur old/community/multimedia/vsound/PKGBUILD new/community/multimedia/vsound/PKGBUILD --- old/community/multimedia/vsound/PKGBUILD 2006-05-09 22:37:33.000000000 +0100 +++ new/community/multimedia/vsound/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A virtual audio loopback cable" url="http://www.vsound.org" -license="LGPL" +license=('LGPL') depends=('glibc') options=('NOLIBTOOL') source=(http://www.vsound.org/$pkgname-$pkgver.tar.gz) diff -Naur old/community/multimedia/w3cam/PKGBUILD new/community/multimedia/w3cam/PKGBUILD --- old/community/multimedia/w3cam/PKGBUILD 2006-11-09 10:49:44.000000000 +0000 +++ new/community/multimedia/w3cam/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="a small and fast CGI program to retrieve images from a video4linux device." url="http://mpx.freeshell.net/" -license="GPL" +license=('GPL') depends=(freetype1 libpng libjpeg) source=(http://mpx.freeshell.net/$pkgname-$pkgver.tar.gz) md5sums=('eec0b301b32bc8e9f65a4e54248c9868') diff -Naur old/community/multimedia/winki/PKGBUILD new/community/multimedia/winki/PKGBUILD --- old/community/multimedia/winki/PKGBUILD 2007-04-24 05:11:47.000000000 +0100 +++ new/community/multimedia/winki/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Aims to be the easiest program for video encoding" arch=('i686' 'x86_64') url="http://www.winki-the-ripper.de" -license="GPL" +license=('GPL') depends=('gnome-python' 'mplayer') install=$pkgname.install source=(http://www.winki-the-ripper.de/share/dist/winki-$pkgver.tar.gz) diff -Naur old/community/multimedia/xmms/PKGBUILD new/community/multimedia/xmms/PKGBUILD --- old/community/multimedia/xmms/PKGBUILD 2007-05-12 08:30:56.000000000 +0100 +++ new/community/multimedia/xmms/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="The X MultiMedia System" arch=('i686' 'x86_64') url="http://www.xmms.org" -license="GPL" +license=('GPL') depends=('libsm' 'libxxf86vm' 'zlib' 'gtk' 'libvorbis' 'esd' 'alsa-lib' 'libgl') makedepends=('mesa') options=('!libtool') diff -Naur old/community/multimedia/xmms-itouch/PKGBUILD new/community/multimedia/xmms-itouch/PKGBUILD --- old/community/multimedia/xmms-itouch/PKGBUILD 2006-05-16 19:52:07.000000000 +0100 +++ new/community/multimedia/xmms-itouch/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="xmms-itouch - iTouch keyboard control plugin for XMMS" url="http://www.saunalahti.fi/~syrjala/xmms-itouch/" -license="GPL" +license=('GPL') depends=(xmms) source=(http://www.saunalahti.fi/~syrjala/xmms-itouch/$pkgname-$pkgver.tar.gz) md5sums=(1e3faf8e834071ebc2f6fcfc2b87049f) diff -Naur old/community/multimedia/xmms-pulse/PKGBUILD new/community/multimedia/xmms-pulse/PKGBUILD --- old/community/multimedia/xmms-pulse/PKGBUILD 2007-04-26 05:08:28.000000000 +0100 +++ new/community/multimedia/xmms-pulse/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="An XMMS output plugin for the PulseAudio sound server" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/xmms-pulse" -license="GPL" +license=('GPL') options=('nolibtool') depends=('xmms' 'pulseaudio') groups=('xmms-plugins' 'xmms-io-plugins') diff -Naur old/community/multimedia/xmms-volnorm/PKGBUILD new/community/multimedia/xmms-volnorm/PKGBUILD --- old/community/multimedia/xmms-volnorm/PKGBUILD 2006-06-16 17:28:32.000000000 +0100 +++ new/community/multimedia/xmms-volnorm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A XMMS plug-in to normalize the volume" url="http://volnorm.sourceforge.net/" -license="GPL" +license=('GPL') options=('NOLIBTOOL') depends=('glibc' 'xmms') groups=('xmms-plugins' 'xmms-effect-plugins') diff -Naur old/community/multimedia/xmms2/PKGBUILD new/community/multimedia/xmms2/PKGBUILD --- old/community/multimedia/xmms2/PKGBUILD 2007-07-02 18:24:07.000000000 +0100 +++ new/community/multimedia/xmms2/PKGBUILD 2007-08-03 13:19:58.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="complete rewrite of the popular music player" arch=('i686' 'x86_64') url="http://xmms2.xmms.org/" -license="LGPL 2.1" +license=('LGPL') backup=(etc/conf.d/xmms2d.conf) depends=('alsa-lib' 'libmad' 'libvorbis' 'sqlite3>=3.2.6' 'curl>=7.11.2' \ 'faad2>=2.0' 'flac' 'libmpcdec' 'jack-audio-connection-kit' ) diff -Naur old/community/multimedia/xmmsctrl/PKGBUILD new/community/multimedia/xmmsctrl/PKGBUILD --- old/community/multimedia/xmmsctrl/PKGBUILD 2007-04-04 14:18:14.000000000 +0100 +++ new/community/multimedia/xmmsctrl/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="An XMMS console control application" url="http://www.cs.aau.dk/~adavid/utils/" -license="GPL" +license=('GPL') depends=('xmms') source="http://www.cs.aau.dk/~adavid/utils/$pkgname-$pkgver.tar.gz" md5sums=('7da9cb73daeeec99bfdaa93dd2862ea6') diff -Naur old/community/multimedia/xv/PKGBUILD new/community/multimedia/xv/PKGBUILD --- old/community/multimedia/xv/PKGBUILD 2007-05-26 07:09:27.000000000 +0100 +++ new/community/multimedia/xv/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="xv is a nice image viewer" arch=('i686' 'x86_64') url="http://www.trilon.com/xv/" -license="custom" +license=('custom') depends=('libpng' 'libx11' 'libtiff') source=(ftp://ftp.cis.upenn.edu/pub/xv/$pkgname-$pkgver.tar.gz license.txt \ http://downloads.sourceforge.net/sourceforge/png-mng/xv-3.10a-jumbo-patches-...) diff -Naur old/community/network/agsync/PKGBUILD new/community/network/agsync/PKGBUILD --- old/community/network/agsync/PKGBUILD 2007-03-28 11:25:53.000000000 +0100 +++ new/community/network/agsync/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="AvantGo sync plugin" url="http://duskwood.lownewulf.com/" -license="GPL" +license=('GPL') depends=('synce-librapi') makedepends=('synce-libsynce') source=(http://duskwood.lownewulf.com/$pkgname-$_pkgver.tgz) diff -Naur old/community/network/bmon/PKGBUILD new/community/network/bmon/PKGBUILD --- old/community/network/bmon/PKGBUILD 2006-05-17 01:15:14.000000000 +0100 +++ new/community/network/bmon/PKGBUILD 2007-08-03 13:35:51.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Portable bandwidth monitor and rate estimator" url="http://people.suug.ch/~tgr/bmon/" -license="Artistic" +license=('PerlArtistic') depends=('ncurses>=5.3') source=( http://people.suug.ch/~tgr/bmon/files/$pkgname-$pkgver.tar.gz bmon-2.1.0-gcc4.diff ) diff -Naur old/community/network/castget/PKGBUILD new/community/network/castget/PKGBUILD --- old/community/network/castget/PKGBUILD 2007-03-13 02:23:06.000000000 +0000 +++ new/community/network/castget/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A simple, command-line based RSS enclosure downloader." url="http://www.nongnu.org/castget/" -license="GPL" +license=('GPL') arch=(i686) depends=('glib2' 'libxml2' 'curl' 'id3lib') source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/cjc/PKGBUILD new/community/network/cjc/PKGBUILD --- old/community/network/cjc/PKGBUILD 2006-08-03 23:50:33.000000000 +0100 +++ new/community/network/cjc/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Jabber client with text-based user interface resembling those known from popular IRC clients." url="http://cjc.jajcus.net/" -license="GPL" +license=('GPL') depends=('python-pyxmpp') source=(http://cjc.jajcus.net/downloads/cjc-1.0.0.tar.gz) md5sums=('a557fabab8ca2070f444a307cb18d66a') diff -Naur old/community/network/cutter/PKGBUILD new/community/network/cutter/PKGBUILD --- old/community/network/cutter/PKGBUILD 2006-08-29 10:03:56.000000000 +0100 +++ new/community/network/cutter/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="TCP/IP Connection cutting on Linux Firewalls and Routers" url="http://www.lowth.com/cutter/" -license="GPL" +license=('GPL') depends=(glibc) source=(http://www.lowth.com/cutter/software/cutter-$pkgver.tgz) md5sums=('50093db9b64277643969ee75b83ebbd1') diff -Naur old/community/network/ddclient/PKGBUILD new/community/network/ddclient/PKGBUILD --- old/community/network/ddclient/PKGBUILD 2007-06-30 14:08:43.000000000 +0100 +++ new/community/network/ddclient/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A Perl client used to update dynamic DNS entries for accounts on many dynamic DNS services." url="http://ddclient.sourceforge.net/" depends=('perl' 'perl-io-socket-ssl') -license="GPL" +license=('GPL') arch=('i686' 'x86_64') backup=(etc/ddclient/ddclient.conf) install=ddclient.install diff -Naur old/community/network/dgpsip/PKGBUILD new/community/network/dgpsip/PKGBUILD --- old/community/network/dgpsip/PKGBUILD 2006-11-07 18:39:13.000000000 +0000 +++ new/community/network/dgpsip/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="A small Un*x server and client for redistributing DGPS correction signals over the Net." url="http://www.wsrcc.com/wolfgang/gps/dgps-ip.html" -license="" +license=() depends=('glibc') makedepends=() conflicts=() diff -Naur old/community/network/dsniff/PKGBUILD new/community/network/dsniff/PKGBUILD --- old/community/network/dsniff/PKGBUILD 2006-12-11 14:42:17.000000000 +0000 +++ new/community/network/dsniff/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Collection of tools for network auditing and penetration testing." url="http://www.monkey.org/~dugsong/dsniff/" arch=(i686 x86_64) -license="GPL" +license=('GPL') depends=('libpcap' 'openssl' 'db') makedepends=() conflicts=() diff -Naur old/community/network/dspam/PKGBUILD new/community/network/dspam/PKGBUILD --- old/community/network/dspam/PKGBUILD 2007-04-23 13:03:09.000000000 +0100 +++ new/community/network/dspam/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ url="http://dspam.nuclearelephant.com/" options=('NOLIBTOOL') backup=(etc/dspam/dspam.conf) -license="GPL" +license=('GPL') depends=('mysql') makedepends=('postgresql' 'db' 'sqlite3') source=(http://dspam.nuclearelephant.com/sources/dspam-$pkgver.tar.gz \ diff -Naur old/community/network/emacs-w3m/PKGBUILD new/community/network/emacs-w3m/PKGBUILD --- old/community/network/emacs-w3m/PKGBUILD 2007-03-19 14:17:59.000000000 +0000 +++ new/community/network/emacs-w3m/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="w3m browser for emacs" url="http://emacs-w3m.namazu.org/" -license="GPL" +license=('GPL') depends=(emacs) source=(http://emacs-w3m.namazu.org/emacs-w3m-$pkgver.tar.gz) md5sums=('6e592a9c0ab22fb532ebc3bcb21a45b1') diff -Naur old/community/network/freetalk/PKGBUILD new/community/network/freetalk/PKGBUILD --- old/community/network/freetalk/PKGBUILD 2007-02-18 21:24:28.000000000 +0000 +++ new/community/network/freetalk/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A console based Jabber client" url="http://www.gnu.org/software/freetalk" -license="GPL" +license=('GPL') depends=('loudmouth' 'guile') source=(http://savannah.gnu.org/download/freetalk/freetalk-$pkgver.tar.gz) md5sums=('d983f8974909db4f726818b95f5035ec') diff -Naur old/community/network/gnumail/PKGBUILD new/community/network/gnumail/PKGBUILD --- old/community/network/gnumail/PKGBUILD 2006-10-12 07:11:40.000000000 +0100 +++ new/community/network/gnumail/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A complete and fast mail application for GNUstep" url="http://www.collaboration-world.com/gnumail" -license="GPL" +license=('GPL') depends=('pantomime' 'addresses' 'gcc') source=(http://www.collaboration-world.com/cgi-bin/project/download.cgi/GNUMail-$pkg...) md5sums=('0f91fe0c32ef369ea843a2ab3909fb2b') diff -Naur old/community/network/gnunet/PKGBUILD new/community/network/gnunet/PKGBUILD --- old/community/network/gnunet/PKGBUILD 2007-06-24 17:12:32.000000000 +0100 +++ new/community/network/gnunet/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686) url="http://gnunet.org" options=('NOLIBTOOL') -license="GPL" +license=('GPL') depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite3' 'guile') makedepends=('gettext' 'pkgconfig') source=(http://gnunet.org/download/GNUnet-$pkgver.tar.bz2) diff -Naur old/community/network/gnunet-gtk/PKGBUILD new/community/network/gnunet-gtk/PKGBUILD --- old/community/network/gnunet-gtk/PKGBUILD 2007-06-24 17:12:32.000000000 +0100 +++ new/community/network/gnunet-gtk/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686) url="http://gnunet.org" options=('!libtool') -license="GPL" +license=('GPL') depends=('gnunet' 'libnotify' 'libglade') makedepends=('pkgconfig') source=(http://gnunet.org/download/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/network/gproftpd/PKGBUILD new/community/network/gproftpd/PKGBUILD --- old/community/network/gproftpd/PKGBUILD 2007-06-19 15:56:36.000000000 +0100 +++ new/community/network/gproftpd/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="GTK frontend to proftpd" arch=(i686) url="http://mange.dynup.net/linux.html" -license="GPL" +license=('GPL') depends=('proftpd' 'gtk2') makedepends=('pkgconfig' 'openssl' 'freetype2') source=(http://mange.dynalias.org/linux/gproftpd/gproftpd-$pkgver.tar.gz) diff -Naur old/community/network/gwget/PKGBUILD new/community/network/gwget/PKGBUILD --- old/community/network/gwget/PKGBUILD 2007-05-13 15:22:41.000000000 +0100 +++ new/community/network/gwget/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Gwget it's a download manager for the Gnome Desktop." arch=('i686' 'x86_64') url="http://gnome.org/projects/gwget/index.html" -license="GPL" +license=('GPL') depends=('libgnomeui' 'libnotify') makedepends=('pkgconfig' 'perlxml' 'epiphany') install=gwget.install diff -Naur old/community/network/ipguard/PKGBUILD new/community/network/ipguard/PKGBUILD --- old/community/network/ipguard/PKGBUILD 2006-09-05 13:32:28.000000000 +0100 +++ new/community/network/ipguard/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="ipguard - arp<->ip relation checking tool" url="http://ipguard.deep.perm.ru/" -license="GPL" +license=('GPL') depends=(libpcap) conflicts=() replaces=() diff -Naur old/community/network/jmc/PKGBUILD new/community/network/jmc/PKGBUILD --- old/community/network/jmc/PKGBUILD 2006-10-12 18:16:41.000000000 +0100 +++ new/community/network/jmc/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="jabber mail component" url="http://jmc.jabberstudio.org/" -license="GPL" +license=('GPL') backup=(etc/ejabberd/jmc.xml) depends=(python python-pyxmpp ejabberd) install=jmc.install diff -Naur old/community/network/knemo/PKGBUILD new/community/network/knemo/PKGBUILD --- old/community/network/knemo/PKGBUILD 2007-05-29 08:05:39.000000000 +0100 +++ new/community/network/knemo/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="KNemo - the KDE Network Monitor" arch=('i686' 'x86_64') url="http://www.kde-apps.org/content/show.php?content=12956" -license="GPL" +license=('GPL') depends=('kdelibs' 'wireless_tools') source=(http://www.kde-apps.org/CONTENT/content-files/12956-knemo-$pkgver.tar.bz2) # do not work without *.la diff -Naur old/community/network/knetstats/PKGBUILD new/community/network/knetstats/PKGBUILD --- old/community/network/knetstats/PKGBUILD 2006-11-26 17:36:58.000000000 +0000 +++ new/community/network/knetstats/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A simple KDE network monitor" url="http://knetstats.sourceforge.net/" -license="GPL" +license=('GPL') depends=(kdelibs) source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2) md5sums=('219f1a94170386621802355b33989ec9') diff -Naur old/community/network/knetworkmanager/PKGBUILD new/community/network/knetworkmanager/PKGBUILD --- old/community/network/knetworkmanager/PKGBUILD 2007-07-24 19:53:43.000000000 +0100 +++ new/community/network/knetworkmanager/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -3,7 +3,7 @@ pkgname=knetworkmanager pkgver=0.2 pkgrel=1 -license="GPL" +license=('GPL') arch=('i686' 'x86_64') options=(libtool) pkgdesc="A NetworkManager front-end for KDE" diff -Naur old/community/network/kvpnc/PKGBUILD new/community/network/kvpnc/PKGBUILD --- old/community/network/kvpnc/PKGBUILD 2007-05-11 13:08:39.000000000 +0100 +++ new/community/network/kvpnc/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="KVpnc is a KDE Desktop Environment frontend for various vpn clients" arch=(i686 x86_64) url="http://home.gna.org/kvpnc/" -license="GPL" +license=('GPL') depends=(kdelibs) install=kvpnc.install source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/network/lat/PKGBUILD new/community/network/lat/PKGBUILD --- old/community/network/lat/PKGBUILD 2007-06-11 16:58:41.000000000 +0100 +++ new/community/network/lat/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="LDAP Administration Tool" arch=('i686' 'x86_64') url="http://people.mmgsecurity.com/~lorenb/lat" -license="GPL" +license=('GPL') depends=('gnome-keyring' 'gtk-sharp-2' 'avahi' 'gnome-sharp') makedepends=('gettext' 'intltool' 'pkgconfig') install=$pkgname.install diff -Naur old/community/network/libtorrent/PKGBUILD new/community/network/libtorrent/PKGBUILD --- old/community/network/libtorrent/PKGBUILD 2007-07-02 18:24:07.000000000 +0100 +++ new/community/network/libtorrent/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="BitTorrent library written in C++" arch=(i686 x86_64) url="http://libtorrent.rakshasa.no" -license="GPL" +license=('GPL') depends=('libsigc++2.0' 'openssl') options=('!libtool') source=(http://libtorrent.rakshasa.no/downloads/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/limewire/PKGBUILD new/community/network/limewire/PKGBUILD --- old/community/network/limewire/PKGBUILD 2007-04-13 21:42:28.000000000 +0100 +++ new/community/network/limewire/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A popular gnutella client" arch=('i686') url="http://www.limewire.com" -license="GPL" +license=('GPL') depends=('jre' 'libxt') makedepends=('rpmextract') source=(http://maverick.limewire.com/download/LimeWireLinux.rpm limewire) diff -Naur old/community/network/link-monitor-applet/PKGBUILD new/community/network/link-monitor-applet/PKGBUILD --- old/community/network/link-monitor-applet/PKGBUILD 2007-05-06 15:00:43.000000000 +0100 +++ new/community/network/link-monitor-applet/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="GNOME Panel Applet displaying the round-trip time to one or more hosts in a bar graph." arch=('i686' 'x86_64') url="http://www.nongnu.org/link-monitor/" -license="GPL" +license=('GPL') depends=('eel' 'gnome-panel' 'geoip' 'librsvg') makedepends=('pkgconfig' 'intltool') install="link-monitor-applet.install" diff -Naur old/community/network/links-g/PKGBUILD new/community/network/links-g/PKGBUILD --- old/community/network/links-g/PKGBUILD 2007-04-11 22:17:35.000000000 +0100 +++ new/community/network/links-g/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A text WWW browser, similar to Lynx, with framebuffer and X graphics enabled" arch=('i686' 'x86_64') url="http://links.twibright.com/" -license="GPL" +license=('GPL') conflicts=('links') provides=('links') depends=('gpm' 'libtiff' 'openssl' 'libpng' 'pcre' 'libx11' 'bzip2') diff -Naur old/community/network/linuxdcpp-ru/PKGBUILD new/community/network/linuxdcpp-ru/PKGBUILD --- old/community/network/linuxdcpp-ru/PKGBUILD 2007-07-22 09:59:15.000000000 +0100 +++ new/community/network/linuxdcpp-ru/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Linux dc++ from CVS with encoding and magnet links support patchset" url="http://linuxdcpp-ru.sourceforge.net/" -license="GPL" +license=('GPL') depends=('libglade' 'bzip2' 'openssl') makedepends=('scons') arch=(i686 x86_64) diff -Naur old/community/network/macchanger/PKGBUILD new/community/network/macchanger/PKGBUILD --- old/community/network/macchanger/PKGBUILD 2006-03-03 06:08:28.000000000 +0000 +++ new/community/network/macchanger/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="A small utility to change you NIC's MAC address" url="http://ftp.gnu.org/gnu/macchanger" -license="GPL" +license=('GPL') source=(http://ftp.gnu.org/gnu/macchanger/$pkgname-$pkgver.tar.gz) md5sums=('79b7cdaeca3d8ebafa764c4b0dd03ab7') diff -Naur old/community/network/mcabber/PKGBUILD new/community/network/mcabber/PKGBUILD --- old/community/network/mcabber/PKGBUILD 2007-07-04 23:50:17.000000000 +0100 +++ new/community/network/mcabber/PKGBUILD 2007-08-03 13:30:21.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="is a small Jabber console client, includes features: SSL, PGP, MUC, UTF8" arch=('i686' 'x86_64') url="http://www.lilotux.net/~mikael/mcabber/" -license="GPL2" +license=('GPL2') depends=('ncurses' 'glib2' 'openssl' 'gpgme') makedepends=('pkgconfig') source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/network/mediawiki/PKGBUILD new/community/network/mediawiki/PKGBUILD --- old/community/network/mediawiki/PKGBUILD 2007-07-31 01:44:02.000000000 +0100 +++ new/community/network/mediawiki/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="MediaWiki engine" arch=(i686 x86_64) url="http://www.mediawiki.org/wiki/MediaWiki" -license="GPL" +license=('GPL') depends=(php) conflicts=() replaces=() diff -Naur old/community/network/moinmoin/PKGBUILD new/community/network/moinmoin/PKGBUILD --- old/community/network/moinmoin/PKGBUILD 2007-05-31 09:56:32.000000000 +0100 +++ new/community/network/moinmoin/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A python wiki clone" arch=(i686) url="http://moinmoin.wikiwikiweb.de/" -license="" +license=() depends=('python' 'apache' 'mod_python') conflicts=('moin') install=moinmoin.install diff -Naur old/community/network/noip/PKGBUILD new/community/network/noip/PKGBUILD --- old/community/network/noip/PKGBUILD 2007-04-30 22:22:28.000000000 +0100 +++ new/community/network/noip/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A Dynamic DNS Client Updater for no-ip.com services" url="http://www.no-ip.com/downloads.php?page=linux" -license="GPL" +license=('GPL') depends=('glibc') backup=(etc/no-ip2.conf) install=noip.install diff -Naur old/community/network/offlineimap/PKGBUILD new/community/network/offlineimap/PKGBUILD --- old/community/network/offlineimap/PKGBUILD 2007-02-28 10:11:01.000000000 +0000 +++ new/community/network/offlineimap/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A powerful IMAP/Maildir synchronization tool" arch=('i686') url="http://software.complete.org/offlineimap/" -license="GPL" +license=('GPL') depends=('python') source=(http://software.complete.org/offlineimap/static/download_area/${pkgver}/${pkgname}_${pkgver}.tar.gz) md5sums=('3de813eec9afa373006ac5cad7299389') diff -Naur old/community/network/orange/PKGBUILD new/community/network/orange/PKGBUILD --- old/community/network/orange/PKGBUILD 2007-03-28 11:26:10.000000000 +0100 +++ new/community/network/orange/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="a helper tool for synce" url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') depends=(dynamite synce-libsynce file unshield) source=(http://switch.dl.sourceforge.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('90f6e822bb81af886dce5bdecd227655') diff -Naur old/community/network/pork/PKGBUILD new/community/network/pork/PKGBUILD --- old/community/network/pork/PKGBUILD 2006-05-07 19:51:55.000000000 +0100 +++ new/community/network/pork/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Console-based AOL Instant Messenger & IRC client" url="http://dev.ojnk.net" -license="GPL" +license=('GPL') depends=('ncurses' 'perl') source=(http://dl.sourceforge.net/sourceforge/ojnk/$pkgname-$pkgver.tar.gz) md5sums=('0c720db7e4e843aeee0fa53ade7cdffd') diff -Naur old/community/network/pppusage/PKGBUILD new/community/network/pppusage/PKGBUILD --- old/community/network/pppusage/PKGBUILD 2007-02-13 17:42:53.000000000 +0000 +++ new/community/network/pppusage/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Utility to monitor pppd connections" url="http://www.jhweiss.de/software/pppusage.html" -license="GPL" +license=('GPL') depends=(perl ppp dcron) makedepends=() backup=(etc/pppusagerc) diff -Naur old/community/network/pptpclient/PKGBUILD new/community/network/pptpclient/PKGBUILD --- old/community/network/pptpclient/PKGBUILD 2007-02-13 17:40:13.000000000 +0000 +++ new/community/network/pptpclient/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Client for the proprietary Microsoft Point-to-Point Tunneling Protocol, PPTP." url="http://pptpclient.sourceforge.net/" -license="GPL" +license=('GPL') depends=(glibc ppp) backup=(etc/ppp/{options.pptp}) source=(http://dl.sourceforge.net/sourceforge/pptpclient/pptp-$pkgver.tar.gz) diff -Naur old/community/network/proxytunnel/PKGBUILD new/community/network/proxytunnel/PKGBUILD --- old/community/network/proxytunnel/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/network/proxytunnel/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="ProxyTunnel is a program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy." arch=('i686' 'x86_64') url="http://proxytunnel.sourceforge.net" -license="GPL" +license=('GPL') depends=(openssl) source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz) md5sums=('f95f76d90f2594521065d9c38d67c9d7') diff -Naur old/community/network/punbb/PKGBUILD new/community/network/punbb/PKGBUILD --- old/community/network/punbb/PKGBUILD 2007-04-12 12:27:23.000000000 +0100 +++ new/community/network/punbb/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="forum engine" url="http://www.punbb.org" -license="GPL" +license=('GPL') depends=(php) source=(http://www.punbb.org/download/$pkgname-$pkgver.tar.bz2) md5sums=('70707a6fcf763823cc3940db6352712c') diff -Naur old/community/network/pyicq/PKGBUILD new/community/network/pyicq/PKGBUILD --- old/community/network/pyicq/PKGBUILD 2007-07-04 23:50:17.000000000 +0100 +++ new/community/network/pyicq/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="jabber icq transport" arch=(i686) url="http://pyicq-t.blathersource.org/" -license="GPL" +license=('GPL') backup=(etc/ejabberd/pyicq.xml) depends=(python twisted) force=y diff -Naur old/community/network/pyrss/PKGBUILD new/community/network/pyrss/PKGBUILD --- old/community/network/pyrss/PKGBUILD 2006-08-29 10:37:18.000000000 +0100 +++ new/community/network/pyrss/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="jabber rss transport" url="http://pyrss.jabberstudio.org/" -license="GPL" +license=('GPL') depends=(python python-pyxmpp python-feedparser mysql-python) backup=(etc/ejabberd/pyrss.xml) source=(http://jabberstudio.2nw.net/pyrss/$pkgname-$pkgver.tar.bz2 \ diff -Naur old/community/network/qbittorrent/PKGBUILD new/community/network/qbittorrent/PKGBUILD --- old/community/network/qbittorrent/PKGBUILD 2007-06-26 20:23:32.000000000 +0100 +++ new/community/network/qbittorrent/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library" url="http://www.qbittorrent.org/" arch=('i686' 'x86_64') -license="GPL" +license=('GPL') depends=('qt4' 'rb_libtorrent>=0.12' 'curl' 'python>=2.3') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/qtorrent/PKGBUILD new/community/network/qtorrent/PKGBUILD --- old/community/network/qtorrent/PKGBUILD 2007-03-04 22:35:02.000000000 +0000 +++ new/community/network/qtorrent/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A Bittorrent Qt GUI" url="http://thegraveyard.org/qtorrent.php" -license="MIT" +license=('MIT') depends=('pyqt') makedepends=('bash' 'patch' 'python') source=(http://thegraveyard.org/files/$pkgname-$pkgver.tar.bz2 \ diff -Naur old/community/network/qtwvdialer/PKGBUILD new/community/network/qtwvdialer/PKGBUILD --- old/community/network/qtwvdialer/PKGBUILD 2007-03-11 18:38:50.000000000 +0000 +++ new/community/network/qtwvdialer/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A simple graphical front-end to wvdial." url="http://www.mtoussaint.de/qtwvdialer.html" -license="GPL" +license=('GPL') arch=('i686') depends=('wvdial' 'qt') source=(http://www.mtoussaint.de/$pkgname-$pkgver.tgz $pkgname.desktop) diff -Naur old/community/network/raggle/PKGBUILD new/community/network/raggle/PKGBUILD --- old/community/network/raggle/PKGBUILD 2006-07-30 18:43:23.000000000 +0100 +++ new/community/network/raggle/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=5 pkgdesc="Open-source console-based RSS aggregator, written in Ruby" url="http://www.raggle.org" -license="GPL" +license=('GPL') depends=('ruby' 'ruby-ncurses') source=(http://www.raggle.org/files/$pkgname-$pkgver.tar.gz raggle.patch) md5sums=('d6fd8e1487f53e5cf89e1bf3cf3adbfc' 'b63d6bc868ce06a047f753f9a4b6adfc') diff -Naur old/community/network/rtorrent/PKGBUILD new/community/network/rtorrent/PKGBUILD --- old/community/network/rtorrent/PKGBUILD 2007-07-02 18:24:07.000000000 +0100 +++ new/community/network/rtorrent/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Ncurses BitTorrent client based on libTorrent" arch=(i686 x86_64) url="http://libtorrent.rakshasa.no" -license="GPL" +license=('GPL') depends=('libtorrent>=0.11.4' 'curl') makedepends=('libtorrent>=0.11.4') source=(http://libtorrent.rakshasa.no/downloads/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/slurm/PKGBUILD new/community/network/slurm/PKGBUILD --- old/community/network/slurm/PKGBUILD 2007-06-04 19:55:25.000000000 +0100 +++ new/community/network/slurm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Monitoring traffic statistics in realtime" url="http://www.wormulon.net/slurm" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('ncurses') source=(http://www.wormulon.net/files/code/slurm/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/smbnetfs/PKGBUILD new/community/network/smbnetfs/PKGBUILD --- old/community/network/smbnetfs/PKGBUILD 2007-05-18 16:57:46.000000000 +0100 +++ new/community/network/smbnetfs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="small C program that mounts Microsoft network neighborhood in single directory." arch=('i686' 'x86_64') url="http://smbnetfs.sourceforge.net/" -license="GPL" +license=('GPL') depends=(fuse smbclient) makedepends=(patch) backup=(etc/smbnetfs/.smb/smb.conf etc/smbnetfs/.smb/smbnetfs.conf) diff -Naur old/community/network/sopcast/PKGBUILD new/community/network/sopcast/PKGBUILD --- old/community/network/sopcast/PKGBUILD 2007-01-21 17:08:03.000000000 +0000 +++ new/community/network/sopcast/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Sopcast is the Streaming Direct Broadcast System based on P2P" url="http://www.sopcast.org" -license="custom" +license=('custom') depends=(libstdc++5) source=(http://download.sopcast.org/download/sp-sc.tgz license) install=sopcast.install diff -Naur old/community/network/synce-dccm/PKGBUILD new/community/network/synce-dccm/PKGBUILD --- old/community/network/synce-dccm/PKGBUILD 2007-03-28 10:24:19.000000000 +0100 +++ new/community/network/synce-dccm/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="provide a means of communication with a Windows CE device - daemon to communicate with a handheld device" url="http://synce.sourceforge.net/" -license="" +license=() depends=(synce-libsynce) source=(http://dl.sourceforge.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('8818b71133049fe9c739166225aebe0c') diff -Naur old/community/network/synce-mcfs/PKGBUILD new/community/network/synce-mcfs/PKGBUILD --- old/community/network/synce-mcfs/PKGBUILD 2007-03-28 11:37:05.000000000 +0100 +++ new/community/network/synce-mcfs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="Midnight Commander VFS for SynCE" url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') depends=('mtools') install=synce-mcfs.install source=(http://dl.sourceforge.net/sourceforge/synce/$pkgname.tar.gz) diff -Naur old/community/network/synce-rra/PKGBUILD new/community/network/synce-rra/PKGBUILD --- old/community/network/synce-rra/PKGBUILD 2007-05-07 17:57:08.000000000 +0100 +++ new/community/network/synce-rra/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="provide a means of communication with a Windows CE device - rra libraries for synce" arch=('i686' 'x86_64') url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') depends=(glibc synce-librapi synce-libmimedir) source=(http://dl.sf.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('6d6de7637d59bddd52f5b656fad4abd2') diff -Naur old/community/network/synce-serial/PKGBUILD new/community/network/synce-serial/PKGBUILD --- old/community/network/synce-serial/PKGBUILD 2007-05-07 17:51:14.000000000 +0100 +++ new/community/network/synce-serial/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="provide a means of communication with a Windows CE device - helper scripts for setting up a serial connection" arch=('i686' 'x86_64') url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') source=(http://dl.sf.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('3a155a770cc2e05fc3af452731d48954') diff -Naur old/community/network/synce-vdccm/PKGBUILD new/community/network/synce-vdccm/PKGBUILD --- old/community/network/synce-vdccm/PKGBUILD 2007-05-07 17:54:28.000000000 +0100 +++ new/community/network/synce-vdccm/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="provide a means of communication with a Windows CE device - daemon to communicate with a handheld device" arch=('i686' 'x86_64') url="http://synce.sourceforge.net/" -license="GPL" +license=('GPL') depends=(gcc synce-libsynce) source=(http://dl.sf.net/sourceforge/synce/$pkgname-$pkgver.tar.gz) md5sums=('f6fcb49297cf80a028bfe75a8e1bdc4d') diff -Naur old/community/network/tapioca-xmpp/PKGBUILD new/community/network/tapioca-xmpp/PKGBUILD --- old/community/network/tapioca-xmpp/PKGBUILD 2007-03-17 20:37:43.000000000 +0000 +++ new/community/network/tapioca-xmpp/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A Tapioca service that implements the XMPP/Jabber protocol" arch=("i686") url="http://tapioca-voip.sourceforge.net" -license="LGPL" +license=('LGPL') depends=('tapioca' 'libjingle') source=(http://dl.sourceforge.net/sourceforge/tapioca-voip/$pkgname-$pkgver.tar.gz) md5sums=('8d810351eb5b30e70b202e067da450c1') diff -Naur old/community/network/tapiocaui/PKGBUILD new/community/network/tapiocaui/PKGBUILD --- old/community/network/tapiocaui/PKGBUILD 2007-03-17 21:31:25.000000000 +0000 +++ new/community/network/tapiocaui/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A GTK+ based GoogleTalk client." arch=("i686") url="http://tapioca-voip.sourceforge.net" -license="LGPL" +license=('LGPL') depends=('tapioca-xmpp' 'gconf' 'libglade' 'gstreamer0.10-farsight') source=(http://dl.sourceforge.net/sourceforge/tapioca-voip/$pkgname-$pkgver.tar.gz tapiocaui_mainwin.c.patch diff -Naur old/community/network/tcpflow/PKGBUILD new/community/network/tcpflow/PKGBUILD --- old/community/network/tcpflow/PKGBUILD 2006-09-04 03:34:36.000000000 +0100 +++ new/community/network/tcpflow/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently" url="http://www.circlemud.org/~jelson/software/tcpflow/" -license="GPL" +license=('GPL') depends=('libpcap') source=(http://www.circlemud.org/pub/jelson/$pkgname/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/telepathy-butterfly/PKGBUILD new/community/network/telepathy-butterfly/PKGBUILD --- old/community/network/telepathy-butterfly/PKGBUILD 2007-04-14 14:03:37.000000000 +0100 +++ new/community/network/telepathy-butterfly/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A MSN connection manager for Telepathy" url="http://telepathy.freedesktop.org" groups=('telepathy') -license="GPL" +license=('GPL') depends=('pymsn' 'python-telepathy') source=(http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butt...) md5sums=('1f7cdbbdd45a85695931839b33bd6863') diff -Naur old/community/network/telepathy-gabble/PKGBUILD new/community/network/telepathy-gabble/PKGBUILD --- old/community/network/telepathy-gabble/PKGBUILD 2007-07-02 18:24:07.000000000 +0100 +++ new/community/network/telepathy-gabble/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -7,7 +7,7 @@ arch=('i686' 'x86_64') url="http://telepathy.freedesktop.org" groups=('telepathy') -license="LGPL" +license=('LGPL') options=('!libtool') depends=('loudmouth' 'telepathy-glib') source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/$pkgname-$pkgver....) diff -Naur old/community/network/telepathy-mission-control/PKGBUILD new/community/network/telepathy-mission-control/PKGBUILD --- old/community/network/telepathy-mission-control/PKGBUILD 2007-07-28 15:29:34.000000000 +0100 +++ new/community/network/telepathy-mission-control/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="A telepathy component providing abstraction of some of the details of connection managers." url="http://mission-control.sourceforge.net/" -license="GPL" +license=('GPL') depends=('libtelepathy' 'gconf') arch=('i686') options=('!libtool') diff -Naur old/community/network/telepathy-stream-engine/PKGBUILD new/community/network/telepathy-stream-engine/PKGBUILD --- old/community/network/telepathy-stream-engine/PKGBUILD 2007-05-04 00:53:09.000000000 +0100 +++ new/community/network/telepathy-stream-engine/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A telepathy client that handles Streamed Media channels" arch=('i686' 'x86_64') url="http://telepathy.freedesktop.org" -license="LGPL" +license=('LGPL') groups=('telepathy') conflicts=('telepathy-voip-engine') replaces=('telepathy-voip-engine') diff -Naur old/community/network/tkabber/PKGBUILD new/community/network/tkabber/PKGBUILD --- old/community/network/tkabber/PKGBUILD 2007-04-13 09:20:45.000000000 +0100 +++ new/community/network/tkabber/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Tkabber is an open source Jabber client, written in Tcl/Tk." url="http://tkabber.jabber.ru/" -license="GPL" +license=('GPL') depends=('tcl' 'tk' 'bwidget' 'tcllib') install= source=(http://files.jabber.ru/tkabber/tkabber-$pkgver.tar.gz \ diff -Naur old/community/network/tls/PKGBUILD new/community/network/tls/PKGBUILD --- old/community/network/tls/PKGBUILD 2006-06-25 22:30:32.000000000 +0100 +++ new/community/network/tls/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="OpenSSL extension to Tcl" url="http://tls.sourceforge.net/" -license="" +license=() depends=('tcl' 'openssl>=0.9.8b' 'awk') makedepends=() conflicts=() diff -Naur old/community/network/tmsnc/PKGBUILD new/community/network/tmsnc/PKGBUILD --- old/community/network/tmsnc/PKGBUILD 2007-03-23 12:17:47.000000000 +0000 +++ new/community/network/tmsnc/PKGBUILD 2007-08-03 13:40:08.000000000 +0100 @@ -6,7 +6,7 @@ arch=i686 pkgdesc="A text based MSN Messenger client" url="http://tmsnc.sourceforge.net" -license="custom:IRPDL" +license=('custom:IRPDL') depends=('ncurses' 'openssl') source=(http://downloads.sourceforge.net/sourceforge/tmsnc/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/trac/PKGBUILD new/community/network/trac/PKGBUILD --- old/community/network/trac/PKGBUILD 2007-04-27 17:00:48.000000000 +0100 +++ new/community/network/trac/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Trac Integrated SCM & Project Management using Apache & Subversion." arch=('i686' 'x86_64') url="http://trac.edgewall.org/" -license="BSD" +license=('BSD') depends=(python clearsilver) makedepends=() install=trac.install diff -Naur old/community/network/transmission/PKGBUILD new/community/network/transmission/PKGBUILD --- old/community/network/transmission/PKGBUILD 2007-06-26 20:23:32.000000000 +0100 +++ new/community/network/transmission/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A free, lightweight BitTorrent client with an intuitive interface" arch=('i686' 'x86_64') url="http://transmission.m0k.org" -license="MIT" +license=('MIT') makedepends=('gtk2') depends=('openssl' 'libevent') backup=(etc/conf.d/transmissiond) diff -Naur old/community/network/urlgfe/PKGBUILD new/community/network/urlgfe/PKGBUILD --- old/community/network/urlgfe/PKGBUILD 2006-11-24 22:44:12.000000000 +0000 +++ new/community/network/urlgfe/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="UrlGfe is a GTK2 download manager" url="http://urlget.sourceforge.net/" -license="LGPL" +license=('LGPL') depends=('gtk2' 'curl' 'pcre') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/sourceforge/urlget/$pkgname-$pkgver.tar.gz) diff -Naur old/community/network/uudeview/PKGBUILD new/community/network/uudeview/PKGBUILD --- old/community/network/uudeview/PKGBUILD 2007-06-08 14:48:19.000000000 +0100 +++ new/community/network/uudeview/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="UUDeview helps transmitting & recieving binary files using mail or newsgroups. Includes library files." arch=('i686') url="http://www.fpx.de/fp/Software/UUDeview/" -license="GPL" +license=('GPL') install=uudeview.install source=(http://www.fpx.de/fp/Software/UUDeview/download/$pkgname-$pkgver.tar.gz) md5sums=('0161abaec3658095044601eae82bbc5b') diff -Naur old/community/network/weechat-cvs/PKGBUILD new/community/network/weechat-cvs/PKGBUILD --- old/community/network/weechat-cvs/PKGBUILD 2007-06-30 14:08:43.000000000 +0100 +++ new/community/network/weechat-cvs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -12,7 +12,7 @@ conflicts=('weechat') provides=('weechat') options=(!libtool) -license="GPL" +license=('GPL') source=() md5sums=() diff -Naur old/community/network/yahoo-t/PKGBUILD new/community/network/yahoo-t/PKGBUILD --- old/community/network/yahoo-t/PKGBUILD 2006-10-10 15:17:11.000000000 +0100 +++ new/community/network/yahoo-t/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="jabber yahoo transport" url="http://xmpppy.sourceforge.net/yahoo/" -license="GPL" +license=('GPL') backup=(etc/ejabberd/yahoo.ini) depends=(python xmpppy) source=(http://dl.sourceforge.net/sourceforge/xmpppy/yahoo-transport-$pkgver.tar.gz \ diff -Naur old/community/network/youtube-dl/PKGBUILD new/community/network/youtube-dl/PKGBUILD --- old/community/network/youtube-dl/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/network/youtube-dl/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A small command-line program to download videos from YouTube.com" url="http://www.arrakis.es/~rggi3/youtube-dl" -license="MIT" +license=('MIT') arch=('i686' 'x86_64') depends=('python') makedepends=('awk') diff -Naur old/community/office/addresses/PKGBUILD new/community/office/addresses/PKGBUILD --- old/community/office/addresses/PKGBUILD 2006-05-05 09:46:47.000000000 +0100 +++ new/community/office/addresses/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A versatile address book application for GNUstep" url="http://giesler.biz/bjoern/en/sw_addr.html" -license="" +license=() depends=(gnustep-back gcc) makedepends=() source=(http://giesler.biz/bjoern/downloads/Addresses-$pkgver.tar.gz) diff -Naur old/community/office/aspell-uk/PKGBUILD new/community/office/aspell-uk/PKGBUILD --- old/community/office/aspell-uk/PKGBUILD 2007-06-26 20:23:32.000000000 +0100 +++ new/community/office/aspell-uk/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Ukrainian dictionary for aspell" arch=('i686' 'x86_64') url="http://ispell-uk.sourceforge.net/" -license="GPL" +license=('GPL') depends=('aspell') source=(ftp://ftp.gnu.org/gnu/aspell/dict/uk/aspell6-uk-$pkgver-0.tar.bz2) md5sums=('662f15381d11581758866fd7af43b4d7') diff -Naur old/community/office/cdcover/PKGBUILD new/community/office/cdcover/PKGBUILD --- old/community/office/cdcover/PKGBUILD 2007-02-21 23:01:25.000000000 +0000 +++ new/community/office/cdcover/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="cdcover allows the creation of inlay-sheets for cd-cases and dvd's" url="http://cdcover.sourceforge.net" -license="" +license=() depends=(python tk) makedepends=() conflicts=() diff -Naur old/community/office/ec-fonts-mftraced/PKGBUILD new/community/office/ec-fonts-mftraced/PKGBUILD --- old/community/office/ec-fonts-mftraced/PKGBUILD 2005-06-01 21:19:13.000000000 +0100 +++ new/community/office/ec-fonts-mftraced/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Music notation fonts" url="http://lilypond.org/download/fonts" -license="" +license=() depends=('tetex') makedepends=('mftrace') install=ec-fonts-mftraced.install diff -Naur old/community/office/glom/PKGBUILD new/community/office/glom/PKGBUILD --- old/community/office/glom/PKGBUILD 2007-05-06 00:36:10.000000000 +0100 +++ new/community/office/glom/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An easy-to-use database designer and user interface" arch=('i686' 'x86_64') url="http://www.glom.org" -license="GPL" +license=('GPL') depends=('bakery' 'libgnomecanvasmm' 'libgnome' 'libgdamm' 'gnome-python-extras'\ 'libgtksourceviewmm' 'iso-codes' 'gnome-doc-utils' 'postgresql') makedepends=('intltool') diff -Naur old/community/office/gnuconcept/PKGBUILD new/community/office/gnuconcept/PKGBUILD --- old/community/office/gnuconcept/PKGBUILD 2007-04-24 23:33:25.000000000 +0100 +++ new/community/office/gnuconcept/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A colaborative mindmap tool for complex document creation" arch=('i686') url="http://gnuconcept.e-oss.net/en/index.php" -license="GPL" +license=('GPL') depends=('diacanvas' 'pyxml' 'python-pychart') source=(http://dl.sourceforge.net/sourceforge/gnuconcept/gnuconcept-$pkgver.tar.gz) diff -Naur old/community/office/gnuhtml2latex/PKGBUILD new/community/office/gnuhtml2latex/PKGBUILD --- old/community/office/gnuhtml2latex/PKGBUILD 2007-01-30 10:52:54.000000000 +0000 +++ new/community/office/gnuhtml2latex/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A Perl script that converts html files to latex" url="http://packages.debian.org/unstable/text/gnuhtml2latex" -license="GPL" +license=('GPL') depends=('perl-html-parser') source=(http://ftp.debian.org/debian/pool/main/g/gnuhtml2latex/${pkgname}_$pkgver.orig.tar.gz 'gnuhtml2latex.1') md5sums=('e54be498c003a17f8281b8485f1996ac' '7244aa248af45831a39394955067e75b') diff -Naur old/community/office/gobby/PKGBUILD new/community/office/gobby/PKGBUILD --- old/community/office/gobby/PKGBUILD 2007-06-24 17:12:32.000000000 +0100 +++ new/community/office/gobby/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A collaborative text editor" url="http://gobby.0x539.de" -license="GPL" +license=('GPL') arch=('i686') depends=('obby' 'libxml++2' 'gtkmm' 'gtksourceview' 'gnome-vfs' 'libbonobo') makedepends=('gettext') diff -Naur old/community/office/gtypist/PKGBUILD new/community/office/gtypist/PKGBUILD --- old/community/office/gtypist/PKGBUILD 2005-04-17 15:10:59.000000000 +0100 +++ new/community/office/gtypist/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="universal typing tutor" url="http://www.gnu.org/software/gtypist/gtypist.html" -license="" +license=() depends=('ncurses>=5.2' 'perl') makedepends=() conflicts=() diff -Naur old/community/office/gutenpy/PKGBUILD new/community/office/gutenpy/PKGBUILD --- old/community/office/gutenpy/PKGBUILD 2007-05-12 23:46:11.000000000 +0100 +++ new/community/office/gutenpy/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A text reader and catalog browser for Project Gutenberg" arch=('i686' 'x86_64') url="http://gutenpy.sourceforge.net" -license="GPL" +license=('GPL') options=('docs') depends=('pygtk') makedepends=('unzip') diff -Naur old/community/office/homebank/PKGBUILD new/community/office/homebank/PKGBUILD --- old/community/office/homebank/PKGBUILD 2007-03-17 15:38:03.000000000 +0000 +++ new/community/office/homebank/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Free easy personal accounting for all" arch=('i686' 'x86_64') url="http://homebank.free.fr" -license="GPL" +license=('GPL') depends=('gtk2') source=(http://homebank.free.fr/public/homebank-$pkgver.tar.gz) md5sums=('825adf3641aefe89e64fb055cf8f6a87') diff -Naur old/community/office/jgnash/PKGBUILD new/community/office/jgnash/PKGBUILD --- old/community/office/jgnash/PKGBUILD 2007-05-16 22:49:59.000000000 +0100 +++ new/community/office/jgnash/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A double-entry based personal finance manager, written in Java" arch=(i686 x86_64) url="http://jgnash.sourceforge.net/" -license="GPL" +license=('GPL') depends=('jre') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.jar \ jgnash.desktop jgnash.png jgnash.sh) diff -Naur old/community/office/kdissert/PKGBUILD new/community/office/kdissert/PKGBUILD --- old/community/office/kdissert/PKGBUILD 2006-12-03 05:08:15.000000000 +0000 +++ new/community/office/kdissert/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A KDE mindmapping tool" url="http://www.freehackers.org/~tnagy/kdissert/" -license="gpl" +license=('GPL') depends=('kdelibs') makedepends=('python') source=("http://www.freehackers.org/~tnagy/$pkgname/$pkgname-$pkgver.tar.bz2") diff -Naur old/community/office/lilypond/PKGBUILD new/community/office/lilypond/PKGBUILD --- old/community/office/lilypond/PKGBUILD 2007-06-04 20:52:39.000000000 +0100 +++ new/community/office/lilypond/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="An automated music engraving system" arch=('i686') -license="GPL" +license=('GPL') url="http://lilypond.org" depends=('ec-fonts-mftraced' 'guile' 'python' 'tetex' 'ghostscript' 'pango' 'fontforge') makedepends=('flex' 'bison' 'gettext' 'mftrace' 'texinfo') diff -Naur old/community/office/mftrace/PKGBUILD new/community/office/mftrace/PKGBUILD --- old/community/office/mftrace/PKGBUILD 2007-03-16 22:37:17.000000000 +0000 +++ new/community/office/mftrace/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Traces TeX bitmap fonts into PFA, PFB, or TTF" url="http://www.xs4all.nl/~hanwen/mftrace/" -license="GPL" +license=('GPL') depends=('python' 'potrace' 't1utils') source=(http://lilypond.org/download/sources/mftrace/mftrace-$pkgver.tar.gz) md5sums=('4e8837594c9e451666b65bfae3165e4f') diff -Naur old/community/office/mutt_vc_query/PKGBUILD new/community/office/mutt_vc_query/PKGBUILD --- old/community/office/mutt_vc_query/PKGBUILD 2006-02-28 15:37:11.000000000 +0000 +++ new/community/office/mutt_vc_query/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Query vCards from mutt using libvc." url="http://rolo.sourceforge.net" -license="GPL" +license=('GPL') depends=('libvc') makedepends=() conflicts=() diff -Naur old/community/office/pizza_party/PKGBUILD new/community/office/pizza_party/PKGBUILD --- old/community/office/pizza_party/PKGBUILD 2006-03-16 04:55:21.000000000 +0000 +++ new/community/office/pizza_party/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A text based program for ordering pizza, or for throwing pizza parties." url="http://www.beigerecords.com/cory/pizza_party/" -license="GPL" +license=('GPL') depends=('perl') source=(http://www.beigerecords.com/cory/pizza_party/download/$pkgname-$pkgver.tar.g...) md5sums=('e7afd8e77fc0f088d45566da0689d80e') diff -Naur old/community/office/rolo/PKGBUILD new/community/office/rolo/PKGBUILD --- old/community/office/rolo/PKGBUILD 2006-02-28 15:36:38.000000000 +0000 +++ new/community/office/rolo/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Tracks your contacts with vCards and displays them to you with a text-based menu." url="http://rolo.sourceforge.net" -license="GPL" +license=('GPL') depends=('ncurses' 'libvc') makedepends=() conflicts=() diff -Naur old/community/office/sdcv/PKGBUILD new/community/office/sdcv/PKGBUILD --- old/community/office/sdcv/PKGBUILD 2007-06-03 21:59:33.000000000 +0100 +++ new/community/office/sdcv/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="StarDict Console Version" url=(http://stardict.sourceforge.net/index.php) -license="GPL" +license=('GPL') depends=('zlib' 'readline' 'glib2' 'gcc') arch=('i686' 'x86_64') provides=('stardict') diff -Naur old/community/office/siag-office/PKGBUILD new/community/office/siag-office/PKGBUILD --- old/community/office/siag-office/PKGBUILD 2007-04-24 05:00:53.000000000 +0100 +++ new/community/office/siag-office/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Siag Office is a tightly integrated, free office package" arch=('i686' 'x86_64') url="http://siag.nu/index.shtml" -license="GPL" +license=('GPL') options=('keepdocs') depends=('mowitz' 'termcap-compat' 'libxpm') source=(ftp://siag.nu/pub/siag/siag-$pkgver.tar.gz Makefile.patch kdeinst.patch) diff -Naur old/community/office/sportstracker/PKGBUILD new/community/office/sportstracker/PKGBUILD --- old/community/office/sportstracker/PKGBUILD 2007-06-04 20:52:39.000000000 +0100 +++ new/community/office/sportstracker/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="An application for people which want to record their sporting activities" url="http://sourceforge.net/projects/sportstracker" depends=('gtk-sharp-2') -license="GPL" +license=('GPL') arch=('i686') source=(http://dl.sourceforge.net/sourceforge/$pkgname/SportsTracker-$pkgver.tar.gz \ makefile.patch \ diff -Naur old/community/office/surfraw/PKGBUILD new/community/office/surfraw/PKGBUILD --- old/community/office/surfraw/PKGBUILD 2006-05-01 04:20:55.000000000 +0100 +++ new/community/office/surfraw/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="Shell Users' Revolutionary Front Rage Against the Web" url="http://surfraw.sourceforge.net/" -license="BSD" +license=('BSD') depends=() makedepends=() conflicts=() diff -Naur old/community/office/t1utils/PKGBUILD new/community/office/t1utils/PKGBUILD --- old/community/office/t1utils/PKGBUILD 2005-06-01 21:16:14.000000000 +0100 +++ new/community/office/t1utils/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A collection of simple Type 1 font manipulation programs" url="http://www.lcdf.org/~eddietwo/type/#t1utils" -license="" +license=() depends=('glibc') source=("http://www.lcdf.org/~eddietwo/type/$pkgname-$pkgver.tar.gz") diff -Naur old/community/office/tdl/PKGBUILD new/community/office/tdl/PKGBUILD --- old/community/office/tdl/PKGBUILD 2006-03-16 05:20:17.000000000 +0000 +++ new/community/office/tdl/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="tdl is a to-do list manager." url="http://www.rc0.org.uk/tdl/" -license="GPL" +license=('GPL') depends=('ncurses') source=(http://www.rpcurnow.force9.co.uk/tdl/$pkgname-$pkgver.tar.gz) md5sums=('620cb00bf99b7e786e2b54cda6339a1e') diff -Naur old/community/office/ted/PKGBUILD new/community/office/ted/PKGBUILD --- old/community/office/ted/PKGBUILD 2007-06-29 13:32:35.000000000 +0100 +++ new/community/office/ted/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ url="http://www.nllgg.nl/Ted/" source=(ftp://ftp.nluug.nl/pub/editors/$pkgname/$pkgname-$pkgver.src.tar.gz) depends=('lesstif' 'xorg' 'bash' 'libtiff') -license="GPL" +license=('GPL') md5sums=(8adc2ab0a67954b2b5068c9be243c82d) build() { diff -Naur old/community/office/texvc/PKGBUILD new/community/office/texvc/PKGBUILD --- old/community/office/texvc/PKGBUILD 2007-02-14 11:37:36.000000000 +0000 +++ new/community/office/texvc/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="tex to HTML/MathML/png converter used by mediawiki" url="http://www.mediawiki.org/" -license="GPL" +license=('GPL') depends=(imagemagick ghostscript tetex) makedepends=(ocaml) source=(http://dl.sourceforge.net/sourceforge/wikipedia/texvc-linux-x86-$pkgver.tar....) diff -Naur old/community/office/tuxcards/PKGBUILD new/community/office/tuxcards/PKGBUILD --- old/community/office/tuxcards/PKGBUILD 2006-07-06 03:12:21.000000000 +0100 +++ new/community/office/tuxcards/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="TuxCards is a hierarchical notebook" url="http://blog.rajgad.com/software-and-projects/" -license="GPL" +license=('GPL') depends=('qt') source=(http://dl.sourceforge.net/tuxcards/$pkgname-$pkgver-src.tar.gz) md5sums=('42214cbef41c6448ddc32fdbbecea745') diff -Naur old/community/science/arpack/PKGBUILD new/community/science/arpack/PKGBUILD --- old/community/science/arpack/PKGBUILD 2006-06-16 15:23:53.000000000 +0100 +++ new/community/science/arpack/PKGBUILD 2007-08-03 13:39:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A collection of Fortran77 subroutines designed to solve large scale eigenvalue problems" url="http://www.caam.rice.edu/software/ARPACK" -license="public-domain" +license=('custom:Public Domain') depends=() makedepends=('gcc-fortran') source=(http://www.caam.rice.edu/software/ARPACK/SRC/arpack96.tar.gz \ diff -Naur old/community/science/boinc/PKGBUILD new/community/science/boinc/PKGBUILD --- old/community/science/boinc/PKGBUILD 2007-05-23 15:28:49.000000000 +0100 +++ new/community/science/boinc/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Berkeley Open Infrastructure for Network Computing" arch=('i686') url="http://boinc.berkeley.edu" -license="LGPL" +license=('LGPL') depends=('curl' 'glut' 'libjpeg' 'openssl' 'wxgtk' 'x-server' 'zlib') makedepends=('cvs' 'pkgconfig') source=(boinc.rc) diff -Naur old/community/science/gdal-grass/PKGBUILD new/community/science/gdal-grass/PKGBUILD --- old/community/science/gdal-grass/PKGBUILD 2006-11-03 19:41:33.000000000 +0000 +++ new/community/science/gdal-grass/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Standalone drivers for GRASS raster and vector files" url="http://www.gdal.org/dl/" -license="" +license=() depends=('gdal' 'grass') makedepends=() conflicts=() diff -Naur old/community/science/gen2shp/PKGBUILD new/community/science/gen2shp/PKGBUILD --- old/community/science/gen2shp/PKGBUILD 2006-11-11 14:40:21.000000000 +0000 +++ new/community/science/gen2shp/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="Converts ArcInfo generate format to shapefile format" url="http://www.intevation.de/~jan/gen2shp/" -license="" +license=() depends=('shapelib') makedepends=() conflicts=() diff -Naur old/community/science/gpsim/PKGBUILD new/community/science/gpsim/PKGBUILD --- old/community/science/gpsim/PKGBUILD 2007-05-02 20:54:46.000000000 +0100 +++ new/community/science/gpsim/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A full-featured software simulator for Microchip PIC microcontrollers" arch=('i686') url="http://www.dattalo.com/gnupic/gpsim.html" -license="GPL" +license=('GPL') depends=('readline' 'popt' 'libtool' 'gtk2+extra') makedepends=() source=(http://dl.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz \ diff -Naur old/community/science/gpsman/PKGBUILD new/community/science/gpsman/PKGBUILD --- old/community/science/gpsman/PKGBUILD 2006-11-05 22:02:05.000000000 +0000 +++ new/community/science/gpsman/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="GPS Manager is a graphical GPS data manager for preparing, inspectiing and editing GPS data" url="http://www.ncc.up.pt/gpsman" -license="GPL" +license=('GPL') depends=('bash' 'tcl') makedepends=() conflicts=() diff -Naur old/community/science/gpsmanshp/PKGBUILD new/community/science/gpsmanshp/PKGBUILD --- old/community/science/gpsmanshp/PKGBUILD 2006-11-07 21:26:29.000000000 +0000 +++ new/community/science/gpsmanshp/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A Tcl package to read and write shapefiles" url="http://www.ncc.up.pt/gpsmanshp" -license="" +license=() depends=('bash' 'tcl' 'shapelib') makedepends=() conflicts=() diff -Naur old/community/science/grass/PKGBUILD new/community/science/grass/PKGBUILD --- old/community/science/grass/PKGBUILD 2007-02-06 17:41:44.000000000 +0000 +++ new/community/science/grass/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Geographic Information System (GIS) used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization" url="http://grass.itc.it/index.php" -license="GPL" +license=('GPL') depends=('gdal>=1.4.0beta2' 'tk' 'sqlite3' 'xorg-server' 'python' 'mesa') makedepends=('proj' 'mysql' 'postgresql' 'r') conflicts=() diff -Naur old/community/science/jump-project/PKGBUILD new/community/science/jump-project/PKGBUILD --- old/community/science/jump-project/PKGBUILD 2006-11-11 16:13:33.000000000 +0000 +++ new/community/science/jump-project/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="GUI application for viewing and mapping spatial data" url="http://www.jump-project.org/" -license="GPL" +license=('GPL') depends=('java-xerces2' 'junit') source=(http://www.jump-project.org/downloads/jump/jump-1.1.2.zip \ jump) diff -Naur old/community/science/jump-roadmatcher/PKGBUILD new/community/science/jump-roadmatcher/PKGBUILD --- old/community/science/jump-roadmatcher/PKGBUILD 2006-11-11 16:35:11.000000000 +0000 +++ new/community/science/jump-roadmatcher/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="Jump Project plugin that performs conflation between linear and road networks" url="http://www.jump-project.org/" -license="GPL" +license=('GPL') depends=(jump-project) makedepends=() conflicts=() diff -Naur old/community/science/ktechlab/PKGBUILD new/community/science/ktechlab/PKGBUILD --- old/community/science/ktechlab/PKGBUILD 2007-04-26 15:36:12.000000000 +0100 +++ new/community/science/ktechlab/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="IDE for electronic circuits and microcontrollers" arch=('i686') url="http://sourceforge.net/projects/ktechlab" -license="GPL" +license=('GPL') depends=('kdelibs' 'gputils' 'gpsim') makedepends=() source=(http://dl.sourceforge.net/sourceforge/ktechlab/${pkgname}-${pkgver}.tar.bz2 \ diff -Naur old/community/science/libscigraphica/PKGBUILD new/community/science/libscigraphica/PKGBUILD --- old/community/science/libscigraphica/PKGBUILD 2006-11-02 07:55:02.000000000 +0000 +++ new/community/science/libscigraphica/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Supporting library for scigraphica" url="http://scigraphica.sourceforge.net/" -license="" +license=() depends=('gtk2+extra>=2.1.1' 'python-numarray') makedepends=() source=(http://dl.sourceforge.net/scigraphica/$pkgname-$pkgver.tar.gz) diff -Naur old/community/science/mmap/PKGBUILD new/community/science/mmap/PKGBUILD --- old/community/science/mmap/PKGBUILD 2006-06-24 02:35:57.000000000 +0100 +++ new/community/science/mmap/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A GTK2 map viewer" url="http://sourceforge.jp/projects/mmap" -license="GPL" +license=('GPL') depends=('gtkglext' 'lha' 'curl') source=(http://prdownloads.sourceforge.jp/mmap/20600/mmap-$pkgver.tar.gz) md5sums=('d3666637e89dd71541ea09d57001a493') diff -Naur old/community/science/oregano/PKGBUILD new/community/science/oregano/PKGBUILD --- old/community/science/oregano/PKGBUILD 2007-05-03 04:12:47.000000000 +0100 +++ new/community/science/oregano/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Schematic capture and circuit simulator" arch=('i686' 'x86_64') url="https://gforge.lug.fi.uba.ar/projects/arrakis/" -license="GPL" +license=('GPL') depends=('libgnomeui' 'libgnomeprintui' 'gtksourceview') makedepends=('scons') install=oregano.install diff -Naur old/community/science/qucs/PKGBUILD new/community/science/qucs/PKGBUILD --- old/community/science/qucs/PKGBUILD 2007-06-21 10:33:07.000000000 +0100 +++ new/community/science/qucs/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ arch=(i686) depends=('qt>=3.1') url="http://qucs.sourceforge.net" -license="GPL" +license=('GPL') source=(http://dl.sourceforge.net/sourceforge/qucs/$pkgname-$pkgver.tar.gz) md5sums=('5df0550bb0bc295c9ab72991746d3adc') diff -Naur old/community/science/scigraphica/PKGBUILD new/community/science/scigraphica/PKGBUILD --- old/community/science/scigraphica/PKGBUILD 2006-11-02 07:53:39.000000000 +0000 +++ new/community/science/scigraphica/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=5 pkgdesc="A scientific application for data analysis and technical graphics" url="http://scigraphica.sourceforge.net/" -license="" +license=() depends=('imlib' 'libxml2' 'libscigraphica') makedepends=() source=(http://dl.sourceforge.net/scigraphica/$pkgname-$pkgver.tar.gz) diff -Naur old/community/science/tkgm_util/PKGBUILD new/community/science/tkgm_util/PKGBUILD --- old/community/science/tkgm_util/PKGBUILD 2006-11-11 14:44:48.000000000 +0000 +++ new/community/science/tkgm_util/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Programs for use with Tkgeomap" url="http://www.tkgeomap.org/" -license="" +license=() depends=('tkgeomap' 'tclgeomap') makedepends=() source=(http://dl.maptools.org/dl/shapelib/shapelib-1.2.10.tar.gz http://dl.sourceforge.net/sourceforge/tkgeomap/$pkgname-$pkgver.tar.gz) diff -Naur old/community/science/umfpack/PKGBUILD new/community/science/umfpack/PKGBUILD --- old/community/science/umfpack/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/science/umfpack/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A multifrontal direct solver for unsymmetric linear systems" arch=(i686) url="http://www.cise.ufl.edu/research/sparse/umfpack" -license="LGPL" +license=('LGPL') depends=('lapack') makedpends=('gcc-fortran') source=(http://www.cise.ufl.edu/research/sparse/umfpack/v$pkgver/UMFPACK.tar.gz \ diff -Naur old/community/science/units/PKGBUILD new/community/science/units/PKGBUILD --- old/community/science/units/PKGBUILD 2007-03-13 03:25:18.000000000 +0000 +++ new/community/science/units/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="converts between different units" url="http://www.gnu.org/software/units/units.html" depends=('readline') -license="GPL" +license=('GPL') source=(http://ftp.gnu.org/gnu/units/$pkgname-$pkgver.tar.gz) build() { diff -Naur old/community/system/arch-backup/PKGBUILD new/community/system/arch-backup/PKGBUILD --- old/community/system/arch-backup/PKGBUILD 2007-04-25 10:43:58.000000000 +0100 +++ new/community/system/arch-backup/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="trivial backup scripts (ssh/smb support)" url="http://code.google.com/p/archlinux-stuff/" -license="GPL" +license=('GPL') depends=() backup=(etc/arch-backup/arch-backup.conf) source=(http://archlinux-stuff.googlecode.com/files/arch-backup-$pkgver.tar.gz) diff -Naur old/community/system/aurtools/PKGBUILD new/community/system/aurtools/PKGBUILD --- old/community/system/aurtools/PKGBUILD 2007-02-22 08:25:40.000000000 +0000 +++ new/community/system/aurtools/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Tools for TUs and Developers for manipulating the community repo" url="http://aur.archlinux.org" -license="" +license=() depends=('python' 'devtools') makedepends=() conflicts=(tupkg) diff -Naur old/community/system/bar/PKGBUILD new/community/system/bar/PKGBUILD --- old/community/system/bar/PKGBUILD 2006-05-10 01:54:34.000000000 +0100 +++ new/community/system/bar/PKGBUILD 2007-08-03 13:40:25.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A script for showing progress bars." url="http://www.theiling.de/projects/bar.html" -license="custom:public" +license=('custom:Public Domain') depends=('bash') source=(http://www.theiling.de/downloads/$pkgname-$pkgver-src.tar.bz2) md5sums=('4b99147e2efbe678cbcdc985ad2412f4') diff -Naur old/community/system/base64/PKGBUILD new/community/system/base64/PKGBUILD --- old/community/system/base64/PKGBUILD 2006-09-26 14:20:55.000000000 +0100 +++ new/community/system/base64/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Encode and decode base64 files" url="http://www.fourmilab.ch/webtools/base64/" -license="GPL" +license=('GPL') depends=('gcc') source=(http://www.fourmilab.ch/webtools/base64/${pkgname}-${pkgver}.tar.gz) md5sums=('77f0ff05296e1bd446ff02cea279309a') diff -Naur old/community/system/bhv/PKGBUILD new/community/system/bhv/PKGBUILD --- old/community/system/bhv/PKGBUILD 2006-07-11 05:19:27.000000000 +0100 +++ new/community/system/bhv/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Allows you to examine the contents of web browser history files" url="http://people.mmgsecurity.com/~lorenb/bhv" -license="GPL" +license=('GPL') depends=('gnome-python-extras' 'python-pysqlite') makedepends=('intltool') source=(http://people.mmgsecurity.com/~lorenb/bhv/releases/$pkgname-$pkgver.tar.gz) diff -Naur old/community/system/bluemote/PKGBUILD new/community/system/bluemote/PKGBUILD --- old/community/system/bluemote/PKGBUILD 2006-06-07 23:54:31.000000000 +0100 +++ new/community/system/bluemote/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=4 pkgdesc="Will turn your Bluetooth-enabled mobile phone into a remote control for your computer" url="http://www.geocities.com/saravkrish/progs/bluemote" -license="GPL" +license=('GPL') depends=('libxtst') source=(http://www.geocities.com/saravkrish/progs/bluemote/bluemote.$pkgver.tar.gz \ bluemote-lock.patch) diff -Naur old/community/system/bwbar/PKGBUILD new/community/system/bwbar/PKGBUILD --- old/community/system/bwbar/PKGBUILD 2007-02-14 10:59:11.000000000 +0000 +++ new/community/system/bwbar/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Generates text and graphical readout of the current bandwidth usage." url="http://www.kernel.org/pub/software/web/bwbar/" -license="" +license=() depends=('libpng') source=(http://www.kernel.org/pub/software/web/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('766265ddf0615b552ff19d12f78be719') diff -Naur old/community/system/checkinstall/PKGBUILD new/community/system/checkinstall/PKGBUILD --- old/community/system/checkinstall/PKGBUILD 2007-04-06 09:50:35.000000000 +0100 +++ new/community/system/checkinstall/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="spy for 'make install' and build rpm or deb" url="http://asic-linux.com.mx/~izto/checkinstall/" -license="GPL" +license=('GPL') depends=(bash) makedepends=(patch) backup=(etc/checkinstall/checkinstallrc) diff -Naur old/community/system/chrootuid/PKGBUILD new/community/system/chrootuid/PKGBUILD --- old/community/system/chrootuid/PKGBUILD 2007-02-21 14:41:48.000000000 +0000 +++ new/community/system/chrootuid/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Runs a command in a restricted environment." url="ftp://ftp.porcupine.org/pub/security/index.html" -license="BSD" +license=('BSD') depends=(glibc) source=(ftp://ftp.porcupine.org/pub/security/$pkgname$pkgver.tar.gz) md5sums=('15510abadf5de189e1c22a1544dc926a') diff -Naur old/community/system/cpulimit/PKGBUILD new/community/system/cpulimit/PKGBUILD --- old/community/system/cpulimit/PKGBUILD 2007-02-26 14:47:34.000000000 +0000 +++ new/community/system/cpulimit/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Limit cpu usage in %. Actualy sends SIGSTOP/SIGCONT" url="http://cpulimit.sourceforge.net/" -license="GPL" +license=('GPL') source=("http://dl.sourceforge.net/sourceforge/cpulimit/cpulimit-1.1.tar.gz") md5sums=('f4ff6d4bfaef1258e8f5cd2041e2e2a3') diff -Naur old/community/system/dar/PKGBUILD new/community/system/dar/PKGBUILD --- old/community/system/dar/PKGBUILD 2007-05-17 01:04:20.000000000 +0100 +++ new/community/system/dar/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A full featured command-line backup tool, short for Disk ARchive" arch=(i686) url="http://dar.linux.free.fr/" -license="GPL" +license=('GPL') depends=('attr' 'bzip2' 'gcc' 'openssl' 'zlib') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g...) md5sums=('30b2e488f11e1ab60510fa198de23791') diff -Naur old/community/system/dash/PKGBUILD new/community/system/dash/PKGBUILD --- old/community/system/dash/PKGBUILD 2007-07-18 12:00:02.000000000 +0100 +++ new/community/system/dash/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A POSIX compliant shell that is much smaller than "bash"" arch=('i686') url="http://ftp.debian.org/debian/pool/main/d/dash" -license="BSD" +license=('BSD') depends=('glibc') source=("http://ftp.debian.org/debian/pool/main/d/dash/dash_$pkgver.orig.tar.gz") md5sums=('1a3cd6669459be4344ec55ec9d4914f8') diff -Naur old/community/system/datemath/PKGBUILD new/community/system/datemath/PKGBUILD --- old/community/system/datemath/PKGBUILD 2005-04-19 18:14:05.000000000 +0100 +++ new/community/system/datemath/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Command line date and time math utility." url="http://www.unixwiz.net/tools/datemath.html" -license="GPL" +license=('GPL') depends=('glibc') source=(http://www.unixwiz.net/tools/$pkgname.tar.gz) md5sums=('2c369d70a43313b71dbe3c7cc50207de') diff -Naur old/community/system/dchroot/PKGBUILD new/community/system/dchroot/PKGBUILD --- old/community/system/dchroot/PKGBUILD 2006-05-14 22:33:47.000000000 +0100 +++ new/community/system/dchroot/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Allows users to execute shell commands under different root filesystems" url="http://packages.debian.org/unstable/admin/dchroot" -license="GPL" +license=('GPL') depends=() source=(http://ftp.debian.org/debian/pool/main/d/dchroot/dchroot_$pkgver.tar.gz) md5sums=('13990d6d8d1d052d5114f42d544b61d2') diff -Naur old/community/system/directfb/PKGBUILD new/community/system/directfb/PKGBUILD --- old/community/system/directfb/PKGBUILD 2007-03-11 07:55:32.000000000 +0000 +++ new/community/system/directfb/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system on top of the Linux Framebuffer Device." arch=('i686') url="http://www.directfb.org" -license="LGPL" +license=('LGPL') options=('NOLIBTOOL') depends=('libjpeg' 'sdl' 'sysfsutils' 'libpng' 'freetype2') source=(http://www.directfb.org/downloads/Core/DirectFB-$pkgver.tar.gz) diff -Naur old/community/system/duff/PKGBUILD new/community/system/duff/PKGBUILD --- old/community/system/duff/PKGBUILD 2007-05-17 04:11:20.000000000 +0100 +++ new/community/system/duff/PKGBUILD 2007-08-03 13:33:05.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A command-line utility for quickly finding duplicates in a given set of files" arch=(i686) url="http://duff.sourceforge.net/" -license="ZLIB" +license=('custom:zlib') depends=('glibc') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g...) md5sums=('ca5043ceb1e16dac1aca5da1ed844149') diff -Naur old/community/system/edb-devel/PKGBUILD new/community/system/edb-devel/PKGBUILD --- old/community/system/edb-devel/PKGBUILD 2007-05-12 07:17:05.000000000 +0100 +++ new/community/system/edb-devel/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Database Convenience Library wrapped around the Berkeley DB" arch=('i686' 'x86_64') url="http://www.enlightenment.org/" -license="BSD" +license=('BSD') options=('!libtool') groups=('e17') depends=('gtk' 'ncurses') diff -Naur old/community/system/endeavour/PKGBUILD new/community/system/endeavour/PKGBUILD --- old/community/system/endeavour/PKGBUILD 2007-03-28 02:01:19.000000000 +0100 +++ new/community/system/endeavour/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A file browser/file manager" arch=('i686') url="http://wolfpack.twu.net/Endeavour2/" -license="GPL" +license=('GPL') depends=('imlib' 'libsm' 'libxxf86vm' 'gcc') source=(http://wolfpack.twu.net/users/wolfpack/$pkgname-$pkgver.tar.bz2) md5sums=('f295497fd4597bee20c5bc02411e575d') diff -Naur old/community/system/fbdump/PKGBUILD new/community/system/fbdump/PKGBUILD --- old/community/system/fbdump/PKGBUILD 2007-04-04 14:29:14.000000000 +0100 +++ new/community/system/fbdump/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="captures the contents of the visible portion of the Linux framebuffer to stdout" url="http://www.rcdrummond.net/fbdump/" -license="GPL" +license=('GPL') depends=() source=(http://www.rcdrummond.net/$pkgname/$pkgname-src-$pkgver.tar.gz) md5sums=(496ac25414f2077fcc3adc62e53fb40f) diff -Naur old/community/system/fbgetty/PKGBUILD new/community/system/fbgetty/PKGBUILD --- old/community/system/fbgetty/PKGBUILD 2007-04-04 15:54:23.000000000 +0100 +++ new/community/system/fbgetty/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -2,7 +2,7 @@ pkgname=fbgetty pkgver=0.1.698 pkgrel=1 -license="GPL" +license=('GPL') pkgdesc="fbgetty is a console getty like mingetty, which supports framebuffers" url="http://projects.meuh.org/fbgetty" source=('http://projects.meuh.org/fbgetty/downloads/fbgetty-'$pkgver'.tar.gz') diff -Naur old/community/system/fbgrab/PKGBUILD new/community/system/fbgrab/PKGBUILD --- old/community/system/fbgrab/PKGBUILD 2005-10-07 16:36:50.000000000 +0100 +++ new/community/system/fbgrab/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="A framebuffer screenshot grabber" url="http://hem.bredband.net/gmogmo/fbgrab/" -license="" +license=() depends=('libpng') makedepends=('libpng') source=(http://hem.bredband.net/gmogmo/fbgrab/fbgrab-1.0.tar.gz) diff -Naur old/community/system/fcrackzip/PKGBUILD new/community/system/fcrackzip/PKGBUILD --- old/community/system/fcrackzip/PKGBUILD 2006-06-24 10:11:37.000000000 +0100 +++ new/community/system/fcrackzip/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="A zip file password cracker" url="http://www.goof.com/pcg/marc/$pkgname.html" -license="GPL" +license=('GPL') depends=(glibc) source=(http://www.goof.com/pcg/marc/data/$pkgname-$pkgver.tar.gz \ fcrackzip-gccfix.diff) diff -Naur old/community/system/fdm/PKGBUILD new/community/system/fdm/PKGBUILD --- old/community/system/fdm/PKGBUILD 2007-05-27 21:55:50.000000000 +0100 +++ new/community/system/fdm/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Simple, lightweight replacement for mail fetch, filter and delivery programs such as fetchmail and procmail." arch=('i686' 'x86_64') url="http://fdm.sourceforge.net" -license="BSD" +license=('BSD') depends=('openssl' 'zlib') backup=('etc/fdm.conf') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g... \ diff -Naur old/community/system/floyd/PKGBUILD new/community/system/floyd/PKGBUILD --- old/community/system/floyd/PKGBUILD 2007-02-14 10:41:57.000000000 +0000 +++ new/community/system/floyd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="displays system load with pulse of keyboard LED" url="http://www.asahi-net.or.jp/~pi9s-nnb/floyd/" -license="GPL" +license=('GPL') depends=(glibc) backup=(etc/fuse.conf) source=(http://www.asahi-net.or.jp/~pi9s-nnb/floyd/$pkgname-$pkgver.tar.gz) diff -Naur old/community/system/fonteditfs/PKGBUILD new/community/system/fonteditfs/PKGBUILD --- old/community/system/fonteditfs/PKGBUILD 2007-03-29 10:07:53.000000000 +0100 +++ new/community/system/fonteditfs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="console font editor" url="http://fonteditfs.sourceforge.net/" -license="GPL" +license=('GPL') depends=(ncurses) source=("http://dl.sourceforge.net/sourceforge/fonteditfs/fnteditfs-$pkgver.tgz") md5sums=('1e7c827da078d41a76459439dda0d5a9') diff -Naur old/community/system/gdmap/PKGBUILD new/community/system/gdmap/PKGBUILD --- old/community/system/gdmap/PKGBUILD 2006-06-11 18:54:56.000000000 +0100 +++ new/community/system/gdmap/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Tool to inspect the used space of folders" url="http://gdmap.sourceforge.net" -license="GPL" +license=('GPL') depends=('gtk2' 'libxml2') makedepends=('gettext' 'intltool' 'pkgconfig') source=(http://dl.sourceforge.net/sourceforge/gdmap/gdmap-$pkgver.tar.gz) diff -Naur old/community/system/gmailfs/PKGBUILD new/community/system/gmailfs/PKGBUILD --- old/community/system/gmailfs/PKGBUILD 2007-04-23 16:09:20.000000000 +0100 +++ new/community/system/gmailfs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A mountable filesystem which uses your Gmail account as a storage medium" url="http://www.richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem..." -license="GPL" +license=('GPL') backup=(etc/gmailfs/gmailfs.conf) depends=('libgmail>=0.1.4' 'python-fuse') install=gmailfs.install diff -Naur old/community/system/gmrun/PKGBUILD new/community/system/gmrun/PKGBUILD --- old/community/system/gmrun/PKGBUILD 2006-05-10 03:19:48.000000000 +0100 +++ new/community/system/gmrun/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A simple program which provides a run program window" url="http://sf.net/projects/gmrun" -license="GPL" +license=('GPL') depends=('gtk2' 'popt') source=(http://dl.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('6cef37a968006d9496fc56a7099c603c') diff -Naur old/community/system/gpa/PKGBUILD new/community/system/gpa/PKGBUILD --- old/community/system/gpa/PKGBUILD 2007-05-24 17:52:35.000000000 +0100 +++ new/community/system/gpa/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A graphical user interface for the GnuPG" arch=('i686' 'x86_64') url="http://wald.intevation.org/projects/gpa/" -license="GPL" +license=('GPL') depends=('gpgme>=1.1.3' 'gtk2') makedepends=('pkgconfig') source=(http://wald.intevation.org/frs/download.php/350/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/system/gsynaptics/PKGBUILD new/community/system/gsynaptics/PKGBUILD --- old/community/system/gsynaptics/PKGBUILD 2007-02-01 09:15:33.000000000 +0000 +++ new/community/system/gsynaptics/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A settings tool for Synaptics touchpad driver" arch=(i686 x86_64) url="http://gsynaptics.sourceforge.jp" -license="GPL" +license=('GPL') depends=('libgnomeui' 'synaptics') makedepends=('intltool' 'gettext') source=(http://dl.sourceforge.jp/gsynaptics/23764/gsynaptics-$pkgver.tar.gz) diff -Naur old/community/system/hwinfo/PKGBUILD new/community/system/hwinfo/PKGBUILD --- old/community/system/hwinfo/PKGBUILD 2007-06-05 20:26:07.000000000 +0100 +++ new/community/system/hwinfo/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc=" A simple program that lists results from the hardware detection library." url="http://www.opensuse.org" -license="GPL" +license=('GPL') arch=('i686') depends=('hal') makedepends=('sysfsutils') diff -Naur old/community/system/jacman/PKGBUILD new/community/system/jacman/PKGBUILD --- old/community/system/jacman/PKGBUILD 2006-12-18 22:01:33.000000000 +0000 +++ new/community/system/jacman/PKGBUILD 2007-08-03 13:30:31.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Java-based GUI front-end for pacman" url="http://www.andy-roberts.net/software/jacman" -license="Apache" +license=('APACHE') depends=(j2re) makedepends=() conflicts=() diff -Naur old/community/system/keyboardcast/PKGBUILD new/community/system/keyboardcast/PKGBUILD --- old/community/system/keyboardcast/PKGBUILD 2006-06-23 19:24:54.000000000 +0100 +++ new/community/system/keyboardcast/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="An app to relay text to selected windows" url="http://desrt.mcmaster.ca/code/keyboardcast" -license="GPL" +license=('GPL') depends=('libwnck' 'libglade' 'libxmu') source=(http://desrt.mcmaster.ca/code/keyboardcast/keyboardcast-$pkgver.tar.gz) md5sums=('5ed46188c70f5622a64d90965db389dc') diff -Naur old/community/system/logwatch/PKGBUILD new/community/system/logwatch/PKGBUILD --- old/community/system/logwatch/PKGBUILD 2007-05-20 07:05:30.000000000 +0100 +++ new/community/system/logwatch/PKGBUILD 2007-08-03 13:37:12.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Logwatch is a customizable log analysis system." url="http://www.logwatch.org/" depends=('perl' 'cron') -license=custom +license=('custom') source=(ftp://ftp.kaybee.org/pub/linux/$pkgname-$pkgver.tar.gz) md5sums=('937d982006b2a76a83edfcfd2e5a9d7d') backup=('etc/logwatch/conf/logwatch.conf' 'etc/logwatch/conf/ignore.conf' 'etc/logwatch/conf/override.conf') diff -Naur old/community/system/lomoco/PKGBUILD new/community/system/lomoco/PKGBUILD --- old/community/system/lomoco/PKGBUILD 2006-05-05 22:38:09.000000000 +0100 +++ new/community/system/lomoco/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 url="http://lomoco.linux-gamers.net" pkgdesc="Logitech USB mouse configuration program" -license="GPL" +license=('GPL') depends=('libusb') conflicts=() replaces=('lmctl') diff -Naur old/community/system/mairix/PKGBUILD new/community/system/mairix/PKGBUILD --- old/community/system/mairix/PKGBUILD 2007-06-27 18:52:12.000000000 +0100 +++ new/community/system/mairix/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A program for indexing and searching email messages stored in Maildir, MH or mbox folders." arch=('i686') url="http://www.rpcurnow.force9.co.uk/mairix/" -license="GPL" +license=('GPL') install=mairix.install source=(http://downloads.sourceforge.net/sourceforge/mairix/$pkgname-$pkgver.tar.gz) md5sums=('821619895931711c370f51f3442a0ded') diff -Naur old/community/system/man-pages-it/PKGBUILD new/community/system/man-pages-it/PKGBUILD --- old/community/system/man-pages-it/PKGBUILD 2007-05-24 17:19:14.000000000 +0100 +++ new/community/system/man-pages-it/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Italian man pages" arch=('i686') url="http://it.tldp.org" -license="GPL" +license=('GPL') depends=('man') source=(http://ftp.pluto.it/pub/pluto/ildp/man/$pkgname-$pkgver.tar.gz \ http://ftp.pluto.it/pub/pluto/ildp/man/${pkgname}-extra-${_extrapkgver}.tar.gz) diff -Naur old/community/system/mc-colorer/PKGBUILD new/community/system/mc-colorer/PKGBUILD --- old/community/system/mc-colorer/PKGBUILD 2006-11-22 22:50:02.000000000 +0000 +++ new/community/system/mc-colorer/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 _realname="mccolorer-20060530-0.9" pkgdesc="Midnight Commander mod with Colorer-take5 syntax engine" -license="GPL" +license=('GPL') depends=('e2fsprogs' 'glib2' 'gpm' 'colorer') conflicts=('mc') provides=('mc') diff -Naur old/community/system/ncrypt/PKGBUILD new/community/system/ncrypt/PKGBUILD --- old/community/system/ncrypt/PKGBUILD 2006-05-17 02:05:39.000000000 +0100 +++ new/community/system/ncrypt/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="NMRC File Encryptor / Decryptor / Wiper" url="http://ncrypt.sourceforge.net/" -license="GPL" +license=('GPL') depends=(glibc) source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tgz) diff -Naur old/community/system/nopaste/PKGBUILD new/community/system/nopaste/PKGBUILD --- old/community/system/nopaste/PKGBUILD 2007-02-13 03:06:52.000000000 +0000 +++ new/community/system/nopaste/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A command-line interface to rafb.net/paste" arch=('i686' 'x86_64') url="http://gentoo.org/~agriffis/nopaste/" -license="GPL" +license=('GPL') depends=('ruby') source=(http://gentoo.org/~agriffis/${pkgname}/${pkgname}-${pkgver} \ nopaste.desktop paste2.png) diff -Naur old/community/system/osec/PKGBUILD new/community/system/osec/PKGBUILD --- old/community/system/osec/PKGBUILD 2007-02-14 11:03:55.000000000 +0000 +++ new/community/system/osec/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="lightweight integrity checking system" url="http://o-security.sourceforge.net/" -license="GPL" +license=('GPL') makedepends=(boost help2man tinycdb) depends=(cdbxx libcap openssl) install=osec.install diff -Naur old/community/system/paco/PKGBUILD new/community/system/paco/PKGBUILD --- old/community/system/paco/PKGBUILD 2007-06-24 17:12:32.000000000 +0100 +++ new/community/system/paco/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="LFS packet manager" arch=('i686' 'x86_64') url="http://paco.sourceforge.net/index.html" -license="GPL" +license=('GPL') #NOTE: You may disable gtk frontend in configure depends=(gtk2) diff -Naur old/community/system/parano/PKGBUILD new/community/system/parano/PKGBUILD --- old/community/system/parano/PKGBUILD 2006-07-03 01:00:20.000000000 +0100 +++ new/community/system/parano/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A GNOME frontend for creating/editing/checking MD5 and SFV files" url="http://parano.berlios.de" -license="GPL" +license=('GPL') depends=('gnome-python') source=(http://download.berlios.de/parano/parano-$pkgver.tar.gz \ mime.diff) diff -Naur old/community/system/partimage/PKGBUILD new/community/system/partimage/PKGBUILD --- old/community/system/partimage/PKGBUILD 2007-01-12 20:51:28.000000000 +0000 +++ new/community/system/partimage/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Partition Image saves partitions in many formats to an image file. The image file can be compressed in the GZIP/BZIP2 formats to save disk space, and split into multiple files. This package includes daemon for sending partition parts securely via network." url="http://www.partimage.org/" -license="GPL" +license=('GPL') depends=('gcc' 'zlib' 'bzip2' 'libnewt' 'lzo' 'pam') makedepends=('libnewt') backup=('etc/partimaged/partimagedusers') diff -Naur old/community/system/pgadmin3/PKGBUILD new/community/system/pgadmin3/PKGBUILD --- old/community/system/pgadmin3/PKGBUILD 2007-05-18 14:04:46.000000000 +0100 +++ new/community/system/pgadmin3/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A comprehensive design and management interface for PostgreSQL database" arch=('i686') url="http://www.pgadmin.org" -license="custom" +license=('custom') depends=('wxgtk' 'postgresql' 'libpq++') source=(ftp://ftp.de.postgresql.org/mirror/postgresql/pgadmin3/release/v$pkgver/src/pgadmin3-$pkgver.tar.gz) diff -Naur old/community/system/phppgadmin/PKGBUILD new/community/system/phppgadmin/PKGBUILD --- old/community/system/phppgadmin/PKGBUILD 2007-06-11 16:58:42.000000000 +0100 +++ new/community/system/phppgadmin/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ depends=('php' 'postgresql') backup=('home/httpd/html/phpPgAdmin/conf/config.inc.php') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/phpPgAdmin-$pkgver.tar...) -license="GPL" +license=('GPL') md5sums=('c6b26b992f683f198384121ad0e6c1ea') diff -Naur old/community/system/pinfo/PKGBUILD new/community/system/pinfo/PKGBUILD --- old/community/system/pinfo/PKGBUILD 2006-06-24 11:03:57.000000000 +0100 +++ new/community/system/pinfo/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="A hypertext info file viewer" url="http://dione.ids.pl/~pborys/software/pinfo/" -license="GPL" +license=('GPL') depends=(ncurses) source=(http://dione.ids.pl/~pborys/software/pinfo/$pkgname-$pkgver.tar.gz) md5sums=('55feb4ebaa709b52bd00a15ed0fb52fb') diff -Naur old/community/system/pv/PKGBUILD new/community/system/pv/PKGBUILD --- old/community/system/pv/PKGBUILD 2007-05-17 01:13:21.000000000 +0100 +++ new/community/system/pv/PKGBUILD 2007-08-03 13:20:36.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A terminal-based tool for monitoring the progress of data through a pipeline" arch=(i686) url="http://www.ivarch.com/programs/pv.shtml" -license='custom:"Artistic License"' +license=('PerlArtistic') depends=('glibc') source=(http://downloads.sourceforge.net/sourceforge/pipeviewer/$pkgname-$pkgver.tar...) md5sums=('e3c822458385840294405d6d61c30f85') diff -Naur old/community/system/qingy-theme-arch/PKGBUILD new/community/system/qingy-theme-arch/PKGBUILD --- old/community/system/qingy-theme-arch/PKGBUILD 2007-01-29 06:42:33.000000000 +0000 +++ new/community/system/qingy-theme-arch/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Theme for qingy (based on the darch gensplash theme)" url="http://www.astro.umontreal.ca/~belanger/" -license="GPL" +license=('GPL') arch=('i686' 'x86_64') depends=('qingy') source=(http://www.astro.umontreal.ca/~belanger/qingy-theme-arch-1.0.tar.bz2) diff -Naur old/community/system/qpxtool/PKGBUILD new/community/system/qpxtool/PKGBUILD --- old/community/system/qpxtool/PKGBUILD 2007-04-03 17:55:28.000000000 +0100 +++ new/community/system/qpxtool/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="QPxTool is the Open Source Solution which intends to give you access to all available Quality Checks." url="http://qpxtool.sourceforge.net/" -license="" +license=() depends=('qt') makedepends=() source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 qpxtool.desktop) diff -Naur old/community/system/rake/PKGBUILD new/community/system/rake/PKGBUILD --- old/community/system/rake/PKGBUILD 2007-04-27 15:51:41.000000000 +0100 +++ new/community/system/rake/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A simple ruby build program with capabilities similar to make" url="http://rake.rubyforge.org" -license="MIT" +license=('MIT') depends=('ruby') source=(http://rubyforge.org/frs/download.php/19879/$pkgname-$pkgver.tgz) md5sums=('21bc51fc66b345ad668afb14c36e9e79') diff -Naur old/community/system/rdiff-backup/PKGBUILD new/community/system/rdiff-backup/PKGBUILD --- old/community/system/rdiff-backup/PKGBUILD 2007-04-06 01:59:34.000000000 +0100 +++ new/community/system/rdiff-backup/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="rdiff-backup makes incremental backups to local or remote locations" arch=('i686') url="http://www.nongnu.org/rdiff-backup/" -license="GPL" +license=('GPL') depends=('python' 'librsync') options=('noemptydirs') source=(http://savannah.nongnu.org/download/rdiff-backup/rdiff-backup-$pkgver.tar.gz) diff -Naur old/community/system/recoll/PKGBUILD new/community/system/recoll/PKGBUILD --- old/community/system/recoll/PKGBUILD 2007-07-24 19:53:43.000000000 +0100 +++ new/community/system/recoll/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="Full text search tool based on Xapian backend" arch=('i686' 'x86_64') -license="GPL" +license=('GPL') url="http://www.lesbonscomptes.com/recoll/" depends=('xapian-core' 'qt') install='recoll.install' diff -Naur old/community/system/rfc/PKGBUILD new/community/system/rfc/PKGBUILD --- old/community/system/rfc/PKGBUILD 2006-08-31 17:34:01.000000000 +0100 +++ new/community/system/rfc/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="RFC's from rfc-editor.org" url="http://www.rfc-editor.org/" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/system/rkhunter/PKGBUILD new/community/system/rkhunter/PKGBUILD --- old/community/system/rkhunter/PKGBUILD 2007-01-04 12:33:32.000000000 +0000 +++ new/community/system/rkhunter/PKGBUILD 2007-08-03 13:32:31.000000000 +0100 @@ -4,7 +4,7 @@ pkgver=1.2.9 pkgrel=7 arch=(i686 x86_64) -license='GPL' +license=('GPL') install=rkhunter.install pkgdesc='an easy-to-use tool which checks machines running UNIX (clones) for the presence of rootkits and other unwanted tools.' url='http://rkhunter.sourceforge.net/' diff -Naur old/community/system/rsnapshot/PKGBUILD new/community/system/rsnapshot/PKGBUILD --- old/community/system/rsnapshot/PKGBUILD 2007-04-01 22:18:52.000000000 +0100 +++ new/community/system/rsnapshot/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A remote filesystem snapshot utility" url="http://www.rsnapshot.org" -license="GPL" +license=('GPL') arch=('i686') depends=('perl' 'rsync' 'openssh') backup=('etc/rsnapshot.conf') diff -Naur old/community/system/sdparm/PKGBUILD new/community/system/sdparm/PKGBUILD --- old/community/system/sdparm/PKGBUILD 2007-05-10 21:19:21.000000000 +0100 +++ new/community/system/sdparm/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An utility similar to hdparm but for SCSI devices" arch=('i686' 'x86_64') url="http://sg.torque.net/sg/sdparm.html" -license="BSD" +license=('BSD') depends=('glibc') source=("http://sg.torque.net/sg/p/$pkgname-$pkgver.tgz") md5sums=('7c87e5e1ebba54b7dae40e45fd356ab9') diff -Naur old/community/system/shuffle/PKGBUILD new/community/system/shuffle/PKGBUILD --- old/community/system/shuffle/PKGBUILD 2006-06-11 03:11:53.000000000 +0100 +++ new/community/system/shuffle/PKGBUILD 2007-08-03 13:40:39.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="Shuffles lines of input." url="http://www.w3.org/People/Bos/Shuffle/" -license="custom:public" +license=('custom:Public Domain') makedepends=('gcc') source=(http://www.w3.org/People/Bos/Shuffle/shuffle.c) md5sums=('d337c7e4db93489e3a30ffc8f89ec363') diff -Naur old/community/system/siefs/PKGBUILD new/community/system/siefs/PKGBUILD --- old/community/system/siefs/PKGBUILD 2007-04-04 14:43:03.000000000 +0100 +++ new/community/system/siefs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Mount FlexMEM on Siemens Mobile phones" url="http://chaos.allsiemens.com/siefs/" depends=('fuse') -license="GPL" +license=('GPL') source=(http://chaos.allsiemens.com/download/$pkgname-$pkgver.tar.gz siefs.patch) md5sums=('974328fc20b99e975d03a312a2814ed8' '5c1c7aa5e57f7524b4aeec4167ae90a4') diff -Naur old/community/system/sysinfo/PKGBUILD new/community/system/sysinfo/PKGBUILD --- old/community/system/sysinfo/PKGBUILD 2007-04-30 02:29:16.000000000 +0100 +++ new/community/system/sysinfo/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Display some useful computer and system information" arch=('i686') url="http://gsysinfo.sourceforge.net/project/" -license="GPL" +license=('GPL') depends=('gnome-sharp') makedepends=('pkgconfig') source=(http://downloads.sourceforge.net/sourceforge/gsysinfo/$pkgname-$pkgver.tar.g... \ diff -Naur old/community/system/tilda/PKGBUILD new/community/system/tilda/PKGBUILD --- old/community/system/tilda/PKGBUILD 2006-12-19 22:22:34.000000000 +0000 +++ new/community/system/tilda/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Linux terminal based on classic terminals from first person shooter games." url="http://tilda.sourceforge.net" -license="GPL" +license=('GPL') depends=('vte' 'confuse') makedepends=('gawk') source=(http://heanet.dl.sourceforge.net/sourceforge/tilda/tilda-$pkgver.tar.gz) diff -Naur old/community/system/tldp-howtos-html/PKGBUILD new/community/system/tldp-howtos-html/PKGBUILD --- old/community/system/tldp-howtos-html/PKGBUILD 2006-11-21 09:43:19.000000000 +0000 +++ new/community/system/tldp-howtos-html/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="HOWTO's from tldp.org" url="http://tldp.org/" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/system/tldp-howtos-html-ru/PKGBUILD new/community/system/tldp-howtos-html-ru/PKGBUILD --- old/community/system/tldp-howtos-html-ru/PKGBUILD 2006-08-31 17:34:01.000000000 +0100 +++ new/community/system/tldp-howtos-html-ru/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Russian HOWTO's from tldp.org" url="http://tldp.org/" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/system/tldp-howtos-html-single/PKGBUILD new/community/system/tldp-howtos-html-single/PKGBUILD --- old/community/system/tldp-howtos-html-single/PKGBUILD 2006-11-21 09:43:20.000000000 +0000 +++ new/community/system/tldp-howtos-html-single/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="HOWTO's from tldp.org" url="http://tldp.org/" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/system/tldp-howtos-txt/PKGBUILD new/community/system/tldp-howtos-txt/PKGBUILD --- old/community/system/tldp-howtos-txt/PKGBUILD 2006-11-21 09:43:20.000000000 +0000 +++ new/community/system/tldp-howtos-txt/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="HOWTO's from tldp.org" url="http://tldp.org/" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/system/tuxcmd/PKGBUILD new/community/system/tuxcmd/PKGBUILD --- old/community/system/tuxcmd/PKGBUILD 2006-08-28 22:28:40.000000000 +0100 +++ new/community/system/tuxcmd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A GTK2 file manager with two panels" url="http://tuxcmd.sourceforge.net/" -license="GPL" +license=('GPL') depends=(gtk2) install=$pkgname.install source=(http://tuxcmd.sourceforge.net/files/snapshots/tuxcmd-$pkgver-bin.tar.bz2 \ diff -Naur old/community/system/txt2man/PKGBUILD new/community/system/txt2man/PKGBUILD --- old/community/system/txt2man/PKGBUILD 2006-10-17 09:46:17.000000000 +0100 +++ new/community/system/txt2man/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Converts flat ASCII text to man page format" url="http://mvertes.free.fr/" -license="GPL" +license=('GPL') depends=( 'bash' 'gawk') source=(http://mvertes.free.fr/download/txt2man-$pkgver.tar.gz) md5sums=('1cc7920b720d74679ef79831135c303c') diff -Naur old/community/system/unace/PKGBUILD new/community/system/unace/PKGBUILD --- old/community/system/unace/PKGBUILD 2007-05-28 02:45:09.000000000 +0100 +++ new/community/system/unace/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An extraction tool for the proprietary ace archive format" arch=('i686') url="http://www.winace.com/" -license="custom" +license=('custom') install=unace.install depends=(ncurses) source=(http://ftp.debian.org/debian/pool/non-free/u/unace-nonfree/unace-nonfree_2.5... \ diff -Naur old/community/system/vlock/PKGBUILD new/community/system/vlock/PKGBUILD --- old/community/system/vlock/PKGBUILD 2007-05-23 23:44:37.000000000 +0100 +++ new/community/system/vlock/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A small console locking program" url="http://cthulhu.c3d2.de/~toidinamai/vlock/vlock.html" arch=(i686) -license="GPL" +license=('GPL') depends=('pam') source=(http://cthulhu.c3d2.de/~toidinamai/vlock/archive/${pkgname}-${pkgver}.tar.gz) md5sums=('e681cf1ae3ee0619b1183da401e3829b') diff -Naur old/community/system/xen/PKGBUILD new/community/system/xen/PKGBUILD --- old/community/system/xen/PKGBUILD 2007-05-25 10:03:51.000000000 +0100 +++ new/community/system/xen/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="a Virtual Machine Monitor (VMM)" arch=(i686) url="http://www.cl.cam.ac.uk/Research/SRG/netos/xen/" -license="GPL" +license=('GPL') depends=('iproute' 'bridge-utils' 'python' 'sdl' 'zlib' 'e2fsprogs') source=(http://bits.xensource.com/oss-xen/release/${pkgver}/src.tgz/xen-${pkgver}-src.tgz) md5sums=('b7ae1f652b071862ae4c90b72d549627') diff -Naur old/community/system/xfe/PKGBUILD new/community/system/xfe/PKGBUILD --- old/community/system/xfe/PKGBUILD 2007-07-22 09:59:16.000000000 +0100 +++ new/community/system/xfe/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="X File Explorer (Xfe) is an MS-Explorer like file manager for X." arch=('i686' 'x86_64') url="http://roland65.free.fr/xfe" -license="GPL" +license=('GPL') depends=('fox') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g...) md5sums=('e507e878855d424ed962f9885c2693c6') diff -Naur old/community/system/yacpi/PKGBUILD new/community/system/yacpi/PKGBUILD --- old/community/system/yacpi/PKGBUILD 2007-05-07 10:50:24.000000000 +0100 +++ new/community/system/yacpi/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="ncurses-based acpi monitor." arch=(i686) url="http://www.ngolde.de/yacpi.html" -license="GPL" +license=('GPL') depends=(ncurses) makedepends=() conflicts=() diff -Naur old/community/system/zsh-lovers/PKGBUILD new/community/system/zsh-lovers/PKGBUILD --- old/community/system/zsh-lovers/PKGBUILD 2005-09-24 12:04:51.000000000 +0100 +++ new/community/system/zsh-lovers/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Collection of every-day ZSH tips in a man page" url="http://grml.org/zsh/#zshlovers" -license="" +license=() depends=() makedepends=() conflicts=() diff -Naur old/community/x11/adesklet-asimpleclock/PKGBUILD new/community/x11/adesklet-asimpleclock/PKGBUILD --- old/community/x11/adesklet-asimpleclock/PKGBUILD 2007-04-06 03:52:47.000000000 +0100 +++ new/community/x11/adesklet-asimpleclock/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A simple little desklet that displays a text-based digital clock." arch=('i686' 'x86_64') url="http://www.pirnat.com/geek/adesklets.shtml" -license="GPL" +license=('GPL') depends=('adesklets') groups=('adesklet-desklets') source=(http://www.pirnat.com/geek/asimpleclock-$pkgver.tar.bz2) diff -Naur old/community/x11/adesklet-calendar/PKGBUILD new/community/x11/adesklet-calendar/PKGBUILD --- old/community/x11/adesklet-calendar/PKGBUILD 2007-04-06 03:53:47.000000000 +0100 +++ new/community/x11/adesklet-calendar/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A simple desklet that displays a calendar." arch=('i686' 'x86_64') url="http://adesklets.sourceforge.net/desklets.html" -license="GPL" +license=('GPL') depends=('adesklets') groups=('adesklet-desklets') source=(http://downloads.sourceforge.net/sourceforge/adesklets/Calendar-$pkgver.tar....) diff -Naur old/community/x11/adesklet-systemmonitor/PKGBUILD new/community/x11/adesklet-systemmonitor/PKGBUILD --- old/community/x11/adesklet-systemmonitor/PKGBUILD 2007-03-09 05:11:24.000000000 +0000 +++ new/community/x11/adesklet-systemmonitor/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Modular stackable system monitors for adesklets" arch=('i686' 'x86_64') url="http://adesklets.sourceforge.net/desklets.html" -license="GPL" +license=('GPL') depends=('adesklets' 'libstatgrab' 'pystatgrab') groups=('adesklet-desklets') backup=('usr/share/adesklets/SystemMonitor/config.txt') diff -Naur old/community/x11/adesklet-weatherforecast/PKGBUILD new/community/x11/adesklet-weatherforecast/PKGBUILD --- old/community/x11/adesklet-weatherforecast/PKGBUILD 2007-04-06 03:55:47.000000000 +0100 +++ new/community/x11/adesklet-weatherforecast/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Extended weather desklet that shows three day forecast" arch=('i686' 'x86_64') url="http://adesklets.sourceforge.net/desklets.html" -license="GPL" +license=('GPL') depends=('adesklets') groups=('adesklet-desklets') source=(http://downloads.sourceforge.net/sourceforge/adesklets/weatherforecast-$pkgv...) diff -Naur old/community/x11/adesklet-yab/PKGBUILD new/community/x11/adesklet-yab/PKGBUILD --- old/community/x11/adesklet-yab/PKGBUILD 2007-04-06 03:57:33.000000000 +0100 +++ new/community/x11/adesklet-yab/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="yab (Yet Another Bar) is a very plain launch bar, yet reasonably polished, highly configurable and resources limit aware" arch=('i686' 'x86_64') url="http://adesklets.sourceforge.net/desklets.html" -license="GPL" +license=('GPL') depends=('adesklets') groups=('adesklet-desklets') source=(http://downloads.sourceforge.net/sourceforge/adesklets/yab-$pkgver.tar.bz2) diff -Naur old/community/x11/adesklets/PKGBUILD new/community/x11/adesklets/PKGBUILD --- old/community/x11/adesklets/PKGBUILD 2007-03-19 05:06:53.000000000 +0000 +++ new/community/x11/adesklets/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An imlib2-based system to have interactive 'desklets'" arch=('i686' 'x86_64') url="http://adesklets.sourceforge.net" -license="GPL" +license=('GPL') depends=('imlib2' 'fontconfig' 'python' 'perl' 'ttf-bitstream-vera' 'libx11') install=adesklets.install options=('noemptydirs') diff -Naur old/community/x11/archlinux-xdg-menu/PKGBUILD new/community/x11/archlinux-xdg-menu/PKGBUILD --- old/community/x11/archlinux-xdg-menu/PKGBUILD 2007-04-28 14:28:17.000000000 +0100 +++ new/community/x11/archlinux-xdg-menu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="automatic generate WM menu from xdg files" arch=('i686' 'x86_64') url="http://wiki.archlinux.org/index.php/XdgMenu" -license="GPL" +license=('GPL') depends=(perlxml) backup=(etc/update-menus.conf) source=(http://archlinux-stuff.googlecode.com/files/arch-xdg-menu-$pkgver.tar.gz) diff -Naur old/community/x11/autocutsel/PKGBUILD new/community/x11/autocutsel/PKGBUILD --- old/community/x11/autocutsel/PKGBUILD 2007-01-18 23:11:47.000000000 +0000 +++ new/community/x11/autocutsel/PKGBUILD 2007-08-03 13:32:31.000000000 +0100 @@ -9,7 +9,7 @@ source=(http://lepton.fr/tools/autocutsel/autocutsel-$pkgver.tar.gz) md5sums=('ba4a6f632cb4815ae4e5c3027c24cfc5') url="http://lepton.fr/tools/autocutsel/" -license='GPL' +license=('GPL') build() { cd $startdir/src/$pkgname-$pkgver diff -Naur old/community/x11/bbrun/PKGBUILD new/community/x11/bbrun/PKGBUILD --- old/community/x11/bbrun/PKGBUILD 2007-07-18 17:08:53.000000000 +0100 +++ new/community/x11/bbrun/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A run - component for blackbox window manager" arch=(i686 x86_64) url="http://www.darkops.net/bbrun/" -license="GPL" +license=('GPL') depends=('gtk2') source=(http://www.darkops.net/bbrun/$pkgname-$pkgver.tar.gz) md5sums=('820960e3d52ddf2d5cf7e4ba51821bfd') diff -Naur old/community/x11/compiz-core/PKGBUILD new/community/x11/compiz-core/PKGBUILD --- old/community/x11/compiz-core/PKGBUILD 2007-06-30 14:08:44.000000000 +0100 +++ new/community/x11/compiz-core/PKGBUILD 2007-08-03 13:36:10.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=4 pkgdesc="Composite manager for Aiglx and Xgl" url="http://www.go-compiz.org/" -license="GPL MIT" +license=('GPL' 'MIT') arch=('i686' 'x86_64') groups=('compiz' 'compiz-kde' 'compiz-gnome') depends=('startup-notification' 'librsvg' 'libxdamage' \ diff -Naur old/community/x11/compiz-decorator-gtk/PKGBUILD new/community/x11/compiz-decorator-gtk/PKGBUILD --- old/community/x11/compiz-decorator-gtk/PKGBUILD 2007-04-26 15:25:14.000000000 +0100 +++ new/community/x11/compiz-decorator-gtk/PKGBUILD 2007-08-03 13:36:10.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="Decorator of Compiz for GNOME" url="http://www.go-compiz.org/" -license="GPL MIT" +license=('GPL' 'MIT') arch=('i686' 'x86_64') depends=('control-center' 'gconf') makedepends=('metacity') diff -Naur old/community/x11/compiz-decorator-kde/PKGBUILD new/community/x11/compiz-decorator-kde/PKGBUILD --- old/community/x11/compiz-decorator-kde/PKGBUILD 2007-04-18 21:08:40.000000000 +0100 +++ new/community/x11/compiz-decorator-kde/PKGBUILD 2007-08-03 13:36:10.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Decorator of Compiz for KDE" url="http://www.go-compiz.org/" -license="GPL MIT" +license=('GPL' 'MIT') arch=('i686' 'x86_64') groups=('compiz' 'compiz-kde') depends=('kdebase') diff -Naur old/community/x11/electricsheep/PKGBUILD new/community/x11/electricsheep/PKGBUILD --- old/community/x11/electricsheep/PKGBUILD 2006-09-11 03:25:24.000000000 +0100 +++ new/community/x11/electricsheep/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A screensaver that realize the collective dream of sleeping computers from all over the internet" url="http://www.electricsheep.org/" -license="GPL" +license=('GPL') depends=('curl' 'expat' 'libpng' 'libxv' 'libsm' 'libjpeg' 'sdl') install=electricsheep.install source=(http://www.electricsheep.org/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/x11/fbpager/PKGBUILD new/community/x11/fbpager/PKGBUILD --- old/community/x11/fbpager/PKGBUILD 2006-08-28 17:06:37.000000000 +0100 +++ new/community/x11/fbpager/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="a virtual desktop pager for fluxbox" url="http://fluxbox.org/fbpager" depends=('x-server') -license="MIT" +license=('MIT') source=(http://fluxbox.org/download/$pkgname-$pkgver.tar.gz \ g++-4.1_namespace.patch ) md5sums=('89aac82e217ef366634dfd768b1b5dff' '9aaf3de7d78eb5b94293a1ff7425b90a') diff -Naur old/community/x11/fbpanel/PKGBUILD new/community/x11/fbpanel/PKGBUILD --- old/community/x11/fbpanel/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/x11/fbpanel/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ arch=('i686' 'x86_64') url="http://fbpanel.sourceforge.net/" depends=('gtk2' 'libxmu') -license="GPL" +license=('GPL') source=( http://downloads.sourceforge.net/fbpanel/${pkgname}-${pkgver}.tgz ) build() { diff -Naur old/community/x11/font-mathematica/PKGBUILD new/community/x11/font-mathematica/PKGBUILD --- old/community/x11/font-mathematica/PKGBUILD 2007-01-02 00:47:52.000000000 +0000 +++ new/community/x11/font-mathematica/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -11,7 +11,7 @@ conflicts=('ttf-mathematica') replaces=('ttf-mathematica') install=font.install -license="custom" +license=('custom') source=(http://support.wolfram.com/mathematica/systems/windows/general/files/MathFonts_${pkgver}.zip license.txt) md5sums=('2f6898c0b0848b3faad21873d8fd1f9f' '4d95629d78541826cb543764c8025c0b') diff -Naur old/community/x11/fvwm-themes-devel/PKGBUILD new/community/x11/fvwm-themes-devel/PKGBUILD --- old/community/x11/fvwm-themes-devel/PKGBUILD 2007-04-11 01:42:53.000000000 +0100 +++ new/community/x11/fvwm-themes-devel/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Development themes for fvwm" arch=('i686' 'x86_64') url="http://fvwm-themes.sourceforge.net" -license="GPL" +license=('GPL') depends=('fvwm-devel' 'perl') source=(http://downloads.sourceforge.net/sourceforge/fvwm-themes/fvwm-themes-$pkgver...) md5sums=('fca651b3f912873cc8cedf20ace1095e') diff -Naur old/community/x11/fxdesktop/PKGBUILD new/community/x11/fxdesktop/PKGBUILD --- old/community/x11/fxdesktop/PKGBUILD 2007-03-07 16:01:03.000000000 +0000 +++ new/community/x11/fxdesktop/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgver=0.1.12 pkgrel=1 pkgdesc="Lightweight Desktop Environment" -license="GPL" +license=('GPL') depends=('fox>=1.6.0' ) url="http://fifthplanet.net" source=(http://fifthplanet.net/files/$pkgname-$pkgver.tar.bz2) diff -Naur old/community/x11/fxprocessview/PKGBUILD new/community/x11/fxprocessview/PKGBUILD --- old/community/x11/fxprocessview/PKGBUILD 2007-03-07 16:27:55.000000000 +0000 +++ new/community/x11/fxprocessview/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgver=0.5.0 pkgrel=1 pkgdesc="Process Viewer" -license="GPL" +license=('GPL') depends=('fox>=1.4.0') url="http://fifthplanet.net/index.html" source=(http://fifthplanet.net/files/$pkgname-$pkgver.tar.gz \ diff -Naur old/community/x11/glipper/PKGBUILD new/community/x11/glipper/PKGBUILD --- old/community/x11/glipper/PKGBUILD 2007-03-07 13:01:16.000000000 +0000 +++ new/community/x11/glipper/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="Clipboard for gnome desktop" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/glipper/" -license="GPL" +license=('GPL') depends=(libgnome libglade) makedepends=(pkgconfig perlxml gnome-doc-utils) source=(http://dl.sourceforge.net/sourceforge/glipper/$pkgname-$pkgver.tar.gz) diff -Naur old/community/x11/gnubiff/PKGBUILD new/community/x11/gnubiff/PKGBUILD --- old/community/x11/gnubiff/PKGBUILD 2007-04-10 09:34:33.000000000 +0100 +++ new/community/x11/gnubiff/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived" url="http://gnubiff.sourceforge.net/" -license="GPL" +license=('GPL') depends=('gnome-panel') conflicts=(gnubiff-gtk) source=(http://dl.sourceforge.net/sourceforge/gnubiff/gnubiff-$pkgver.tar.gz \ diff -Naur old/community/x11/gnubiff-gtk/PKGBUILD new/community/x11/gnubiff-gtk/PKGBUILD --- old/community/x11/gnubiff-gtk/PKGBUILD 2007-04-10 09:35:37.000000000 +0100 +++ new/community/x11/gnubiff-gtk/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived. GTK version." url="http://gnubiff.sourceforge.net/" -license="GPL" +license=('GPL') depends=('libglade' 'openssl' 'popt') conflicts=(gnubiff) source=(http://dl.sourceforge.net/sourceforge/gnubiff/gnubiff-$pkgver.tar.gz \ diff -Naur old/community/x11/gpg-crypter/PKGBUILD new/community/x11/gpg-crypter/PKGBUILD --- old/community/x11/gpg-crypter/PKGBUILD 2007-06-24 18:31:25.000000000 +0100 +++ new/community/x11/gpg-crypter/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A graphical front-end to GnuPG(GPG) using the GTK2 toolkit and libgpgme" arch=('i686' 'x86_64') url="http://gpg-crypter.dopehouse.dyndns.org/Main/HomePage" -license="GPL" +license=('GPL') depends=('gtk2' 'gpgme') install= source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g... diff -Naur old/community/x11/gshutdown/PKGBUILD new/community/x11/gshutdown/PKGBUILD --- old/community/x11/gshutdown/PKGBUILD 2007-01-31 19:58:32.000000000 +0000 +++ new/community/x11/gshutdown/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="An advanced shutdown utility" url="http://gshutdown.tuxfamily.org" -license="GPL" +license=('GPL') depends=('libglade' 'libnotify') makedepends=('pkgconfig') source=(http://gshutdown.tuxfamily.org/release/$pkgname-$pkgver.tar.gz) diff -Naur old/community/x11/gsopcast/PKGBUILD new/community/x11/gsopcast/PKGBUILD --- old/community/x11/gsopcast/PKGBUILD 2007-02-25 02:24:51.000000000 +0000 +++ new/community/x11/gsopcast/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A GTK front-end of p2p TV sopcast" url="http://lianwei3.googlepages.com/home2" -license="GPL" +license=('GPL') arch=('i686') makedepends=('pkgconfig') depends=('sopcast' 'gtk2' 'cairo' 'alsa-lib') diff -Naur old/community/x11/gtk-engine-murrine/PKGBUILD new/community/x11/gtk-engine-murrine/PKGBUILD --- old/community/x11/gtk-engine-murrine/PKGBUILD 2007-05-21 21:05:55.000000000 +0100 +++ new/community/x11/gtk-engine-murrine/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="GTK2 engine to make your desktop look like a 'murrina', an italian word meaning the art glass works done by Venicians glass blowers." arch=('i686' 'x86_64') url="http://murrine.netsons.org/" -license="GPL" +license=('GPL') depends=('gtk2') makedepends=('pkgconfig') source=(http://cimi.netsons.org/media/download_gallery/murrine/murrine-$pkgver.tar.b... \ diff -Naur old/community/x11/gtk2_prefs/PKGBUILD new/community/x11/gtk2_prefs/PKGBUILD --- old/community/x11/gtk2_prefs/PKGBUILD 2006-05-24 04:48:12.000000000 +0100 +++ new/community/x11/gtk2_prefs/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A GTK2 theme selector and font switcher" url="http://members.lycos.co.uk/alexv6" -license="GPL" +license=('GPL') depends=('gtk2') source=(http://members.lycos.co.uk/alexv6/pub/gtk/$pkgname-$pkgver.tar.bz2) md5sums=('873d2a7707e1dcadc861399434d98d86') diff -Naur old/community/x11/gtkdialog/PKGBUILD new/community/x11/gtkdialog/PKGBUILD --- old/community/x11/gtkdialog/PKGBUILD 2007-01-19 13:32:58.000000000 +0000 +++ new/community/x11/gtkdialog/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="Gtkdialog is a small utility for fast and easy GUI building." url="http://linux.pte.hu/~pipas/gtkdialog/" -license="GPL" +license=('GPL') makedepends=('pkgconfig') depends=('gtk2' 'libglade') provides= diff -Naur old/community/x11/gtkperf/PKGBUILD new/community/x11/gtkperf/PKGBUILD --- old/community/x11/gtkperf/PKGBUILD 2006-04-23 10:24:44.000000000 +0100 +++ new/community/x11/gtkperf/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="An application designed to test GTK+ performance" url="http://gtkperf.sourceforge.net" -license="GPL" +license=('GPL') depends=('gtk2') source=(http://dl.sourceforge.net/sourceforge/gtkperf/gtkperf_$pkgver.tar.gz) md5sums=('4331dde4bb83865e15482885fcb0cc53') diff -Naur old/community/x11/gtubeclock/PKGBUILD new/community/x11/gtubeclock/PKGBUILD --- old/community/x11/gtubeclock/PKGBUILD 2007-04-28 07:52:29.000000000 +0100 +++ new/community/x11/gtubeclock/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A nixie tube style clock for X." arch=('i686' 'x86_64') url="http://www.bonnyswan.com/gtubeclock/" -license="GPL" +license=('GPL') depends=('libgnomeui') makedepends=('pkgconfig') source=(http://www.bonnyswan.com/$pkgname/downloads/$pkgname-$pkgver.tar.gz) diff -Naur old/community/x11/guifications/PKGBUILD new/community/x11/guifications/PKGBUILD --- old/community/x11/guifications/PKGBUILD 2007-05-13 10:03:32.000000000 +0100 +++ new/community/x11/guifications/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A set of GUI popup notifications for pidgin" arch=(i686 x86_64) url="http://plugins.guifications.org/trac/wiki/Guifications" -license="GPL" +license=('GPL') depends=('pidgin' 'pango') makedepends=('perlxml') options=('NOLIBTOOL') diff -Naur old/community/x11/icewm-utils/PKGBUILD new/community/x11/icewm-utils/PKGBUILD --- old/community/x11/icewm-utils/PKGBUILD 2007-02-14 11:06:53.000000000 +0000 +++ new/community/x11/icewm-utils/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -17,7 +17,7 @@ pkgrel=1 pkgdesc="Suite of tools for IceWM" -license="GPL" +license=('GPL') url="http://icecc.sourceforge.net/" depends=('qt' 'python') source=("http://dl.sourceforge.net/icecc/icemc-$_mcver.tar.bz2" diff -Naur old/community/x11/icon-slicer/PKGBUILD new/community/x11/icon-slicer/PKGBUILD --- old/community/x11/icon-slicer/PKGBUILD 2006-05-30 03:04:40.000000000 +0100 +++ new/community/x11/icon-slicer/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="A utility for generating icon themes and libXcursor cursor themes" url="http://freedesktop.org/wiki/Software_2ficon_2dslicer" -license="GPL" +license=('GPL') depends=('gtk2' 'popt') source=(http://freedesktop.org/software/$pkgname/releases/icon-slicer-$pkgver.tar.gz) md5sums=('5c5374d4f265b0abe4daef1d03f87104') diff -Naur old/community/x11/jwm/PKGBUILD new/community/x11/jwm/PKGBUILD --- old/community/x11/jwm/PKGBUILD 2007-07-18 16:53:00.000000000 +0100 +++ new/community/x11/jwm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgdesc="A lightweight window manager for the X11 Window System" arch=(i686 x86_64) url="http://joewing.net/programs/jwm/" -license="GPL" +license=('GPL') depends=('libx11') backup=('etc/system.jwmrc') source=(http://joewing.net/programs/jwm/releases/jwm-$pkgver.tar.bz2) diff -Naur old/community/x11/lxpanel/PKGBUILD new/community/x11/lxpanel/PKGBUILD --- old/community/x11/lxpanel/PKGBUILD 2006-12-10 16:10:00.000000000 +0000 +++ new/community/x11/lxpanel/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Lightweight X11 desktop panel (part of LXDE)" url="http://lxde.sourceforge.net/" -license="GPL" +license=('GPL') groups=('lxde') depends=('gtk2' 'libxmu' 'libxpm') makedepends=('pkgconfig') diff -Naur old/community/x11/lxsession/PKGBUILD new/community/x11/lxsession/PKGBUILD --- old/community/x11/lxsession/PKGBUILD 2006-12-10 16:10:32.000000000 +0000 +++ new/community/x11/lxsession/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Lightweight X11 session manager (part of LXDE)" url="http://sourceforge.net/projects/lxde/" -license="GPL" +license=('GPL') groups=('lxde') depends=('gtk2' 'libsm') makedepends=('pkgconfig' 'netkit-rsh' ) diff -Naur old/community/x11/magickthumbnail/PKGBUILD new/community/x11/magickthumbnail/PKGBUILD --- old/community/x11/magickthumbnail/PKGBUILD 2006-10-19 22:57:06.000000000 +0100 +++ new/community/x11/magickthumbnail/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Helper program for ROX-Filer that provides thumbnails for image and font files" url="" -license="" +license=() depends=('rox' 'rox-lib') makedepends=() conflicts=() diff -Naur old/community/x11/mime-editor/PKGBUILD new/community/x11/mime-editor/PKGBUILD --- old/community/x11/mime-editor/PKGBUILD 2006-10-19 23:01:59.000000000 +0100 +++ new/community/x11/mime-editor/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Shared-mime info database editor, useful for changing MIME-type info in rox applications" url="http://rox.sourceforge.net/mime_editor.html" -license="" +license=() depends=('python>=2.2' 'pygtk>=2.0' 'rox-lib' 'shared-mime-info') groups=('rox-desktop') source=(http://dl.sourceforge.net/sourceforge/rox/$pkgname-$pkgver.tgz mime-editor) diff -Naur old/community/x11/murrine-configurator/PKGBUILD new/community/x11/murrine-configurator/PKGBUILD --- old/community/x11/murrine-configurator/PKGBUILD 2007-01-13 22:51:11.000000000 +0000 +++ new/community/x11/murrine-configurator/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Configurator for Murrine GTK Engine" url="http://cimi.netsons.org/pages/murrine/configurator.php" -license="GPL" +license=('GPL') depends=('gtk-engine-murrine' 'zenity') source=(http://cimi.netsons.org/media/download_gallery/murrine/$pkgname-$pkgver.tar....) md5sums=('dba9230c3a0a89b3ec2377011af514f9') diff -Naur old/community/x11/netwmpager/PKGBUILD new/community/x11/netwmpager/PKGBUILD --- old/community/x11/netwmpager/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/x11/netwmpager/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A NetWM/EWMH compatible pager" arch=('i686') url="http://onion.dynserv.net/~timo/?page=Projects/netwmpager" -license="GPL" +license=('GPL') depends=('libxft') source=(http://onion.dynserv.net/~timo/files/$pkgname-$pkgver.tar.bz2) md5sums=('60e96e91d67ad59db21b2f093a996bdb') diff -Naur old/community/x11/obmenu/PKGBUILD new/community/x11/obmenu/PKGBUILD --- old/community/x11/obmenu/PKGBUILD 2006-12-27 15:09:46.000000000 +0000 +++ new/community/x11/obmenu/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Openbox menu editor" url="http://obmenu.sourceforge.net/" depends=('python' 'pygtk') -license="GPL" +license=('GPL') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('710036a5edc9886d6d563ce46c747432') build() { diff -Naur old/community/x11/openbox-themes/PKGBUILD new/community/x11/openbox-themes/PKGBUILD --- old/community/x11/openbox-themes/PKGBUILD 2006-11-29 23:34:15.000000000 +0000 +++ new/community/x11/openbox-themes/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Various themes for the Openbox window manager" url=http://www.debian.org -license="GPL" +license=('GPL') depends=(openbox) source=(http://ftp.debian.org/debian/pool/main/o/openbox-themes/openbox-themes_$pkgv...) md5sums=(e545f4448e7787a2dc26b81c667a2307) diff -Naur old/community/x11/osdbattery/PKGBUILD new/community/x11/osdbattery/PKGBUILD --- old/community/x11/osdbattery/PKGBUILD 2007-02-06 18:13:51.000000000 +0000 +++ new/community/x11/osdbattery/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="Displays battery information in the OSD style" url="http://osdbattery.sourceforge.net" -license="" +license=() depends=('xosd') install=osdbattery.install source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname\_$pkgver.tar.gz showbatt) diff -Naur old/community/x11/pawm/PKGBUILD new/community/x11/pawm/PKGBUILD --- old/community/x11/pawm/PKGBUILD 2007-04-02 14:49:22.000000000 +0100 +++ new/community/x11/pawm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Puto Amo Window Manager is a full featured window manager, but without useless bells and whistles" url="http://www.pleyades.net/pawm/" -license="GPL" +license=('GPL') depends=(libxft libxpm libxrandr) source=(http://www.pleyades.net/pawm/files/pawm-$pkgver.tar.gz) md5sums=('4a80377890edb319bff9338a7fd861f3') diff -Naur old/community/x11/pcmanfm/PKGBUILD new/community/x11/pcmanfm/PKGBUILD --- old/community/x11/pcmanfm/PKGBUILD 2006-12-10 16:12:58.000000000 +0000 +++ new/community/x11/pcmanfm/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="An extremely fast and lightweight file manager which features tabbed browsing and user-friendly interface" url="http://pcmanfm.sourceforge.net/" -license="GPL" +license=('GPL') groups=('lxde') depends=('gtk2' 'hal' 'fam' 'startup-notification' 'shared-mime-info') makedepends=('pkgconfig') diff -Naur old/community/x11/qtcurve-gtk1/PKGBUILD new/community/x11/qtcurve-gtk1/PKGBUILD --- old/community/x11/qtcurve-gtk1/PKGBUILD 2006-11-01 14:56:21.000000000 +0000 +++ new/community/x11/qtcurve-gtk1/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 arch=(i686 x86_64) groups=('qtcurve') -license="GPL" +license=('GPL') options=(NOLIBTOOL) pkgdesc="A configurable set of widget styles for KDE and Gtk" source=(http://home.freeuk.com/cpdrummond/QtCurve-Gtk1-$pkgver.tar.gz) diff -Naur old/community/x11/qtcurve-gtk2/PKGBUILD new/community/x11/qtcurve-gtk2/PKGBUILD --- old/community/x11/qtcurve-gtk2/PKGBUILD 2007-07-12 10:47:21.000000000 +0100 +++ new/community/x11/qtcurve-gtk2/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 arch=(i686 x86_64) groups=('qtcurve') -license="GPL" +license=('GPL') options=(!libtool) pkgdesc="A configurable set of widget styles for KDE and Gtk" source=(http://home.freeuk.com/cpdrummond/QtCurve-Gtk2-$pkgver.tar.gz) diff -Naur old/community/x11/qtcurve-kde3/PKGBUILD new/community/x11/qtcurve-kde3/PKGBUILD --- old/community/x11/qtcurve-kde3/PKGBUILD 2007-07-04 23:50:19.000000000 +0100 +++ new/community/x11/qtcurve-kde3/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 arch=(i686 x86_64) groups=('qtcurve') -license="GPL" +license=('GPL') pkgdesc="A configurable set of widget styles for KDE and Gtk" source=(http://home.freeuk.com/cpdrummond/QtCurve-KDE3-$pkgver.tar.gz) url='http://www.kde-look.org/content/show.php?content=40492' diff -Naur old/community/x11/qtcurve-kde4/PKGBUILD new/community/x11/qtcurve-kde4/PKGBUILD --- old/community/x11/qtcurve-kde4/PKGBUILD 2007-07-04 23:50:19.000000000 +0100 +++ new/community/x11/qtcurve-kde4/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 arch=(i686 x86_64) groups=('qtcurve') -license="GPL" +license=('GPL') pkgdesc="A configurable set of widget styles for KDE and Gtk" source=(http://home.freeuk.com/cpdrummond/QtCurve-KDE4-$pkgver.tar.gz) url='http://www.kde-look.org/content/show.php?content=40492' diff -Naur old/community/x11/rox-lib/PKGBUILD new/community/x11/rox-lib/PKGBUILD --- old/community/x11/rox-lib/PKGBUILD 2006-11-03 20:43:13.000000000 +0000 +++ new/community/x11/rox-lib/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Shared code which can be used by other ROX applications. This is rox-lib2" url="http://rox.sourceforge.net/desktop/ROX-Lib" -license="" +license=() depends=('python>=2.2' 'pygtk>=2.0') groups=('rox-desktop') source=(http://dl.sourceforge.net/sourceforge/rox/$pkgname\2-$pkgver.tar.bz2) diff -Naur old/community/x11/rss-glx/PKGBUILD new/community/x11/rss-glx/PKGBUILD --- old/community/x11/rss-glx/PKGBUILD 2007-06-12 19:13:05.000000000 +0100 +++ new/community/x11/rss-glx/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="The Really Slick Screensavers port to GLX" arch=('i686') url="http://rss-glx.sourceforge.net/" -license="GPL" +license=('GPL') depends=('glew' 'openal' 'imagemagick') install="rss-glx.install" options=('!libtool') diff -Naur old/community/x11/sancho-gtk/PKGBUILD new/community/x11/sancho-gtk/PKGBUILD --- old/community/x11/sancho-gtk/PKGBUILD 2006-12-01 19:28:50.000000000 +0000 +++ new/community/x11/sancho-gtk/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=3 pkgdesc="Sancho is a GUI that connects to a p2p core application." url="http://sancho-gui.sf.net" -license="GPL" +license=('GPL') makedepends=('links' 'sed') depends=('libgnomeui' 'nspr' 'libstdc++5' 'mesa') source=(sancho.desktop sancho-gtk.patch) diff -Naur old/community/x11/stalonetray/PKGBUILD new/community/x11/stalonetray/PKGBUILD --- old/community/x11/stalonetray/PKGBUILD 2007-06-15 13:24:53.000000000 +0100 +++ new/community/x11/stalonetray/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="STAnd-aLONE sysTRAY. It has minimal build and run-time dependencies: the Xlib only." arch=(i686 x86_64) url="http://sourceforge.net/projects/stalonetray" -license="GPL" +license=('GPL') depends=(libx11) conflicts=() replaces=() diff -Naur old/community/x11/sux/PKGBUILD new/community/x11/sux/PKGBUILD --- old/community/x11/sux/PKGBUILD 2006-12-11 02:35:54.000000000 +0000 +++ new/community/x11/sux/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A wrapper around su which will transfer your X credentials" url="http://sourceforge.net/projects/sux/" -license="custom" +license=('custom') depends=('coreutils' 'xorg-clients') options=('FORCE') source=(http://dl.sourceforge.net/sourceforge/sux/sux-$pkgver.tar.gz) diff -Naur old/community/x11/transset-df/PKGBUILD new/community/x11/transset-df/PKGBUILD --- old/community/x11/transset-df/PKGBUILD 2007-05-16 22:47:31.000000000 +0100 +++ new/community/x11/transset-df/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A patched version of X.Org's transset with added functionality" arch=(i686) url="http://forchheimer.se/transset-df/" -license="GPL" +license=('GPL') depends=('libxcomposite' 'libxdamage' 'libxrender') source=(http://forchheimer.se/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('c4d5a7e6768bda16c0da86ccfed7a6fb') diff -Naur old/community/x11/ttf-freefont/PKGBUILD new/community/x11/ttf-freefont/PKGBUILD --- old/community/x11/ttf-freefont/PKGBUILD 2006-11-24 22:30:05.000000000 +0000 +++ new/community/x11/ttf-freefont/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A set of free high-quality TrueType fonts covering the UCS character set" url="http://www.nongnu.org/freefont/" -license="GPL" +license=('GPL') depends=('fontconfig' 'xorg-font-utils') install=ttf.install source=(http://download.savannah.gnu.org/releases/freefont/freefont-ttf-$pkgver.tar....) diff -Naur old/community/x11/unclutter/PKGBUILD new/community/x11/unclutter/PKGBUILD --- old/community/x11/unclutter/PKGBUILD 2007-03-16 13:19:57.000000000 +0000 +++ new/community/x11/unclutter/PKGBUILD 2007-08-03 13:20:21.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A small program for hiding the mouse cursor" url="http://ftp.x.org/contrib/utilities/unclutter-8.README" arch=i686 -license="Public Domain" +license=('custom:Public Domain') depends=('libxext') makedepends=('imake') source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z) diff -Naur old/community/x11/videothumbnail/PKGBUILD new/community/x11/videothumbnail/PKGBUILD --- old/community/x11/videothumbnail/PKGBUILD 2006-10-19 22:59:03.000000000 +0100 +++ new/community/x11/videothumbnail/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Helper program for ROX-Filer that provides images for video files" url="http://www.kerofin.demon.co.uk/rox/VideoThumbnail.html" -license="" +license=() depends=('rox' 'rox-lib' 'mplayer') makedepends=() conflicts=() diff -Naur old/community/x11/winetools/PKGBUILD new/community/x11/winetools/PKGBUILD --- old/community/x11/winetools/PKGBUILD 2007-01-01 21:07:30.000000000 +0000 +++ new/community/x11/winetools/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=5 pkgdesc="A menu driven installer for installing about 90 Windows programs with the Linux operating system using Wine." url="http://www.von-thadden.de/Joachim/WineTools" -license="GPL" +license=('GPL') depends=('wine' 'xdialog') source=(http://ds80-237-203-29.dedicated.hosteurope.de/wt/$pkgname-$pkgver.tar.gz findwine.patch) diff -Naur old/community/x11/xarchive/PKGBUILD new/community/x11/xarchive/PKGBUILD --- old/community/x11/xarchive/PKGBUILD 2006-07-06 04:48:14.000000000 +0100 +++ new/community/x11/xarchive/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="XArchive is a generic front-end that uses external wrappers around command line archiving tools." url="http://xarchive.sourceforge.net/" -license="GPL" +license=('GPL') options=('KEEPDOCS') depends=('gtk2') install=xarchive.install diff -Naur old/community/x11/xcursor-bluecurve/PKGBUILD new/community/x11/xcursor-bluecurve/PKGBUILD --- old/community/x11/xcursor-bluecurve/PKGBUILD 2007-02-16 20:08:43.000000000 +0000 +++ new/community/x11/xcursor-bluecurve/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="Redhat's Bluecurve X mouse cursor theme" url="http://gnome-look.org/content/show.php?content=39229" -license="GPL" +license=('GPL') source=(http://gnome-look.org/CONTENT/content-files/39229-bluecurve-kde-$pkgver.tar....) md5sums=('fad29eb74124d5a1706117d50261da12') diff -Naur old/community/x11/xcursor-chameleon-anthracite/PKGBUILD new/community/x11/xcursor-chameleon-anthracite/PKGBUILD --- old/community/x11/xcursor-chameleon-anthracite/PKGBUILD 2007-02-16 20:49:15.000000000 +0000 +++ new/community/x11/xcursor-chameleon-anthracite/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Chameleon X Cursor Theme (anthracite flavour)" url="http://www.kde-look.org/content/show.php?content=38459" -license="GPL" +license=('GPL') source=(http://www.egregorion.net/works/Chameleon-Anthracite-0.5.tar.bz2) md5sums=('f8cc2fe5174e706c64bf05a8425d2991') diff -Naur old/community/x11/xcursor-flatbed/PKGBUILD new/community/x11/xcursor-flatbed/PKGBUILD --- old/community/x11/xcursor-flatbed/PKGBUILD 2007-02-16 21:17:28.000000000 +0000 +++ new/community/x11/xcursor-flatbed/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Flatbed XCursor Theme" url="http://www.gnome-look.org/content/show.php?content=52027" -license="GPL" +license=('GPL') source=('http://www.limitland.de/flatbedcursors-0.1.tar.bz2') md5sums=('390fe8547b812f975704166f87a5ce3c') diff -Naur old/community/x11/xcursor-grounation/PKGBUILD new/community/x11/xcursor-grounation/PKGBUILD --- old/community/x11/xcursor-grounation/PKGBUILD 2007-02-02 21:10:11.000000000 +0000 +++ new/community/x11/xcursor-grounation/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=5 pkgdesc="Grounation XCursor Theme" url="http://www.kde-look.org/content/show.php?content=14484" -license="GPL" +license=('GPL') source=(http://www.kde-look.org/content/files/14484-Grounation-0.3.tar.bz2) md5sums=('2a448239a339ed3e87991d3ab621a24d') diff -Naur old/community/x11/xcursor-jimmac/PKGBUILD new/community/x11/xcursor-jimmac/PKGBUILD --- old/community/x11/xcursor-jimmac/PKGBUILD 2007-07-06 16:24:29.000000000 +0100 +++ new/community/x11/xcursor-jimmac/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Jimmac (Jimmac0) cursor theme" arch=('i686' 'x86_64') url="http://www.kde-look.org/content/show.php?content=28281" -license="GPL" +license=('GPL') conflicts=('jimmac') replaces=('jimmac') source=(http://www.kde-look.org/CONTENT/content-files/28281-Jimmac0.tar.bz2 \ diff -Naur old/community/x11/xcursor-neutral/PKGBUILD new/community/x11/xcursor-neutral/PKGBUILD --- old/community/x11/xcursor-neutral/PKGBUILD 2007-02-13 17:50:08.000000000 +0000 +++ new/community/x11/xcursor-neutral/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A smoothed and shadowed X cursors theme" url="http://www.kde-look.org/content/show.php?content=28310" -license="custom" +license=('custom') source=(http://www.kde-look.org/content/files/28310-neutral-$pkgver.tar.gz) md5sums=('b2d8e14bcb4ab13d9001890b041803db') diff -Naur old/community/x11/xcursor-pinux/PKGBUILD new/community/x11/xcursor-pinux/PKGBUILD --- old/community/x11/xcursor-pinux/PKGBUILD 2007-02-16 18:48:20.000000000 +0000 +++ new/community/x11/xcursor-pinux/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=7 pkgdesc="Pinux's Tux Cursors Theme" url="http://www.kde-look.org/content/show.php?content=19506" -license="GPL" +license=('GPL') source=(http://www.kde-look.org/content/files/19506-pinux\'s-tux-cursors-theme-$pkgver-cur.tar.bz2 \ pArch.tar.bz2) md5sums=('95f33e0e1be82342956a04bd7e6d15d6' 'e3ef027f5c5ccee08fd638ad62bcb8e0') diff -Naur old/community/x11/xcursor-polar/PKGBUILD new/community/x11/xcursor-polar/PKGBUILD --- old/community/x11/xcursor-polar/PKGBUILD 2007-02-16 20:06:25.000000000 +0000 +++ new/community/x11/xcursor-polar/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=6 pkgdesc="Polar XCursor Theme" url="http://www.kde-look.org/content/show.php?content=27913" -license="GPL" +license=('GPL') source=(http://www.kde-look.org/content/files/27913-PolarCursorThemes.tar.bz2) md5sums=('886068e0feadd2a07c8b206b211548ec') diff -Naur old/community/x11/xcursor-premium/PKGBUILD new/community/x11/xcursor-premium/PKGBUILD --- old/community/x11/xcursor-premium/PKGBUILD 2007-02-02 20:23:01.000000000 +0000 +++ new/community/x11/xcursor-premium/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=5 pkgdesc="Premium X Cursor Theme" url="http://www.kde-look.org/content/show.php?content=14485" -license="GPL" +license=('GPL') source=(http://www.kde-look.org/content/files/14485-Premium-0.3.tar.bz2) md5sums=('0d7b263d25a093012da2b46c11a62d06') diff -Naur old/community/x11/xcursor-simpleandsoft/PKGBUILD new/community/x11/xcursor-simpleandsoft/PKGBUILD --- old/community/x11/xcursor-simpleandsoft/PKGBUILD 2007-02-16 20:26:53.000000000 +0000 +++ new/community/x11/xcursor-simpleandsoft/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A simple and soft X cursor theme" url="http://www.kde-look.org/content/show.php?content=28427" -license="GPL" +license=('GPL') source=(http://www.kde-look.org/CONTENT/content-files/28427-simpleandsoft-$pkgver.ta... index.theme) md5sums=('387ccc524609918c17f1f777f88cfaf3' 'cc733fa4d545b2f888e4734aaab7bd7d') diff -Naur old/community/x11/xcursor-vanilla-dmz/PKGBUILD new/community/x11/xcursor-vanilla-dmz/PKGBUILD --- old/community/x11/xcursor-vanilla-dmz/PKGBUILD 2007-02-16 19:31:04.000000000 +0000 +++ new/community/x11/xcursor-vanilla-dmz/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="Vanilla DMZ cursor theme" url="http://jimmac.musichall.cz/themes.php?skin=7" -license="MIT" +license=('MIT') arch=('i686') source=(http://jimmac.musichall.cz/zip/vanilla-dmz-$pkgver.tar.bz2) md5sums=('1d7f83a30785020b5f170586a51b7eda') diff -Naur old/community/x11/xcursor-vanilla-dmz-aa/PKGBUILD new/community/x11/xcursor-vanilla-dmz-aa/PKGBUILD --- old/community/x11/xcursor-vanilla-dmz-aa/PKGBUILD 2007-02-16 20:01:04.000000000 +0000 +++ new/community/x11/xcursor-vanilla-dmz-aa/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="Vanilla DMZ AA cursor theme" url="http://jimmac.musichall.cz/themes.php?skin=7" -license="MIT" +license=('MIT') arch=('i686') source=(http://jimmac.musichall.cz/zip/vanilla-dmz-aa-$pkgver.tar.bz2) md5sums=('2db5e4eab6678bdf50257fccbdb0edbf') diff -Naur old/community/x11/xkbsel/PKGBUILD new/community/x11/xkbsel/PKGBUILD --- old/community/x11/xkbsel/PKGBUILD 2006-08-29 10:30:33.000000000 +0100 +++ new/community/x11/xkbsel/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="framework for defining, selecting and indicating XKB keyboard mappings" url="http://www.meduna.org/sw_xkbsel_en.html" -license="GPL" +license=('GPL') depends=(gdbm libxaw) makedepends=(patch) conflicts=() diff -Naur old/community/x11/xkbset/PKGBUILD new/community/x11/xkbset/PKGBUILD --- old/community/x11/xkbset/PKGBUILD 2007-01-24 21:53:00.000000000 +0000 +++ new/community/x11/xkbset/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A small utility to change the AccessX settings of XKEYBOARD" url="http://www.math.missouri.edu/~stephen/software" -license="custom" +license=('custom') depends=('perl-tk') source=(http://www.math.missouri.edu/~stephen/software/xkbset/xkbset-${pkgver}.tar.gz) md5sums=('282c416a76a237fa84a7b513c9d7b2cf') diff -Naur old/community/x11/xloadimage/PKGBUILD new/community/x11/xloadimage/PKGBUILD --- old/community/x11/xloadimage/PKGBUILD 2007-02-21 15:02:43.000000000 +0000 +++ new/community/x11/xloadimage/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="An utility to view many different types of images under X11" url="http://world.std.com/~jimf/xloadimage.html" -license="MIT" +license=('MIT') depends=('libtiff' 'libpng' 'libx11') makedepends=('patch') source=(ftp://ftp2.x.org/R5contrib/$pkgname.$pkgver.tar.gz \ diff -Naur old/community/x11/xsel/PKGBUILD new/community/x11/xsel/PKGBUILD --- old/community/x11/xsel/PKGBUILD 2007-02-14 11:12:05.000000000 +0000 +++ new/community/x11/xsel/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="XSel is a command-line program for getting and setting the contents of the X selection" url="http://www.vergenet.net/~conrad/software/xsel/" -license="GPL" +license=('GPL') depends=(libxext libsm) source=(http://www.vergenet.net/~conrad/software/xsel/download/$pkgname-$pkgver.tar....) md5sums=('cec2fb09a4101b7f2beab8094234e2f4') diff -Naur old/community/x11/xxkb/PKGBUILD new/community/x11/xxkb/PKGBUILD --- old/community/x11/xxkb/PKGBUILD 2007-02-14 11:12:42.000000000 +0000 +++ new/community/x11/xxkb/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=3 pkgdesc="keyboard layout switcher/indicator" url="http://pascal.tsu.ru/other/xxkb/" -license="GPL" +license=('GPL') depends=(libxpm) makedepends=(patch imake) source=(http://pascal.tsu.ru/other/xxkb/xxkb-1.10.tgz \ diff -Naur old/community/xfce/squeeze-svn/PKGBUILD new/community/xfce/squeeze-svn/PKGBUILD --- old/community/xfce/squeeze-svn/PKGBUILD 2007-07-31 01:44:02.000000000 +0100 +++ new/community/xfce/squeeze-svn/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A modern and advanced archive manager for the Xfce Desktop Environment" url="http://squeeze.xfce.org/" -license="GPL" +license=('GPL') depends=('gtk2' 'libxfce4util-svn' 'thunar-svn' 'exo-svn') makedepends=('subversion') conflicts=('squeeze') diff -Naur old/community/xfce/thunar-volman-svn/PKGBUILD new/community/xfce/thunar-volman-svn/PKGBUILD --- old/community/xfce/thunar-volman-svn/PKGBUILD 2007-07-29 05:06:17.000000000 +0100 +++ new/community/xfce/thunar-volman-svn/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Automatic management for removeable devices in thunar" arch=(i686 x86_64) url="http://xfce-goodies.berlios.de/" -license="GPL" +license=('GPL') groups=('xfce4-svn-extra') depends=('thunar-svn') conflicts=('thunar-volman') diff -Naur old/current/base/cracklib/PKGBUILD new/current/base/cracklib/PKGBUILD --- old/current/base/cracklib/PKGBUILD 2007-03-03 15:05:51.000000000 +0000 +++ new/current/base/cracklib/PKGBUILD 2007-08-03 13:36:27.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Password Checking Library" arch=(i686 x86_64) url="http://sourceforge.net/projects/cracklib" -license="cracklib" +license=('custom:cracklib') depends=('glibc') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('555f7832b63ebc7fb70b0373500c2358') diff -Naur old/current/base/libarchive/PKGBUILD new/current/base/libarchive/PKGBUILD --- old/current/base/libarchive/PKGBUILD 2007-07-14 23:41:25.000000000 +0100 +++ new/current/base/libarchive/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="library that can create and read several streaming archive formats" arch=(i686 x86_64) url="http://people.freebsd.org/~kientzle/libarchive/" -license="BSD" +license=('BSD') depends=('zlib' 'bzip2' 'acl') source=(http://people.freebsd.org/~kientzle/libarchive/src/libarchive-$pkgver.tar.gz) md5sums=('4b7773786e185a16353440c7e62a289a') diff -Naur old/current/base/vim/PKGBUILD new/current/base/vim/PKGBUILD --- old/current/base/vim/PKGBUILD 2007-06-26 20:22:51.000000000 +0100 +++ new/current/base/vim/PKGBUILD 2007-08-03 13:15:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="a highly configurable, improved version of the vi text editor" arch=(i686 x86_64) -license=(CUSTOUM) +license=(custom) url="http://www.vim.org" depends=('glibc' 'ncurses' 'perl') makedepends=('wget' 'sed' 'grep') diff -Naur old/current/base/wpa_supplicant/PKGBUILD new/current/base/wpa_supplicant/PKGBUILD --- old/current/base/wpa_supplicant/PKGBUILD 2007-05-30 23:16:33.000000000 +0100 +++ new/current/base/wpa_supplicant/PKGBUILD 2007-08-03 13:29:45.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A utility providing key negotiation for WPA wireless networks" arch=(i686 x86_64) depends=('openssl') -license="GPL" +license=('GPL') backup=('etc/wpa_supplicant.conf') url="http://hostap.epitest.fi/wpa_supplicant" source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz \ diff -Naur old/current/base/xfsdump/PKGBUILD new/current/base/xfsdump/PKGBUILD --- old/current/base/xfsdump/PKGBUILD 2007-06-11 16:58:16.000000000 +0100 +++ new/current/base/xfsdump/PKGBUILD 2007-08-03 13:15:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Additional XFS filesystem utilities" arch=(i686 x86_64) -license=('LPGL') +license=('LGPL') url="http://oss.sgi.com/projects/xfs/" depends=('xfsprogs' 'attr' 'acl' 'dmapi') source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsdump_$pkgver-1.tar.gz) diff -Naur old/current/base/zlib/PKGBUILD new/current/base/zlib/PKGBUILD --- old/current/base/zlib/PKGBUILD 2007-05-25 18:22:33.000000000 +0100 +++ new/current/base/zlib/PKGBUILD 2007-08-03 14:03:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A compression/decompression Library" arch=(i686 x86_64) -license=('zlib') +license=('custom:zlib') url="http://www.gzip.org/zlib" depends=('glibc') source=(http://www.zlib.net/zlib-$pkgver.tar.gz) @@ -33,4 +33,8 @@ mv -v "$startdir"/pkg/usr/lib/libz.so.* "$startdir"/pkg/lib/ chmod 644 "$startdir"/pkg/lib/* ln -svf ../../lib/libz.so.1 "$startdir"/pkg/usr/lib/libz.so + + # license + mkdir -pv "$startdir"/pkg/usr/share/zlib/license.txt + grep '^Copyright notice:' -A 100 README > "$startdir"/pkg/usr/share/zlib/license.txt } diff -Naur old/current/lib/libcap/PKGBUILD new/current/lib/libcap/PKGBUILD --- old/current/lib/libcap/PKGBUILD 2006-10-29 23:14:00.000000000 +0000 +++ new/current/lib/libcap/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="POSIX 1003.1e capabilities" arch=(i686) url="http://www.kernel.org/pub/linux/libs/security/linux-privs/" -license="GPL" +license=('GPL') depends=('glibc') source=(http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.4/${pkgname}-${pkgver}.tar.gz libcap-1.10-debian.patch) diff -Naur old/current/network/gnu-netcat/PKGBUILD new/current/network/gnu-netcat/PKGBUILD --- old/current/network/gnu-netcat/PKGBUILD 2007-03-16 21:11:46.000000000 +0000 +++ new/current/network/gnu-netcat/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ source=(http://dl.sourceforge.net/sourceforge/netcat/netcat-$pkgver.tar.bz2) md5sums=('0a29eff1736ddb5effd0b1ec1f6fe0ef') url="http://netcat.sourceforge.net/" -license="GPL" +license=('GPL') replaces=('netcat') provides=('netcat') arch=(i686) diff -Naur old/current/office/ispell/PKGBUILD new/current/office/ispell/PKGBUILD --- old/current/office/ispell/PKGBUILD 2007-05-22 02:45:23.000000000 +0100 +++ new/current/office/ispell/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An interactive spell-checking program for Unix" arch=('i686' 'x86_64') url="http://ficus-www.cs.ucla.edu/geoff/ispell.html" -license="BSD" +license=('BSD') depends=('ncurses') source=(http://fmg-www.cs.ucla.edu/geoff/tars/$pkgname-$pkgver.tar.gz license.txt) md5sums=('12087d7555fc2b746425cd167af480fe' 'bf51b6181b9914dedc266ba970bb7319') diff -Naur old/extra/daemons/fssos-nsvs/PKGBUILD new/extra/daemons/fssos-nsvs/PKGBUILD --- old/extra/daemons/fssos-nsvs/PKGBUILD 2005-10-26 14:34:21.000000000 +0100 +++ new/extra/daemons/fssos-nsvs/PKGBUILD 2007-08-03 13:25:20.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="NSVS for FSSOS" backup=(etc/nsvsd.conf) url="http://fssos.sourceforge.net/" -license="GNU GPL" +license=('GPL') depends=('bash' 'mysql>=5.0.15' 'mysql<=5.0.9999') install=($pkgname.install) source=(http://dl.sourceforge.net/sourceforge/fssos/nsvs-$pkgver.tar.gz nsvsd \ diff -Naur old/extra/daemons/jetty/PKGBUILD new/extra/daemons/jetty/PKGBUILD --- old/extra/daemons/jetty/PKGBUILD 2007-03-17 21:46:09.000000000 +0000 +++ new/extra/daemons/jetty/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A full-fledged production-grade lightweight Java Servlet Container" arch=(i686 x86_64) url="http://jetty.mortbay.org/jetty/" -license="" +license=() depends=('j2re') makedepends=() conflicts=() diff -Naur old/extra/daemons/knockd/PKGBUILD new/extra/daemons/knockd/PKGBUILD --- old/extra/daemons/knockd/PKGBUILD 2007-07-31 01:43:21.000000000 +0100 +++ new/extra/daemons/knockd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A simple port-knocking daemon" arch=(i686 x86_64) url="http://www.zeroflux.org/knock/" -license="GPL" +license=('GPL') depends=('libpcap') backup=('etc/knockd.conf') source=(http://www.zeroflux.org/knock/files/knock-$pkgver.tar.gz knockd) diff -Naur old/extra/daemons/mpd/PKGBUILD new/extra/daemons/mpd/PKGBUILD --- old/extra/daemons/mpd/PKGBUILD 2007-07-17 00:56:18.000000000 +0100 +++ new/extra/daemons/mpd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Music daemon that plays MP3, FLAC, and Ogg Vorbis files" arch=('i686' 'x86_64') -license="GPL" +license=('GPL') url="http://musicpd.org" depends=('libid3tag' 'libmad' 'flac>=1.1.3' 'audiofile' 'faad2>=2.5' 'libmikmod' 'alsa-lib' 'libshout' 'libmpcdec>=1.2.5' 'libsamplerate') diff -Naur old/extra/daemons/powernowd/PKGBUILD new/extra/daemons/powernowd/PKGBUILD --- old/extra/daemons/powernowd/PKGBUILD 2006-06-02 09:40:27.000000000 +0100 +++ new/extra/daemons/powernowd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Program for powering down CPUs dynamicly" arch=(i686 x86_64) url="http://www.deater.net/john/powernowd.html" -license="GPL" +license=('GPL') depends=('glibc') source=(http://www.deater.net/john/$pkgname-$pkgver.tar.gz \ powernowd.rc.d powernowd.conf.d) diff -Naur old/extra/daemons/powersave/PKGBUILD new/extra/daemons/powersave/PKGBUILD --- old/extra/daemons/powersave/PKGBUILD 2007-05-30 21:26:35.000000000 +0100 +++ new/extra/daemons/powersave/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="The powersave package provides global power management tasks. It supports battery monitoring, userspace workarounds for proper suspend/standby functionality and more." url="http://powersave.sf.net" arch=('i686') -license="GPL" +license=('GPL') depends=('dbus-glib' 'hal' 'hdparm' 'acpid' 'cpufrequtils' 'vbetool' 'filesystem>=0.8-8') options=('!libtool') backup=(etc/powersave/battery etc/powersavedisk etc/powersave/scheme_advanced_powersave etc/powersave/scheme_presentation etc/powersave/common etc/powersave/events etc/powersave/scheme_performance etc/powersave/sleep etc/powersave/cpufreq etc/powersave/scheme_acoustic etc/powersave/scheme_powersave etc/powersave/thermal) diff -Naur old/extra/daemons/smtpprox/PKGBUILD new/extra/daemons/smtpprox/PKGBUILD --- old/extra/daemons/smtpprox/PKGBUILD 2007-01-18 20:41:05.000000000 +0000 +++ new/extra/daemons/smtpprox/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=4 pkgdesc="Simple efficient SMTP proxy in perl" url="http://bent.latency.net/smtpprox/" -license="GPL" +license=('GPL') depends=(perl) makedepends=() provides=() diff -Naur old/extra/devel/anjuta/PKGBUILD new/extra/devel/anjuta/PKGBUILD --- old/extra/devel/anjuta/PKGBUILD 2007-06-28 00:35:11.000000000 +0100 +++ new/extra/devel/anjuta/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="Anjuta Integrated Development Environment (IDE)" arch=('i686' 'x86_64') -license="GPL" +license=('GPL') depends=('devhelp' 'gnome-build>=0.1.7' 'pcre>=7.2' 'vte>=0.16.6' 'graphviz' 'subversion' 'libgnomeprintui>=2.18.0' 'gtksourceview' 'glade' 'gconf>=2.18.0.1-4' 'scrollkeeper' 'desktop-file-utils') makedepends=('autogen' 'gnome-doc-utils') url="http://anjuta.sourceforge.net/" diff -Naur old/extra/devel/bzr/PKGBUILD new/extra/devel/bzr/PKGBUILD --- old/extra/devel/bzr/PKGBUILD 2007-06-27 18:51:47.000000000 +0100 +++ new/extra/devel/bzr/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Bazaar is a decentralized revision control system" arch=(i686 x86_64) url="http://www.bazaar-vcs.org" -license="GPL" +license=('GPL') depends=('python') source=(http://bazaar-vcs.org/releases/src/bzr-$pkgver.tar.gz) md5sums=('da93565076f06e9f01b3951285757546') diff -Naur old/extra/devel/cogito/PKGBUILD new/extra/devel/cogito/PKGBUILD --- old/extra/devel/cogito/PKGBUILD 2006-12-17 18:48:55.000000000 +0000 +++ new/extra/devel/cogito/PKGBUILD 2007-08-03 13:30:21.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A version control system layered on top of the git tree history storage system" arch=(i686 x86_64) url="http://kernel.org/pub/software/scm/cogito" -license="GPL2" +license=('GPL2') depends=('git-core') source=("http://kernel.org/pub/software/scm/$pkgname/$pkgname-$pkgver.tar.bz2") md5sums=('313697c1a9846d5a73ffe79d2c088faa') diff -Naur old/extra/devel/cvsps/PKGBUILD new/extra/devel/cvsps/PKGBUILD --- old/extra/devel/cvsps/PKGBUILD 2007-02-20 21:27:02.000000000 +0000 +++ new/extra/devel/cvsps/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Generating 'patchset' information from a CVS repository." url="http://www.cobite.com/cvsps/" -license="GPL" +license=('GPL') depends=('zlib') makedepends=() backup=() diff -Naur old/extra/devel/diffstat/PKGBUILD new/extra/devel/diffstat/PKGBUILD --- old/extra/devel/diffstat/PKGBUILD 2006-07-29 03:27:47.000000000 +0100 +++ new/extra/devel/diffstat/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ arch=(i686 x86_64) url="http://invisible-island.net/diffstat" depends=(glibc) -license="GPL" +license=('GPL') source=(ftp://invisible-island.net/diffstat/diffstat.tar.gz) md5sums=('c23f9af8075fd81e98a0afdc3df49de9') diff -Naur old/extra/devel/eclipse-cdt/PKGBUILD new/extra/devel/eclipse-cdt/PKGBUILD --- old/extra/devel/eclipse-cdt/PKGBUILD 2007-03-20 03:12:27.000000000 +0000 +++ new/extra/devel/eclipse-cdt/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="C/C++ Plugin for Eclipse" arch=(i686 x86_64) url="http://www.eclipse.org/cdt" -license="" +license=() depends=('eclipse>=3.2' glibc) makedepends=() conflicts=() diff -Naur old/extra/devel/ftjam/PKGBUILD new/extra/devel/ftjam/PKGBUILD --- old/extra/devel/ftjam/PKGBUILD 2006-11-15 00:15:41.000000000 +0000 +++ new/extra/devel/ftjam/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc='FT Jam - an enhanced version of the Jam build tool' url="http://freetype.org/jam/" -license="custom" +license=('custom') depends=('glibc') provides=('jam') conflicts=('jam') diff -Naur old/extra/devel/ghc/PKGBUILD new/extra/devel/ghc/PKGBUILD --- old/extra/devel/ghc/PKGBUILD 2006-10-15 21:34:45.000000000 +0100 +++ new/extra/devel/ghc/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A state-of-the-art, open source, compiler and interactive environment for Haskell." arch=(i686 x86_64) url="http://www.haskell.org/ghc/" -license="" +license=() depends=('gmp' 'perl') makedepends=('ghc') source=("http://www.haskell.org/ghc/dist/$pkgver/$pkgname-$pkgver-src.tar.bz2" \ diff -Naur old/extra/devel/javax-usb/PKGBUILD new/extra/devel/javax-usb/PKGBUILD --- old/extra/devel/javax-usb/PKGBUILD 2005-04-07 05:11:46.000000000 +0100 +++ new/extra/devel/javax-usb/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -3,7 +3,7 @@ pkgrel=1 pkgdesc="Java USB Interface" url="http://javax-usb.org" -license="" +license=() depends=(j2re) makedepends=(j2sdk gcc apache-ant) conflicts=() diff -Naur old/extra/devel/mercurial/PKGBUILD new/extra/devel/mercurial/PKGBUILD --- old/extra/devel/mercurial/PKGBUILD 2007-07-31 01:43:22.000000000 +0100 +++ new/extra/devel/mercurial/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="A scalable distributed SCM tool" url="http://www.selenic.com/mercurial" -license="GPL" +license=('GPL') depends=('python>=2.5') source=(http://www.selenic.com/mercurial/release/$pkgname-$pkgver.tar.gz) arch=('i686' 'x86_64') diff -Naur old/extra/devel/mod_perl/PKGBUILD new/extra/devel/mod_perl/PKGBUILD --- old/extra/devel/mod_perl/PKGBUILD 2007-03-21 19:54:14.000000000 +0000 +++ new/extra/devel/mod_perl/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Apache module that embeds the Perl interpreter within the server" url="http://search.cpan.org/~PGOLLUCCI/mod_perl" depends=('perl' 'apache' 'db') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/P/PG/PGOLLUCCI/mod_perl-$pkgver.tar.gz) md5sums=('b40e2adf67c6be15a0041af1c67b6997') diff -Naur old/extra/devel/mod_security/PKGBUILD new/extra/devel/mod_security/PKGBUILD --- old/extra/devel/mod_security/PKGBUILD 2006-10-13 18:04:28.000000000 +0100 +++ new/extra/devel/mod_security/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="An open source intrusion detection and prevention engine for web applications" url="http://www.modsecurity.org/" -license=GPL +license=('BSD') depends=('apache') install=$pkgname.install source=(http://www.modsecurity.org/download/modsecurity-apache_$pkgver.tar.gz diff -Naur old/extra/devel/monotone/PKGBUILD new/extra/devel/monotone/PKGBUILD --- old/extra/devel/monotone/PKGBUILD 2007-06-26 20:23:01.000000000 +0100 +++ new/extra/devel/monotone/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A modern distributed version control system, like hg, darcs, or git" url="http://www.monotone.ca" -license="GPL" +license=('GPL') arch=(i686 x86_64) depends=('boost') install=monotone.install diff -Naur old/extra/devel/nant/PKGBUILD new/extra/devel/nant/PKGBUILD --- old/extra/devel/nant/PKGBUILD 2006-10-21 09:53:05.000000000 +0100 +++ new/extra/devel/nant/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A free .NET build tool, like make but without make's problems" url="http://nant.sourceforge.net" -license="GPL" +license=('GPL') depends=('mono') source=(http://dl.sourceforge.net/sourceforge/nant/$pkgname-$pkgver-src.tar.gz) md5sums=('45ae065439b6cbc0e02051b855843f50') diff -Naur old/extra/devel/oprofile/PKGBUILD new/extra/devel/oprofile/PKGBUILD --- old/extra/devel/oprofile/PKGBUILD 2006-11-16 01:59:35.000000000 +0000 +++ new/extra/devel/oprofile/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="a system-wide profiler for Linux systems, capable of profiling all running code at low overhead." arch=(i686 x86_64) url="http://oprofile.sourceforge.net" -license="GPL" +license=('GPL') depends=(qt popt) source=(http://easynews.dl.sourceforge.net/sourceforge/oprofile/$pkgname-$pkgver.tar... \ oprofile oprofile.conf) diff -Naur old/extra/devel/pyrex/PKGBUILD new/extra/devel/pyrex/PKGBUILD --- old/extra/devel/pyrex/PKGBUILD 2007-05-22 23:05:11.000000000 +0100 +++ new/extra/devel/pyrex/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Language for writing Python extension modules" arch=(i686 x86_64) url="http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/" -license="" +license=() depends=('python>=2.5') source=(http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/Pyrex-${pkgver}.tar.gz) md5sums=('0132c5cd2f8685e4948fb14dcb65f637') diff -Naur old/extra/devel/python-cheetah/PKGBUILD new/extra/devel/python-cheetah/PKGBUILD --- old/extra/devel/python-cheetah/PKGBUILD 2007-06-15 13:24:38.000000000 +0100 +++ new/extra/devel/python-cheetah/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A Python-powered template engine and code generator" url="http://www.cheetahtemplate.org/" -license="custom" +license=('custom') depends=('python') provides=('cheetah') conflicts=('cheetah') diff -Naur old/extra/devel/yodl/PKGBUILD new/extra/devel/yodl/PKGBUILD --- old/extra/devel/yodl/PKGBUILD 2006-11-30 23:53:41.000000000 +0000 +++ new/extra/devel/yodl/PKGBUILD 2007-08-03 13:34:34.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Implements a pre-document language and tools to process it." url="http://yodl.sourceforge.net" -license="AFL" +license=('custom:AFL') depends=('glibc') makedepends=('tetex' 'ghostscript') source=(http://dl.sourceforge.net/$pkgname/${pkgname}_$pkgver.orig.tar.gz) diff -Naur old/extra/emulators/snes9x/PKGBUILD new/extra/emulators/snes9x/PKGBUILD --- old/extra/emulators/snes9x/PKGBUILD 2007-04-30 19:19:23.000000000 +0100 +++ new/extra/emulators/snes9x/PKGBUILD 2007-08-03 13:41:04.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A portable Emulator for the Super Nintento Entertainment System" arch=(i686 x86_64) url="http://www.snes9x.com" -license="Freeware" +license=('custom:Freeware') # remove nasm on non x86 platforms depends=('zlib' 'libpng' 'sdl' 'nasm' 'mesa') install=snes9x.install diff -Naur old/extra/kde/basket/PKGBUILD new/extra/kde/basket/PKGBUILD --- old/extra/kde/basket/PKGBUILD 2007-04-15 10:19:34.000000000 +0100 +++ new/extra/kde/basket/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ arch=(i686 x86_64) url="http://basket.kde.org/" depends=('kdelibs' 'gpgme') -license="GPL" +license=('GPL') source=(http://basket.kde.org/downloads/$pkgname-$pkgver.tar.gz) build() { cd $startdir/src/$pkgname-$pkgver diff -Naur old/extra/kde/kdmtheme/PKGBUILD new/extra/kde/kdmtheme/PKGBUILD --- old/extra/kde/kdmtheme/PKGBUILD 2007-04-29 16:10:53.000000000 +0100 +++ new/extra/kde/kdmtheme/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ depends=('kdebase' 'kdelibs>=3.4.0') pkgdesc="A theme manager for KDM." arch=('i686' 'x86_64') -license="GPL" +license=('GPL') source=(http://beta.smileaf.org/files/kdmtheme/$pkgname-$pkgver.tar.bz2) build() { diff -Naur old/extra/kde/konversation/PKGBUILD new/extra/kde/konversation/PKGBUILD --- old/extra/kde/konversation/PKGBUILD 2006-10-18 01:18:25.000000000 +0100 +++ new/extra/kde/konversation/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A user friendly IRC client for KDE" arch=(i686 x86_64) url="http://konversation.kde.org" -license="GPL" +license=('GPL') depends=('kdelibs') source=(http://download2.berlios.de/$pkgname/$pkgname-$pkgver.tar.bz2) md5sums=('60c2c5f94d4a916055db09728304b19f') diff -Naur old/extra/kde/ksensors/PKGBUILD new/extra/kde/ksensors/PKGBUILD --- old/extra/kde/ksensors/PKGBUILD 2006-11-28 23:22:53.000000000 +0000 +++ new/extra/kde/ksensors/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="ksensors is nice lm_sensors frontend for KDE" url="http://ksensors.sourceforge.net/" -license="GPL" +license=('GPL') depends=('lm_sensors' 'kdelibs') source=(http://mesh.dl.sourceforge.net/sourceforge/ksensors/$pkgname-$pkgver.tar.gz \ ksensors.patch) diff -Naur old/extra/kde/yakuake/PKGBUILD new/extra/kde/yakuake/PKGBUILD --- old/extra/kde/yakuake/PKGBUILD 2006-04-07 14:29:23.000000000 +0100 +++ new/extra/kde/yakuake/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine" url="http://yakuake.uv.ro/" -license="GPL" +license=('GPL') depends=('kdelibs') source=(http://www.kde-apps.org/content/files/29153-$pkgname-$pkgver.tar.bz2) md5sums=('6905f9a6d448c7bfc818cd2d7c88cab4') diff -Naur old/extra/lib/cegui/PKGBUILD new/extra/lib/cegui/PKGBUILD --- old/extra/lib/cegui/PKGBUILD 2007-04-14 15:16:33.000000000 +0100 +++ new/extra/lib/cegui/PKGBUILD 2007-08-03 13:31:03.000000000 +0100 @@ -9,7 +9,7 @@ arch=(i686 x86_64) url="http://crayzedsgui.sourceforge.net" options=('nolibtool') -license="MIT" +license=('MIT') depends=('pcre' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut') source=(http://dl.sourceforge.net/crayzedsgui/CEGUI-$pkgver.tar.gz) md5sums=('b42322a33c6a06eede76b15f75694a17') diff -Naur old/extra/lib/freealut/PKGBUILD new/extra/lib/freealut/PKGBUILD --- old/extra/lib/freealut/PKGBUILD 2007-03-11 22:56:50.000000000 +0000 +++ new/extra/lib/freealut/PKGBUILD 2007-08-03 13:22:31.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="OpenAL Utility Toolkit (ALUT)" arch=(i686 x86_64) url="http://www.openal.org" -license="lgpl" +license=('LGPL') depends=('openal') options=('!libtool') makedepends=() diff -Naur old/extra/lib/gdome2/PKGBUILD new/extra/lib/gdome2/PKGBUILD --- old/extra/lib/gdome2/PKGBUILD 2005-11-08 09:40:58.000000000 +0000 +++ new/extra/lib/gdome2/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Gnome DOM Engine" url="http://gdome2.cs.unibo.it/" -license="LGPL" +license=('LGPL') depends=('libxml2' 'glib2') source=(http://gdome2.cs.unibo.it/tarball/${pkgname}-${pkgver}.tar.gz) md5sums=('bfc114e59eec50cbda8e4ece751ff022') diff -Naur old/extra/lib/gsl/PKGBUILD new/extra/lib/gsl/PKGBUILD --- old/extra/lib/gsl/PKGBUILD 2007-05-08 22:02:01.000000000 +0100 +++ new/extra/lib/gsl/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ arch=(i686 x86_64) source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz) md5sums=('81dca4362ae8d2aa1547b7d010881e43') -license="GPL" +license=('GPL') depends=('glibc') options=('NOLIBTOOL') url="http://www.gnu.org/software/gsl/gsl.html" diff -Naur old/extra/lib/gtkglextmm/PKGBUILD new/extra/lib/gtkglextmm/PKGBUILD --- old/extra/lib/gtkglextmm/PKGBUILD 2006-09-26 08:10:41.000000000 +0100 +++ new/extra/lib/gtkglextmm/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ depends=('gtkmm>=2.10.1') makedepends=('gtkglext') options=('NOLIBTOOL') -license="GPL" +license=('GPL') source=(http://dl.sourceforge.net/gtkglext/${pkgname}-${pkgver}.tar.bz2) md5sums=('27c05f4d45c5fd07b6fb0f044add3056') diff -Naur old/extra/lib/icu/PKGBUILD new/extra/lib/icu/PKGBUILD --- old/extra/lib/icu/PKGBUILD 2006-12-23 20:42:18.000000000 +0000 +++ new/extra/lib/icu/PKGBUILD 2007-08-03 13:22:57.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="International Components for Unicode library" arch=(i686 x86_64) url="http://www-306.ibm.com/software/globalization/icu/" -license="ICU License" +license=('custom:ICU License') depends=('gcc' 'bash') source=(ftp://ftp.software.ibm.com/software/globalization/${pkgname}/${pkgver}/${pkgname}4c-${pkgver/./_}-src.tgz) md5sums=('6243f7a19e03e05403ce84e597510d4c') diff -Naur old/extra/lib/libchewing/PKGBUILD new/extra/lib/libchewing/PKGBUILD --- old/extra/lib/libchewing/PKGBUILD 2006-05-19 20:11:56.000000000 +0100 +++ new/extra/lib/libchewing/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Improved Smart Chewing Library - Intelligent Chinese Phonetic Input Method" url="http://chewing.csie.net/" -license="GPL" +license=('GPL') depends=('glibc') makedepends=('libtool') source=(http://chewing.csie.net/download/libchewing/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/lib/libetpan/PKGBUILD new/extra/lib/libetpan/PKGBUILD --- old/extra/lib/libetpan/PKGBUILD 2007-03-17 08:53:54.000000000 +0000 +++ new/extra/lib/libetpan/PKGBUILD 2007-08-03 13:44:35.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="a portable middleware for email access" arch=(i686 x86_64) url="http://www.etpan.org/" -license="selflicensed" +license=('custom') depends=('db>=4.5' 'openssl' 'bash' 'libsasl') options=('NOLIBTOOL') source=(http://heanet.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.g...) @@ -17,4 +17,6 @@ ./configure --prefix=/usr make || return 1 make DESTDIR=$startdir/pkg install + + install -v -D -m 644 COPYRIGHT "$startdir"/pkg/usr/share/licenses/libetpan/license.txt } diff -Naur old/extra/lib/libixp/PKGBUILD new/extra/lib/libixp/PKGBUILD --- old/extra/lib/libixp/PKGBUILD 2007-01-08 05:17:19.000000000 +0000 +++ new/extra/lib/libixp/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A standalone client/server 9p library" url="http://libs.suckless.org" -license="GPL" +license=('GPL') source=(http://libs.suckless.org/download/$pkgname-$pkgver.tar.gz \ config.mk ) md5sums=('e50c613f7410bc1cff3a18926804202f' 'af95bf8d6770c50cf043bcf67c0990fa') diff -Naur old/extra/lib/libmodplug/PKGBUILD new/extra/lib/libmodplug/PKGBUILD --- old/extra/lib/libmodplug/PKGBUILD 2006-02-25 14:30:30.000000000 +0000 +++ new/extra/lib/libmodplug/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A MOD playing library" url="http://modplug-xmms.sourceforge.net/" -license="GPL" +license=('GPL') depends=(glibc) source=(http://dl.sourceforge.net/sourceforge/modplug-xmms/libmodplug-${pkgver}.tar.gz) md5sums=(b6e7412f90cdd4a27a2dd3de94909905) diff -Naur old/extra/lib/libnss-mysql/PKGBUILD new/extra/lib/libnss-mysql/PKGBUILD --- old/extra/lib/libnss-mysql/PKGBUILD 2005-10-25 20:26:22.000000000 +0100 +++ new/extra/lib/libnss-mysql/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Store your UNIX user accounts in MySQL" backup=(etc/libnss-mysql-root.cfg etc/libnss-mysql.cfg) url="http://libnss-mysql.sourceforge.net/" -license="GPL" +license=('GPL') depends=('mysql>=5.0.15') source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('a34d41a38e426ba26ffde07d03beef8e') diff -Naur old/extra/lib/libopensync/PKGBUILD new/extra/lib/libopensync/PKGBUILD --- old/extra/lib/libopensync/PKGBUILD 2007-05-27 14:30:20.000000000 +0100 +++ new/extra/lib/libopensync/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -9,7 +9,7 @@ arch=('i686' 'x86_64') url="http://www.opensync.org" options=('!libtool') -license="LGPL" +license=('LGPL') makedepends=('python') depends=('glib2' 'libxml2' 'sqlite3') source=("http://www.opensync.org/attachment/wiki/download/libopensync-$pkgver.tar.bz2?rev=&format=raw") diff -Naur old/extra/lib/libots/PKGBUILD new/extra/lib/libots/PKGBUILD --- old/extra/lib/libots/PKGBUILD 2005-11-08 09:43:36.000000000 +0000 +++ new/extra/lib/libots/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Open Text Summarizer" url="http://libots.sourceforge.net/" -license="GPL" +license=('GPL') depends=('libxml2' 'glib2' 'popt') source=(http://dl.sourceforge.net/sourceforge/${pkgname}/ots-${pkgver}.tar.gz gcc4.patch) diff -Naur old/extra/lib/libticables/PKGBUILD new/extra/lib/libticables/PKGBUILD --- old/extra/lib/libticables/PKGBUILD 2006-12-17 20:43:27.000000000 +0000 +++ new/extra/lib/libticables/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="TI Link Cable Library" arch=(i686 x86_64) url="http://tilp.info/" -license="GPL" +license=('GPL') depends=('libusb' 'glib2') options=('FORCE' 'NOLIBTOOL') source=(http://www.archlinux.org/~simo/tilp/tilibs2/libticables2-$pkgver.tar.gz) diff -Naur old/extra/lib/libticalcs/PKGBUILD new/extra/lib/libticalcs/PKGBUILD --- old/extra/lib/libticalcs/PKGBUILD 2006-12-17 20:43:43.000000000 +0000 +++ new/extra/lib/libticalcs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="TI Calculator library" arch=(i686 x86_64) url="http://tilp.info" -license="GPL" +license=('GPL') depends=('libticables' 'libtifiles') options=('FORCE' 'NOLIBTOOL') source=(http://www.archlinux.org/~simo/tilp/tilibs2/libticalcs2-$pkgver.tar.gz) diff -Naur old/extra/lib/libticonv/PKGBUILD new/extra/lib/libticonv/PKGBUILD --- old/extra/lib/libticonv/PKGBUILD 2006-12-17 20:43:29.000000000 +0000 +++ new/extra/lib/libticonv/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="TI character set conversion library" arch=(i686 x86_64) url="http://tilp.info/" -license="GPL" +license=('GPL') depends=('glib2') options=('FORCE' 'NOLIBTOOL') source=(http://www.archlinux.org/~simo/tilp/tilibs2/libticonv-$pkgver.tar.gz) diff -Naur old/extra/lib/libtifiles/PKGBUILD new/extra/lib/libtifiles/PKGBUILD --- old/extra/lib/libtifiles/PKGBUILD 2006-12-17 20:43:43.000000000 +0000 +++ new/extra/lib/libtifiles/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="TI File format library" arch=(i686 x86_64) url="http://tilp.info" -license="GPL" +license=('GPL') depends=('zlib' 'libticonv' 'glib2') options=('FORCE' 'NOLIBTOOL') source=(http://www.archlinux.org/~simo/tilp/tilibs2/libtifiles2-$pkgver.tar.gz) diff -Naur old/extra/lib/libxmi/PKGBUILD new/extra/lib/libxmi/PKGBUILD --- old/extra/lib/libxmi/PKGBUILD 2007-02-06 19:42:49.000000000 +0000 +++ new/extra/lib/libxmi/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="library for rasterizing 2-D vector graphics" url="http://www.gnu.org/software/libxmi/libxmi.html" -license="GPL" +license=('GPL') depends=('glibc') source=(http://mirrors.usc.edu/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('4e6935484f0ad71b531920bf4c546b47') diff -Naur old/extra/lib/m17n-db/PKGBUILD new/extra/lib/m17n-db/PKGBUILD --- old/extra/lib/m17n-db/PKGBUILD 2006-12-15 00:40:37.000000000 +0000 +++ new/extra/lib/m17n-db/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A multilingual text processing library (database)" arch=(i686 x86_64) url="http://www.m17n.org/m17n-lib/" -license=GPL +license=('BSD') depends=('glibc') # not because of compiling, but because of /usr/share/i18n/charmaps/ files that glibc provides source=(http://www.m17n.org/m17n-lib-download/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/lib/perl-dbd-sqlite/PKGBUILD new/extra/lib/perl-dbd-sqlite/PKGBUILD --- old/extra/lib/perl-dbd-sqlite/PKGBUILD 2006-12-16 22:24:10.000000000 +0000 +++ new/extra/lib/perl-dbd-sqlite/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686 x86_64) url="http://search.cpan.org/~MSERGEANT/DBD-SQLite-$pkgver.tar.gz" depends=('perl' 'perl-dbi') -license="GPL" +license=('GPL') source=(http://www.cpan.org/authors/id/M/MS/MSERGEANT/DBD-SQLite-$pkgver.tar.gz) md5sums=('d33e584f435d464a55946f58d4d4b9e2') diff -Naur old/extra/lib/perl-template-toolkit/PKGBUILD new/extra/lib/perl-template-toolkit/PKGBUILD --- old/extra/lib/perl-template-toolkit/PKGBUILD 2007-05-29 13:18:27.000000000 +0100 +++ new/extra/lib/perl-template-toolkit/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ url="http://search.cpan.org/~abw/Template-Toolkit-${pkgver}/" depends=('perl-appconfig') makedepends=('gcc' 'glibc') -license="GPL" +license=('GPL') source=(http://search.cpan.org/CPAN/authors/id/A/AB/ABW/Template-Toolkit-$pkgver.tar...) build() { diff -Naur old/extra/lib/perl-yaml-syck/PKGBUILD new/extra/lib/perl-yaml-syck/PKGBUILD --- old/extra/lib/perl-yaml-syck/PKGBUILD 2007-07-24 19:53:00.000000000 +0100 +++ new/extra/lib/perl-yaml-syck/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ arch=(i686 x86_64) url="http://search.cpan.org/~AUDREYT/YAML-Syck" depends=('perl') -license="GPL" +license=('GPL') arch=('i686') source=(http://www.cpan.org/authors/id/A/AU/AUDREYT/YAML-Syck-$pkgver.tar.gz) diff -Naur old/extra/lib/python-feedparser/PKGBUILD new/extra/lib/python-feedparser/PKGBUILD --- old/extra/lib/python-feedparser/PKGBUILD 2006-03-16 03:28:03.000000000 +0000 +++ new/extra/lib/python-feedparser/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Parse RSS and Atom feeds in Python" url="http://feedparser.sf.net" -license="" +license=() depends=('python' 'libxml2' ) replaces=('feedparser') source=("http://dl.sourceforge.net/feedparser/$_pkgnameorig-$pkgver.zip") diff -Naur old/extra/lib/python-gtkglext/PKGBUILD new/extra/lib/python-gtkglext/PKGBUILD --- old/extra/lib/python-gtkglext/PKGBUILD 2007-02-12 22:49:23.000000000 +0000 +++ new/extra/lib/python-gtkglext/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -8,7 +8,7 @@ depends=('gtkglext' 'mesa' 'python-opengl') url="http://gtkglext.sourceforge.net/" source=(http://umn.dl.sourceforge.net/gtkglext/pygtkglext-$pkgver.tar.bz2) -license="LGPL" +license=('LGPL') md5sums=('720b421d3b8514a40189b285dd91de57') build() { diff -Naur old/extra/lib/python-mpdclient/PKGBUILD new/extra/lib/python-mpdclient/PKGBUILD --- old/extra/lib/python-mpdclient/PKGBUILD 2006-05-09 02:48:12.000000000 +0100 +++ new/extra/lib/python-mpdclient/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Python module for interfacing MPD" url="http://www.musicpd.org/py-libmpdclient.shtml" -license="LGPL" +license=('LGPL') depends=('python' 'mpd') source=("http://mercury.chem.pitt.edu/~shank/$_pkgnameorig-$pkgver.tar.gz") md5sums=('3a26540b7e057f23187b56e85dc82f95') diff -Naur old/extra/lib/python-pysqlite/PKGBUILD new/extra/lib/python-pysqlite/PKGBUILD --- old/extra/lib/python-pysqlite/PKGBUILD 2007-07-08 22:43:11.000000000 +0100 +++ new/extra/lib/python-pysqlite/PKGBUILD 2007-08-03 13:15:55.000000000 +0100 @@ -6,7 +6,7 @@ _branch=2.3 pkgrel=1 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational database engine" -license=("zlib") +license=("custom:zlib") arch=(i686 x86_64) url="http://initd.org/tracker/pysqlite" depends=(python sqlite3) diff -Naur old/extra/lib/python-pysqlite-legacy/PKGBUILD new/extra/lib/python-pysqlite-legacy/PKGBUILD --- old/extra/lib/python-pysqlite-legacy/PKGBUILD 2007-03-05 22:34:32.000000000 +0000 +++ new/extra/lib/python-pysqlite-legacy/PKGBUILD 2007-08-03 13:36:56.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A Python DB-API 2.0 interface for the legacy SQLite 2" arch=(i686 x86_64) url="http://initd.org/tracker/pysqlite" -license="zlib" +license=('custom:zlib') depends=(python sqlite2) conflicts=(pysqlite) source=(http://initd.org/pub/software/pysqlite/releases/1.0/$pkgver/pysqlite-$pkgver...) diff -Naur old/extra/lib/pyxdg/PKGBUILD new/extra/lib/pyxdg/PKGBUILD --- old/extra/lib/pyxdg/PKGBUILD 2005-11-14 07:56:07.000000000 +0000 +++ new/extra/lib/pyxdg/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Python library to access freedesktop.org standards." url="http://freedesktop.org/Software/pyxdg" -license="LGPL" +license=('LGPL') depends=('python>=2.4') source=(http://www.freedesktop.org/~lanius/$pkgname-$pkgver.tar.gz) md5sums=('86a5441285fc908145414b63348d11a3') diff -Naur old/extra/lib/sdl_pango/PKGBUILD new/extra/lib/sdl_pango/PKGBUILD --- old/extra/lib/sdl_pango/PKGBUILD 2006-10-29 11:35:49.000000000 +0000 +++ new/extra/lib/sdl_pango/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Pango SDL binding" url="http://sdlpango.sourceforge.net/" -license="" +license=() depends=('pango' 'sdl') source=(http://switch.dl.sourceforge.net/sourceforge/sdlpango/SDL_Pango-$pkgver.tar.... http://zarb.org/~gc/t/SDL_Pango-$pkgver-API-adds.patch) md5sums=('85bbf9bb7b1cee0538154dadd045418c''5decf3d7eb724e27548af3142131a2f6') diff -Naur old/extra/lib/swt/PKGBUILD new/extra/lib/swt/PKGBUILD --- old/extra/lib/swt/PKGBUILD 2007-05-07 22:53:35.000000000 +0100 +++ new/extra/lib/swt/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="An open source widget toolkit for Java" arch=(i686 x86_64) url="http://www.eclipse.org/swt/" -license="" +license=() depends=('jre') makedepends=() source=(http://www.gtlib.gatech.edu/pub/eclipse/eclipse/downloads/drops/R-3.2.2-2007...) diff -Naur old/extra/lib/t1lib/PKGBUILD new/extra/lib/t1lib/PKGBUILD --- old/extra/lib/t1lib/PKGBUILD 2006-03-02 08:19:19.000000000 +0000 +++ new/extra/lib/t1lib/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ depends=('libxaw') url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html" pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 fonts" -license="GPL" +license=('GPL') source=(http://www.ibiblio.org/pub/Linux/libs/graphics/t1lib-5.1.0.tar.gz) md5sums=('a05bed4aa63637052e60690ccde70421') diff -Naur old/extra/lib/vips/PKGBUILD new/extra/lib/vips/PKGBUILD --- old/extra/lib/vips/PKGBUILD 2007-07-31 01:43:27.000000000 +0100 +++ new/extra/lib/vips/PKGBUILD 2007-08-03 13:22:45.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="VIPS is a free image processing system." arch=("i686" "x86_64") -license=('LGPL2.1') +license=('LGPL2') url="http://www.vips.ecs.soton.ac.uk/index.php" depends=('fftw>=3.0.1-5' 'lcms' 'pango' 'imagemagick>=6.2.6' 'libpng' 'libtiff' 'libjpeg' 'zlib' 'glib2' 'libexif' 'openexr' 'liboil') makedepends=('make' 'pkgconfig' 'perl' 'swig>=1.3.31') diff -Naur old/extra/modules/fglrx/PKGBUILD new/extra/modules/fglrx/PKGBUILD --- old/extra/modules/fglrx/PKGBUILD 2007-07-31 10:50:21.000000000 +0100 +++ new/extra/modules/fglrx/PKGBUILD 2007-08-03 13:49:57.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686' 'x86_64') url="http://www.ati.com" #license provided by fglrx-utils package -license=('custom:"fglrx"') +license=('custom:fglrx') depends=("fglrx-utils>=${pkgver}" "kernel26>=${_kernel_version}") makedepends=() replaces=('ati-fglrx') diff -Naur old/extra/modules/fglrx-ck/PKGBUILD new/extra/modules/fglrx-ck/PKGBUILD --- old/extra/modules/fglrx-ck/PKGBUILD 2007-07-31 10:50:21.000000000 +0100 +++ new/extra/modules/fglrx-ck/PKGBUILD 2007-08-03 13:49:51.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686' 'x86_64') url="http://www.ati.com" #license provided by fglrx-utils package -license=('custom:"fglrx"') +license=('custom:fglrx') depends=("fglrx-utils>=${pkgver}" "kernel26ck>=${_kernel_version}") makedepends=() replaces=('ati-fglrx-ck') diff -Naur old/extra/modules/fglrx-suspend2/PKGBUILD new/extra/modules/fglrx-suspend2/PKGBUILD --- old/extra/modules/fglrx-suspend2/PKGBUILD 2007-07-31 01:43:28.000000000 +0100 +++ new/extra/modules/fglrx-suspend2/PKGBUILD 2007-08-03 13:50:10.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686' 'x86_64') url="http://www.ati.com" #license provided by fglrx-utils package -license=('custom:"fglrx"') +license=('custom:fglrx') depends=("fglrx-utils>=${pkgver}" "kernel26suspend2>=${_kernel_version}") makedepends=() replaces=('ati-fglrx-suspend2') diff -Naur old/extra/modules/fglrx-utils/PKGBUILD new/extra/modules/fglrx-utils/PKGBUILD --- old/extra/modules/fglrx-utils/PKGBUILD 2007-08-03 12:34:02.000000000 +0100 +++ new/extra/modules/fglrx-utils/PKGBUILD 2007-08-03 13:50:04.000000000 +0100 @@ -13,7 +13,7 @@ url="http://www.ati.com" # license provided in this package also applies to # kernel module pkgs, and is noted in their PKGBUILDs -license=('custom:"fglrx"') +license=('custom:fglrx') #finger required for acpi scripts depends=('xorg-server>=1.1.1' 'libdrm' 'libstdc++5' 'netkit-bsd-finger' \ 'libxrandr' 'libsm' 'fontconfig' 'libxcursor' 'libxi') diff -Naur old/extra/modules/perl-module-build/PKGBUILD new/extra/modules/perl-module-build/PKGBUILD --- old/extra/modules/perl-module-build/PKGBUILD 2007-05-02 21:21:43.000000000 +0100 +++ new/extra/modules/perl-module-build/PKGBUILD 2007-08-03 13:22:14.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="The Perl build module" arch=(i686 x86_64) -license=('perl' 'GPL') +license=('PerlArtistic' 'GPL') url="http://search.cpan.org/~kwilliams/Module-Build/" depends=('perl') source=(http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/Module-Build-0.2808.ta...) diff -Naur old/extra/modules/perl-sgmls/PKGBUILD new/extra/modules/perl-sgmls/PKGBUILD --- old/extra/modules/perl-sgmls/PKGBUILD 2006-10-21 01:02:01.000000000 +0100 +++ new/extra/modules/perl-sgmls/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="class for postprocessing the output from the sgmls and nsgmls parsers." url="http://search.cpan.org/~dmegg/SGMLSpm-1.03ii/SGMLS.pm" makedepends=('perl') -license="GPL" +license=('GPL') source=(http://search.cpan.org/CPAN/authors/id/D/DM/DMEGG/SGMLSpm-${pkgver}ii.tar.gz) md5sums=('5bcb197fd42e67d51c739b1414d514a7') diff -Naur old/extra/modules/perl-text-wrapi18n/PKGBUILD new/extra/modules/perl-text-wrapi18n/PKGBUILD --- old/extra/modules/perl-text-wrapi18n/PKGBUILD 2006-10-21 01:08:09.000000000 +0100 +++ new/extra/modules/perl-text-wrapi18n/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ url="http://search.cpan.org/~kubota/Text-WrapI18N-0.06/WrapI18N.pm" depends=('perl') makedepends=('perl') -license="GPL" +license=('GPL') source=(http://search.cpan.org/CPAN/authors/id/K/KU/KUBOTA/Text-WrapI18N-${pkgver}.tar.gz) md5sums=('0799c16a00926e6c18d400c2e2861d5f') diff -Naur old/extra/multimedia/bmp-wma/PKGBUILD new/extra/multimedia/bmp-wma/PKGBUILD --- old/extra/multimedia/bmp-wma/PKGBUILD 2005-10-07 17:31:56.000000000 +0100 +++ new/extra/multimedia/bmp-wma/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="WMA plugin for Beep Media Player" url="http://bmp-plugins.berlios.de/novelian/project.php?p=bmp-wma" -license="GPL" +license=('GPL') depends=('bmp') groups=('bmp-plugins' 'bmp-io-plugins') source=(http://download.berlios.de/bmp-plugins/${pkgname}-${pkgver}.tar.gz diff -Naur old/extra/multimedia/cddb_get/PKGBUILD new/extra/multimedia/cddb_get/PKGBUILD --- old/extra/multimedia/cddb_get/PKGBUILD 2007-04-10 19:22:08.000000000 +0100 +++ new/extra/multimedia/cddb_get/PKGBUILD 2007-08-03 13:16:17.000000000 +0100 @@ -6,7 +6,7 @@ pkgver=2.27 pkgrel=1 pkgdesc="This module/script gets the CDDB info for an audio cd." -license=('GPL' 'Artistic') +license=('GPL' 'PerlArtistic') arch=("i686" "x86_64") makedepends=('perl') source=(http://armin.emx.at/cddb/CDDB_get-$pkgver.tar.gz) diff -Naur old/extra/multimedia/dssi/PKGBUILD new/extra/multimedia/dssi/PKGBUILD --- old/extra/multimedia/dssi/PKGBUILD 2007-03-11 08:55:33.000000000 +0000 +++ new/extra/multimedia/dssi/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -9,7 +9,7 @@ pkgdesc="DSSI is an API for audio plugins, with particular application for software synthesis plugins with native user interfaces." arch=("i686" "x86_64") url="http://dssi.sourceforge.net/" -license="" +license=() depends=('liblo>=0.22' 'qt' 'pkgconfig' 'flac>=1.1.4' 'jack-audio-connection-kit' 'libsamplerate') makedepends=('ladspa') diff -Naur old/extra/multimedia/exiv2/PKGBUILD new/extra/multimedia/exiv2/PKGBUILD --- old/extra/multimedia/exiv2/PKGBUILD 2007-04-11 20:32:24.000000000 +0100 +++ new/extra/multimedia/exiv2/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Exif and Iptc metadata manipulation library and tools." arch=(i686 x86_64) url="http://exiv2.org" -license="GPL" +license=('GPL') depends=('gcc' 'zlib') options=('NOLIBTOOL') source=(http://www.exiv2.org/${pkgname}-${pkgver}.tar.gz) diff -Naur old/extra/multimedia/festival/PKGBUILD new/extra/multimedia/festival/PKGBUILD --- old/extra/multimedia/festival/PKGBUILD 2007-06-27 18:51:48.000000000 +0100 +++ new/extra/multimedia/festival/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgverorig=1.96-beta pkgrel=1 pkgdesc="Festival is a general multi-lingual speech synthesis system developed at CSTR (Centre for Speech Technology Research)." -license="" +license=() arch=('i686') url="http://www.cstr.ed.ac.uk/projects/festival/" depends=('perl') diff -Naur old/extra/multimedia/festival-awb-arctic/PKGBUILD new/extra/multimedia/festival-awb-arctic/PKGBUILD --- old/extra/multimedia/festival-awb-arctic/PKGBUILD 2006-02-22 01:50:06.000000000 +0000 +++ new/extra/multimedia/festival-awb-arctic/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Scottish English male speaker (AWB), using excited residual LPC multisyn database." url="http://www.cstr.ed.ac.uk/projects/festival/" -license="" +license=() depends=('festival') source=("http://www.cstr.ed.ac.uk/downloads/festival/1.95/$_pkgnameorig-$pkgver.tar.g...") diff -Naur old/extra/multimedia/festival-don/PKGBUILD new/extra/multimedia/festival-don/PKGBUILD --- old/extra/multimedia/festival-don/PKGBUILD 2006-02-22 01:50:39.000000000 +0000 +++ new/extra/multimedia/festival-don/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="British English RP male speaker using using spike excited LPC diphone database" url="http://www.cstr.ed.ac.uk/projects/festival/" -license="" +license=() depends=('festival') source=("http://www.cstr.ed.ac.uk/downloads/festival/$pkgver/$_pkgnameorig.tar.gz") diff -Naur old/extra/multimedia/festival-kallpc16k/PKGBUILD new/extra/multimedia/festival-kallpc16k/PKGBUILD --- old/extra/multimedia/festival-kallpc16k/PKGBUILD 2006-02-22 01:50:52.000000000 +0000 +++ new/extra/multimedia/festival-kallpc16k/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="British English RP male speaker" url="http://www.cstr.ed.ac.uk/projects/festival/" -license="" +license=() depends=('festival') source=("http://www.cstr.ed.ac.uk/downloads/festival/$pkgver/$_pkgnameorig.tar.gz") diff -Naur old/extra/multimedia/festival-rablpc16k/PKGBUILD new/extra/multimedia/festival-rablpc16k/PKGBUILD --- old/extra/multimedia/festival-rablpc16k/PKGBUILD 2006-02-22 01:51:15.000000000 +0000 +++ new/extra/multimedia/festival-rablpc16k/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="British English RP male speaker" url="http://www.cstr.ed.ac.uk/projects/festival/" -license="" +license=() depends=('festival') source=("http://www.cstr.ed.ac.uk/downloads/festival/$pkgver/$_pkgnameorig.tar.gz") diff -Naur old/extra/multimedia/flashplayer-standalone/PKGBUILD new/extra/multimedia/flashplayer-standalone/PKGBUILD --- old/extra/multimedia/flashplayer-standalone/PKGBUILD 2007-07-18 03:51:49.000000000 +0100 +++ new/extra/multimedia/flashplayer-standalone/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Macromedia standalone flash player (nonfree)" url="http://www.macromedia.com/software/flashplayer/" -license="custom" +license=('custom') depends=('gtk2') conflicts=('gflashplayer-beta') replaces=('gflashplayer-beta') diff -Naur old/extra/multimedia/flashplugin/PKGBUILD new/extra/multimedia/flashplugin/PKGBUILD --- old/extra/multimedia/flashplugin/PKGBUILD 2007-07-18 03:51:49.000000000 +0100 +++ new/extra/multimedia/flashplugin/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -9,7 +9,7 @@ depends=('mozilla-common' 'libxt' 'gtk2') replaces=('flashplugin-beta') url="http://www.macromedia.com/software/flashplayer/" -license="custom" +license=('custom') source=(http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_playe... adobe_eula.txt) arch=('i686') diff -Naur old/extra/multimedia/flite/PKGBUILD new/extra/multimedia/flite/PKGBUILD --- old/extra/multimedia/flite/PKGBUILD 2005-11-13 06:29:39.000000000 +0000 +++ new/extra/multimedia/flite/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A lighweight version of festival speech synthesis" url="http://fife.speech.cs.cmu.edu/flite/" -license="" +license=() depends=('glibc') source=(http://fife.speech.cs.cmu.edu/flite/packed/$pkgname-$pkgver/$pkgname-$pkgver...) md5sums=('ae0aca1cb7b4801f4372f3a75a9e52b5') diff -Naur old/extra/multimedia/libvisual-projectm/PKGBUILD new/extra/multimedia/libvisual-projectm/PKGBUILD --- old/extra/multimedia/libvisual-projectm/PKGBUILD 2006-09-05 19:16:10.000000000 +0100 +++ new/extra/multimedia/libvisual-projectm/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="ProjectM XMMS plugin" arch=(i686) url="http://xmms-projectm.sourceforge.net" -license="GPL" +license=('GPL') depends=('projectm' 'libvisual>=0.4.0' 'sdl') makedepends=('pkgconfig') options=(NOLIBTOOL) diff -Naur old/extra/multimedia/mirage/PKGBUILD new/extra/multimedia/mirage/PKGBUILD --- old/extra/multimedia/mirage/PKGBUILD 2007-03-05 23:02:30.000000000 +0000 +++ new/extra/multimedia/mirage/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A simple GTK+ Image Viewer" url="http://mirageiv.berlios.de" -license="GPL" +license=('GPL') depends=('pygtk') source=(http://download.berlios.de/mirageiv/mirage-$pkgver.tar.gz) install=$pkgname.install diff -Naur old/extra/multimedia/mpc/PKGBUILD new/extra/multimedia/mpc/PKGBUILD --- old/extra/multimedia/mpc/PKGBUILD 2007-05-07 20:52:25.000000000 +0100 +++ new/extra/multimedia/mpc/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A command line tool for MPD" arch=('i686' 'x86_64') url="http://musicpd.org" -license="GPL" +license=('GPL') depends=('glibc') source=(http://musicpd.org/uploads/files/$pkgname-$pkgver.tar.gz) md5sums=('0be8cc9ba282f467631ee0b1b8a0c494') diff -Naur old/extra/multimedia/mytharchive/PKGBUILD new/extra/multimedia/mytharchive/PKGBUILD --- old/extra/multimedia/mytharchive/PKGBUILD 2007-02-18 06:52:43.000000000 +0000 +++ new/extra/multimedia/mytharchive/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'libxmu' 'mysql-python' 'pil' 'dvdauthor') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythbrowser/PKGBUILD new/extra/multimedia/mythbrowser/PKGBUILD --- old/extra/multimedia/mythbrowser/PKGBUILD 2007-02-18 06:53:51.000000000 +0000 +++ new/extra/multimedia/mythbrowser/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'wget' 'libxvmc' 'kdelibs') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythcontrols/PKGBUILD new/extra/multimedia/mythcontrols/PKGBUILD --- old/extra/multimedia/mythcontrols/PKGBUILD 2007-02-18 06:54:02.000000000 +0000 +++ new/extra/multimedia/mythcontrols/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythdvd/PKGBUILD new/extra/multimedia/mythdvd/PKGBUILD --- old/extra/multimedia/mythdvd/PKGBUILD 2007-03-11 22:43:59.000000000 +0000 +++ new/extra/multimedia/mythdvd/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -11,7 +11,7 @@ depends=('mythtv' 'libdvdread' 'nasm' 'a52dec' 'transcode' 'flac>=1.1.4' \ 'vorbis-tools' 'cdrtools' 'mplayer' 'libxvmc') groups=('mythtv-extras') -license="GPL" +license=('GPL') install="mythdvd.install" source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz mtd) diff -Naur old/extra/multimedia/mythflix/PKGBUILD new/extra/multimedia/mythflix/PKGBUILD --- old/extra/multimedia/mythflix/PKGBUILD 2007-02-18 06:54:27.000000000 +0000 +++ new/extra/multimedia/mythflix/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythgallery/PKGBUILD new/extra/multimedia/mythgallery/PKGBUILD --- old/extra/multimedia/mythgallery/PKGBUILD 2007-02-18 06:54:40.000000000 +0000 +++ new/extra/multimedia/mythgallery/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'libexif' 'libtiff') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythgame/PKGBUILD new/extra/multimedia/mythgame/PKGBUILD --- old/extra/multimedia/mythgame/PKGBUILD 2007-02-18 06:54:51.000000000 +0000 +++ new/extra/multimedia/mythgame/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'zlib') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythmusic/PKGBUILD new/extra/multimedia/mythmusic/PKGBUILD --- old/extra/multimedia/mythmusic/PKGBUILD 2007-03-11 22:38:45.000000000 +0000 +++ new/extra/multimedia/mythmusic/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -11,7 +11,7 @@ depends=('mythtv' 'libid3tag' 'libmad' 'libvorbis' 'flac>=1.1.4' 'libcdaudio' \ 'cdparanoia' 'fftw2' 'sdl' 'faad2' 'lame' ) groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz music_flac.patch) build() { diff -Naur old/extra/multimedia/mythnews/PKGBUILD new/extra/multimedia/mythnews/PKGBUILD --- old/extra/multimedia/mythnews/PKGBUILD 2007-02-18 06:55:24.000000000 +0000 +++ new/extra/multimedia/mythnews/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythphone/PKGBUILD new/extra/multimedia/mythphone/PKGBUILD --- old/extra/multimedia/mythphone/PKGBUILD 2007-02-18 06:55:46.000000000 +0000 +++ new/extra/multimedia/mythphone/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/myththemes/PKGBUILD new/extra/multimedia/myththemes/PKGBUILD --- old/extra/multimedia/myththemes/PKGBUILD 2007-02-18 07:01:03.000000000 +0000 +++ new/extra/multimedia/myththemes/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/$pkgname-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythvideo/PKGBUILD new/extra/multimedia/mythvideo/PKGBUILD --- old/extra/multimedia/mythvideo/PKGBUILD 2007-02-18 07:01:20.000000000 +0000 +++ new/extra/multimedia/mythvideo/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'mplayer' 'perlxml' 'perl-libwww' 'perl-uri' 'perl-xml-simple' 'ffmpeg') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythweather/PKGBUILD new/extra/multimedia/mythweather/PKGBUILD --- old/extra/multimedia/mythweather/PKGBUILD 2007-02-18 07:03:30.000000000 +0000 +++ new/extra/multimedia/mythweather/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'wget') groups=('mythtv-extras') -license="GPL" +license=('GPL') source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) build() { diff -Naur old/extra/multimedia/mythweb/PKGBUILD new/extra/multimedia/mythweb/PKGBUILD --- old/extra/multimedia/mythweb/PKGBUILD 2007-02-18 07:04:42.000000000 +0000 +++ new/extra/multimedia/mythweb/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ arch=('i686') depends=('mythtv' 'apache' 'php') groups=('mythtv-extras') -license="GPL" +license=('GPL') install="mythweb.install" source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz) diff -Naur old/extra/multimedia/ncmpc/PKGBUILD new/extra/multimedia/ncmpc/PKGBUILD --- old/extra/multimedia/ncmpc/PKGBUILD 2007-01-24 23:14:09.000000000 +0000 +++ new/extra/multimedia/ncmpc/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ arch=("i686" "x86_64") url="http://hem.bredband.net/kaw/ncmpc/" # url="http://www.musicpd.org/?page=ncmpc" -license="GPL" +license=('GPL') depends=('ncurses' 'glib2') source=("http://mercury.chem.pitt.edu/~shank/$pkgname-$pkgver.tar.gz") diff -Naur old/extra/multimedia/nuvexport/PKGBUILD new/extra/multimedia/nuvexport/PKGBUILD --- old/extra/multimedia/nuvexport/PKGBUILD 2007-02-18 03:56:38.000000000 +0000 +++ new/extra/multimedia/nuvexport/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Export for MythTV nuv files to other formats (DVD/SVCD/DivX,etc.)" arch=(i686 x86_64) url="http://forevermore.net/files/nuvexport" -license="" +license=() depends=(perl perl-dbi 'ffmpeg>=20060920' perl-dbd-mysql perl-date-manip) makedepends=() conflicts=() diff -Naur old/extra/multimedia/projectm/PKGBUILD new/extra/multimedia/projectm/PKGBUILD --- old/extra/multimedia/projectm/PKGBUILD 2006-09-05 19:14:51.000000000 +0100 +++ new/extra/multimedia/projectm/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A music visualizer which uses 3D accelerated iterative image based rendering" arch=(i686) url="http://xmms-projectm.sourceforge.net" -license="GPL" +license=('GPL') depends=('ftgl' 'glut') makedepends=('pkgconfig' 'xproto') install=projectm.install diff -Naur old/extra/multimedia/ptabtools/PKGBUILD new/extra/multimedia/ptabtools/PKGBUILD --- old/extra/multimedia/ptabtools/PKGBUILD 2007-04-24 01:50:09.000000000 +0100 +++ new/extra/multimedia/ptabtools/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Tools to convert PowerTab files to various formats." url="http://jelmer.vernstok.nl/oss/ptabtools/" -license="GPL" +license=('GPL') arch=('i686') depends=('popt' 'libxslt') source=(http://jelmer.vernstok.nl/releases/ptabtools-$pkgver.tar.gz) diff -Naur old/extra/multimedia/slimserver/PKGBUILD new/extra/multimedia/slimserver/PKGBUILD --- old/extra/multimedia/slimserver/PKGBUILD 2007-07-31 01:43:28.000000000 +0100 +++ new/extra/multimedia/slimserver/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -17,7 +17,7 @@ provides=('perl-yaml-syck') replaces=('perl-yaml-syck') url="http://www.slimdevices.com/pi_features.html" -license="GPL" +license=('GPL') arch=('i686') install=slimserver.install backup=home/slimserver/.slimserver.pref diff -Naur old/extra/multimedia/terminatorx/PKGBUILD new/extra/multimedia/terminatorx/PKGBUILD --- old/extra/multimedia/terminatorx/PKGBUILD 2006-05-20 19:43:38.000000000 +0100 +++ new/extra/multimedia/terminatorx/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Turntable emulator" url="http://terminatorx.org" -license="GPL" +license=('GPL') depends=(libxml2 gtk2 libcap alsa-lib liblrdf audiofile vorbis-tools mpg321 \ libxext libx11 libxi libxxf86dga sox libmad jack-audio-connection-kit \ scrollkeeper) diff -Naur old/extra/network/azureus/PKGBUILD new/extra/network/azureus/PKGBUILD --- old/extra/network/azureus/PKGBUILD 2007-06-30 14:08:19.000000000 +0100 +++ new/extra/network/azureus/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="BitTorrent client with GUI, written in Java" arch=(i686 x86_64) url="http://azureus.sourceforge.net/" -license="GPL" +license=('GPL') depends=('bash' 'gtk2' 'j2re' 'swt') source=(http://dl.sourceforge.net/sourceforge/azureus/Azureus${pkgver}.jar \ diff -Naur old/extra/network/bitlbee/PKGBUILD new/extra/network/bitlbee/PKGBUILD --- old/extra/network/bitlbee/PKGBUILD 2006-06-25 06:52:54.000000000 +0100 +++ new/extra/network/bitlbee/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An IRC to IM gateway. Supports MSN, ICQ, Jabber, Yahoo!, and AIM" arch=(i686) url="http://www.bitlbee.org/" -license="GPL" +license=('GPL') depends=('gnutls>=1.4.0' 'glib2' 'xinetd') install=bitlbee.install backup=(etc/bitlbee/bitlbee.conf etc/bitlbee/motd.txt etc/xinetd.d/bitlbee) diff -Naur old/extra/network/davfs2/PKGBUILD new/extra/network/davfs2/PKGBUILD --- old/extra/network/davfs2/PKGBUILD 2006-12-02 21:47:43.000000000 +0000 +++ new/extra/network/davfs2/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="File system driver that allows you to mount a WebDAV server as a local disk drive." arch=(i686 x86_64) url="http://dav.sourceforge.net" -license="GPL" +license=('GPL') depends=('neon>=0.25.5-4') backup=(etc/davfs2/davfs2.conf etc/davfs2/secrets) install=davfs2.install diff -Naur old/extra/network/denyhosts/PKGBUILD new/extra/network/denyhosts/PKGBUILD --- old/extra/network/denyhosts/PKGBUILD 2007-02-14 00:30:43.000000000 +0000 +++ new/extra/network/denyhosts/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="DenyHosts is a script to help thwart ssh server attacks" arch=(i686 x86_64) url="http://denyhosts.sourceforge.net/" -license="GPL" +license=('GPL') depends=('python') backup=('etc/denyhosts/denyhosts.cfg') source=(http://dl.sourceforge.net/sourceforge/$pkgname/DenyHosts-$pkgver.tar.gz \ diff -Naur old/extra/network/fcpci/PKGBUILD new/extra/network/fcpci/PKGBUILD --- old/extra/network/fcpci/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/fcpci/PKGBUILD 2007-08-03 13:50:18.000000000 +0100 @@ -7,7 +7,7 @@ _kernver=2.6.22-ARCH pkgdesc="AVM ISDN driver for FRITZ PCI isdn cards. For stock arch 2.6 kernel." arch=(i686 x86_64) -license=('custom:"AVM"' 'LGPL') +license=('custom:AVM' 'LGPL') url="http://www.avm.de" depends=('capi4k-utils' 'kernel26') source=(ftp://ftp.avm.de/cardware/fritzcrd.pci/linux/suse.93/fcpci-suse93-3.11-07.tar.gz \ diff -Naur old/extra/network/fcpci-ck/PKGBUILD new/extra/network/fcpci-ck/PKGBUILD --- old/extra/network/fcpci-ck/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/fcpci-ck/PKGBUILD 2007-08-03 13:51:13.000000000 +0100 @@ -7,7 +7,7 @@ _kernver=2.6.22-ck pkgdesc="AVM ISDN driver for FRITZ PCI isdn cards. For kernel26ck." arch=(i686 x86_64) -license=('custom:"AVM"' 'LGPL') +license=('custom:AVM' 'LGPL') url="http://www.avm.de" depends=('capi4k-utils' 'kernel26ck') source=(ftp://ftp.avm.de/cardware/fritzcrd.pci/linux/suse.93/fcpci-suse93-3.11-07.tar.gz \ diff -Naur old/extra/network/fcpcmcia/PKGBUILD new/extra/network/fcpcmcia/PKGBUILD --- old/extra/network/fcpcmcia/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/fcpcmcia/PKGBUILD 2007-08-03 13:51:18.000000000 +0100 @@ -9,7 +9,7 @@ _kernver=2.6.22-ARCH pkgdesc="AVM ISDN driver for FRITZ PCMCIA isdn cards. For stock arch 2.6 kernel" arch=(i686 x86_64) -license=('custom:"AVM"' 'LPGL') +license=('custom:AVM' 'LGPL') url="http://www.avm.de" depends=('capi4k-utils' 'kernel26') source=(ftp://ftp.avm.de/cardware/fritzcrd.pcm/linux/suse.93/fcpcmcia-suse93-3.11-07.tar.gz \ diff -Naur old/extra/network/fcpcmcia-ck/PKGBUILD new/extra/network/fcpcmcia-ck/PKGBUILD --- old/extra/network/fcpcmcia-ck/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/fcpcmcia-ck/PKGBUILD 2007-08-03 13:51:40.000000000 +0100 @@ -9,7 +9,7 @@ _kernver=2.6.22-ck pkgdesc="AVM ISDN driver for FRITZ PCMCIA isdn cards. For kernel26ck" arch=(i686 x86_64) -license=('custom:"AVM"' 'LPGL') +license=('custom:AVM' 'LGPL') url="http://www.avm.de" depends=('capi4k-utils' 'kernel26ck') source=(ftp://ftp.avm.de/cardware/fritzcrd.pcm/linux/suse.93/fcpcmcia-suse93-3.11-07.tar.gz \ diff -Naur old/extra/network/freepops/PKGBUILD new/extra/network/freepops/PKGBUILD --- old/extra/network/freepops/PKGBUILD 2007-06-30 14:08:19.000000000 +0100 +++ new/extra/network/freepops/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A program to convert webmail interfaces to pop3" arch=(i686 x86_64) url="http://freepops.sourceforge.net/" -license="GPL" +license=('GPL') depends=('curl' 'expat>=2.0') backup=('etc/freepops/config.lua') source=(http://downloads.sourceforge.net/sourceforge/freepops/${pkgname}-${pkgver}.tar.gz diff -Naur old/extra/network/getmail/PKGBUILD new/extra/network/getmail/PKGBUILD --- old/extra/network/getmail/PKGBUILD 2007-06-27 18:51:49.000000000 +0100 +++ new/extra/network/getmail/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="A POP3 mail retriever with reliable Maildir and command delivery." arch=(i686 x86_64) url="http://pyropus.ca/software/getmail" -license="GPL" +license=('GPL') depends=('python>=2.4') source=(http://pyropus.ca/software/getmail/old-versions/$pkgname-$pkgver.tar.gz) md5sums=('3ef2ef215c05a7bccdb1b05f75a69e8e') diff -Naur old/extra/network/intel-536ep/PKGBUILD new/extra/network/intel-536ep/PKGBUILD --- old/extra/network/intel-536ep/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/intel-536ep/PKGBUILD 2007-08-03 13:50:41.000000000 +0100 @@ -8,7 +8,7 @@ _kernver=2.6.22-ARCH pkgdesc="Intel Modem Drivers for 536EP chipset. For stock arch 2.6 kernel " arch=(i686 x86_64) -license=('custom:"INTEL536"') +license=('custom:INTEL536') url="http://linmodems.technion.ac.il/packages/Intel/" depends=('intel-536ep-utils' 'kernel26') source=(ftp://aiedownload.intel.com/df-support/9266/eng/Intel-536EP-4.71.tgz flip.patch compile.patch \ diff -Naur old/extra/network/intel-536ep-ck/PKGBUILD new/extra/network/intel-536ep-ck/PKGBUILD --- old/extra/network/intel-536ep-ck/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/intel-536ep-ck/PKGBUILD 2007-08-03 13:51:32.000000000 +0100 @@ -8,7 +8,7 @@ _kernver=2.6.22-ck pkgdesc="Intel Modem Drivers for 536EP chipset. For kernel26ck" arch=(i686 x86_64) -license=('custom:"INTEL536"') +license=('custom:INTEL536') url="http://linmodems.technion.ac.il/packages/Intel/" depends=('intel-536ep-utils' 'kernel26ck') source=(ftp://aiedownload.intel.com/df-support/9266/eng/Intel-536EP-4.71.tgz flip.patch compile.patch \ diff -Naur old/extra/network/intel-537/PKGBUILD new/extra/network/intel-537/PKGBUILD --- old/extra/network/intel-537/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/intel-537/PKGBUILD 2007-08-03 13:51:49.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=47 pkgdesc="Intel Modem Drivers for 537 chipsets. For stock arch 2.6 kernel" arch=(i686 x86_64) -license=('custom:"INTEL537"') +license=('custom:INTEL537') url="http://linmodems.technion.ac.il/packages/Intel/" depends=('intel-537-utils' 'kernel26') source=(ftp://aiedownload.intel.com/df-support/9284/eng/Intel-537EP-2.70.95.0-suse9.3.tgz flip.patch compile.patch \ diff -Naur old/extra/network/intel-537-ck/PKGBUILD new/extra/network/intel-537-ck/PKGBUILD --- old/extra/network/intel-537-ck/PKGBUILD 2007-07-24 19:53:01.000000000 +0100 +++ new/extra/network/intel-537-ck/PKGBUILD 2007-08-03 13:51:25.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=4 pkgdesc="Intel Modem Drivers for 537 chipsets. For kernel26ck" arch=(i686 x86_64) -license=('custom:"INTEL537"') +license=('custom:INTEL537') url="http://linmodems.technion.ac.il/packages/Intel/" depends=('intel-537-utils' 'kernel26ck') source=(ftp://aiedownload.intel.com/df-support/9284/eng/Intel-537EP-2.70.95.0-suse9.3.tgz flip.patch compile.patch \ diff -Naur old/extra/network/ipw3945-ucode/PKGBUILD new/extra/network/ipw3945-ucode/PKGBUILD --- old/extra/network/ipw3945-ucode/PKGBUILD 2007-04-09 00:47:13.000000000 +0100 +++ new/extra/network/ipw3945-ucode/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Intel Centrino Drivers firmware for IPW3945" arch=(i686 x86_64) url="http://www.bughost.org/ipw3945" -license="" +license=() depends=('udev') install=ipw3945-ucode.install source=(http://www.bughost.org/ipw3945/ucode/$pkgname-$pkgver.tgz) diff -Naur old/extra/network/ipw3945d/PKGBUILD new/extra/network/ipw3945d/PKGBUILD --- old/extra/network/ipw3945d/PKGBUILD 2007-04-09 00:51:46.000000000 +0100 +++ new/extra/network/ipw3945d/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Regulatory daemon for IPW3945" arch=(i686 x86_64) url="http://www.bughost.org/ipw3945" -license="" +license=() depends=('glibc') install=ipw3945d.install source=(http://www.bughost.org/ipw3945/daemon/$pkgname-$pkgver.tgz ipw3945d.rc) diff -Naur old/extra/network/mbrowse/PKGBUILD new/extra/network/mbrowse/PKGBUILD --- old/extra/network/mbrowse/PKGBUILD 2007-05-31 15:21:38.000000000 +0100 +++ new/extra/network/mbrowse/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgdesc="A SNMP MIB browser based on GTK and net-snmp." depends=('gtk' 'net-snmp>=5.4') arch=('i686') -license="GPL" +license=('GPL') url="http://www.kill-9.org/mbrowse" source=(http://www.kill-9.org/mbrowse/mbrowse-$pkgver.tar.gz gcc.patch) md5sums=('52c6b0a7ad9bcc7be70a35ed6b0d0d89' '7a05ce5d207ae3200c186db35b8eb206') diff -Naur old/extra/network/mod_hosts_access/PKGBUILD new/extra/network/mod_hosts_access/PKGBUILD --- old/extra/network/mod_hosts_access/PKGBUILD 2006-06-27 01:21:38.000000000 +0100 +++ new/extra/network/mod_hosts_access/PKGBUILD 2007-08-03 13:30:31.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="TCP wrappers (hosts.deny & hosts.allow) access control for Apache" url="http://httpd-garage.sourceforge.net/" -license="Apache" +license=('APACHE') depends=('apache' 'tcp_wrappers') install=mod_hosts_access.install source=(http://dl.sourceforge.net/httpd-garage/$pkgname-$pkgver.tar.bz2) diff -Naur old/extra/network/nss-mdns/PKGBUILD new/extra/network/nss-mdns/PKGBUILD --- old/extra/network/nss-mdns/PKGBUILD 2007-06-15 13:24:40.000000000 +0100 +++ new/extra/network/nss-mdns/PKGBUILD 2007-08-03 13:21:24.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="glibc plugin providing host name resolution via mDNS" arch=('i686' 'x86_64') url="http://0pointer.de/lennart/projects/nss-mdns/" -license=('lgpl') +license=('LGPL') depends=('glibc') makedepends=('pkgconfig') backup=('etc/mdns.allow') diff -Naur old/extra/network/pdns/PKGBUILD new/extra/network/pdns/PKGBUILD --- old/extra/network/pdns/PKGBUILD 2007-02-08 15:51:30.000000000 +0000 +++ new/extra/network/pdns/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A modern, advanced and high performance authoritative-only nameserver" arch=(i686 x86_64) url="http://www.powerdns.com" -license="GPL" +license=('GPL') depends=('gcc' 'zlib') makedepends=('boost') install=pdns.install diff -Naur old/extra/network/privoxy/PKGBUILD new/extra/network/privoxy/PKGBUILD --- old/extra/network/privoxy/PKGBUILD 2006-11-20 22:22:26.000000000 +0000 +++ new/extra/network/privoxy/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="a web proxy with advanced filtering capabilities" arch=(i686 x86_64) url="http://www.privoxy.org" -license="GPL" +license=('GPL') depends=('pcre') backup=(etc/privoxy/{config,trust,default.action,default.filter} \ etc/privoxy/{standard,user}.action etc/logrotate.d/privoxy) diff -Naur old/extra/network/pycmail/PKGBUILD new/extra/network/pycmail/PKGBUILD --- old/extra/network/pycmail/PKGBUILD 2007-03-28 20:48:21.000000000 +0100 +++ new/extra/network/pycmail/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A simple mail sorter written in python" url="http://melkor.dnp.fmph.uniba.sk/~garabik/pycmail.html" -license="" +license=() arch=('i686') depends=('python') source=("ftp://ftp.debian.org/debian/pool/main/p/pycmail/pycmail_$pkgver.tar.gz") diff -Naur old/extra/network/slmodem/PKGBUILD new/extra/network/slmodem/PKGBUILD --- old/extra/network/slmodem/PKGBUILD 2007-07-24 19:53:25.000000000 +0100 +++ new/extra/network/slmodem/PKGBUILD 2007-08-03 13:50:48.000000000 +0100 @@ -10,7 +10,7 @@ pkgdesc="Drivers for the Smartlink winmodems. For stock arch 2.6 kernel " arch=(i686 x86_64) -license=('custom:"Smartlink"') +license=('custom:Smartlink') url="http://linmodems.technion.ac.il/packages/smartlink/" depends=('kernel26' 'slmodem-utils') install=slmodem.install diff -Naur old/extra/network/slmodem-ck/PKGBUILD new/extra/network/slmodem-ck/PKGBUILD --- old/extra/network/slmodem-ck/PKGBUILD 2007-07-24 19:53:25.000000000 +0100 +++ new/extra/network/slmodem-ck/PKGBUILD 2007-08-03 13:50:55.000000000 +0100 @@ -10,7 +10,7 @@ pkgdesc="Drivers for the Smartlink winmodems. For kernel26ck " arch=(i686 x86_64) -license=('custom:"Smartlink"') +license=('custom:Smartlink') url="http://linmodems.technion.ac.il/packages/smartlink/" depends=('kernel26ck' 'slmodem-utils') install=slmodem.install diff -Naur old/extra/network/sshfs/PKGBUILD new/extra/network/sshfs/PKGBUILD --- old/extra/network/sshfs/PKGBUILD 2007-06-27 18:51:51.000000000 +0100 +++ new/extra/network/sshfs/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="FUSE client based on the SSH File Transfer Protocol." arch=(i686 x86_64) url="http://fuse.sourceforge.net/sshfs.html" -license="GPL" +license=('GPL') depends=('fuse' 'glib2' 'openssh') makedepends=('pkgconfig') source=(http://dl.sourceforge.net/sourceforge/fuse/$pkgname-fuse-$pkgver.tar.gz) diff -Naur old/extra/network/tomcat/PKGBUILD new/extra/network/tomcat/PKGBUILD --- old/extra/network/tomcat/PKGBUILD 2007-03-18 22:57:40.000000000 +0000 +++ new/extra/network/tomcat/PKGBUILD 2007-08-03 13:21:17.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Servlet container for Java Servlet and JavaServer Pages" url="http://tomcat.apache.org/" -license="apache" +license=('APACHE') depends=('jre') makedepends=('jdk') backup=(opt/tomcat/conf/server.xml opt/tomcat/conf/tomcat-users.xml \ diff -Naur old/extra/network/tor/PKGBUILD new/extra/network/tor/PKGBUILD --- old/extra/network/tor/PKGBUILD 2007-06-27 18:51:51.000000000 +0100 +++ new/extra/network/tor/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="TOR Client" arch=(i686 x86_64) url="http://tor.eff.org" -license="GPL" +license=('GPL') install=tor.install depends=('openssl' 'zlib' 'libevent') source=("http://tor.eff.org/dist/tor-$pkgver.tar.gz" "tor.conf" "tor.rc") diff -Naur old/extra/network/tsocks/PKGBUILD new/extra/network/tsocks/PKGBUILD --- old/extra/network/tsocks/PKGBUILD 2005-06-01 08:58:06.000000000 +0100 +++ new/extra/network/tsocks/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="a transparent SOCKS proxying library" url="http://tsocks.sourceforge.net" -license="GPL" +license=('GPL') depends=('glibc') source=(http://ftp1.sourceforge.net/tsocks/tsocks-$pkgver.tar.gz) md5sums=('51caefd77e5d440d0bbd6443db4fc0f8') diff -Naur old/extra/network/twisted/PKGBUILD new/extra/network/twisted/PKGBUILD --- old/extra/network/twisted/PKGBUILD 2007-03-02 11:05:55.000000000 +0000 +++ new/extra/network/twisted/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Asynchronous networking framework written in Python." arch=(i686 x86_64) url="http://twistedmatrix.com/projects/core/" -license="" +license=() depends=('python' 'pycrypto' 'zope-interface') source=(http://tmrc.mit.edu/mirror/twisted/Twisted/${pkgver%.*}/Twisted-${pkgver}.tar.bz2) md5sums=('56df2ae66db57932515a491c03bf514f') diff -Naur old/extra/network/twisted-web/PKGBUILD new/extra/network/twisted-web/PKGBUILD --- old/extra/network/twisted-web/PKGBUILD 2006-10-07 19:41:34.000000000 +0100 +++ new/extra/network/twisted-web/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="An HTTP protocol implementation together with clients and servers." arch=(i686 x86_64) url="http://twistedmatrix.com/projects/web2/" -license="" +license=() depends=('twisted') source=("http://tmrc.mit.edu/mirror/twisted/Web2/TwistedWeb${pkgver/./-}.tar.bz2") md5sums=('8973bd6b324534601aaa446dd0f63542') diff -Naur old/extra/network/vpnc/PKGBUILD new/extra/network/vpnc/PKGBUILD --- old/extra/network/vpnc/PKGBUILD 2007-02-21 18:51:12.000000000 +0000 +++ new/extra/network/vpnc/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="VPN client for cisco3000 VPN Concentrators" url="http://www.unix-ag.uni-kl.de/~massar/vpnc/" -license="GPL" +license=('GPL') depends=('libgcrypt') source=(http://www.unix-ag.uni-kl.de/~massar/vpnc/$pkgname-$pkgver.tar.gz \ vpnc.conf vpnc.rc) diff -Naur old/extra/network/webalizer/PKGBUILD new/extra/network/webalizer/PKGBUILD --- old/extra/network/webalizer/PKGBUILD 2007-03-17 21:49:31.000000000 +0000 +++ new/extra/network/webalizer/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A web statistics generator with geolizer built in." url="http://www.mrunix.net/webalizer/" -license="GPL" +license=('GPL') arch=('i686') depends=('gd' 'geoip') makedepends=() diff -Naur old/extra/network/wpa_supplicant_gui/PKGBUILD new/extra/network/wpa_supplicant_gui/PKGBUILD --- old/extra/network/wpa_supplicant_gui/PKGBUILD 2007-05-30 23:13:32.000000000 +0100 +++ new/extra/network/wpa_supplicant_gui/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A qt frontend utility providing key negotiation for WPA wireless networks" arch=(i686 x86_64) depends=('openssl' 'qt' 'wpa_supplicant=0.5.8') -license="GPL" +license=('GPL') url="http://hostap.epitest.fi/wpa_supplicant" source=(http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz) diff -Naur old/extra/network/zope-interface/PKGBUILD new/extra/network/zope-interface/PKGBUILD --- old/extra/network/zope-interface/PKGBUILD 2007-03-05 19:53:28.000000000 +0000 +++ new/extra/network/zope-interface/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Separate distribution of the zope.interface package used in Zope 3." arch=(i686 x86_64) url="http://www.zope.org/Products/ZopeInterface/" -license="" +license=() depends=('python') source=(http://www.zope.org/Products/ZopeInterface/$pkgver/zope.interface-$pkgver.ta...) md5sums=('93668855e37b4691c5c956665c33392c') diff -Naur old/extra/network/zsync/PKGBUILD new/extra/network/zsync/PKGBUILD --- old/extra/network/zsync/PKGBUILD 2006-12-22 17:03:09.000000000 +0000 +++ new/extra/network/zsync/PKGBUILD 2007-08-03 13:22:01.000000000 +0100 @@ -9,7 +9,7 @@ arch=(i686 x86_64) url="http://zsync.moria.org.uk/" depends=('glibc') -license=('artistic') +license=('PerlArtistic') #source=(http://belnet.dl.sourceforge.net/sourceforge/zsync/zsync-$pkgver.tar.gz) source=("http://zsync.moria.org.uk/download/zsync-$pkgver.tar.bz2") diff -Naur old/extra/office/aiksaurus/PKGBUILD new/extra/office/aiksaurus/PKGBUILD --- old/extra/office/aiksaurus/PKGBUILD 2005-11-08 09:39:49.000000000 +0000 +++ new/extra/office/aiksaurus/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A cross-platform, open-source thesaurus" url="http://aiksaurus.sourceforge.net/" -license="GPL" +license=('GPL') depends=('gtk2') source=(http://dl.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('3eae03b7c49843ccc9262e52846ea6b4') diff -Naur old/extra/office/antiword/PKGBUILD new/extra/office/antiword/PKGBUILD --- old/extra/office/antiword/PKGBUILD 2006-01-11 05:02:50.000000000 +0000 +++ new/extra/office/antiword/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Antiword is a free MS Word reader for Linux and RISC OS" url="http://www.winfield.demon.nl/" -license="GPL" +license=('GPL') depends=('glibc') install=antiword.install source=(http://www.winfield.demon.nl/linux/$pkgname-$pkgver.tar.gz \ diff -Naur old/extra/office/aspell-fi/PKGBUILD new/extra/office/aspell-fi/PKGBUILD --- old/extra/office/aspell-fi/PKGBUILD 2005-06-19 01:00:55.000000000 +0100 +++ new/extra/office/aspell-fi/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Finnish dictionary for aspell" url="http://aspell.net" -license="" +license=() depends=('aspell') conflicts=() replaces=() diff -Naur old/extra/office/epdfview/PKGBUILD new/extra/office/epdfview/PKGBUILD --- old/extra/office/epdfview/PKGBUILD 2007-04-22 19:22:13.000000000 +0100 +++ new/extra/office/epdfview/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ source=(http://www.emma-soft.com/projects/epdfview/chrome/site/releases/epdfview-$pk...) md5sums=('cce9edb41b4a8308e0ef0eea24b5a1ab') url="http://www.emma-soft.com/projects/epdfview/" -license="GPL" +license=('GPL') arch=(i686 x86_64) build() { diff -Naur old/extra/office/hplip/PKGBUILD new/extra/office/hplip/PKGBUILD --- old/extra/office/hplip/PKGBUILD 2007-05-31 15:18:39.000000000 +0100 +++ new/extra/office/hplip/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and some LaserJet." arch=(i686 x86_64) url="http://hplip.sourceforge.net/" -license="GPL" +license=('GPL') makedepends=('pyqt') depends=('cups' 'python' 'net-snmp>=5.4' 'ghostscript' 'foomatic-db-engine' 'libjpeg' 'portmap' 'libusb' 'gcc' 'libcups') replaces=('hpijs') diff -Naur old/extra/science/blas/PKGBUILD new/extra/science/blas/PKGBUILD --- old/extra/science/blas/PKGBUILD 2006-12-11 22:09:55.000000000 +0000 +++ new/extra/science/blas/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="Basic Linear Algebra Subprograms" url="http://www.netlib.org/blas" -license="custom" +license=('custom') depends=('glibc') makedepends=('gcc-fortran') source=(http://www.netlib.org/blas/blas.tgz Makefile license.txt) diff -Naur old/extra/science/ginac/PKGBUILD new/extra/science/ginac/PKGBUILD --- old/extra/science/ginac/PKGBUILD 2007-01-25 21:26:16.000000000 +0000 +++ new/extra/science/ginac/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="set of librariesthe creation of integrated systems that embed symbolic manipulations" url="http://www.ginac.de/" -license="GPL" +license=('GPL') depends=('cln') makedepends=('transfig') source=(http://www.ginac.de/$pkgname-$pkgver.tar.bz2) diff -Naur old/extra/science/tcoffee/PKGBUILD new/extra/science/tcoffee/PKGBUILD --- old/extra/science/tcoffee/PKGBUILD 2007-07-23 18:55:40.000000000 +0100 +++ new/extra/science/tcoffee/PKGBUILD 2007-08-03 13:16:12.000000000 +0100 @@ -6,7 +6,7 @@ pkgver=5.05 pkgrel=1 arch=('i686') -license=('gpl2') +license=('GPL2') pkgdesc="Tree based Consistency Objective Function For AlignmEnt Evaluation - T-Coffee" url="http://www.tcoffee.org/Projects_home_page/t_coffee_home_page.html" depends=('glibc') diff -Naur old/extra/science/tilp/PKGBUILD new/extra/science/tilp/PKGBUILD --- old/extra/science/tilp/PKGBUILD 2006-12-17 20:43:42.000000000 +0000 +++ new/extra/science/tilp/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="TI graphing calculator link/transfer program" arch=(i686 x86_64) url="http://tilp.info/" -license="GPL" +license=('GPL') depends=('libglade' 'libticalcs') options=('FORCE' 'NOLIBTOOL') source=("http://www.archlinux.org/~simo/tilp/tilp2.tar.gz") diff -Naur old/extra/science/xdrawchem/PKGBUILD new/extra/science/xdrawchem/PKGBUILD --- old/extra/science/xdrawchem/PKGBUILD 2007-07-06 16:24:18.000000000 +0100 +++ new/extra/science/xdrawchem/PKGBUILD 2007-08-03 13:49:37.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A two-dimensional molecule drawing program for Unix operating systems. It can read and write MDL Molfiles, and read ChemDraw text and binary files, to allow sharing between XDrawChem and other chemistry applications, and it can create images in popular formats like PNG and EPS." arch=('i686' 'x86_64') url="http://xdrawchem.sourceforge.net/" -license=('GPL' 'LGPL' 'custom:ARTISTIC') +license=('GPL' 'LGPL' 'PerlArtistic') depends=('qt>=3.3.5' 'libpng' 'openbabel>=2.1.0' 'ghostscript') source=(http://switch.dl.sourceforge.net/sourceforge/xdrawchem/$pkgname-$pkgver.tar.... license.html) md5sums=('6343d031b3ea19a6606831c89b8006b2' '8c2d33b5a049db65888d48d5de3f3523') diff -Naur old/extra/system/cpufrequtils/PKGBUILD new/extra/system/cpufrequtils/PKGBUILD --- old/extra/system/cpufrequtils/PKGBUILD 2006-06-23 05:47:09.000000000 +0100 +++ new/extra/system/cpufrequtils/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Userspace tools for the kernel cpufreq subsystem" arch=(i686 x86_64) url="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html" -license="GPL" +license=('GPL') depends=("sysfsutils") source=(http://www.kernel.org/pub/linux/utils/kernel/cpufreq/$pkgname-$pkgver.tar.bz... \ cpufreq.rcd cpufreq.confd) diff -Naur old/extra/system/dcfldd/PKGBUILD new/extra/system/dcfldd/PKGBUILD --- old/extra/system/dcfldd/PKGBUILD 2007-01-18 16:11:34.000000000 +0000 +++ new/extra/system/dcfldd/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="DCFL (DoD Computer Forensics Lab) dd replacement with hashing" arch=(i686 x86_64) url="http://dcfldd.sourceforge.net/" -license="" +license=() depends=(glibc) makedepends=() conflicts=() diff -Naur old/extra/system/dump/PKGBUILD new/extra/system/dump/PKGBUILD --- old/extra/system/dump/PKGBUILD 2007-05-28 16:37:57.000000000 +0100 +++ new/extra/system/dump/PKGBUILD 2007-08-03 13:31:09.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="dump and restore facilitate backups to tapedrive from ext2 and ext3 filesystems" arch=(i686 x86_64) url="http://dump.sourceforge.net/" -license="BSD" +license=('BSD') depends=('e2fsprogs') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('f89bb42d860c58b86b05d0734c9f3649') diff -Naur old/extra/system/efax/PKGBUILD new/extra/system/efax/PKGBUILD --- old/extra/system/efax/PKGBUILD 2005-06-28 19:21:14.000000000 +0100 +++ new/extra/system/efax/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A lightweight program for sending and receiving faxes using any fax modem (Class 1, 2 or 2.0)" url="http://www.cce.com/efax/" -license="" +license=() depends=() source=("ftp://ftp.metalab.unc.edu/pub/Linux/apps/serialcomm/fax/$pkgname-$pkgver.tar.gz") md5sums=('23bd3767f87c455c58ccae7f88bce725') diff -Naur old/extra/system/fuse/PKGBUILD new/extra/system/fuse/PKGBUILD --- old/extra/system/fuse/PKGBUILD 2007-05-07 23:04:22.000000000 +0100 +++ new/extra/system/fuse/PKGBUILD 2007-08-03 13:21:04.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="FUSE makes it possible to implement a filesystem in a userspace program." arch=(i686 x86_64) url="http://fuse.sourceforge.net/" -license="GPL-2" +license=('GPL2') depends=('glibc') makedepends=('pkgconfig') install=fuse.install diff -Naur old/extra/system/gparted/PKGBUILD new/extra/system/gparted/PKGBUILD --- old/extra/system/gparted/PKGBUILD 2007-04-14 15:41:06.000000000 +0100 +++ new/extra/system/gparted/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="A Partition Magic clone written in C++ using the Gtkmm toolkit" arch=(i686 x86_64) url="http://gparted.sourceforge.net" -license="GPL" +license=('GPL') depends=('parted>=1.8.6' 'gtkmm') makedepends=('intltool') install=('gparted.install') diff -Naur old/extra/system/help2man/PKGBUILD new/extra/system/help2man/PKGBUILD --- old/extra/system/help2man/PKGBUILD 2006-03-15 05:02:17.000000000 +0000 +++ new/extra/system/help2man/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Conversion tool to create man files" url="http://www.gnu.org/software/help2man/" -license="" +license=() depends=(glibc perl-locale-gettext) makedepends=() conflicts=() diff -Naur old/extra/system/mlocate/PKGBUILD new/extra/system/mlocate/PKGBUILD --- old/extra/system/mlocate/PKGBUILD 2007-05-30 10:16:04.000000000 +0100 +++ new/extra/system/mlocate/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Faster merging drop-in for slocate" arch=(i686 x86_64) url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate" -license="GPL" +license=('GPL') conflicts=('slocate') provides=('slocate') depends=('glibc') diff -Naur old/extra/system/netgo/PKGBUILD new/extra/system/netgo/PKGBUILD --- old/extra/system/netgo/PKGBUILD 2005-09-09 18:22:28.000000000 +0100 +++ new/extra/system/netgo/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="a tool for changing network settings quickly and easily" url="http://netgo.hjolug.org/" -license="GPL" +license=('GPL') depends=('qt') source=(http://netgo.hjolug.org/files/v$pkgver/netgo-$pkgver.tar.gz) diff -Naur old/extra/system/pacbuild/PKGBUILD new/extra/system/pacbuild/PKGBUILD --- old/extra/system/pacbuild/PKGBUILD 2007-03-13 06:41:39.000000000 +0000 +++ new/extra/system/pacbuild/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="A distributed build management system" arch=(i686 x86_64) url="http://groups.google.com/group/pacbuild" -license="GPL" +license=('GPL') depends=('python' 'snarf' 'python-sqlobject' 'python-pysqlite') backup=('etc/appleConfig.py' 'etc/strawberryConfig.py' 'etc/mkchroot.conf') source=(http://projects.xennet.org/pacbuild/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/system/re2c/PKGBUILD new/extra/system/re2c/PKGBUILD --- old/extra/system/re2c/PKGBUILD 2007-07-22 09:59:05.000000000 +0100 +++ new/extra/system/re2c/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="a tool for generating C-based recognizers from regular expressions." url="http://re2c.sourceforge.net/" -license="GPL" +license=('GPL') source=(http://downloads.sourceforge.net/sourceforge/re2c/re2c-${pkgver}.tar.gz) md5sums=('9304b70cdd50c475de351e6c2bc13546') build() { diff -Naur old/extra/system/rrdtool/PKGBUILD new/extra/system/rrdtool/PKGBUILD --- old/extra/system/rrdtool/PKGBUILD 2007-05-28 00:24:42.000000000 +0100 +++ new/extra/system/rrdtool/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ makedepends=('ruby' 'python') source=(http://oss.oetiker.ch/rrdtool/pub/rrdtool-$pkgver.tar.gz) url="http://www.rrdtool.org" -license="GPL" +license=('GPL') install=rrdtool.install build() { diff -Naur old/extra/system/schedtool/PKGBUILD new/extra/system/schedtool/PKGBUILD --- old/extra/system/schedtool/PKGBUILD 2006-12-02 22:04:59.000000000 +0000 +++ new/extra/system/schedtool/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -4,7 +4,7 @@ pkgname=schedtool pkgver=1.2.9 pkgrel=1 -license="GPL" +license=('GPL') pkgdesc="schedtool can be used to query or alter a process' scheduling policy under linux" url="http://freequaos.host.sk/schedtool/" source=(http://freequaos.host.sk/schedtool/$pkgname-$pkgver.tar.bz2) diff -Naur old/extra/system/squashfs-tools/PKGBUILD new/extra/system/squashfs-tools/PKGBUILD --- old/extra/system/squashfs-tools/PKGBUILD 2007-02-12 08:07:35.000000000 +0000 +++ new/extra/system/squashfs-tools/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux." url="http://squashfs.sourceforge.net" -license="GPL" +license=('GPL') depends=('zlib' 'glibc') source=(http://easynews.dl.sourceforge.net/sourceforge/squashfs/squashfs$_realver.ta...) md5sums=('e4818dbd8a81519ade8a41d26587c3f5') diff -Naur old/extra/system/srcpac/PKGBUILD new/extra/system/srcpac/PKGBUILD --- old/extra/system/srcpac/PKGBUILD 2007-05-01 04:37:02.000000000 +0100 +++ new/extra/system/srcpac/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="The pacman from-source wrapper" arch=(i686 x86_64) url="https://xentac.net" -license="" +license=() depends=(bash pacman) makedepends=(subversion) source=() diff -Naur old/extra/system/syslinux/PKGBUILD new/extra/system/syslinux/PKGBUILD --- old/extra/system/syslinux/PKGBUILD 2007-03-23 01:10:11.000000000 +0000 +++ new/extra/system/syslinux/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="a boot loader for the Linux operating system which operates off an MS-DOS/Windows FAT filesystem." url="http://syslinux.org" -license="GPL" +license=('GPL') depends=(mtools) makedepends=(nasm perl) conflicts=() diff -Naur old/extra/system/userui/PKGBUILD new/extra/system/userui/PKGBUILD --- old/extra/system/userui/PKGBUILD 2007-06-15 13:24:44.000000000 +0100 +++ new/extra/system/userui/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Software suspend userspace user interface" url="http://www.suspend2.net" -license="GPL" +license=('GPL') install=userui.install depends=() arch=('i686') diff -Naur old/extra/system/vbetool/PKGBUILD new/extra/system/vbetool/PKGBUILD --- old/extra/system/vbetool/PKGBUILD 2006-11-22 19:41:05.000000000 +0000 +++ new/extra/system/vbetool/PKGBUILD 2007-08-03 13:28:49.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="vbetool uses lrmi in order to run code from the video BIOS" url="http://www.srcf.ucam.org/~mjg59/vbetool/" -license="" +license=() depends=('glibc') makedepends=('pciutils') conflicts=() diff -Naur old/extra/x11/conky/PKGBUILD new/extra/x11/conky/PKGBUILD --- old/extra/x11/conky/PKGBUILD 2006-12-17 00:18:37.000000000 +0000 +++ new/extra/x11/conky/PKGBUILD 2007-08-03 13:30:06.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Conky is an advanced, highly configurable system monitor for X based on torsmo" arch=(i686 x86_64) url="http://conky.sourceforge.net/" -license="custom" +license=('custom') replaces=('torsmo') depends=('libxext' 'libsm' 'libxft' 'glib2' 'libxdamage') source=(http://optusnet.dl.sourceforge.net/sourceforge/conky/$pkgname-$pkgver.tar.bz...) diff -Naur old/extra/x11/habak/PKGBUILD new/extra/x11/habak/PKGBUILD --- old/extra/x11/habak/PKGBUILD 2006-02-19 23:45:44.000000000 +0000 +++ new/extra/x11/habak/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="A background changing app" url="http://fvwm-crystal.org" -license="" +license=() depends=('imlib2' 'libx11') source=(http://download.gna.org/fvwm-crystal/habak/$pkgver/$pkgname-$pkgver.tar.gz) md5sums=('bee5c394989367f7a4c5cb9ec99d307c') diff -Naur old/extra/x11/imwheel/PKGBUILD new/extra/x11/imwheel/PKGBUILD --- old/extra/x11/imwheel/PKGBUILD 2006-01-26 02:39:54.000000000 +0000 +++ new/extra/x11/imwheel/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Mouse Wheel Tool for XFree86/Xorg" url="http://imwheel.sourceforge.net" -license="" +license=() depends=(libxtst libxmu) makedepends=() conflicts=() diff -Naur old/extra/x11/metatheme/PKGBUILD new/extra/x11/metatheme/PKGBUILD --- old/extra/x11/metatheme/PKGBUILD 2005-10-02 16:55:08.000000000 +0100 +++ new/extra/x11/metatheme/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="a thin layer between QT+GTK2 toolkits and theme engines, creating unified API by which each theme engine can draw" url="http://metatheme.advel.cz/" -license="gpl" +license=('GPL') depends=('kdelibs' 'gtk2') makedepends=('j2sdk') source=($url/download/$pkgname-$pkgver.tar.bz2) diff -Naur old/extra/x11/mrxvt/PKGBUILD new/extra/x11/mrxvt/PKGBUILD --- old/extra/x11/mrxvt/PKGBUILD 2006-12-16 02:25:39.000000000 +0000 +++ new/extra/x11/mrxvt/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Mrxvt (previously known as materm) is a multi-tabbed X terminal emulator based on rxvt code" arch=(i686 x86_64) url="http://materm.sourceforge.net/index.html" -license="GPL" +license=('GPL') depends=('libpng' 'libjpeg' 'libxft' 'libxpm') replaces=('materm') source=(http://dl.sourceforge.net/sourceforge/materm/${pkgname}-${pkgver}.tar.gz \ diff -Naur old/extra/x11/nitrogen/PKGBUILD new/extra/x11/nitrogen/PKGBUILD --- old/extra/x11/nitrogen/PKGBUILD 2007-05-30 10:12:28.000000000 +0100 +++ new/extra/x11/nitrogen/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A background browser and setter for X windows" url="http://l3ib.org/nitrogen/" -license="GPL" +license=('GPL') depends=('gtkmm') arch=('i686') diff -Naur old/extra/x11/rxvt-unicode/PKGBUILD new/extra/x11/rxvt-unicode/PKGBUILD --- old/extra/x11/rxvt-unicode/PKGBUILD 2007-08-03 12:34:07.000000000 +0100 +++ new/extra/x11/rxvt-unicode/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -10,7 +10,7 @@ depends=('gcc' 'libxft' 'libxpm') makedepends=('ncurses' 'perl' 'pkgconfig') url="http://software.schmorp.de/pkg/rxvt-unicode.html" -license="GPL" +license=('GPL') source=(http://dist.schmorp.de/rxvt-unicode/${pkgname}-${pkgver}.tar.bz2 \ ${pkgname}.desktop ${pkgname}.png) md5sums=('c53043a5178e2eeb33578148d56f8f96' diff -Naur old/extra/x11/scim/PKGBUILD new/extra/x11/scim/PKGBUILD --- old/extra/x11/scim/PKGBUILD 2007-07-13 00:43:28.000000000 +0100 +++ new/extra/x11/scim/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -11,7 +11,7 @@ makedepends=('intltool') install=scim.install url="http://www.scim-im.org/projects/scim" -license=GPL +license=('BSD') source=(http://puzzle.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz \ scim.install) diff -Naur old/extra/x11/scim-anthy/PKGBUILD new/extra/x11/scim-anthy/PKGBUILD --- old/extra/x11/scim-anthy/PKGBUILD 2007-07-13 00:43:28.000000000 +0100 +++ new/extra/x11/scim-anthy/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="Japanese Anthy input method module for SCIM" arch=("i686" "x86_64") url="http://sourceforge.jp/projects/scim-imengine/" -license=GPL +license=('BSD') depends=('scim>=1.4.7' 'anthy>=9100') source=(http://osdn.dl.sourceforge.jp/scim-imengine/$sf_jp_index/$pkgname-$pkgver.ta...) diff -Naur old/extra/x11/scim-chewing/PKGBUILD new/extra/x11/scim-chewing/PKGBUILD --- old/extra/x11/scim-chewing/PKGBUILD 2007-07-13 00:43:28.000000000 +0100 +++ new/extra/x11/scim-chewing/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="SCIM Smart Chewing input method engine" arch=(i686 x86_64) url="http://chewing.csie.net/" -license="GPL" +license=('GPL') depends=('scim>=1.4.7' 'libchewing>=0.3.0') source=(http://chewing.csie.net/download/scim/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/x11/scim-m17n/PKGBUILD new/extra/x11/scim-m17n/PKGBUILD --- old/extra/x11/scim-m17n/PKGBUILD 2007-07-13 00:43:28.000000000 +0100 +++ new/extra/x11/scim-m17n/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="SCIM Input method using m17n library" arch=(i686 x86_64) url="http://www.scim-im.org/" -license=GPL +license=('BSD') depends=('scim>=1.4.7' 'm17n-lib>=1.3.4') source=(http://heanet.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/x11/scim-pinyin/PKGBUILD new/extra/x11/scim-pinyin/PKGBUILD --- old/extra/x11/scim-pinyin/PKGBUILD 2006-02-05 16:07:44.000000000 +0000 +++ new/extra/x11/scim-pinyin/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="Chinese 拼音 (PinYin) input for SCIM" url="http://www.scim-im.org/" -license=GPL +license=('BSD') depends=('scim>=1.4.4') source=(http://heanet.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/x11/scim-tables/PKGBUILD new/extra/x11/scim-tables/PKGBUILD --- old/extra/x11/scim-tables/PKGBUILD 2007-07-13 00:43:28.000000000 +0100 +++ new/extra/x11/scim-tables/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -8,7 +8,7 @@ pkgdesc="SCIM multi language input method engine (including CJK)" arch=(i686 x86_64) url="http://www.scim-im.org/" -license=GPL +license=('BSD') depends=('scim>=1.4.7') makedepends=('skim') source=(http://switch.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/x11/scim-uim/PKGBUILD new/extra/x11/scim-uim/PKGBUILD --- old/extra/x11/scim-uim/PKGBUILD 2007-07-13 00:43:28.000000000 +0100 +++ new/extra/x11/scim-uim/PKGBUILD 2007-08-03 13:31:30.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="UIM bridging input engine for SCIM" arch=(i686 x86_64) url="http://www.scim-im.org/" -license=GPL +license=('BSD') depends=('scim>=1.4.7' 'uim>=1.4.1') source=(http://heanet.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/x11/tango-icon-theme/PKGBUILD new/extra/x11/tango-icon-theme/PKGBUILD --- old/extra/x11/tango-icon-theme/PKGBUILD 2007-04-06 23:12:08.000000000 +0100 +++ new/extra/x11/tango-icon-theme/PKGBUILD 2007-08-03 13:35:10.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="The Tango Desktop Project exists to create a consistent user experience" url="http://tango.freedesktop.org" -license="CCPL-Attribution-ShareAlike-2.5" +license=('custom:CCPL-Attribution-ShareAlike-2.5') depends=('librsvg') makedepends=('imagemagick' 'icon-naming-utils') source=(http://tango.freedesktop.org/releases/$pkgname-$pkgver.tar.gz) diff -Naur old/extra/x11/trayer/PKGBUILD new/extra/x11/trayer/PKGBUILD --- old/extra/x11/trayer/PKGBUILD 2006-02-19 23:47:01.000000000 +0000 +++ new/extra/x11/trayer/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Swallows GTK 1.2/2.x application docklets, and KDE docklets." url="http://fvwm-crystal.org" -license="" +license=() depends=('gtk2') source=(http://download.gna.org/fvwm-crystal/trayer/$pkgver/$pkgname-$pkgver.tar.gz) md5sums=('e1b0b6464f991f2c296561e377585867') diff -Naur old/extra/x11/xpp/PKGBUILD new/extra/x11/xpp/PKGBUILD --- old/extra/x11/xpp/PKGBUILD 2006-05-12 02:15:53.000000000 +0100 +++ new/extra/x11/xpp/PKGBUILD 2007-08-03 13:28:48.000000000 +0100 @@ -4,7 +4,7 @@ pkgrel=2 pkgdesc="X Printing Panel" url="http://cups.sourceforge.net/xpp" -license="" +license=() depends=('cups' 'fltk') makedepends=('fltk') source=("http://download.sourceforge.net/cups/$pkgname-$pkgver.tar.bz2") diff -Naur old/extra/x11/xtermcontrol/PKGBUILD new/extra/x11/xtermcontrol/PKGBUILD --- old/extra/x11/xtermcontrol/PKGBUILD 2006-03-07 08:00:25.000000000 +0000 +++ new/extra/x11/xtermcontrol/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Enables dynamic control of XFree86 xterm properties" url="http://www.thrysoee.dk/xtermcontrol/" -license="GPL" +license=('GPL') depends=('glibc') source=(http://www.thrysoee.dk/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('dae4f7e6bb88235ea24e889bc0868758') diff -Naur old/extra/xfce4/mousepad/PKGBUILD new/extra/xfce4/mousepad/PKGBUILD --- old/extra/xfce4/mousepad/PKGBUILD 2007-04-16 08:38:15.000000000 +0100 +++ new/extra/xfce4/mousepad/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -6,7 +6,7 @@ pkgdesc="Simple Text Editor for Xfce4 (based on Gedit)" arch=(i686 x86_64) groups=('xfce4') -license="GPL" +license=('GPL') depends=('libxfcegui4>=4.4.1') makedepends=('pkgconfig' 'xfce-mcs-manager') options=('NOLIBTOOL') diff -Naur old/extra/xfce4/squeeze/PKGBUILD new/extra/xfce4/squeeze/PKGBUILD --- old/extra/xfce4/squeeze/PKGBUILD 2007-04-27 01:34:51.000000000 +0100 +++ new/extra/xfce4/squeeze/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -8,7 +8,7 @@ arch=('i686' 'x86_64') url="http://squeeze.xfce.org/" groups=('xfce4') -license="GPL" +license=('GPL') depends=('thunar>=0.8.0') makedepends=('pkgconfig' 'tar') options=('NOLIBTOOL') diff -Naur old/extra/xfce4/thunar-archive-plugin/PKGBUILD new/extra/xfce4/thunar-archive-plugin/PKGBUILD --- old/extra/xfce4/thunar-archive-plugin/PKGBUILD 2007-04-16 08:38:15.000000000 +0100 +++ new/extra/xfce4/thunar-archive-plugin/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="create and deflate archives in thunar" arch=(i686 x86_64) url="http://xfce-goodies.berlios.de/" -license="GPL" +license=('GPL') groups=('xfce4-goodies') depends=('thunar>=0.8') makedepends=('intltool' 'pkgconfig') diff -Naur old/extra/xfce4/thunar-media-tags-plugin/PKGBUILD new/extra/xfce4/thunar-media-tags-plugin/PKGBUILD --- old/extra/xfce4/thunar-media-tags-plugin/PKGBUILD 2007-04-16 08:38:15.000000000 +0100 +++ new/extra/xfce4/thunar-media-tags-plugin/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="Lets you view/edit id3/ogg tags in thunar" arch=(i686 x86_64) url="http://xfce-goodies.berlios.de/" -license="GPL" +license=('GPL') groups=('xfce4-goodies') depends=('taglib' 'thunar>=0.8') makedepends=('intltool' 'pkgconfig') diff -Naur old/extra/xfce4/thunar-volman/PKGBUILD new/extra/xfce4/thunar-volman/PKGBUILD --- old/extra/xfce4/thunar-volman/PKGBUILD 2007-04-16 19:41:24.000000000 +0100 +++ new/extra/xfce4/thunar-volman/PKGBUILD 2007-08-03 13:29:46.000000000 +0100 @@ -7,7 +7,7 @@ pkgdesc="automatic management for removeable devices in thunar" arch=(i686 x86_64) url="http://xfce-goodies.berlios.de/" -license="GPL" +license=('GPL') groups=('xfce4-goodies') depends=('thunar>=0.8') makedepends=('intltool' 'pkgconfig') diff -Naur old/testing/base/vi/PKGBUILD new/testing/base/vi/PKGBUILD --- old/testing/base/vi/PKGBUILD 2007-08-01 20:43:04.000000000 +0100 +++ new/testing/base/vi/PKGBUILD 2007-08-03 13:17:11.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="a highly configurable, improved version of the vi text editor (basic version)" arch=(i686 x86_64) -license=(CUSTOUM) +license=(custom) url="http://www.vim.org" depends=('glibc' 'ncurses') makedepends=('wget' 'sed' 'grep') diff -Naur old/testing/editors/vim/PKGBUILD new/testing/editors/vim/PKGBUILD --- old/testing/editors/vim/PKGBUILD 2007-08-01 20:43:04.000000000 +0100 +++ new/testing/editors/vim/PKGBUILD 2007-08-03 13:17:11.000000000 +0100 @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="a highly configurable, improved version of the vi text editor" arch=(i686 x86_64) -license=(CUSTOUM) +license=(custom) url="http://www.vim.org" depends=('vi' 'perl' 'python' 'ruby' 'acl' 'gpm' 'libxt') makedepends=('wget' 'sed' 'grep') diff -Naur old/testing/extra/network/dovecot/PKGBUILD new/testing/extra/network/dovecot/PKGBUILD --- old/testing/extra/network/dovecot/PKGBUILD 2007-07-15 18:45:49.000000000 +0100 +++ new/testing/extra/network/dovecot/PKGBUILD 2007-08-03 13:29:56.000000000 +0100 @@ -11,7 +11,7 @@ pkgdesc="An IMAP and POP3 server written with security primarily in mind" arch=('i686' 'x86_64') url="http://dovecot.org/" -license="LGPL" +license=('LGPL') depends=('pam' 'libmysqlclient' 'postgresql-libs>=8.2.3') makedepends=() provides=('imap-server' 'pop3-server')
On 8/3/07, Andrew Fyfe <andrew@neptune-one.net> wrote:
Travis Willard wrote:
Hey guys,
You may have noticed I added license information to a handful (~27ish) packages in [extra] - this email is just to keep you informed as to what I'm doing.
Right now, I'm just adding license fields where I can. For many of them, I'm simply searching Gentoo's package search and adding the licenses that come up there. If the package in question isn't in Gentoo's tree, I've been looking at the website and downloading sources. For custom licenses, I'm even adding the command at the end of the build() function to install the license to the proper directory.
What I'm NOT doing: . Rebuilding any of these packages - I doubt users would appreciate needing to redownload their whole systems to get updated license information only. . Updating any of these packages to newest version - I've already come across a couple that are definitively out of date, one whose sources I couldn't even download to add the proper license-installation instruction into the build() method. I'm not updating these - the point of what I'm doing is to add licenses, not make our entire repo uptodate. Maybe that'll come later. ;)
In any case, I think I'm done for tonight; I'm feeling pretty tired. If anyone wants to join me in this crusade, check out my thread entitled "Useful Scripts", grab the script that checks for bad licenses, and give it a run in your cvs dir for extra or unstable or community (making sure to run cvs update first!) - that'll give you a niiiice long list of packages that need tending to.
-- Travis
_______________________________________________ arch-dev-public mailing list arch-dev-public@archlinux.org http://archlinux.org/mailman/listinfo/arch-dev-public
Attached is a patch for each repo, they mainly contain - typo fixes - Artistic => PerlArtistic - zlib => custom:zlib - license="..." => license=(...) (aesthetic, but the license field should be a bash array)
The patches can be applied with `patch -Np1` (-Np2 for repo-current.patch) from /var/abs.
Andrew
Did anyone act on this? Doesn't seem like there is reason not to patch in some licenses stuff. If no one speaks up I guess it gets assigned to me. -Dan
On Mon, 20 Aug 2007 16:15:47 -0400 "Dan McGee" <dpmcgee@gmail.com> wrote:
On 8/3/07, Andrew Fyfe <andrew@neptune-one.net> wrote:
Travis Willard wrote:
Hey guys,
You may have noticed I added license information to a handful (~27ish) packages in [extra] - this email is just to keep you informed as to what I'm doing.
Right now, I'm just adding license fields where I can. For many of them, I'm simply searching Gentoo's package search and adding the licenses that come up there. If the package in question isn't in Gentoo's tree, I've been looking at the website and downloading sources. For custom licenses, I'm even adding the command at the end of the build() function to install the license to the proper directory.
What I'm NOT doing: . Rebuilding any of these packages - I doubt users would appreciate needing to redownload their whole systems to get updated license information only. . Updating any of these packages to newest version - I've already come across a couple that are definitively out of date, one whose sources I couldn't even download to add the proper license-installation instruction into the build() method. I'm not updating these - the point of what I'm doing is to add licenses, not make our entire repo uptodate. Maybe that'll come later. ;)
In any case, I think I'm done for tonight; I'm feeling pretty tired. If anyone wants to join me in this crusade, check out my thread entitled "Useful Scripts", grab the script that checks for bad licenses, and give it a run in your cvs dir for extra or unstable or community (making sure to run cvs update first!) - that'll give you a niiiice long list of packages that need tending to.
-- Travis
_______________________________________________ arch-dev-public mailing list arch-dev-public@archlinux.org http://archlinux.org/mailman/listinfo/arch-dev-public
Attached is a patch for each repo, they mainly contain - typo fixes - Artistic => PerlArtistic - zlib => custom:zlib - license="..." => license=(...) (aesthetic, but the license field should be a bash array)
The patches can be applied with `patch -Np1` (-Np2 for repo-current.patch) from /var/abs.
Andrew
Did anyone act on this? Doesn't seem like there is reason not to patch in some licenses stuff.
If no one speaks up I guess it gets assigned to me.
-Dan
Damnit, I meant to comment on this but I forgot. :( The problem with a patch against the whole repo based on what abs pulls down is that abs only grabs stuff that's tagged CURRENT, while there may be updates to packages that haven't been rebuilt yet; for example, any of the license-addition I've done isn't tagged CURRENT yet 'cause I didn't do any rebuilds. I'm not sure how cleanly the patch would apply. Anywho, I plan to do some more work on the license front shortly. -- Travis
On 8/20/07, Travis Willard <travis@archlinux.org> wrote:
On Mon, 20 Aug 2007 16:15:47 -0400 "Dan McGee" <dpmcgee@gmail.com> wrote:
On 8/3/07, Andrew Fyfe <andrew@neptune-one.net> wrote:
Travis Willard wrote:
Hey guys,
You may have noticed I added license information to a handful (~27ish) packages in [extra] - this email is just to keep you informed as to what I'm doing.
Right now, I'm just adding license fields where I can. For many of them, I'm simply searching Gentoo's package search and adding the licenses that come up there. If the package in question isn't in Gentoo's tree, I've been looking at the website and downloading sources. For custom licenses, I'm even adding the command at the end of the build() function to install the license to the proper directory.
What I'm NOT doing: . Rebuilding any of these packages - I doubt users would appreciate needing to redownload their whole systems to get updated license information only. . Updating any of these packages to newest version - I've already come across a couple that are definitively out of date, one whose sources I couldn't even download to add the proper license-installation instruction into the build() method. I'm not updating these - the point of what I'm doing is to add licenses, not make our entire repo uptodate. Maybe that'll come later. ;)
In any case, I think I'm done for tonight; I'm feeling pretty tired. If anyone wants to join me in this crusade, check out my thread entitled "Useful Scripts", grab the script that checks for bad licenses, and give it a run in your cvs dir for extra or unstable or community (making sure to run cvs update first!) - that'll give you a niiiice long list of packages that need tending to.
-- Travis
_______________________________________________ arch-dev-public mailing list arch-dev-public@archlinux.org http://archlinux.org/mailman/listinfo/arch-dev-public
Attached is a patch for each repo, they mainly contain - typo fixes - Artistic => PerlArtistic - zlib => custom:zlib - license="..." => license=(...) (aesthetic, but the license field should be a bash array)
The patches can be applied with `patch -Np1` (-Np2 for repo-current.patch) from /var/abs.
Andrew
Did anyone act on this? Doesn't seem like there is reason not to patch in some licenses stuff.
If no one speaks up I guess it gets assigned to me.
-Dan
Damnit, I meant to comment on this but I forgot. :(
The problem with a patch against the whole repo based on what abs pulls down is that abs only grabs stuff that's tagged CURRENT, while there may be updates to packages that haven't been rebuilt yet; for example, any of the license-addition I've done isn't tagged CURRENT yet 'cause I didn't do any rebuilds. I'm not sure how cleanly the patch would apply.
Anywho, I plan to do some more work on the license front shortly.
Patch should fail on a file-by-file basis, so it shouldn't be all that bad of a result. And just make sure you check the diff before you commit. -Dan
On Mon, 20 Aug 2007 18:05:52 -0400 "Dan McGee" <dpmcgee@gmail.com> wrote:
Patch should fail on a file-by-file basis, so it shouldn't be all that bad of a result. And just make sure you check the diff before you commit.
-Dan
Well, I made use of the patch in unstable, and finished off all packages in that repo tonight. In fact, I even cleaned out some files that were no longer necessary on top of everything. So, current status: [extra] rougly 1100 invalid or missing licenses found by my script [community] rougly 430 invalid or missing licenses [unstable] complete - no invalid or missing licenses Script attached to the email again if anyone wants to use it. I'm finding it particularily handy - and I updated it to check for custom licenses where the PKGBUILD doesn't reference usr/share/licenses - should weed out some incorrect custom licenses too. -- Travis
On Mon, 20 Aug 2007 23:17:11 -0400 Travis Willard <travis@archlinux.org> wrote:
On Mon, 20 Aug 2007 18:05:52 -0400 "Dan McGee" <dpmcgee@gmail.com> wrote:
Patch should fail on a file-by-file basis, so it shouldn't be all that bad of a result. And just make sure you check the diff before you commit.
-Dan
Well, I made use of the patch in unstable, and finished off all packages in that repo tonight. In fact, I even cleaned out some files that were no longer necessary on top of everything.
So, current status:
[extra] rougly 1100 invalid or missing licenses found by my script [community] rougly 430 invalid or missing licenses [unstable] complete - no invalid or missing licenses
Script attached to the email again if anyone wants to use it. I'm finding it particularily handy - and I updated it to check for custom licenses where the PKGBUILD doesn't reference usr/share/licenses - should weed out some incorrect custom licenses too.
-- Travis
Crap, duplicate message. Sorry for the spam.
Travis Willard wrote:
On Mon, 20 Aug 2007 18:05:52 -0400 "Dan McGee" <dpmcgee@gmail.com> wrote:
Patch should fail on a file-by-file basis, so it shouldn't be all that bad of a result. And just make sure you check the diff before you commit.
-Dan
Well, I made use of the patch in unstable, and finished off all packages in that repo tonight. In fact, I even cleaned out some files that were no longer necessary on top of everything.
So, current status:
[extra] rougly 1100 invalid or missing licenses found by my script [community] rougly 430 invalid or missing licenses [unstable] complete - no invalid or missing licenses
Script attached to the email again if anyone wants to use it. I'm finding it particularily handy - and I updated it to check for custom licenses where the PKGBUILD doesn't reference usr/share/licenses - should weed out some incorrect custom licenses too.
-- Travis
------------------------------------------------------------------------
_______________________________________________ arch-dev-public mailing list arch-dev-public@archlinux.org http://archlinux.org/mailman/listinfo/arch-dev-public I've dropped the patch into a git repository
current: http://neptune-one.homeip.net/git?p=abs/current;a=summary extra: http://neptune-one.homeip.net/git?p=abs/extra;a=summary There's 3 branches licenses: license field clean up makepkg_options: change no* to !* ... etc sourceforge: change all sf download urls to downloads.sf.net Andrew
On Mon, 20 Aug 2007 18:05:52 -0400 "Dan McGee" <dpmcgee@gmail.com> wrote:
Patch should fail on a file-by-file basis, so it shouldn't be all that bad of a result. And just make sure you check the diff before you commit.
-Dan
There, patch used in [unstable], and I finished all invalid-licensed packages there as well as cleaning up some files that belong to long-since-removed packages. I feel productive. So, as a status update: [extra] - roughly 1100 invalid or missing license fields [community] - roughly 430 invalid or missing license fields [unstable] - complete! no missing or invalid license fields. All this info is generated using my find-bad-licenses script, which I attached to a previous thread I started. However, I've made a small modification to check that packages using the custom license reference /usr/share/licenses somewhere - hopefully this will help weed out invalid custom licenses too. I've attached the updated script to this email. Let's get our official repos set up as an example for aspiring PKGBUILD-ers! -- Travis
participants (3)
-
Andrew Fyfe
-
Dan McGee
-
Travis Willard