From f323bd129f3365baf8d5c32903a53b1052773530 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 4 Dec 2007 18:36:35 +0000 Subject: [PATCH 1/4] Initialize branch EL-4 for wmix --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..6ec5cef --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-4 From 0ab17579fc1bded9189d77445b984a13d1c3e363 Mon Sep 17 00:00:00 2001 From: pertusus Date: Fri, 28 Dec 2007 17:01:37 +0000 Subject: [PATCH 2/4] sync with devel and modify for monolithic X --- wmix.spec | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/wmix.spec b/wmix.spec index c78d394..3428b19 100644 --- a/wmix.spec +++ b/wmix.spec @@ -1,17 +1,15 @@ Name: wmix Version: 3.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Dockapp mixer Group: User Interface/X -License: GPL +License: GPLv2+ URL: http://www.ne.jp/asahi/linux/timecop/#wmix Source0: http://www.ne.jp/asahi/linux/timecop/software/wmix-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libX11-devel -BuildRequires: libXext-devel -BuildRequireS: libXpm-devel +BuildRequires: xorg-x11-devel %description Dockapp mixer for OSS or ALSA. Allows toggling record source, muting @@ -27,7 +25,8 @@ configuration file to control some of the features. %build -make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" LDFLAGS= +make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" \ + LDFLAGS="$RPM_OPT_FLAGS -L%{_prefix}/X11R6/%{_lib}" %install @@ -36,7 +35,7 @@ install -d -m755 $RPM_BUILD_ROOT%{_bindir} make install PREFIX=$RPM_BUILD_ROOT%{_prefix} gunzip wmix.1x.gz install -d -m755 $RPM_BUILD_ROOT%{_mandir}/man1/ -install -m644 wmix.1x $RPM_BUILD_ROOT%{_mandir}/man1/wmix.1 +install -p -m644 wmix.1x $RPM_BUILD_ROOT%{_mandir}/man1/wmix.1 %clean @@ -51,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Dec 28 2007 Patrice Dumas 3.1-2 +- keep timestamps + * Wed Aug 9 2006 Patrice Dumas 3.1-1 - Initial Release From 166675246b5acecbc63e3cb805f0dd33505f6482 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:17:51 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 165aad2..25c0b6a 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := wmix SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 319fd0cfe128f30d63f8a42da3b53a3f53e91e6a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:23:03 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 25c0b6a..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wmix -# $Id$ -NAME := wmix -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 6ec5cef..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-4