Packages should not own this dir to prevent its deletion or a warning that it cannot be removed because it's not empty at pkg_delete(1) time.
31 lines
786 B
Makefile
31 lines
786 B
Makefile
# $OpenBSD: Makefile,v 1.12 2015/05/22 11:31:17 ajacoutot Exp $
|
|
|
|
COMMENT = extensible C++ library for XMPP clients and components
|
|
|
|
DISTNAME = gloox-1.0.3
|
|
REVISION = 2
|
|
SHARED_LIBS += gloox 1.0 # 8.0
|
|
CATEGORIES = net devel
|
|
|
|
HOMEPAGE = http://camaya.net/gloox/
|
|
MASTER_SITES = http://camaya.net/download/
|
|
EXTRACT_SUFX = .tar.bz2
|
|
MAINTAINER = Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
# GPLv3 with OpenSSL exemption
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += crypto idn m pthread ssl stdc++ z
|
|
|
|
MODULES = devel/gettext
|
|
LIB_DEPENDS = devel/libidn
|
|
|
|
USE_GMAKE = Yes
|
|
SEPARATE_BUILD = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --with-openssl --with-zlib --with-libidn=${LOCALBASE} \
|
|
--without-gnutls
|
|
MAKE_ENV = MAKE_PROGRAM=${MAKE_PROGRAM}
|
|
|
|
.include <bsd.port.mk>
|