blob: f1852ae45cf80fec25159a33293b37bbaa56b05b (
plain)
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
|
# ex:ts=8
# New ports collection makefile for: zipios
# Date created: Jul 23, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= zipios++
PORTVERSION= 0.1.5.9
CATEGORIES= archivers
MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL}
DISTNAME= ${PORTNAME}_${PORTVERSION}+cvs.2004.02.07.orig
MAINTAINER= ports@FreeBSD.org
COMMENT= A java.util.zip-like C++ library for reading and writing Zip files
USE_GNOME= gnometarget
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
# port don't strictly need it, but Wesnoth use it so must we
USE_GCC= 3.4
USE_AUTOTOOLS= automake:19:env
CONFIGURE_ARGS+=--disable-static
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}+cvs.2004.02.07
# tests need CppUnit
post-patch:
@${REINPLACE_CMD} -e 's| tests||' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|echo aout|echo elf|g' ${WRKSRC}/configure
pre-configure:
.for i in install-sh missing depcomp mkinstalldirs
@${RM} ${WRKSRC}/${i}
@${CP} ${AUTOMAKE_DIR}/${i} ${WRKSRC}
.endfor
post-install:
${INSTALL_DATA} ${WRKSRC}/zipios++/zipios-config.h ${PREFIX}/include/zipios++/
.include <bsd.port.mk>
|