blob: c6c5df3092c6f93a63e96b168c519127d080ce73 (
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
|
# $NetBSD: Makefile,v 1.6 2002/12/09 00:24:51 grant Exp $
#
DISTNAME= phoenix-0.5-i686-pc-linux-gnu
PKGNAME= phoenix-linux-0.5
CATEGORIES= www
MASTER_SITES= http://ftp.mozilla.org/pub/phoenix/releases/0.5/
MAINTAINER= grant@netbsd.org
HOMEPAGE= http://www.mozilla.org/projects/phoenix/
COMMENT= A redesign of the Mozilla browser component (binary pkg)
ONLY_FOR_PLATFORM= Linux-*-i[3-6]86 NetBSD-*-i386
WRKSRC= ${WRKDIR}/phoenix
NO_CONFIGURE= # defined
do-build:
post-build:
${SED} -e "s|@PREFIX@|${PREFIX}|g" ${FILESDIR}/phoenix.sh > \
${WRKDIR}/phoenix.sh
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/phoenix-linux
cd ${WRKSRC}; && ${PAX} -rw . ${PREFIX}/lib/phoenix-linux
${INSTALL_SCRIPT} ${WRKDIR}/phoenix.sh ${PREFIX}/bin/phoenix-linux
.include "../../mk/bsd.prefs.mk"
# everything specific to your OS/Arch goes into it's own Makefile
# group together i386, i486, i586 and i686 (for Linux)
ARCH=${MACHINE_ARCH:C/i[3-6]86/i386/g}
.if exists(Makefile.${OPSYS}.${ARCH})
. include "Makefile.${OPSYS}.${ARCH}"
.else
. include "../../mk/bsd.pkg.mk"
.endif
|