Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (62c8d16398906d2e4e35835a190faf92e7ab524e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (62c8d16398906d2e4e35835a190faf92e7ab524e)
  • Date: Sat, 1 Dec 2007 01:42:49 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

ChangeLog | 3 +++
devel/jam/HISTORY | 4 ++++
devel/jam/PRE_BUILD | 2 +-
e/e16-themes/DEPENDS | 1 +
e/e16-themes/DETAILS | 19 +++++++++++++++++++
e/e16-themes/HISTORY | 3 +++
e/enlightenment/DEPENDS | 5 +++--
e/enlightenment/HISTORY | 3 +++
8 files changed, 37 insertions(+), 3 deletions(-)

New commits:
commit 62c8d16398906d2e4e35835a190faf92e7ab524e
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

enlightenment: Added optional dependency on e16-themes for E16 profile

commit 85576c21dbfbe9ba2ec2bb95e19f48117cc6dabb
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

e16-themes: Added e16 themes from linuxfan (Bug #14146)

commit e61f3aa711129cd4567baaab40c6404c36086dc6
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

jam: Override user flags so the spell compiles

diff --git a/ChangeLog b/ChangeLog
index a4aa32a..7ea4d29 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2007-11-30 Eric Sandall <sandalle AT sourcemage.org>
+ * e/e16-themes: Added e16 themes (Bug #14146)
+
2007-11-29 Eric Sandall <sandalle AT sourcemage.org>
* httpd/apache2/httpd.gpg: Moved to grimoire level apache.gpg

diff --git a/devel/jam/HISTORY b/devel/jam/HISTORY
index f97291b..755a72d 100644
--- a/devel/jam/HISTORY
+++ b/devel/jam/HISTORY
@@ -1,3 +1,7 @@
+2007-11-30 Eric Sandall <sandalle AT sourcemage.org>
+ * PRE_BUILD: Override user-flags in case they set -fstrict-aliasing
+ Thanks Jaka
+
2007-11-29 Eric Sandall <sandalle AT sourcemage.org>
* PRE_BUILD: Fix compilation with gcc 4.2 (Bug #14145)
See
http://maillist.perforce.com/pipermail/jamming/2007-May/002913.html
diff --git a/devel/jam/PRE_BUILD b/devel/jam/PRE_BUILD
index 43639b0..7db02b6 100755
--- a/devel/jam/PRE_BUILD
+++ b/devel/jam/PRE_BUILD
@@ -1,7 +1,7 @@
mk_source_dir $SOURCE_DIRECTORY &&
cd $SOURCE_DIRECTORY &&
unpack_file &&
-CFLAGS="-fno-strict-aliasing $CFLAGS" &&
+CFLAGS="$CFLAGS -fno-strict-aliasing" &&
sedit "s:CFLAGS =:CFLAGS = ${CFLAGS}:" Makefile &&
sedit "s:(CFLAGS):(CFLAGS) ${LDFLAGS}:" Makefile &&
sedit "s:CCFLAGS +=:CCFLAGS += ${CFLAGS}:g" Jamfile &&
diff --git a/e/e16-themes/DEPENDS b/e/e16-themes/DEPENDS
new file mode 100755
index 0000000..f4d42de
--- /dev/null
+++ b/e/e16-themes/DEPENDS
@@ -0,0 +1 @@
+depends e16
diff --git a/e/e16-themes/DETAILS b/e/e16-themes/DETAILS
new file mode 100755
index 0000000..42f085c
--- /dev/null
+++ b/e/e16-themes/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=e16-themes
+ VERSION=0.16.8.0.1
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=$SOURCEFORGE_URL/enlightenment/${SOURCE}
+
SOURCE_HASH=sha512:01d2f50dc061e499fb3021cb2a3b764cba9846aa8681849b59e587f89dd3d0c45f45f0b1dd81ddc7e5435fb5d7f84f1e9798e2444ea8c3bffa527c609ee080d6
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://www.enlightenment.org/";
+ LICENSE[0]=unrestricted
+ ENTERED=20071129
+ SHORT="Install e16's base themes: BlueSteel BrushedMetal-Tigert,
Ganymede, ShinyMetal"
+cat << EOF
+Aside from e16's default winter theme, four optional themes are available
+with the distribution:
+ BlueSteel
+ BrushedMetal-Tigert
+ Ganymede
+ ShinyMetal
+These should be considered as a required part of e16.
+EOF
diff --git a/e/e16-themes/HISTORY b/e/e16-themes/HISTORY
new file mode 100644
index 0000000..50ad5fc
--- /dev/null
+++ b/e/e16-themes/HISTORY
@@ -0,0 +1,3 @@
+2007-11-29 linuxfan <demaillists AT comcast.net>
+ * DEPENDS, DETAILS: spell created
+
diff --git a/e/enlightenment/DEPENDS b/e/enlightenment/DEPENDS
index da9d22c..7a5c961 100755
--- a/e/enlightenment/DEPENDS
+++ b/e/enlightenment/DEPENDS
@@ -4,8 +4,9 @@
if [ "$EPROFILE_E16" == "y" ]; then
depends e16 &&

- optional_depends e16-docs '' '' 'help docs for e16' &&
- optional_depends epplet-base '' '' 'for plugins' &&
+ optional_depends e16-themes '' '' 'for default E16 themes' &&
+ optional_depends e16-docs '' '' 'help docs for E16' &&
+ optional_depends epplet-base '' '' 'for plugins' &&
optional_depends exmms '' '' 'for a XMMS epplet'
fi &&

diff --git a/e/enlightenment/HISTORY b/e/enlightenment/HISTORY
index a976f16..819773a 100644
--- a/e/enlightenment/HISTORY
+++ b/e/enlightenment/HISTORY
@@ -1,3 +1,6 @@
+2007-11-30 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Added optional dependency on e16-themes
+
2007-11-09 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: entice is dead. Long live entice!




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (62c8d16398906d2e4e35835a190faf92e7ab524e), Eric Sandall, 12/01/2007

Archive powered by MHonArc 2.6.24.

Top of Page