Difference between revisions of "MCS"

From CBLFS
Jump to navigationJump to search
Line 34: Line 34:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" GXX="g++ ${BUILD32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 ./configure --prefix=/usr &&
+
  CC="gcc ${BUILD32}" GXX="g++ ${BUILD32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 \
 +
./configure --prefix=/usr &&
 
  make
 
  make
  
Line 44: Line 45:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" GXX="g++ ${BUILDN32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  CC="gcc ${BUILDN32}" GXX="g++ ${BUILDN32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 \
 +
./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  make
 
  make
  
Line 56: Line 58:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" GXX="g++ ${BUILD64}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  CC="gcc ${BUILD64}" GXX="g++ ${BUILD64}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 \
 +
./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
  

Revision as of 00:09, 5 February 2008

Download Source: http://distfiles.atheme.org/libmcs-0.7.1.tar.gz

Introduction to MCS

mcs is a library and set of userland tools which abstract the storage of configuration settings away from userland applications.

It is hoped that by using mcs and adding mcs support to various applications, that the application will fit in better with it's desktop environment.

There have been other projects like this before (such as GConf), but unlike those projects, mcs strictly handles abstraction. It does not impose any specific data storage requirement, nor is it tied to any desktop environment or software suite.

Because mcs is licensed under the three-clause BSD license, it is hoped that most applications will adopt it.

Project Homepage: http://www.atheme.org/projects/mcs.shtml

Dependencies

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install 

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" GXX="g++ ${BUILD32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 \
./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" GXX="g++ ${BUILDN32}" PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install &&

64Bit

Compile the package:

CC="gcc ${BUILD64}" GXX="g++ ${BUILD64}" PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install &&