mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
d9fb332eb9
- Add sanity checking to avoid GTK assertion errors due to missing pixmaps. - Resolve two known vulnerabilities: http://secunia.com/advisories/13536/ - Replace tmpnam with mkstemp - Disallow server-provided absolute filenames Hopefully that's enough to get the port back in action. PR: ports/92787 Submitted by: Shaun Amott <shaun@inerd.com>
36 lines
780 B
Makefile
36 lines
780 B
Makefile
# New ports collection makefile for: IglooFTP
|
|
# Date created: 3 May 1999
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= IglooFTP
|
|
PORTVERSION= 0.6.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= ${MASTER_SITE_SUNSITE} \
|
|
ftp://littleigloo.org/pub/iglooftp/
|
|
MASTER_SITE_SUBDIR= system/network/file-transfer
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Easy to use FTP client for X Window System
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gtk12
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/../share/docs/LICENSE~
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
.for file in AUTHORS BUGS COPYRIGHT THANKS TODO
|
|
${INSTALL_DATA} ${WRKSRC}/../${file} ${PREFIX}/share/IglooFTP/docs
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|