svn commit: r383538 - head/databases/sqlitemanager

John Marino freebsd.contact at marino.st
Tue Apr 7 20:26:35 UTC 2015


On 4/7/2015 22:14, Mikhail Teterin wrote:
> Author: mi
> Date: Tue Apr  7 20:14:55 2015
> New Revision: 383538
> URL: https://svnweb.freebsd.org/changeset/ports/383538
> 
> Log:
>   Unbreak by asking php for sqlite3-extension offered by php-5.4 and
>   up, instead of sqlite. Upgrade from 1.2.3 to 1.2.4 released in 2010.
>   
>   Do not install the empty TODO-file. Be sure to convert DOS ends-of-line.
>   Preserve time-stamps on files and directories, when installing.
>   Define LICENSE.
> 
> Modified:
>   head/databases/sqlitemanager/Makefile
>   head/databases/sqlitemanager/distinfo
>   head/databases/sqlitemanager/pkg-descr
>   head/databases/sqlitemanager/pkg-plist
> 
> Modified: head/databases/sqlitemanager/Makefile
> ==============================================================================
> --- head/databases/sqlitemanager/Makefile	Tue Apr  7 19:59:20 2015	(r383537)
> +++ head/databases/sqlitemanager/Makefile	Tue Apr  7 20:14:55 2015	(r383538)
> @@ -2,24 +2,25 @@
>  # $FreeBSD$
>  
>  PORTNAME=	sqlitemanager
> -PORTVERSION=	1.2.3
> +PORTVERSION=	1.2.4
>  CATEGORIES=	databases www
>  MASTER_SITES=	SF
> -DISTNAME=	SQLiteManager-${PORTVERSION}
> +DISTNAME=	SQliteManager-${PORTVERSION}
>  
>  MAINTAINER=	ports at FreeBSD.org
>  COMMENT=	Multilingual web based tool to manage SQLite database
>  
> -DEPRECATED=	requires php53, security EOL reached 14 Aug 2014
> -EXPIRATION_DATE=	2015-04-15
> +LICENSE=	GPLv2
>  
> -IGNORE_WITH_PHP=5 55 56
> +WRKSRC=		${WRKDIR}/SQLiteManager-${PORTVERSION}
> +USES=		dos2unix
>  NO_BUILD=	yes
>  PLIST_SUB+=	WWWDIR_REL="${WWWDIR_REL}"
> -USE_PHP=	sqlite
> +USE_PHP=	sqlite${PHP_VER:S/^53$$//:C/^.+$$/3/}
> +EXTRACT_AFTER_ARGS=--exclude TODO
>  
>  do-install:
>  	${MKDIR} ${STAGEDIR}${WWWDIR}
> -	${CP} -R ${WRKSRC}/ ${STAGEDIR}${WWWDIR}
> +	${CP} -Rp ${WRKSRC}/ ${STAGEDIR}${WWWDIR}

        ^^^^^

Why use ${CP} over ${COPYTREE_SHARE} ?
There was just a big reminder not to install files with ${CP} last week
on this mail list ...

John





More information about the svn-ports-head mailing list