mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
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
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
# New ports collection makefile for: gnet
|
|
# Date created: 16 February 2000
|
|
# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnet
|
|
PORTVERSION= 1.1.9
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.gnetlibrary.org/src/
|
|
|
|
MAINTAINER= araujo@FreeBSD.org
|
|
COMMENT= A simple network library built upon Glib
|
|
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_GNOME= gnomehack glib12
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= gnet-config.1
|
|
|
|
post-patch:
|
|
# fix pthreads detection
|
|
@${REINPLACE_CMD} -E -e 's,-lpthread|-lc_r,${PTHREAD_LIBS},' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
# remove "release" information from lib name
|
|
@${REINPLACE_CMD} -E -e 's|-release[ ]+\$$\(LT_RELEASE\)||g' \
|
|
${WRKSRC}/src/Makefile.in
|
|
# don't install gnet-config script with odd name. We will install it ourselves
|
|
@${REINPLACE_CMD} -E -e 's|^(install-exec-am:).+$$|\1|' \
|
|
${WRKSRC}/Makefile.in
|
|
# install gnet-config.1 man (not another name). Revise at EVERY port update
|
|
@${REINPLACE_CMD} -e 's|\$$\$$inst|\$$\$$file|g' \
|
|
${WRKSRC}/doc/Makefile.in
|
|
# install configincludedir correctly
|
|
@${REINPLACE_CMD} -E -e 's|^(configincludedir).+$$|\1=\$$\(pkgincludedir\)|' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/gnet-config ${PREFIX}/bin
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|