Initial import. Theme files are straight copies from e.

SVN revision: 9342
master
Kim Woelders 20 years ago
commit e871a1dede
  1. 9
      BlueSteel/.cvsignore
  2. 1
      BlueSteel/AUTHORS
  3. BIN
      BlueSteel/BlueSteel.etheme
  4. BIN
      BlueSteel/BlueSteel.etheme.ja
  5. 20
      BlueSteel/COPYING
  6. 0
      BlueSteel/ChangeLog
  7. 26
      BlueSteel/Makefile.am
  8. 0
      BlueSteel/NEWS
  9. 0
      BlueSteel/README
  10. 11
      BlueSteel/autogen.sh
  11. 37
      BlueSteel/configure.in
  12. 50
      BlueSteel/etheme-BlueSteel.spec
  13. 9
      BrushedMetal-Tigert/.cvsignore
  14. 1
      BrushedMetal-Tigert/AUTHORS
  15. BIN
      BrushedMetal-Tigert/BrushedMetal-Tigert.etheme
  16. BIN
      BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.ja
  17. BIN
      BrushedMetal-Tigert/BrushedMetal-Tigert.etheme.pl
  18. 20
      BrushedMetal-Tigert/COPYING
  19. 0
      BrushedMetal-Tigert/ChangeLog
  20. 26
      BrushedMetal-Tigert/Makefile.am
  21. 0
      BrushedMetal-Tigert/NEWS
  22. 0
      BrushedMetal-Tigert/README
  23. 11
      BrushedMetal-Tigert/autogen.sh
  24. 37
      BrushedMetal-Tigert/configure.in
  25. 50
      BrushedMetal-Tigert/etheme-BrushedMetal-Tigert.spec
  26. 9
      Ganymede/.cvsignore
  27. 1
      Ganymede/AUTHORS
  28. 20
      Ganymede/COPYING
  29. 0
      Ganymede/ChangeLog
  30. BIN
      Ganymede/Ganymede.etheme
  31. BIN
      Ganymede/Ganymede.etheme.ja
  32. 26
      Ganymede/Makefile.am
  33. 0
      Ganymede/NEWS
  34. 0
      Ganymede/README
  35. 11
      Ganymede/autogen.sh
  36. 37
      Ganymede/configure.in
  37. 50
      Ganymede/etheme-Ganymede.spec
  38. 24
      Makefile
  39. 9
      ShinyMetal/.cvsignore
  40. 1
      ShinyMetal/AUTHORS
  41. 20
      ShinyMetal/COPYING
  42. 0
      ShinyMetal/ChangeLog
  43. 26
      ShinyMetal/Makefile.am
  44. 0
      ShinyMetal/NEWS
  45. 0
      ShinyMetal/README
  46. BIN
      ShinyMetal/ShinyMetal.etheme
  47. BIN
      ShinyMetal/ShinyMetal.etheme.ja
  48. BIN
      ShinyMetal/ShinyMetal.etheme.pl
  49. 11
      ShinyMetal/autogen.sh
  50. 37
      ShinyMetal/configure.in
  51. 50
      ShinyMetal/etheme-ShinyMetal.spec

@ -0,0 +1,9 @@
autom4te.cache
aclocal.m4
Makefile.in
configure
config.log
config.status
Makefile
etheme-*.tar.gz
files

@ -0,0 +1 @@
See the ABOUT/MAIN theme file.

Binary file not shown.

Binary file not shown.

@ -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.

@ -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 *

@ -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 "$@"

@ -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
])

@ -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 <mej@eterm.org>
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/*

@ -0,0 +1,9 @@
autom4te.cache
aclocal.m4
Makefile.in
configure
config.log
config.status
Makefile
etheme-*.tar.gz
files

@ -0,0 +1 @@
See the ABOUT/MAIN theme file.

@ -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.

@ -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 *

@ -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 "$@"

@ -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
])

@ -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 <mej@eterm.org>
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/*

@ -0,0 +1,9 @@
autom4te.cache
aclocal.m4
Makefile.in
configure
config.log
config.status
Makefile
etheme-*.tar.gz
files

@ -0,0 +1 @@
See the ABOUT/MAIN theme file.

@ -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.

Binary file not shown.

Binary file not shown.

@ -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 *

@ -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 "$@"

@ -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
])

@ -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 <mej@eterm.org>
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/*

@ -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

@ -0,0 +1,9 @@
autom4te.cache
aclocal.m4
Makefile.in
configure
config.log
config.status
Makefile
etheme-*.tar.gz
files

@ -0,0 +1 @@
See the ABOUT/MAIN theme file.

@ -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.

@ -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 *

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -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 "$@"

@ -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
])

@ -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 <mej@eterm.org>
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/*
Loading…
Cancel
Save