wok-next annotate aircrack-ng/receipt @ rev 10721

postfix: Fixed uid for postdrop group and postfix user. We should use uid 75 for postfix user and uid 73 for postdrop. Postdrop group was seting itself to 1000 uid before.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 18:20:04 2011 +0000 (2011-05-28)
parents 72a8ac68c219
children aa9d73cf312d
rev   line source
pascal@1033 1 # SliTaz package receipt.
pascal@1033 2
pascal@1033 3 PACKAGE="aircrack-ng"
slaxemulator@5388 4 VERSION="1.1"
pascal@1033 5 CATEGORY="network"
pascal@1033 6 SHORT_DESC="802.11 WEP and WPA-PSK keys cracking program."
pascal@1033 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1033 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1033 9 WEB_SITE="http://www.aircrack-ng.org/"
pascal@1033 10 WGET_URL="http://download.aircrack-ng.org/$TARBALL"
pascal@2491 11 DEPENDS="iw openssl zlib"
pascal@1443 12 BUILD_DEPENDS="openssl-dev"
pascal@1033 13
pascal@1033 14 # Rules to configure and make the package.
pascal@1033 15 compile_rules()
pascal@1033 16 {
pascal@1033 17 cd $src
gokhlayeh@8615 18 sed -i s#/usr/local#/usr#g common.mak || return 1
gokhlayeh@8615 19 sed -i s#/man/man1#/share/man/man1# common.mak || return 1
erjo@5896 20
erjo@5896 21 # fix build with gcc45
gokhlayeh@8615 22 sed -i s/-Werror// common.mak || return 1
erjo@5896 23
pascal@1443 24 make &&
pascal@1033 25 make DESTDIR=$PWD/_pkg install
pascal@1033 26 }
pascal@1033 27
pascal@1033 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1033 29 genpkg_rules()
pascal@1033 30 {
pascal@1033 31 mkdir -p $fs/usr
pankso@4055 32 cp -a $_pkg/usr/bin $fs/usr
pankso@4055 33 cp -a $_pkg/usr/sbin $fs/usr
pascal@1033 34 }
pascal@1033 35