- Fix build on older releases

- Add LICENSE and missing dependencies
- Bump PORTREVISION
This commit is contained in:
Pietro Cerutti 2014-10-02 10:19:08 +00:00
parent 361c0be994
commit 922e1e6b2e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369808
3 changed files with 33 additions and 2 deletions

View File

@ -3,19 +3,24 @@
PORTNAME= tg
PORTVERSION= 1.0.5.1
PORTREVISION= 1
CATEGORIES= net-im
MAINTAINER= gahr@FreeBSD.org
COMMENT= Command-line interface for Telegram
LIB_DEPENDS= libconfig.so:${PORTSDIR}/devel/libconfig
LICENSE= GPLv2
LIB_DEPENDS= libconfig.so:${PORTSDIR}/devel/libconfig \
libevent.so:${PORTSDIR}/devel/libevent2
USE_GITHUB= yes
GH_ACCOUNT= vysheng
GH_TAGNAME= 1.0.5.1
GH_COMMIT= 77bbb4c
USES= execinfo gmake lua:52 readline
USES= execinfo gmake lua:52 ncurses pkgconfig readline
USE_OPENSSL= yes
GNU_CONFIGURE= yes
PLIST_FILES= bin/telegram-cli \

View File

@ -0,0 +1,11 @@
--- mtproto-client.c.orig 2014-10-02 12:07:49.000000000 +0200
+++ mtproto-client.c 2014-10-02 12:08:13.000000000 +0200
@@ -80,7 +80,7 @@
#define MAX_NET_RES (1L << 16)
//extern int log_level;
-#ifndef HAVE___BUILTIN_BSWAP32
+#if !defined(HAVE___BUILTIN_BSWAP32) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
static inline unsigned __builtin_bswap32(unsigned x) {
return ((x << 24) & 0xff000000 ) |
((x << 8) & 0x00ff0000 ) |

View File

@ -0,0 +1,15 @@
--- net.c.orig 2014-10-02 12:12:58.000000000 +0200
+++ net.c 2014-10-02 12:13:09.000000000 +0200
@@ -26,11 +26,11 @@
#include <string.h>
#include <stdlib.h>
#include <assert.h>
+#include <sys/types.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/fcntl.h>
-#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <stdio.h>