1999-04-03 01:38:52 +00:00
|
|
|
# New ports collection makefile for: gftp
|
|
|
|
# Date Created: 21 Feb 1999
|
|
|
|
# Whom: Damjan Marion <dmarion@open.hr>
|
|
|
|
#
|
1999-08-25 05:57:29 +00:00
|
|
|
# $FreeBSD$
|
1999-04-03 01:38:52 +00:00
|
|
|
#
|
|
|
|
|
2000-04-12 05:31:29 +00:00
|
|
|
PORTNAME= gftp
|
2003-11-10 18:03:08 +00:00
|
|
|
PORTVERSION= 2.0.16
|
2003-07-24 17:53:02 +00:00
|
|
|
PORTREVISION= 0
|
1999-08-02 10:44:03 +00:00
|
|
|
CATEGORIES= ftp
|
1999-09-09 23:00:43 +00:00
|
|
|
MASTER_SITES= http://gftp.seul.org/ \
|
1999-11-23 03:16:50 +00:00
|
|
|
ftp://gftp.seul.org/pub/gftp/
|
2003-01-02 19:46:05 +00:00
|
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/}
|
1999-04-03 01:38:52 +00:00
|
|
|
|
2003-07-24 17:53:02 +00:00
|
|
|
MAINTAINER= oliver@FreeBSD.org
|
2003-05-12 16:22:37 +00:00
|
|
|
COMMENT= A free multithreaded GTK-based GUI ftp and sftp client
|
1999-04-03 01:38:52 +00:00
|
|
|
|
2000-07-25 07:11:09 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2003-01-02 19:46:05 +00:00
|
|
|
|
2003-08-08 13:27:51 +00:00
|
|
|
CONFIGURE_ARGS= --without-included-gettext
|
2000-10-05 07:22:56 +00:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LIBS="-L${LOCALBASE}/lib"
|
2000-07-25 07:11:09 +00:00
|
|
|
|
2003-01-02 19:46:05 +00:00
|
|
|
USE_GNOME+= gnomehack
|
2003-01-25 22:04:48 +00:00
|
|
|
USE_REINPLACE= yes
|
2003-01-02 19:46:05 +00:00
|
|
|
|
|
|
|
.if defined(WITHOUT_X11)
|
|
|
|
CONFIGURE_ARGS+= --disable-gtkport --disable-gtk20
|
|
|
|
PKGNAMESUFFIX= -nox11
|
|
|
|
LIB_DEPENDS+= glib12.3:${PORTSDIR}/devel/glib12
|
|
|
|
.else
|
|
|
|
USE_X_PREFIX= yes
|
|
|
|
WANT_GNOME= yes
|
|
|
|
.if defined(WITH_GTK2)
|
|
|
|
RUN_DEPENDS+= pkg-config:${PORTSDIR}/devel/pkgconfig
|
2003-02-07 18:59:45 +00:00
|
|
|
LIB_DEPENDS+= glib-2.0.200:${PORTSDIR}/devel/glib20 \
|
|
|
|
gtk-x11-2.0.200:${PORTSDIR}/x11-toolkits/gtk20
|
2003-01-02 19:46:05 +00:00
|
|
|
CONFIGURE_ENV+= _GTHREAD_LIBS="-lgthread-2.0"
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-gtk20
|
|
|
|
USE_GNOME+= gtk12
|
|
|
|
CONFIGURE_ENV+= _GTHREAD_LIBS="-lgthread12"
|
|
|
|
.endif
|
|
|
|
.endif
|
2000-07-25 07:11:09 +00:00
|
|
|
|
2000-10-05 07:22:56 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
1999-04-03 01:38:52 +00:00
|
|
|
|
2003-01-02 19:46:05 +00:00
|
|
|
MAN1= gftp.1
|
|
|
|
|
|
|
|
.if defined(WITHOUT_X11)
|
|
|
|
PLIST_SUB+= NOX11:="@comment "
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= NOX11:=""
|
|
|
|
.endif
|
|
|
|
|
2003-05-14 02:50:08 +00:00
|
|
|
.if ${HAVE_GNOME:Mgnomelibs}!="" && !defined(WITH_GTK2)
|
2002-09-29 21:38:29 +00:00
|
|
|
USE_GNOME+= gnomeprefix gnomelibs
|
2003-01-25 22:04:48 +00:00
|
|
|
PKGNAMESUFFIX+= -gnome
|
|
|
|
PLIST_SUB+= DATADIR="share/gnome"
|
|
|
|
MAKE_ENV= HAVE_GNOME=1
|
2002-09-22 19:48:41 +00:00
|
|
|
.else
|
2003-01-02 19:46:05 +00:00
|
|
|
PLIST_SUB+= DATADIR="share"
|
2000-10-05 07:22:56 +00:00
|
|
|
.endif
|
1999-05-17 19:52:14 +00:00
|
|
|
|
2003-01-02 19:46:05 +00:00
|
|
|
pre-everything::
|
|
|
|
@${ECHO} ""
|
|
|
|
@${ECHO} "You may use the following build options:"
|
|
|
|
@${ECHO} ""
|
|
|
|
@${ECHO} " WITHOUT_X11=yes Only build the text frontend."
|
|
|
|
@${ECHO} " WITH_GTK2=yes Use gtk 2.x instead of 1.x"
|
|
|
|
@${ECHO} ""
|
|
|
|
|
2002-09-22 19:48:41 +00:00
|
|
|
post-patch:
|
2003-08-08 13:27:51 +00:00
|
|
|
# @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
|
|
|
|
# s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
|
|
|
# s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
|
|
|
|
# s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
|
|
|
|
|
2003-01-25 22:04:48 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
|
2003-08-08 13:27:51 +00:00
|
|
|
s|DATADIRNAME=lib|DATADIRNAME=share|g ; \
|
|
|
|
s|"-lssl |& -lcrypto|' ${WRKSRC}/configure
|
2000-07-25 07:11:09 +00:00
|
|
|
|
2003-08-08 13:27:51 +00:00
|
|
|
# @${REINPLACE_CMD} -e 's|LDADD = |& @LIBINTL@ |g' \
|
|
|
|
# ${WRKSRC}/src/text/Makefile.in ${WRKSRC}/src/gtk/Makefile.in
|
2000-10-05 07:22:56 +00:00
|
|
|
.include <bsd.port.post.mk>
|