aboutsummaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2003-12-16 20:15:43 +0000
committerPav Lucistnik <pav@FreeBSD.org>2003-12-16 20:15:43 +0000
commit3fc20d65a2b65bfd6db9bd4bf7306ffc95edb947 (patch)
treeaf2f9ce52ab0af294aa794dcb2d48be5b3a38fff /comms
parent33204a44d3e45c5a0f8057d3b9a7768d9ba7896a (diff)
downloadports-3fc20d65a2b65bfd6db9bd4bf7306ffc95edb947.tar.gz
ports-3fc20d65a2b65bfd6db9bd4bf7306ffc95edb947.zip
Notes
Diffstat (limited to 'comms')
-rw-r--r--comms/gnokii/Makefile3
-rw-r--r--comms/gnokii/distinfo2
-rw-r--r--comms/gnokii/files/patch-common-gsm-encoding.c21
3 files changed, 3 insertions, 23 deletions
diff --git a/comms/gnokii/Makefile b/comms/gnokii/Makefile
index 5b41dc2f409d..9c4436e11096 100644
--- a/comms/gnokii/Makefile
+++ b/comms/gnokii/Makefile
@@ -6,10 +6,11 @@
#
PORTNAME= gnokii
-PORTVERSION= 0.5.6
+PORTVERSION= 0.5.7
PORTEPOCH= 1
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_SAVANNAH} \
+ ftp://ftp.pl.gnokii.org/pub/gnokii/ \
ftp://ftp.gnokii.org/pub/gnokii/
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/comms/gnokii/distinfo b/comms/gnokii/distinfo
index 5619e29f68f2..a0fa8dda4d08 100644
--- a/comms/gnokii/distinfo
+++ b/comms/gnokii/distinfo
@@ -1 +1 @@
-MD5 (gnokii-0.5.6.tar.bz2) = 98b3cd228aa2843f5e29af39887ec419
+MD5 (gnokii-0.5.7.tar.bz2) = e4a01db48cd05bf673e33377f145f8cf
diff --git a/comms/gnokii/files/patch-common-gsm-encoding.c b/comms/gnokii/files/patch-common-gsm-encoding.c
deleted file mode 100644
index 8fbb347230fb..000000000000
--- a/comms/gnokii/files/patch-common-gsm-encoding.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- common/gsm-encoding.c.orig Sat Nov 8 12:15:34 2003
-+++ common/gsm-encoding.c Wed Dec 3 22:09:31 2003
-@@ -591,14 +591,16 @@
- size_t outleft, inleft, nconv;
- char *pin, *pout;
-
-+#if defined(HAVE_ICONV) && defined(HAVE_LANGINFO_CODESET)
-+ iconv_t cd;
-+#endif
-+
- outleft = outlen;
- inleft = inlen;
- pin = (char *)instring;
- pout = outstring;
-
- #if defined(HAVE_ICONV) && defined(HAVE_LANGINFO_CODESET)
-- iconv_t cd;
--
- cd = iconv_open("UTF-8", nl_langinfo(CODESET));
-
- nconv = iconv(cd, &pin, &inleft, &pout, &outleft);