~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/projects/team-address

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Print the team's address (to stdout) and output additional instructions
 
3
# (to stderr).
 
4
projectsdir="$1"
 
5
progdir="$2"
 
6
catalog="$3"  # e.g. "pt_BR"
 
7
language="$4" # e.g. "pt"
 
8
 
 
9
for project in `cat "$projectsdir/index"`; do
 
10
  if /bin/sh "$projectsdir/$project/trigger"; then
 
11
    /bin/sh "$projectsdir/$project/team-address" "$projectsdir" "$progdir" "$catalog" "$language"
 
12
    exit $?
 
13
  fi
 
14
done
 
15
 
 
16
exit 0