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.
29 lines
605 B
Makefile
29 lines
605 B
Makefile
# $OpenBSD: Makefile,v 1.9 2015/05/22 11:31:17 ajacoutot Exp $
|
|
|
|
COMMENT= library implementing the OAuth Core RFC 5849 standard
|
|
|
|
DISTNAME= liboauth-1.0.2
|
|
SHARED_LIBS += oauth 8.4 # 8.6
|
|
CATEGORIES= net
|
|
REVISION= 0
|
|
|
|
HOMEPAGE= http://liboauth.sourceforge.net/
|
|
|
|
# MIT or GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += curl nss3
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=liboauth/}
|
|
|
|
LIB_DEPENDS= net/curl \
|
|
security/nss
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
--enable-nss
|
|
CONFIGURE_ENV= ac_cv_path_DOT="" \
|
|
ac_cv_path_DOXYGEN=""
|
|
|
|
.include <bsd.port.mk>
|