rpms/exaile/F-7 .cvsignore, 1.7, 1.8 exaile-makefile.patch, 1.1, 1.2 exaile.spec, 1.13, 1.14 sources, 1.7, 1.8

Deji Akingunola (deji) fedora-extras-commits at redhat.com
Thu Apr 3 17:23:21 UTC 2008


Author: deji

Update of /cvs/extras/rpms/exaile/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv26172

Modified Files:
	.cvsignore exaile-makefile.patch exaile.spec sources 
Log Message:
* Thu Apr 03 2008 Deji Akingunola <dakingun at gmail.com> - 0.2.13-1
- Update to 0.2.13



Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/exaile/F-7/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore	29 Nov 2007 15:54:49 -0000	1.7
+++ .cvsignore	3 Apr 2008 17:22:42 -0000	1.8
@@ -1 +1 @@
-exaile_0.2.11.1.tar.gz
+exaile_0.2.13.tar.gz

exaile-makefile.patch:

Index: exaile-makefile.patch
===================================================================
RCS file: /cvs/extras/rpms/exaile/F-7/exaile-makefile.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- exaile-makefile.patch	16 Nov 2007 19:24:36 -0000	1.1
+++ exaile-makefile.patch	3 Apr 2008 17:22:42 -0000	1.2
@@ -1,5 +1,5 @@
---- Makefile	2007-10-02 12:25:55.000000000 -0400
-+++ Makefile-new	2007-10-22 23:41:13.000000000 -0400
+--- Makefile	2008-02-28 11:17:05.000000000 -0500
++++ Makefile.new	2008-02-28 11:29:09.000000000 -0500
 @@ -18,14 +18,14 @@
  
  make-install-dirs: 
@@ -63,16 +63,17 @@
  	install -m 644 xl/plugins/*.glade $(DESTDIR)$(PREFIX)/share/exaile/xl/plugins
  	install -m 644 images/largeicon.png \
  	$(DESTDIR)$(PREFIX)/share/pixmaps/exaile.png
-@@ -71,7 +71,7 @@
+@@ -69,7 +69,8 @@
+ 	  /bin/echo -e \
+ 	    "#!/bin/sh\n" \
  	    "cd $(PREFIX)/share/exaile\n" \
- 	    "export LD_LIBRARY_PATH=\$$LD_LIBRARY_PATH:$(FIREFOX)\n" \
- 		"export MOZILLA_FIVE_HOME=$(FIREFOX)\n" \
 -	    "exec python $(PREFIX)$(LIBDIR)/exaile/exaile.py \"\$$@\"" \
++	    "export MOZILLA_FIVE_HOME=\`cat $(GRE_CONF_PATH) | grep GRE_PATH | sed -e 's/GRE_PATH=//'\`\n" \
 +	    "exec python $(LIBDIR)/exaile/exaile.py \"\$$@\"" \
  	    > exaile && \
  	  chmod 755 exaile
  	for f in `find po -name exaile.mo` ; do \
-@@ -91,7 +91,7 @@
+@@ -92,7 +93,7 @@
  
  uninstall:
  	rm -rf $(DESTDIR)$(PREFIX)/share/exaile


Index: exaile.spec
===================================================================
RCS file: /cvs/extras/rpms/exaile/F-7/exaile.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- exaile.spec	29 Nov 2007 16:16:28 -0000	1.13
+++ exaile.spec	3 Apr 2008 17:22:42 -0000	1.14
@@ -1,8 +1,6 @@
-%define firefox_lib %(pkg-config --variable=libdir firefox-gtkmozembed)
-
 Summary:	A music player
 Name:		exaile
-Version:	0.2.11.1
+Version:	0.2.13
 Release:	1%{?dist}
 Group:		Applications/Multimedia
 # It actually says GPL 1 or later version; a couple of files includes the Artistic license 
@@ -16,7 +14,7 @@
 BuildRequires:	gtk2-devel
 BuildRequires:	desktop-file-utils
 BuildRequires:	pkgconfig
-BuildRequires:	gecko-devel
+#BuildRequires:	gecko-devel
 BuildRequires:	gettext intltool perl(XML::Parser)
 
 Requires:	python-mutagen >= 1.8
@@ -35,6 +33,12 @@
 Requires:	python-gpod
 %endif
 
+%ifarch x86_64 ia64 ppc64 s390x
+%define gre_conf %{_sysconfdir}/gre.d/gre64.conf
+%else
+%define gre_conf %{_sysconfdir}/gre.d/gre.conf
+%endif 
+
 %description
 Exaile is a media player aiming to be similar to KDE's AmaroK, but for GTK+.
 It incorporates many of the cool things from AmaroK (and other media players)
@@ -62,15 +66,13 @@
 rm -rf %{buildroot}
 
 make install PREFIX=%{_prefix} LIBDIR=%{_libdir}	\
-	FIREFOX=%{firefox_lib} DESTDIR=%{buildroot}
+	GRE_CONF_PATH=%{gre_conf} DESTDIR=%{buildroot}
 
 desktop-file-install --delete-original			\
 	--vendor="fedora"				\
 	--dir=%{buildroot}%{_datadir}/applications	\
 	%{buildroot}%{_datadir}/applications/%{name}.desktop
 
-chmod 755 %{buildroot}%{_bindir}/exaile
-
 chmod 755 %{buildroot}%{_libdir}/exaile/mmkeys.so
 
 %find_lang %{name}
@@ -80,7 +82,7 @@
 
 %files -f %{name}.lang
 %defattr(-,root,root,-)
-%doc changelog COPYING TODO
+%doc changelog COPYING
 %{_bindir}/exaile
 %{_libdir}/exaile/
 %{_datadir}/applications/*.desktop
@@ -89,6 +91,9 @@
 %{_mandir}/man1/exaile*.*
 
 %changelog
+* Thu Apr 03 2008 Deji Akingunola <dakingun at gmail.com> - 0.2.13-1
+- Update to 0.2.13
+
 * Thu Nov 29 2007 Deji Akingunola <dakingun at gmail.com> - 0.2.11.1-1
 - Update to 0.2.11.1 that removes bogus cruft from 0.2.11 source tarball
 - Rebuild for firefox-2.0.0.10


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/exaile/F-7/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources	29 Nov 2007 15:54:49 -0000	1.7
+++ sources	3 Apr 2008 17:22:42 -0000	1.8
@@ -1 +1 @@
-22faad66c2baed6b0180925ea1323961  exaile_0.2.11.1.tar.gz
+3caf9381691274a9de1fda203c43fb4f  exaile_0.2.13.tar.gz




More information about the scm-commits mailing list