mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- restore "Created by:" that was removed in looming times
- correct download url to avoid redirects - replace USE_GMAKE with USES equivalent - replace patch-file with `pathfix` - add avahi and gnugp support as options - let user install some port documentation as option - simplify option NLS handling - package contents should not change, so no PORTREVISION bump PR: 180760 Submitted by: nemysis
This commit is contained in:
parent
880b740272
commit
a54d79fa38
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=325659
2 changed files with 23 additions and 20 deletions
|
@ -1,9 +1,10 @@
|
||||||
|
# Created by: Vsevolod Stakhov <vsevolod@highsecure.ru>
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
PORTNAME= gajim
|
PORTNAME= gajim
|
||||||
PORTVERSION= 0.15.4
|
PORTVERSION= 0.15.4
|
||||||
CATEGORIES= net-im
|
CATEGORIES= net-im
|
||||||
MASTER_SITES= http://www.gajim.org/downloads/0.15/
|
MASTER_SITES= http://gajim.org/downloads/0.15/
|
||||||
|
|
||||||
MAINTAINER= rm@FreeBSD.org
|
MAINTAINER= rm@FreeBSD.org
|
||||||
COMMENT= Jabber client based on a plugin system
|
COMMENT= Jabber client based on a plugin system
|
||||||
|
@ -14,12 +15,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>=0:${PORTSDIR}/security/py-openssl \
|
||||||
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \
|
${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \
|
||||||
${PYTHON_PKGNAMEPREFIX}asn1>=0:${PORTSDIR}/devel/py-asn1
|
${PYTHON_PKGNAMEPREFIX}asn1>=0:${PORTSDIR}/devel/py-asn1
|
||||||
|
|
||||||
FETCH_ARGS= -Fpr
|
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
INSTALLS_ICONS= yes
|
INSTALLS_ICONS= yes
|
||||||
|
USES= gmake pathfix
|
||||||
USE_BZIP2= yes
|
USE_BZIP2= yes
|
||||||
USE_DOS2UNIX= src/plugins/plugins_i18n.py
|
USE_DOS2UNIX= src/plugins/plugins_i18n.py
|
||||||
USE_GMAKE= yes
|
|
||||||
USE_GNOME= pygtk2
|
USE_GNOME= pygtk2
|
||||||
USE_PYTHON= -2.7
|
USE_PYTHON= -2.7
|
||||||
USE_XORG= x11 xext xscrnsaver
|
USE_XORG= x11 xext xscrnsaver
|
||||||
|
@ -29,26 +29,34 @@ CONFIGURE_ENV+= PYTHON=${PYTHON_CMD}
|
||||||
LDFLAGS+= -L${LOCALBASE}/lib
|
LDFLAGS+= -L${LOCALBASE}/lib
|
||||||
CFLAGS+= -I${LOCALBASE}/include
|
CFLAGS+= -I${LOCALBASE}/include
|
||||||
|
|
||||||
OPTIONS_DEFINE= CRYPTO DBUS KEYRING NLS SPELL
|
OPTIONS_DEFINE= AVAHI CRYPTO DBUS DOCS GUPNP KEYRING NLS SPELL
|
||||||
OPTIONS_DEFAULT=DBUS NLS SPELL
|
OPTIONS_DEFAULT=DBUS NLS SPELL
|
||||||
CRYPTO_DESC= End to end encryption support
|
CRYPTO_DESC= End to end encryption support
|
||||||
KEYRING_DESC= Gnome Keyring support
|
KEYRING_DESC= Gnome Keyring support
|
||||||
SPELL_DESC= Spell checking support
|
SPELL_DESC= Spell checking support
|
||||||
|
|
||||||
|
PORTDOCS= AUTHORS ChangeLog README.html
|
||||||
|
OPTIONS_SUB= yes
|
||||||
|
NLS_USES= gettext
|
||||||
|
|
||||||
.include <bsd.port.options.mk>
|
.include <bsd.port.options.mk>
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MNLS}
|
.if ! ${PORT_OPTIONS:MNLS}
|
||||||
USES+= gettext
|
|
||||||
PLIST_SUB+= NLS=""
|
|
||||||
.else
|
|
||||||
CONFIGURE_ARGS+= --disable-nls
|
CONFIGURE_ARGS+= --disable-nls
|
||||||
PLIST_SUB+= NLS="@comment "
|
.endif
|
||||||
|
|
||||||
|
.if ${PORT_OPTIONS:MAVAHI}
|
||||||
|
RUN_DEPENDS+= avahi-discover:${PORTSDIR}/net/py-avahi
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MDBUS}
|
.if ${PORT_OPTIONS:MDBUS}
|
||||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.82.2:${PORTSDIR}/devel/py-dbus
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.82.2:${PORTSDIR}/devel/py-dbus
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
.if ${PORT_OPTIONS:MGUPNP}
|
||||||
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gupnp/__init__.py:${PORTSDIR}/net/gupnp-igd
|
||||||
|
.endif
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MCRYPTO}
|
.if ${PORT_OPTIONS:MCRYPTO}
|
||||||
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto
|
||||||
.endif
|
.endif
|
||||||
|
@ -61,6 +69,12 @@ USE_GNOME+= pygnomedesktop
|
||||||
LIB_DEPENDS= gtkspell:${PORTSDIR}/textproc/gtkspell
|
LIB_DEPENDS= gtkspell:${PORTSDIR}/textproc/gtkspell
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
.if ${PORT_OPTIONS:MDOCS}
|
||||||
|
@${MKDIR} ${DOCSDIR}
|
||||||
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
||||||
|
.endif
|
||||||
|
|
||||||
pre-build:
|
pre-build:
|
||||||
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
|
||||||
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
|
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- po/Makefile.in.in.orig 2011-10-15 04:47:18.000000000 +0400
|
|
||||||
+++ po/Makefile.in.in 2012-03-20 19:15:22.000000000 +0400
|
|
||||||
@@ -34,7 +34,7 @@
|
|
||||||
datarootdir = @datarootdir@
|
|
||||||
libdir = @libdir@
|
|
||||||
DATADIRNAME = @DATADIRNAME@
|
|
||||||
-itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
|
||||||
+itlocaledir = @localedir@
|
|
||||||
subdir = po
|
|
||||||
install_sh = @install_sh@
|
|
||||||
# Automake >= 1.8 provides @mkdir_p@.
|
|
Loading…
Add table
Reference in a new issue