diff options
author | pav <pav@FreeBSD.org> | 2004-03-24 04:01:18 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-03-24 04:01:18 +0800 |
commit | 210aa7e5b8b75da4e276cf6cdfff7a9d17ee707c (patch) | |
tree | 4468f759a8e4a09a256b84a270f810a83d0908de /comms/obexapp/Makefile | |
parent | 6983f6eb3e91543c6ce26b8ff39d25297a552576 (diff) | |
download | freebsd-ports-gnome-210aa7e5b8b75da4e276cf6cdfff7a9d17ee707c.tar.gz freebsd-ports-gnome-210aa7e5b8b75da4e276cf6cdfff7a9d17ee707c.tar.zst freebsd-ports-gnome-210aa7e5b8b75da4e276cf6cdfff7a9d17ee707c.zip |
Add obexapp, a utility written by Maksim Yevmenkin (emax@FreeBSD.org)
to transport files over OBEX protocol. This only works for Bluetooth
and needs -CURRENT as of January 20 or newer (sdpd import) to work,
so IGNORE on 5.2.1-R and older.
PR: ports/64597
Submitted by: Guido Falsi <mad@madpilot.net>
Diffstat (limited to 'comms/obexapp/Makefile')
-rw-r--r-- | comms/obexapp/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/comms/obexapp/Makefile b/comms/obexapp/Makefile new file mode 100644 index 000000000000..f854f9f6d8db --- /dev/null +++ b/comms/obexapp/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: obexapp +# Date created: 22 March 2004 +# Whom: Guido Falsi <mad@madpilot.net> +# +# $FreeBSD$ +# + +PORTNAME= obexapp +PORTVERSION= 1.1 +CATEGORIES= comms net +MASTER_SITES= http://www.geocities.com/m_evmenkin/ + +MAINTAINER= mad@madpilot.net +COMMENT= Obex application to transfer objects to mobile equipment + +LIB_DEPENDS= openobex-1.0.1:${PORTSDIR}/comms/openobex + +USE_GNOME= glib12 +WRKSRC= ${WRKDIR}/${PORTNAME} + +MAN1= obexapp.1 +MANCOMPRESSED= yes +PLIST_FILES= bin/obexapp + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 502101 +IGNORE= Needs -CURRENT from 20 Jan 2004 or later (sdpd) +.endif + +.include <bsd.port.post.mk> |