mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
3fc70be576
Approved by: maintainer implicit
46 lines
929 B
Makefile
46 lines
929 B
Makefile
# New ports collection makefile for: gsk
|
|
# Date created: May 1, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gsk
|
|
PORTVERSION= 1.0.53
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= farrokhi@FreeBSD.org
|
|
COMMENT= A C library for writing servers
|
|
|
|
USE_GNOME= glib20 gnomehack gnometarget
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_GCC= 3.4+
|
|
|
|
CONFIGURE_ARGS+= --disable-gtk-doc
|
|
|
|
PORTDOCS= *
|
|
|
|
.if defined(WITHOUT_OPENSSL)
|
|
CONFIGURE_ARGS+= --disable-ssl
|
|
PLIST_SUB+= OPENSSL="@comment "
|
|
.else
|
|
USE_OPENSSL= yes
|
|
PLIST_SUB+= OPENSSL=""
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^\(HTML_DIR\).*|\1 = ${PREFIX}/share/doc|' \
|
|
${WRKSRC}/doc/Makefile.in
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS =/s|programs tests||' \
|
|
${WRKSRC}/src/Makefile.in
|
|
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e 's|^\(SUBDIRS = \).*|\1 src|' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|