diff options
author | obache <obache@pkgsrc.org> | 2011-12-17 13:46:27 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-12-17 13:46:27 +0000 |
commit | 9ce09e1be1edcebbde3094976733ba75ad25424b (patch) | |
tree | 0201099d58a10a76fa4a723dc2af453a6d168585 /www/php-phrasea2 | |
parent | 27c643b7045792492113ae29806e36ac723f5995 (diff) | |
download | pkgsrc-9ce09e1be1edcebbde3094976733ba75ad25424b.tar.gz |
Change default PKGNAME scheme for PECL packages.
Drop ${PHP_BASE_VARS} from PKGVERSION by default.
It used to be required to support multiple php version.
But after PHP version based ${PHP_PKG_PREFIX} was introduced,
such trick is not required anymore.
In addition to this, such version name schme invokes unwanted version bump
when base php version is bumped, plus, such version scheme is hard to
use for DEPENDS pattern.
To avoid downgrading of package using such legacy version scheme,
PECL_LEGACY_VERSION_SCHEME is introduced.
If it is defined, current version scheme is still used for currently
supported PHP version (5 and 53), but instead of ${PHP_BASE_VARS},
current fixed PHP base version in pkgsrc is used to avoid unwanted version bump
from update of PHP base package.
With newer PHP (54, or so on), new version scheme will be used if
it is defined.
This trick will not be required and should be removed after php5 and php53 will
be gone away from pkgsrc.
Diffstat (limited to 'www/php-phrasea2')
-rw-r--r-- | www/php-phrasea2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/php-phrasea2/Makefile b/www/php-phrasea2/Makefile index d3df1772166..6fb2d5d113b 100644 --- a/www/php-phrasea2/Makefile +++ b/www/php-phrasea2/Makefile @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.3 2011/12/16 14:51:21 obache Exp $ +# $NetBSD: Makefile,v 1.4 2011/12/17 13:46:29 obache Exp $ # .include "../../www/phraseanet/Makefile.common" MODNAME= phrasea2 PECL_VERSION= ${VERS} +PECL_LEGACY_VERSION_SCHEME= yes PKG_DESTDIR_SUPPORT= user-destdir EXTRACT_ELEMENTS= ${DISTNAME}/bin/src/php_phrasea2 USE_LANGUAGES= c c++ |