framework/uifw/embryo.git
13 years agowarnings--
raster [Sun, 19 Sep 2010 03:00:12 +0000 (03:00 +0000)]
warnings--
warnings = 0

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@52451 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agowarnings--
raster [Sun, 19 Sep 2010 02:51:46 +0000 (02:51 +0000)]
warnings--

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@52450 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFix common misspellings
lucas [Wed, 8 Sep 2010 03:33:11 +0000 (03:33 +0000)]
Fix common misspellings

Following misspellings were fixed:

accross->across
calulate->calculate
existance->existence
existant->existent
isnt->isn't
paranthesis->parenthesis
reffered->referred
runing->running
statment->statement
tranformed->transformed
unfortunatly->unfortunately
usefull->useful

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51964 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix possible leak source.
raster [Sat, 28 Aug 2010 14:46:44 +0000 (14:46 +0000)]
fix possible leak source.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51699 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix possible null str deref.
raster [Sat, 28 Aug 2010 14:45:04 +0000 (14:45 +0000)]
fix possible null str deref.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51698 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoRevert and re-apply badnull patch
lucas [Thu, 26 Aug 2010 01:34:13 +0000 (01:34 +0000)]
Revert and re-apply badnull patch

Revert previous patch generated by badnull.cocci script, and apply the new one.
The main difference is that assert and assert-like functions are not touched
anymore.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51650 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agojust so you know it was called small earlier with that license.
raster [Sat, 21 Aug 2010 14:28:38 +0000 (14:28 +0000)]
just so you know it was called small earlier with that license.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51489 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoConvert (hopefully) all comparisons to NULL
lucas [Sat, 21 Aug 2010 13:52:25 +0000 (13:52 +0000)]
Convert (hopefully) all comparisons to NULL

Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;

other cases:

a == NULL                         !a
a != NULL                         a

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51487 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agocopy & paste fix
raster [Mon, 16 Aug 2010 09:00:43 +0000 (09:00 +0000)]
copy & paste fix

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51174 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoembryo now ready
raster [Mon, 16 Aug 2010 08:41:15 +0000 (08:41 +0000)]
embryo now ready

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51169 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix up copyings likewise. nicely standardised templateish.
raster [Mon, 16 Aug 2010 03:00:16 +0000 (03:00 +0000)]
fix up copyings likewise. nicely standardised templateish.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51150 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofix up copying here too. other license info has always been
raster [Sun, 15 Aug 2010 22:07:29 +0000 (22:07 +0000)]
fix up copying here too. other license info has always been
there - just not shuffled into standard copying. fix.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51143 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoRemove comparisons to NULL
lucas [Wed, 11 Aug 2010 20:35:26 +0000 (20:35 +0000)]
Remove comparisons to NULL

Rather than using "== NULL" or "!= NULL", use expression or !expression where
possible.

Patch automatically generated by coccinelle from badnull.cocci and
badnull2.cocci

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@51023 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoDo not compare pointers to 0
lucas [Tue, 10 Aug 2010 19:24:38 +0000 (19:24 +0000)]
Do not compare pointers to 0

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@50973 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agounscrew what lucas screwed with his patch-fu
barbieri [Wed, 4 Aug 2010 18:33:24 +0000 (18:33 +0000)]
unscrew what lucas screwed with his patch-fu

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@50819 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFORMATTING
lucas [Wed, 4 Aug 2010 16:57:32 +0000 (16:57 +0000)]
FORMATTING

* Remove vim modelines:
 find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
 find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;

* Remove leading blank lines:
 find . -name '*.[cxh]' -exec sed -i '/./,$!d'

If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@50816 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoMove Embryo.h header to own dir.
devilhorns [Fri, 9 Jul 2010 06:31:53 +0000 (06:31 +0000)]
Move Embryo.h header to own dir.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@50145 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoDo not clobber type with var name
lucas [Tue, 6 Jul 2010 14:16:41 +0000 (14:16 +0000)]
Do not clobber type with var name

value => val, because value is a pre-defined type

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@50063 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoand final post snap - next releasename
raster [Sun, 27 Jun 2010 14:06:10 +0000 (14:06 +0000)]
and final post snap - next releasename

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49903 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agosnap+release
raster [Sun, 27 Jun 2010 13:45:27 +0000 (13:45 +0000)]
snap+release

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49899 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoSnapshot embryo
raster [Sun, 27 Jun 2010 13:32:49 +0000 (13:32 +0000)]
Snapshot embryo

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49893 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years ago * configure.ac: take inept translation a little bit into account.
cedric [Fri, 18 Jun 2010 14:45:42 +0000 (14:45 +0000)]
    * configure.ac: take inept translation a little bit into account.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49743 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoSVN_REPO_PATH envvar during autoconf to use svnversion in there.
barbieri [Wed, 9 Jun 2010 18:22:47 +0000 (18:22 +0000)]
SVN_REPO_PATH envvar during autoconf to use svnversion in there.

Some systems, like the Gentoo, copy the svn contents somewhere before
doing the autoconf, this may result in lack of .svn and thus minor
version "0".

This patch introduces the $SVN_REPO_PATH to say where the svn checkout
containing the ".svn" directory is.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49594 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorestore after snap/release
raster [Sun, 6 Jun 2010 17:43:03 +0000 (17:43 +0000)]
restore after snap/release

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49540 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot embryo
raster [Sun, 6 Jun 2010 17:26:47 +0000 (17:26 +0000)]
Snapshot embryo

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49534 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agopost-snap anr release.. reset svn back.. this time for real.
raster [Sun, 6 Jun 2010 17:17:52 +0000 (17:17 +0000)]
post-snap anr release.. reset svn back.. this time for real.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49526 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot embryo
raster [Sun, 6 Jun 2010 16:42:40 +0000 (16:42 +0000)]
Snapshot embryo

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49517 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agopost release - move relname to pre-svn again.
raster [Sun, 6 Jun 2010 16:23:16 +0000 (16:23 +0000)]
post release - move relname to pre-svn again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49506 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot embryo
raster [Sun, 6 Jun 2010 16:08:06 +0000 (16:08 +0000)]
Snapshot embryo

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49498 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agolarger block size for native call array
raster [Fri, 4 Jun 2010 06:09:15 +0000 (06:09 +0000)]
larger block size for native call array

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49443 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agochange svnversion shell goop to nuke sed and just use tr to delete
raster [Fri, 4 Jun 2010 01:04:24 +0000 (01:04 +0000)]
change svnversion shell goop to nuke sed and just use tr to delete
unwanted goop.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49429 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoLet git-svn users get the right revision number to be used as version.
sachiel [Thu, 3 Jun 2010 07:40:54 +0000 (07:40 +0000)]
Let git-svn users get the right revision number to be used as version.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49407 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agonopw svn revision works again.
raster [Mon, 31 May 2010 03:12:45 +0000 (03:12 +0000)]
nopw svn revision works again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49344 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix - if no svn tree, then it will pretend to be a release.
raster [Mon, 31 May 2010 01:59:22 +0000 (01:59 +0000)]
fix - if no svn tree, then it will pretend to be a release.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49343 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd version info to embryo
raster [Sat, 29 May 2010 06:40:07 +0000 (06:40 +0000)]
add version info to embryo

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@49275 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoApply the same fix MEJ did ( http://marc.info/?l=enlightenment-svn&m=127157420508183...
rui [Wed, 21 Apr 2010 20:55:23 +0000 (20:55 +0000)]
Apply the same fix MEJ did ( marc.info/?l=enlightenment-svn&m=127157420508183&w=3 ) to more specs

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@48213 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoinclude Evil.h for vc++
caro [Sun, 28 Mar 2010 08:43:53 +0000 (08:43 +0000)]
include Evil.h for vc++

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@47528 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd guards around the inclusion of config.h
caro [Sun, 28 Mar 2010 08:36:55 +0000 (08:36 +0000)]
add guards around the inclusion of config.h

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@47527 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agouse efl_fnmatch m4 macro
caro [Wed, 3 Feb 2010 21:01:02 +0000 (21:01 +0000)]
use efl_fnmatch m4 macro

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@45854 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix warnings on 64 bits arch
caro [Fri, 22 Jan 2010 06:37:19 +0000 (06:37 +0000)]
fix warnings on 64 bits arch
patch by Albin Tonerre, modified by me so that vc++ is happy

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@45428 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomake clang happy
englebass [Fri, 15 Jan 2010 19:44:25 +0000 (19:44 +0000)]
make clang happy

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@45192 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobinary can be disabled
caro [Fri, 15 Jan 2010 06:06:33 +0000 (06:06 +0000)]
binary can be disabled

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@45169 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix PATH_MAX detection
caro [Tue, 12 Jan 2010 22:44:25 +0000 (22:44 +0000)]
fix PATH_MAX detection

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@45071 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * embryo: Prevent use of unitialized data.
cedric [Fri, 18 Dec 2009 17:40:13 +0000 (17:40 +0000)]
* embryo: Prevent use of unitialized data.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44547 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoimprove configure output
caro [Fri, 11 Dec 2009 10:55:24 +0000 (10:55 +0000)]
improve configure output

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44361 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd Visual Studio files
caro [Tue, 8 Dec 2009 17:40:46 +0000 (17:40 +0000)]
add Visual Studio files
embryo_cc project file is missing for Visual Studio 2005

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44285 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix compilation with vc++
caro [Tue, 8 Dec 2009 17:34:57 +0000 (17:34 +0000)]
fix compilation with vc++

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44284 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobaack to normal pre- release name now
raster [Wed, 2 Dec 2009 22:50:36 +0000 (22:50 +0000)]
baack to normal pre- release name now

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44146 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoquick make svnrev that has right release names
raster [Wed, 2 Dec 2009 22:19:53 +0000 (22:19 +0000)]
quick make svnrev that has right release names

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44140 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoand back to a pre-svn sonme after snap
raster [Wed, 2 Dec 2009 08:07:38 +0000 (08:07 +0000)]
and back to a pre-svn sonme after snap

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44118 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoaaah bah - move to 05 not 04
raster [Wed, 2 Dec 2009 07:40:59 +0000 (07:40 +0000)]
aaah bah - move to 05 not 04

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44116 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoasparagus - finally
raster [Wed, 2 Dec 2009 07:22:35 +0000 (07:22 +0000)]
asparagus - finally

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44113 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix opensolaris compilation
caro [Mon, 30 Nov 2009 18:08:33 +0000 (18:08 +0000)]
fix opensolaris compilation

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@44057 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomake embryo compile with vc++ and suncc. No change for gcc.
caro [Sun, 25 Oct 2009 10:19:38 +0000 (10:19 +0000)]
make embryo compile with vc++ and suncc. No change for gcc.

Though i don't know if it is the correct fix... Raster, if
you have some time, can you check it, please ?

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@43261 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoembryo doc looks better now
caro [Wed, 14 Oct 2009 19:31:44 +0000 (19:31 +0000)]
embryo doc looks better now

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@43083 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agosimplify embryo_init() and embryo_shutdown() a bit
caro [Thu, 8 Oct 2009 06:35:48 +0000 (06:35 +0000)]
simplify embryo_init() and embryo_shutdown() a bit

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@42957 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * more quoting
caro [Tue, 6 Oct 2009 16:55:29 +0000 (16:55 +0000)]
 * more quoting
 * add silent rules (shave feature)
   see the description of AM_SILENT_RULES in:
   http://www.gnu.org/software/automake/manual/automake.html#Public-Macros

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@42909 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * use Requires.private field in embryo.pc if pkg-config 0.22 or later is installed...
caro [Fri, 2 Oct 2009 17:14:12 +0000 (17:14 +0000)]
 * use Requires.private field in embryo.pc if pkg-config 0.22 or later is installed (for Evil).
 * remove uneeded flags that are in Libs.private (EVIL_LIBS)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@42860 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoopensolaris support of the packed attribute
caro [Sun, 27 Sep 2009 05:50:58 +0000 (05:50 +0000)]
opensolaris support of the packed attribute

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@42739 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agouse __attribute__((packed)) if __GNUC__ is defined
caro [Wed, 16 Sep 2009 22:02:59 +0000 (22:02 +0000)]
use __attribute__((packed)) if __GNUC__ is defined
use #pragma pack if vc++ is used
use nothing otherwise (should we exit with an error in that case ?)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@42533 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoback to pre ver's
raster [Wed, 29 Jul 2009 08:19:34 +0000 (08:19 +0000)]
back to pre ver's

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@41535 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSNAPSHOT: svn-03
raster [Wed, 29 Jul 2009 08:03:25 +0000 (08:03 +0000)]
SNAPSHOT: svn-03

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@41532 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoAdd som m4 directory ignores.
kwo [Tue, 28 Jul 2009 18:21:25 +0000 (18:21 +0000)]
Add som m4 directory ignores.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@41528 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoupdate m4 macros (mainly formatting)
caro [Sat, 27 Jun 2009 06:42:14 +0000 (06:42 +0000)]
update m4 macros (mainly formatting)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@41212 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoback to svn soname
raster [Mon, 15 Jun 2009 06:29:43 +0000 (06:29 +0000)]
back to svn soname

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@41042 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomake distcheck and... SNAP!
raster [Mon, 15 Jun 2009 05:32:49 +0000 (05:32 +0000)]
make distcheck and... SNAP!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@41039 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix debian rules files.
barbieri [Tue, 26 May 2009 17:34:53 +0000 (17:34 +0000)]
fix debian rules files.

 * fix the way AC_INIT macros are parsed to consider [] as well.
 * set both LDFLAGS and CFLAGS on the libs I use and I know support -fvisibility=hidden.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40838 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix configure output for the doc
caro [Sat, 23 May 2009 22:39:01 +0000 (22:39 +0000)]
fix configure output for the doc

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40805 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years ago * underquoted parameters of AC_INIT
caro [Fri, 15 May 2009 08:32:41 +0000 (08:32 +0000)]
 * underquoted parameters of AC_INIT
 * formatting

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40659 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoupdate efl_doxygen.m4
caro [Fri, 15 May 2009 08:30:26 +0000 (08:30 +0000)]
update efl_doxygen.m4

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40658 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agodon't use the release stuff for Windows CE
caro [Wed, 13 May 2009 18:52:48 +0000 (18:52 +0000)]
don't use the release stuff for Windows CE

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40628 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoFixed debian stuff everywhere.
quaker [Mon, 4 May 2009 17:36:48 +0000 (17:36 +0000)]
Fixed debian stuff everywhere.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40505 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdded libtool as Build-Depends to everything that uses
rbelem [Sun, 3 May 2009 14:32:23 +0000 (14:32 +0000)]
Added libtool as Build-Depends to everything that uses
DEB_CONFIGURE_SCRIPT := ./autogen.sh

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40500 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMerge branch 'debian-fixes'
rbelem [Fri, 24 Apr 2009 05:29:12 +0000 (05:29 +0000)]
Merge branch 'debian-fixes'

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40345 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdated DEB_SOURCE_VERSIOn, thx to sur5r
quaker [Thu, 23 Apr 2009 18:21:30 +0000 (18:21 +0000)]
Updated DEB_SOURCE_VERSIOn, thx to sur5r

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40335 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agomove to uses no []'s as it works for me, but for belem... inconsistent []'s
raster [Thu, 23 Apr 2009 00:32:53 +0000 (00:32 +0000)]
move to uses no []'s as it works for me, but for belem... inconsistent []'s
doesnt work.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40300 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdated debian stuff for core EFL. Changed debian stuff of others to work with core...
quaker [Wed, 22 Apr 2009 16:37:17 +0000 (16:37 +0000)]
Updated debian stuff for core EFL. Changed debian stuff of others to work with core EFL updates.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40292 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoand incriment to next rev.
raster [Wed, 22 Apr 2009 14:08:21 +0000 (14:08 +0000)]
and incriment to next rev.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40285 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agosnapworth quality - distchecked. sonames bumped. rev's bumped. tarballs
raster [Wed, 22 Apr 2009 14:07:05 +0000 (14:07 +0000)]
snapworth quality - distchecked. sonames bumped. rev's bumped. tarballs
uploaded.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40284 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdated changelogs for packages which will go into repository.
quaker [Tue, 21 Apr 2009 17:39:20 +0000 (17:39 +0000)]
Updated changelogs for packages which will go into repository.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40270 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years ago1. embryo shoudl have soname
raster [Tue, 21 Apr 2009 14:17:42 +0000 (14:17 +0000)]
1. embryo shoudl have soname
2. yes local.conf slipped in - ignore
3. added soname version release to module arch dirs
4. adapted extra-modules to use the revision in arch
5. made e17 also have a release rev
6. dummy release stuff in eet - wont use it as its already released.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40267 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix distcheck on couple packages, problems with EXTRA_DIST
barbieri [Mon, 20 Apr 2009 13:38:49 +0000 (13:38 +0000)]
fix distcheck on couple packages, problems with EXTRA_DIST

Do NOT include dirs in EXTRA_DIST (embryo, eet, ecore, evas, edje,
efreet) as it will include .svn directories!

EXTRA_DIST does not take a glob as ETK did, use $(wildcard glob) to
expand it.

And do not forget about adding extra files to EXTRA_DIST (wizard) and
DIST_SUBDIRS (fileman_opinfo).

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40247 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdated Standards-Version
quaker [Sun, 19 Apr 2009 16:28:48 +0000 (16:28 +0000)]
Updated Standards-Version

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40228 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMerged with pkgE
quaker [Sun, 19 Apr 2009 16:22:00 +0000 (16:22 +0000)]
Merged with pkgE

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40226 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoPrepared for merge with pkgE debian stuff
quaker [Sun, 19 Apr 2009 16:18:41 +0000 (16:18 +0000)]
Prepared for merge with pkgE debian stuff

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40225 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdated debian stuff(grew Standards-Version, updated python-ecore rules file)
quaker [Tue, 14 Apr 2009 17:21:19 +0000 (17:21 +0000)]
Updated debian stuff(grew Standards-Version, updated python-ecore rules file)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@40043 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoi found it is useless and cdbs is setting up prefix automatically.
quaker [Tue, 24 Mar 2009 19:56:43 +0000 (19:56 +0000)]
i found it is useless and cdbs is setting up prefix automatically.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@39695 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoforgot to add --prefix=/usr
quaker [Tue, 24 Mar 2009 19:51:00 +0000 (19:51 +0000)]
forgot to add --prefix=/usr

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@39694 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoUpdated debian stuff everywhere.
quaker [Tue, 24 Mar 2009 19:44:57 +0000 (19:44 +0000)]
Updated debian stuff everywhere.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@39693 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoignore
englebass [Tue, 17 Mar 2009 18:20:57 +0000 (18:20 +0000)]
ignore

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@39531 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoIgnore generated Makefiles
englebass [Tue, 17 Mar 2009 13:37:34 +0000 (13:37 +0000)]
Ignore generated Makefiles

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@39519 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix dist rule
caro [Wed, 4 Feb 2009 19:55:04 +0000 (19:55 +0000)]
fix dist rule

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38944 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoMissing modification of the variable DOXYGEN to
caro [Sun, 1 Feb 2009 20:27:16 +0000 (20:27 +0000)]
Missing modification of the variable DOXYGEN to
efl_doxygen. Spotted by Albin Tonnerre (Lutin).

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38896 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix logic in efl_doxygen.m4
caro [Sun, 1 Feb 2009 06:53:09 +0000 (06:53 +0000)]
fix logic in efl_doxygen.m4

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38878 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoupdate ac_attribute.m4
caro [Wed, 14 Jan 2009 08:37:03 +0000 (08:37 +0000)]
update ac_attribute.m4

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38582 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix the copying license to
raster [Tue, 13 Jan 2009 13:00:45 +0000 (13:00 +0000)]
fix the copying license to

1. get rid of grammar mistake
2. refer to COPYING-PLAIn correctly as the filename
3. be more explicit on "shipping source" due to ambiguity (this makes it what
it was intended to be and that is GPL compatible).

this does not modify the LGPL libs... or GPL apps etc. - only those using the
original COPYING from e. author and dates at the top remain the same.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38569 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdded debian/rules files with a new permissions set(755).
quaker [Fri, 9 Jan 2009 16:33:51 +0000 (16:33 +0000)]
Added debian/rules files with a new permissions set(755).

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38519 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoprepare debian rules files for new chmod permissions.
quaker [Fri, 9 Jan 2009 16:31:51 +0000 (16:31 +0000)]
prepare debian rules files for new chmod permissions.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38518 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agofix prefix env vars to use embryo - not e
raster [Sun, 4 Jan 2009 11:05:10 +0000 (11:05 +0000)]
fix prefix env vars to use embryo - not e

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38447 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

15 years agoAdded new set of debian subdirs.
quaker [Thu, 1 Jan 2009 11:35:17 +0000 (11:35 +0000)]
Added new set of debian subdirs.

BROKEN/etox
e
ecore
e_dbus
edje
edje_editor
edje_viewer
eet
efreet
eina
elicit
elitaire
embryo
E-MODULES-EXTRA
emotion
emphasis
empower
emprint
enhance
enity
entrance
ephoto
epsilon
esmart
estickies
etk
etk_extra
evas
evolve
ewl
exhibit
exml
expedite
imlib2
imlib2_loaders
MISC/engage
OLD/eclair
OLD/engrave
OLD/enotes
OLD/entrance_edit_gui
OLD/e_utils
OLD/evoak
OLD/examine
OLD/iconbar
PROTO/etk_server
PROTO/exchange
PROTO/extrackt
rage

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@38399 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33