From 37a1064b8105764414f279ced442e6ba2f63bea1 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 1 Nov 2011 23:15:01 +0000 Subject: Tue Nov 1 23:15:01 UTC 2011 --- community/aria2/PKGBUILD | 2 +- community/camlp5/PKGBUILD | 2 +- community/coq/PKGBUILD | 2 +- community/dzen2/PKGBUILD | 39 ++++++++++-------------- community/notion/PKGBUILD | 5 ++-- community/nut/PKGBUILD | 4 +-- community/perl-package-stash-xs/PKGBUILD | 50 +++++++++++++++++++++++++++++++ community/perl-params-util/PKGBUILD | 51 ++++++++++++++++++++++++++++++++ community/plan9port/PKGBUILD | 6 ++-- 9 files changed, 127 insertions(+), 34 deletions(-) create mode 100644 community/perl-package-stash-xs/PKGBUILD create mode 100644 community/perl-params-util/PKGBUILD (limited to 'community') diff --git a/community/aria2/PKGBUILD b/community/aria2/PKGBUILD index 19095b668..0fb4e866b 100644 --- a/community/aria2/PKGBUILD +++ b/community/aria2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=aria2 pkgver=1.13.0 -pkgrel=1 +pkgrel=2 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink' arch=('i686' 'x86_64') url='http://aria2.sourceforge.net/' diff --git a/community/camlp5/PKGBUILD b/community/camlp5/PKGBUILD index 526451224..615926708 100644 --- a/community/camlp5/PKGBUILD +++ b/community/camlp5/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('camlp5' 'camlp5-transitional') _baseversion=6.02.3 _patchlevel=1 pkgver=${_baseversion}.${_patchlevel} -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url='http://pauillac.inria.fr/~ddr/camlp5/' license=('BSD') diff --git a/community/coq/PKGBUILD b/community/coq/PKGBUILD index b369ce4d2..ede4757ef 100644 --- a/community/coq/PKGBUILD +++ b/community/coq/PKGBUILD @@ -3,7 +3,7 @@ pkgname=coq pkgver=8.3pl2 -pkgrel=2 +pkgrel=3 pkgdesc='Formal proof management system.' arch=('i686' 'x86_64') url='http://coq.inria.fr/' diff --git a/community/dzen2/PKGBUILD b/community/dzen2/PKGBUILD index 0453c200b..810d8ba52 100644 --- a/community/dzen2/PKGBUILD +++ b/community/dzen2/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 27711 2010-09-27 09:27:49Z spupykin $ +# $Id: PKGBUILD 57590 2011-10-31 07:59:11Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Mark Taylor pkgname=dzen2 pkgver=0.8.5 -pkgrel=6 +pkgrel=7 arch=(i686 x86_64) pkgdesc="X notification utility" url="http://gotmor.googlepages.com/dzen" @@ -18,29 +18,20 @@ build() { cd $srcdir/dzen2-$pkgver - patch -p0 config.mk < #LIBS = -L/usr/lib -lc -L\${X11LIB} -lX11 -> #CFLAGS = -Os \${INCS} -DVERSION=\\"\${VERSION}\\" -34,35c34,35 -< #LIBS = -L/usr/lib -lc -L\${X11LIB} -lX11 -lXinerama -lXpm -< #CFLAGS = -Os \${INCS} -DVERSION=\\"\${VERSION}\\" -DDZEN_XINERAMA -DDZEN_XPM ---- -> LIBS = -L/usr/lib -lc -L\${X11LIB} -lX11 -lXinerama -lXpm `pkg-config --libs xft` -> CFLAGS = -Os \${INCS} -DVERSION=\\"\${VERSION}\\" -DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT `pkg-config --cflags xft` -EOF + CFLAGS=" -Wall -Os ${INCS} -DVERSION=\"${VERSION}\" -DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT `pkg-config --cflags xft`" + LIBS=" -L/usr/lib -lc -L${X11LIB} -lX11 -lXinerama -lXpm `pkg-config --libs xft`" - sed -i "s/CFLAGS = /CFLAGS = ${CFLAGS} /" config.mk + echo "CFLAGS=$CFLAGS" >>config.mk + echo "LIBS=$LIBS" >>config.mk + echo "LDFLAGS=$LIBS" >>config.mk - make X11INC=/usr/include X11LIB=/usr/lib || return 1 - make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$pkgdir install || return 1 - install -m644 -D LICENSE $pkgdir/usr/share/licenses/dzen2/COPYING + make X11INC=/usr/include X11LIB=/usr/lib + (cd $srcdir/dzen2-$pkgver/gadgets && make X11INC=/usr/include X11LIB=/usr/lib) +} - cd $srcdir/dzen2-$pkgver/gadgets - sed -i "s/CFLAGS = /CFLAGS = ${CFLAGS} /" config.mk - make X11INC=/usr/include X11LIB=/usr/lib || return 1 - make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$pkgdir install || return 1 +package() { + cd $srcdir/dzen2-$pkgver + make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$pkgdir install + (cd $srcdir/dzen2-$pkgver/gadgets && make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$pkgdir install) + install -m644 -D LICENSE $pkgdir/usr/share/licenses/dzen2/COPYING } diff --git a/community/notion/PKGBUILD b/community/notion/PKGBUILD index 304d14760..5c6b7b0d6 100644 --- a/community/notion/PKGBUILD +++ b/community/notion/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 55596 2011-09-14 16:51:45Z spupykin $ +# $Id: PKGBUILD 57592 2011-10-31 08:12:46Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Eugen Zagorodniy e dot zagorodniy at gmail dot com # Contributor: aunoor pkgname=notion -pkgver=20110914 +pkgver=20111031 pkgrel=1 pkgdesc="Tabbed tiling, window manager. Fork of Ion3" url="http://sourceforge.net/projects/notion/" @@ -24,6 +24,7 @@ _gitroots=("git://notion.git.sourceforge.net/gitroot/notion/notion" "git://notion.git.sourceforge.net/gitroot/notion/mod_xkbevents" "git://notion.git.sourceforge.net/gitroot/notion/mod_xrandr" "git://notion.git.sourceforge.net/gitroot/notion/contrib") +#source=(https://downloads.sourceforge.net/project/notion/notion-3-2011102900-src.tar.bz2) build() { cd ${srcdir} diff --git a/community/nut/PKGBUILD b/community/nut/PKGBUILD index 7b381641c..eac2726b7 100644 --- a/community/nut/PKGBUILD +++ b/community/nut/PKGBUILD @@ -2,14 +2,14 @@ # Contributor: Slash pkgname=nut -pkgver=17.2 +pkgver=17.3 pkgrel=1 pkgdesc='Records what you eat and analyzes your meals for nutrient levels in terms of the Daily Value or DV which is the standard for food labeling in the US.' url='http://nut.sourceforge.net/' license=('GPL') arch=('i686' 'x86_64') source=("http://downloads.sourceforge.net/project/nut/nut/${pkgver}/nut-${pkgver}.tar.gz") -md5sums=('1c41ade70c164ebb9d9b291b24316984') +md5sums=('791fa4730f82da66d539c0d4e82441a9') build() { cd ${pkgname}-${pkgver} diff --git a/community/perl-package-stash-xs/PKGBUILD b/community/perl-package-stash-xs/PKGBUILD new file mode 100644 index 000000000..40dd20936 --- /dev/null +++ b/community/perl-package-stash-xs/PKGBUILD @@ -0,0 +1,50 @@ +# Maintainer: Justin Davis +# $Id: PKGBUILD 57660 2011-11-01 00:16:28Z juster $ + +pkgname=perl-package-stash-xs +pkgver=0.25 +pkgrel=1 +pkgdesc="faster and more correct implementation of the Package::Stash API" +arch=(i686 x86_64) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.8.1') +makedepends=('perl-extutils-makemaker>=6.30') +checkdepends=('perl-test-fatal' 'perl-test-simple') +url=https://metacpan.org/release/Package-Stash-XS +source=("http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Package-Stash-XS-${pkgver}.tar.gz") +md5sums=(52ece18842c46da8fb7a4a14dea910ab) +sha512sums=(2b539d9ba1a68c5ba681e9eabbcde4b396f66dc8dbd3b1e333286ea7ce39b93b97ec4bd97c31681720a925553b128371ce2c48f11254806aebd5de868a22b528) +_distdir="${srcdir}/Package-Stash-XS-${pkgver}" + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null + + cd "$_distdir" + /usr/bin/perl Makefile.PL + make + ) +} + +check() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + cd "$_distdir" + make test + ) +} + +package() { + cd "$_distdir" + make DESTDIR="$pkgdir" install + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: diff --git a/community/perl-params-util/PKGBUILD b/community/perl-params-util/PKGBUILD new file mode 100644 index 000000000..df95826e9 --- /dev/null +++ b/community/perl-params-util/PKGBUILD @@ -0,0 +1,51 @@ +# Maintainer: Justin Davis +# $Id: PKGBUILD 57661 2011-11-01 00:18:52Z juster $ + +pkgname=perl-params-util +pkgver=1.04 +pkgrel=1 +pkgdesc="Simple, compact and correct param-checking functions" +arch=(i686 x86_64) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.5.30' 'perl-scalar-list-utils') +makedepends=('perl-extutils-cbuilder>=0.27' 'perl-extutils-makemaker>=6.52' + 'perl-pathtools') +checkdepends=('perl-test-simple') +url=https://metacpan.org/release/Params-Util +source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Params-Util-${pkgver}.tar.gz") +md5sums=(84bfb0a16cff67f2077ece0e24408b0f) +sha512sums=(086b6e37ce24a423439e346c4fc7069cbb5bde6af5c259fa765616bf637597105ee379df5edca82fdeb3bb0e44d83c7704ea1fe09170acea389ffb54d77f3d3d) +_distdir="${srcdir}/Params-Util-${pkgver}" + +build() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \ + PERL_AUTOINSTALL=--skipdeps \ + PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \ + PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \ + MODULEBUILDRC=/dev/null + + cd "$_distdir" + /usr/bin/perl Makefile.PL + make + ) +} + +check() { + ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" + cd "$_distdir" + make test + ) +} + +package() { + cd "$_distdir" + make DESTDIR="$pkgdir" install + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: diff --git a/community/plan9port/PKGBUILD b/community/plan9port/PKGBUILD index b50277f48..4eabbd20e 100644 --- a/community/plan9port/PKGBUILD +++ b/community/plan9port/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 55793 2011-09-20 21:39:14Z cbrannon $ +# $Id: PKGBUILD 57586 2011-10-31 07:11:36Z cbrannon $ # Contributor: phrakture # Contributor: Fazlul Shahriar # Contributor: Chris Brannon pkgname=plan9port -pkgver=20110920 +pkgver=20111026 pkgrel=1 pkgdesc="A port of many programs from Plan 9 to Unix-like operating systems" arch=('i686' 'x86_64') @@ -48,5 +48,5 @@ build() rm -f $i done } -md5sums=('ce91667f56c0f49849aae9c79a7cb58c' +md5sums=('4aa76e73fcb9f716165dd628d052cd58' '9695eb15a247e23140e8a35ff52a5c20') -- cgit v1.2.3-54-g00ecf