Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
Aumix's src/Makefile.am incorrect adds @includedir@ to the list of
include paths and @libdir@ to the list of libraries paths. This is
incorrect, as @includedir@ and @libdir@ are respectively /usr/include
and /usr/lib, even in cross-compilation mode.
At the same time, use AM_CFLAGS instead of CFLAGS, as is done on the
similar patch found in OpenEmbedded.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
src/Makefile.am | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
Index: aumix-2.8/src/Makefile.am
===================================================================
--- aumix-2.8.orig/src/Makefile.am
+++ aumix-2.8/src/Makefile.am
@@ -9,9 +9,8 @@
mouse.c common.h curses.h gpm-xterm.h gtk.h interactive.h \
mouse.h play.xpm record.xpm
localedir = $(datadir)/locale
-INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\" -I@includedir@
+INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
AM_CFLAGS = @CFLAGS@ @GLIB_CFLAGS@ @GTK_CFLAGS@
-LDADD = -L@libdir@
LIBS = @LIBS@ @GTK_LIBS@ @LIBINTL@
DEFS = @DEFS@

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_AUMIX
bool "aumix"
select BR2_PACKAGE_NCURSES
help
aumix is a small, easy-to-use program to control the mixer
of your sound card. It runs in text mode using the ncurses
library, or from the command line (non-interactively).
It can read default settings from a file, and it can also
automatically save and restore the mixer settings at shutdown
and boot.
http://jpj.net/~trevor/aumix.html

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 d2ce43d532ef75072c8d4e7922e3bc06be6d97765a508d9ceb0d1766bbe70e29 aumix-2.9.1.tar.bz2

View File

@@ -0,0 +1,24 @@
################################################################################
#
# aumix
#
################################################################################
AUMIX_VERSION = 2.9.1
AUMIX_SOURCE = aumix-$(AUMIX_VERSION).tar.bz2
AUMIX_SITE = http://jpj.net/~trevor/aumix/releases
AUMIX_AUTORECONF = YES
AUMIX_GETTEXTIZE = YES
AUMIX_LICENSE = GPLv2+
AUMIX_LICENSE_FILES = COPYING
AUMIX_CONF_OPTS = \
--without-gtk \
--without-gtk1 \
--without-alsa \
--without-gpm \
--without-sysmouse
AUMIX_DEPENDENCIES = host-gettext ncurses
$(eval $(autotools-package))