Difference between revisions of "Acl"
From CBLFS
Jump to navigationJump to searchLine 24: | Line 24: | ||
Compile the package: | Compile the package: | ||
− | |||
sed -i Makefile \ | sed -i Makefile \ | ||
-e '/autoconf/d' \ | -e '/autoconf/d' \ | ||
-e 's@default: $(CONFIGURE)@default:@' && | -e 's@default: $(CONFIGURE)@default:@' && | ||
+ | sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && | ||
+ | libtoolize && | ||
+ | aclocal -I m4 && | ||
+ | autoconf && | ||
./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | ||
--bindir=/usr/sbin --libdir=/lib --libexecdir=/usr/lib --includedir=/usr/include \ | --bindir=/usr/sbin --libdir=/lib --libexecdir=/usr/lib --includedir=/usr/include \ | ||
--mandir=/usr/share/man --datadir=/usr/share && | --mandir=/usr/share/man --datadir=/usr/share && | ||
− | make | + | make LIBTOOL=$PWD/libtool |
Install the package | Install the package | ||
− | make install install-dev install-lib && | + | make LIBTOOL=$PWD/libtool install install-dev install-lib && |
LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | ||
chmod 755 /lib/${LIBNAME} | chmod 755 /lib/${LIBNAME} | ||
Line 45: | Line 48: | ||
Compile the package: | Compile the package: | ||
− | |||
sed -i Makefile \ | sed -i Makefile \ | ||
-e '/autoconf/d' \ | -e '/autoconf/d' \ | ||
-e 's@default: $(CONFIGURE)@default:@' && | -e 's@default: $(CONFIGURE)@default:@' && | ||
+ | sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && | ||
+ | libtoolize && | ||
+ | aclocal -I m4 && | ||
+ | autoconf && | ||
CC="gcc ${BUILD32}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | CC="gcc ${BUILD32}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | ||
--bindir=/usr/sbin --libdir=/lib --libexecdir=/usr/lib --includedir=/usr/include \ | --bindir=/usr/sbin --libdir=/lib --libexecdir=/usr/lib --includedir=/usr/include \ | ||
--mandir=/usr/share/man --datadir=/usr/share && | --mandir=/usr/share/man --datadir=/usr/share && | ||
− | make | + | make LIBTOOL=$PWD/libtool |
Install the package | Install the package | ||
− | make install install-dev install-lib && | + | make LIBTOOL=$PWD/libtool install install-dev install-lib && |
LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | ||
chmod 755 /lib/${LIBNAME} | chmod 755 /lib/${LIBNAME} | ||
Line 64: | Line 70: | ||
Compile the package: | Compile the package: | ||
− | |||
sed -i Makefile \ | sed -i Makefile \ | ||
-e '/autoconf/d' \ | -e '/autoconf/d' \ | ||
-e 's@default: $(CONFIGURE)@default:@' && | -e 's@default: $(CONFIGURE)@default:@' && | ||
+ | sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && | ||
+ | libtoolize && | ||
+ | aclocal -I m4 && | ||
+ | autoconf && | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | CC="gcc ${BUILDN32}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | ||
--bindir=/usr/sbin --libdir=/lib32 --libexecdir=/usr/lib32 --includedir=/usr/include \ | --bindir=/usr/sbin --libdir=/lib32 --libexecdir=/usr/lib32 --includedir=/usr/include \ | ||
--mandir=/usr/share/man --datadir=/usr/share && | --mandir=/usr/share/man --datadir=/usr/share && | ||
− | make | + | make LIBTOOL=$PWD/libtool |
Install the package | Install the package | ||
− | make install install-dev install-lib && | + | make LIBTOOL=$PWD/libtool install install-dev install-lib && |
LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | ||
chmod 755 /lib32/${LIBNAME} | chmod 755 /lib32/${LIBNAME} | ||
Line 83: | Line 92: | ||
Compile the package: | Compile the package: | ||
− | |||
sed -i Makefile \ | sed -i Makefile \ | ||
-e '/autoconf/d' \ | -e '/autoconf/d' \ | ||
-e 's@default: $(CONFIGURE)@default:@' && | -e 's@default: $(CONFIGURE)@default:@' && | ||
+ | sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && | ||
+ | libtoolize && | ||
+ | aclocal -I m4 && | ||
+ | autoconf && | ||
CC="gcc ${BUILD64}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | CC="gcc ${BUILD64}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ | ||
--bindir=/usr/sbin --libdir=/lib64 --libexecdir=/usr/lib64 --includedir=/usr/include \ | --bindir=/usr/sbin --libdir=/lib64 --libexecdir=/usr/lib64 --includedir=/usr/include \ | ||
--mandir=/usr/share/man --datadir=/usr/share && | --mandir=/usr/share/man --datadir=/usr/share && | ||
− | make | + | make LIBTOOL=$PWD/libtool |
Install the package | Install the package | ||
− | make install install-dev install-lib && | + | make LIBTOOL=$PWD/libtool install install-dev install-lib && |
LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && | ||
chmod 755 /lib64/${LIBNAME} | chmod 755 /lib64/${LIBNAME} |
Revision as of 17:00, 30 September 2007
Download Source: | ftp://oss.sgi.com/projects/xfs/cmd_tars/acl_2.2.51.tar.gz |
---|
Contents
Introduction to Acl
Project Homepage: Unknown
Without this package you will get this Message while installing KDELibs:
libacl was not found. Without that library, you will not be able to manage access control lists on file systems that support them, such as ext3 or reiserfs.
Dependencies
Required
Non-Multilib
Compile the package:
sed -i Makefile \ -e '/autoconf/d' \ -e 's@default: $(CONFIGURE)@default:@' && sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && libtoolize && aclocal -I m4 && autoconf && ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ --bindir=/usr/sbin --libdir=/lib --libexecdir=/usr/lib --includedir=/usr/include \ --mandir=/usr/share/man --datadir=/usr/share && make LIBTOOL=$PWD/libtool
Install the package
make LIBTOOL=$PWD/libtool install install-dev install-lib && LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && chmod 755 /lib/${LIBNAME}
Multilib
32Bit
Compile the package:
sed -i Makefile \ -e '/autoconf/d' \ -e 's@default: $(CONFIGURE)@default:@' && sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && libtoolize && aclocal -I m4 && autoconf && CC="gcc ${BUILD32}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ --bindir=/usr/sbin --libdir=/lib --libexecdir=/usr/lib --includedir=/usr/include \ --mandir=/usr/share/man --datadir=/usr/share && make LIBTOOL=$PWD/libtool
Install the package
make LIBTOOL=$PWD/libtool install install-dev install-lib && LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && chmod 755 /lib/${LIBNAME}
N32
Compile the package:
sed -i Makefile \ -e '/autoconf/d' \ -e 's@default: $(CONFIGURE)@default:@' && sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && libtoolize && aclocal -I m4 && autoconf && CC="gcc ${BUILDN32}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ --bindir=/usr/sbin --libdir=/lib32 --libexecdir=/usr/lib32 --includedir=/usr/include \ --mandir=/usr/share/man --datadir=/usr/share && make LIBTOOL=$PWD/libtool
Install the package
make LIBTOOL=$PWD/libtool install install-dev install-lib && LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && chmod 755 /lib32/${LIBNAME}
64Bit
Compile the package:
sed -i Makefile \ -e '/autoconf/d' \ -e 's@default: $(CONFIGURE)@default:@' && sed -i "/AC_OUTPUT/i\AC_PROG_LIBTOOL" configure.in && libtoolize && aclocal -I m4 && autoconf && CC="gcc ${BUILD64}" ./configure --prefix=/ --exec-prefix=/ --sbindir=/sbin \ --bindir=/usr/sbin --libdir=/lib64 --libexecdir=/usr/lib64 --includedir=/usr/include \ --mandir=/usr/share/man --datadir=/usr/share && make LIBTOOL=$PWD/libtool
Install the package
make LIBTOOL=$PWD/libtool install install-dev install-lib && LIBNAME=$(cat libacl/libacl.la | grep library_names | cut -f2 -d"'" | cut -f1 -d" ") && chmod 755 /lib64/${LIBNAME}
Contents
Installed Programs: | ??? |
---|---|
Installed Libraries: | ??? |
Installed Directory: | ??? |
Short Descriptions
program1 | ??? |
---|---|
program2 | ??? |