gjs/gjs.spec
Vincent Untz 3c5e0c8cf8 Accepting request 43792 from home:vuntz:branches:GNOME:Factory
Copy from home:vuntz:branches:GNOME:Factory/gjs via accept of submit request 43792 revision 2.
Request was accepted with message:
ok

OBS-URL: https://build.opensuse.org/request/show/43792
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gjs?expand=0&rev=16
2010-07-23 08:48:00 +00:00

125 lines
3.5 KiB
RPMSpec

#
# spec file for package gjs (Version 0.7.1)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%if 0%{suse_version} > 1120
%define xulrunner_ver 192
%else
%if 0%{suse_version} > 1110
%define xulrunner_ver 191
%else
%define xulrunner_ver 190
%endif
%endif
Name: gjs
Version: 0.7.1
# FIXME: find out if tapsets should really be in devel package or in main package
Release: 1
License: MIT License (or similar)
Summary: JavaScript bindings based on gobject-introspection and Mozilla
Group: Development/Libraries/GNOME
Source: %{name}-%{version}.tar.bz2
# Files missing from tarball, see bgo#625090
Source1: gjs_gi_probes.d
Source2: gjs.stp.in
BuildRequires: cairo-devel
BuildRequires: dbus-1-glib-devel
BuildRequires: gcc-c++
BuildRequires: gobject-introspection-devel
BuildRequires: mozilla-xulrunner%{xulrunner_ver}-devel
BuildRequires: python
BuildRequires: readline-devel
BuildRequires: systemtap-sdt-devel
Requires: libgjs-0 = %{version}
Recommends: gir-repository
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This module contains JavaScript bindings based on gobject-introspection and the
Mozilla SpiderMonkey JavaScript engine.
%package -n libgjs-0
License: MIT License (or similar)
Summary: JavaScript bindings based on gobject-introspection and Mozilla
Group: Development/Libraries/GNOME
%description -n libgjs-0
This module contains JavaScript bindings based on gobject-introspection and the
Mozilla SpiderMonkey JavaScript engine.
%package -n libgjs-devel
License: MIT License (or similar)
Summary: JavaScript bindings based on gobject-introspection and Mozilla
Group: Development/Libraries/GNOME
Requires: dbus-1-devel
Requires: gobject-introspection-devel
Requires: libgjs-0 = %{version}
Requires: mozilla-xulrunner%{xulrunner_ver}-devel
# Just a helper provides
Provides: gjs-devel
%description -n libgjs-devel
This module contains JavaScript bindings based on gobject-introspection and the
Mozilla SpiderMonkey JavaScript engine.
%prep
%setup -q
test ! -f gi/gjs_gi_probes.d
cp %{S:1} gi/gjs_gi_probes.d
test ! -f gjs/gjs.stp.in
cp %{S:2} gjs/gjs.stp.in
%build
%configure \
--disable-static \
--enable-systemtap
%__make %{?jobs:-j%jobs}
%install
%makeinstall
find %{buildroot} -type f -name "*.la" -delete -print
# fix installation of systemtap files
mv %{buildroot}%{buildroot}%{_datadir}/systemtap %{buildroot}%{_datadir}/systemtap
%clean
rm -rf %{buildroot}
%post -n libgjs-0 -p /sbin/ldconfig
%postun -n libgjs-0 -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_bindir}/*
%files -n libgjs-0
%defattr(-,root,root)
%doc COPYING NEWS README
%{_datadir}/gjs-1.0
%{_libdir}/*.so.*
%{_libdir}/gjs-1.0
%files -n libgjs-devel
%defattr(-,root,root)
%{_includedir}/*
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%{_datadir}/systemtap/tapset/*.stp
%changelog