blob: 16af53c26223d372faf36073b4134f4b454e951b (
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
43
44
45
46
47
|
# Created by: Attila Nagy <bra@fsn.hu>
# $FreeBSD$
PORTNAME= jigdo
PORTVERSION= 0.7.3
PORTREVISION= 7
CATEGORIES= net-p2p
MASTER_SITES= http://atterer.org/sites/atterer/files/2009-08/${PORTNAME}/
MAINTAINER= ports@FreeBSD.org
COMMENT= Utility used to retrieve large files over the Internet
RUN_DEPENDS= ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget
USE_BZIP2= yes
USE_SUBMAKE= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
WITH_BDB_VER?= 43
CPPFLAGS+= -I${LOCALBASE}/include
OPTIONS_DEFINE= GUI BDB NLS
OPTIONS_DEFAULT= BDB
OPTIONS_SUB= yes
GUI_DESC= GTK2 Graphical User Interface
BDB_DESC= Berkeley DB support (for jigdo-file cache)
GUI_CONFIGURE_WITH= gui
GUI_LIB_DEPENDS= libgtk-x11-2.0.so:${PORTSDIR}/x11-toolkits/gtk20 \
libcurl.so:${PORTSDIR}/ftp/curl
GUI_USES= pkgconfig
BDB_CONFIGURE_ENV= LIBS=-L${BDB_LIB_DIR}
BDB_CONFIGURE_ON= --with-libdb=-l${BDB_LIB_CXX_NAME}
BDB_CONFIGURE_OFF= --without-libdb
BDB_CPPFLAGS= -I${BDB_INCLUDE_DIR}
BDB_USE= BDB=${WITH_BDB_VER}
NLS_CONFIGURE_ENABLE= nls
NLS_USES= gettext
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jigdo-file
.include <bsd.port.mk>
|