3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# New ports collection makefile for: libicq2000
|
|
# Date created: Sat Apr 27 10:36:05 BRT 2002
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libicq2000
|
|
PORTVERSION= 0.3.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= lioux@FreeBSD.org
|
|
COMMENT= An opensource C++ library to support icq2000/2001 protocol
|
|
|
|
LIB_DEPENDS= sigc.1:${PORTSDIR}/devel/libsigc++
|
|
|
|
USE_LIBTOOL_VER=13
|
|
USE_REINPLACE= yes
|
|
USE_SIZE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= libicq2000-config.1
|
|
|
|
DOC_FILES= AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS \
|
|
TODO
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e \
|
|
's|^(headersincludedir =).+|\1\$$(includedir)/libicq2000|' \
|
|
${WRKSRC}/libicq2000/Makefile.in
|
|
@${REINPLACE_CMD} -E -e 's|^(pkgincludedir.+)/@PACKAGE@|\1|' \
|
|
${WRKSRC}/libicq2000-config.in
|
|
|
|
post-configure:
|
|
@${CP} ${LIBTOOL} ${WRKSRC}
|
|
@${REINPLACE_CMD} -E -e 's|^(install_ltlibs=).+$$|\1no|' \
|
|
${WRKSRC}/libtool
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOC_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|