1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00
freebsd-ports/comms/gammu/Makefile
Rodrigo Osorio f2bf5fac2b comms/gammu: update to 1.41.0
Changelog: https://wammu.eu/download/gammu/1.41.0/

 * Documentation improvements.
 * Updated MySQL script to be compatible with current server versions.
 * Fixed SMSD operation on phones with more SMS folders.
 * Fixed off by one in Python example script.
 * Fixed PostgreSQL compilation on openSUSE.
 * Several compatibility fixes with recent compilers.
 * Improved USSD support.
 * Localization updates.
2020-01-13 10:13:15 +00:00

47 lines
1.2 KiB
Makefile

# Created by: Kirill Bezzubets <kirill@solaris.ru>
# $FreeBSD$
PORTNAME= gammu
PORTVERSION= 1.41.0
CATEGORIES= comms
MASTER_SITES= http://dl.cihar.com/gammu/releases/
MAINTAINER= rodrigo@FreeBSD.org
COMMENT= GNU All Mobile Management Utilities
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libcurl.so:ftp/curl
CMAKE_ARGS= -DINSTALL_LIBDATA_DIR:PATH=${PREFIX}/libdata \
-DINSTALL_MAN_DIR:PATH=${PREFIX}/man
USES= cmake compiler:c++11-lang gettext gnome iconv pkgconfig shebangfix tar:xz
SHEBANG_FILES= utils/jadmaker utils/gammu-config
bash_CMD= /bin/sh
USE_GNOME= glib20
USE_LDCONFIG= yes
PLIST_SUB+= VERSION=${PORTVERSION}
PORTDOCS= *
OPTIONS_DEFINE= BASH DBI DOCS PGSQL MYSQL ODBC
OPTIONS_DEFAULT= BASH
OPTIONS_SUB= yes
BASH_BUILD_DEPENDS= bash:shells/bash
BASH_RUN_DEPENDS= ${BASH_BUILD_DEPENDS}
BASH_CMAKE_OFF= -DINSTALL_BASH_COMPLETION:BOOL=OFF
DBI_DESC= Database support via LibDBI
DBI_LIB_DEPENDS= libdbi.so:databases/libdbi
DBI_CMAKE_OFF= -DWITH_LibDBI:BOOL=OFF
PGSQL_USES= pgsql
PGSQL_CMAKE_OFF= -DWITH_Postgres:BOOL=OFF
MYSQL_USES= mysql
MYSQL_CMAKE_OFF= -DWITH_MySQL:BOOL=OFF
ODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC
ODBC_CMAKE_OFF= -DWITH_ODBC:BOOL=OFF
.include <bsd.port.mk>