View | Details | Raw Unified | Return to bug 243843
Collapse All | Expand All

(-)Makefile (-17 / +24 lines)
Lines 2-36 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	yafc
4
PORTNAME=	yafc
5
PORTVERSION=	1.2.5
5
DISTVERSIONPREFIX=	v
6
PORTREVISION=	4
6
DISTVERSION=	1.3.7
7
CATEGORIES=	ftp
7
CATEGORIES=	ftp
8
MASTER_SITES=	http://www.yafc-ftp.com/downloads/
9
8
10
MAINTAINER=	wg@FreeBSD.org
9
MAINTAINER=	wg@FreeBSD.org
11
COMMENT=	Yet another FTP client, similar to ftp(1)
10
COMMENT=	Yet another FTP client, similar to ftp(1)
12
11
13
BROKEN=		unfetchable
14
15
LICENSE=	GPLv2+
12
LICENSE=	GPLv2+
16
13
17
OPTIONS_DEFINE=	BASH EXAMPLES NLS SSH READLINE
14
BUILD_DEPENDS=	glib>0:devel/glib20
18
OPTIONS_DEFAULT=BASH SSH
19
15
20
USES=		gmake ssl tar:xz
16
USES=		autoreconf gmake makeinfo pkgconfig ssl tar:xz
17
USE_GITHUB=	yes
18
GH_ACCOUNT=	sebastinas
19
21
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--with-krb5=no \
22
		--with-openssl=${OPENSSLBASE} \
23
		--with-socks5=no \
24
		--with-socks=no
22
CONFIGURE_ENV=	ac_cv_ipv6=yes
25
CONFIGURE_ENV=	ac_cv_ipv6=yes
23
CONFIGURE_ARGS=	--with-socks=no --with-socks5=no --with-krb4=no \
24
		--with-krb5=no --with-openssl=${OPENSSLBASE}
25
26
26
CPPFLAGS+=	-I${LOCALBASE}/include
27
CPPFLAGS+=	-I${LOCALBASE}/include
27
LDFLAGS+=	-L${LOCALBASE}/lib
28
LDFLAGS+=	-L${LOCALBASE}/lib
28
29
29
PORTEXAMPLES=	inputrc yafcrc
30
INFO=		yafc
30
PLIST_FILES=	bin/yafc \
31
PLIST_FILES=	bin/yafc \
31
		man/man1/yafc.1.gz
32
		man/man1/yafc.1.gz
32
INFO=		yafc
33
PORTEXAMPLES=	inputrc yafcrc
33
34
35
OPTIONS_DEFINE=		BASH EXAMPLES NLS READLINE SSH
36
OPTIONS_DEFAULT=	BASH SSH
37
38
BASH_CONFIGURE_OFF=	--with-bash-completion=no
39
BASH_CONFIGURE_ON=	--with-bash-completion=yes
40
BASH_PLIST_FILES=	etc/bash_completion.d/yafc
41
34
NLS_USES=		gettext gnome
42
NLS_USES=		gettext gnome
35
NLS_USE=		GNOME=intltool
43
NLS_USE=		GNOME=intltool
36
NLS_CONFIGURE_WITH=	gettext=${LOCALBASE}
44
NLS_CONFIGURE_WITH=	gettext=${LOCALBASE}
Lines 37-51 Link Here
37
NLS_PLIST_FILES=	share/locale/de/LC_MESSAGES/yafc.mo \
45
NLS_PLIST_FILES=	share/locale/de/LC_MESSAGES/yafc.mo \
38
			share/locale/sv/LC_MESSAGES/yafc.mo
46
			share/locale/sv/LC_MESSAGES/yafc.mo
39
47
40
READLINE_USES=		readline
48
READLINE_USES=			readline
41
READLINE_CONFIGURE_WITH=readline
49
READLINE_CONFIGURE_WITH=	readline
42
50
43
SSH_LIB_DEPENDS=	libssh.so:security/libssh
51
SSH_LIB_DEPENDS=	libssh.so:security/libssh
44
SSH_CONFIGURE_OFF=	--without-ssh
52
SSH_CONFIGURE_OFF=	--without-ssh
45
53
46
BASH_CONFIGURE_ON=	--with-bash-completion=yes
54
pre-configure-NLS-on:
47
BASH_PLIST_FILES=	etc/bash_completion.d/yafc
55
	@(cd ${WRKSRC} && ${LOCALBASE}/bin/glib-gettextize -f -c)
48
BASH_CONFIGURE_OFF=	--with-bash-completion=no
49
56
50
post-install:
57
post-install:
51
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
58
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(-)distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (yafc-1.2.5.tar.xz) = df93b1b8795b49852d555b57b775da4af4fe10baa420b0321f80689f94c45d81
1
TIMESTAMP = 1579745625
2
SIZE (yafc-1.2.5.tar.xz) = 364664
2
SHA256 (sebastinas-yafc-v1.3.7_GH0.tar.gz) = 332fca7508c2187e45bc7b3c8f1e7288e9cf8109636945035caa628a347869ff
3
SIZE (sebastinas-yafc-v1.3.7_GH0.tar.gz) = 237011
(-)files/patch-m4_glib-gettext.m4 (+13 lines)
Line 0 Link Here
1
--- m4/glib-gettext.m4.orig	2020-01-23 10:12:04 UTC
2
+++ m4/glib-gettext.m4
3
@@ -36,8 +36,8 @@ dnl We go to great lengths to make sure that aclocal w
4
 dnl try to pull in the installed version of these macros
5
 dnl when running aclocal in the glib directory.
6
 dnl
7
-m4_copy([AC_DEFUN],[glib_DEFUN])
8
-m4_copy([AC_REQUIRE],[glib_REQUIRE])
9
+m4_copy_force([AC_DEFUN],[glib_DEFUN])
10
+m4_copy_force([AC_REQUIRE],[glib_REQUIRE])
11
 dnl
12
 dnl At the end, if we're not within glib, we'll define the public
13
 dnl definitions in terms of our private definitions.

Return to bug 243843