EMODULES: Fix & Unify autofoo stuff everywhere, fix dist tarballs support, add ability to create dist tarball of all modules.

SVN revision: 41571
This commit is contained in:
Daniel Kolesa 2009-08-03 14:49:56 +00:00
parent 024bc0878a
commit ce6092ac2c
44 changed files with 71 additions and 100 deletions

View File

@ -1,23 +0,0 @@
ABOUT-NLS
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.guess
config.h
config.h.in
config.log
config.rpath
config.status
config.sub
configure
depcomp
e_modules-photo.spec
install-sh
libtool
ltmain.sh
m4
missing
mkinstalldirs
stamp-h1
*.tar.gz

View File

@ -1,10 +1,25 @@
ACLOCAL_AMFLAGS = -I m4
MAINTAINERCLEANFILES = Makefile.in
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
config.sub configure depcomp install-sh ltmain.sh \
missing module.desktop config.rpath mkinstalldirs
SUBDIRS = src data po
EDJE_FLAGS = -v \
-id $(top_srcdir)/data/images
filesdir = $(datadir)
files_DATA = e-module-photo.edj module.desktop
EXTRA_DIST= $(files_DATA)
pkgdir = $(datadir)/$(MODULE_ARCH)
EXTRA_DIST = module.desktop.in \
e_modules-photo.spec.in \
e-module-photo.edc \
%.edj: %.edc
$(EDJE_CC) $(EDJE_FLAGS) $< $@
clean-local:
rm -rf e-module-photo.edj module.desktop e_modules-photo.spec *~
uninstall:
rm -rf $(DESTDIR)$(datadir)

View File

@ -1,5 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
# get rid of that stupid cache mechanism
rm -f config.cache
AC_INIT(photo, 0.1.0, ooookiwi@gmail.com)
AC_PREREQ(2.52)
AC_CONFIG_SRCDIR(configure.ac)
@ -57,8 +60,8 @@ data/Makefile
data/images/Makefile
data/theme/Makefile
src/Makefile
src/module/Makefile
po/Makefile.in
module.desktop
], [
])

View File

@ -1,2 +0,0 @@
Makefile
Makefile.in

View File

@ -1,2 +0,0 @@
Makefile
Makefile.in

View File

@ -1,3 +0,0 @@
Makefile
Makefile.in
photo.edj

32
e-module-photo.edc Normal file
View File

@ -0,0 +1,32 @@
images {
image: "photo_logo.png" COMP;
}
collections {
group {
name: "icon";
max: 48 48;
parts {
part {
name: "image";
type: IMAGE;
mouse_events: 0;
description {
state: "default" 0.00;
visible: 1;
aspect: 1.00 1.00;
rel1 {
relative: 0.00 0.00;
offset: 0 0;
}
rel2 {
relative: 1.00 1.00;
offset: -1 -1;
}
image {
normal: "photo_logo.png";
}
}
}
}
}
}

Binary file not shown.

View File

@ -1,17 +0,0 @@
Makefile
Makefile.in
Makefile.in.in
Makevars.template
Rules-quot
boldquot.sed
en@boldquot.header
en@quot.header
insert-header.sin
quot.sed
remove-potcdate.sin
POTFILES
remove-potcdate.sed
stamp-po
*.pot
*.mo
*.gmo

View File

@ -1,2 +0,0 @@
Makefile
Makefile.in

View File

@ -1,2 +1,18 @@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = module
INCLUDES = -I. \
-I$(top_srcdir) \
-I$(includedir) \
@E_CFLAGS@
pkgdir = $(datadir)/$(MODULE_ARCH)
pkg_LTLIBRARIES = module.la
module_la_SOURCES = $(wildcard *.c) \
$(wildcard *.h)
module_la_LIBADD = @E_LIBS@
module_la_LDFLAGS = -module -avoid-version -s
module_la_DEPENDENCIES = $(top_builddir)/config.h
clean-local:
rm -rf *~

View File

@ -1,6 +0,0 @@
.deps
.libs
Makefile
Makefile.in
*.lo
*.la

View File

@ -1,40 +0,0 @@
INCLUDES = -I. \
-I$(top_srcdir) \
-I$(includedir) \
@E_CFLAGS@
pkgdir = $(datadir)/$(MODULE_ARCH)
pkg_LTLIBRARIES = module.la
module_la_SOURCES = e_mod_main.c \
e_mod_main.h \
photo_item.c \
photo_item.h \
photo_config.c \
photo_config.h \
photo_config_dialog.c \
photo_config_dialog.h \
photo_config_dialog_dir.c \
photo_config_dialog_dir.h \
photo_config_dialog_item.c \
photo_config_dialog_item.h \
photo_menu.c \
photo_menu.h \
photo_picture.c \
photo_picture.h \
photo_picture_histo.c \
photo_picture_histo.h \
photo_picture_local.c \
photo_picture_local.h \
photo_picture_net.c \
photo_picture_net.h \
photo_popup_warn.c \
photo_popup_warn.h \
photo_popup_info.c \
photo_popup_info.h \
photo_utils.c \
photo_utils.h \
Photo.h \
Photo_includes.h
module_la_LIBADD = @E_LIBS@
module_la_LDFLAGS = -module -avoid-version -s
module_la_DEPENDENCIES = $(top_builddir)/config.h