Commit 405ec24f authored by Max Brazhnikov's avatar Max Brazhnikov
Browse files

net-im/kopete: Discontinued upstream, does not build with KF6

parent 1535ec1d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4159,3 +4159,4 @@ graphics/kipi-plugins||2025-02-22|Discontinued upstream
graphics/showimage||2025-02-22|Depends on discontinued libkipi
graphics/libkipi||2025-02-22|Discontinued upstream
deskutils/knotes||2025-02-22|Discontinued upstream
net-im/kopete||2025-02-22|Discontinued upstream
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@
    SUBDIR += kaccounts-integration
    SUBDIR += kaccounts-providers
    SUBDIR += kaidan
    SUBDIR += kopete
    SUBDIR += libaccounts-glib
    SUBDIR += libaccounts-qt
    SUBDIR += libmesode

net-im/kopete/Makefile

deleted100644 → 0
+0 −42
Original line number Diff line number Diff line
PORTNAME=	kopete
PORTVERSION=	${KDE_APPLICATIONS_VERSION}
PORTREVISION=	1
CATEGORIES=	net-im kde kde-applications

MAINTAINER=	kde@FreeBSD.org
COMMENT=	KDE multi-protocol instant messenger
WWW=		https://apps.kde.org/kopete/

IGNORE=		does not build with KF6
DEPRECATED=	Unmaintained and no longer released by the KDE community
EXPIRATION_DATE=	2025-03-31

BUILD_DEPENDS=	v4l_compat>0:multimedia/v4l_compat
LIB_DEPENDS=	libidn.so:dns/libidn \
		libjasper.so:graphics/jasper \
		libotr.so:security/libotr \
		libv4l2.so:multimedia/libv4l

USES=		cmake compiler:c++11-lang desktop-file-utils gnome jpeg kde:5 \
		qca qt:5 shebangfix tar:xz xorg
USE_GNOME=	libxml2 libxslt
USE_KDE=	archive auth bookmarks codecs completion config configwidgets \
		coreaddons crash dbusaddons dnssd emoticons guiaddons i18n \
		iconthemes itemviews jobwidgets js kcmutils kdelibs4support \
		khtml kio notifications notifyconfig parts phonon service solid sonnet \
		syntaxhighlighting texteditor textwidgets unitconversion wallet widgetsaddons \
		windowsystem xmlgui \
		ecm:build
# KDE PIM components
USE_KDE+=	contacts identitymanagement libkleo pimtextedit
USE_QT=		concurrent core dbus gui network printsupport sql widgets xml \
		buildtools:build qmake:build testlib:build
USE_XORG=	x11

SHEBANG_FILES=	protocols/winpopup/winpopup-install \
		protocols/winpopup/winpopup-send \
		kopete/kconf_update/*.pl

OPTIONS_DEFINE=	DOCS

.include <bsd.port.mk>

net-im/kopete/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1707889327
SHA256 (KDE/release-service/23.08.5/kopete-23.08.5.tar.xz) = 0af87805f0c256ec3e5615e3ec70720ee09d0dbdc0a36b53813f3078a91b8e31
SIZE (KDE/release-service/23.08.5/kopete-23.08.5.tar.xz) = 10182548
+0 −22
Original line number Diff line number Diff line
--- protocols/jabber/libjingle/talk/base/httpcommon.cc.orig	2018-03-15 04:21:08 UTC
+++ protocols/jabber/libjingle/talk/base/httpcommon.cc
@@ -25,6 +25,10 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#if (defined(__unix__) || defined(unix)) && !defined(USG)
+#  include <sys/param.h>
+#endif
+
 #include <time.h>
 
 #ifdef WIN32
@@ -399,7 +403,7 @@ bool HttpDateToSeconds(const std::string& date, time_t
     gmt = non_gmt + kTimeZoneOffsets[zindex] * 60 * 60;
   }
   // TODO: Android should support timezone, see b/2441195
-#if defined(OSX) || defined(ANDROID) || defined(BSD)
+#if defined(OSX) || defined(ANDROID) || defined(BSD) || defined(__FreeBSD__)
   tm *tm_for_timezone = localtime((time_t *)&gmt);
   *seconds = gmt + tm_for_timezone->tm_gmtoff;
 #else
Loading