View | Details | Raw Unified | Return to bug 193185 | Differences between
and this patch

Collapse All | Expand All

(-)ipsorc/Makefile (-12 / +17 lines)
Lines 1-3 Link Here
1
# Created by: C Hutchinson <portmaster@bsdforge.com>
1
# $FreeBSD$
2
# $FreeBSD$
2
3
3
PORTNAME=	ipsorc
4
PORTNAME=	ipsorc
Lines 5-19 Link Here
5
PORTREVISION=	4
6
PORTREVISION=	4
6
CATEGORIES=	net security
7
CATEGORIES=	net security
7
MASTER_SITES=	http://200ok.org/distfiles/ipsorc/ \
8
MASTER_SITES=	http://200ok.org/distfiles/ipsorc/ \
8
		http://sorcerer.mirrors.pair.com/sources/ipsorcery/${PORTVERSION}/
9
		http://bsdforge.com/projects/source/net/ipsorcery/
9
10
10
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	portmaster@bsdforge.com
11
COMMENT=	Tool to create and send IP packets with a graphical GTK front-end
12
COMMENT=	Tool to create and send IP packets with a graphical GTK front-end
12
13
14
LICENSE=	GPLv2
15
13
USE_GNOME=	gtk12
16
USE_GNOME=	gtk12
14
USES=	tar:bzip2
17
USES=		tar:bzip2
15
18
16
NO_STAGE=	yes
19
OPTIONS_DEFINE=	DOCS
20
DOCS=	README HOWTO
21
PROGRAMS=	ipmagic magic
22
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
23
24
.include <bsd.port.options.mk>
25
17
post-patch:
26
post-patch:
18
	@${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old
27
	@${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old
19
	@${SED} s,gtk-config,${GTK_CONFIG}, < ${WRKSRC}/Makefile.old \
28
	@${SED} s,gtk-config,${GTK_CONFIG}, < ${WRKSRC}/Makefile.old \
Lines 21-34 Link Here
21
	@${RM} ${WRKSRC}/Makefile.old
30
	@${RM} ${WRKSRC}/Makefile.old
22
31
23
do-install:
32
do-install:
24
.for file in ipmagic magic
33
	(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PROGRAMS} ${STAGEDIR}${PREFIX}/bin)
25
	${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin
34
.if ${PORT_OPTIONS:MDOCS}
26
.endfor
35
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
27
.if !defined(NOPORTDOCS)
36
	(cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR})
28
	${MKDIR} ${DOCSDIR}
29
.for i in README HOWTO
30
	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
31
.endfor
32
.endif
37
.endif
33
38
34
.include <bsd.port.mk>
39
.include <bsd.port.mk>
(-)ipsorc/pkg-descr (-5 / +5 lines)
Lines 1-6 Link Here
1
IP Sorcery is a network troubleshooting and firewall testing tool. 
1
IP Sorcery is a network troubleshooting and firewall testing tool. The prorgram
2
The prorgram works by generating custom "packets" and sending them 
2
works by generating custom "packets" and sending them to a target host. Thus
3
to a target host. Thus testing the authenticity of firewall rules 
3
testing the authenticity of firewall rules and host verification. It also has a
4
and host verification. It also has a graphical user interface.
4
graphical user interface.
5
5
6
WWW: http://www.mimisbrunnr.net/~case/ipsorcery.html
6
WWW: http://BSDforge.com/projects/net/ipsorcery/

Return to bug 193185