Difference between revisions of "MCS"

From CBLFS
Jump to navigationJump to search
(MCS requires mowgli)
 
(3 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://distfiles.atheme.org/libmcs-{{MCS-Version}}.tar.gz
+
| http://distfiles.atheme.org/libmcs-{{MCS-Version}}.tgz
 
|}
 
|}
  
Line 16: Line 16:
  
 
== Dependencies ==
 
== Dependencies ==
 +
 +
=== Required ===
 +
*[[Mowgli]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 34: Line 37:
 
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 48:
 
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
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install   
   
 
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 56: Line 60:
 
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
  
 
Install the package
 
Install the package
  
  make install &&
+
  make install

Latest revision as of 15:23, 13 January 2009

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

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

Required

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