blob: 412fc2c8f09cbfe33302f58398a3d7096db7cc4c (
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: Metalink tools
# Date created: Sun 10 Aug 2008 04:22:51 UTC
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= metalink
PORTVERSION= 0.3.3
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= SF
MASTER_SITE_SUBDIR= metalinks
PKGNAMESUFFIX?= -tools
MAINTAINER= lioux@FreeBSD.org
COMMENT= Metalink generation tool
LIB_DEPENDS= gcrypt.16:${PORTSDIR}/security/libgcrypt \
boost_filesystem.4:${PORTSDIR}/devel/boost-libs \
boost_program_options.4:${PORTSDIR}/devel/boost-libs \
boost_regex.4:${PORTSDIR}/devel/boost-libs
GNU_CONFIGURE= yes
CONFIGURE_ENV+= AWK="${AWK}" \
CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
MAKE_JOBS_SAFE= yes
# Documents to install
DOC_FILES= \
README
.ifndef(NOPORTDOCS)
PORTDOCS= *
.endif
PLIST_FILES= bin/${PORTNAME}
do-install:
# docs
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>
|