diff options
author | root <root@rshg054.dnsready.net> | 2012-02-21 23:15:10 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-21 23:15:10 +0000 |
commit | 1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (patch) | |
tree | 5e44ad19f2672ee92283377c9fe6eab3c8a815d7 /extra | |
parent | 11484c032f8c236b2044e715a9a3b28e33f65598 (diff) |
Tue Feb 21 23:15:10 UTC 2012
Diffstat (limited to 'extra')
-rw-r--r-- | extra/aubio/PKGBUILD | 13 | ||||
-rw-r--r-- | extra/aubio/aubio-linking.patch | 33 | ||||
-rw-r--r-- | extra/bitlbee/PKGBUILD | 12 | ||||
-rw-r--r-- | extra/bitlbee/sbindir.patch | 14 | ||||
-rw-r--r-- | extra/ecl/PKGBUILD | 19 | ||||
-rw-r--r-- | extra/gnutls/PKGBUILD | 23 | ||||
-rw-r--r-- | extra/gnutls/buildfix.diff | 28 | ||||
-rw-r--r-- | extra/htop/ChangeLog | 3 | ||||
-rw-r--r-- | extra/htop/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/inkscape/PKGBUILD | 14 | ||||
-rw-r--r-- | extra/libpng/PKGBUILD | 19 | ||||
-rw-r--r-- | extra/monodevelop-debugger-gdb/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/monodevelop/PKGBUILD | 4 | ||||
-rw-r--r-- | extra/ncmpc/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/ntp/PKGBUILD | 25 | ||||
-rw-r--r-- | extra/ntp/logrotate.d | 4 | ||||
-rw-r--r-- | extra/totem/PKGBUILD | 26 | ||||
-rw-r--r-- | extra/transmission/PKGBUILD | 15 |
18 files changed, 179 insertions, 91 deletions
diff --git a/extra/aubio/PKGBUILD b/extra/aubio/PKGBUILD index e172e1fe1..29f3848d0 100644 --- a/extra/aubio/PKGBUILD +++ b/extra/aubio/PKGBUILD @@ -1,22 +1,27 @@ -# $Id: PKGBUILD 122072 2011-05-02 05:51:30Z andrea $ +# $Id: PKGBUILD 150683 2012-02-20 06:58:41Z allan $ # Maintainer: Tobias Kieslich tobias [funnychar] archlinux org # Contributor: Peter Baldwin <bald_pete@hotmail.com> # Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw> pkgname=aubio pkgver=0.3.2 -pkgrel=4 +pkgrel=5 pkgdesc="A library for audio labelling" arch=('i686' 'x86_64') url="http://aubio.org/" license=('GPL') depends=('libsamplerate' 'fftw' 'jack') options=('!libtool') -source=("http://aubio.org/pub/${pkgname}-${pkgver}.tar.gz") -md5sums=('ffc3e5e4880fec67064f043252263a44') +source=("http://aubio.org/pub/${pkgname}-${pkgver}.tar.gz" + aubio-linking.patch) +md5sums=('ffc3e5e4880fec67064f043252263a44' + '674259ce137ca28ef24bd62482829cd5') build() { cd "${srcdir}/${pkgname}-${pkgver}" + + patch -Np1 -i $srcdir/aubio-linking.patch + ./configure --prefix=/usr make } diff --git a/extra/aubio/aubio-linking.patch b/extra/aubio/aubio-linking.patch new file mode 100644 index 000000000..ea68335a4 --- /dev/null +++ b/extra/aubio/aubio-linking.patch @@ -0,0 +1,33 @@ +diff -rupN aubio-0.3.2.old/examples/Makefile.am aubio-0.3.2/examples/Makefile.am +--- aubio-0.3.2.old/examples/Makefile.am 2006-09-12 18:31:40.000000000 -0400 ++++ aubio-0.3.2/examples/Makefile.am 2010-02-10 04:06:51.000000000 -0500 +@@ -23,7 +23,7 @@ aubionotes_SOURCES = aubionotes.c utils. + aubiotrack_SOURCES = aubiotrack.c utils.c + aubioquiet_SOURCES = aubioquiet.c utils.c + +-aubioonset_LDADD = @JACK_LIBS@ +-aubionotes_LDADD = @JACK_LIBS@ +-aubiotrack_LDADD = @JACK_LIBS@ +-aubioquiet_LDADD = @JACK_LIBS@ ++aubioonset_LDADD = @JACK_LIBS@ -lm ++aubionotes_LDADD = @JACK_LIBS@ -lm ++aubiotrack_LDADD = @JACK_LIBS@ -lm ++aubioquiet_LDADD = @JACK_LIBS@ -lm +diff -rupN aubio-0.3.2.old/examples/Makefile.in aubio-0.3.2/examples/Makefile.in +--- aubio-0.3.2.old/examples/Makefile.in 2006-10-08 19:22:10.000000000 -0400 ++++ aubio-0.3.2/examples/Makefile.in 2010-02-10 04:07:00.000000000 -0500 +@@ -247,10 +247,10 @@ aubioonset_SOURCES = aubioonset.c utils. + aubionotes_SOURCES = aubionotes.c utils.c + aubiotrack_SOURCES = aubiotrack.c utils.c + aubioquiet_SOURCES = aubioquiet.c utils.c +-aubioonset_LDADD = @JACK_LIBS@ +-aubionotes_LDADD = @JACK_LIBS@ +-aubiotrack_LDADD = @JACK_LIBS@ +-aubioquiet_LDADD = @JACK_LIBS@ ++aubioonset_LDADD = @JACK_LIBS@ -lm ++aubionotes_LDADD = @JACK_LIBS@ -lm ++aubiotrack_LDADD = @JACK_LIBS@ -lm ++aubioquiet_LDADD = @JACK_LIBS@ -lm + all: all-recursive + + .SUFFIXES: diff --git a/extra/bitlbee/PKGBUILD b/extra/bitlbee/PKGBUILD index a6a7db581..8b2d98ebc 100644 --- a/extra/bitlbee/PKGBUILD +++ b/extra/bitlbee/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 150650 2012-02-19 02:03:57Z bisson $ +# $Id: PKGBUILD 150687 2012-02-20 07:58:47Z bisson $ # Contributor: FUBAR <mrfubar@gmail.com> # Contributor: simo <simo@archlinux.org> @@ -8,7 +8,7 @@ pkgname=bitlbee pkgver=3.0.5 -pkgrel=1 +pkgrel=2 pkgdesc='Brings instant messaging (XMPP, MSN, Yahoo!, AIM, ICQ, Twitter) to IRC' url='http://www.bitlbee.org/' license=('GPL') @@ -19,9 +19,11 @@ optdepends=('skype4py: to use skyped' 'libotr: for OTR encryption support' 'xinetd: to run bitlbee through xinetd') source=("http://get.bitlbee.org/src/${pkgname}-${pkgver}.tar.gz" - 'xinetd' - 'rc.d') + 'sbindir.patch' + 'xinetd' + 'rc.d') sha1sums=('74afdff87be49ce060771a6ae10d7643cd57b9b6' + '9b774e6d85471a4e43e25b8b941cd0e1032a7a6c' '5e0af27ba9cc4fe455e3381c75fc49a9326e2f17' 'be09d29af3853825778331df451f16ca9e452d03') @@ -31,6 +33,8 @@ install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i ../sbindir.patch + ./configure \ --prefix=/usr \ --etcdir=/etc/bitlbee \ diff --git a/extra/bitlbee/sbindir.patch b/extra/bitlbee/sbindir.patch new file mode 100644 index 000000000..7640508f7 --- /dev/null +++ b/extra/bitlbee/sbindir.patch @@ -0,0 +1,14 @@ +diff -aur old/Makefile new/Makefile +--- old/Makefile 2012-02-18 21:55:09.000000000 +1100 ++++ new/Makefile 2012-02-20 18:28:08.716130584 +1100 +@@ -135,8 +135,8 @@ + + systemd: + ifdef SYSTEMDSYSTEMUNITDIR +- sed 's|@sbindir@|$(BINDIR)|' init/bitlbee.service.in > init/bitlbee.service +- sed 's|@sbindir@|$(BINDIR)|' init/bitlbee@.service.in > init/bitlbee@.service ++ sed 's|@sbindir@|$(SBINDIR)|' init/bitlbee.service.in > init/bitlbee.service ++ sed 's|@sbindir@|$(SBINDIR)|' init/bitlbee@.service.in > init/bitlbee@.service + endif + + install-systemd: diff --git a/extra/ecl/PKGBUILD b/extra/ecl/PKGBUILD index 8ab9c23ef..f7281d31f 100644 --- a/extra/ecl/PKGBUILD +++ b/extra/ecl/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 127540 2011-06-16 08:47:04Z juergen $ +# $Id: PKGBUILD 150709 2012-02-20 22:31:08Z juergen $ # Contributor: John Proctor <jproctor@prium.net> # Maintainer: juergen <juergen@archlinux.org> pkgname=ecl -pkgver=11.1.1 +pkgver=12.2.1 pkgrel=1 pkgdesc="Embeddable Common Lisp" arch=('i686' 'x86_64') @@ -13,23 +13,26 @@ depends=('bash' 'gmp') makedepends=('texinfo') provides=('common-lisp' 'cl-asdf') options=('!makeflags') -source=(http://downloads.sourceforge.net/project/ecls/ecls/11.1/ecl-11.1.1.tar.gz) -md5sums=('6963cfa00e1c6d4a2123fd62100b02e6') +source=(http://downloads.sourceforge.net/project/ecls/ecls/12.2/ecl-12.2.1.tgz) +md5sums=('1a54b733e7cd07af2b1cb6d7f8b716d2') build() { cd $srcdir/$pkgname-$pkgver - sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure || return 1 + sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure ./configure --build=$CHOST \ --prefix=/usr \ --with-tcp \ --with-clos-streams \ --enable-shared \ - --enable-boehm=local \ + --enable-boehm=included \ --with-system-gmp \ --without-x \ --without-clx \ --disable-threads - make || return 1 - make DESTDIR=$pkgdir install || return 1 + make } + +package() { + make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install +}
\ No newline at end of file diff --git a/extra/gnutls/PKGBUILD b/extra/gnutls/PKGBUILD index b06ef1e30..693639a4a 100644 --- a/extra/gnutls/PKGBUILD +++ b/extra/gnutls/PKGBUILD @@ -1,27 +1,32 @@ -# $Id: PKGBUILD 147016 2012-01-20 19:27:51Z andyrtr $ +# $Id: PKGBUILD 150689 2012-02-20 10:15:52Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gnutls -pkgver=3.0.12 -pkgrel=1 +pkgver=3.0.13 +pkgrel=2 pkgdesc="A library which provides a secure layer over a reliable transport layer" arch=('i686' 'x86_64') license=('GPL3' 'LGPL') url="http://www.gnu.org/software/gnutls/" install=gnutls.install -options=('!libtool' '!zipman' '!makeflags') -depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit') -makedepends=('valgrind') -source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz) -md5sums=('685fe5c00786c04b39e9aac362fa0cac') +options=('!libtool' '!zipman') +depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit>=0.11') +makedepends=('valgrind' 'strace') +source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz{,.sig} + buildfix.diff) +md5sums=('ec549be557f31ea8c1738cb441ef23ec' + 'a6a9a1d148abd6377e7634eb03bdaf7c' + '9b2a32b41391d95aeb8ddae3756fa191') build() { cd "${srcdir}/${pkgname}-${pkgver}" + # fix hanging make check - http://git.savannah.gnu.org/gitweb/?p=gnutls.git;a=commit;h=642e6b5ca996325dc0ca6401a3b87039408b2585 + patch -Np1 -i ${srcdir}/buildfix.diff ./configure --prefix=/usr \ --with-zlib \ --disable-static \ --disable-guile \ - --enable-valgrind-tests # x86_64 test are all passed. some fail in i686 chroot + --enable-valgrind-tests make } diff --git a/extra/gnutls/buildfix.diff b/extra/gnutls/buildfix.diff new file mode 100644 index 000000000..23c749e9d --- /dev/null +++ b/extra/gnutls/buildfix.diff @@ -0,0 +1,28 @@ +index 17f6d3f..cc01dcd 100644 (file) + + +--- a/tests/mini-loss-time.c ++++ b/tests/mini-loss-time.c +@@ -267,6 +267,7 @@ static void start (int server_packet, int client_packet) + { + /* parent */ + server (fd[0], server_packet); ++ kill(child, SIGTERM); + } + else + { +--- a/src/libopts/m4/libopts.m4 ++++ b/src/libopts/m4/libopts.m4 +@@ -487,9 +487,9 @@ AC_DEFUN([LIBOPTS_CHECK_COMMON],[ + fi]) + + AC_ARG_ENABLE([libopts-install], +- AC_HELP_STRING([--disable-libopts-install], +- [Do not install libopts with client installation])) +- AM_CONDITIONAL([INSTALL_LIBOPTS],[test "X${enable_libopts_install}" != Xno]) ++ AC_HELP_STRING([--enable-libopts-install], ++ [Install libopts with client installation])) ++ AM_CONDITIONAL([INSTALL_LIBOPTS],[test "X${enable_libopts_install}" = Xyes]) + + [if test -z "${NEED_LIBOPTS_DIR}" ; then] + AC_MSG_CHECKING([whether autoopts-config can be found]) diff --git a/extra/htop/ChangeLog b/extra/htop/ChangeLog index df71cf644..94fd62244 100644 --- a/extra/htop/ChangeLog +++ b/extra/htop/ChangeLog @@ -1,3 +1,6 @@ +2012-02-19 Angel Velasquez <angvp@archlinux.org> + * Version bump to 1.0.1 + 2011-10-19 Andrea Scarpino <andrea@archlinux.org> * Enable cgroup support (FS#26155) * Add lsof and strace optional depends (FS#25778) diff --git a/extra/htop/PKGBUILD b/extra/htop/PKGBUILD index 33979e0c0..3f17df113 100644 --- a/extra/htop/PKGBUILD +++ b/extra/htop/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 143218 2011-11-23 13:59:27Z angvp $ +# $Id: PKGBUILD 150717 2012-02-21 01:27:23Z angvp $ # Maintainer: Angel Velasquez <angvp@archlinux.org> # Contributor: Eric Belanger <eric@archlinux.org> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=htop -pkgver=1.0 +pkgver=1.0.1 pkgrel=1 pkgdesc="Interactive process viewer" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ optdepends=('lsof' 'strace') options=('!emptydirs') changelog=ChangeLog source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('325112ca7947ea1f6d6441f631e00384') +md5sums=('d3b80d905a6bff03f13896870787f901') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/inkscape/PKGBUILD b/extra/inkscape/PKGBUILD index be826fe97..eefafb29f 100644 --- a/extra/inkscape/PKGBUILD +++ b/extra/inkscape/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 150261 2012-02-16 04:08:19Z bisson $ +# $Id: PKGBUILD 150685 2012-02-20 07:56:26Z bisson $ # Contributor: tobias <tobias@archlinux.org> # Contributor: Tobias Kieslich <tobias@justdreams.de> # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=inkscape -pkgver=0.48.3 +pkgver=0.48.3.1 pkgrel=1 pkgdesc='Vector graphics editor using the SVG file format' url='http://inkscape.sourceforge.net/' license=('GPL' 'LGPL') arch=('i686' 'x86_64') -makedepends=('boost' 'pkg-config' 'intltool') -depends=('gc' 'gtkmm' 'poppler-glib' 'libxslt' 'gsl' 'popt' 'python2' - 'gtkspell' 'imagemagick' 'desktop-file-utils' 'hicolor-icon-theme') +makedepends=('boost' 'intltool') +depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib' 'popt' + 'python2' 'desktop-file-utils' 'hicolor-icon-theme') optdepends=('pstoedit: latex formulas' 'texlive-core: latex formulas' 'python2-numpy: some extensions' @@ -22,7 +22,7 @@ optdepends=('pstoedit: latex formulas' options=('!libtool') source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz" 'libpng15.patch') -sha1sums=('937c1376bb0d9c00b22b88525826257d67ce237b' +sha1sums=('9a09a97d184e09c2ee7f9956bfe073b7313e919e' 'd6512f3cb38ca8e2436dc485aa652490d17b3a52') install=install @@ -42,8 +42,6 @@ build() { --prefix=/usr \ --with-python \ --with-perl \ - --without-gnome-vfs \ - --with-xft \ --enable-lcms \ --enable-poppler-cairo \ --disable-dependency-tracking \ diff --git a/extra/libpng/PKGBUILD b/extra/libpng/PKGBUILD index df660bafa..d9e496b3d 100644 --- a/extra/libpng/PKGBUILD +++ b/extra/libpng/PKGBUILD @@ -1,13 +1,13 @@ -# $Id: PKGBUILD 150423 2012-02-17 13:27:22Z ibiru $ +# $Id: PKGBUILD 150693 2012-02-20 11:05:39Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: dorphell <dorphell@archlinux.org> # Contributor: Travis Willard <travis@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> pkgname=libpng -pkgver=1.5.8 -_apngver=1.5.8 -pkgrel=2 +pkgver=1.5.9 +_apngver=1.5.9 +pkgrel=1 pkgdesc="A collection of routines used to create PNG format graphics files" arch=('i686' 'x86_64') url="http://www.libpng.org/pub/png/libpng.html" @@ -15,11 +15,9 @@ license=('custom') depends=('zlib' 'sh') options=('!libtool') source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz" - "http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz" - CVE-2011-3026.patch) -md5sums=('0f7ae352beadaff78073733905613041' - '158772fecdc6d8591bcd382c04da334c' - 'e3f19c889e57135eed66d0a3a22e2912') + "http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz") +md5sums=('05d9ab3705c34954c0032b71318b678a' + '268f7db97b292d5f14a24ea7940f6f1c') build() { cd "$srcdir/$pkgname-$pkgver" @@ -28,9 +26,6 @@ build() { # see http://sourceforge.net/projects/libpng-apng/ patch -p1 -i "$srcdir/libpng-$_apngver-apng.patch" - #CVE-2011-3026 - patch -Np1 -i "$srcdir/CVE-2011-3026.patch" - ./configure --prefix=/usr make } diff --git a/extra/monodevelop-debugger-gdb/PKGBUILD b/extra/monodevelop-debugger-gdb/PKGBUILD index fb6bb316e..a53c4565c 100644 --- a/extra/monodevelop-debugger-gdb/PKGBUILD +++ b/extra/monodevelop-debugger-gdb/PKGBUILD @@ -1,16 +1,16 @@ # Maintainer: Daniel Isenmann <daniel@archlinux.org> pkgname=monodevelop-debugger-gdb -pkgver=2.8.6.3 +pkgver=2.8.6.5 pkgrel=1 pkgdesc="Mono Debugger support" arch=('i686' 'x86_64') url="http://monodevelop.com" license=('GPL') -depends=('monodevelop>=2.8.6.3' 'gdb') +depends=('monodevelop>=2.8.6.5' 'gdb') makedepends=('mono') source=(http://download.mono-project.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2) -md5sums=('fe3ffc78fdac028aece6cd2cde0bccc3') +md5sums=('352f387e0563dba2617f92efd71d0fb6') build() { export MONO_SHARED_DIR="${srcdir}/.wabi" diff --git a/extra/monodevelop/PKGBUILD b/extra/monodevelop/PKGBUILD index c0e3aedc0..9bed37472 100644 --- a/extra/monodevelop/PKGBUILD +++ b/extra/monodevelop/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Giovanni Scafora <giovanni@archlinux.org> pkgname=monodevelop -pkgver=2.8.6.3 +pkgver=2.8.6.5 pkgrel=1 pkgdesc="An IDE primarily designed for C# and other .NET languages" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp' 'gecko-sharp-2.0>=0.1 options=(!makeflags) install=monodevelop.install source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('54f55372d856206244a1580a2ac70859') +md5sums=('5b4b2d17bd400592e680ec1553449f69') build() { export MONO_SHARED_DIR=$srcdir/src/.wabi diff --git a/extra/ncmpc/PKGBUILD b/extra/ncmpc/PKGBUILD index 901e9f73f..63fdf1565 100644 --- a/extra/ncmpc/PKGBUILD +++ b/extra/ncmpc/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 132708 2011-07-25 01:06:16Z angvp $ +# $Id: PKGBUILD 150715 2012-02-21 01:22:44Z angvp $ # Maintainer: Angel Velasquez <angvp@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: damir <damir@archlinux.org> # Contributor: Daniel Bainton <dpb [at] backarrow.org> pkgname=ncmpc -pkgver=0.19 +pkgver=0.20 pkgrel=1 pkgdesc="A ncurses (command line) interface for MPD" arch=("i686" "x86_64") @@ -15,7 +15,7 @@ depends=('ncurses' 'glib2' 'libmpdclient') optdepends=('python2: to enable lyrics plugin' 'ruby: to enable lyrics plugin') source=("http://downloads.sourceforge.net/musicpd/${pkgname}-${pkgver}.tar.bz2") -md5sums=('d298ad1313ef3a522ef03367f8a1ffc0') +md5sums=('62b9df0263d9567babf7446c258acc5d') build() { cd ${srcdir}/${pkgname}-${pkgver} diff --git a/extra/ntp/PKGBUILD b/extra/ntp/PKGBUILD index 8da3f4178..d928156f3 100644 --- a/extra/ntp/PKGBUILD +++ b/extra/ntp/PKGBUILD @@ -1,28 +1,30 @@ -# $Id: PKGBUILD 145791 2012-01-01 01:38:19Z bisson $ +# $Id: PKGBUILD 150713 2012-02-21 01:06:35Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: kevin <kevin@archlinux.org> pkgname=ntp pkgver=4.2.6.p5 _realver=4.2.6p5 -pkgrel=2 +pkgrel=3 pkgdesc='Network Time Protocol reference implementation' url='http://www.ntp.org/' license=('custom') arch=('i686' 'x86_64') -depends=('openssl' 'readline' 'libcap') makedepends=('perl-html-parser') +depends=('openssl' 'readline' 'libcap') backup=('etc/ntp.conf' 'etc/conf.d/ntpd.conf') source=("http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${_realver}.tar.gz" 'ntpd' 'ntpdate' 'ntp.conf' - 'ntpd.conf') + 'ntpd.conf' + 'logrotate.d') sha1sums=('4a5353a4791b6f4315a66c28d504ec6c7926b192' '4e324e625c1f080b5c028be5092aa71adbf9bd99' '01394b8a952f5edc85d19df8335eeac3980320f4' 'f6fa4838a33a3abcdd168a37b3f4a2dddd60472e' - '6cfcb7bbd34499b30e31dffca2f3e1a036010271') + '6cfcb7bbd34499b30e31dffca2f3e1a036010271' + '4f76f7f9ffc8315ff9924f793f272d4f6939b816') install=install @@ -42,21 +44,18 @@ package() { make DESTDIR="${pkgdir}" install + rmdir "${pkgdir}"/usr/{lib,sbin} + install -d "${pkgdir}"/var/lib/ntp install -Dm755 ../ntpd "${pkgdir}"/etc/rc.d/ntpd install -Dm755 ../ntpdate "${pkgdir}"/etc/rc.d/ntpdate install -Dm644 ../ntp.conf "${pkgdir}"/etc/ntp.conf install -Dm644 ../ntpd.conf "${pkgdir}"/etc/conf.d/ntpd.conf - + install -Dm644 ../logrotate.d "${pkgdir}"/etc/logrotate.d/ntpd + install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + cd html ../scripts/html2man install -d "${pkgdir}"/usr/share/man mv man/man* "${pkgdir}"/usr/share/man mv "${pkgdir}/usr/share/man/man8/ntpd.8" "${pkgdir}/usr/share/man/man8/ntp-ntpd.8" # we should ditch openntpd - cd .. - - rmdir "${pkgdir}"/usr/{lib,sbin} - install -d "${pkgdir}/var/lib/ntp" - install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - - touch "${pkgdir}"/var/lib/ntp/.placeholder } diff --git a/extra/ntp/logrotate.d b/extra/ntp/logrotate.d new file mode 100644 index 000000000..8a9f066c3 --- /dev/null +++ b/extra/ntp/logrotate.d @@ -0,0 +1,4 @@ +/var/log/ntp.log { + missingok + copytruncate +} diff --git a/extra/totem/PKGBUILD b/extra/totem/PKGBUILD index 2ab70e259..c164aa418 100644 --- a/extra/totem/PKGBUILD +++ b/extra/totem/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 140955 2011-10-20 05:44:18Z ibiru $ +# $Id: PKGBUILD 150691 2012-02-20 11:01:31Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgbase=totem pkgname=('totem' 'totem-plugin') -pkgver=3.2.1 +pkgver=3.2.2 pkgrel=1 pkgdesc="A GNOME3 integrated movie player based on Gstreamer." url="http://www.gnome.org" @@ -13,14 +13,14 @@ depends=('gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'totem-plpars 'libxtst' 'desktop-file-utils' 'iso-codes' 'python2' 'libpeas' 'hicolor-icon-theme' 'gnome-icon-theme-symbolic' 'gsettings-desktop-schemas' 'dconf' 'clutter-gst' 'clutter-gtk' 'mx') -makedepends=('intltool' 'gtk-doc' 'python2-gobject' 'nautilus' 'libgdata' 'xulrunner' 'lirc-utils' +makedepends=('intltool' 'gtk-doc' 'python2-gobject' 'nautilus' 'libgdata' 'lirc-utils' 'libepc' 'bluez' 'vala' 'grilo') options=('!libtool' '!emptydirs') -source=(http://ftp.gnome.org/pub/gnome/sources/${pkgbase}/${pkgver%.*}/${pkgbase}-${pkgver}.tar.xz) -sha256sums=('e3af3281bde6666af4c7f9594b090087657b06c98e96212b11531269e2ee40a4') +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz) +sha256sums=('b065e486e6b70b27d3a589e70c5459ff16a7affeff0b219ead5942585d4d0c9a') build() { - cd "${srcdir}/${pkgbase}-${pkgver}" + cd "$srcdir/$pkgbase-$pkgver" ./configure --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib/totem \ @@ -44,27 +44,27 @@ package_totem() { 'grilo-plugins: Browse sidebar (remote media)' 'pyxdg: opensubtitles plugin') - cd "${srcdir}/${pkgbase}-${pkgver}" + cd "$srcdir/$pkgbase-$pkgver" make DESTDIR="${pkgdir}" install - rm -r "${pkgdir}/usr/lib/mozilla" + rm -r "$pkgdir/usr/lib/mozilla" rm "${pkgdir}/usr/lib/totem/totem-plugin-viewer" sed -i "s|#!/usr/bin/python$|#!/usr/bin/python2|" \ $pkgdir/usr/lib/totem/{totem/totem-bugreport.py,plugins/iplayer/iplayer2.py} - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/totem/COPYING" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/totem/COPYING" } package_totem-plugin() { pkgdesc="Totem plugin for web browsers" - depends=("totem=${pkgver}") + depends=("totem=$pkgver") - cd "${srcdir}/${pkgbase}-${pkgver}" + cd "$srcdir/$pkgbase-$pkgver" make -C browser-plugin \ plugindir=/usr/lib/mozilla/plugins \ xptdir=/usr/lib/mozilla/plugins \ - DESTDIR="${pkgdir}" install + DESTDIR="$pkgdir" install - install -Dm644 COPYING "${pkgdir}/usr/share/licenses/totem-plugin/COPYING" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/totem-plugin/COPYING" } diff --git a/extra/transmission/PKGBUILD b/extra/transmission/PKGBUILD index 2d43a286b..675c7f5b3 100644 --- a/extra/transmission/PKGBUILD +++ b/extra/transmission/PKGBUILD @@ -1,28 +1,25 @@ -# $Id: PKGBUILD 146293 2012-01-08 17:03:43Z ibiru $ +# $Id: PKGBUILD 150701 2012-02-20 20:48:33Z ibiru $ # Maintainer : Ionut Biru <ibiru@archlinux.org> pkgbase=transmission pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt') -pkgver=2.42 -pkgrel=2 +pkgver=2.50 +pkgrel=1 arch=('i686' 'x86_64') url="http://www.transmissionbt.com/" license=('MIT') makedepends=('gtk3' 'intltool' 'curl' 'qt' 'libevent') source=(http://mirrors.m0k.org/transmission/files/$pkgbase-$pkgver.tar.xz transmissiond transmissiond.conf - 0001-gtk-conf-set-correct-download-dir-default.patch - fix_minimize.patch) -md5sums=('50f6dd76c5c01f45d5ed20783c686815' + 0001-gtk-conf-set-correct-download-dir-default.patch) +md5sums=('07606789fab2f9730fa454cfc7a04b2d' '08875299e3fbb68fc546c1f350ac1f06' 'be39806c35b7544856fa4070b00fc960' - 'f9fae46f5aa9ed3a22af64091604c6d0' - 'bd764dea56aaf69757762ea1a4c92be2') + 'f9fae46f5aa9ed3a22af64091604c6d0') build() { cd "$srcdir/$pkgbase-$pkgver" patch -Np1 -i "$srcdir/0001-gtk-conf-set-correct-download-dir-default.patch" - patch -Np2 -i "$srcdir/fix_minimize.patch" ./configure --prefix=/usr make |