[svn] r5831 - in trunk/rpms: . aeskulap gconfmm26 gnome-vfsmm26
libgnomemm26 mpeg4ip regexxer sudosh usbsink
packagers at lists.rpmforge.net
packagers at lists.rpmforge.net
Tue Sep 11 04:18:33 CEST 2007
Author: dag
Date: 2007-09-11 04:18:18 +0200 (Tue, 11 Sep 2007)
New Revision: 5831
Added:
trunk/rpms/gconfmm26/
trunk/rpms/gconfmm26/gconfmm26-2.8.1.spec
trunk/rpms/gconfmm26/gconfmm26.spec
trunk/rpms/gnome-vfsmm26/
trunk/rpms/gnome-vfsmm26/gnome-vfsmm-2.8.0.spec
trunk/rpms/gnome-vfsmm26/gnome-vfsmm.spec
trunk/rpms/libgnomemm26/
trunk/rpms/libgnomemm26/libgnomemm26-2.8.0.spec
trunk/rpms/libgnomemm26/libgnomemm26.spec
trunk/rpms/sudosh/sudosh-1.8.2.spec
trunk/rpms/usbsink/
trunk/rpms/usbsink/usbsink-0.3.1.spec
trunk/rpms/usbsink/usbsink.spec
Modified:
trunk/rpms/aeskulap/aeskulap.spec
trunk/rpms/mpeg4ip/mpeg4ip.spec
trunk/rpms/regexxer/regexxer.spec
trunk/rpms/sudosh/sudosh.spec
Log:
Updates
Modified: trunk/rpms/aeskulap/aeskulap.spec
===================================================================
--- trunk/rpms/aeskulap/aeskulap.spec 2007-09-10 12:42:02 UTC (rev 5830)
+++ trunk/rpms/aeskulap/aeskulap.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -32,12 +32,15 @@
%setup
%build
-%configure
+%configure \
+ --disable-schemas-install \
+ --disable-static
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
-%makeinstall imagesdir=%{buildroot}%{_datadir}/aeskulap/images
+#makeinstall imagesdir="%{buildroot}%{_datadir}/aeskulap/images"
+%{__make} install DESTDIR="%{buildroot}"
%find_lang %{name}
%clean
@@ -46,19 +49,17 @@
%files -f %{name}.lang
%defattr(-, root, root, 0755)
%doc ChangeLog COPYING README
+%config %{_sysconfdir}/gconf/schemas/aeskulap.schemas
%{_bindir}/aeskulap
-%{_libdir}/libdcm*.so
-%{_libdir}/libijg*.so
-%{_libdir}/libimagepool.*
-%{_libdir}/libofstd.so*
+%{_prefix}/lib/aeskulap/
+%{_libdir}/aeskulap/
+#%{_libdir}/libijg*.so
+#%{_libdir}/libimagepool.*
+#%{_libdir}/libofstd.so*
%{_datadir}/aeskulap/
%{_datadir}/applications/aeskulap.desktop
-%{_datadir}/gconf/schemas/aeskulap.schema
%changelog
-* Sat Apr 08 2006 Dries Verachtert <dries at ulyssis.org> - 0.2.1-1.2
-- Rebuild for Fedora Core 5.
-
* Sun Mar 12 2006 Dries Verachtert <dries at ulyssis.org> - 0.2.1-1
- Updated to release 0.2.1.
Added: trunk/rpms/gconfmm26/gconfmm26-2.8.1.spec
===================================================================
--- trunk/rpms/gconfmm26/gconfmm26-2.8.1.spec (rev 0)
+++ trunk/rpms/gconfmm26/gconfmm26-2.8.1.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,75 @@
+# $Id$
+# Authority: dag
+
+%define real_name gconfmm
+
+Summary: C++ wrapper for GConf2
+Name: gconfmm26
+Version: 2.8.1
+Release: 1
+License: LGPL
+Group: System Environment/Libraries
+URL: http://gtkmm.sourceforge.net/
+
+Source: http://ftp.gnome.org/pub/GNOME/sources/gconfmm/2.8/gconfmm-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: GConf2-devel >= 2.4.0
+BuildRequires: glibmm24-devel >= 2.4.0
+BuildRequires: gtkmm24-devel >= 2.4.0
+Requires: ldconfig
+
+%description
+This package provides a C++ interface for GConf2. It is a subpackage
+of the GTKmm project. The interface provides a convenient interface
+for C++ programmers to create Gnome GUIs with GTK+'s flexible
+object-oriented framework.
+
+%package devel
+Summary: Header files, libraries and development documentation for %{name}.
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: GConf2-devel
+Requires: glibmm24-devel
+Requires: gtkmm24-devel
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -n %{real_name}-%{version}
+
+%build
+%configure \
+ --disable-static \
+ --enable-shared
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS ChangeLog COPYING NEWS README INSTALL
+%{_libdir}/libgconfmm-2.6.so.*
+
+%files devel
+%defattr(-, root, root, 0755)
+%{_includedir}/gconfmm-2.6/
+%{_libdir}/gconfmm-2.6/
+%{_libdir}/libgconfmm-2.6.so
+%{_libdir}/pkgconfig/gconfmm-2.6.pc
+%exclude %{_libdir}/libgconfmm-2.6.la
+
+%changelog
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 2.8.1-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/gconfmm26/gconfmm26-2.8.1.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/gconfmm26/gconfmm26.spec
===================================================================
--- trunk/rpms/gconfmm26/gconfmm26.spec (rev 0)
+++ trunk/rpms/gconfmm26/gconfmm26.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,75 @@
+# $Id$
+# Authority: dag
+
+%define real_name gconfmm
+
+Summary: C++ wrapper for GConf2
+Name: gconfmm26
+Version: 2.18.0
+Release: 1
+License: LGPL
+Group: System Environment/Libraries
+URL: http://gtkmm.sourceforge.net/
+
+Source: http://ftp.gnome.org/pub/GNOME/sources/gconfmm/2.18/gconfmm-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: GConf2-devel >= 2.4.0
+BuildRequires: glibmm24-devel >= 2.6.4
+BuildRequires: gtkmm24-devel >= 2.4.0
+Requires: /sbin/ldconfig
+
+%description
+This package provides a C++ interface for GConf2. It is a subpackage
+of the GTKmm project. The interface provides a convenient interface
+for C++ programmers to create Gnome GUIs with GTK+'s flexible
+object-oriented framework.
+
+%package devel
+Summary: Header files, libraries and development documentation for %{name}.
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: GConf2-devel
+Requires: glibmm24-devel
+Requires: gtkmm24-devel
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -n %{real_name}-%{version}
+
+%build
+%configure \
+ --disable-static \
+ --enable-shared
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS ChangeLog COPYING NEWS README INSTALL
+%{_libdir}/libgconfmm-2.6.so.*
+
+%files devel
+%defattr(-, root, root, 0755)
+%{_includedir}/gconfmm-2.6/
+%{_libdir}/gconfmm-2.6/
+%{_libdir}/libgconfmm-2.6.so
+%{_libdir}/pkgconfig/gconfmm-2.6.pc
+%exclude %{_libdir}/libgconfmm-2.6.la
+
+%changelog
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 2.18.0-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/gconfmm26/gconfmm26.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/gnome-vfsmm26/gnome-vfsmm-2.8.0.spec
===================================================================
--- trunk/rpms/gnome-vfsmm26/gnome-vfsmm-2.8.0.spec (rev 0)
+++ trunk/rpms/gnome-vfsmm26/gnome-vfsmm-2.8.0.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,70 @@
+# $Id$
+# Authority: dag
+
+%define real_name gnome-vfsmm
+
+Summary: C++ wrapper for gnome-vfs
+Name: gnome-vfsmm26
+Version: 2.8.0
+Release: 1
+License: LGPL
+Group: System Environment/Libraries
+URL: http://gtkmm.sourceforge.net/
+
+Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-vfsmm/2.8/gnome-vfsmm-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: glibmm24-devel >= 2.4.0
+BuildRequires: gnome-vfs2-devel >= 2.8.1
+Requires: /sbin/ldconfig
+
+%description
+This package is part of the gnomemm project and provides a C++ interface for
+gnome-vfs.
+
+%package devel
+Summary: Header files, libraries and development documentation for %{name}.
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: glibmm24-devel
+Requires: gnome-vfs2-devel
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -n %{real_name}-%{version}
+#find -type f -regex '.*\.\(cc\|h\)' -perm +111 -exec chmod -x {} ';'
+
+%build
+%configure --disable-static
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS ChangeLog COPYING NEWS README TODO
+%{_libdir}/libgnomevfsmm-2.6.so.*
+
+%files devel
+%defattr(-, root, root, 0755)
+%{_includedir}/gnome-vfsmm-2.6/
+%{_libdir}/gnome-vfsmm-2.6/
+%{_libdir}/libgnomevfsmm-2.6.so
+%{_libdir}/pkgconfig/gnome-vfsmm-2.6.pc
+%exclude %{_libdir}/libgnomevfsmm-2.6.la
+
+%changelog
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 2.8.0-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/gnome-vfsmm26/gnome-vfsmm-2.8.0.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/gnome-vfsmm26/gnome-vfsmm.spec
===================================================================
--- trunk/rpms/gnome-vfsmm26/gnome-vfsmm.spec (rev 0)
+++ trunk/rpms/gnome-vfsmm26/gnome-vfsmm.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,69 @@
+# $Id$
+# Authority: dag
+
+%define real_name gnome-vfsmm
+
+Summary: C++ wrapper for gnome-vfs
+Name: gnome-vfsmm26
+Version: 2.18.0
+Release: 1
+License: LGPL
+Group: System Environment/Libraries
+URL: http://gtkmm.sourceforge.net/
+
+Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-vfsmm/2.18/gnome-vfsmm-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: glibmm24-devel >= 2.4.0
+BuildRequires: gnome-vfs2-devel >= 2.8.1
+Requires: /sbin/ldconfig
+
+%description
+This package is part of the gnomemm project and provides a C++ interface for
+gnome-vfs.
+
+%package devel
+Summary: Header files, libraries and development documentation for %{name}.
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: glibmm24-devel
+Requires: gnome-vfs2-devel
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -n %{real_name}-%{version}
+
+%build
+%configure --disable-static
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS ChangeLog COPYING NEWS README TODO
+%{_libdir}/libgnomevfsmm-2.6.so.*
+
+%files devel
+%defattr(-, root, root, 0755)
+%{_includedir}/gnome-vfsmm-2.6/
+%{_libdir}/gnome-vfsmm-2.6/
+%{_libdir}/libgnomevfsmm-2.6.so
+%{_libdir}/pkgconfig/gnome-vfsmm-2.6.pc
+%exclude %{_libdir}/libgnomevfsmm-2.6.la
+
+%changelog
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 2.18.0-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/gnome-vfsmm26/gnome-vfsmm.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/libgnomemm26/libgnomemm26-2.8.0.spec
===================================================================
--- trunk/rpms/libgnomemm26/libgnomemm26-2.8.0.spec (rev 0)
+++ trunk/rpms/libgnomemm26/libgnomemm26-2.8.0.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,74 @@
+# $Id$
+# Authority: dag
+
+%define real_name libgnomemm
+
+Summary: C++ wrapper for Gnome libs
+Name: libgnomemm26
+Version: 2.8.0
+Release: 1
+License: LGPL
+Group: System Environment/Libraries
+URL: http://gtkmm.sourceforge.net/
+
+Source: http://ftp.gnome.org/pub/GNOME/sources/libgnomemm/2.8/libgnomemm-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: gtkmm24-devel >= 2.4.0
+BuildRequires: libgnome-devel >= 2.6.0
+Requires: /sbin/ldconfig
+
+%description
+This package provides a C++ interface for GnomeUI. It is a subpackage
+of the Gtk-- project. The interface provides a convenient interface for C++
+programmers to create Gnome GUIs with GTK+'s flexible object-oriented
+framework.
+
+%package devel
+Summary: Header files, libraries and development documentation for %{name}.
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: gtkmm24-devel
+Requires: libgnome-devel
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -n %{real_name}-%{version}
+
+%build
+%configure \
+ --disable-static \
+ --enable-docs
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
+%{_libdir}/libgnomemm-2.6.so.*
+
+%files devel
+%defattr(-, root, root, -)
+%doc %{_datadir}/doc/*
+%{_includedir}/libgnomemm-2.6/
+%{_libdir}/libgnomemm-2.6/
+%{_libdir}/libgnomemm-2.6.so
+%{_libdir}/pkgconfig/libgnomemm-2.6.pc
+%exclude %{_libdir}/libgnomemm-2.6.la
+
+%changelog
+* Tue Sep 11 2007 Dag Wieers <dag at wieers.com> - 2.8.0-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/libgnomemm26/libgnomemm26-2.8.0.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Added: trunk/rpms/libgnomemm26/libgnomemm26.spec
===================================================================
--- trunk/rpms/libgnomemm26/libgnomemm26.spec (rev 0)
+++ trunk/rpms/libgnomemm26/libgnomemm26.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,74 @@
+# $Id$
+# Authority: dag
+
+%define real_name libgnomemm
+
+Summary: C++ wrapper for Gnome libs
+Name: libgnomemm26
+Version: 2.18.0
+Release: 1
+License: LGPL
+Group: System Environment/Libraries
+URL: http://gtkmm.sourceforge.net/
+
+Source: http://ftp.gnome.org/pub/GNOME/sources/libgnomemm/2.18/libgnomemm-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: gtkmm24-devel >= 2.8.0
+BuildRequires: libgnome-devel >= 2.6.0
+Requires: /sbin/ldconfig
+
+%description
+This package provides a C++ interface for GnomeUI. It is a subpackage
+of the Gtk-- project. The interface provides a convenient interface for C++
+programmers to create Gnome GUIs with GTK+'s flexible object-oriented
+framework.
+
+%package devel
+Summary: Header files, libraries and development documentation for %{name}.
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: gtkmm24-devel
+Requires: libgnome-devel
+
+%description devel
+This package contains the header files, static libraries and development
+documentation for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -n %{real_name}-%{version}
+
+%build
+%configure \
+ --disable-static \
+ --enable-docs
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
+%{_libdir}/libgnomemm-2.6.so.*
+
+%files devel
+%defattr(-, root, root, -)
+%doc %{_datadir}/doc/*
+%{_includedir}/libgnomemm-2.6/
+%{_libdir}/libgnomemm-2.6/
+%{_libdir}/libgnomemm-2.6.so
+%{_libdir}/pkgconfig/libgnomemm-2.6.pc
+%exclude %{_libdir}/libgnomemm-2.6.la
+
+%changelog
+* Tue Sep 11 2007 Dag Wieers <dag at wieers.com> - 2.18.0-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/libgnomemm26/libgnomemm26.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Modified: trunk/rpms/mpeg4ip/mpeg4ip.spec
===================================================================
--- trunk/rpms/mpeg4ip/mpeg4ip.spec 2007-09-10 12:42:02 UTC (rev 5830)
+++ trunk/rpms/mpeg4ip/mpeg4ip.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -26,7 +26,6 @@
integrate them together. This is a tool for streaming video and audio that
is standards-oriented and free from proprietary protocols and extensions.
-
%package devel
Summary: Header files, libraries and development documentation for %{name}.
Group: Development/Libraries
@@ -37,17 +36,15 @@
documentation for %{name}. If you like to develop programs using %{name},
you will need to install %{name}-devel.
-
%prep
%setup
%patch0 -p1 -b .nowerror
-
%build
sh bootstrap --disable-warns-as-err
%configure \
- --disable-warns-as-err \
- --disable-static
+ --disable-static \
+ --disable-warns-as-err
%{__make} %{?_smp_mflags}
@@ -58,41 +55,32 @@
# Remove all *.la files
find %{buildroot} -name '*.la' -exec rm -f {} \;
-
%clean
%{__rm} -rf %{buildroot}
-
%post -p /sbin/ldconfig
-
%postun -p /sbin/ldconfig
-
%files
%defattr(-, root, root, 0755)
%doc AUTHORS ChangeLog COPYING FEATURES.html README* TODO
+%{_mandir}/man1/*.1*
%{_bindir}/*
%{_libdir}/*.so.*
%{_libdir}/mp4player_plugin/
-%{_mandir}/man1/*
%files devel
%defattr(-, root, root, 0755)
+%doc %{_mandir}/man3/*.3*
+%doc %{_mandir}/manm/*
%{_includedir}/*.h
%{_libdir}/*.so
-%{_mandir}/man3/*
-%{_mandir}/manm/*
-
%changelog
* Tue Jul 11 2006 Matthias Saou <http://freshrpms.net/> 1.5.0.1-1
- Update to 1.5.0.1.
- Move man3 files to devel package.
- Add missing ldconfig calls.
-* Sat Apr 08 2006 Dries Verachtert <dries at ulyssis.org> - 1.2-1.2
-- Rebuild for Fedora Core 5.
-
* Sat Jan 01 2004 Dag Wieers <dag at wieers.com> - 1.2-1
- Initial package. (using DAR)
-
Modified: trunk/rpms/regexxer/regexxer.spec
===================================================================
--- trunk/rpms/regexxer/regexxer.spec 2007-09-10 12:42:02 UTC (rev 5830)
+++ trunk/rpms/regexxer/regexxer.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -13,7 +13,7 @@
Source: http://dl.sf.net/regexxer/regexxer-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-BuildRequires: glib2-devel >= 2.0.7, gtk2-devel >= 2.0
+BuildRequires: glib2-devel >= 2.12, gtk2-devel >= 2.0
BuildRequires: libsigc++-devel >= 1.2, gtkmm2-devel >= 2.0
BuildRequires: libglademm24-devel, pcre-devel, gettext
BuildRequires: pcre >= 3.9, gtkmm24-devel, gcc-c++, gconfmm26-devel
@@ -34,13 +34,19 @@
%install
%{__rm} -rf %{buildroot}
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"
-%makeinstall
+%{__make} install DESTDIR="%{buildroot}"
%find_lang %{name}
%post
export GCONF_CONFIG_SOURCE="$(gconftool-2 --get-default-source)"
gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/%{name}.schemas &>/dev/null
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+%postun
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
%clean
%{__rm} -rf %{buildroot}
@@ -50,7 +56,7 @@
%config %{_sysconfdir}/gconf/schemas/*.schemas
%{_bindir}/regexxer
%{_datadir}/applications/regexxer.desktop
-%{_datadir}/pixmaps/regexxer.png
+%{_datadir}/icons/hicolor/48x48/apps/regexxer.png
%{_datadir}/regexxer/
%changelog
Added: trunk/rpms/sudosh/sudosh-1.8.2.spec
===================================================================
--- trunk/rpms/sudosh/sudosh-1.8.2.spec (rev 0)
+++ trunk/rpms/sudosh/sudosh-1.8.2.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,101 @@
+# $Id$
+# Authority: dries
+# Upstream: Douglas Hanks
+
+Summary: Logged root shell that can be used for auditing
+Name: sudosh
+Version: 1.8.2
+Release: 2
+License: Open Software License
+Group: Applications/System
+URL: http://sourceforge.net/projects/sudosh/
+
+Source: http://sudosh.sourceforge.net/sudosh-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+Requires: sudo
+
+%description
+sudosh works directly with sudo to provide a fully functional shell that
+users may use to obtain full root access. Unlike providing a team of system
+administrators full root access through sudo, it guarantees that detailed
+logs are kept. It uses the script command in conjunction with a secure FIFO
+and comes with a utility to view sessions and drill down deeper and see the
+actual session output.
+
+%prep
+%setup
+
+### Disable installing as root
+%{__perl} -pi.orig -e 's| -o 0 -g 0 | |' src/Makefile.in
+
+%build
+%configure \
+ --program-prefix="%{?_program_prefix}"
+%{__make} %{?_smp_mflags}
+
+%install
+%{__rm} -rf %{buildroot}
+#{__make} install DESTDIR="%{buildroot}"
+%makeinstall
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS ChangeLog COPYING INSTALL NEWS README
+%doc %{_mandir}/man1/sudosh.1*
+%doc %{_mandir}/man5/sudosh.conf*
+%doc %{_mandir}/man8/sudosh-replay.8*
+%{_bindir}/sudosh
+%{_bindir}/sudosh-replay
+
+%defattr(0444, root, root, 0755)
+%config(noreplace) %{_sysconfdir}/sudosh.conf
+
+%changelog
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 1.8.2-2
+- Disabled root:root install.
+
+* Mon Jun 13 2005 Dries Verachtert <dries at ulyssis.org> - 1.8.2-1
+- Update to release 1.8.2.
+
+* Tue May 10 2005 Dag Wieers <dag at wieers.com> - 1.6.1-1
+- Update to release 1.6.1.
+
+* Sun May 08 2005 Dag Wieers <dag at wieers.com> - 1.6.0-1
+- Update to release 1.6.0.
+
+* Thu Mar 24 2005 Dag Wieers <dag at wieers.com> - 1.4.8-1
+- Update to release 1.4.8.
+
+* Sun Mar 13 2005 Dries Verachtert <dries at ulyssis.org> - 1.4.7-1
+- Update to release 1.4.7.
+
+* Fri Mar 11 2005 Dries Verachtert <dries at ulyssis.org> - 1.4.6-1
+- Update to release 1.4.6.
+
+* Wed Mar 09 2005 Dries Verachtert <dries at ulyssis.org> - 1.4.5-1
+- Update to release 1.4.5.
+
+* Sun Mar 06 2005 Dries Verachtert <dries at ulyssis.org> - 1.4.4-1
+- Update to release 1.4.4.
+
+* Tue Feb 15 2005 Dag Wieers <dag at wieers.com> - 1.4.2-1
+- Update to release 1.4.2.
+
+* Mon Nov 01 2004 Dries Verachtert <dries at ulyssis.org> - 1.4.1-1
+- Update to release 1.4.1.
+
+* Mon Oct 25 2004 Dries Verachtert <dries at ulyssis.org> - 1.3.4-1
+- Update to release 1.3.4.
+
+* Fri Oct 22 2004 Dries Verachtert <dries at ulyssis.org> - 1.3.2-1
+- Update to release 1.3.2.
+
+* Mon Oct 18 2004 Dries Verachtert <dries at ulyssis.org> - 1.2.2-1
+- Update to release 1.2.2.
+
+* Sat Oct 02 2004 Dries Verachtert <dries at ulyssis.org> - 0.7.0-1
+- Initial package.
Property changes on: trunk/rpms/sudosh/sudosh-1.8.2.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Modified: trunk/rpms/sudosh/sudosh.spec
===================================================================
--- trunk/rpms/sudosh/sudosh.spec 2007-09-10 12:42:02 UTC (rev 5830)
+++ trunk/rpms/sudosh/sudosh.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -26,6 +26,9 @@
%prep
%setup
+### Disable installing as root
+%{__perl} -pi.orig -e 's| -o 0 -g 0 | |' src/Makefile.in
+
%build
%configure \
--program-prefix="%{?_program_prefix}"
@@ -33,6 +36,7 @@
%install
%{__rm} -rf %{buildroot}
+#{__make} install DESTDIR="%{buildroot}"
%makeinstall
%clean
@@ -46,6 +50,8 @@
%doc %{_mandir}/man8/sudosh-replay.8*
%{_bindir}/sudosh
%{_bindir}/sudosh-replay
+
+%defattr(0444, root, root, 0755)
%config(noreplace) %{_sysconfdir}/sudosh.conf
%changelog
Added: trunk/rpms/usbsink/usbsink-0.3.1.spec
===================================================================
--- trunk/rpms/usbsink/usbsink-0.3.1.spec (rev 0)
+++ trunk/rpms/usbsink/usbsink-0.3.1.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,65 @@
+# $Id$
+# Authority: dag
+
+Summary: Program for automatic file synchronization over USB
+Name: usbsink
+Version: 0.3.1
+Release: 1
+License: GPL
+Group: Applications/Productivity
+URL: http://usbsink.sourceforge.net/
+
+Source: http://dl.sf.net/sourceforge/usbsink/usbsink-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: gettext, pcre-devel, gamin-devel, gnome-doc-utils, scrollkeeper
+BuildRequires: gtkmm24-devel, libglademm24-devel, gnome-vfsmm26-devel
+Requires: scrollkeeper
+
+%description
+USBSink is a GNOME program for automatic file synchronization with removable
+drives. In USBSink you define a task associated to a particular flash drive,
+and then have a complete automation of data transfers. With file monitoring
+and hardware detection features, the program is able to act and respond
+according to relevant events on the desktop.
+
+%prep
+%setup
+
+%build
+%configure --disable-scrollkeeper
+%{__make} %{?_smp_mflags}
+
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+%find_lang %{name}
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%post
+scrollkeeper-update -q -o %{_datadir}/omf/%{name} || :
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
+%postun
+scrollkeeper-update -q || :
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
+%files -f %{name}.lang
+%defattr(-, root, root, 0755)
+%doc ChangeLog COPYING COPYRIGHT NEWS README
+%{_bindir}/usbsink
+%{_datadir}/usbsink/
+%{_datadir}/applications/usbsink.desktop
+%{_datadir}/gnome/help/usbsink/
+%{_datadir}/icons/hicolor/48x48/apps/usbsink.png
+%{_datadir}/icons/hicolor/scalable/apps/usbsink.svg
+%{_datadir}/omf/usbsink/
+
+%changelog
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 0.3.1-1
+- Initial package. (using DAR)
Added: trunk/rpms/usbsink/usbsink.spec
===================================================================
--- trunk/rpms/usbsink/usbsink.spec (rev 0)
+++ trunk/rpms/usbsink/usbsink.spec 2007-09-11 02:18:18 UTC (rev 5831)
@@ -0,0 +1,69 @@
+# $Id$
+# Authority: dag
+
+Summary: Program for automatic file synchronization over USB
+Name: usbsink
+Version: 0.3.3
+Release: 1
+License: GPL
+Group: Applications/Productivity
+URL: http://usbsink.sourceforge.net/
+
+Source: http://dl.sf.net/sourceforge/usbsink/usbsink-%{version}.tar.gz
+Patch: usbsink-utils.patch
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: gettext, pcre-devel, gamin-devel, gnome-doc-utils, scrollkeeper
+BuildRequires: gtkmm24-devel >= 2.6, libglademm24-devel, gnome-vfsmm26-devel
+Requires: scrollkeeper
+
+%description
+USBSink is a GNOME program for automatic file synchronization with removable
+drives. In USBSink you define a task associated to a particular flash drive,
+and then have a complete automation of data transfers. With file monitoring
+and hardware detection features, the program is able to act and respond
+according to relevant events on the desktop.
+
+%prep
+%setup
+
+%build
+%configure --disable-scrollkeeper
+%{__make} %{?_smp_mflags}
+
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}"
+%find_lang %{name}
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%post
+scrollkeeper-update -q -o %{_datadir}/omf/%{name} || :
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
+%postun
+scrollkeeper-update -q || :
+touch --no-create %{_datadir}/icons/hicolor || :
+%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+
+%files -f %{name}.lang
+%defattr(-, root, root, 0755)
+%doc ChangeLog COPYING COPYRIGHT NEWS README
+%{_bindir}/usbsink
+%{_datadir}/usbsink/
+%{_datadir}/applications/usbsink.desktop
+%{_datadir}/gnome/help/usbsink/
+%{_datadir}/icons/hicolor/48x48/apps/usbsink.png
+%{_datadir}/icons/hicolor/scalable/apps/usbsink.svg
+%{_datadir}/omf/usbsink/
+
+%changelog
+* Tue Sep 11 2007 Dag Wieers <dag at wieers.com> - 0.3.3-1
+- Updated to release 0.3.3.
+
+* Mon Sep 10 2007 Dag Wieers <dag at wieers.com> - 0.3.2-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/usbsink/usbsink.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
More information about the svn-commits
mailing list