summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2011-04-18 15:08:28 +0000
committerChristoph Mende <angelos@gentoo.org>2011-04-18 15:08:28 +0000
commit5ac55bcc271641b475492749549df23875537b9c (patch)
treefcd9e0aed9223aecac1de13f6ffcbd8c6ea4953b /media-sound/audio-entropyd/files
parentremove unused sed, bug #363867 (diff)
downloadgentoo-2-5ac55bcc271641b475492749549df23875537b9c.tar.gz
gentoo-2-5ac55bcc271641b475492749549df23875537b9c.tar.bz2
gentoo-2-5ac55bcc271641b475492749549df23875537b9c.zip
Version bump
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/audio-entropyd/files')
-rw-r--r--media-sound/audio-entropyd/files/audio-entropyd-1.0.5-ldflags.patch11
-rw-r--r--media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch27
-rw-r--r--media-sound/audio-entropyd/files/audio-entropyd.conf-116
-rw-r--r--media-sound/audio-entropyd/files/audio-entropyd.init-127
4 files changed, 0 insertions, 81 deletions
diff --git a/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-ldflags.patch b/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-ldflags.patch
deleted file mode 100644
index b0446b1919e1..000000000000
--- a/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-ldflags.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.orig 2009-02-09 18:01:37.884656874 +0100
-+++ Makefile 2009-02-09 18:01:44.412654720 +0100
-@@ -12,7 +12,7 @@
- all: $(TARGETS)
-
- audio-entropyd: snd_dev.o audio-entropyd.o error.o proc.o val.o RNGTEST.o error.o
-- $(CC) -o $@ $^ $(LFLAGS)
-+ $(CC) $(LDFLAGS) -o $@ $^ $(LFLAGS)
-
- install: audio-entropyd
- cp audio-entropyd /usr/local/sbin/
diff --git a/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch b/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch
deleted file mode 100644
index bdf5adeff825..000000000000
--- a/media-sound/audio-entropyd/files/audio-entropyd-1.0.5-uclibc.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- audio-entropyd-1.0.1.orig/error.c 2008-01-22 09:50:28 +0000
-+++ audio-entropyd-1.0.1/error.c 2008-01-22 09:53:51 +0000
-@@ -9,13 +9,13 @@
- #include <signal.h>
- #include <syslog.h>
- #include <regex.h>
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- #include <execinfo.h>
- #endif
-
- void print_trace(void)
- {
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- void *array[MAX_BACKTRACE_LENGTH];
- size_t size;
-
-@@ -39,7 +39,7 @@
- printf("\n\n\nDebug information:\n");
- if (errno) fprintf(stderr, "errno: %d=%s (if applicable)\n", errno, strerror(errno));
-
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- print_trace();
- #endif
-
diff --git a/media-sound/audio-entropyd/files/audio-entropyd.conf-1 b/media-sound/audio-entropyd/files/audio-entropyd.conf-1
deleted file mode 100644
index 75bdbcbe4756..000000000000
--- a/media-sound/audio-entropyd/files/audio-entropyd.conf-1
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audio-entropyd/files/audio-entropyd.conf-1,v 1.1 2009/11/12 09:54:21 angelos Exp $
-
-# /etc/conf.d/audio-entropyd
-
-# The acceptable values are DEVICE, READSIZE and SAMPLERATE
-# These defaults give the optimum entropy
-
-#DEVICE="/dev/dsp"
-
-#READSIZE *must* be a power of 2
-READSIZE="65536"
-
-#SAMPLERATE must be a valid sampling rate of your audio source
-SAMPLERATE="44050"
diff --git a/media-sound/audio-entropyd/files/audio-entropyd.init-1 b/media-sound/audio-entropyd/files/audio-entropyd.init-1
deleted file mode 100644
index 9f58d3474269..000000000000
--- a/media-sound/audio-entropyd/files/audio-entropyd.init-1
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audio-entropyd/files/audio-entropyd.init-1,v 1.1 2009/11/12 09:54:21 angelos Exp $
-
-depend() {
- need modules
- use alsa
-}
-
-start() {
- local params=""
- [ -n "$DEVICE" ] && params="$params -d $DEVICE"
- [ -n "$READSIZE" ] && params="$params -r $READSIZE"
- [ -n "$SAMPLERATE" ] && params="$params -N $SAMPLERATE"
-
- ebegin "Starting audio entropy gathering daemon"
- start-stop-daemon --start --quiet --pidfile /var/run/audio-entropyd.pid \
- --exec /usr/sbin/audio-entropyd -- ${params}
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping audio entropy gathering daemon"
- start-stop-daemon --stop --quiet --pidfile /var/run/audio-entropyd.pid
- eend ${?}
-}