blob: 9a486b5bf8ea3a3d714acf7708f111fe1186ce60 (
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
48
49
50
|
# New ports collection makefile for: gwget
# Date created: 1 November 2004
# Whom: Radek Kozlowski <radek@raadradd.com>
#
# $FreeBSD$
#
PORTNAME= gwget
PORTVERSION= 0.93
PORTREVISION= 1
CATEGORIES= ftp www gnome
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= radek@raadradd.com
COMMENT= A download manager for GNOME, based on wget
USE_GMAKE= yes
USE_GNOME= gnomehack gnomeprefix intlhack libgnomeui
USE_LIBTOOL_VER=15
USE_REINPLACE= yes
USE_X_PREFIX= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
GCONF_SCHEMAS= gwget.schemas
EPHY_VER= 1.4
.include <bsd.port.pre.mk>
.if exists(${X11BASE}/bin/epiphany) && !defined(WITHOUT_EPIPHANY)
WITH_EPIPHANY= yes
.endif
.if defined(WITH_EPIPHANY)
BUILD_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany
CONFIGURE_ARGS+= --enable-epiphany-extension \
--with-epiphany-version=${EPHY_VER}
PLIST_SUB+= EPIPHANY:="" \
VERSION="${EPHY_VER}"
.else
CONFIGURE_ARGS+= --disable-epiphany-extension
PLIST_SUB+= EPIPHANY:="@comment "
.endif # defined(WITH_EPIPHANY)
post-patch:
@${REINPLACE_CMD} -e 's|epiphany/extensions|epiphany-${EPHY_VER}/extensions|' \
${WRKSRC}/epiphany-extension/Makefile.in
.include <bsd.port.post.mk>
|