diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-04-04 01:42:21 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-04-04 01:42:21 +0800 |
commit | 44fbc57cfe427ee866c91784eb6edac275d1a1b8 (patch) | |
tree | 1aeb17002c7e85572902d433203e5c2e7c485929 | |
parent | aa7f2a746c17a7a1d49ab1152f2af002f6c3cb7f (diff) | |
download | marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.tar marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.tar.gz marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.tar.bz2 marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.tar.lz marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.tar.xz marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.tar.zst marcuscom-ports-44fbc57cfe427ee866c91784eb6edac275d1a1b8.zip |
Check for older version of port and error if it is installed
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8592 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | graphics/gimp-devel/Makefile | 8 | ||||
-rw-r--r-- | graphics/gimp/Makefile | 9 | ||||
-rw-r--r-- | print/gutenprint/Makefile | 12 |
3 files changed, 24 insertions, 5 deletions
diff --git a/graphics/gimp-devel/Makefile b/graphics/gimp-devel/Makefile index 2c4480311..74518f8a6 100644 --- a/graphics/gimp-devel/Makefile +++ b/graphics/gimp-devel/Makefile @@ -3,7 +3,7 @@ # Whom: erich@FreeBSD.org # # $FreeBSD$ -# $MCom: ports/graphics/gimp-devel/Makefile,v 1.28 2007/03/30 17:05:55 ahze Exp $ +# $MCom: ports/graphics/gimp-devel/Makefile,v 1.29 2007/04/03 01:10:02 ahze Exp $ # PORTNAME= gimp @@ -28,6 +28,12 @@ NO_BUILD= yes .include <bsd.port.pre.mk> +pre-everything:: + @if [ -n "`${PKG_INFO} -xI '^gimp-devel-[0-9].[0-9].[0-9]*' 2>/dev/null`" ]; then \ + ${ECHO_CMD} "${PKGNAME}: Old version of gimp detected! Please see ${PORTSDIR}/UPDATING for information on upgrading ${PKGNAME}" ; \ + ${FALSE}; \ + fi + #.if defined(WITH_HELP) #RUN_DEPENDS+= gimp-help>0:${PORTSDIR}/graphics/gimp-help #.endif diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index a2d932e2f..c3e526016 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -3,7 +3,7 @@ # Whom: erich@FreeBSD.org # # $FreeBSD$ -# $MCom: ports/graphics/gimp-devel/Makefile,v 1.28 2007/03/30 17:05:55 ahze Exp $ +# $MCom: ports/graphics/gimp/Makefile,v 1.7 2007/03/30 18:18:41 ahze Exp $ # PORTNAME= gimp @@ -27,6 +27,13 @@ NO_BUILD= yes .include <bsd.port.pre.mk> +pre-everything:: + @if [ -n "`${PKG_INFO} -xI '^gimp-[0-9].[0-9].[0-9]*' 2>/dev/null`" ]; then \ + ${ECHO_CMD} "${PKGNAME}: Old version of gimp detected! Please see ${PORTSDIR}/UPDATING for information on upgrading ${PKGNAME}" ; \ + ${FALSE}; \ + fi + + .if defined(WITH_HELP) RUN_DEPENDS+= gimp-help>0:${PORTSDIR}/graphics/gimp-help .endif diff --git a/print/gutenprint/Makefile b/print/gutenprint/Makefile index 46a39e527..3a2a6803d 100644 --- a/print/gutenprint/Makefile +++ b/print/gutenprint/Makefile @@ -3,12 +3,12 @@ # Whom: dgilbert@velocet.ca # # $FreeBSD$ -# $MCom: ports/print/gutenprint/Makefile,v 1.6 2007/02/16 18:14:25 mezz Exp $ +# $MCom: ports/print/gutenprint/Makefile,v 1.7 2007/03/30 16:42:46 ahze Exp $ # PORTNAME= gutenprint -PORTVERSION?= 5.1.0 -PORTREVISION?= 0 +PORTVERSION= 5.1 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= # empty DISTFILES= # empty @@ -44,6 +44,12 @@ RUN_DEPENDS+= gutenprint-ijs>0:${PORTSDIR}/print/gutenprint-ijs RUN_DEPENDS+= gutenprint-foomatic>0:${PORTSDIR}/print/gutenprint-foomatic .endif +pre-everything:: + @if [ -n "`${PKG_INFO} -xI '^gutenprint-[0-9].[0-9].[0-9]*' 2>/dev/null`" ]; then \ + ${ECHO_CMD} "${PKGNAME}: Old version of gutenprint detected! Please see ${PORTSDIR}/UPDATING for information on upgrading ${PKGNAME}" ; \ + ${FALSE}; \ + fi + do-install: # empty .include <bsd.port.post.mk> |