blob: 46c47fbae180be8757bd558a165d2947647d01d4 (
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
51
52
53
54
55
56
57
58
|
# New ports collection makefile for: libmetalink
# Date created: Mon 11 Aug 2008 11:28:33 UTC
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libmetalink
PORTVERSION= 0.0.3
CATEGORIES= misc
MASTER_SITES= http://launchpad.net/libmetalink/trunk/${PORTVERSION}/+download/
MAINTAINER= lioux@FreeBSD.org
COMMENT= Metalink library written in C language
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
FETCH_ARGS=
USE_BZIP2= yes
USE_GCC= 4.4+
GNU_CONFIGURE= yes
CONFIGURE_ARGS= \
--with-libexpat-prefix="${LOCALBASE}" \
--with-libxml2="no"
USE_LDCONFIG= yes
# Examples to install
EXAMPLES_FILES= \
doc/sample.c \
doc/ubuntu-7_10-server-i386_iso.metalink
.ifndef(NOPORTEXAMPLES)
PORTEXAMPLES= *
.endif
post-patch:
# do not automagically install either documents or examples
@${REINPLACE_CMD} -E \
-e 's|^(install:).*|\1|' \
${WRKSRC}/doc/Makefile.in
# fix pkgconfig install destination
@${REINPLACE_CMD} -E \
-e 's|^(pkgconfigdir[[:space:]]*=).*$$|\1${PREFIX}/libdata/pkgconfig|' \
${WRKSRC}/lib/Makefile.in
post-install:
# examples
.ifndef(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
.for file in ${EXAMPLES_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>
|