diff -u smarty-2.6.18/debian/changelog smarty-2.6.18/debian/changelog --- smarty-2.6.18/debian/changelog +++ smarty-2.6.18/debian/changelog @@ -1,3 +1,10 @@ +smarty (2.6.18-1ubuntu1) gutsy; urgency=low + + * Set Maintainer to Ubuntu MOTU Developers + * Modified Makefile so libs will be installed to correct directory (LP: #118793) + + -- Nathan Handler Sat, 09 Jun 2007 08:20:06 -0500 + smarty (2.6.18-1) unstable; urgency=low * New upstream release diff -u smarty-2.6.18/debian/control smarty-2.6.18/debian/control --- smarty-2.6.18/debian/control +++ smarty-2.6.18/debian/control @@ -1,7 +1,8 @@ Source: smarty Section: web Priority: optional -Maintainer: Dimitri Fontaine +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Dimitri Fontaine Uploaders: Igor Genibel , Pierre Machard , Thierry Randrianiriana Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5) diff -u smarty-2.6.18/debian/Makefile smarty-2.6.18/debian/Makefile --- smarty-2.6.18/debian/Makefile +++ smarty-2.6.18/debian/Makefile @@ -10,13 +10,13 @@ TOPFILES = BUGS ChangeLog FAQ NEWS README RELEASE_NOTES TODO QUICK_START install: - install -d -o www-data -m 755 $(TARGETDIR)/libs - install -d -o www-data -m 755 $(TARGETDIR)/libs/internals - install -d -o www-data -m 755 $(TARGETDIR)/libs/plugins + install -d -o www-data -m 755 $(TARGETDIR)/ + install -d -o www-data -m 755 $(TARGETDIR)/internals + install -d -o www-data -m 755 $(TARGETDIR)/plugins - install -o www-data -m 644 $(LIBS) $(TARGETDIR)/libs - install -o www-data -m 644 $(INTERNALS) $(TARGETDIR)/libs/internals - install -o www-data -m 644 $(PLUGINS) $(TARGETDIR)/libs/plugins + install -o www-data -m 644 $(LIBS) $(TARGETDIR)/ + install -o www-data -m 644 $(INTERNALS) $(TARGETDIR)/internals + install -o www-data -m 644 $(PLUGINS) $(TARGETDIR)/plugins install -d $(DOCPATH) install -o www-data -m 644 $(TOPFILES) $(DOCPATH)