blob: a5485be12ec364ff341e2a4fe1719b3593df2a44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# 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>
|