wok-next view xorg-libXfont/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 36c41101f006
children b490f13f6603
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXfont"
4 VERSION="1.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard library."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXfont"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 DEPENDS="freetype xorg-libfontenc"
11 BUILD_DEPENDS="xorg-fontsproto freetype-dev \
12 xorg-libfontenc-dev xorg-xproto xorg-xtrans"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr --sysconfdir=/etc \
22 --mandir=/usr/share/man --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }