789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
38 lines
896 B
Makefile
38 lines
896 B
Makefile
# New ports collection makefile for: gsk
|
|
# Date created: May 1, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gsk
|
|
PORTVERSION= 1.0.63
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A C library for writing servers
|
|
|
|
USE_GNOME= glib20 gnomehack
|
|
USE_OPENSSL= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
CONFIGURE_ARGS= --disable-gtk-doc
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/^SUBDIRS/s|doc||' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
'/^SUBDIRS/s|programs tests||' ${WRKSRC}/src/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|fread_unlocked|fread|' ${WRKSRC}/src/gsktable-flat.c
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/*.css ${DOCSDIR}/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${DOCSDIR}/html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/*.png ${DOCSDIR}/html
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|