_ _ _ _ _____ ___

| | | | ___| | | |  ___| __ ___  ___ _______  ___   / _ \__   _____ _ __
| |_| |/ _ \ | | | |_ | '__/ _ \/ _ \_  / _ \/ __| | | | \ \ / / _ \ '__|
|  _  |  __/ | | |  _|| | |  __/  __// /  __/\__ \ | |_| |\ V /  __/ |
|_| |_|\___|_|_| |_|  |_|  \___|\___/___\___||___/  \___/  \_/ \___|_|


I put E17's wm code into cvs. Hell is freezing over. Duke Nukem Forever will
be out next week. Snowballls take up residence in Hell. The Fat Lady sings.
The End is nigh...

:)


SVN revision: 12247
This commit is contained in:
Carsten Haitzler 2004-11-25 03:37:45 +00:00
parent f2b45ed471
commit 5e2388c886
656 changed files with 20812 additions and 0 deletions

2
AUTHORS Normal file
View File

@ -0,0 +1,2 @@
The Rasterman (Carsten Haitzler) <raster@rasterman.com>

28
COPYING Normal file
View File

@ -0,0 +1,28 @@
Copyright (C) 2000 Carsten Haitzler and various contributors (see AUTHORS)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies of the Software and its Copyright notices. In addition publicly
documented acknowledgment must be given that this software has been used if no
source code of this software is made available publicly. This includes
acknowledgments in either Copyright notices, Manuals, Publicity and Marketing
documents or any documentation provided with any product containing this
software. This License does not apply to any software that links to the
libraries provided by this software (statically or dynamically), but only to
the software provided.
Please see the COPYING.PLAIN for a plain-english explanation of this notice
and it's intent.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

33
COPYING-PLAIN Normal file
View File

@ -0,0 +1,33 @@
Plain English Copyright Notice
This file is not intended to be the actual License. The reason this file
exists is that we here are programmers and engineers. We aren't lawyers. We
provide licenses that we THINK say the right things, but we have our own
intentions at heart. This is a plain-english explanation of what those
intentions are, and if you follow them you will be within the "spirit" of
the license.
The intent is for us to enjoy writing software that is useful to us (the
AUTHORS) and allow others to use it freely and also benefit from the work we
put into making it. We don't want to restrict others using it. They should
not *HAVE* to make the source code of the applications they write that
simply link to these libraries (be that statically or dynamically), or for
them to be limited as to what license they choose to use (be it open, closed
or anything else). But we would like to know you are using these libraries.
We simply would like to know that it has been useful to someone. This is why
we ask for acknowledgement of some sort.
You can do what you want with the source of this software - it doesn't
matter. We still have it here for ourselves and it is open and free to use
and download and play with. It can't be taken away. We don't really mind what
you do with the source to your software. We would simply like to know that
you are using it - especially if it makes it to a commerical product. If you
simply e-mail all the AUTHORS (see COPYING and AUTHORS files) telling us, and
then make sure you include a paragraph or page in the manual for the product
with the copyright notice and state that you used this software, we will be
very happy. If you want to contribute back modifications and fixes you may have
made we will welcome those too with open arms (generally). If you want help
with changes needed, ports needed or features to be added, arrangements can
be easily made with some dialogue.
Carsten Haitzler <raster@rasterman.com>

0
ChangeLog Normal file
View File

14
INSTALL Normal file
View File

@ -0,0 +1,14 @@
COMPILING and INSTALLING:
If you got a official release tar archive do:
./configure
( otherwise if you got this from enlightenment cvs do: ./autogen.sh )
Then to compile:
make
To install (run this as root, or the user who handles installs):
make install
NOTE: You MUST make install Enlightenment for it to run properly.

10
Makefile.am Normal file
View File

@ -0,0 +1,10 @@
SUBDIRS = src data doc
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
config.h.in config.sub configure install-sh \
ltconfig ltmain.sh missing mkinstalldirs \
stamp-h.in acconfig.h
bin_SCRIPTS = enlightenment-config
EXTRA_DIST = README AUTHORS COPYING COPYING-PLAIN enlightenment.spec

0
NEWS Normal file
View File

1
README Normal file
View File

@ -0,0 +1 @@
Enlightenment 0.17.0 - IN DEVELOPMENT... not a RELEASE.

13
autogen.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
rm -rf autom4te.cache
rm -f aclocal.m4
echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
&& echo "Running autoheader..."; autoheader \
&& echo "Running autoconf..."; autoconf \
&& echo "Running libtoolize..."; libtoolize --automake \
&& echo "Running automake..."; automake --add-missing --copy --gnu
### If you want this, uncomment it.
./configure "$@"

196
configure.in Normal file
View File

@ -0,0 +1,196 @@
dnl Process this file with autoconf to produce a configure script.
# get rid of that stupid cache mechanism
rm -f config.cache
AC_INIT(configure.in)
AM_INIT_AUTOMAKE(enlightenment, 0.17.0_pre10)
AM_CONFIG_HEADER(config.h)
AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_C_CONST
AM_ENABLE_SHARED
AM_PROG_LIBTOOL
if test "x${exec_prefix}" = "xNONE"; then
if test "x${prefix}" = "xNONE"; then
bindir="${ac_default_prefix}/bin";
else
bindir="${prefix}/bin";
fi
else
if test "x${prefix}" = "xNONE"; then
bindir="${ac_default_prefix}/bin";
else
bindir="${prefix}/bin";
fi
fi
if test "x${exec_prefix}" = "xNONE"; then
if test "x${prefix}" = "xNONE"; then
libdir="${ac_default_prefix}/lib";
else
libdir="${prefix}/lib";
fi
else
if test "x${prefix}" = "xNONE"; then
libdir="${ac_default_prefix}/lib";
else
libdir="${prefix}/lib";
fi
fi
dnl Set PACKAGE_BIN_DIR in config.h.
if test "x${bindir}" = 'xNONE'; then
if test "x${prefix}" = "xNONE"; then
AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, "${ac_default_prefix}/bin", "Package installed binaries destination")
else
AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, "${prefix}/bin", "Package installed binaries destination")
fi
else
AC_DEFINE_UNQUOTED(PACKAGE_BIN_DIR, "${bindir}", "Package installed binaries destination")
fi
dnl Set PACKAGE_LIB_DIR in config.h.
if test "x${libdir}" = 'xNONE'; then
if test "x${prefix}" = "xNONE"; then
AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, "${ac_default_prefix}/lib", "Package installed libraries destination")
else
AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, "${prefix}/lib", "Package installed libraries destination")
fi
else
AC_DEFINE_UNQUOTED(PACKAGE_LIB_DIR, "${libdir}", "Package installed libraries destination")
fi
dnl Set PACKAGE_DATA_DIR in config.h.
if test "x${datadir}" = 'x${prefix}/share'; then
if test "x${prefix}" = "xNONE"; then
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${ac_default_prefix}/share/${PACKAGE}", "Package installed data destination")
else
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${prefix}/share/${PACKAGE}", "Package installed data destination")
fi
else
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}", "Package installed data destination")
fi
AC_CHECK_LIB(dl, dlopen, dlopen_libs=-ldl)
AC_SUBST(dlopen_libs)
AC_ARG_WITH(evas-config,
[ --with-evas-config=EVAS_CONFIG use evas-config specified ],
[
EVAS_CONFIG=$withval;
echo "using "$EVAS_CONFIG" for evas-config";
],[
PROG="evas-config";
AC_PATH_PROG(EVAS_CONFIG, $PROG, "", $PATH)
])
evas_cflags=`$EVAS_CONFIG --cflags`
evas_libs=`$EVAS_CONFIG --libs`
AC_ARG_WITH(ecore-config,
[ --with-ecore-config=ECORE_CONFIG use ecore-config specified ],
[
ECORE_CONFIG=$withval;
echo "using "$ECORE_CONFIG" for ecore-config";
],[
PROG="ecore-config";
AC_PATH_PROG(ECORE_CONFIG, $PROG, "", $PATH)
])
ecore_cflags=`$ECORE_CONFIG --cflags`
ecore_libs=`$ECORE_CONFIG --libs`
AC_ARG_WITH(edje-config,
[ --with-edje-config=EDJE_CONFIG use edje-config specified ],
[
EDJE_CONFIG=$withval;
echo "using "$EDJE_CONFIG" for edje-config";
],[
PROG="edje-config";
AC_PATH_PROG(EDJE_CONFIG, $PROG, "", $PATH)
])
edje_cflags=`$EDJE_CONFIG --cflags`
edje_libs=`$EDJE_CONFIG --libs`
AC_ARG_WITH(eet-config,
[ --with-eet-config=EET_CONFIG use eet-config specified ],
[
EET_CONFIG=$withval;
echo "using "$EET_CONFIG" for eet-config";
],[
PROG="eet-config";
AC_PATH_PROG(EET_CONFIG, $PROG, "", $PATH)
])
eet_cflags=`$EET_CONFIG --cflags`
eet_libs=`$EET_CONFIG --libs`
AC_ARG_WITH(embryo-config,
[ --with-embryo-config=EMBRYO_CONFIG use embryo-config specified ],
[
EMBRYO_CONFIG=$withval;
echo "using "$EMBRYO_CONFIG" for embryo-config";
],[
PROG="embryo-config";
AC_PATH_PROG(EMBRYO_CONFIG, $PROG, "", $PATH)
])
embryo_cflags=`$EMBRYO_CONFIG --cflags`
embryo_libs=`$EMBRYO_CONFIG --libs`
e_libs=$evas_libs" "$ecore_libs" "$edje_libs" "$eet_libs" "$embryo_libs" "
e_cflags=$evas_cflags" "$ecore_cflags" "$edje_cflags" "$eet_cflags" "$embryo_cflags" "
AC_SUBST(e_libs)
AC_SUBST(e_cflags)
profile="FAST_PC"
AC_ARG_WITH(profile,
[ --with-profile=TARGET_PROFILE specify a target format profile of:
LOWRES_PDA, MEDIUMRES_PDA, HIRES_PDA,
SLOW_PC, MEDIUM_PC, FAST_PC ],
[
v=$withval;
profile=$v
echo " Enlightenment build profile set to "$profile;
],[
profile="FAST_PC"
])
EDJE_DEF="-DLOWRES_PDA=1 -DMEDIUMRES_PDA=2 -DHIRES_PDA=3 -DSLOW_PC=4 -DMEDIUM_PC=5 -DFAST_PC=6"
EDJE_DEF=$EDJE_DEF" -DE17_PROFILE"=$profile
AC_SUBST(EDJE_DEF)
edje_cc="`$EDJE_CONFIG --prefix`/bin/edje_cc"
AC_ARG_WITH(edje-cc,
[ --with-edje-cc=PATH specify a specific path to edje_cc],
[
v=$withval;
edje_cc=$v
echo " Enlightenment edje_cc explicitly set to "$edje_cc;
],[
edje_cc="`$EDJE_CONFIG --prefix`/bin/edje_cc"
])
AC_SUBST(edje_cc)
AC_OUTPUT([
Makefile
src/Makefile
src/lib/Makefile
src/bin/Makefile
src/modules/Makefile
src/modules/test/Makefile
src/modules/ibar/Makefile
src/modules/dropshadow/Makefile
data/Makefile
data/fonts/Makefile
data/images/Makefile
data/init/Makefile
data/init/images/Makefile
data/themes/Makefile
data/themes/images/Makefile
data/other/Makefile
doc/Makefile
enlightenment-config
],[
chmod +x enlightenment-config
])

3
data/Makefile.am Normal file
View File

@ -0,0 +1,3 @@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = fonts images init themes other

17
data/fonts/Makefile.am Normal file
View File

@ -0,0 +1,17 @@
MAINTAINERCLEANFILES = Makefile.in
filesdir = $(datadir)/enlightenment/data/fonts
files_DATA = \
Vera.ttf \
VeraBI.ttf \
VeraBd.ttf \
VeraIt.ttf \
VeraMoBI.ttf \
VeraMoBd.ttf \
VeraMoIt.ttf \
VeraMono.ttf \
VeraSe.ttf \
VeraSeBd.ttf \
fonts.alias \
fonts.dir
EXTRA_DIST = $(files_DATA)

BIN
data/fonts/Vera.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraBI.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraBd.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraIt.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraMoBI.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraMoBd.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraMoIt.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraMono.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraSe.ttf Normal file

Binary file not shown.

BIN
data/fonts/VeraSeBd.ttf Normal file

Binary file not shown.

11
data/fonts/fonts.alias Normal file
View File

@ -0,0 +1,11 @@
Vera-Bold-Italic -Bitstream-Bitstream Vera Sans-bold-i-normal--0-0-0-0-p-0-ascii-0
Vera-Normal -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-ascii-0
Vera-Bold -Bitstream-Bitstream Vera Sans-bold-r-normal--0-0-0-0-p-0-ascii-0
Vera-Italic -Bitstream-Bitstream Vera Sans-medium-i-normal--0-0-0-0-p-0-ascii-
Vera-Mono-Bold-Italic -Bitstream-Bitstream Vera Sans Mono-bold-i-normal--0-0-0-0-m-0-ascii-0
Vera-Mono-Bold -Bitstream-Bitstream Vera Sans Mono-bold-r-normal--0-0-0-0-m-0-ascii-0
Vera-Mono-Italic -Bitstream-Bitstream Vera Sans Mono-medium-i-normal--0-0-0-0-m-0-ascii-0
Vera-Mono -Bitstream-Bitstream Vera Sans Mono-medium-r-normal--0-0-0-0-m-0-ascii-0
Vera-Serif -Bitstream-Bitstream Vera Serif-medium-r-normal--0-0-0-0-p-0-ascii-0
Vera-Serif-Bold -Bitstream-Bitstream Vera Serif-bold-r-normal--0-0-0-0-p-0-ascii-0
Vera -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-ascii-0

51
data/fonts/fonts.dir Normal file
View File

@ -0,0 +1,51 @@
50
VeraBI.ttf -Bitstream-Bitstream Vera Sans-bold-i-normal--0-0-0-0-p-0-ascii-0
VeraBI.ttf -Bitstream-Bitstream Vera Sans-bold-i-normal--0-0-0-0-p-0-fcd8859-15
VeraBI.ttf -Bitstream-Bitstream Vera Sans-bold-i-normal--0-0-0-0-p-0-iso8859-1
VeraBI.ttf -Bitstream-Bitstream Vera Sans-bold-i-normal--0-0-0-0-p-0-iso8859-15
VeraBI.ttf -Bitstream-Bitstream Vera Sans-bold-i-normal--0-0-0-0-p-0-iso8859-9
Vera.ttf -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-ascii-0
Vera.ttf -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-fcd8859-15
Vera.ttf -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-iso8859-1
Vera.ttf -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-iso8859-15
Vera.ttf -Bitstream-Bitstream Vera Sans-medium-r-normal--0-0-0-0-p-0-iso8859-9
VeraBd.ttf -Bitstream-Bitstream Vera Sans-bold-r-normal--0-0-0-0-p-0-ascii-0
VeraBd.ttf -Bitstream-Bitstream Vera Sans-bold-r-normal--0-0-0-0-p-0-fcd8859-15
VeraBd.ttf -Bitstream-Bitstream Vera Sans-bold-r-normal--0-0-0-0-p-0-iso8859-1
VeraBd.ttf -Bitstream-Bitstream Vera Sans-bold-r-normal--0-0-0-0-p-0-iso8859-15
VeraBd.ttf -Bitstream-Bitstream Vera Sans-bold-r-normal--0-0-0-0-p-0-iso8859-9
VeraIt.ttf -Bitstream-Bitstream Vera Sans-medium-i-normal--0-0-0-0-p-0-ascii-0
VeraIt.ttf -Bitstream-Bitstream Vera Sans-medium-i-normal--0-0-0-0-p-0-fcd8859-15
VeraIt.ttf -Bitstream-Bitstream Vera Sans-medium-i-normal--0-0-0-0-p-0-iso8859-1
VeraIt.ttf -Bitstream-Bitstream Vera Sans-medium-i-normal--0-0-0-0-p-0-iso8859-15
VeraIt.ttf -Bitstream-Bitstream Vera Sans-medium-i-normal--0-0-0-0-p-0-iso8859-9
VeraMoBI.ttf -Bitstream-Bitstream Vera Sans Mono-bold-i-normal--0-0-0-0-m-0-ascii-0
VeraMoBI.ttf -Bitstream-Bitstream Vera Sans Mono-bold-i-normal--0-0-0-0-m-0-fcd8859-15
VeraMoBI.ttf -Bitstream-Bitstream Vera Sans Mono-bold-i-normal--0-0-0-0-m-0-iso8859-1
VeraMoBI.ttf -Bitstream-Bitstream Vera Sans Mono-bold-i-normal--0-0-0-0-m-0-iso8859-15
VeraMoBI.ttf -Bitstream-Bitstream Vera Sans Mono-bold-i-normal--0-0-0-0-m-0-iso8859-9
VeraMoBd.ttf -Bitstream-Bitstream Vera Sans Mono-bold-r-normal--0-0-0-0-m-0-ascii-0
VeraMoBd.ttf -Bitstream-Bitstream Vera Sans Mono-bold-r-normal--0-0-0-0-m-0-fcd8859-15
VeraMoBd.ttf -Bitstream-Bitstream Vera Sans Mono-bold-r-normal--0-0-0-0-m-0-iso8859-1
VeraMoBd.ttf -Bitstream-Bitstream Vera Sans Mono-bold-r-normal--0-0-0-0-m-0-iso8859-15
VeraMoBd.ttf -Bitstream-Bitstream Vera Sans Mono-bold-r-normal--0-0-0-0-m-0-iso8859-9
VeraMoIt.ttf -Bitstream-Bitstream Vera Sans Mono-medium-i-normal--0-0-0-0-m-0-ascii-0
VeraMoIt.ttf -Bitstream-Bitstream Vera Sans Mono-medium-i-normal--0-0-0-0-m-0-fcd8859-15
VeraMoIt.ttf -Bitstream-Bitstream Vera Sans Mono-medium-i-normal--0-0-0-0-m-0-iso8859-1
VeraMoIt.ttf -Bitstream-Bitstream Vera Sans Mono-medium-i-normal--0-0-0-0-m-0-iso8859-15
VeraMoIt.ttf -Bitstream-Bitstream Vera Sans Mono-medium-i-normal--0-0-0-0-m-0-iso8859-9
VeraMono.ttf -Bitstream-Bitstream Vera Sans Mono-medium-r-normal--0-0-0-0-m-0-ascii-0
VeraMono.ttf -Bitstream-Bitstream Vera Sans Mono-medium-r-normal--0-0-0-0-m-0-fcd8859-15
VeraMono.ttf -Bitstream-Bitstream Vera Sans Mono-medium-r-normal--0-0-0-0-m-0-iso8859-1
VeraMono.ttf -Bitstream-Bitstream Vera Sans Mono-medium-r-normal--0-0-0-0-m-0-iso8859-15
VeraMono.ttf -Bitstream-Bitstream Vera Sans Mono-medium-r-normal--0-0-0-0-m-0-iso8859-9
VeraSe.ttf -Bitstream-Bitstream Vera Serif-medium-r-normal--0-0-0-0-p-0-ascii-0
VeraSe.ttf -Bitstream-Bitstream Vera Serif-medium-r-normal--0-0-0-0-p-0-fcd8859-15
VeraSe.ttf -Bitstream-Bitstream Vera Serif-medium-r-normal--0-0-0-0-p-0-iso8859-1
VeraSe.ttf -Bitstream-Bitstream Vera Serif-medium-r-normal--0-0-0-0-p-0-iso8859-15
VeraSe.ttf -Bitstream-Bitstream Vera Serif-medium-r-normal--0-0-0-0-p-0-iso8859-9
VeraSeBd.ttf -Bitstream-Bitstream Vera Serif-bold-r-normal--0-0-0-0-p-0-ascii-0
VeraSeBd.ttf -Bitstream-Bitstream Vera Serif-bold-r-normal--0-0-0-0-p-0-fcd8859-15
VeraSeBd.ttf -Bitstream-Bitstream Vera Serif-bold-r-normal--0-0-0-0-p-0-iso8859-1
VeraSeBd.ttf -Bitstream-Bitstream Vera Serif-bold-r-normal--0-0-0-0-p-0-iso8859-15
VeraSeBd.ttf -Bitstream-Bitstream Vera Serif-bold-r-normal--0-0-0-0-p-0-iso8859-9

10
data/images/Makefile.am Normal file
View File

@ -0,0 +1,10 @@
MAINTAINERCLEANFILES = Makefile.in
filesdir = $(datadir)/enlightenment/data/images
files_DATA = \
button_in.png \
button_out.png \
e.png \
error_bg.png \
pointer.png
EXTRA_DIST = $(files_DATA)

BIN
data/images/button_in.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
data/images/button_out.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
data/images/e.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

BIN
data/images/error_bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

BIN
data/images/pointer.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

24
data/init/Makefile.am Normal file
View File

@ -0,0 +1,24 @@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = images
EDJE_CC = @edje_cc@
EDJE_FLAGS = \
-v \
-id $(top_srcdir)/data/init/images \
-fd $(top_srcdir)/data/fonts \
@EDJE_DEF@
filesdir = $(datadir)/enlightenment/data/init
files_DATA = \
init.eet
EXTRA_DIST = init.edc
init.eet: Makefile init.edc
$(EDJE_CC) $(EDJE_FLAGS) \
$(top_srcdir)/data/init/init.edc \
$(top_builddir)/data/init/init.eet
clean-local:
rm -f *.eet

View File

@ -0,0 +1,487 @@
MAINTAINERCLEANFILES = Makefile.in
EXTRA_DIST = \
brushed.png \
loop_eintro_121.png \
loop_eintro_122.png \
loop_eintro_123.png \
loop_eintro_124.png \
loop_eintro_125.png \
loop_eintro_126.png \
loop_eintro_127.png \
loop_eintro_128.png \
loop_eintro_129.png \
loop_eintro_130.png \
loop_eintro_131.png \
loop_eintro_132.png \
loop_eintro_133.png \
loop_eintro_134.png \
loop_eintro_135.png \
loop_eintro_136.png \
loop_eintro_137.png \
loop_eintro_138.png \
loop_eintro_139.png \
loop_eintro_140.png \
loop_eintro_141.png \
loop_eintro_142.png \
loop_eintro_143.png \
loop_eintro_144.png \
loop_eintro_145.png \
loop_eintro_146.png \
loop_eintro_147.png \
loop_eintro_148.png \
loop_eintro_149.png \
loop_eintro_150.png \
loop_eintro_151.png \
loop_eintro_152.png \
loop_eintro_153.png \
loop_eintro_154.png \
loop_eintro_155.png \
loop_eintro_156.png \
loop_eintro_157.png \
loop_eintro_158.png \
loop_eintro_159.png \
loop_eintro_160.png \
loop_eintro_161.png \
loop_eintro_162.png \
loop_eintro_163.png \
loop_eintro_164.png \
loop_eintro_165.png \
loop_eintro_166.png \
loop_eintro_167.png \
loop_eintro_168.png \
loop_eintro_169.png \
loop_eintro_170.png \
loop_eintro_171.png \
loop_eintro_172.png \
loop_eintro_173.png \
loop_eintro_174.png \
loop_eintro_175.png \
loop_eintro_176.png \
loop_eintro_177.png \
loop_eintro_178.png \
loop_eintro_179.png \
loop_eintro_180.png \
loop_eintro_181.png \
loop_eintro_182.png \
loop_eintro_183.png \
loop_eintro_184.png \
loop_eintro_185.png \
loop_eintro_186.png \
loop_eintro_187.png \
loop_eintro_188.png \
loop_eintro_189.png \
loop_eintro_190.png \
loop_eintro_191.png \
loop_eintro_192.png \
loop_eintro_193.png \
loop_eintro_194.png \
loop_eintro_195.png \
loop_eintro_196.png \
loop_eintro_197.png \
loop_eintro_198.png \
loop_eintro_199.png \
loop_eintro_200.png \
loop_eintro_201.png \
loop_eintro_202.png \
loop_eintro_203.png \
loop_eintro_204.png \
loop_eintro_205.png \
loop_eintro_206.png \
loop_eintro_207.png \
loop_eintro_208.png \
loop_eintro_209.png \
loop_eintro_210.png \
loop_eintro_211.png \
loop_eintro_212.png \
loop_eintro_213.png \
loop_eintro_214.png \
loop_eintro_215.png \
loop_eintro_216.png \
loop_eintro_217.png \
loop_eintro_218.png \
loop_eintro_219.png \
loop_eintro_220.png \
loop_eintro_221.png \
loop_eintro_222.png \
loop_eintro_223.png \
loop_eintro_224.png \
loop_eintro_225.png \
loop_eintro_226.png \
loop_eintro_227.png \
loop_eintro_228.png \
loop_eintro_229.png \
loop_eintro_230.png \
loop_eintro_231.png \
loop_eintro_232.png \
loop_eintro_233.png \
loop_eintro_234.png \
loop_eintro_235.png \
loop_eintro_236.png \
loop_eintro_237.png \
loop_eintro_238.png \
loop_eintro_239.png \
loop_eintro_240.png \
reflection_overlay.png \
shadow.png \
start_eintro_001.png \
start_eintro_002.png \
start_eintro_003.png \
start_eintro_004.png \
start_eintro_005.png \
start_eintro_006.png \
start_eintro_007.png \
start_eintro_008.png \
start_eintro_009.png \
start_eintro_010.png \
start_eintro_011.png \
start_eintro_012.png \
start_eintro_013.png \
start_eintro_014.png \
start_eintro_015.png \
start_eintro_016.png \
start_eintro_017.png \
start_eintro_018.png \
start_eintro_019.png \
start_eintro_020.png \
start_eintro_021.png \
start_eintro_022.png \
start_eintro_023.png \
start_eintro_024.png \
start_eintro_025.png \
start_eintro_026.png \
start_eintro_027.png \
start_eintro_028.png \
start_eintro_029.png \
start_eintro_030.png \
start_eintro_031.png \
start_eintro_032.png \
start_eintro_033.png \
start_eintro_034.png \
start_eintro_035.png \
start_eintro_036.png \
start_eintro_037.png \
start_eintro_038.png \
start_eintro_039.png \
start_eintro_040.png \
start_eintro_041.png \
start_eintro_042.png \
start_eintro_043.png \
start_eintro_044.png \
start_eintro_045.png \
start_eintro_046.png \
start_eintro_047.png \
start_eintro_048.png \
start_eintro_049.png \
start_eintro_050.png \
start_eintro_051.png \
start_eintro_052.png \
start_eintro_053.png \
start_eintro_054.png \
start_eintro_055.png \
start_eintro_056.png \
start_eintro_057.png \
start_eintro_058.png \
start_eintro_059.png \
start_eintro_060.png \
start_eintro_061.png \
start_eintro_062.png \
start_eintro_063.png \
start_eintro_064.png \
start_eintro_065.png \
start_eintro_066.png \
start_eintro_067.png \
start_eintro_068.png \
start_eintro_069.png \
start_eintro_070.png \
start_eintro_071.png \
start_eintro_072.png \
start_eintro_073.png \
start_eintro_074.png \
start_eintro_075.png \
start_eintro_076.png \
start_eintro_077.png \
start_eintro_078.png \
start_eintro_079.png \
start_eintro_080.png \
start_eintro_081.png \
start_eintro_082.png \
start_eintro_083.png \
start_eintro_084.png \
start_eintro_085.png \
start_eintro_086.png \
start_eintro_087.png \
start_eintro_088.png \
start_eintro_089.png \
start_eintro_090.png \
start_eintro_091.png \
start_eintro_092.png \
start_eintro_093.png \
start_eintro_094.png \
start_eintro_095.png \
start_eintro_096.png \
start_eintro_097.png \
start_eintro_098.png \
start_eintro_099.png \
start_eintro_100.png \
start_eintro_101.png \
start_eintro_102.png \
start_eintro_103.png \
start_eintro_104.png \
start_eintro_105.png \
start_eintro_106.png \
start_eintro_107.png \
start_eintro_108.png \
start_eintro_109.png \
start_eintro_110.png \
start_eintro_111.png \
start_eintro_112.png \
start_eintro_113.png \
start_eintro_114.png \
start_eintro_115.png \
start_eintro_116.png \
start_eintro_117.png \
start_eintro_118.png \
start_eintro_119.png \
start_eintro_120.png \
sm_loop_eintro_121.png \
sm_loop_eintro_122.png \
sm_loop_eintro_123.png \
sm_loop_eintro_124.png \
sm_loop_eintro_125.png \
sm_loop_eintro_126.png \
sm_loop_eintro_127.png \
sm_loop_eintro_128.png \
sm_loop_eintro_129.png \
sm_loop_eintro_130.png \
sm_loop_eintro_131.png \
sm_loop_eintro_132.png \
sm_loop_eintro_133.png \
sm_loop_eintro_134.png \
sm_loop_eintro_135.png \
sm_loop_eintro_136.png \
sm_loop_eintro_137.png \
sm_loop_eintro_138.png \
sm_loop_eintro_139.png \
sm_loop_eintro_140.png \
sm_loop_eintro_141.png \
sm_loop_eintro_142.png \
sm_loop_eintro_143.png \
sm_loop_eintro_144.png \
sm_loop_eintro_145.png \
sm_loop_eintro_146.png \
sm_loop_eintro_147.png \
sm_loop_eintro_148.png \
sm_loop_eintro_149.png \
sm_loop_eintro_150.png \
sm_loop_eintro_151.png \
sm_loop_eintro_152.png \
sm_loop_eintro_153.png \
sm_loop_eintro_154.png \
sm_loop_eintro_155.png \
sm_loop_eintro_156.png \
sm_loop_eintro_157.png \
sm_loop_eintro_158.png \
sm_loop_eintro_159.png \
sm_loop_eintro_160.png \
sm_loop_eintro_161.png \
sm_loop_eintro_162.png \
sm_loop_eintro_163.png \
sm_loop_eintro_164.png \
sm_loop_eintro_165.png \
sm_loop_eintro_166.png \
sm_loop_eintro_167.png \
sm_loop_eintro_168.png \
sm_loop_eintro_169.png \
sm_loop_eintro_170.png \
sm_loop_eintro_171.png \
sm_loop_eintro_172.png \
sm_loop_eintro_173.png \
sm_loop_eintro_174.png \
sm_loop_eintro_175.png \
sm_loop_eintro_176.png \
sm_loop_eintro_177.png \
sm_loop_eintro_178.png \
sm_loop_eintro_179.png \
sm_loop_eintro_180.png \
sm_loop_eintro_181.png \
sm_loop_eintro_182.png \
sm_loop_eintro_183.png \
sm_loop_eintro_184.png \
sm_loop_eintro_185.png \
sm_loop_eintro_186.png \
sm_loop_eintro_187.png \
sm_loop_eintro_188.png \
sm_loop_eintro_189.png \
sm_loop_eintro_190.png \
sm_loop_eintro_191.png \
sm_loop_eintro_192.png \
sm_loop_eintro_193.png \
sm_loop_eintro_194.png \
sm_loop_eintro_195.png \
sm_loop_eintro_196.png \
sm_loop_eintro_197.png \
sm_loop_eintro_198.png \
sm_loop_eintro_199.png \
sm_loop_eintro_200.png \
sm_loop_eintro_201.png \
sm_loop_eintro_202.png \
sm_loop_eintro_203.png \
sm_loop_eintro_204.png \
sm_loop_eintro_205.png \
sm_loop_eintro_206.png \
sm_loop_eintro_207.png \
sm_loop_eintro_208.png \
sm_loop_eintro_209.png \
sm_loop_eintro_210.png \
sm_loop_eintro_211.png \
sm_loop_eintro_212.png \
sm_loop_eintro_213.png \
sm_loop_eintro_214.png \
sm_loop_eintro_215.png \
sm_loop_eintro_216.png \
sm_loop_eintro_217.png \
sm_loop_eintro_218.png \
sm_loop_eintro_219.png \
sm_loop_eintro_220.png \
sm_loop_eintro_221.png \
sm_loop_eintro_222.png \
sm_loop_eintro_223.png \
sm_loop_eintro_224.png \
sm_loop_eintro_225.png \
sm_loop_eintro_226.png \
sm_loop_eintro_227.png \
sm_loop_eintro_228.png \
sm_loop_eintro_229.png \
sm_loop_eintro_230.png \
sm_loop_eintro_231.png \
sm_loop_eintro_232.png \
sm_loop_eintro_233.png \
sm_loop_eintro_234.png \
sm_loop_eintro_235.png \
sm_loop_eintro_236.png \
sm_loop_eintro_237.png \
sm_loop_eintro_238.png \
sm_loop_eintro_239.png \
sm_loop_eintro_240.png \
sm_reflection_overlay.png \
sm_shadow.png \
sm_start_eintro_001.png \
sm_start_eintro_002.png \
sm_start_eintro_003.png \
sm_start_eintro_004.png \
sm_start_eintro_005.png \
sm_start_eintro_006.png \
sm_start_eintro_007.png \
sm_start_eintro_008.png \
sm_start_eintro_009.png \
sm_start_eintro_010.png \
sm_start_eintro_011.png \
sm_start_eintro_012.png \
sm_start_eintro_013.png \
sm_start_eintro_014.png \
sm_start_eintro_015.png \
sm_start_eintro_016.png \
sm_start_eintro_017.png \
sm_start_eintro_018.png \
sm_start_eintro_019.png \
sm_start_eintro_020.png \
sm_start_eintro_021.png \
sm_start_eintro_022.png \
sm_start_eintro_023.png \
sm_start_eintro_024.png \
sm_start_eintro_025.png \
sm_start_eintro_026.png \
sm_start_eintro_027.png \
sm_start_eintro_028.png \
sm_start_eintro_029.png \
sm_start_eintro_030.png \
sm_start_eintro_031.png \
sm_start_eintro_032.png \
sm_start_eintro_033.png \
sm_start_eintro_034.png \
sm_start_eintro_035.png \
sm_start_eintro_036.png \
sm_start_eintro_037.png \
sm_start_eintro_038.png \
sm_start_eintro_039.png \
sm_start_eintro_040.png \
sm_start_eintro_041.png \
sm_start_eintro_042.png \
sm_start_eintro_043.png \
sm_start_eintro_044.png \
sm_start_eintro_045.png \
sm_start_eintro_046.png \
sm_start_eintro_047.png \
sm_start_eintro_048.png \
sm_start_eintro_049.png \
sm_start_eintro_050.png \
sm_start_eintro_051.png \
sm_start_eintro_052.png \
sm_start_eintro_053.png \
sm_start_eintro_054.png \
sm_start_eintro_055.png \
sm_start_eintro_056.png \
sm_start_eintro_057.png \
sm_start_eintro_058.png \
sm_start_eintro_059.png \
sm_start_eintro_060.png \
sm_start_eintro_061.png \
sm_start_eintro_062.png \
sm_start_eintro_063.png \
sm_start_eintro_064.png \
sm_start_eintro_065.png \
sm_start_eintro_066.png \
sm_start_eintro_067.png \
sm_start_eintro_068.png \
sm_start_eintro_069.png \
sm_start_eintro_070.png \
sm_start_eintro_071.png \
sm_start_eintro_072.png \
sm_start_eintro_073.png \
sm_start_eintro_074.png \
sm_start_eintro_075.png \
sm_start_eintro_076.png \
sm_start_eintro_077.png \
sm_start_eintro_078.png \
sm_start_eintro_079.png \
sm_start_eintro_080.png \
sm_start_eintro_081.png \
sm_start_eintro_082.png \
sm_start_eintro_083.png \
sm_start_eintro_084.png \
sm_start_eintro_085.png \
sm_start_eintro_086.png \
sm_start_eintro_087.png \
sm_start_eintro_088.png \
sm_start_eintro_089.png \
sm_start_eintro_090.png \
sm_start_eintro_091.png \
sm_start_eintro_092.png \
sm_start_eintro_093.png \
sm_start_eintro_094.png \
sm_start_eintro_095.png \
sm_start_eintro_096.png \
sm_start_eintro_097.png \
sm_start_eintro_098.png \
sm_start_eintro_099.png \
sm_start_eintro_100.png \
sm_start_eintro_101.png \
sm_start_eintro_102.png \
sm_start_eintro_103.png \
sm_start_eintro_104.png \
sm_start_eintro_105.png \
sm_start_eintro_106.png \
sm_start_eintro_107.png \
sm_start_eintro_108.png \
sm_start_eintro_109.png \
sm_start_eintro_110.png \
sm_start_eintro_111.png \
sm_start_eintro_112.png \
sm_start_eintro_113.png \
sm_start_eintro_114.png \
sm_start_eintro_115.png \
sm_start_eintro_116.png \
sm_start_eintro_117.png \
sm_start_eintro_118.png \
sm_start_eintro_119.png \
sm_start_eintro_120.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Some files were not shown because too many files have changed in this diff Show More