--- plexus-i18n-1.0-beta-10.orig/debian/components.xml
+++ plexus-i18n-1.0-beta-10/debian/components.xml
@@ -0,0 +1,9 @@
+<component-set>
+  <components>
+    <component>
+      <role>org.codehaus.plexus.i18n.I18N</role>
+      <implementation>org.codehaus.plexus.i18n.DefaultI18N</implementation>
+      <description></description>
+    </component>
+  </components>
+</component-set>
--- plexus-i18n-1.0-beta-10.orig/debian/copyright
+++ plexus-i18n-1.0-beta-10/debian/copyright
@@ -0,0 +1,75 @@
+This package was debianized by Trygve Laugstol <trygvis@inamo.no>
+on 07-June-2007.
+
+The Debian packaging is Copyright (c) 2007 Trygve Laugstol and is licensed under
+the GNU General Public License version 2. On Debian systems, the complete text
+of the GNU General Public License version 2 can be found in
+'/usr/share/common-licenses/GPL-2'.
+
+
+plexus-i18n was downloaded from:
+    http://svn.codehaus.org/plexus/plexus-components/trunk/plexus-i18n
+
+Upstream Authors:  
+    The Apache Software Foundation
+    The Codehaus Foundation
+    Daniel Rall <dlr@collab.net> or <dlr@finemaltcoding.com>
+    Jason van Zyl <jason@zenplex.com>
+
+Copyright:
+    Copyright (c) 2001-2007, Codehaus.org
+
+License:
+    Licensed under the Apache License, Version 2.0 (the "License")
+
+The full text of the license can be found in
+`/usr/share/common-licenses/Apache-2.0'.
+
+
+Source files DefaultI18NTest.java and I18NTokenizerTest.java are
+licensed under version 1.1 of the license:
+    The Apache Software License, Version 1.1
+
+    Copyright (c) 2001 The Apache Software Foundation.  All rights
+    reserved.
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+
+    2. Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in
+       the documentation and/or other materials provided with the
+       distribution.
+
+    3. The end-user documentation included with the redistribution,
+       if any, must include the following acknowledgment:
+          "This product includes software developed by the
+           Apache Software Foundation (http://www.codehaus.org/)."
+       Alternately, this acknowledgment may appear in the software itself,
+       if and wherever such third-party acknowledgments normally appear.
+    
+    4. The names "Apache" and "Apache Software Foundation" and
+       "Apache Turbine" must not be used to endorse or promote products
+       derived from this software without prior written permission. For
+       written permission, please contact codehaus@codehaus.org.
+    
+    5. Products derived from this software may not be called "Apache",
+       "Apache Turbine", nor may "Apache" appear in their name, without
+       prior written permission of the Apache Software Foundation.
+    
+    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+    WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+    DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+    ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+    USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+    OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+    SUCH DAMAGE.
--- plexus-i18n-1.0-beta-10.orig/debian/rules
+++ plexus-i18n-1.0-beta-10/debian/rules
@@ -0,0 +1,28 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+PACKAGE              := $(DEB_SOURCE_PACKAGE)
+VERSION              := $(DEB_UPSTREAM_VERSION)
+JAVA_HOME            := /usr/lib/jvm/java-6-openjdk
+DEB_JARS             := ant-nodeps plexus-container-default \
+                        plexus-utils junit ant-junit
+DEB_ANT_BUILD_TARGET := package javadoc
+DEB_ANT_BUILDFILE    := /usr/share/maven-ant-helper/maven-build.xml
+DEB_ANT_ARGS         := -Dbasedir=$(realpath .) -Dpackage=$(PACKAGE) -Dversion=$(VERSION)
+API_DOCS             := build/api
+
+makebuilddir/lib$(PACKAGE)-java::
+	install -d build/classes/META-INF/plexus/
+	install -m644 debian/components.xml build/classes/META-INF/plexus/
+
+get-orig-source:
+	uscan --download-version $(VERSION) --force-download --rename
+
+binary-post-install/lib$(PACKAGE)-java::
+	mh_installpoms -plib$(PACKAGE)-java
+	mh_installjar -plib$(PACKAGE)-java pom.xml -l build/$(PACKAGE)-$(VERSION).jar
+
+clean::
+	-rm -rf debian/tmp
--- plexus-i18n-1.0-beta-10.orig/debian/orig-tar.sh
+++ plexus-i18n-1.0-beta-10/debian/orig-tar.sh
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+
+# $2 = version
+
+TAR=../plexus-i18n_$2.orig.tar.gz
+DIR=plexus-i18n-$2
+TAG=plexus-i18n-$2
+
+svn export http://svn.codehaus.org/plexus/plexus-components/tags/$TAG/ $DIR
+tar -c -z -f $TAR $DIR
+rm -rf $DIR ../$TAG
+
+# move to directory 'tarballs'
+if [ -r .svn/deb-layout ]; then
+  . .svn/deb-layout
+  mv $TAR $origDir
+  echo "moved $TAR to $origDir"
+fi
+
--- plexus-i18n-1.0-beta-10.orig/debian/changelog
+++ plexus-i18n-1.0-beta-10/debian/changelog
@@ -0,0 +1,63 @@
+plexus-i18n (1.0-beta-10-2) unstable; urgency=low
+
+  * Add missing Build-Depends: openjdk-6-doc.
+
+ -- Torsten Werner <twerner@debian.org>  Sun, 09 Aug 2009 23:40:03 +0200
+
+plexus-i18n (1.0-beta-10-1) experimental; urgency=low
+
+  [ Ludovic Claude ]
+  * New upstream version
+  * Added myself to Uploaders.
+  * Add the Maven POM to the package
+  * Add a Build-Depends-Indep dependency on maven-repo-helper
+  * Use mh_installpom and mh_installjar to install the POM and the jar to the
+    Maven repository
+  * Update the watch file to reflect changes on the web site, use
+    SVN to download the sources
+  * Add maven-build.xml to debian/ in order to support compilation with Java 1.5
+  * Change the dependency on libplexus-container-default-java to 
+    libplexus-containers-java
+  * Use openjdk-6 JDK instead of gcj to build the package
+
+  [ Torsten Werner ]
+  * Fix doc-base file.
+
+ -- Torsten Werner <twerner@debian.org>  Tue, 14 Jul 2009 11:35:41 +0200
+
+plexus-i18n (1.0-beta-7+svn6675-3) unstable; urgency=low
+
+  * Update Standards-Version: 3.8.2.
+    - Fix Homepage and Vcs headers.
+  * Change Section: java.
+  * Add missing Depends: ${misc:Depends}.
+
+ -- Torsten Werner <twerner@debian.org>  Wed, 01 Jul 2009 23:13:39 +0200
+
+plexus-i18n (1.0-beta-7+svn6675-2) experimental; urgency=low
+
+  [ Michael Koch ]
+  * Updated watch file to ignore '+svn...' part.
+  * Added myself to Uploaders.
+
+  [ Torsten Werner ]
+  * Add plexus component descriptor.
+  * Add myself to Uploaders.
+  * Do no longer quote the full text of the Apache-2.0 license in
+    debian/copyright.
+
+ -- Torsten Werner <twerner@debian.org>  Tue, 16 Dec 2008 23:23:54 +0100
+
+plexus-i18n (1.0-beta-7+svn6675-1) unstable; urgency=low
+
+  * New upstream release, to correct license problems (resulting in
+    rejection from ftp-master).
+      (Closes: #428575)
+
+ -- Paul Cager <paul-debian@home.paulcager.org>  Sat, 21 Jul 2007 00:09:27 +0100
+
+plexus-i18n (1.0-beta-6-1) unstable; urgency=low
+
+  * Initial release. (Closes: #428575)
+
+ -- Paul Cager <paul-debian@home.paulcager.org>  Tue, 12 Jun 2007 18:55:48 +0100
--- plexus-i18n-1.0-beta-10.orig/debian/watch
+++ plexus-i18n-1.0-beta-10/debian/watch
@@ -0,0 +1,4 @@
+version=3
+http://svn.codehaus.org/plexus/plexus-components/tags/ \
+  plexus-i18n-(.*)/ debian debian/orig-tar.sh
+
--- plexus-i18n-1.0-beta-10.orig/debian/control
+++ plexus-i18n-1.0-beta-10/debian/control
@@ -0,0 +1,34 @@
+Source: plexus-i18n
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
+Uploaders: Trygve Laugstol <trygvis@inamo.no>, Paul Cager <paul-debian@home.paulcager.org>, 
+ Torsten Werner <twerner@debian.org>, Ludovic Claude <ludovic.claude@laposte.net>
+Build-Depends-Indep: maven-repo-helper, maven-ant-helper (>> 4), ant, ant-optional, 
+ libxalan2-java, libplexus-utils-java (>= 1:1.4.5), libplexus-containers-java,
+ openjdk-6-doc
+Build-Depends: debhelper (>= 5), cdbs (>= 0.4.5.3), openjdk-6-jdk
+Standards-Version: 3.8.1
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/plexus-i18n
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/plexus-i18n/
+Homepage: http://plexus.codehaus.org/
+
+Package: libplexus-i18n-java
+Architecture: all
+Depends: ${misc:Depends}, libplexus-utils-java, libplexus-containers-java
+Suggests: libplexus-i18n-java-doc
+Description: a component to support internationalization of applications using Plexus
+ Plexus I18n is a set of Plexus-components supporting internationalization of
+ Plexus-based applications.
+
+Package: libplexus-i18n-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}, classpath-doc, libplexus-containers-java-doc, libplexus-utils-java-doc
+Suggests: libplexus-i18n-java
+Description: API Documentation for plexus-i18n
+ Plexus I18n is a set of Plexus-components supporting internationalization of
+ Plexus-based applications.
+ .
+ This package contains the API documentation for plexus-i18n.
+
--- plexus-i18n-1.0-beta-10.orig/debian/libplexus-i18n-java.poms
+++ plexus-i18n-1.0-beta-10/debian/libplexus-i18n-java.poms
@@ -0,0 +1 @@
+pom.xml --no-parent
--- plexus-i18n-1.0-beta-10.orig/debian/compat
+++ plexus-i18n-1.0-beta-10/debian/compat
@@ -0,0 +1 @@
+5
--- plexus-i18n-1.0-beta-10.orig/debian/build.properties
+++ plexus-i18n-1.0-beta-10/debian/build.properties
@@ -0,0 +1,3 @@
+javadoc.dir=build/api
+maven.test.skip=true
+build.javaVersion=1.5
--- plexus-i18n-1.0-beta-10.orig/debian/libplexus-i18n-java-doc.docs
+++ plexus-i18n-1.0-beta-10/debian/libplexus-i18n-java-doc.docs
@@ -0,0 +1 @@
+build/api
--- plexus-i18n-1.0-beta-10.orig/debian/libplexus-i18n-java-doc.doc-base
+++ plexus-i18n-1.0-beta-10/debian/libplexus-i18n-java-doc.doc-base
@@ -0,0 +1,9 @@
+Document: libplexus-i18n-java
+Title: API Javadoc for libplexus-i18n
+Author: plexus-i18n developers
+Abstract: This is the API Javadoc provided by the libplexus-i18n library.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/libplexus-i18n-java-doc/api/index.html
+Files: /usr/share/doc/libplexus-i18n-java-doc/api/*
