diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-07 08:30:41 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-07 08:30:41 +0800 |
commit | 6742cf9b84bd32f7afb6d490ce08af4c8b4bf4d9 (patch) | |
tree | b6679fc8c2929ee255bfab3c11f30d55a113a187 /www/interchange | |
parent | 184b540e5af626442e68052798490204e3c462ea (diff) | |
download | freebsd-ports-gnome-6742cf9b84bd32f7afb6d490ce08af4c8b4bf4d9.tar.gz freebsd-ports-gnome-6742cf9b84bd32f7afb6d490ce08af4c8b4bf4d9.tar.zst freebsd-ports-gnome-6742cf9b84bd32f7afb6d490ce08af4c8b4bf4d9.zip |
Force dependency on Perl 5.8. Without that, the port attempt to
do nasty things like install into non-subdirectories of /usr/local.
(This was reported to me privately). Also, mark as BROKEN due to a
configuration error in which it requests you create a userid but then
refuses to use it.
The submitter of the original email reports that this port has become
out of date, and that he also had much better success with the (upcoming)
port of osCommerce, which is much less difficult to understand.
Diffstat (limited to 'www/interchange')
-rw-r--r-- | www/interchange/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/www/interchange/Makefile b/www/interchange/Makefile index a07052d8977f..52c1693f8544 100644 --- a/www/interchange/Makefile +++ b/www/interchange/Makefile @@ -27,6 +27,7 @@ RUN_DEPENDS= ${SITE_PERL}/SQL/Statement.pm:${PORTSDIR}/databases/p5-SQL-Statemen USE_PERL5= yes PERL_CONFIGURE= yes +PERL_VERSION= 5.8.2 ARCH_PERL= ${SITE_PERL}/${PERL_ARCH} MAN1= configdump.1 config_prog.1 expire.1 localize.1 \ @@ -42,10 +43,13 @@ MAKE_ARGS+= NOCPANINSTALL=1 \ INSTALLARCHLIB=${PREFIX}/interchange \ INSTALLPRIVLIB=${PREFIX}/interchange/lib/ \ INSTALLMAN1DIR=${PREFIX}/man/man1 \ - INSTALLMAN3DIR=${PREFIX}/man/man7 + INSTALLMAN3DIR=${PREFIX}/man/man7 \ + -DCHECK_FOR_IC_USER CONFIGURE_ARGS+= force=1 +BROKEN= "Does not install (refuses to accept the new userid it asks you to create)" + .if defined(PACKAGE_BUILDING) IGNORE="needs a tty at the configure stage" .endif @@ -55,7 +59,7 @@ post-patch: pre-configure: .if !defined(USE_THIS_PERL) - @[ ! "${PERL_VER}" \< "5.6.1" ] || ( ${ECHO_CMD} -e "You use perl ${PERL_VER}, interchange should be used with 5.6.1 or better,\njust install the newer perl from ports and run 'use.perl port', this will\nmake the new perl the default perl. If you already have some perl modules\ninstalled for your old perl, you have to reinstall them for the new perl.\n\nIf you absolutely want to try to run interchange with perl ${PERL_VER},\nyou have to add '-DUSE_THIS_PERL' as an option for 'make'.\n" ; exit 1 ) + @[ ! "${PERL_VER}" \< "5.8" ] || ( ${ECHO_CMD} -e "You use perl ${PERL_VER}, interchange should be used with 5.8 or better,\njust install the newer perl from ports and run 'use.perl port', this will\nmake the new perl the default perl. If you already have some perl modules\ninstalled for your old perl, you have to reinstall them for the new perl.\n\nIf you absolutely want to try to run interchange with perl ${PERL_VER},\nyou have to add '-DUSE_THIS_PERL' as an option for 'make'.\n" ; exit 1 ) .endif .if !defined(CHECK_FOR_IC_USER) @${ECHO_CMD} -e "This port needs a specific user account ('interch') at configure time.\n\nIf it is ok for you to add a new user at configure time of this port\nadd '-DCHECK_FOR_IC_USER' as an option for 'make'.\n" |