diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-09-16 03:36:56 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-09-16 03:36:56 +0800 |
commit | dc3487fa6dd4fbf155643b6c2a2fb4c2f2bd4223 (patch) | |
tree | 48266bfbe71f892a5bf9c55a5a5a61087d63d2fe /comms | |
parent | 0ab4240d8c4e8a9669318b085b1a46331a5c13e0 (diff) | |
download | freebsd-ports-gnome-dc3487fa6dd4fbf155643b6c2a2fb4c2f2bd4223.tar.gz freebsd-ports-gnome-dc3487fa6dd4fbf155643b6c2a2fb4c2f2bd4223.tar.zst freebsd-ports-gnome-dc3487fa6dd4fbf155643b6c2a2fb4c2f2bd4223.zip |
Xwota is a very simple Linux/FreeBSD/xBSD client for the WOTA Database
(Who is On The Air Database) written by me (IZ0ETE).
It's very similar to a DX Cluster client, but it works with the WOTA server.
If you don't known what is the WOTA DB, please read some info at
http://www.wotadb.org.
It's written in C and GTK, and it should work on the latest
Linux/BSD distributions.
Please report to me your successful installation. (Linux, FreeBSD at the moment)
WWW: http://people.fabaris.it/iz0ete/xwota/
- Diane VA3DB
db@db.net
PR: ports/103305
Submitted by: Diane Bruce <db at db.net
Diffstat (limited to 'comms')
-rw-r--r-- | comms/Makefile | 1 | ||||
-rw-r--r-- | comms/xwota/Makefile | 44 | ||||
-rw-r--r-- | comms/xwota/distinfo | 3 | ||||
-rw-r--r-- | comms/xwota/files/patch-Makefile.in | 19 | ||||
-rw-r--r-- | comms/xwota/files/patch-src_stuff.c | 10 | ||||
-rw-r--r-- | comms/xwota/pkg-descr | 14 | ||||
-rw-r--r-- | comms/xwota/pkg-plist | 11 |
7 files changed, 102 insertions, 0 deletions
diff --git a/comms/Makefile b/comms/Makefile index 8ed28de6fb08..3e2bfd947a11 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -121,6 +121,7 @@ SUBDIR += xdx SUBDIR += xlog SUBDIR += xnecview + SUBDIR += xwota SUBDIR += yagiuda SUBDIR += yaps SUBDIR += yawmppp diff --git a/comms/xwota/Makefile b/comms/xwota/Makefile new file mode 100644 index 000000000000..bf08bbcdbe34 --- /dev/null +++ b/comms/xwota/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: xwota +# Date created: September 13 2006 +# Whom: Diane Bruce <db@db.net +# +# $FreeBSD$ +# + +PORTNAME= xwota +PORTVERSION= 0.4 +CATEGORIES= comms hamradio +MASTER_SITES= http://people.fabaris.it/iz0ete/xwota/ + +MAINTAINER= db@db.net +COMMENT= X version of who is on the air + +USE_GNOME= gtk20 +USE_GMAKE= yes +GNU_CONFIGURE= yes +USE_AUTOTOOLS= libtool:15 + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for d in ${WRKSRC}/README \ + ${WRKSRC}/COPYING \ + ${WRKSRC}/AUTHORS \ + ${WRKSRC}/ChangeLog \ + ${WRKSRC}/INSTALL \ + ${WRKSRC}/NEWS \ + ${WRKSRC}/TODO + @${INSTALL_DATA} ${WRKSRC}/${d} ${DOCSDIR} +.endfor + @${ECHO} "" + @${ECHO} "xwota docs installed in ${DOCSDIR}" + @${ECHO} "" +.endif + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= does not build 4.x +.endif + +.include <bsd.port.post.mk> diff --git a/comms/xwota/distinfo b/comms/xwota/distinfo new file mode 100644 index 000000000000..d1b4bd1d318a --- /dev/null +++ b/comms/xwota/distinfo @@ -0,0 +1,3 @@ +MD5 (xwota-0.4.tar.gz) = 598b96037c27c3bff4d0146750cc5574 +SHA256 (xwota-0.4.tar.gz) = 8c8f996270e4e93769ba0604c94bfaf5f8226b43eccb0b39c4938e4b5a7eec3c +SIZE (xwota-0.4.tar.gz) = 359457 diff --git a/comms/xwota/files/patch-Makefile.in b/comms/xwota/files/patch-Makefile.in new file mode 100644 index 000000000000..64a1534abe18 --- /dev/null +++ b/comms/xwota/files/patch-Makefile.in @@ -0,0 +1,19 @@ +--- Makefile.in.orig Fri Jul 21 04:43:39 2006 ++++ Makefile.in Fri Sep 15 12:12:49 2006 +@@ -593,7 +593,6 @@ + done + install: install-recursive + install-exec: install-exec-recursive +-install-data: install-data-recursive + uninstall: uninstall-recursive + + install-am: all-am +@@ -635,7 +634,7 @@ + + info-am: + +-install-data-am: install-xwotadocDATA ++install-data-am: + + install-exec-am: + diff --git a/comms/xwota/files/patch-src_stuff.c b/comms/xwota/files/patch-src_stuff.c new file mode 100644 index 000000000000..4bbebc7a6979 --- /dev/null +++ b/comms/xwota/files/patch-src_stuff.c @@ -0,0 +1,10 @@ +--- src/stuff.c.orig Wed Sep 13 15:23:19 2006 ++++ src/stuff.c Wed Sep 13 15:24:18 2006 +@@ -22,6 +22,7 @@ + #include "global.h" + #include "stuff.h" + ++void private_messages_log(gchar *date_msg_log,gchar *time_log,gchar *from,gchar *to,gchar *text); + + + int load_preferences() diff --git a/comms/xwota/pkg-descr b/comms/xwota/pkg-descr new file mode 100644 index 000000000000..f8b57f318bf5 --- /dev/null +++ b/comms/xwota/pkg-descr @@ -0,0 +1,14 @@ +Xwota is a very simple Linux/FreeBSD/xBSD client for the WOTA Database +(Who is On The Air Database) written by me (IZ0ETE). +It's very similar to a DX Cluster client, but it works with the WOTA server. +If you don't known what is the WOTA DB, please read some info at +http://www.wotadb.org. +It's written in C and GTK, and it should work on the latest +Linux/BSD distributions. +Please report to me your successful installation. (Linux, FreeBSD at the moment) + + +WWW: http://people.fabaris.it/iz0ete/xwota/ + +- Diane VA3DB +db@db.net diff --git a/comms/xwota/pkg-plist b/comms/xwota/pkg-plist new file mode 100644 index 000000000000..1e1e4432ff37 --- /dev/null +++ b/comms/xwota/pkg-plist @@ -0,0 +1,11 @@ +bin/xwota +%%DATADIR%%/country.txt +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% |