commit e871a1dede891c01ccbb5e79c0eacc3dc2020d0e Author: Kim Woelders Date: Sat Mar 13 10:13:38 2004 +0000 Initial import. Theme files are straight copies from e. SVN revision: 9342 diff --git a/BlueSteel/.cvsignore b/BlueSteel/.cvsignore new file mode 100644 index 0000000..9d95ddc --- /dev/null +++ b/BlueSteel/.cvsignore @@ -0,0 +1,9 @@ +autom4te.cache +aclocal.m4 +Makefile.in +configure +config.log +config.status +Makefile +etheme-*.tar.gz +files diff --git a/BlueSteel/AUTHORS b/BlueSteel/AUTHORS new file mode 100644 index 0000000..eb82ced --- /dev/null +++ b/BlueSteel/AUTHORS @@ -0,0 +1 @@ +See the ABOUT/MAIN theme file. diff --git a/BlueSteel/BlueSteel.etheme b/BlueSteel/BlueSteel.etheme new file mode 100644 index 0000000..3c097ff Binary files /dev/null and b/BlueSteel/BlueSteel.etheme differ diff --git a/BlueSteel/BlueSteel.etheme.ja b/BlueSteel/BlueSteel.etheme.ja new file mode 100644 index 0000000..e8f36f6 Binary files /dev/null and b/BlueSteel/BlueSteel.etheme.ja differ diff --git a/BlueSteel/COPYING b/BlueSteel/COPYING new file mode 100644 index 0000000..2f4bf30 --- /dev/null +++ b/BlueSteel/COPYING @@ -0,0 +1,20 @@ +Copyright (C) 2000-2004 Carsten Haitzler, Geoff Harrison and various contributors + +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, its documentation and marketing & publicity +materials, and acknowledgment shall be given in the documentation, materials +and software packages that this Software was used. + +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. diff --git a/BlueSteel/ChangeLog b/BlueSteel/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/BlueSteel/Makefile.am b/BlueSteel/Makefile.am new file mode 100644 index 0000000..96ae063 --- /dev/null +++ b/BlueSteel/Makefile.am @@ -0,0 +1,26 @@ + +ethemedir = $(datadir)/themes + +EXTRA_DIST = etheme-@THEME@.spec @THEME_FILES@ + +THEME_DIR = $(DESTDIR)$(ENLIGHTENMENT_ROOT)/themes/@THEME@ + +install-data-local: + $(mkinstalldirs) $(THEME_DIR) + for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); tar -xmf -); \ + done + -if [ -n "$(USER)" ]; then chown -R $(USER) $(THEME_DIR); else chown -R root $(THEME_DIR); fi + +uninstall-local: + -for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); \ + rm -f `tar -tf -` 2>/dev/null); \ + done + +untar: + mkdir -p files + tar -xzvf @THEME@.etheme -C files + +dotar: + tar -czvf @THEME@.etheme -C files * diff --git a/BlueSteel/NEWS b/BlueSteel/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/BlueSteel/README b/BlueSteel/README new file mode 100644 index 0000000..e69de29 diff --git a/BlueSteel/autogen.sh b/BlueSteel/autogen.sh new file mode 100755 index 0000000..d754cae --- /dev/null +++ b/BlueSteel/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +echo " aclocal $ACLOCAL_FLAGS" +aclocal $ACLOCAL_FLAGS +echo " automake --add-missing" +automake --add-missing +echo " autoconf" +autoconf + +./configure "$@" diff --git a/BlueSteel/configure.in b/BlueSteel/configure.in new file mode 100644 index 0000000..ef98b53 --- /dev/null +++ b/BlueSteel/configure.in @@ -0,0 +1,37 @@ +AC_INIT(etheme-BlueSteel.spec) + +AM_INIT_AUTOMAKE(etheme-BlueSteel, 0.16) +AM_MAINTAINER_MODE + +THEME=BlueSteel + +dnl reasonable guesses for where stuff is installed +if test "x$prefix" = "xNONE"; then + prefix="/usr/local" +fi +if test "x$exec_prefix" = "xNONE"; then + exec_prefix=$prefix +fi + +#ALL_LINGUAS="de dk en_US es fr hu ko nl no ru sv pt pl pt_BR tr ja" + +AC_PROG_MAKE_SET +AC_PROG_INSTALL + +AC_ARG_ENABLE(fsstd, + [ --enable-fsstd install files following FSSTD [default=no]], ,enable_fsstd=no) + +if test "x$enable_fsstd" != "xyes"; then + datadir=${prefix} +fi +ENLIGHTENMENT_ROOT=`eval echo ${datadir}/enlightenment` +AC_SUBST(ENLIGHTENMENT_ROOT) + +THEME_FILES=`ls -1 $THEME.etheme*` +THEME_FILES=`echo $THEME_FILES` +AC_SUBST(THEME) +AC_SUBST(THEME_FILES) + +AC_OUTPUT([ + Makefile +]) diff --git a/BlueSteel/etheme-BlueSteel.spec b/BlueSteel/etheme-BlueSteel.spec new file mode 100644 index 0000000..ac24eec --- /dev/null +++ b/BlueSteel/etheme-BlueSteel.spec @@ -0,0 +1,50 @@ +%define name etheme-BlueSteel +%define version 0.16 +%define release 1 + +Summary: Enlightenment theme: %{name} +Name: %{name} +Version: %{version} +Release: %{release} +Copyright: BSD +Group: User Interface/Desktops +Source: %{name}-%{version}.tar.gz +Prefix: %{_prefix} +Docdir: %{_docdir} +BuildArch: noarch +BuildRoot: /tmp/build-%{name}-%{version}-root +Packager: Michael Jennings +URL: http://www.enlightenment.org/ + +Requires: enlightenment >= 0.16.7 + +%description +The etheme-BlueSteel theme for Enlightenment. +This is part of the Enlightenment distribution. + +%changelog + +%prep +%setup + +%build +CFLAGS="${RPM_OPT_FLAGS}" +if [ ! -f configure ]; then + ./autogen.sh --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +else + %{configure} --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +fi +make + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=$RPM_BUILD_ROOT install + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-, root, root) +%doc AUTHORS COPYING INSTALL README +%{_datadir}/enlightenment/* diff --git a/BrushedMetal-Tigert/.cvsignore b/BrushedMetal-Tigert/.cvsignore new file mode 100644 index 0000000..9d95ddc --- /dev/null +++ b/BrushedMetal-Tigert/.cvsignore @@ -0,0 +1,9 @@ +autom4te.cache +aclocal.m4 +Makefile.in +configure +config.log +config.status +Makefile +etheme-*.tar.gz +files diff --git a/BrushedMetal-Tigert/AUTHORS b/BrushedMetal-Tigert/AUTHORS new file mode 100644 index 0000000..eb82ced --- /dev/null +++ b/BrushedMetal-Tigert/AUTHORS @@ -0,0 +1 @@ +See the ABOUT/MAIN theme file. diff --git a/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme b/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme new file mode 100644 index 0000000..8e196bf Binary files /dev/null and b/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme differ diff --git a/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.ja b/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.ja new file mode 100644 index 0000000..8b537bb Binary files /dev/null and b/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.ja differ diff --git a/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.pl b/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.pl new file mode 100644 index 0000000..dfafab6 Binary files /dev/null and b/BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.pl differ diff --git a/BrushedMetal-Tigert/COPYING b/BrushedMetal-Tigert/COPYING new file mode 100644 index 0000000..2f4bf30 --- /dev/null +++ b/BrushedMetal-Tigert/COPYING @@ -0,0 +1,20 @@ +Copyright (C) 2000-2004 Carsten Haitzler, Geoff Harrison and various contributors + +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, its documentation and marketing & publicity +materials, and acknowledgment shall be given in the documentation, materials +and software packages that this Software was used. + +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. diff --git a/BrushedMetal-Tigert/ChangeLog b/BrushedMetal-Tigert/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/BrushedMetal-Tigert/Makefile.am b/BrushedMetal-Tigert/Makefile.am new file mode 100644 index 0000000..96ae063 --- /dev/null +++ b/BrushedMetal-Tigert/Makefile.am @@ -0,0 +1,26 @@ + +ethemedir = $(datadir)/themes + +EXTRA_DIST = etheme-@THEME@.spec @THEME_FILES@ + +THEME_DIR = $(DESTDIR)$(ENLIGHTENMENT_ROOT)/themes/@THEME@ + +install-data-local: + $(mkinstalldirs) $(THEME_DIR) + for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); tar -xmf -); \ + done + -if [ -n "$(USER)" ]; then chown -R $(USER) $(THEME_DIR); else chown -R root $(THEME_DIR); fi + +uninstall-local: + -for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); \ + rm -f `tar -tf -` 2>/dev/null); \ + done + +untar: + mkdir -p files + tar -xzvf @THEME@.etheme -C files + +dotar: + tar -czvf @THEME@.etheme -C files * diff --git a/BrushedMetal-Tigert/NEWS b/BrushedMetal-Tigert/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/BrushedMetal-Tigert/README b/BrushedMetal-Tigert/README new file mode 100644 index 0000000..e69de29 diff --git a/BrushedMetal-Tigert/autogen.sh b/BrushedMetal-Tigert/autogen.sh new file mode 100755 index 0000000..d754cae --- /dev/null +++ b/BrushedMetal-Tigert/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +echo " aclocal $ACLOCAL_FLAGS" +aclocal $ACLOCAL_FLAGS +echo " automake --add-missing" +automake --add-missing +echo " autoconf" +autoconf + +./configure "$@" diff --git a/BrushedMetal-Tigert/configure.in b/BrushedMetal-Tigert/configure.in new file mode 100644 index 0000000..326197e --- /dev/null +++ b/BrushedMetal-Tigert/configure.in @@ -0,0 +1,37 @@ +AC_INIT(etheme-BrushedMetal-Tigert.spec) + +AM_INIT_AUTOMAKE(etheme-BrushedMetal-Tigert, 0.16) +AM_MAINTAINER_MODE + +THEME=BrushedMetal-Tigert + +dnl reasonable guesses for where stuff is installed +if test "x$prefix" = "xNONE"; then + prefix="/usr/local" +fi +if test "x$exec_prefix" = "xNONE"; then + exec_prefix=$prefix +fi + +#ALL_LINGUAS="de dk en_US es fr hu ko nl no ru sv pt pl pt_BR tr ja" + +AC_PROG_MAKE_SET +AC_PROG_INSTALL + +AC_ARG_ENABLE(fsstd, + [ --enable-fsstd install files following FSSTD [default=no]], ,enable_fsstd=no) + +if test "x$enable_fsstd" != "xyes"; then + datadir=${prefix} +fi +ENLIGHTENMENT_ROOT=`eval echo ${datadir}/enlightenment` +AC_SUBST(ENLIGHTENMENT_ROOT) + +THEME_FILES=`ls -1 $THEME.etheme*` +THEME_FILES=`echo $THEME_FILES` +AC_SUBST(THEME) +AC_SUBST(THEME_FILES) + +AC_OUTPUT([ + Makefile +]) diff --git a/BrushedMetal-Tigert/etheme-BrushedMetal-Tigert.spec b/BrushedMetal-Tigert/etheme-BrushedMetal-Tigert.spec new file mode 100644 index 0000000..e4057f5 --- /dev/null +++ b/BrushedMetal-Tigert/etheme-BrushedMetal-Tigert.spec @@ -0,0 +1,50 @@ +%define name etheme-BrushedMetal-Tigert +%define version 0.16 +%define release 1 + +Summary: Enlightenment theme: %{name} +Name: %{name} +Version: %{version} +Release: %{release} +Copyright: BSD +Group: User Interface/Desktops +Source: %{name}-%{version}.tar.gz +Prefix: %{_prefix} +Docdir: %{_docdir} +BuildArch: noarch +BuildRoot: /tmp/build-%{name}-%{version}-root +Packager: Michael Jennings +URL: http://www.enlightenment.org/ + +Requires: enlightenment >= 0.16.7 + +%description +The etheme-BlueSteel theme for Enlightenment. +This is part of the Enlightenment distribution. + +%changelog + +%prep +%setup + +%build +CFLAGS="${RPM_OPT_FLAGS}" +if [ ! -f configure ]; then + ./autogen.sh --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +else + %{configure} --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +fi +make + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=$RPM_BUILD_ROOT install + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-, root, root) +%doc AUTHORS COPYING INSTALL README +%{_datadir}/enlightenment/* diff --git a/Ganymede/.cvsignore b/Ganymede/.cvsignore new file mode 100644 index 0000000..9d95ddc --- /dev/null +++ b/Ganymede/.cvsignore @@ -0,0 +1,9 @@ +autom4te.cache +aclocal.m4 +Makefile.in +configure +config.log +config.status +Makefile +etheme-*.tar.gz +files diff --git a/Ganymede/AUTHORS b/Ganymede/AUTHORS new file mode 100644 index 0000000..eb82ced --- /dev/null +++ b/Ganymede/AUTHORS @@ -0,0 +1 @@ +See the ABOUT/MAIN theme file. diff --git a/Ganymede/COPYING b/Ganymede/COPYING new file mode 100644 index 0000000..2f4bf30 --- /dev/null +++ b/Ganymede/COPYING @@ -0,0 +1,20 @@ +Copyright (C) 2000-2004 Carsten Haitzler, Geoff Harrison and various contributors + +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, its documentation and marketing & publicity +materials, and acknowledgment shall be given in the documentation, materials +and software packages that this Software was used. + +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. diff --git a/Ganymede/ChangeLog b/Ganymede/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/Ganymede/Ganymede.etheme b/Ganymede/Ganymede.etheme new file mode 100644 index 0000000..e6d8bfc Binary files /dev/null and b/Ganymede/Ganymede.etheme differ diff --git a/Ganymede/Ganymede.etheme.ja b/Ganymede/Ganymede.etheme.ja new file mode 100644 index 0000000..28e252c Binary files /dev/null and b/Ganymede/Ganymede.etheme.ja differ diff --git a/Ganymede/Makefile.am b/Ganymede/Makefile.am new file mode 100644 index 0000000..96ae063 --- /dev/null +++ b/Ganymede/Makefile.am @@ -0,0 +1,26 @@ + +ethemedir = $(datadir)/themes + +EXTRA_DIST = etheme-@THEME@.spec @THEME_FILES@ + +THEME_DIR = $(DESTDIR)$(ENLIGHTENMENT_ROOT)/themes/@THEME@ + +install-data-local: + $(mkinstalldirs) $(THEME_DIR) + for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); tar -xmf -); \ + done + -if [ -n "$(USER)" ]; then chown -R $(USER) $(THEME_DIR); else chown -R root $(THEME_DIR); fi + +uninstall-local: + -for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); \ + rm -f `tar -tf -` 2>/dev/null); \ + done + +untar: + mkdir -p files + tar -xzvf @THEME@.etheme -C files + +dotar: + tar -czvf @THEME@.etheme -C files * diff --git a/Ganymede/NEWS b/Ganymede/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/Ganymede/README b/Ganymede/README new file mode 100644 index 0000000..e69de29 diff --git a/Ganymede/autogen.sh b/Ganymede/autogen.sh new file mode 100755 index 0000000..d754cae --- /dev/null +++ b/Ganymede/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +echo " aclocal $ACLOCAL_FLAGS" +aclocal $ACLOCAL_FLAGS +echo " automake --add-missing" +automake --add-missing +echo " autoconf" +autoconf + +./configure "$@" diff --git a/Ganymede/configure.in b/Ganymede/configure.in new file mode 100644 index 0000000..c71b4d4 --- /dev/null +++ b/Ganymede/configure.in @@ -0,0 +1,37 @@ +AC_INIT(etheme-Ganymede.spec) + +AM_INIT_AUTOMAKE(etheme-Ganymede, 0.16) +AM_MAINTAINER_MODE + +THEME=Ganymede + +dnl reasonable guesses for where stuff is installed +if test "x$prefix" = "xNONE"; then + prefix="/usr/local" +fi +if test "x$exec_prefix" = "xNONE"; then + exec_prefix=$prefix +fi + +#ALL_LINGUAS="de dk en_US es fr hu ko nl no ru sv pt pl pt_BR tr ja" + +AC_PROG_MAKE_SET +AC_PROG_INSTALL + +AC_ARG_ENABLE(fsstd, + [ --enable-fsstd install files following FSSTD [default=no]], ,enable_fsstd=no) + +if test "x$enable_fsstd" != "xyes"; then + datadir=${prefix} +fi +ENLIGHTENMENT_ROOT=`eval echo ${datadir}/enlightenment` +AC_SUBST(ENLIGHTENMENT_ROOT) + +THEME_FILES=`ls -1 $THEME.etheme*` +THEME_FILES=`echo $THEME_FILES` +AC_SUBST(THEME) +AC_SUBST(THEME_FILES) + +AC_OUTPUT([ + Makefile +]) diff --git a/Ganymede/etheme-Ganymede.spec b/Ganymede/etheme-Ganymede.spec new file mode 100644 index 0000000..7f6782e --- /dev/null +++ b/Ganymede/etheme-Ganymede.spec @@ -0,0 +1,50 @@ +%define name etheme-Ganymede +%define version 0.16 +%define release 1 + +Summary: Enlightenment theme: %{name} +Name: %{name} +Version: %{version} +Release: %{release} +Copyright: BSD +Group: User Interface/Desktops +Source: %{name}-%{version}.tar.gz +Prefix: %{_prefix} +Docdir: %{_docdir} +BuildArch: noarch +BuildRoot: /tmp/build-%{name}-%{version}-root +Packager: Michael Jennings +URL: http://www.enlightenment.org/ + +Requires: enlightenment >= 0.16.7 + +%description +The etheme-BlueSteel theme for Enlightenment. +This is part of the Enlightenment distribution. + +%changelog + +%prep +%setup + +%build +CFLAGS="${RPM_OPT_FLAGS}" +if [ ! -f configure ]; then + ./autogen.sh --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +else + %{configure} --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +fi +make + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=$RPM_BUILD_ROOT install + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-, root, root) +%doc AUTHORS COPYING INSTALL README +%{_datadir}/enlightenment/* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..104ce4f --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ + + THEMES += BlueSteel + THEMES += ShinyMetal + THEMES += BrushedMetal-Tigert + THEMES += Ganymede + +.PHONY: $(THEMES) + +all: check + +# Make distcheck + THEMES-CHECK = $(addprefix check-, $(THEMES)) +.PHONY: $(THEMES-CHECK) +check: $(THEMES-CHECK) +$(THEMES-CHECK): check-%: + cd $*; ./autogen.sh && make distcheck + +# Make RPM's + THEMES-RPM = $(addprefix rpm-, $(THEMES)) +.PHONY: $(THEMES-RPM) +rpms: $(THEMES-RPM) +$(THEMES-RPM): rpm-%: +# cd $*; ./autogen.sh && make dist && rpmbuild -bb etheme-$*.spec + cd $*; rpmbuild -bb etheme-$*.spec diff --git a/ShinyMetal/.cvsignore b/ShinyMetal/.cvsignore new file mode 100644 index 0000000..9d95ddc --- /dev/null +++ b/ShinyMetal/.cvsignore @@ -0,0 +1,9 @@ +autom4te.cache +aclocal.m4 +Makefile.in +configure +config.log +config.status +Makefile +etheme-*.tar.gz +files diff --git a/ShinyMetal/AUTHORS b/ShinyMetal/AUTHORS new file mode 100644 index 0000000..eb82ced --- /dev/null +++ b/ShinyMetal/AUTHORS @@ -0,0 +1 @@ +See the ABOUT/MAIN theme file. diff --git a/ShinyMetal/COPYING b/ShinyMetal/COPYING new file mode 100644 index 0000000..2f4bf30 --- /dev/null +++ b/ShinyMetal/COPYING @@ -0,0 +1,20 @@ +Copyright (C) 2000-2004 Carsten Haitzler, Geoff Harrison and various contributors + +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, its documentation and marketing & publicity +materials, and acknowledgment shall be given in the documentation, materials +and software packages that this Software was used. + +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. diff --git a/ShinyMetal/ChangeLog b/ShinyMetal/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/ShinyMetal/Makefile.am b/ShinyMetal/Makefile.am new file mode 100644 index 0000000..96ae063 --- /dev/null +++ b/ShinyMetal/Makefile.am @@ -0,0 +1,26 @@ + +ethemedir = $(datadir)/themes + +EXTRA_DIST = etheme-@THEME@.spec @THEME_FILES@ + +THEME_DIR = $(DESTDIR)$(ENLIGHTENMENT_ROOT)/themes/@THEME@ + +install-data-local: + $(mkinstalldirs) $(THEME_DIR) + for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); tar -xmf -); \ + done + -if [ -n "$(USER)" ]; then chown -R $(USER) $(THEME_DIR); else chown -R root $(THEME_DIR); fi + +uninstall-local: + -for tf in @THEME_FILES@; do \ + gzip -d -c < $(srcdir)/$$tf | (cd $(THEME_DIR); \ + rm -f `tar -tf -` 2>/dev/null); \ + done + +untar: + mkdir -p files + tar -xzvf @THEME@.etheme -C files + +dotar: + tar -czvf @THEME@.etheme -C files * diff --git a/ShinyMetal/NEWS b/ShinyMetal/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/ShinyMetal/README b/ShinyMetal/README new file mode 100644 index 0000000..e69de29 diff --git a/ShinyMetal/ShinyMetal.etheme b/ShinyMetal/ShinyMetal.etheme new file mode 100644 index 0000000..a5cb097 Binary files /dev/null and b/ShinyMetal/ShinyMetal.etheme differ diff --git a/ShinyMetal/ShinyMetal.etheme.ja b/ShinyMetal/ShinyMetal.etheme.ja new file mode 100644 index 0000000..d92ea37 Binary files /dev/null and b/ShinyMetal/ShinyMetal.etheme.ja differ diff --git a/ShinyMetal/ShinyMetal.etheme.pl b/ShinyMetal/ShinyMetal.etheme.pl new file mode 100644 index 0000000..cdeb81e Binary files /dev/null and b/ShinyMetal/ShinyMetal.etheme.pl differ diff --git a/ShinyMetal/autogen.sh b/ShinyMetal/autogen.sh new file mode 100755 index 0000000..d754cae --- /dev/null +++ b/ShinyMetal/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +echo " aclocal $ACLOCAL_FLAGS" +aclocal $ACLOCAL_FLAGS +echo " automake --add-missing" +automake --add-missing +echo " autoconf" +autoconf + +./configure "$@" diff --git a/ShinyMetal/configure.in b/ShinyMetal/configure.in new file mode 100644 index 0000000..36e65a6 --- /dev/null +++ b/ShinyMetal/configure.in @@ -0,0 +1,37 @@ +AC_INIT(etheme-ShinyMetal.spec) + +AM_INIT_AUTOMAKE(etheme-ShinyMetal, 0.16) +AM_MAINTAINER_MODE + +THEME=ShinyMetal + +dnl reasonable guesses for where stuff is installed +if test "x$prefix" = "xNONE"; then + prefix="/usr/local" +fi +if test "x$exec_prefix" = "xNONE"; then + exec_prefix=$prefix +fi + +#ALL_LINGUAS="de dk en_US es fr hu ko nl no ru sv pt pl pt_BR tr ja" + +AC_PROG_MAKE_SET +AC_PROG_INSTALL + +AC_ARG_ENABLE(fsstd, + [ --enable-fsstd install files following FSSTD [default=no]], ,enable_fsstd=no) + +if test "x$enable_fsstd" != "xyes"; then + datadir=${prefix} +fi +ENLIGHTENMENT_ROOT=`eval echo ${datadir}/enlightenment` +AC_SUBST(ENLIGHTENMENT_ROOT) + +THEME_FILES=`ls -1 $THEME.etheme*` +THEME_FILES=`echo $THEME_FILES` +AC_SUBST(THEME) +AC_SUBST(THEME_FILES) + +AC_OUTPUT([ + Makefile +]) diff --git a/ShinyMetal/etheme-ShinyMetal.spec b/ShinyMetal/etheme-ShinyMetal.spec new file mode 100644 index 0000000..fedcad5 --- /dev/null +++ b/ShinyMetal/etheme-ShinyMetal.spec @@ -0,0 +1,50 @@ +%define name etheme-ShinyMetal +%define version 0.16 +%define release 1 + +Summary: Enlightenment theme: %{name} +Name: %{name} +Version: %{version} +Release: %{release} +Copyright: BSD +Group: User Interface/Desktops +Source: %{name}-%{version}.tar.gz +Prefix: %{_prefix} +Docdir: %{_docdir} +BuildArch: noarch +BuildRoot: /tmp/build-%{name}-%{version}-root +Packager: Michael Jennings +URL: http://www.enlightenment.org/ + +Requires: enlightenment >= 0.16.7 + +%description +The etheme-BlueSteel theme for Enlightenment. +This is part of the Enlightenment distribution. + +%changelog + +%prep +%setup + +%build +CFLAGS="${RPM_OPT_FLAGS}" +if [ ! -f configure ]; then + ./autogen.sh --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +else + %{configure} --prefix=%{_prefix} --bindir=%{_bindir} --datadir=%{_datadir} --mandir=%{_mandir} --enable-fsstd +fi +make + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=$RPM_BUILD_ROOT install + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-, root, root) +%doc AUTHORS COPYING INSTALL README +%{_datadir}/enlightenment/*