[svn] r5069 - in trunk/rpms: . motion pam_shield perl-Module-Build
transcode vlc
packagers at lists.rpmforge.net
packagers at lists.rpmforge.net
Sun Jan 14 13:40:18 CET 2007
Author: dag
Date: 2007-01-14 13:40:16 +0100 (Sun, 14 Jan 2007)
New Revision: 5069
Added:
trunk/rpms/pam_shield/
trunk/rpms/pam_shield/pam_shield-0.9.0-makefile.patch
trunk/rpms/pam_shield/pam_shield.spec
Modified:
trunk/rpms/motion/motion.spec
trunk/rpms/perl-Module-Build/perl-Module-Build.spec
trunk/rpms/transcode/transcode.spec
trunk/rpms/vlc/vlc.spec
Log:
Updates
Modified: trunk/rpms/motion/motion.spec
===================================================================
--- trunk/rpms/motion/motion.spec 2007-01-13 20:06:26 UTC (rev 5068)
+++ trunk/rpms/motion/motion.spec 2007-01-14 12:40:16 UTC (rev 5069)
@@ -4,10 +4,10 @@
Summary: Video-surveilance system
Name: motion
Version: 3.2.7
-Release: 1
+Release: 2
License: GPL
Group: Applications/Multimedia
-URL: http://motion.sourceforge.net/
+URL: http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome
Source: http://dl.sf.net/motion/motion-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
@@ -55,6 +55,9 @@
%{_bindir}/motion
%changelog
+* Thu Jan 11 2007 Dag Wieers <dag at wieers.com> - 3.2.7-1
+- Rebuild against newer ffmpeg.
+
* Mon Oct 23 2006 Dag Wieers <dag at wieers.com> - 3.2.7-1
- Updated to release 3.2.7.
Added: trunk/rpms/pam_shield/pam_shield-0.9.0-makefile.patch
===================================================================
--- trunk/rpms/pam_shield/pam_shield-0.9.0-makefile.patch (rev 0)
+++ trunk/rpms/pam_shield/pam_shield-0.9.0-makefile.patch 2007-01-14 12:40:16 UTC (rev 5069)
@@ -0,0 +1,50 @@
+--- Makefile.orig 2007-01-14 13:25:53.401972464 +0100
++++ Makefile 2007-01-14 13:29:22.765144424 +0100
+@@ -2,10 +2,15 @@
+ # pam_shield WJ106
+ #
+
+-bindir=/usr/sbin
+-confdir=/etc/security
+-pamdir=/lib/security
+-crondir=/etc/cron.daily
++prefix=/usr
++bindir=$(prefix)/sbin
++sysconfdir=/etc
++confdir=$(sysconfdir)/security
++libdir=/lib
++pamdir=$(libdir)/security
++crondir=$(sysconfdir)/cron.daily
++
++DESTDIR=
+
+ CC = gcc
+ LD = ld
+@@ -38,17 +43,17 @@
+ $(CC) -M pam_shield.c shield_purge.c > .depend
+
+ install: all
+- $(INSTALL) -s -o root -g root -m 644 pam_shield.so ${pamdir}
+- $(INSTALL) -o root -g root -m 755 -T pam_shield.cron ${crondir}/pam-shield
+- $(INSTALL) -o root -g root -m 755 shield-trigger.sh ${bindir}
+- $(INSTALL) -s -o root -g root -m 755 shield-purge ${bindir}
+- $(INSTALL) -o root -g root -m 644 shield.conf ${confdir}
++ $(INSTALL) -Dp -m0644 pam_shield.so $(DESTDIR)$(pamdir)/pam_shield.so
++ $(INSTALL) -Dp -m0755 pam_shield.cron $(DESTDIR)$(crondir)/pam-shield
++ $(INSTALL) -Dp -m0755 shield-trigger.sh $(DESTDIR)$(bindir)/shield-trigger.sh
++ $(INSTALL) -Dp -m0755 shield-purge $(DESTDIR)$(bindir)/shield-purge
++ $(INSTALL) -Dp -m0644 shield.conf $(DESTDIR)$(confdir)/shield.conf
+
+ uninstall:
+- $(RM) ${pamdir}/pam_shield.so
+- $(RM) ${crondir}/pam-shield
+- $(RM) ${bindir}/shield-trigger.sh
+- $(RM) ${bindir}/shield-purge
+- $(RM) ${confdir}/shield.conf
++ $(RM) $(pamdir)/pam_shield.so
++ $(RM) $(crondir)/pam-shield
++ $(RM) $(bindir)/shield-trigger.sh
++ $(RM) $(bindir)/shield-purge
++ $(RM) $(confdir)/shield.conf
+
+ # EOB
Added: trunk/rpms/pam_shield/pam_shield.spec
===================================================================
--- trunk/rpms/pam_shield/pam_shield.spec (rev 0)
+++ trunk/rpms/pam_shield/pam_shield.spec 2007-01-14 12:40:16 UTC (rev 5069)
@@ -0,0 +1,52 @@
+# $Id$
+# Authority: dag
+
+%define _libdir /%{_lib}
+
+Summary: PAM module that uses failed login count to lock system
+Name: pam_shield
+Version: 0.9.0
+Release: 1
+License: GPL
+Group: Applications/System
+URL: http://www.ka.sara.nl/home/walter/pam_shield/index.html
+
+Source: http://www.ka.sara.nl/home/walter/pam_shield/pam_shield-%{version}.tar.gz
+Patch: pam_shield-0.9.0-makefile.patch
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildRequires: pam-devel
+Requires: pam
+
+%description
+pam_shield is a PAM module that uses iptables to lock out script kiddies
+that probe your computer for open logins and/or easy guessable passwords.
+pam_shield is meant as an aid to protect public computers on the open internet.
+
+%prep
+%setup
+%patch0 -p0
+
+%build
+%{__make} CFLAGS="%{optflags} -fPIC"
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install DESTDIR="%{buildroot}" libdir="%{_libdir}"
+
+%clean
+%{__rm} -rf %{buildroot}
+
+%files
+%defattr(-, root, root, 0755)
+%doc INSTALL GPL README
+%config(noreplace) %{_sysconfdir}/cron.daily/pam-shield
+%config(noreplace) %{_sysconfdir}/security/shield.conf
+%dir %{_libdir}/security/
+%{_libdir}/security/pam_shield.so
+%{_sbindir}/shield-purge
+%{_sbindir}/shield-trigger.sh
+
+%changelog
+* Sun Jan 14 2007 Dag Wieers <dag at wieers.com> - 0.9.0-1
+- Initial package. (using DAR)
Property changes on: trunk/rpms/pam_shield/pam_shield.spec
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ native
Modified: trunk/rpms/perl-Module-Build/perl-Module-Build.spec
===================================================================
--- trunk/rpms/perl-Module-Build/perl-Module-Build.spec 2007-01-13 20:06:26 UTC (rev 5068)
+++ trunk/rpms/perl-Module-Build/perl-Module-Build.spec 2007-01-14 12:40:16 UTC (rev 5069)
@@ -12,14 +12,15 @@
Summary: System for building perl modules
Name: perl-Module-Build
Version: 0.2806
-Release: 1
+Release: 2
License: Artistic or GPL
Group: Applications/CPAN
URL: http://search.cpan.org/dist/Module-Build/
Source: http://www.cpan.org/modules/by-module/Module/Module-Build-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-BuildRequires: perl(Archive::Tar)
+
+BuildRequires: perl(Archive::Tar), perl(ExtUtils::CBuilder)
BuildArch: noarch
%description
@@ -58,12 +59,12 @@
%{perl_vendorlib}/Module/Build.pm
%changelog
+* Wed Jan 03 2007 Dries Verachtert <dries at ulyssis.org> - 0.2806-2
+- Rebuild against perl(ExtUtils::CBuilder).
+
* Wed Jan 03 2007 Dries Verachtert <dries at ulyssis.org> - 0.2806-1
- Updated to release 0.2806.
-* Wed Mar 22 2006 Dries Verachtert <dries at ulyssis.org> - 0.2611-1.2
-- Rebuild for Fedora Core 5.
-
* Sat Nov 5 2005 Dries Verachtert <dries at ulyssis.org> - 0.2611-1
- Updated to release 0.2611.
Modified: trunk/rpms/transcode/transcode.spec
===================================================================
--- trunk/rpms/transcode/transcode.spec 2007-01-13 20:06:26 UTC (rev 5068)
+++ trunk/rpms/transcode/transcode.spec 2007-01-14 12:40:16 UTC (rev 5069)
@@ -29,7 +29,7 @@
Summary: Linux video stream processing utility
Name: transcode
Version: 1.0.2
-Release: 11%{?prever:.%{prever}}
+Release: 12%{?prever:.%{prever}}
License: GPL
Group: Applications/Multimedia
URL: http://www.transcoding.org/
@@ -142,6 +142,9 @@
%changelog
+* Thu Jan 11 2007 Dag Wieers <dag at wieers.com> - 1.0.2-12
+- Rebuild against newer ffmpeg and mjpegtools.
+
* Tue Sep 19 2006 Matthias Saou <http://freshrpms.net/> 1.0.2-11
- Add patch for recent ffmpeg (libavcodec) versions detection.
Modified: trunk/rpms/vlc/vlc.spec
===================================================================
--- trunk/rpms/vlc/vlc.spec 2007-01-13 20:06:26 UTC (rev 5068)
+++ trunk/rpms/vlc/vlc.spec 2007-01-14 12:40:16 UTC (rev 5069)
@@ -235,6 +235,8 @@
export CFLAGS="%{optflags} -maltivec -mabi=altivec"
%endif
+### Workaround to make -lX11 work on 64bit
+export LDFLAGS="-L/usr/X11R6/%{_lib}"
%configure \
--enable-release \
%{!?_without_dvdread:--enable-dvdread} \
More information about the svn-commits
mailing list