1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Update to 1.4.1

PR:		136165
Submitted by:	John Prather <john.c.prather@gmail.com> (maintainer)
This commit is contained in:
Martin Wilke 2009-07-05 22:15:21 +00:00
parent 1c0759a459
commit 7b0351f219
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=237195
7 changed files with 28 additions and 83 deletions

View File

@ -6,7 +6,7 @@
# #
PORTNAME= pidgin-sipe PORTNAME= pidgin-sipe
PORTVERSION= 1.4.1 PORTVERSION= 1.5.0
CATEGORIES= net-im CATEGORIES= net-im
MASTER_SITES= SF/sipe MASTER_SITES= SF/sipe
@ -26,8 +26,7 @@ USE_GETTEXT= yes
CFLAGS+= "-I/${LOCALBASE}/include" CFLAGS+= "-I/${LOCALBASE}/include"
LIBS+= "-L/${LOCALBASE}/lib" LIBS+= "-L/${LOCALBASE}/lib"
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" \ CONFIGURE_ENV+= LIBS="${LIBS}" \
LIBS="${LIBS}" \
COM_ERR_CFLAGS="-I/usr/include" \ COM_ERR_CFLAGS="-I/usr/include" \
COM_ERR_LIBS="-L/usr/lib -lcom_err" COM_ERR_LIBS="-L/usr/lib -lcom_err"

View File

@ -1,3 +1,3 @@
MD5 (pidgin-sipe-1.4.1.tar.bz2) = d1300018eb74008a48e55653086f24e1 MD5 (pidgin-sipe-1.5.0.tar.bz2) = 8d27efe5d98d88385736d92d9aa0c924
SHA256 (pidgin-sipe-1.4.1.tar.bz2) = d613471b0d19441b162ea64679d7b2961a7d9d42f0007cf63400f04517f56f58 SHA256 (pidgin-sipe-1.5.0.tar.bz2) = 32747093d555de1cd1216d2c630b47102e251427d522f59820d5d67cdb731fd6
SIZE (pidgin-sipe-1.4.1.tar.bz2) = 334875 SIZE (pidgin-sipe-1.5.0.tar.bz2) = 343652

View File

@ -1,16 +0,0 @@
*** src/sipe-sign.c.orig Thu May 7 11:58:37 2009
--- src/sipe-sign.c Thu May 7 11:59:03 2009
***************
*** 26,32 ****
--- 26,36 ----
#include <errno.h>
#include <ctype.h>
#ifndef _WIN32
+ #ifdef __FreeBSD__
+ #include <com_err.h>
+ #else
#include <et/com_err.h>
+ #endif
#else
#include <protocols/zephyr/com_err.h>
#include "internal.h"

View File

@ -0,0 +1,19 @@
*** src/sipe.c.orig Thu Jul 2 11:08:31 2009
--- src/sipe.c Thu Jul 2 11:11:56 2009
***************
*** 2886,2892 ****
while (tmp) {
struct transaction *trans = tmp->data;
tmp = tmp->next;
! purple_debug_info("sipe", "have open transaction age: %ld\n", currtime-trans->time);
if ((currtime - trans->time > 5) && trans->retries >= 1) {
/* TODO 408 */
} else {
--- 2886,2892 ----
while (tmp) {
struct transaction *trans = tmp->data;
tmp = tmp->next;
! purple_debug_info("sipe", "have open transaction age: %ld\n", (long int)currtime-trans->time);
if ((currtime - trans->time > 5) && trans->retries >= 1) {
/* TODO 408 */
} else {

View File

@ -1,17 +0,0 @@
*** src/sipkrb5.c.orig Thu May 7 11:58:42 2009
--- src/sipkrb5.c Thu May 7 11:59:42 2009
***************
*** 35,41 ****
--- 35,46 ----
#include <string.h>
#include <errno.h>
#include <ctype.h>
+ #ifdef __FreeBSD__
+ #include <com_err.h>
+ #else
#include <et/com_err.h>
+ #endif
+
#include "debug.h"
#include "util.h"

View File

@ -1,44 +0,0 @@
*** src/uuid.c.orig Sun May 17 19:09:00 2009
--- src/uuid.c Mon May 18 13:43:53 2009
***************
*** 28,34 ****
--- 28,38 ----
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
+ #ifdef __FreeBSD__
+ #include <net/if.h>
+ #else
#include <linux/if.h>
+ #endif
#else
#ifdef _DLL
#define _WS2TCPIP_H_
***************
*** 133,139 ****
--- 137,147 ----
strcpy(ifr.ifr_name, IFR->ifr_name);
if (ioctl(s, SIOCGIFFLAGS, &ifr) == 0) {
if (! (ifr.ifr_flags & IFF_LOOPBACK)) {
+ #ifdef __FreeBSD__
+ if (ioctl(s, SIOCGIFMAC, &ifr) == 0) {
+ #else
if (ioctl(s, SIOCGIFHWADDR, &ifr) == 0) {
+ #endif
ok = 1;
break;
}
***************
*** 143,149 ****
--- 151,161 ----
close(s);
if (ok) {
+ #ifdef __FreeBSD__
+ memmove((void *)addr, ifr.ifr_ifru.ifru_addr.sa_data, 6);
+ #else
memmove((void *)addr, ifr.ifr_hwaddr.sa_data, 6);
+ #endif
}
else {
return -1;

View File

@ -1,10 +1,14 @@
lib/pidgin/libsipe.la lib/pidgin/libsipe.la
lib/pidgin/libsipe.so lib/pidgin/libsipe.so
share/locale/cs/LC_MESSAGES/pidgin-sipe.mo
share/locale/da/LC_MESSAGES/pidgin-sipe.mo share/locale/da/LC_MESSAGES/pidgin-sipe.mo
share/locale/de/LC_MESSAGES/pidgin-sipe.mo share/locale/de/LC_MESSAGES/pidgin-sipe.mo
share/locale/es/LC_MESSAGES/pidgin-sipe.mo share/locale/es/LC_MESSAGES/pidgin-sipe.mo
share/locale/fr/LC_MESSAGES/pidgin-sipe.mo share/locale/fr/LC_MESSAGES/pidgin-sipe.mo
share/locale/hi/LC_MESSAGES/pidgin-sipe.mo share/locale/hi/LC_MESSAGES/pidgin-sipe.mo
share/locale/it/LC_MESSAGES/pidgin-sipe.mo
share/locale/nb/LC_MESSAGES/pidgin-sipe.mo
share/locale/ru/LC_MESSAGES/pidgin-sipe.mo
share/locale/ta/LC_MESSAGES/pidgin-sipe.mo share/locale/ta/LC_MESSAGES/pidgin-sipe.mo
share/locale/zh_CN/LC_MESSAGES/pidgin-sipe.mo share/locale/zh_CN/LC_MESSAGES/pidgin-sipe.mo
share/pixmaps/pidgin/protocols/16/sipe.png share/pixmaps/pidgin/protocols/16/sipe.png