diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/distcc/PKGBUILD | 8 | ||||
-rw-r--r-- | community/golangide/PKGBUILD | 12 | ||||
-rw-r--r-- | community/libc++/PKGBUILD | 20 | ||||
-rw-r--r-- | community/libc++/libc++.install | 7 | ||||
-rw-r--r-- | community/libc++abi/PKGBUILD | 28 | ||||
-rw-r--r-- | community/lout/PKGBUILD | 8 | ||||
-rw-r--r-- | community/lwm/PKGBUILD | 10 | ||||
-rw-r--r-- | community/weston/PKGBUILD | 20 | ||||
-rw-r--r-- | community/xvkbd/PKGBUILD | 6 |
9 files changed, 75 insertions, 44 deletions
diff --git a/community/distcc/PKGBUILD b/community/distcc/PKGBUILD index c790c7ac6..3363a6c51 100644 --- a/community/distcc/PKGBUILD +++ b/community/distcc/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 90657 2013-05-13 14:21:37Z spupykin $ +# $Id: PKGBUILD 94163 2013-07-15 11:02:50Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Judd Vinet <jvinet@zeroflux.org> # Contributor: Giovanni Scafora <giovanni@archlinux.org> pkgname=distcc pkgver=3.1 -pkgrel=11 +pkgrel=12 pkgdesc="A distributed C, C++, Obj C compiler" arch=('i686' 'x86_64') url="http://code.google.com/p/distcc/" license=('GPL') -depends=('gcc' 'popt' 'avahi') -makedepends=('gtk2' 'pkgconfig' 'python2' 'dbus') +depends=('gcc' 'popt' 'avahi' 'dbus') +makedepends=('gtk2' 'pkgconfig' 'python2') optdepends=('gtk2: for distccmon-gnome' 'python2') backup=('etc/conf.d/distccd' diff --git a/community/golangide/PKGBUILD b/community/golangide/PKGBUILD index f3d84a587..ebad5941f 100644 --- a/community/golangide/PKGBUILD +++ b/community/golangide/PKGBUILD @@ -1,11 +1,11 @@ -#$Id: PKGBUILD 91294 2013-05-20 20:42:41Z arodseth $ +#$Id: PKGBUILD 94171 2013-07-15 18:19:12Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: spambanane <happy.house@gmx.de> # Contributor: Matteo <matteo.dek@gmail.com> pkgname=golangide -pkgver=18.1 -pkgrel=3 +pkgver=18.2 +pkgrel=1 pkgdesc='IDE for editing and building projects written in the Go programming language (now LiteIDE X)' license=('LGPL') arch=('x86_64' 'i686') @@ -16,7 +16,7 @@ options=('!strip') source=("$pkgname.zip::https://github.com/visualfc/liteide/archive/x$pkgver.zip" 'golangide.png' 'golangide.sh') -sha256sums=('60ab324bffb5ec4e7b1b3f9cae9729c7c6c499df3bb994861de65e473f2d64fe' +sha256sums=('0436914bfb6bb829d4e3dd33e0ae48798d82e83e78507c51423aba09e936b191' '47c52b22326034bd3d6a7b11b05a53c8b3838c08e145171cf5cad2ca00260697' '93ef16d59054ef9b37f8781e90f7d0f83d726779d2029660dfd21e84d808bf04') @@ -42,14 +42,14 @@ build() { } package() { + cd "$srcdir/liteide-x$pkgver/build/liteide" + msg2 'Creating directories...' mkdir -p \ "$pkgdir/usr/lib/liteide" \ "$pkgdir/usr/share/liteide" \ "$pkgdir/usr/share/doc/$pkgname" - cd "$srcdir/liteide-x$pkgver/build/liteide" - msg2 'Packaging executables...' for binary in goastview goapi goexec godocview liteide; do install -Dm755 "bin/$binary" "$pkgdir/usr/bin/$binary" diff --git a/community/libc++/PKGBUILD b/community/libc++/PKGBUILD index 51e254233..6a4f8c0df 100644 --- a/community/libc++/PKGBUILD +++ b/community/libc++/PKGBUILD @@ -1,25 +1,25 @@ # Maintainer: Daniel Micay <danielmicay@gmail.com> # Contributor: MThinkCpp <mtc.maintainer[at]outlook.com> -pkgname='libc++' +pkgname=libc++ pkgver=3.3 -pkgrel=1 +pkgrel=3 pkgdesc='A new implementation of the C++ standard library, targeting C++11.' url='http://libcxx.llvm.org' license=('custom:University of Illinois/NCSA Open Source License') arch=('i686' 'x86_64') -depends=('glibc' 'gcc-libs') # gcc-libs for libsupc++ binary -makedepends=('clang' 'subversion' 'cmake' 'gcc') # gcc provides libsupc++ headers +# gcc-libs needed for libgcc_s, because Arch doesn't use a pure compiler-rt clang +depends=('glibc' 'libc++abi' 'gcc-libs') +makedepends=('clang' 'subversion' 'cmake') source=("http://www.llvm.org/releases/${pkgver}/libcxx-${pkgver}.src.tar.gz") -md5sums=('SKIP') +md5sums=('59006e659ffb33f5222a7b79d4cd071e') +install=${pkgname}.install build() { - _gcc_include_dir=/usr/include/c++/$(gcc -dumpversion) - _gcc_platform_include_dir=$_gcc_include_dir/$(gcc -dumpmachine) mkdir -p libcxx-${pkgver}.src/build cd libcxx-${pkgver}.src/build - cmake -G "Unix Makefiles" -DLIBCXX_CXX_ABI=libsupc++ \ - -DLIBCXX_LIBSUPCXX_INCLUDE_PATHS="${_gcc_include_dir};${_gcc_platform_include_dir}" \ - -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr "${srcdir}/libcxx-${pkgver}.src" + CC=clang CXX=clang++ cmake -G "Unix Makefiles" -DLIBCXX_CXX_ABI=libcxxabi \ + -DLIBCXX_LIBCXXABI_INCLUDE_PATHS=/usr/include \ + -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr "$srcdir/libcxx-${pkgver}.src" make } package() { diff --git a/community/libc++/libc++.install b/community/libc++/libc++.install new file mode 100644 index 000000000..caef683ae --- /dev/null +++ b/community/libc++/libc++.install @@ -0,0 +1,7 @@ +post_install() { + echo compile with \`clang++ -std=c++11 -stdlib=libc++ -lc++abi\` to use libc++ +} + +post_upgrade() { + post_install +} diff --git a/community/libc++abi/PKGBUILD b/community/libc++abi/PKGBUILD new file mode 100644 index 000000000..9d86d1cbc --- /dev/null +++ b/community/libc++abi/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Daniel Micay <danielmicay@gmail.com> +# Contributor: Benno Fünfstück <pyhaxor@googlemail.com> + +pkgname=libc++abi +pkgver=3.2 +pkgrel=1 +pkgdesc='A new implementation of low level support for a standard C++ library' +arch=('i686' 'x86_64') +url="http://libcxxabi.llvm.org/" +license=('MIT' 'custom:University of Illinois/NCSA Open Source License') +makedepends=(subversion libunwind clang libc++) +source=(svn+https://llvm.org/svn/llvm-project/libcxxabi/branches/release_32) +md5sums=(SKIP) + +build() { + cd release_32/lib + ./buildit +} + +package() { + cd release_32 + mkdir -p "$pkgdir/usr/include" + install -Dm644 lib/libc++abi.so.1.0 "$pkgdir/usr/lib/libc++abi.so.1.0" + ln -s /usr/lib/libc++abi.so.1.0 "$pkgdir/usr/lib/libc++abi.so.1" + ln -s /usr/lib/libc++abi.so.1.0 "$pkgdir/usr/lib/libc++abi.so" + install include/* "$pkgdir/usr/include" + install -Dm644 LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} diff --git a/community/lout/PKGBUILD b/community/lout/PKGBUILD index 914062c87..df2dcfc35 100644 --- a/community/lout/PKGBUILD +++ b/community/lout/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 83917 2013-02-06 14:41:18Z kkeen $ +# $Id: PKGBUILD 94153 2013-07-15 07:02:55Z kkeen $ # Maintainer: Kyle Keen <keenerd@gmail.com> # Contributor: catwell <catwell@archlinux.us> pkgname=lout -pkgver=3.39 -pkgrel=2 +pkgver=3.40 +pkgrel=1 pkgdesc="A lightweight document formatting system." arch=('i686' 'x86_64') url="http://lout.wiki.sourceforge.net/" @@ -15,7 +15,7 @@ source=(http://mirrors.ctan.org/support/$pkgname/$pkgname-$pkgver.tar.gz makefile.arch lout.install http://pkgs.fedoraproject.org/repo/pkgs/lout/slides.pdf/6822c33e49a1dca0b090f297d404d7fa/slides.pdf) -md5sums=('151e1fba676c7052936ccc1bcd9663a9' +md5sums=('fd0fe084cebd07fc209d392a2d380755' '088a29ca16477a9a30da9fafc9391de8' '597cd52eb87ef6253cf769bed4db3952' '6822c33e49a1dca0b090f297d404d7fa') diff --git a/community/lwm/PKGBUILD b/community/lwm/PKGBUILD index 7ea15078c..61fed43ce 100644 --- a/community/lwm/PKGBUILD +++ b/community/lwm/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 67238 2012-03-05 15:00:02Z kkeen $ +# $Id: PKGBUILD 94155 2013-07-15 07:14:16Z kkeen $ # Maintainer: Kyle Keen <keenerd@gmail.com> # Contributor: Jeff Mickey <j@codemac.net> # Contributor: Ben Mazer <blm@groknil.org> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=lwm -pkgver=1.2.2 -pkgrel=3 -pkgdesc="a very light weight window manager" +pkgver=1.2.3 +pkgrel=1 +pkgdesc="A very light weight window manager" arch=('i686' 'x86_64') url="http://www.jfc.org.uk/software/lwm.html" license=('GPL') depends=('xorg-server' 'libxext' 'libsm') makedepends=('imake') source=(http://www.jfc.org.uk/files/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('1748722a293e03d632b615275ef84498') +md5sums=('439789a5396107cca5f54e108760c1f4') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/weston/PKGBUILD b/community/weston/PKGBUILD index d4c56b293..25425c83b 100644 --- a/community/weston/PKGBUILD +++ b/community/weston/PKGBUILD @@ -1,25 +1,24 @@ -# $Id: PKGBUILD 92508 2013-06-07 12:43:24Z seblu $ +# $Id: PKGBUILD 94173 2013-07-15 21:54:10Z tomegun $ # Maintainer: Sébastien Luttringer # Contributor: Joel Teichroeb <joel@teichroeb.net> pkgname=weston -pkgver=1.1.1 -pkgrel=1 +pkgver=1.2.0 +pkgrel=2 pkgdesc='Reference implementation of a Wayland compositor' arch=('i686' 'x86_64') url='http://wayland.freedesktop.org' license=('MIT') options=(!libtool) -depends=('libxkbcommon' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango') +depends=('libxkbcommon' 'libunwind' 'poppler-glib' 'mtdev' 'libxcursor' 'glu' 'pango' 'colord') source=("http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz") -sha1sums=('5239afe177dadbded3c0018b55dd1045be5f84b2') +sha1sums=('23201d31e71768e5ec3de0d10fa6de988dd273c8') build() { cd $pkgname-$pkgver ./configure \ --prefix=/usr \ - --libexecdir=/usr/lib/weston \ - --disable-android-compositor + --libexecdir=/usr/lib/weston make } @@ -29,11 +28,8 @@ package() { # license install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" # embed more clients - for _c in calibrator clickdot cliptest dnd editor eventdemo flower gears image \ - resizor simple-egl simple-shm simple-touch smoke transformed view; do + for _c in calibrator clickdot cliptest dnd editor eventdemo flower fullscreen gears \ + image resizor simple-egl simple-shm simple-touch smoke transformed view; do install -Dm755 "clients/$_c" "$pkgdir/usr/bin/weston-$_c" done - for _c in info keyboard screensaver screenshooter tablet-shell terminal; do - install -Dm755 "clients/weston-$_c" "$pkgdir/usr/bin/weston-$_c" - done } diff --git a/community/xvkbd/PKGBUILD b/community/xvkbd/PKGBUILD index 7551fdb1e..2b27dc638 100644 --- a/community/xvkbd/PKGBUILD +++ b/community/xvkbd/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 88530 2013-04-19 10:33:08Z spupykin $ +# $Id: PKGBUILD 94165 2013-07-15 11:03:13Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Benjamin Andresen <benny@klapmuetz.org> # Contributor: Mikko Seppдlд <t-r-a-y@mbnet.fi> pkgname=xvkbd -pkgver=3.4a +pkgver=3.5 pkgrel=1 pkgdesc="virtual (graphical) keyboard program for X Window System" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('GPL') depends=('libxmu' 'xaw3d' 'glibc' 'libxt' 'libxtst' 'libxp' 'libxpm') makedepends=('imake') source=(http://homepage3.nifty.com/tsato/xvkbd/xvkbd-$pkgver.tar.gz) -md5sums=('3d996ba9f84b5ed2392f9809ada22711') +md5sums=('f7344982d985be925c7a708110e20497') build() { cd "$srcdir/$pkgname-$pkgver" |