Changeset 9

Show
Ignore:
Timestamp:
06/08/05 19:03:59 (3 years ago)
Author:
athomas
Message:
  • Updated gravit to 0.4.1
  • Updated op to 1.31
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • archabs/trunk/gravit/PKGBUILD

    r7 r9  
    11pkgname=gravit 
    2 pkgver=0.4.0 
     2pkgver=0.4.1 
    33pkgrel=1 
    44pkgdesc="Gravit is a gravity simulator which runs under Linux, Windows and Mac OS X. It uses simple newtonian physics using the Barnes-Hut N-body algorithm. Although the main goal of Gravit is to be as accurate as possible, it also creates beautiful looking gravity patterns." 
  • archabs/trunk/op/PKGBUILD

    r5 r9  
    33# Contributor: Tom Newsom <Jeepster@gmx.co.uk> 
    44pkgname=op 
    5 pkgver=1.30 
     5pkgver=1.31 
    66pkgrel=1 
    77pkgdesc="The op tool provides a flexible means for system administrators to grant access to certain root operations without having to give them full superuser privileges. Different sets of users may access different operations, and the security-related aspects of each operation can be carefully controlled." 
     
    1010makedepends=('flex') 
    1111backup=('etc/op.conf') 
    12 source=(http://swapoff.org/files/$pkgname/$pkgname-$pkgver.tar.gz op.pam
    13 md5sums=('3cdf2a171a99df7e96f302dd54b2d96b' '4e7ad4ec8f2fe6a40e12bcb2c0b256e3') 
     12source=(http://swapoff.org/files/$pkgname/$pkgname-$pkgver.tar.gz
     13md5sums=('d3fee28dc8fe6ad847af09e461add1d4') 
    1414 
    1515build() { 
    1616  cd $startdir/src/$pkgname-$pkgver 
    17   make OPTS='-DXAUTH=\"/usr/X11R6/bin/xauth\" -DUSE_PAM -DHAVE_VSNPRINTF' LIBS='-lcrypt -lpam -lfl' || return 1 
     17  ./configure --prefix=/usr --sysconfdir=/etc --enable-xauth=/usr/X11R6/bin/xauth --with-pam 
    1818  make DESTDIR=$startdir/pkg install || return 1 
    1919  mkdir -p $startdir/pkg/etc/pam.d 
    20   cp $startdir/src/op.pam $startdir/pkg/etc/pam.d/op 
     20  install -m644 $startdir/src/${pkgname}-${pkgver}/op.pam $startdir/pkg/etc/pam.d/op 
    2121}