summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-05-31 12:22:44 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-05-31 12:22:44 +0000
commit69fe8c798dd23dc91d6b44a933b7c9e6afbfd3be (patch)
tree7918d2e96be6f4699b18bbbdb2f2f0055f3ce576
parent- Update to 0.7.1 pre2 (diff)
- Remove mpio-driver, it's not needed for mpiosh 0.7.1 and newer
PR: ports/67410 Submitted by: Sergey Akifyev <asa@gascom.ru> (maintainer)
Notes
Notes: svn path=/head/; revision=110517
-rw-r--r--MOVED1
-rw-r--r--audio/Makefile1
-rw-r--r--audio/mpio-driver/Makefile42
-rw-r--r--audio/mpio-driver/distinfo2
-rw-r--r--audio/mpio-driver/files/Makefile14
-rw-r--r--audio/mpio-driver/files/mpio-driver.sh.sample18
-rw-r--r--audio/mpio-driver/pkg-descr9
-rw-r--r--audio/mpio-driver/pkg-plist2
8 files changed, 1 insertions, 88 deletions
diff --git a/MOVED b/MOVED
index caeb28175fbd..3e110ad66ceb 100644
--- a/MOVED
+++ b/MOVED
@@ -1090,3 +1090,4 @@ security/avmailgate||2004-05-18|removed due to licensing concerns
databases/postgresql-client|databases/postgresql7|2004-05-25|Remove the -client port because of dependencies problem
deskutils/logjam2|deskutils/logjam|2004-05-26|GTK2 logjam is now default
devel/camlp4||2004-05-27|removed, no longer works, no longer developed
+audio/mpio-driver||2004-05-31|no longer needed with mpiosh 0.7.1
diff --git a/audio/Makefile b/audio/Makefile
index 1d78d98fd934..5197bc076578 100644
--- a/audio/Makefile
+++ b/audio/Makefile
@@ -221,7 +221,6 @@
SUBDIR += mpg123
SUBDIR += mpg123.el
SUBDIR += mpg321
- SUBDIR += mpio-driver
SUBDIR += mpiosh
SUBDIR += mpmf20
SUBDIR += mppdec
diff --git a/audio/mpio-driver/Makefile b/audio/mpio-driver/Makefile
deleted file mode 100644
index 2c72c634d0e5..000000000000
--- a/audio/mpio-driver/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-# New ports collection makefile for: mpio-driver
-# Date created: 19 Jun 2003
-# Whom: Sergey Akifyev <asa@gascom.ru>
-#
-# $FreeBSD$
-#
-
-PORTNAME= mpio-driver
-PORTVERSION= 0.3
-CATEGORIES= audio
-MASTER_SITES= ftp://ftp.gascom.ru/pub/patches/
-DISTFILES= urio.c.diff_2
-EXTRACT_ONLY=
-
-MAINTAINER= asa@gascom.ru
-COMMENT= Digit@lway MPIO MP3 player device driver KMOD
-
-NO_PACKAGE= should be recompiled for a particular FreeBSD kernel
-
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 500000
-PLIST_SUB= MODDEST=/boot
-.else
-PLIST_SUB= MODDEST=
-.endif
-
-post-extract:
- @${MKDIR} ${WRKSRC}
- @${CP} /usr/src/sys/dev/usb/urio.c ${WRKSRC}
-
-pre-patch:
- @${CP} ${MASTERDIR}/files/Makefile ${WRKSRC}
- @${PATCH} -d ${WRKSRC} < ${DISTDIR}/urio.c.diff_2
-
-post-install:
- ${INSTALL_SCRIPT} ${MASTERDIR}/files/mpio-driver.sh.sample ${PREFIX}/etc/rc.d
-.if exists(/dev/MAKEDEV)
- @cd /dev && sh MAKEDEV urio0
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/audio/mpio-driver/distinfo b/audio/mpio-driver/distinfo
deleted file mode 100644
index 515c333e3a58..000000000000
--- a/audio/mpio-driver/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (urio.c.diff_2) = c28643eb5ae5ec40e66b24fdbe35a6d2
-SIZE (urio.c.diff_2) = 5537
diff --git a/audio/mpio-driver/files/Makefile b/audio/mpio-driver/files/Makefile
deleted file mode 100644
index d50397bbe9b1..000000000000
--- a/audio/mpio-driver/files/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-# Makefile for MPIO device driver
-# Created by Sergey Akifyev <asa@gascom.ru>
-# $FreeBSD$
-#
-# $Id: Makefile,v 1.1 2003/06/19 15:36:18 asa Exp $
-KMOD= mpio
-SRCS= urio.c usb_if.h device_if.h bus_if.h opt_usb.h vnode_if.h
-CFLAGS= -DUSB_VENDOR_DIGITALWAY=0x2735 -DUSB_PRODUCT_DIGITALWAY_MPIO=0x0001
-
-.if ${OSVERSION} >= 500000
-KMODDIR= /boot/modules
-.endif
-
-.include <bsd.kmod.mk>
diff --git a/audio/mpio-driver/files/mpio-driver.sh.sample b/audio/mpio-driver/files/mpio-driver.sh.sample
deleted file mode 100644
index c3d8913f89eb..000000000000
--- a/audio/mpio-driver/files/mpio-driver.sh.sample
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-# MPIO-kmod sample startup script
-# Created by Sergey Akifyev <asa@gascom.ru>
-#
-# $Id: mpio-driver.sh.sample,v 1.1 2003/06/19 15:36:18 asa Exp $
-
-case "${1}" in
- start)
- echo -n "mpio-driver "
- kldload mpio
- ;;
- stop)
- kldunload mpio
- ;;
- *)
- echo Usage: `basename ${0}` "{start|stop}"
- ;;
-esac
diff --git a/audio/mpio-driver/pkg-descr b/audio/mpio-driver/pkg-descr
deleted file mode 100644
index c976b8b5ace1..000000000000
--- a/audio/mpio-driver/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-Digit@lway MPIO MP3 player device driver KMOD
-
-It is actually a patch to FreeBSD standard urio
-driver, which adds MPIO support to it, and
-fixes some issues
-
-This driver is designed to be used with MPIO
-for Linux software, ported to FreeBSD as
-audio/mpiosh
diff --git a/audio/mpio-driver/pkg-plist b/audio/mpio-driver/pkg-plist
deleted file mode 100644
index 9db18fb6b6c5..000000000000
--- a/audio/mpio-driver/pkg-plist
+++ /dev/null
@@ -1,2 +0,0 @@
-etc/rc.d/mpio-driver.sh.sample
-@unexec rm -f %%MODDEST%%/modules/mpio.ko 2> /dev/null || true