blob: c6ca9b328ad4656be937c32b7bc046b4a0fb39e6 (
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
59
60
61
62
63
64
65
66
67
|
# ports collection makefile for: jigdo
# Date created: 23 July 2002
# Whom: Attila Nagy <bra@fsn.hu>
#
# $FreeBSD$
#
PORTNAME= jigdo
PORTVERSION= 0.7.3
PORTREVISION= 5
CATEGORIES= net-p2p
MASTER_SITES= http://atterer.net/jigdo/
MAINTAINER= bra@fsn.hu
COMMENT= A utility used to retrieve very large files over the Internet
BUILD_DEPENDS= ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget
MAN1= jigdo-file.1 jigdo-lite.1 jigdo-mirror.1
USE_BZIP2= yes
USE_SUBMAKE= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
WITH_BDB_VER?= 43
CONFIGURE_ENV+= "CPPFLAGS=-I${LOCALBASE}/include"
OPTIONS= GUI "Build the gtk2 gui" off \
BDB "Build with Berkeley DB support (for jigdo-file cache)" on \
NLS "Native Language Support" on
.include <bsd.port.pre.mk>
.if defined(WITH_GUI)
CONFIGURE_ARGS+= --with-gui
LIB_DEPENDS+= gtk-x11-2.0:${PORTSDIR}/x11-toolkits/gtk20 \
curl:${PORTSDIR}/ftp/curl
MAN1+= jigdo.1
PLIST_SUB+= GUI=""
.else
CONFIGURE_ARGS+=--without-gui
PLIST_SUB+= GUI="@comment "
.endif
.if !defined(WITHOUT_BDB)
CONFIGURE_ENV+= CPPFLAGS=-I${BDB_INCLUDE_DIR} \
LIBS=-L${BDB_LIB_DIR}
CONFIGURE_ARGS+=--with-libdb=-l${BDB_LIB_CXX_NAME}
USE_BDB= ${WITH_BDB_VER}
.else
CONFIGURE_ARGS+=--without-libdb
.endif
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
CONFIGURE_ARGS+=--enable-nls
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-install:
@${STRIP_CMD} ${PREFIX}/bin/jigdo-file
.include <bsd.port.post.mk>
|