openbsd-ports/net/spectrum-tools/Makefile
sthen 6098741cc6 import spectrum-tools:
Spectrum-Tools is a set of utilities for using the Wi-Spy USB spectrum
analyzer tools from Metageek LLC (http://www.metageek.net). They include
userspace drivers for the hardware (implemented via libusb), a graphing 
UI built on GTK/Cairo, network servers for remote devices, and simple 
utilities for developing additional tools.

This package contains the GTK user interface, spectool_gtk.
Non-GUI tools can be found in the spectrum-tools-utils package.

thanks to matthieu@ for testing and ckuethe@ for pointing me at the
svn code (better than the previous release). it's not perfect (some
X resource leaks) but usable.
2008-06-12 21:33:57 +00:00

62 lines
1.6 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2008/06/12 21:33:57 sthen Exp $
COMMENT-main = Graphical tools for the MetaGeek Wi-spy spectrum analyser
COMMENT-utils = Tools for the MetaGeek Wi-spy spectrum analyser
V = 20080314
DISTNAME = spectools-$V
PKGNAME = spectrum-tools-$V
CATEGORIES = net
MASTER_SITES = http://www.kismetwireless.net/code/
MASTER_SITES = http://spacehopper.org/mirrors/
HOMEPAGE = http://www.kismetwireless.net/spectools/
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
# GPLv2+
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MULTI_PACKAGES = -main -utils
FULLPKGNAME-main = spectrum-tools-$V
FULLPKGNAME-utils = spectrum-tools-utils-$V
WANTLIB = c m pthread usb
WANTLIB-main = ${WANTLIB} \
X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
Xi Xinerama Xrandr Xrender atk-1.0 cairo expat fontconfig \
freetype glib-2.0 glitz gmodule-2.0 gobject-2.0 iconv \
intl pango-1.0 pangocairo-1.0 pangoft2-1.0 pixman-1 \
png z
WANTLIB-utils = ${WANTLIB} ncurses
LIB_DEPENDS = :libusb-*:devel/libusb
LIB_DEPENDS-main += ${LIB_DEPENDS} \
gtk-x11-2.0::x11/gtk+2 \
gdk-x11-2.0::x11/gtk+2 \
gdk_pixbuf-2.0::x11/gtk+2
RUN_DEPENDS-main = :spectrum-tools-utils-*:net/spectrum-tools,-utils
CONFIGURE_STYLE = gnu
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include" \
CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
USE_GMAKE = Yes
NO_REGRESS = Yes
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spectrum-tools
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/spectrum-tools
.include <bsd.port.mk>