From 58a2d82575e2e562327db785638a860aca59bc33 Mon Sep 17 00:00:00 2001 From: cos Date: Sat, 19 Oct 2013 14:04:36 +0200 Subject: Initial commit. --- Makefile | 5 +++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 13 +++++++++++++ debian/copyright | 4 ++++ debian/rules | 13 +++++++++++++ kismet | 3 +++ 7 files changed, 44 insertions(+) create mode 100644 Makefile create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100755 kismet diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..daa57f2 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +all: + +install: + install -d $(DESTDIR)/usr/bin + install kismet $(DESTDIR)/usr/bin diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..d3ac67b --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +kismet-preventor (1.0) unstable; urgency=low + + * Initial release. (Created using dh_make --native.) + + -- cos Sat, 19 Oct 2013 13:20:34 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ffb5402 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: kismet-preventor +Priority: extra +Maintainer: cos +Build-Depends: debhelper (>= 8.0.0) +Standards-Version: 3.9.4 + +Package: kismet-preventor +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Prevent kismet from running on hardware with broken drivers. +Provides: kismet +Conflicts: kismet +Replaces: kismet diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..8d89f44 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,4 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ + +Files: * +License: Public domain. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b760bee --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ diff --git a/kismet b/kismet new file mode 100755 index 0000000..fb5de1b --- /dev/null +++ b/kismet @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Kismet would completely freeze this computer. Don't try running it again!" -- cgit v1.2.3