compiz zu gnome hinzugefügt, da abhängigkeiten bestehen, dieser aber vor dem kdebuild laufen sollte (zwecks 3D Support)

git-svn-id: svn://svn.compuextreme.de/Viitor/V962/ViitorMake@5126 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-01-18 14:10:28 +00:00
parent f1d5bcf8fb
commit 08dc6641e1
2 changed files with 10 additions and 4 deletions

View File

@ -34,3 +34,4 @@
0 gnome/gnome-session
0 gnome/vte
0 gnome/gnome-terminal
0 xserv/compiz

View File

@ -76,17 +76,20 @@ premk() {
}
mk32() {
CC="gcc $BUILDOPTIONS" \
CXX="g++ $BUILDOPTIONS" \
USE_ARCH=$UARCH \
CC="gcc $BUILDOPTIONS32" \
CXX="g++ $BUILDOPTIONS32" \
USE_ARCH=32 \
./configure --host=$TARGET32 \
--localstatedir=/var \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--disable-gnome \
--prefix=/usr/X11R7
make -j $NUMCPU
make -j $NUMCPU DESTDIR=$TMPROOT install
make clean
make distclean
echo "cleaned"
read
}
@ -94,10 +97,12 @@ mk() {
CC="gcc $BUILDOPTIONS" \
CXX="g++ $BUILDOPTIONS" \
USE_ARCH=$UARCH \
LDFLAGS="-L/usr/$LIBDIR -L/usr/X11R7/$LIBDIR" \
./configure --host=$TARGET \
--localstatedir=/var \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--disable-gnome \
--prefix=/usr/X11R7
make -j $NUMCPU
make -j $NUMCPU DESTDIR=$TMPROOT install