blob: caa70dcc7d48562cafc6bebde11fd7a599f96d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: kftpgrabber
# Date created: Thu Aug 19 00:35:34 CEST 2004
# Whom: Markus Brueffer <markus@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= kftpgrabber
PORTVERSION= 0.5.0
PORTREVISION= 1
CATEGORIES= ftp kde
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= markus@FreeBSD.org
COMMENT= Graphical FTP client for KDE
USE_BZIP2= yes
USE_KDELIBS_VER=3
USE_GMAKE= yes
USE_OPENSSL= yes
GNU_CONFIGURE= yes
USE_REINPLACE= yes
OPTIONS= HOWL "ZeroConf (Rendezvous) support" on \
QSA "QSA scripting support" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_HOWL)
LIB_DEPENDS+= howl:${PORTSDIR}/net/howl
.endif
.if !defined(WITHOUT_QSA)
LIB_DEPENDS+= qsa.1:${PORTSDIR}/devel/qsa
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.post.mk>
|