Thu Jul 8 13:45:01 2004 Michael Jennings (mej)

Less cleaning than usual!  Nym!
----------------------------------------------------------------------


SVN revision: 10744
This commit is contained in:
Michael Jennings 2004-07-08 17:45:38 +00:00
parent cd7fe6b936
commit 771ef088c0
1 changed files with 23 additions and 17 deletions

View File

@ -1,4 +1,4 @@
Summary: edje
Summary: Complex Graphical Design/Layout Engine
Name: edje
Version: 0.5.0
Release: 1
@ -12,7 +12,20 @@ Requires: libjpeg zlib ecore evas eet imlib2
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Edje is a Graphical Design Library
Edje is a complex graphical design and layout engine. It provides a
mechanism for allowing configuration data to define visual elements in
terms of layout, behavior, and appearance. Edje allows for multiple
collections of layouts in one file, allowing a complete set of images,
animations, and controls to exist as a unified whole.
Edje separates the arrangement, appearance, and behavior logic into
distinct independent entities. This allows visual objects to share
image data and configuration information without requiring them to do
so. This separation and simplistic event driven style of programming
can produce almost any look and feel one could want for basic visual
elements. Anything more complex is likely the domain of an application
or widget set that may use Edje as a conveneient way of being able to
configure parts of the display.
%package devel
Summary: Edje headers, static libraries, documentation and test programs
@ -26,20 +39,12 @@ Headers, static libraries, test programs and documentation for Eet
%setup -q
%build
%{configure}
if [ "$SMP" != "" ]; then
(%{__make} "MAKE=make -k -j $SMP"; exit 0)
%{__make}
else
%{__make}
fi
%{configure} --prefix=%{_prefix}
%{__make} %{?_smp_mflags} %{?mflags}
%install
%{__make} DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install
test -x `which doxygen` && sh gendoc || :
%post
/sbin/ldconfig || :
@ -47,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT
%postun
/sbin/ldconfig || :
%clean
test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc AUTHORS COPYING README
@ -59,7 +67,7 @@ rm -rf $RPM_BUILD_ROOT
%files devel
%defattr(-, root, root)
%doc edje_docs.tar.gz
%doc doc/html
%{_libdir}/libedje.a
%{_libdir}/libedje.la
%{_libdir}/libedje_edit.a
@ -68,5 +76,3 @@ rm -rf $RPM_BUILD_ROOT
%{_includedir}/Edje*
%changelog
* Sat Jun 23 2001 The Rasterman <raster@rasterman.com>
- Created spec file