summaryrefslogtreecommitdiff
path: root/package/rtsp/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-07 21:09:43 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-07 21:09:43 +0200
commit20341b4098547b4f1f8e80103d2d7e72069f731c (patch)
treea93ec86ddffb8f98168cf80ca7c12f6bee94cee4 /package/rtsp/Makefile
parent5d04ab914553aa65e3de2a126bef713b21deaf05 (diff)
remove unmaintained externel kernel modules
Diffstat (limited to 'package/rtsp/Makefile')
-rw-r--r--package/rtsp/Makefile39
1 files changed, 0 insertions, 39 deletions
diff --git a/package/rtsp/Makefile b/package/rtsp/Makefile
deleted file mode 100644
index 4078ab9eb..000000000
--- a/package/rtsp/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-include ${TOPDIR}/rules.mk
-
-PKG_NAME:= rtsp
-PKG_VERSION:= 1.0
-PKG_RELEASE:= 1
-PKG_MD5SUM:= 92bb09883dd8a77ec5cfbff1c8932b15
-PKG_DESCR:= connection tracking for RTSP
-PKG_SECTION:= kernel
-PKG_DEPENDS:= kmod-ip-nf-iptables kmod-nf-conntrack
-PKG_URL:= http://github.com/maru-sama/rtsp-linux-v2.6
-
-PKG_CFLINE_RTSP:= depends on !ADK_TOOLCHAIN_ONLY
-PKG_ARCH_DEPENDS:= !arm
-
-NO_DISTFILES:= 1
-
-include ${TOPDIR}/mk/package.mk
-
-$(eval $(call PKG_template,RTSP_KMOD,rtsp-kmod,${KERNEL_VERSION}-${ADK_TARGET}-${PKG_RELEASE},,${PKG_DESCR},${PKG_SECTION}))
-
-CONFIG_STYLE:= manual
-BUILD_STYLE:= manual
-INSTALL_STYLE:= manual
-
-pre-build:
- $(MAKE) -C ${WRKBUILD} $(KERNEL_MODULE_FLAGS) all
-
-do-install:
- ${INSTALL_DIR} ${IDIR_RTSP_KMOD}/etc/modules.d/
- echo "nf_conntrack_rtsp" > ${IDIR_RTSP_KMOD}/etc/modules.d/60-nf-nat-rtsp
- echo "nf_nat_rtsp" >> ${IDIR_RTSP_KMOD}/etc/modules.d/60-nf-nat-rtsp
- ${INSTALL_DIR} ${IDIR_RTSP_KMOD}/lib/modules/${KERNEL_VERSION}/
- ${INSTALL_DATA} ${WRKBUILD}/*.ko \
- ${IDIR_RTSP_KMOD}/lib/modules/${KERNEL_VERSION}
-
-include ${TOPDIR}/mk/pkg-bottom.mk