Libical: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) mNo edit summary |
Multilib requires CXX |
||
| Line 35: | Line 35: | ||
export USE_ARCH=32 && | export USE_ARCH=32 && | ||
sed -i "s/ld -shared/& ${LD_BUILD32}/" src/python/Makefile.in && | sed -i "s/ld -shared/& ${LD_BUILD32}/" src/python/Makefile.in && | ||
CC="gcc ${BUILD32}" | CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" configure --prefix=/usr \ | ||
--enable-python --enable-cxx --with-bdb4 && | --enable-python --enable-cxx --with-bdb4 && | ||
make | make | ||
| Line 45: | Line 45: | ||
=== N32 === | === N32 === | ||
''Please try setting CXX if this fails.'' | |||
Compile the package: | Compile the package: | ||
| Line 65: | Line 67: | ||
export USE_ARCH=64 && | export USE_ARCH=64 && | ||
sed -i "s/ld -shared/& ${LD_BUILD64}/" src/python/Makefile.in && | sed -i "s/ld -shared/& ${LD_BUILD64}/" src/python/Makefile.in && | ||
CC="gcc ${BUILD64} -fPIC" ./configure --prefix=/usr --libdir=/usr/lib64 \ | CC="gcc ${BUILD64} -fPIC" CXX="g++ ${BUILD64} -fPIC" \ | ||
./configure --prefix=/usr --libdir=/usr/lib64 \ | |||
--enable-python --enable-cxx --with-bdb4 && | --enable-python --enable-cxx --with-bdb4 && | ||
make | make | ||
Revision as of 20:00, 22 April 2009
| Download Source: | http://switch.dl.sourceforge.net/sourceforge/freeassociation/libical-0.44.tar.gz |
|---|
Introduction to Libical
Libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents.
Project Homepage: http://freeassociation.sourceforge.net/
Dependencies
Optional
- Berkeley DB
- Python and SWIG
Non-Multilib
Compile the package:
./configure --prefix=/usr \
--enable-python --enable-cxx --with-bdb4 &&
make
Install the package
make install
Multilib
32Bit
Compile the package:
export USE_ARCH=32 &&
sed -i "s/ld -shared/& ${LD_BUILD32}/" src/python/Makefile.in &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" configure --prefix=/usr \
--enable-python --enable-cxx --with-bdb4 &&
make
Install the package
make install && unset USE_ARCH
N32
Please try setting CXX if this fails.
Compile the package:
export USE_ARCH=n32 &&
sed -i "s/ld -shared/& ${LD_BUILDN32}/" src/python/Makefile.in &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
--enable-python --enable-cxx --with-bdb4 &&
make
Install the package
make install && unset USE_ARCH
64Bit
Compile the package:
export USE_ARCH=64 &&
sed -i "s/ld -shared/& ${LD_BUILD64}/" src/python/Makefile.in &&
CC="gcc ${BUILD64} -fPIC" CXX="g++ ${BUILD64} -fPIC" \
./configure --prefix=/usr --libdir=/usr/lib64 \
--enable-python --enable-cxx --with-bdb4 &&
make
Install the package
make install && unset USE_ARCH
Contents
| Installed Programs: | ??? |
|---|---|
| Installed Libraries: | ??? |
| Installed Directories: | ??? |
Short Descriptions
| program1 | ??? |
|---|---|
| program2 | ??? |