diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-wireless/airtraf | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-wireless/airtraf')
-rw-r--r-- | net-wireless/airtraf/Manifest | 1 | ||||
-rw-r--r-- | net-wireless/airtraf/airtraf-1.1-r3.ebuild | 54 | ||||
-rw-r--r-- | net-wireless/airtraf/files/airtraf-1.1-fprintf-format.patch | 14 | ||||
-rw-r--r-- | net-wireless/airtraf/files/airtraf-1.1-off-by-one.patch | 29 | ||||
-rw-r--r-- | net-wireless/airtraf/files/airtraf-1.1.patch | 59 | ||||
-rw-r--r-- | net-wireless/airtraf/metadata.xml | 12 |
6 files changed, 169 insertions, 0 deletions
diff --git a/net-wireless/airtraf/Manifest b/net-wireless/airtraf/Manifest new file mode 100644 index 000000000000..71b78bc9bf97 --- /dev/null +++ b/net-wireless/airtraf/Manifest @@ -0,0 +1 @@ +DIST airtraf-1.1.tar.gz 136241 SHA256 10ad27d6cac5ac7fcfec04cd737a0d8a640d5bfeb6fa48a13268f9efbe6bfe53 SHA512 7f341abb25e15dbdf510805230ee2f186a7a66d5c1e486bfdb978d3d8534d8b8c2cc1b5e0e323357c65af1eedbcb1da3e3e5f3ac8299db5f203f54b4a868f90b WHIRLPOOL de40aca3c5cacd5e5047b175e2538dba3ef90af1afb14dcb9a9e1ffab66fa3ddc0aee75aa916183a25f82906c108f3a7e9a177a2228858b2909c44a15a5227c7 diff --git a/net-wireless/airtraf/airtraf-1.1-r3.ebuild b/net-wireless/airtraf/airtraf-1.1-r3.ebuild new file mode 100644 index 000000000000..bd4dd8f70c11 --- /dev/null +++ b/net-wireless/airtraf/airtraf-1.1-r3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils toolchain-funcs + +DESCRIPTION="AirTraf 802.11b Wireless traffic sniffer" +LICENSE="GPL-2" +HOMEPAGE="http://www.elixar.com/" +SRC_URI="${HOMEPAGE}${P}.tar.gz" +SLOT="0" +KEYWORDS="amd64 ppc x86" + +RDEPEND=" + net-libs/libpcap + sys-libs/ncurses +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig +" + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}.patch \ + "${FILESDIR}"/${P}-off-by-one.patch \ + "${FILESDIR}"/${P}-fprintf-format.patch + + sed -i \ + -e '/^LIBS/s|=.*|= $(shell $(PKG_CONFIG) --libs panel)|' \ + src/libncurses/Makefile || die + sed -i \ + -e 's|-lpanel -lncurses|$(shell $(PKG_CONFIG) --libs panel)|' \ + src/sniffd/Makefile || die + tc-export PKG_CONFIG +} + +src_compile() { + # parallel make (bug #297331) + emake -C src -j1 \ + CC=$(tc-getCC) \ + CXX=$(tc-getCXX) \ + CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ + || die +} + +src_install () { + dobin src/airtraf + dodoc Authors COMPATIBILITY docs/airtraf_doc.html +} diff --git a/net-wireless/airtraf/files/airtraf-1.1-fprintf-format.patch b/net-wireless/airtraf/files/airtraf-1.1-fprintf-format.patch new file mode 100644 index 000000000000..ac5d174c0d6f --- /dev/null +++ b/net-wireless/airtraf/files/airtraf-1.1-fprintf-format.patch @@ -0,0 +1,14 @@ +--- a/src/libcommon/logger.c ++++ b/src/libcommon/logger.c +@@ -92,9 +92,9 @@ + + switch (type) + { +- case CONNECT_LOG: status = fprintf(connect_log, text); ++ case CONNECT_LOG: status = fprintf(connect_log, "%s\n", text); + break; +- case ERROR_LOG: status = fprintf(error_log, text); ++ case ERROR_LOG: status = fprintf(error_log, "%s\n", text); + break; + default: // do nothing? + break; diff --git a/net-wireless/airtraf/files/airtraf-1.1-off-by-one.patch b/net-wireless/airtraf/files/airtraf-1.1-off-by-one.patch new file mode 100644 index 000000000000..571532b603ec --- /dev/null +++ b/net-wireless/airtraf/files/airtraf-1.1-off-by-one.patch @@ -0,0 +1,29 @@ +--- a/src/sniffd/autoconfig.c ++++ b/src/sniffd/autoconfig.c +@@ -68,7 +68,7 @@ + struct ifreq ifr; + + strncpy(ifr.ifr_name, ifname, IFNAMSIZ); +- ifr.ifr_name[IFNAMSIZ] = '\0'; ++ ifr.ifr_name[IFNAMSIZ -1] = '\0'; + if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0){ + return (-1); + } +@@ -89,7 +89,7 @@ + struct ifreq ifr; + + strncpy(ifr.ifr_name, ifname, IFNAMSIZ); +- ifr.ifr_name[IFNAMSIZ] = '\0'; ++ ifr.ifr_name[IFNAMSIZ -1] = '\0'; + if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0){ + return (-1); + } +@@ -129,7 +129,7 @@ + { + /* Set device name */ + strncpy(pwrq->ifr_name, ifname, IFNAMSIZ); +- pwrq->ifr_name[IFNAMSIZ] = '\0'; ++ pwrq->ifr_name[IFNAMSIZ -1] = '\0'; + + /* Do the request */ + return(ioctl(skfd, request, pwrq)); diff --git a/net-wireless/airtraf/files/airtraf-1.1.patch b/net-wireless/airtraf/files/airtraf-1.1.patch new file mode 100644 index 000000000000..e88ef52267c1 --- /dev/null +++ b/net-wireless/airtraf/files/airtraf-1.1.patch @@ -0,0 +1,59 @@ +--- a/src/sniffd/autoconfig.c ++++ b/src/sniffd/autoconfig.c +@@ -360,7 +360,7 @@ + int check_drv_compat(char * drvname, int * id) + { + int i; +- for (i=0; (int) compat_drivers[i] != -1; i++){ ++ for (i=0; (long) compat_drivers[i] != -1; i++){ + if (!strncmp(compat_drivers[i], drvname, DRVNAMSIZ +1)){ + *id = i; + return (1); // just true... +@@ -525,6 +525,7 @@ + } + /* Close the socket. */ + close(skfd); ++ return 0; + } + + /** +@@ -772,7 +773,7 @@ + fclose(fh); + break; + case DRV_PRISM2: +- ++ break; + + } + /* update flag take off PROMISC */ +--- a/src/sniffd/gui_channel_scan.c ++++ b/src/sniffd/gui_channel_scan.c +@@ -384,7 +384,7 @@ + if (!beep()) flash(); + wattrset(statuswin, STDATTR); + snprintf(message,100,"Detected new network '%s' (%s) on Channel %02d", +- ((strlen(ap->ssid)==1)&&(!strncmp(" ",ap->ssid,1))) ? "<cloaked>" : ap->ssid, ++ ((strlen(ap->ssid)==1)&&(!strncmp(" ",(char *)ap->ssid,1))) ? "<cloaked>" : (char *)ap->ssid, + hexdump((__u8*)&ap->bssid,6), ap->channel); + print_status_msg(statuswin, location, message); + ap->status = AP_STATUS_ACTIVE; +--- a/src/sniffd/server.c ++++ b/src/sniffd/server.c +@@ -57,7 +57,7 @@ + + int process_command(int, char *); + int issue_get_cmd(int, char *); +-int send_bss_info(int); ++ssize_t send_bss_info(int); + int send_ids_info(int); + + /*=============================================================*/ +@@ -143,7 +143,7 @@ + if (DEBUG) fprintf(stderr,"Error transmitting data\n"); + } + } while (write_len == 0); +- if (DEBUG) fprintf(stderr,"Data: %d bytes sent\n",length); ++ if (DEBUG) fprintf(stderr,"Data: %ld bytes sent\n",length); + } + + /** diff --git a/net-wireless/airtraf/metadata.xml b/net-wireless/airtraf/metadata.xml new file mode 100644 index 000000000000..8c9992e713f9 --- /dev/null +++ b/net-wireless/airtraf/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>netmon</herd> +<longdescription> +AirTraf 1.0 is a wireless sniffer that can detect and determine exactly what is +being transmitted over 802.11 wireless networks. This open-source program +tracks and identifies legitimate and rogue access points, keeps performance +statistics on a by-user and by-protocol basis, measures the signal strength of +network components, and more. Do you want to capture the sky? +</longdescription> +</pkgmetadata> |