Difference between revisions of "PolicyKit"

From CBLFS
Jump to navigationJump to search
 
Line 34: Line 34:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var &&
+
  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var &&
 
  make
 
  make
  
Line 47: Line 47:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --prefix=/usr \
+
  CC="gcc ${BUILD32}" ./autogen.sh --prefix=/usr \
 
     --sysconfdir=/etc --localstatedir=/var &&
 
     --sysconfdir=/etc --localstatedir=/var &&
 
  make
 
  make
Line 59: Line 59:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
+
  CC="gcc ${BUILDN32}" ./autogen.sh --prefix=/usr \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --libdir=/usr/lib32 &&
 
     --libdir=/usr/lib32 &&
Line 72: Line 72:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" ./configure --prefix=/usr \
+
  CC="gcc ${BUILD64}" ./autogen.sh --prefix=/usr \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --sysconfdir=/etc --localstatedir=/var \
 
     --libdir=/usr/lib64 &&
 
     --libdir=/usr/lib64 &&

Revision as of 15:20, 3 October 2006

Download Source: (Not Released Yet)

Dependencies

Required

Optional

PolKit User/Group

groupadd -g 17 polkit &&
useradd -c "Policy Kit Daemon User" -d /dev/null \
        -u 17 -g messagebus -s /bin/false polkit

Getting the source

Check out the source from freedesktop.org:

git clone git://anongit.freedesktop.org/git/PolicyKit

It couldn't hurt to make a tarball so you have an unmodified source around for the future:

tar cvjf PolicyKit{.tar.bz2,}

Non-Multilib

Compile the package:

./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./autogen.sh --prefix=/usr \
    --sysconfdir=/etc --localstatedir=/var &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./autogen.sh --prefix=/usr \
    --sysconfdir=/etc --localstatedir=/var \
    --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./autogen.sh --prefix=/usr \
    --sysconfdir=/etc --localstatedir=/var \
    --libdir=/usr/lib64 &&
make

Install the package

make install