head	1.8;
access;
symbols
	RELEASE_8_3_0:1.4
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.2
	RELEASE_8_1_0:1.2
	RELEASE_7_3_0:1.2
	RELEASE_8_0_0:1.2
	RELEASE_7_2_0:1.1
	RELEASE_7_1_0:1.1
	RELEASE_6_4_0:1.1
	RELEASE_5_EOL:1.1
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1
	RELEASE_6_1_0:1.1
	RELEASE_5_5_0:1.1
	RELEASE_6_0_0:1.1
	RELEASE_5_4_0:1.1;
locks; strict;
comment	@# @;


1.8
date	2012.11.17.06.01.00;	author svnexp;	state Exp;
branches;
next	1.7;

1.7
date	2012.10.04.10.48.50;	author bapt;	state Exp;
branches;
next	1.6;

1.6
date	2012.08.02.09.02.43;	author cs;	state Exp;
branches;
next	1.5;

1.5
date	2012.06.28.18.37.18;	author az;	state Exp;
branches;
next	1.4;

1.4
date	2012.02.19.15.44.09;	author eadler;	state Exp;
branches;
next	1.3;

1.3
date	2010.12.29.20.04.30;	author pgollucci;	state Exp;
branches;
next	1.2;

1.2
date	2009.08.22.00.34.47;	author amdmi3;	state Exp;
branches;
next	1.1;

1.1
date	2005.03.09.10.06.40;	author flz;	state Exp;
branches;
next	;


desc
@@


1.8
log
@Switch exporter over
@
text
@# Created by: Andrew Marks <andrew@@amrx.net>
# $FreeBSD: head/security/aimsniff/Makefile 305249 2012-10-04 10:48:50Z bapt $

PORTNAME=	aimsniff
PORTVERSION=	0.9d
CATEGORIES=	security
MASTER_SITES=	SF/${PORTNAME}/AIM%20Sniff/${PORTVERSION}

MAINTAINER=	ports@@FreeBSD.org
COMMENT=	AOL Instant Messenger Sniffing and Reading Tool

RUN_DEPENDS=	p5-Net-Pcap>=0:${PORTSDIR}/net/p5-Net-Pcap\
		p5-NetPacket>=0:${PORTSDIR}/net/p5-NetPacket\
		p5-DBI>=0:${PORTSDIR}/databases/p5-DBI\
		p5-Unicode-String>=0:${PORTSDIR}/converters/p5-Unicode-String\
		p5-Proc-Daemon>=0:${PORTSDIR}/devel/p5-Proc-Daemon\
		p5-Proc-Simple>=0:${PORTSDIR}/devel/p5-Proc-Simple\
		p5-Unix-Syslog>=0:${PORTSDIR}/sysutils/p5-Unix-Syslog

OPTIONS_DEFINE=	SUID_ROOT DOCS
SUID_ROOT_DESC=	Install aimsniff with set-uid bit

PORTDOCS=	README table.struct rc.aimsniff

NO_BUILD=	yes
USE_PERL5=	yes

PLIST_FILES=	bin/aimsniff

.include <bsd.port.options.mk>

.if !exists(${LOCALBASE}/lib/perl5/${PERL_VERSION}/${PERL_ARCH}/GDBM_File.pm)
#IGNORE=		You need perl compiled with GDBM support
.endif

do-install:
	${INSTALL_SCRIPT} ${WRKSRC}/aimSniff.pl ${PREFIX}/bin/aimsniff
.if ${PORT_OPTIONS:MSUID_ROOT}
	${CHMOD} u+s ${PREFIX}/bin/aimsniff
.else
.endif

post-install:
.if ${PORT_OPTIONS:MDOCS}
	@@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
	${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>
@


1.7
log
@SVN rev 305249 on 2012-10-04 10:48:50Z by bapt

Convert to new options framework
@
text
@d2 1
a2 1
# $FreeBSD$
@


1.6
log
@SVN rev 301858 on 2012-08-02 09:02:43Z by cs

- Fix typos in COMMENT
- Enforce the now clarified rules from the Porter's Handbook (e.g. no dots, no
  A/An, etc.)
@
text
@d1 1
a1 4
# New ports collection makefile for: aimsniff
# Date created:        4 December 2004
# Whom:                Andrew Marks (andrew@@amrx.net)
#
d20 2
a21 1
OPTIONS=	SUID_ROOT "Install aimsniff with set-uid bit" off
d30 1
a30 1
.include <bsd.port.pre.mk>
d38 1
a38 1
.if defined(WITH_SUID_ROOT)
d44 1
a44 1
.if !defined(NOPORTDOCS)
d51 1
a51 1
.include <bsd.port.post.mk>
@


1.5
log
@- Remove SITE_PERL from *_DEPENDS
@
text
@d13 1
a13 1
COMMENT=	AOL Instant Messanger Sniffing and Reading Tool
@


1.4
log
@Remove quotes from BROKEN and IGNORE as they are not required
Reset maintainer due to bouncing mail
@
text
@d15 7
a21 7
RUN_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/Net/Pcap.pm:${PORTSDIR}/net/p5-Net-Pcap\
		${SITE_PERL}/NetPacket.pm:${PORTSDIR}/net/p5-NetPacket\
		${SITE_PERL}/${PERL_ARCH}/auto/DBI/DBI.so:${PORTSDIR}/databases/p5-DBI\
		${SITE_PERL}/${PERL_ARCH}/Unicode/String.pm:${PORTSDIR}/converters/p5-Unicode-String\
		${SITE_PERL}/Proc/Daemon.pm:${PORTSDIR}/devel/p5-Proc-Daemon\
		${SITE_PERL}/Proc/Simple.pm:${PORTSDIR}/devel/p5-Proc-Simple\
		${SITE_PERL}/${PERL_ARCH}/Unix/Syslog.pm:${PORTSDIR}/sysutils/p5-Unix-Syslog
@


1.3
log
@- DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.

PR:             ports/153292
Submitted by:   myself (pgollucci)
Tested by:      -exp run by pav
Approved by:    portmgr (pav)
@
text
@d12 1
a12 1
MAINTAINER=	andrew@@amrx.net
d35 1
a35 1
#IGNORE=		"You need perl compiled with GDBM support"
@


1.2
log
@- Switch SourceForge ports to the new File Release System: categories starting with P,R,S
@
text
@a10 1
DISTNAME=	${PORTNAME}-${PORTVERSION}
@


1.1
log
@- Add aimsniff 0.9d, an AOL Instant Messanger Sniffing and Reading Tool.

PR:		ports/63936
Submitted by:	Andrew Marks <spam@@amrx.net>
Approved by:	pav (mentor)
@
text
@d10 1
a10 2
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	aimsniff
@

