summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2021-02-26 21:08:08 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2021-02-26 21:11:50 +0100
commitf406048ed256a148688ee0f7297f4e5cb9f204ba (patch)
tree2befdc208b18fafa3483d2648b14e108894324ef
parent4dad3f9127469ef0f45d55f418022ab9bc7ee8ab (diff)
downloadptxdist-f406048ed256a148688ee0f7297f4e5cb9f204ba.tar.gz
ptxdist-f406048ed256a148688ee0f7297f4e5cb9f204ba.tar.xz
vice: remove broken package
It was marked as broken and nobody noticed or cared, so just remove it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/vice.in12
-rw-r--r--rules/vice.make82
2 files changed, 0 insertions, 94 deletions
diff --git a/rules/vice.in b/rules/vice.in
deleted file mode 100644
index 754c6129b..000000000
--- a/rules/vice.in
+++ /dev/null
@@ -1,12 +0,0 @@
-## SECTION=bytecode_engines
-config VICE
- tristate
- select READLINE
- select ALSA_LIB
- prompt "vice"
- depends on BROKEN
- help
- VICE emulates well the hardware of the Commodore Business
- Machines of the pre-Amiga era. Supported are the various Pets, the
- VIC-20, the Commodore 64, the Commodore 128, the CBM-II series, and
- the PLUS/4.
diff --git a/rules/vice.make b/rules/vice.make
deleted file mode 100644
index 9afee2a65..000000000
--- a/rules/vice.make
+++ /dev/null
@@ -1,82 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007-2008 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_VICE) += vice
-
-#
-# Paths and names
-#
-VICE_VERSION := 1.22
-VICE_MD5 :=
-VICE := vice-$(VICE_VERSION)
-VICE_SUFFIX := tar.gz
-VICE_URL := http://www.viceteam.org/online/$(VICE).$(VICE_SUFFIX)
-VICE_SOURCE := $(SRCDIR)/$(VICE).$(VICE_SUFFIX)
-VICE_DIR := $(BUILDDIR)/$(VICE)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-VICE_PATH := PATH=$(CROSS_PATH)
-VICE_ENV := $(CROSS_ENV)
-
-#
-# autoconf
-#
-VICE_AUTOCONF := \
- $(CROSS_AUTOCONF_USR) \
- \
- --with-sdl \
- --disable-gnomeui \
- --disable-nls \
- --disable-realdevice \
- --disable-ffmpeg \
- --disable-ethernet \
- --disable-ipv6 \
- --disable-parsid \
- --disable-bundle \
- \
- --without-readline \
- --without-arts \
- --without-esd \
- --with-alsa \
- --without-oss \
- --with-resid \
- --without-png \
- --without-zlib \
- --without-picasso96 \
- --without-cocoa \
- \
- --enable-fullscreen \
- --without-xaw3d \
- --without-x
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/vice.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, vice)
- @$(call install_fixup, vice,PRIORITY,optional)
- @$(call install_fixup, vice,SECTION,base)
- @$(call install_fixup, vice,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
- @$(call install_fixup, vice,DESCRIPTION,missing)
-
-# @$(call install_copy, vice, 0, 0, 0755, $(VICE_DIR)/foobar, /dev/null)
-
- @$(call install_finish, vice)
-
- @$(call touch)
-
-# vim: syntax=make