rpms/ecore/F-8 Makefile, 1.2, 1.3 ecore.spec, 1.6, 1.7 sources, 1.4, 1.5 dead.package, 1.1, NONE

Pavel Shevchuk (stalwart) fedora-extras-commits at redhat.com
Fri May 2 23:53:29 UTC 2008


Author: stalwart

Update of /cvs/pkgs/rpms/ecore/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv22429/F-8

Added Files:
	Makefile ecore.spec sources 
Removed Files:
	dead.package 
Log Message:
Resurrecting evas




Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	2 May 2008 23:52:54 -0000	1.3
@@ -0,0 +1,21 @@
+# Makefile for source rpm: ecore
+# $Id$
+NAME := ecore
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)


Index: ecore.spec
===================================================================
RCS file: ecore.spec
diff -N ecore.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ ecore.spec	2 May 2008 23:52:54 -0000	1.7
@@ -0,0 +1,91 @@
+Name:           ecore
+Version:        0.9.9.042
+Release:        2%{?dist}
+Summary:        Event/X abstraction layer
+
+Group:          System Environment/Libraries
+License:        MIT
+URL:            http://web.enlightenment.org/p.php?p=about/efl&l=en
+Source0:        http://download.enlightenment.org/snapshots/2008-01-25/%{name}-%{version}.tar.bz2
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires:  eet-devel evas-devel libX11-devel libXext-devel 
+BuildRequires:  libXcursor-devel libXrender-devel libxcb-devel 
+BuildRequires:  libXinerama-devel libXrandr-devel libXScrnSaver-devel 
+BuildRequires:  libXcomposite-devel libXfixes-devel libXdamage-devel 
+BuildRequires:  xorg-x11-proto-devel directfb-devel SDL-devel 
+BuildRequires:  openssl-devel libcurl-devel chrpath doxygen
+
+%description
+Ecore is the event/X abstraction layer that makes doing selections,
+Xdnd, general X stuff, event loops, timeouts and idle handlers fast,
+optimized, and convenient.
+
+%package        devel
+Summary:        Development files for %{name}
+Group:          Development/Libraries
+Requires:       %{name} = %{version}-%{release} directfb-devel evas-devel
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+
+%prep
+%setup -q
+
+
+%build
+%configure --disable-static --enable-ecore-directfb --enable-ecore-fb --enable-ecore-sdl --enable-ecore-desktop
+make %{?_smp_mflags}
+sed -i -e 's/$projectname Documentation Generated: $datetime/$projectname Documentation/' doc/foot.html
+./gendoc
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
+chrpath --delete $RPM_BUILD_ROOT%{_bindir}/%{name}_config
+chrpath --delete $RPM_BUILD_ROOT%{_libdir}/lib%{name}_*.so*
+find $RPM_BUILD_ROOT -name '*.la' -delete
+install -d -m 755 $RPM_BUILD_ROOT%{_mandir}/man3
+# remove unfinished manpages
+find doc/man/man3 -size -100c -delete
+rm -f doc/man/man3/todo.3 # remove todo
+install -p -m 644 doc/man/man3/* $RPM_BUILD_ROOT%{_mandir}/man3
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING COPYING-PLAIN README
+%{_bindir}/%{name}_config
+%{_libdir}/libecore.so.*
+%{_libdir}/libecore_*.so.*
+
+
+%files devel
+%defattr(-,root,root,-)
+%doc doc/html
+%{_mandir}/man3/*
+%{_includedir}/*
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/*.pc
+
+
+%changelog
+* Fri May 02 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 0.9.9.042-2
+- Fixed ecore-devel dependencies
+- Fixed timestamp of source tarball
+- Preserve timestamps of installed files
+- Added html docs
+
+* Mon Apr 14 2008 Pavel "Stalwart" Shevchuk <stlwrt at gmail.com> - 0.9.9.042-1
+- Initial specfile for Ecore


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	2 May 2008 23:52:54 -0000	1.5
@@ -0,0 +1 @@
+a66df2b5f0b1a6abc47bb50bf2b26846  ecore-0.9.9.042.tar.bz2


--- dead.package DELETED ---




More information about the scm-commits mailing list