mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
d2fcee2d72
Trim headers where applicable and in the cases where the maintainer is the original author remove the headers entirely. Update mirror to point to the newer location (old one redirected). Submitted by: Nicolas Jombart <ecu@200ok.org> (maintainer, private mail)
34 lines
785 B
Makefile
34 lines
785 B
Makefile
# $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= ecu@200ok.org
|
|
COMMENT= A tool to create and send IP packets with a graphical GTK front-end
|
|
|
|
USE_GNOME= gtk12
|
|
USE_BZIP2= 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>
|