2005-06-17 Kaushal Kumar <kakumar@novell.com> * Retired GAL from Head. The relevant files have moved inside evolution. Thanks to JP Rosevear for performing the cvs surgery. The files have been moved in the following order. evolution/e-util <- gal/gal/util evolution/a11y <- gal/gal/a11y evolution/a11y/e-table <- gal/gal/a11y/e-table evolution/a11y/e-text <- gal/gal/a11y/e-text evolution/widgets/table <- gal/gal/e-table evolution/widgets/text <- gal/gal/e-text evolution/widgets/misc <- gal/gal/widgets evolution/widgets/misc/pixmaps <- gal/gal/widgets/pixmaps evolution/widgets/menus <- gal/gal/menus Following is the summary of changes done to fix the build:- - New files added to cvs repository, - a11y/e-table/Makefile.am - a11y/e-text/Makefile.am - widgets/table/Makefile.am - widgets/text/Makefile.am - widgets/misc/pixmaps/Makefile.am - iconv-detect.h - iconv-detect.c - Updated configure.in. - Updated all the relevant Makefile.am files. - Updated the include paths to replace all gal references. - Updated the marshal list to suit gal files requirements. svn path=/trunk/; revision=29522
75 lines
1.3 KiB
Makefile
75 lines
1.3 KiB
Makefile
changelogs = \
|
|
ChangeLog \
|
|
ChangeLog.pre-1-4
|
|
|
|
%-$(BASE_VERSION).pc: %.pc
|
|
cp $< $@
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = \
|
|
evolution-shell-$(BASE_VERSION).pc \
|
|
evolution-plugin-$(BASE_VERSION).pc
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
$(changelogs) \
|
|
COPYING-DOCS \
|
|
README \
|
|
HACKING \
|
|
MAINTAINERS \
|
|
NEWS \
|
|
NEWS-1.0 \
|
|
marshal.mk \
|
|
iconv-detect.c \
|
|
plugin.mk \
|
|
server.mk \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
intltool-extract.in \
|
|
$(pkgconfig_DATA:-$(BASE_VERSION).pc=.pc.in)
|
|
|
|
if ENABLE_SMIME
|
|
SMIME_DIR=smime
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
win32 \
|
|
data \
|
|
e-util \
|
|
a11y \
|
|
widgets \
|
|
shell \
|
|
filter \
|
|
$(SMIME_DIR) \
|
|
addressbook \
|
|
calendar \
|
|
art \
|
|
composer \
|
|
mail \
|
|
plugins \
|
|
ui \
|
|
views \
|
|
tools \
|
|
help \
|
|
po
|
|
|
|
DISTCLEANFILES = intltool-extract intltool-merge intltool-update iconv-detect.c $(pkgconfig_DATA)
|
|
|
|
# CDE Stuff
|
|
|
|
if HAVE_DTAPPINTEGRATE
|
|
|
|
# This installs Evolution into the Application Manager on CDE
|
|
dtappintegrate:
|
|
( cd data && make dtappintegrate )
|
|
|
|
# ...And this uninstalls it
|
|
dtappunintegrate:
|
|
( cd data ; make dtappunintegrate )
|
|
|
|
# Install/uninstall for CDE
|
|
cde-install: install dtappintegrate
|
|
cde-uninstall: dtappunintegrate uninstall
|
|
|
|
endif
|