=== modified file 'debian/control'
--- debian/control	2007-03-09 10:30:51 +0000
+++ debian/control	2007-06-29 07:58:00 +0000
@@ -4,7 +4,7 @@
 XS-Python-Version: all
 Maintainer: Ubuntu Artwork Team <ubuntu-art@lists.ubuntu.com>
 XS-Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-art-pkg/feisty-gdm-themes/ubuntu
-Build-Depends: debhelper(>= 5), cdbs, python-dev (>= 2.4), python-distutils-extra, python-central (>= 0.5)
+Build-Depends: debhelper(>= 5), cdbs, python-dev (>= 2.4), python-distutils-extra(>= 1.90), python-central (>= 0.5)
 Standards-Version: 3.7.2
 
 Package: feisty-gdm-themes

=== modified file 'setup.cfg'
--- setup.cfg	2007-03-15 12:40:59 +0000
+++ setup.cfg	2007-06-29 07:57:30 +0000
@@ -1,12 +1,9 @@
-[build]
-l10n=True
-
-[build_l10n]
+[build_i18n]
 domain=feisty-gdm-themes
-merge_desktop_files=[('share/gdm/themes/Human',
-                      ('Human/GdmGreeterTheme.desktop.in',)),
-                     ('share/gdm/themes/HumanCircle',
-		      ('HumanCircle/GdmGreeterTheme.desktop.in',)),
-		     ('share/gdm/themes/HumanList',
-                      ('HumanList/GdmGreeterTheme.desktop.in',)),
-                    ]
+desktop_files=[('share/gdm/themes/Human',
+                ('Human/GdmGreeterTheme.desktop.in',)),
+               ('share/gdm/themes/HumanCircle',
+                ('HumanCircle/GdmGreeterTheme.desktop.in',)),
+	       ('share/gdm/themes/HumanList',
+                ('HumanList/GdmGreeterTheme.desktop.in',)),
+              ]

=== modified file 'setup.py'
--- setup.py	2007-03-15 12:40:59 +0000
+++ setup.py	2007-06-29 07:56:42 +0000
@@ -1,5 +1,5 @@
 from distutils.core import setup
-from DistUtilsExtra.distutils_extra import build_extra, build_l10n
+from DistUtilsExtra.command import *
 import glob
 import os
 import re
@@ -17,17 +17,17 @@
     version = version,
     data_files=[('share/gdm/themes/Human', 
                  glob.glob('Human/*.png')+glob.glob('Human/*.svg')+\
-		 glob.glob('Human/*.xml')),
+                 glob.glob('Human/*.xml')),
                 ('share/gdm/themes/Human/gtk-2.0', glob.glob('Human/gtk-2.0/*')),
                 ('share/gdm/themes/HumanCircle', 
-		 glob.glob('HumanCircle/*.png')+glob.glob('HumanCircle/*.svg')+\
-		 glob.glob('HumanCircle/*.xml')),
-		('share/gdm/themes/HumanList',
+                 glob.glob('HumanCircle/*.png')+glob.glob('HumanCircle/*.svg')+\
+                 glob.glob('HumanCircle/*.xml')),
+                ('share/gdm/themes/HumanList',
                  glob.glob('HumanList/*.png')+glob.glob('HumanList/*.svg')+\
                  glob.glob('HumanList/*.xml')),
                 ('share/gdm/themes/HumanList/gtk-2.0', glob.glob('HumanList/gtk-2.0/*')),
                ],
-    cmdclass = { "build" : build_extra,
-                 "build_l10n" :  build_l10n }
+    cmdclass = { "build" : build_extra.build_extra,
+                 "build_i18n" :  build_i18n.build_i18n }
 )
 


