aboutsummaryrefslogtreecommitdiff
path: root/www/phoenix/Makefile
blob: 130a48cb3b10b1ff9b787c3e15e0551f7e45ae5f (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
# ex:ts=8
#
# New ports collection makefile for:	phoenix
# Date created:			2002/10/21
# Whom:				Alan Eldridge <ports@geeksrus.net>
#
# $FreeBSD$
#

PORTNAME=		phoenix
PORTVERSION=		0.4
CATEGORIES=		www
MASTER_SITES=		${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=	trevor

MAINTAINER=		phoenix@geeksrus.net # alane@fbsd and trevor@fbsd

LIB_DEPENDS=	gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
		jpeg.9:${PORTSDIR}/graphics/jpeg \
		png.5:${PORTSDIR}/graphics/png \
		mng.1:${PORTSDIR}/graphics/libmng \
		freetype.9:${PORTSDIR}/print/freetype2
#Xft2.2:${PORTSDIR}/x11-fonts/Xft
BUILD_DEPENDS=	zip:${PORTSDIR}/archivers/zip \
		freetype-config:${PORTSDIR}/print/freetype2 \
		perl5.8.0:${PORTSDIR}/lang/perl5.8

PREFIX=		${X11BASE}/lib/${PORTNAME}

USE_BZIP2=		yes
USE_GMAKE=		yes
#USE_AUTOCONF_VER=	213
GNU_CONFIGURE=		yes
CFLAGS+=		${PTHREAD_CFLAGS}
LIBS+=			${PTHREAD_LIBS}
NO_MTREE=		yes
WRKSRC=			${WRKDIR}/mozilla

.include <bsd.port.pre.mk>

.if ${OSVERSION} > 500038
BROKEN=	"on -CURRENT, can only be used with local files"
.endif

.if !defined(PERL_VER) || ${PERL_VER} != "5.8.0"
.undef NO_IGNORE
BROKEN=	This port requires Perl 5.8.0 because of File::Spec issues. \
	Make sure to run 'use.perl port' after installing it or you \
	will still get this message.
.endif # !defined(PERL_VER) || ${PERL_VER} != "5.8.0"

post-extract:
	${SED} -e 's|@CFLAGS@|${CFLAGS}|'		\
		-e 's|@LIBS@|${LIBS}|'			\
		-e 's|@X11BASE@|${X11BASE}|'		\
		-e 's|@LOCALBASE@|${LOCALBASE}|'	\
		<${FILESDIR}/mozconfig.in >${WRKSRC}/.mozconfig

post-install:
	${LN} -s ${PREFIX}/bin/phoenix ${X11BASE}/bin/phoenix
	${LN} -s ${PREFIX}/bin/mozilla-config ${X11BASE}/bin/phoenix-config

.include <bsd.port.post.mk>

#EOF