mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
34 lines
790 B
Makefile
34 lines
790 B
Makefile
# New ports collection makefile for: p5-Tk-JPEG-Lite
|
|
# Date created: 2004-07-23
|
|
# Whom: Michael Johnson <ahze@ahze.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Tk-JPEG-Lite
|
|
PORTVERSION= 2.01403
|
|
PORTREVISION= 4
|
|
CATEGORIES= graphics perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Very simplistic image viewer that loads JPEG images
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk
|
|
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN1= tkjpeg-lite.1
|
|
MAN3= Tk::JPEG::Lite.3
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
|
|
-e 's|tkjpeg|tkjpeg-lite|g' \
|
|
${WRKSRC}/Makefile.PL ${WRKSRC}/MANIFEST
|
|
@${MV} ${WRKSRC}/tkjpeg ${WRKSRC}/tkjpeg-lite
|
|
|
|
.include <bsd.port.mk>
|