added wxDFB to distribution scripts

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-01-10 15:01:42 +00:00
parent d716e45315
commit c640dfa5e8
3 changed files with 18 additions and 3 deletions

View File

@@ -63,6 +63,10 @@ getfilelist(){
filelist="$filelist mgl.rsp"
fi
if [ $port = "dfb" ] || [ $port = "all" ]; then
filelist="$filelist dfb.rsp"
fi
if [ $port = "gtk" ] || [ $port = "all" ]; then
filelist="$filelist gtk.rsp"
fi
@@ -124,7 +128,7 @@ dospinport(){
mac)
portname="Mac";;
*)
# for all the others (DFB, GTK, MGL, MSW, X11) just use the
# for all the others (DFB, GTK, MGL, DFB, MSW, X11) just use the
# upper-case version as they are abbreviations
portname=`echo $port | tr '[a-z]' '[A-Z]'`;;
esac
@@ -187,6 +191,8 @@ prepareforrelease()
cp $APPDIR/docs/mgl/readme.txt $APPDIR/readme-mgl.txt
cp $APPDIR/docs/mgl/install.txt $APPDIR/install-mgl.txt
cp $APPDIR/docs/dfb/install.txt $APPDIR/install-dfb.txt
cp $APPDIR/docs/x11/readme.txt $APPDIR/readme-x11.txt
cp $APPDIR/docs/x11/install.txt $APPDIR/install-x11.txt
@@ -285,6 +291,7 @@ fi
if [ "$SPINALL" = "1" ]; then
dospinport "mgl"
dospinport "dfb"
dospinport "gtk"
dospinport "x11"
dospinport "motif"

View File

@@ -0,0 +1,6 @@
install-dfb.txt
include/wx/dfb/*.h
include/wx/dfb/private/*.h
src/dfb/*.cpp
docs/dfb/*.txt

View File

@@ -53,6 +53,8 @@ docopydocs()
cp $APPDIR/docs/mgl/readme.txt $DESTDIR/readme-mgl-$VERSION.txt
cp $APPDIR/docs/mgl/install.txt $DESTDIR/install-mgl-$VERSION.txt
cp $APPDIR/docs/dfb/install.txt $DESTDIR/install-dfb-$VERSION.txt
cp $APPDIR/docs/cocoa/readme.txt $DESTDIR/readme-cocoa-$VERSION.txt
cp $APPDIR/docs/cocoa/install.txt $DESTDIR/install-cocoa-$VERSION.txt