2009-06-29 00:27:03 +02:00
|
|
|
# Ports collection makefile for: bareftp
|
|
|
|
# Date created: Sat June 20, 2009
|
|
|
|
# Whom: Chris Petrik (chris@officialunix.com)
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= bareftp
|
2011-08-06 10:20:35 +02:00
|
|
|
PORTVERSION= 0.3.8
|
2009-06-29 00:27:03 +02:00
|
|
|
CATEGORIES= ftp
|
2011-01-02 15:11:44 +01:00
|
|
|
MASTER_SITES= http://www.bareftp.org/release/
|
2009-06-29 00:27:03 +02:00
|
|
|
|
2011-08-06 10:20:35 +02:00
|
|
|
MAINTAINER= mono@FreeBSD.org
|
2009-06-29 00:27:03 +02:00
|
|
|
COMMENT= Ftp client made in C sharp
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
2010-01-17 05:12:54 +01:00
|
|
|
CONFIGURE_ARGS= --datarootdir="${PREFIX}/share" --libdir="${PREFIX}/lib" \
|
2010-10-17 11:43:01 +02:00
|
|
|
--localedir="${PREFIX}/share/locale" --includedir="${LOCALBASE}/include"
|
2009-06-29 00:27:03 +02:00
|
|
|
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
USE_GNOME= gtksharp20 gnomesharp20
|
|
|
|
USE_GMAKE= yes
|
|
|
|
|
2010-02-04 00:18:18 +01:00
|
|
|
USE_LDCONFIG= yes
|
|
|
|
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
|
2010-01-17 05:12:54 +01:00
|
|
|
MAN1= bareftp.1
|
|
|
|
|
2010-10-17 11:43:01 +02:00
|
|
|
OPTIONS= KEYRING "Support for Gnome Keyring" on
|
|
|
|
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
|
|
|
.if defined(WITHOUT_KEYRING)
|
|
|
|
CONFIGURE_ARGS+= --without-gnomekeyring
|
|
|
|
.else
|
|
|
|
KEYRING_DETECT= ${LOCALBASE}/libdata/pkgconfig/gnome-keyring-sharp-1.0.pc
|
|
|
|
BUILD_DEPENDS+= ${KEYRING_DETECT}:${PORTSDIR}/security/gnome-keyring-sharp
|
|
|
|
RUN_DEPENDS+= ${KEYRING_DETECT}:${PORTSDIR}/security/gnome-keyring-sharp
|
|
|
|
.endif
|
|
|
|
|
2009-06-29 00:27:03 +02:00
|
|
|
# TODO
|
|
|
|
# Ugly way but configure ignore "--localedir=" fu* ;/
|
|
|
|
pre-build:
|
|
|
|
@${REINPLACE_CMD} -e 's|$$(prefix)/$$(DATADIRNAME)|${PREFIX}/share|g' \
|
|
|
|
${WRKSRC}/po/Makefile
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|