aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2000-10-05 23:03:44 +0000
committerAde Lovett <ade@FreeBSD.org>2000-10-05 23:03:44 +0000
commit3c87e8ec0fd0364b62268d060b19b829fdac400e (patch)
tree3075cd670d3239e9e53dabf45708d4d210e1e245 /audio
parent633afd403769b9a76485fd1a2650cfe6c913bcc0 (diff)
downloadports-3c87e8ec0fd0364b62268d060b19b829fdac400e.tar.gz
ports-3c87e8ec0fd0364b62268d060b19b829fdac400e.zip
Notes
Diffstat (limited to 'audio')
-rw-r--r--audio/esound/Makefile2
-rw-r--r--audio/esound/distinfo2
-rw-r--r--audio/esound/files/patch-ab2
-rw-r--r--audio/esound/files/patch-ac13
4 files changed, 3 insertions, 16 deletions
diff --git a/audio/esound/Makefile b/audio/esound/Makefile
index 3e59e3b76f8d..47fa5089093c 100644
--- a/audio/esound/Makefile
+++ b/audio/esound/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= esound
-PORTVERSION= 0.2.19
+PORTVERSION= 0.2.20
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/esound
diff --git a/audio/esound/distinfo b/audio/esound/distinfo
index f927598a4211..0492703ed042 100644
--- a/audio/esound/distinfo
+++ b/audio/esound/distinfo
@@ -1 +1 @@
-MD5 (esound-0.2.19.tar.gz) = 05ce2d3d8db08a340a4fc04671a38ef0
+MD5 (esound-0.2.20.tar.gz) = 7973f370efe15bec740fb495b2571dfc
diff --git a/audio/esound/files/patch-ab b/audio/esound/files/patch-ab
index e9adf4705bbf..10d7e657d30f 100644
--- a/audio/esound/files/patch-ab
+++ b/audio/esound/files/patch-ab
@@ -6,7 +6,7 @@
/* path and name of the default EsounD domain socket */
+#if 0
#define ESD_UNIX_SOCKET_DIR "/tmp/.esd"
- #define ESD_UNIX_SOCKET_NAME ESD_UNIX_SOCKET_DIR ## "/" ## "socket"
+ #define ESD_UNIX_SOCKET_NAME ESD_UNIX_SOCKET_DIR "/socket"
+#else
+char *esd_unix_socket_dir(void);
+char *esd_unix_socket_name(void);
diff --git a/audio/esound/files/patch-ac b/audio/esound/files/patch-ac
index f493138a02a1..9a7286980fe9 100644
--- a/audio/esound/files/patch-ac
+++ b/audio/esound/files/patch-ac
@@ -17,16 +17,3 @@
}
if (access(ESD_UNIX_SOCKET_NAME, R_OK | W_OK) == -1)
{
-@@ -317,9 +317,9 @@
- /* let anyone access esd's socket - but we have authentication so they */
- /* wont get far if they dont have the auth key */
- chmod(ESD_UNIX_SOCKET_NAME,
-- S_IRUSR|S_IWUSR|S_IXUSR|
-- S_IRGRP|S_IWGRP|S_IXGRP|
-- S_IROTH|S_IWOTH|S_IXOTH);
-+ S_IRUSR|S_IWUSR|
-+ S_IRGRP|
-+ S_IROTH);
- }
- if (listen(socket_listen,16)<0)
- {