hi I prepared a package of rosegarden 1.2.3 , and put it into http://tonelli.sns.it/pub/mennucc1/rosegarden4
If the mantainer does not object, I will upload this version into
experimental in some days (I first want to use it for a while)
While preparing the package I also found a small bug: the scons
command KDEinstallas was ignoring the DESTDIR, so the Debian package
was failing when doing
'scons install DESTDIR=`pwd`/debian/rosegarden4'
in debian/rules ; I solved it by the following patch
--- rosegarden4-1.2.3.orig/scons_admin/kde.py
+++ rosegarden4-1.2.3/scons_admin/kde.py
@@ -532,8 +532,9 @@
def KDEinstallas(lenv, restype, destfile, file):
if not env['_INSTALL']: return
+ basedir = env['DESTDIR']
dir = getInstDirForResType(lenv, restype)
- install_list = lenv.InstallAs(lenv.join(dir, destfile), file)
+ install_list = lenv.InstallAs(lenv.join(basedir, dir,
destfile), file)
env.Alias('install', install_list)
return install_list
a.
--
Andrea Mennucc
"E' un mondo difficile. Che vita intensa!" (Tonino Carotone)
signature.asc
Description: Digital signature

