mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
44 lines
1.3 KiB
Makefile
44 lines
1.3 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.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.gnetlibrary.org/src/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A simple network library built upon Glib
|
|
|
|
USE_REINPLACE= yes
|
|
USE_GNOME= gnomehack glib12
|
|
USE_AUTOTOOLS= libtool:15
|
|
INSTALLS_SHLIB= 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
|
|
|
|
.include <bsd.port.mk>
|