From owner-svn-ports-head@FreeBSD.ORG Thu Jun 13 06:40:02 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 549F0F71; Thu, 13 Jun 2013 06:40:02 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from ns.kevlo.org (kevlo.org [220.128.136.52]) by mx1.freebsd.org (Postfix) with ESMTP id CB7BA1B2A; Thu, 13 Jun 2013 06:40:01 +0000 (UTC) Received: from [127.0.0.1] (ns.kevlo.org [220.128.136.52]) by ns.kevlo.org (8.14.6/8.14.6) with ESMTP id r5D6duE5013435; Thu, 13 Jun 2013 14:39:57 +0800 (CST) (envelope-from kevlo@FreeBSD.org) Message-ID: <51B9693F.7050101@FreeBSD.org> Date: Thu, 13 Jun 2013 14:39:59 +0800 From: Kevin Lo User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130510 Thunderbird/17.0.6 MIME-Version: 1.0 To: Baptiste Daroussin Subject: Re: svn commit: r320734 - in head/math/algotutor: . files References: <201306130611.r5D6BYY5024344@svn.freebsd.org> <20130613061658.GI99460@ithaqua.etoilebsd.net> In-Reply-To: <20130613061658.GI99460@ithaqua.etoilebsd.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jun 2013 06:40:02 -0000 Baptiste Daroussin wrote: > On Thu, Jun 13, 2013 at 06:11:34AM +0000, Kevin Lo wrote: >> Author: kevlo >> Date: Thu Jun 13 06:11:34 2013 >> New Revision: 320734 >> URL: http://svnweb.freebsd.org/changeset/ports/320734 >> >> Log: >> Don't hard code the perl version. While here, fix MASTER_SITES. >> >> PR: ports/179489 >> Submitted by: Javad Kouhi >> >> Modified: >> head/math/algotutor/Makefile >> head/math/algotutor/files/patch-algotutor >> head/math/algotutor/pkg-descr >> >> Modified: head/math/algotutor/Makefile >> ============================================================================== >> --- head/math/algotutor/Makefile Thu Jun 13 05:54:33 2013 (r320733) >> +++ head/math/algotutor/Makefile Thu Jun 13 06:11:34 2013 (r320734) >> @@ -1,19 +1,14 @@ >> -# New ports collection makefile for: algotutor >> -# Date created: 19 January 2005 >> -# Whom: Kevin Lo >> -# >> # $FreeBSD$ >> -# >> >> PORTNAME= algotutor >> PORTVERSION= 0.8.6 >> -PORTREVISION= 3 >> +PORTREVISION= 4 >> CATEGORIES= math >> -MASTER_SITES= http://saturn.stu.edu.tw/~ckhung/dl/ >> +MASTER_SITES= http://www.cyut.edu.tw/~ckhung/dl/ >> EXTRACT_SUFX= .tgz >> >> MAINTAINER= kevlo@FreeBSD.org >> -COMMENT= An interactive tutorial for algorithms and data structures >> +COMMENT= Interactive tutorial for algorithms and data structures >> >> BUILD_DEPENDS= p5-Tk>=0:${PORTSDIR}/x11-toolkits/p5-Tk >> RUN_DEPENDS:= ${BUILD_DEPENDS} >> @@ -31,6 +26,8 @@ LIBFILES= BST.pm Board.pm Collection.pm >> post-patch: >> ${REINPLACE_CMD} -e 's,#!/usr/bin/perl,#!${PERL},' ${WRKSRC}/algotutor >> ${PERL} -pi -e "s'!!PREFIX!!'${PREFIX}'g" ${WRKSRC}/algotutor >> + ${REINPLACE_CMD} -e 's,!!PERL_VERSION!!,${PERL_VERSION},' \ >> + ${WRKSRC}/algotutor > Are you sure you shouldn't use PERL_VER ? since yesterday site_perl is not > lib/perl5/site_perl/${PERL_VERSION} anymore but lib/perl5/site_perl/${PERL_VER} Geez! Fixed it. Thanks for pointing that out. > > regards, > Bapt Kevin