summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2004-05-03 21:15:48 +0000
committerSeemant Kulleen <seemant@gentoo.org>2004-05-03 21:15:48 +0000
commit604d0bcf5505efc4025de3b8c31193cc6094ddb1 (patch)
tree282b3b84590b3886d300f95db78aa51e242342cd /sys-apps/utempter/files
parentChanges to catch common ebuild problems (diff)
downloadgentoo-2-604d0bcf5505efc4025de3b8c31193cc6094ddb1.tar.gz
gentoo-2-604d0bcf5505efc4025de3b8c31193cc6094ddb1.tar.bz2
gentoo-2-604d0bcf5505efc4025de3b8c31193cc6094ddb1.zip
version bump, for security fix in bug #49536 by gen2daniel <gen2daniel@gmx.net>
Diffstat (limited to 'sys-apps/utempter/files')
-rw-r--r--sys-apps/utempter/files/digest-utempter-0.5.5.41
-rw-r--r--sys-apps/utempter/files/utempter-0.5.5.4-soname-makefile-fix.patch23
2 files changed, 24 insertions, 0 deletions
diff --git a/sys-apps/utempter/files/digest-utempter-0.5.5.4 b/sys-apps/utempter/files/digest-utempter-0.5.5.4
new file mode 100644
index 000000000000..f821f14a0c3d
--- /dev/null
+++ b/sys-apps/utempter/files/digest-utempter-0.5.5.4
@@ -0,0 +1 @@
+MD5 4fb1fd3dcc99c4309796478b80755084 utempter-0.5.5-4.src.rpm 21067
diff --git a/sys-apps/utempter/files/utempter-0.5.5.4-soname-makefile-fix.patch b/sys-apps/utempter/files/utempter-0.5.5.4-soname-makefile-fix.patch
new file mode 100644
index 000000000000..ae50456a987f
--- /dev/null
+++ b/sys-apps/utempter/files/utempter-0.5.5.4-soname-makefile-fix.patch
@@ -0,0 +1,23 @@
+diff -urN utempter-0.5.3.orig/Makefile utempter-0.5.3/Makefile
+--- utempter-0.5.3.orig/Makefile 2004-04-07 23:02:39.000000000 -0400
++++ utempter-0.5.3/Makefile 2004-04-07 23:04:33.000000000 -0400
+@@ -5,6 +5,10 @@
+ CVSROOT=$(shell cat CVS/Root)
+ # major number of the .so lib
+ SOMAJOR = 0
++# minor number of the .so lib
++SOMINOR = 5
++# major number of the .so lib
++SOMICRO = 3
+
+ SHAREDLIB = lib$(NAME).so
+ SONAME = $(SHAREDLIB).$(SOMAJOR)
+@@ -29,6 +33,8 @@
+ install -m 644 utempter.h $(RPM_BUILD_ROOT)/usr/include
+ install -m 644 $(SHAREDLIB) $(RPM_BUILD_ROOT)/$(LIBDIR)/$(SHAREDLIB).$(VERSION)
+ ln -sf $(SHAREDLIB).$(VERSION) $(RPM_BUILD_ROOT)/$(LIBDIR)/$(SHAREDLIB)
++ ln -sf $(SHAREDLIB).$(VERSION) $(RPM_BUILD_ROOT)/$(LIBDIR)/$(SHAREDLIB).$(SOMAJOR).$(SOMINOR)
++ ln -sf $(SHAREDLIB).$(VERSION) $(RPM_BUILD_ROOT)/$(LIBDIR)/$(SHAREDLIB).$(SOMAJOR)
+
+ $(SHAREDLIB): utmpintf.os
+ $(CC) -o $@ -shared -Wl,-soname,$(SONAME) $^ -lc