svn commit: r405867 - in head/x11/i3status: . files

Baptiste Daroussin bapt at FreeBSD.org
Tue Jan 12 12:36:55 UTC 2016


Author: bapt
Date: Tue Jan 12 12:36:53 2016
New Revision: 405867
URL: https://svnweb.freebsd.org/changeset/ports/405867

Log:
  Update to 2.10
  Add patches to remove support for pulseaudio

Added:
  head/x11/i3status/files/patch-Makefile   (contents, props changed)
  head/x11/i3status/files/patch-src_print__volume.c   (contents, props changed)
Deleted:
  head/x11/i3status/files/patch-print_battery_info.c
  head/x11/i3status/files/patch-print_eth_info.c
  head/x11/i3status/files/patch-print_wireless_info.c
Modified:
  head/x11/i3status/Makefile
  head/x11/i3status/distinfo

Modified: head/x11/i3status/Makefile
==============================================================================
--- head/x11/i3status/Makefile	Tue Jan 12 12:19:57 2016	(r405866)
+++ head/x11/i3status/Makefile	Tue Jan 12 12:36:53 2016	(r405867)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	i3status
-PORTVERSION=	2.8
-PORTREVISION=	5
+PORTVERSION=	2.10
 CATEGORIES=	x11
 MASTER_SITES=	http://i3wm.org/i3status/
 

Modified: head/x11/i3status/distinfo
==============================================================================
--- head/x11/i3status/distinfo	Tue Jan 12 12:19:57 2016	(r405866)
+++ head/x11/i3status/distinfo	Tue Jan 12 12:36:53 2016	(r405867)
@@ -1,2 +1,2 @@
-SHA256 (i3status-2.8.tar.bz2) = ab06c5dd454354e6fc64354082616115082b70dc3906361bce5a02beb0f807fe
-SIZE (i3status-2.8.tar.bz2) = 40422
+SHA256 (i3status-2.10.tar.bz2) = daf5d07611b054a43da1a3d28850b05e2dbdbd6d25fd5e25ede98bb1b66e2791
+SIZE (i3status-2.10.tar.bz2) = 53684

Added: head/x11/i3status/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/i3status/files/patch-Makefile	Tue Jan 12 12:36:53 2016	(r405867)
@@ -0,0 +1,14 @@
+--- Makefile.orig	2016-01-12 12:26:06 UTC
++++ Makefile
+@@ -75,6 +75,11 @@ OBJS:=$(filter-out src/pulse.o, $(OBJS))
+ LIBS:=$(filter-out -lpulse, $(LIBS)) -lpthread
+ endif
+ 
++ifeq ($(OS),FreeBSD)
++OBJS:=$(filter-out src/pulse.o, $(OBJS))
++LIBS:=$(filter-out -lpulse, $(LIBS)) -lpthread
++endif
++
+ src/%.o: src/%.c include/i3status.h
+ 	$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
+ 	@echo " CC $<"

Added: head/x11/i3status/files/patch-src_print__volume.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/i3status/files/patch-src_print__volume.c	Tue Jan 12 12:36:53 2016	(r405867)
@@ -0,0 +1,11 @@
+--- src/print_volume.c.orig	2016-01-12 12:27:47 UTC
++++ src/print_volume.c
+@@ -60,7 +60,7 @@ void print_volume(yajl_gen json_gen, cha
+         free(instance);
+     }
+ 
+-#ifndef __OpenBSD__
++#if !defined(__OPENBSD__) && !defined(__FreeBSD__)
+     /* Try PulseAudio first */
+ 
+     /* If the device name has the format "pulse[:N]" where N is the


More information about the svn-ports-head mailing list