1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/ftp/IglooFTP/Makefile
Tilman Keskinoz d2d9f64a68 Fix build with gcc 3.4
Reported by:	pointyhat

Mark IGNORE on amd64, crahes on startup.
Probably broken on other 64bit archs too, because of a lot of LP64-warnings.
2004-08-14 09:48:27 +00:00

42 lines
874 B
Makefile

# New ports collection makefile for: IglooFTP
# Date created: 3 May 1999
# Whom: Andrey Zakhvatov
#
# $FreeBSD$
#
PORTNAME= IglooFTP
PORTVERSION= 0.6.1
PORTREVISION= 1
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
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64"
IGNORE= "crashes on startup"
.endif
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.post.mk>