Difference between revisions of "Alacarte"

From CBLFS
Jump to navigationJump to search
 
(3 intermediate revisions by the same user not shown)
Line 6: Line 6:
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 14: Line 16:
  
 
== Non-Multilib ==
 
== Non-Multilib ==
 +
 +
Make sure that the data installed in the site-packages directory can be found:
 +
 +
sed -i "/^import sys/a\if not "\
 +
"\"${GNOME_PREFIX}/lib/python{{Python-Version2}}/site-packages\""\
 +
" in sys.path:\n    sys.path.insert (0, "\
 +
"\"${GNOME_PREFIX}/lib/python{{Python-Version2}}/site-packages\")" alacarte.in
  
 
Compile the package:
 
Compile the package:
Line 28: Line 37:
  
 
=== 32Bit ===
 
=== 32Bit ===
 +
 +
Make sure that the data installed in the site-packages directory can be found:
 +
 +
sed -i "/^import sys/a\if not "\
 +
"\"${GNOME_PREFIX}/lib/python{{Python-Version2}}/site-packages\""\
 +
" in sys.path:\n    sys.path.insert (0, "\
 +
"\"${GNOME_PREFIX}/lib/python{{Python-Version2}}/site-packages\")" alacarte.in
  
 
Compile the package:
 
Compile the package:
Line 40: Line 56:
  
 
=== N32 ===
 
=== N32 ===
 +
 +
Make sure that the data installed in the site-packages directory can be found:
 +
 +
sed -i "/^import sys/a\if not "\
 +
"\"${GNOME_PREFIX}/lib32/python{{Python-Version2}}/site-packages\""\
 +
" in sys.path:\n    sys.path.insert (0, "\
 +
"\"${GNOME_PREFIX}/lib32/python{{Python-Version2}}/site-packages\")" alacarte.in
  
 
Compile the package:
 
Compile the package:
Line 52: Line 75:
  
 
=== 64Bit ===
 
=== 64Bit ===
 +
 +
Make sure that the data installed in the site-packages directory can be found:
 +
 +
sed -i "/^import sys/a\if not "\
 +
"\"${GNOME_PREFIX}/lib64/python{{Python-Version2}}/site-packages\""\
 +
" in sys.path:\n    sys.path.insert (0, "\
 +
"\"${GNOME_PREFIX}/lib64/python{{Python-Version2}}/site-packages\")" alacarte.in
  
 
Compile the package:
 
Compile the package:

Latest revision as of 15:27, 16 April 2007

Download Source: http://ftp.gnome.org/pub/GNOME/sources/alacarte/0.13/alacarte-0.13.2.tar.bz2

Introduction to Alacarte

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Make sure that the data installed in the site-packages directory can be found:

sed -i "/^import sys/a\if not "\
"\"${GNOME_PREFIX}/lib/python2.7/site-packages\""\
" in sys.path:\n    sys.path.insert (0, "\
"\"${GNOME_PREFIX}/lib/python2.7/site-packages\")" alacarte.in

Compile the package:

./configure --prefix=${GNOME_PREFIX} &&
make

Install the package

make install

Multilib

This package does not compile anything but it will still install files into pythons site-packages. Only one installation is needed.

32Bit

Make sure that the data installed in the site-packages directory can be found:

sed -i "/^import sys/a\if not "\
"\"${GNOME_PREFIX}/lib/python2.7/site-packages\""\
" in sys.path:\n    sys.path.insert (0, "\
"\"${GNOME_PREFIX}/lib/python2.7/site-packages\")" alacarte.in

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} &&
make

Install the package

make install

N32

Make sure that the data installed in the site-packages directory can be found:

sed -i "/^import sys/a\if not "\
"\"${GNOME_PREFIX}/lib32/python2.7/site-packages\""\
" in sys.path:\n    sys.path.insert (0, "\
"\"${GNOME_PREFIX}/lib32/python2.7/site-packages\")" alacarte.in

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
./configure --prefix=${GNOME_PREFIX} &&
make

Install the package

make install

64Bit

Make sure that the data installed in the site-packages directory can be found:

sed -i "/^import sys/a\if not "\
"\"${GNOME_PREFIX}/lib64/python2.7/site-packages\""\
" in sys.path:\n    sys.path.insert (0, "\
"\"${GNOME_PREFIX}/lib64/python2.7/site-packages\")" alacarte.in

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} &&
make

Install the package

make install