freebsd-ports/ftp/gftp/Makefile
Oliver Lehmann ab44d03168 move from X11BASE to LOCALBASE
bump PORTREVISION
2007-05-27 14:26:21 +00:00

85 lines
1.9 KiB
Makefile

# New ports collection makefile for: gftp
# Date Created: 21 Feb 1999
# Whom: Damjan Marion <dmarion@open.hr>
#
# $FreeBSD$
#
PORTNAME= gftp
PORTVERSION= 2.0.18
PORTREVISION= 4
CATEGORIES= ftp
MASTER_SITES= http://gftp.seul.org/ \
ftp://gftp.seul.org/pub/gftp/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/}
MAINTAINER= oliver@FreeBSD.org
COMMENT= A free multithreaded GTK-based GUI ftp and sftp client
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-included-gettext
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
WANT_GNOME= yes
OPTIONS= X11 "Build with X11 frontend" on \
GTK1 "gtk12 instead of gtk2" off \
NLS "Native Language Support via gettext utilities" on
.if !defined(WITHOUT_X11)
USE_XLIB= yes
.endif
.include <bsd.port.pre.mk>
USE_GNOME+= gnomehack
.if defined(WITHOUT_X11)
CONFIGURE_ARGS+=--disable-gtkport --disable-gtk20
PKGNAMESUFFIX= -nox11
USE_GNOME+= glib12
PLIST_SUB+= NOX11:="@comment "
.else
PLIST_SUB+= NOX11:=""
WANT_GNOME= yes
.if defined(WITH_GTK1)
USE_GNOME+= gtk12
CONFIGURE_ENV+= _GTHREAD_LIBS="-lgthread-12"
CONFIGURE_ARGS+=--disable-gtk20
.else
USE_GNOME+= gtk20
CONFIGURE_ENV+= _GTHREAD_LIBS="-lgthread-2.0"
.endif
.endif
MAN1= gftp.1
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.if ${HAVE_GNOME:Mgnomelibs}!="" && !defined(WITH_GTK2)
USE_GNOME+= gnomeprefix gnomelibs
PKGNAMESUFFIX+= -gnome
PLIST_SUB+= DATADIR="share/gnome" MYGNOME=""
MAKE_ENV= HAVE_GNOME=1
.else
PLIST_SUB+= DATADIR="share" MYGNOME="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
s|"-lssl |& -lcrypto|' ${WRKSRC}/configure
.if defined(WITHOUT_X11)
@${REINPLACE_CMD} -e 's|: install-pkgdataDATA|: |' \
${WRKSRC}/docs/sample.gftp/Makefile.in
.endif
.include <bsd.port.post.mk>