blob: a977e046eb5ce41b81b1f9be8e0f4710d339a3c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $FreeBSD$
PORTNAME= ipsorc
PORTVERSION= 1.7.5
PORTREVISION= 4
CATEGORIES= net security
MASTER_SITES= http://200ok.org/distfiles/ipsorc/ \
http://sorcerer.mirrors.pair.com/sources/ipsorcery/${PORTVERSION}/
MAINTAINER= ports@FreeBSD.org
COMMENT= Tool to create and send IP packets with a graphical GTK front-end
USE_GNOME= gtk12
USES= tar:bzip2
NO_STAGE= yes
post-patch:
@${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old
@${SED} s,gtk-config,${GTK_CONFIG}, < ${WRKSRC}/Makefile.old \
> ${WRKSRC}/Makefile
@${RM} ${WRKSRC}/Makefile.old
do-install:
.for file in ipmagic magic
${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in README HOWTO
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|