mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
7a257b74d7
- Fix an error for Oauth and bump PORTREVISION. PR: ports/197599 Submitted by: cmt (at) burggraben.net (maintainer) Obtained from: upstream
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# Created by: Christoph Moench-Tegeder <cmt@burggraben.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rest
|
|
PORTVERSION= 0.7.92
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel www
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= cmt@burggraben.net
|
|
COMMENT= Easy access to RESTful web services
|
|
|
|
LICENSE= LGPL21
|
|
|
|
BUILD_DEPENDS= ca_root_nss>0:${PORTSDIR}/security/ca_root_nss
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= gmake libtool pathfix pkgconfig tar:xz
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= glib20 intlhack libxml2 introspection:build
|
|
|
|
PORTEXAMPLES= *.c
|
|
|
|
OPTIONS_DEFINE= GNOME EXAMPLES
|
|
OPTIONS_DEFAULT= GNOME
|
|
|
|
GNOME_LIB_DEPENDS= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome
|
|
GNOME_CONFIGURE_OFF= --without-gnome
|
|
GNOME_LIB_DEPENDS_OFF= libsoup-2.4.so:${PORTSDIR}/devel/libsoup
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.c ${STAGEDIR}${EXAMPLESDIR}
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librest-0.7.so.0
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librest-extras-0.7.so.0
|
|
|
|
regression-test:
|
|
(cd ${WRKSRC}/tests && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} check)
|
|
|
|
.include <bsd.port.mk>
|