mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
18f33c0f93
installs the version of the port that uses shared library number 9 and the LIBRARY_VERSION set to the default. Normally this is against our policy (bumping the version number for minor things), however due to the major problems caused with the upgrade, Satoshi and I decided that this was best. Approved by: asami
36 lines
943 B
Makefile
36 lines
943 B
Makefile
# New ports collection makefile for: arena
|
|
# Version required: i18n beta-3b
|
|
# Date created: Dec 1 1995
|
|
# Whom: ache
|
|
#
|
|
# $Id: Makefile,v 1.9 1998/04/15 22:17:49 jseger Exp $
|
|
#
|
|
|
|
DISTNAME= arena-CJK-beta3a
|
|
PKGNAME= arena-i18n-beta3b
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp-eu.w3.org/pub/Arena/beta-3/
|
|
|
|
MAINTAINER= ache@FreeBSD.ORG
|
|
|
|
LIB_DEPENDS+= jpeg\\.9\\.:${PORTSDIR}/graphics/jpeg
|
|
LIB_DEPENDS+= png\\.2\\.:${PORTSDIR}/graphics/png
|
|
|
|
BROKEN= png upgrade
|
|
|
|
WRKSRC= ${WRKDIR}/WWW
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/Library/freebsd; ${MAKE}
|
|
cd ${WRKSRC}/Arena/freebsd; \
|
|
${MAKE} PREFIX=${PREFIX} LFLAGS=-L${PREFIX}/lib \
|
|
XLIBDIR=${X11BASE}/lib \
|
|
JPEGDIR=${WRKSRC} PNGDIR=${WRKSRC} ZLIBDIR=${WRKSRC} \
|
|
JPEGLIB=-ljpeg PNGLIB=-lpng ZLIB=-lz
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/Arena/freebsd; \
|
|
${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} -s arena ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|