2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * *.directory: Renamed to *.directory.in to be used with xml-i18n-tools. * *.desktop: Renamed to *.desktop to be used with xml-i18n-tools. * *.glade: Modified to not generate the glade.h files. * *.glade.h: Removed. * Makefile.am: Modify to use xml-i18n-tools * configure.in: ditto. * autogen.sh: ditto, now we use the macros/autogen.sh 2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * .cvsignore: ssshhhh 2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * screensavers/*.xml: /s/label/_label, /s/low-label/_low-label/, /s/high-label/_high-label/: Changed to let xml-i18n-tools extract this labels. * extract-labels.c: Removed, now, we use xml-i18n-tools. * preferences.c: /s/label/_label, /s/low-label/_low-label/, /s/high-label/_high-label/: Changed to sync with the xml changes. * screensaver-prefs-dialog.c: ditto. 2001-07-16 Carlos Perelló Marín <carlos@gnome-db.org> * no.po: Solved some conflicts with my patch. 2001-07-14 Carlos Perelló Marín <carlos@gnome-db.org> * POTFILES.in: Updated to reflect the xml-i18n-tools use. * *.po: Added the .directory && .desktop translations. * update.*: Removed. * wa.po: Added. * es.po: Updated Spanish translation.
30 lines
916 B
Makefile
30 lines
916 B
Makefile
SUBDIRS = archiver capplets control-center po intl
|
|
#I removed the root-manager for now
|
|
#
|
|
# it generated this error :
|
|
# root-manager.c:55:31: security/pam_appl.h: No such file or directory
|
|
# while compiling. I guess we need to check for pam or something
|
|
# in the configure.in file. Since we are not using it now, i will
|
|
# remove it from the default build. Chema
|
|
|
|
dist-hook: control-center.spec
|
|
cp control-center.spec $(distdir)
|
|
|
|
ccenterdir = $(datadir)/control-center/capplets
|
|
paneldir = $(datadir)/gnome/apps/Settings
|
|
|
|
directory_in_files = \
|
|
Gnome.directory.in
|
|
noinst_DATA = $(directory_in_files:.directory.in=.directory)
|
|
@XML_I18N_MERGE_DIRECTORY_RULE@
|
|
|
|
install-data-local:
|
|
$(INSTALL_DATA) $(srcdir)/Gnome.directory $(DESTDIR)$(ccenterdir)/.directory
|
|
|
|
EXTRA_DIST = \
|
|
control-center.spec.in \
|
|
$(directory_in_files) \
|
|
$(noinst_DATA) \
|
|
xml-i18n-extract.in \
|
|
xml-i18n-merge.in \
|
|
xml-i18n-update.in
|