From: Thorsten Scherer <t.scherer@eckelmann.de>
To: ptxdist@pengutronix.de
Cc: Thorsten Scherer <t.scherer@eckelmann.de>
Subject: [ptxdist] [PATCH 31/42] sdl: Remove after one year in staging
Date: Mon, 4 May 2026 14:53:15 +0200 [thread overview]
Message-ID: <20260504125315.64574-1-t.scherer@eckelmann.de> (raw)
In-Reply-To: <20260504121331.57729-1-t.scherer@eckelmann.de>
Signed-off-by: Thorsten Scherer <t.scherer@eckelmann.de>
---
rules/sdl.in | 145 -------------------------------------------------
rules/sdl.make | 137 ----------------------------------------------
2 files changed, 282 deletions(-)
delete mode 100644 rules/sdl.in
delete mode 100644 rules/sdl.make
diff --git a/rules/sdl.in b/rules/sdl.in
deleted file mode 100644
index b672106e2e57..000000000000
--- a/rules/sdl.in
+++ /dev/null
@@ -1,145 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=multimedia_sdl
-
-menuconfig SDL
- tristate
- prompt "SDL "
- select LIBC_M
- select LIBC_DL
- select LIBC_PTHREAD
- select GCCLIBS_GCC_S
- select CROSS_NASM if SDL_VIDEO
- select ALSA_LIB if SDL_ALSA
- select XORG_LIB_X11 if SDL_XORG
- select XORG_LIB_XT if SDL_XORG
- select XORG_LIB_XV if SDL_XORG && SDL_VIDEO
- select XORG_LIB_XVMC if SDL_XORG && SDL_VIDEO
- select TSLIB if SDL_TSLIB
- help
- Simple DirectMedia Layer is a cross-platform multimedia
- library designed to provide low level access to audio,
- keyboard, mouse, joystick, 3D hardware via OpenGL, and
- 2D video framebuffer.
-
- STAGING: remove in PTXdist 2026.03.0
- Obsolete and replaced by SDL2.
-
-if SDL
-
-config SDL_TIMERS
- bool
- prompt "SDL Timers Support"
- default y
- help
- FIXME
-
-config SDL_FILE
- bool
- prompt "SDL File Support"
- default y
- help
- FIXME
-
-config SDL_CPUINFO
- bool
- prompt "SDL CPU Info Support"
- default y
- help
- FIXME
-
-menuconfig SDL_AUDIO
- bool
- prompt "SDL Audio Support "
- default y
- help
- FIXME
-
-if SDL_AUDIO
-
-config SDL_OSS
- bool
- prompt "SDL OSS Support"
- help
- Open Sound System (OSS) is the first attempt in
- unifying the digital audio architecture for UNIX.
- OSS is a set of device drivers that provide a
- uniform API across all the major UNIX architectures.
-
-config SDL_ALSA
- bool
- prompt "SDL ALSA Support"
- default y
- help
- The Advanced Linux Sound Architecture (ALSA)
- provides audio and MIDI functionality to the
- Linux operating system.
-
-endif
-
-menuconfig SDL_VIDEO
- bool
- prompt "SDL Video Support "
- default y
- help
- FIXME
-
-if SDL_VIDEO
-
-menuconfig SDL_XORG
- bool
- prompt "Xorg Support "
- help
- X.Org provides an open source implementation of the
- X Window System.
-
-config SDL_FBCON
- bool
- prompt "SDL fbcon support"
- help
- Framebuffer console
-
-config SDL_OPENGL
- bool
- prompt "OpenGL Support"
- depends on BROKEN
- help
- OpenGL is a multi-platform software interface to
- graphics hardware, supporting rendering and imaging
- operations.
-
-endif
-
-config SDL_EVENT
- bool
- prompt "SDL Event Support"
- default y
- help
- FIXME
-
-config SDL_JOYSTICK
- bool
- prompt "SDL Joystick Support"
- help
- FIXME
-
-config SDL_CDROM
- bool
- prompt "SDL CDROM Support"
- help
- FIXME
-
-menuconfig SDL_THREADS
- bool
- prompt "SDL Thread Support "
- default y
- help
- Turn on multithreading support
-
-config SDL_TSLIB
- bool
- prompt "tslib Support"
- help
- Turn on support for the touchscreen library 'tslib'
-
-endif
diff --git a/rules/sdl.make b/rules/sdl.make
deleted file mode 100644
index 5cbef70370f7..000000000000
--- a/rules/sdl.make
+++ /dev/null
@@ -1,137 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2006 by Erwin Rol
-# 2010 by Marc Kleine-Budde <mkl@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_SDL) += sdl
-
-#
-# Paths and names
-#
-SDL_VERSION := 1.2.15
-SDL_MD5 := 9d96df8417572a2afb781a7c4c811a85
-SDL := SDL-$(SDL_VERSION)
-SDL_SUFFIX := tar.gz
-SDL_URL := https://www.libsdl.org/release/$(SDL).$(SDL_SUFFIX)
-SDL_SOURCE := $(SRCDIR)/$(SDL).$(SDL_SUFFIX)
-SDL_DIR := $(BUILDDIR)/$(SDL)
-SDL_LICENSE := LGPL-2.1-only
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-SDL_CONF_TOOL := autoconf
-SDL_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --enable-shared \
- --disable-static \
- --enable-libc \
- --$(call ptx/endis,PTXCONF_SDL_AUDIO)-audio \
- --$(call ptx/endis,PTXCONF_SDL_VIDEO)-video \
- --$(call ptx/endis,PTXCONF_SDL_EVENT)-events \
- --$(call ptx/endis,PTXCONF_SDL_JOYSTICK)-joystick \
- --$(call ptx/endis,PTXCONF_SDL_CDROM)-cdrom \
- --$(call ptx/endis,PTXCONF_SDL_THREADS)-threads \
- --$(call ptx/endis,PTXCONF_SDL_TIMERS)-timers \
- --$(call ptx/endis,PTXCONF_SDL_FILE)-file \
- --enable-loadso \
- --$(call ptx/endis,PTXCONF_SDL_CPUINFO)-cpuinfo \
- --enable-assembly \
- --$(call ptx/endis,PTXCONF_SDL_OSS)-oss \
- --$(call ptx/endis,PTXCONF_SDL_ALSA)-alsa \
- --disable-alsatest \
- --disable-alsa-shared \
- --disable-esd \
- --disable-esdtest \
- --disable-esd-shared \
- --disable-pulseaudio \
- --disable-pulseaudio-shared \
- --disable-arts \
- --disable-arts-shared \
- --disable-nas \
- --disable-nas-shared \
- --disable-diskaudio \
- --disable-dummyaudio \
- --disable-mintaudio \
- --enable-nasm \
- --disable-altivec \
- --disable-ipod \
- --disable-video-nanox \
- --disable-nanox-debug \
- --disable-nanox-share-memory \
- --disable-nanox-direct-fb \
- --$(call ptx/endis,PTXCONF_SDL_XORG)-video-x11 \
- --disable-x11-shared \
- --$(call ptx/endis,PTXCONF_SDL_XORG)-dga \
- --$(call ptx/endis,PTXCONF_SDL_XORG)-video-dga \
- --$(call ptx/endis,PTXCONF_SDL_XORG)-video-x11-dgamouse \
- --$(call ptx/endis,PTXCONF_SDL_XORG)-video-x11-vm \
- --$(call ptx/endis,PTXCONF_SDL_VIDEO)-video-x11-xv \
- --disable-video-x11-xinerama \
- --$(call ptx/endis,PTXCONF_SDL_XORG)-video-x11-xme \
- --disable-video-x11-xrandr \
- --disable-video-photon \
- --disable-video-carbon \
- --disable-video-cocoa \
- --$(call ptx/endis,PTXCONF_SDL_FBCON)-video-fbcon \
- --disable-video-directfb \
- --disable-video-ps2gs \
- --disable-video-ps3 \
- --disable-video-ggi \
- --disable-video-svga \
- --disable-video-vgl \
- --disable-video-wscons \
- --disable-video-aalib \
- --disable-video-caca \
- --disable-video-qtopia \
- --disable-video-picogui \
- --disable-xbios \
- --disable-gem \
- --enable-video-dummy \
- --$(call ptx/endis,PTXCONF_SDL_OPENGL)-video-opengl \
- --disable-osmesa-shared \
- --enable-screensaver \
- --enable-input-events \
- --$(call ptx/endis,PTXCONF_SDL_TSLIB)-input-tslib \
- --disable-pth \
- --enable-pthreads \
- --enable-pthread-sem \
- --disable-stdio-redirect \
- --disable-directx \
- --enable-sdl-dlopen \
- --disable-atari-ldg \
- --enable-clock_gettime \
- --disable-rpath \
- --$(call ptx/wwo,PTXCONF_SDL_XORG)-x
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/sdl.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, sdl)
- @$(call install_fixup, sdl,PRIORITY,optional)
- @$(call install_fixup, sdl,SECTION,base)
- @$(call install_fixup, sdl,AUTHOR,"Erwin Rol <ero@pengutronix.de>")
- @$(call install_fixup, sdl,DESCRIPTION,missing)
-
- @$(call install_lib, sdl, 0, 0, 0644, libSDL-1.2)
-
- @$(call install_finish, sdl)
-
- @$(call touch)
-
-# vim: syntax=make
--
2.53.0
next prev parent reply other threads:[~2026-05-04 12:53 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-04 12:12 [ptxdist] [PATCH 00/42] treewide: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 01/42] archivemount: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 02/42] argtable2: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 03/42] bing: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 04/42] calibrator: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 05/42] daemonize: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 06/42] dhex: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 07/42] dialog: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 08/42] frodo: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 09/42] gnuplot: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 10/42] latencytop: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 11/42] latrace: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 12/42] libcli: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 13/42] libgee: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 14/42] libiodbc: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 15/42] liblockfile: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 16/42] libmikmod: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 17/42] liburcu: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 18/42] links: " Thorsten Scherer
2026-05-04 12:13 ` [ptxdist] [PATCH 19/42] lsuio: " Thorsten Scherer
2026-05-04 12:52 ` [ptxdist] [PATCH 20/42] ltt-control: " Thorsten Scherer
2026-05-04 12:52 ` [ptxdist] [PATCH 21/42] lua-filesystem: " Thorsten Scherer
2026-05-04 12:52 ` [ptxdist] [PATCH 22/42] media-session: " Thorsten Scherer
2026-05-04 12:52 ` [ptxdist] [PATCH 23/42] mtd-oopslog: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 24/42] openct: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 25/42] pcmciautils: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 26/42] pslib: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 27/42] sched_switch: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 28/42] schedtool: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 29/42] sdl-gfx: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 30/42] sdl-ttf: " Thorsten Scherer
2026-05-04 12:53 ` Thorsten Scherer [this message]
2026-05-04 12:53 ` [ptxdist] [PATCH 32/42] sdl_image: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 33/42] sdl_mixer: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 34/42] setserial: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 35/42] smtpclient: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 36/42] ssmtp: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 37/42] supertux: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 38/42] utelnetd: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 39/42] wireshark: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 40/42] xerces: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 41/42] xterm: " Thorsten Scherer
2026-05-04 12:53 ` [ptxdist] [PATCH 42/42] zsync: " Thorsten Scherer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260504125315.64574-1-t.scherer@eckelmann.de \
--to=t.scherer@eckelmann.de \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox