~ubuntu-branches/ubuntu/edgy/psi/edgy

« back to all changes in this revision

Viewing changes to iris/example/conntest/prepare

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-14 16:33:49 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050914163349-3zacov4afysz5cw5
Tags: 0.9.3-2ubuntu1
* Sync with debian
* Applied patch to psi.desktop to start psi without gpg-agent use (known
  issue)
* Updated README.Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
CS_BASE=../../../cutestuff
 
4
QCA_BASE=../../../qca
 
5
IRIS_BASE=../..
 
6
 
 
7
# import cutestuff
 
8
mkdir cutestuff
 
9
cp -a $CS_BASE/util cutestuff
 
10
cp -a $CS_BASE/network cutestuff
 
11
 
 
12
# import qca
 
13
mkdir qca
 
14
cp -a $QCA_BASE/src/* qca
 
15
 
 
16
# import iris
 
17
mkdir iris
 
18
cp -a $IRIS_BASE/libidn iris
 
19
cp -a $IRIS_BASE/libidn.pri iris
 
20
cp -a $IRIS_BASE/include iris
 
21
cp -a $IRIS_BASE/xmpp-core iris
 
22
cp -a $IRIS_BASE/xmpp-im iris
 
23
cp -a $IRIS_BASE/jabber iris
 
24
cp -a $IRIS_BASE/iris.pri iris
 
25
 
 
26
# other stuff
 
27
cp -a $IRIS_BASE/cs.pri .
 
28
cp -a $IRIS_BASE/example/example.pri .
 
29
cp -a $IRIS_BASE/COPYING .
 
30