commit
e871a1dede
51 changed files with 640 additions and 0 deletions
@ -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. |
Binary file not shown.
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-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…
Reference in new issue