diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-11-06 16:26:02 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-11-13 16:16:41 -0500 |
commit | 9ab5aa49e00fb66ceeadb1f9a0d1256e7d62e09d (patch) | |
tree | a778f81e7a1d0f98252dc169297bdced2d463340 /app-mobilephone | |
parent | app-eselect/eselect-lua: remove unused file (diff) | |
download | gentoo-9ab5aa49e00fb66ceeadb1f9a0d1256e7d62e09d.tar.gz gentoo-9ab5aa49e00fb66ceeadb1f9a0d1256e7d62e09d.tar.bz2 gentoo-9ab5aa49e00fb66ceeadb1f9a0d1256e7d62e09d.zip |
app-mobilephone/smstools: remove unused patches
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18149
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-mobilephone')
-rw-r--r-- | app-mobilephone/smstools/files/3.1.15-makefile-whitespace.patch | 11 | ||||
-rw-r--r-- | app-mobilephone/smstools/files/smsd.initd3 | 30 |
2 files changed, 0 insertions, 41 deletions
diff --git a/app-mobilephone/smstools/files/3.1.15-makefile-whitespace.patch b/app-mobilephone/smstools/files/3.1.15-makefile-whitespace.patch deleted file mode 100644 index 70455bef6c56..000000000000 --- a/app-mobilephone/smstools/files/3.1.15-makefile-whitespace.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- smstools3/src/Makefile.old 2014-04-25 23:28:46.324045112 +1000 -+++ smstools3/src/Makefile 2014-04-25 23:33:26.453061496 +1000 -@@ -43,7 +43,7 @@ - - ifneq (,$(findstring SOLARIS,$(CFLAGS))) - ifeq (,$(findstring DISABLE_INET_SOCKET,$(CFLAGS))) --override LFLAGS += -lsocket -lnsl -+ override LFLAGS += -lsocket -lnsl - endif - endif - diff --git a/app-mobilephone/smstools/files/smsd.initd3 b/app-mobilephone/smstools/files/smsd.initd3 deleted file mode 100644 index ae53a7fc0e08..000000000000 --- a/app-mobilephone/smstools/files/smsd.initd3 +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need localmount -} - -start() { - if ! [ -d /var/run/smsd ]; then - ebegin "Creating /var/run/smsd for ${SVCNAME}" - mkdir /var/run/smsd \ - && chown smsd:sms /var/run/smsd \ - && chmod 770 /var/run/smsd - eend $? - fi - - chown smsd:sms /var/log/smsd.log - ebegin "Starting smsd" - start-stop-daemon -b -u smsd:sms --start --exec /usr/bin/smsd -- \ - -c /etc/smsd.conf -p /var/run/smsd/smsd.pid \ - -i /var/run/smsd/smsd.working - eend ${?} -} - -stop() { - ebegin "Stopping smsd" - start-stop-daemon --stop -n smsd - eend ${?} -} |