diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-04-17 02:32:31 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-17 02:32:31 +0800 |
commit | 8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7 (patch) | |
tree | 7ad58dbe95cc9af25fbd498b0656e305c185b6ef /epiphany.spec | |
parent | 3d8d6c2a763f3f8cdb69719763ebe3cbeeaab789 (diff) | |
download | gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.tar gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.tar.gz gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.tar.bz2 gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.tar.lz gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.tar.xz gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.tar.zst gsoc2013-epiphany-8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7.zip |
New file. Rpm spec.
2003-04-16 Jeremy Katz <katzj@redhat.com>
* epiphany.spec: New file. Rpm spec.
Diffstat (limited to 'epiphany.spec')
-rw-r--r-- | epiphany.spec | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/epiphany.spec b/epiphany.spec new file mode 100644 index 000000000..966acef40 --- /dev/null +++ b/epiphany.spec @@ -0,0 +1,78 @@ +Summary: GNOME web browser based on the Mozilla rendering engine +Name: epiphany +Version: 0.5.0 +Release: 2 +License: GPL +Group: Applications/Internet +URL: http://epiphany.mozdev.org +Source0: http://downloads.mozdev.org/epiphany/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot +Prereq: scrollkeeper, GConf2 +Requires: mozilla = 35:1.3-0_rh8_gtk2 +BuildRequires: mozilla-devel +BuildRequires: gtk2-devel +BuildRequires: libbonoboui-devel >= 2.1.1 +BuildRequires: scrollkeeper >= 0.1.4 +BuildRequires: libxml2-devel, libgnomeui-devel, libglade2-devel +BuildRequires: gnome-vfs2-devel, GConf2-devel, ORBit2-devel + +%description +epiphany is a simple GNOME web browser based on the Mozilla rendering +engine + +%prep +%setup -q + +%build +%configure --enable-nautilus-view=no +make + +%install +rm -rf $RPM_BUILD_ROOT +export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 +%makeinstall +unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL + +%find_lang %{name}-2.0 + +rm -rf $RPM_BUILD_ROOT/var/scrollkeeper/ + + +%post +export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` +SCHEMAS="epiphany.schemas" +for S in $SCHEMAS; do + gconftool-2 --makefile-install-rule /etc/gconf/schemas/$S > /dev/null +done +scrollkeeper-update + +%postun +scrollkeper-update + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f %{name}-2.0.lang +%defattr(-,root,root,-) +%doc +%{_sysconfdir}/gconf/schemas/epiphany.schemas +%{_bindir}/epiphany +%{_bindir}/epiphany-bin +%{_libdir}/bonobo/servers/* +%{_datadir}/applications/*.desktop +%{_datadir}/epiphany +%{_datadir}/gnome/help/epiphany +%{_datadir}/omf/epiphany +%{_datadir}/pixmaps/*png + + + +%changelog +* Mon Apr 14 2003 Jeremy Katz <katzj@redhat.com> 0.5.0-2 +- add some buildrequires, prereq GConf2 +- disable building nautilus view + +* Sun Apr 13 2003 Jeremy Katz <katzj@redhat.com> +- Initial build. + + |