Update to 4.6.2.

This commit is contained in:
Roman Bogorodskiy 2011-09-25 20:23:12 +00:00
parent 7c08337382
commit c656162631
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=282383
3 changed files with 6 additions and 21 deletions

View File

@ -6,15 +6,15 @@
#
PORTNAME= logjam
PORTVERSION= 4.5.3
PORTREVISION= 11
PORTVERSION= 4.6.2
CATEGORIES= deskutils
MASTER_SITES= http://logjam.danga.com/download/
MASTER_SITES= http://andy-shev.github.com/LogJam/download/
MAINTAINER= novel@FreeBSD.org
COMMENT= A GTK2 interface to livejournals, ie www.livejournal.com
LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl
LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl \
dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
MAN1= logjam.1

View File

@ -1,2 +1,2 @@
SHA256 (logjam-4.5.3.tar.bz2) = ae76c22c31f7ce75dfa23d94510b0423bcf302a622d4d2391c432a127c500184
SIZE (logjam-4.5.3.tar.bz2) = 748831
SHA256 (logjam-4.6.2.tar.bz2) = 6735e98daaa0711f4723865866e89847c9ae2bd20853beebccd8d5056df5ee84
SIZE (logjam-4.6.2.tar.bz2) = 789333

View File

@ -1,15 +0,0 @@
--- protocol/liblivejournal/livejournal/entry.c.orig Thu Aug 17 01:40:10 2006
+++ protocol/liblivejournal/livejournal/entry.c Thu Aug 17 01:45:24 2006
@@ -610,6 +610,12 @@
else if (g_ascii_strcasecmp(key, "time") == 0) {
if (entry) lj_ljdate_to_tm(val, &entry->time);
}
+ else if (g_ascii_strcasecmp(key, "backdated") == 0) {
+ if (entry && val[0]) {
+ if (g_ascii_strcasecmp(val, "yes") == 0)
+ entry->backdated = TRUE;
+ }
+ }
else return FALSE;
return TRUE;