aboutsummaryrefslogtreecommitdiff
path: root/www/interchange
Commit message (Collapse)AuthorAgeFilesLines
* Consistently prefer ${CONFIGURE_CMD} over ./${CONFIGURE_SCRIPT}Jan Beich2016-04-131-1/+1
| | | | | | | | | | | | This also fixes SET_LATE_CONFIGURE_ARGS with custom CONFIGURE_CMD. PR: 208294 Exp-run by: antoine Approved by: portmgr (antoine), perl (mat) Differential Revision: https://reviews.freebsd.org/D4158 Notes: svn path=/head/; revision=413184
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.Mathieu Arnold2016-04-011-7/+7
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412351
* - Update to 5.6.3Dmitry Marakasov2016-03-294-27/+6
| | | | | | | | | | - While here, add NO_ARCH and fix LICENSE PR: 208100 Submitted by: jochen@jochen-neumeister.de Notes: svn path=/head/; revision=412089
* Make it so that the default Perl is always called perl5.Mathieu Arnold2015-09-141-14/+14
| | | | | | | | | | | | | | | | | | | - Move Perl's man1 files along with its man3 files. - Move where Perl installs its modules man1 pages. - Convert the ports installing man1 pages. - Make different Perl versions installable at the same time. Though you should note that only the default version can be used to install Perl modules, and the non default Perl versions cannot use the modules installed via ports if they contain .so as they are installed in a version specific directory. Reviewed by: bapt (the Mk bits) Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3542 Notes: svn path=/head/; revision=396892
* - shabangDmitry Marakasov2015-05-241-2/+8
| | | | | | | | Approved by: portmgr blanket MFH: 2015Q2 Notes: svn path=/head/; revision=387354
* - Add LICENSEDmitry Marakasov2015-05-152-4/+5
| | | | | | | - Modernize plist Notes: svn path=/head/; revision=386429
* - Drop @dirrm* from plistDmitry Marakasov2015-05-071-96/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=385689
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-14/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Revert change to COMMENT that should not have crept in.Raphael Kubo da Costa2014-07-081-1/+1
| | | | Notes: svn path=/head/; revision=361218
* Override do-configure with our own.Raphael Kubo da Costa2014-07-081-8/+17
| | | | | | | | | | | | | | | | | We install most of interchange's files into ${PREFIX}/interchange. This does not play well with Uses/perl5.mk, since it appends some values to CONFIGURE_ARGS that do not work with a custom prefix (it overrides PREFIX, INSTALLARCHLIB and INSTALLPRIVLIB). Since the right paths are necessary at the configure stage, we have to implement do-configure ourselves with a custom INTERCH_CONFIGURE_ARGS with the values we want. Additionally, set only the required values in INTERCH_CONFIGURE_ARGS and MAKE_ARGS, based on what upstream's RPM spec file does. Submitted by: loader@freebsdmall.com Notes: svn path=/head/; revision=361207
* - Reset maintainership to ports@.Raphael Kubo da Costa2014-07-065-160/+106
| | | | | | | | | | | | | | | | | | | | | - Support staging. - Modernise the Makefile: * Switch from USE_BZIP2=yes to USES=tar:bzip2 * Use <OPTION>_RUN_DEPENDS instead of including bsd.port.options.mk and doing checks ourselves. * Drop the pkg-deinstall and pkg-install scripts. Instead, just rely on the ports infrastructure with GROUPS/USERS to create the "interch" group/user and use the plist to create /var/run/interchange and change the ownership in %D/interchange. - Add some missing entries to the plist. Based on a patch sent by the former maintainer. PR: 191464 Submitted by: loader@freebsdmall.com (based on) Notes: svn path=/head/; revision=361002
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | www) Notes: svn path=/head/; revision=327776
* - convert to the new perl5 frameworkAndrej Zverev2013-09-141-1/+2
| | | | | | | | | - convert USE_GMAKE to Uses Approved by: portmgr (bapt@, blanket) Notes: svn path=/head/; revision=327283
* Convert to new options frameworkBaptiste Daroussin2013-06-041-11/+7
| | | | Notes: svn path=/head/; revision=319846
* Move the rc.d scripts of the form *.sh.in to *.inDoug Barton2012-08-052-1/+1
| | | | | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op Notes: svn path=/head/; revision=302141
* - Remove SITE_PERL from *_DEPENDSAndrej Zverev2012-06-301-2/+2
| | | | | | | Approved by: portmgr@ (bapt@) Notes: svn path=/head/; revision=300275
* - Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} orSteve Wills2012-06-101-1/+1
| | | | | | | | | | | RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi) Notes: svn path=/head/; revision=298970
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* - Fix plist with perl 5.8.9Pav Lucistnik2009-01-151-0/+2
| | | | Notes: svn path=/head/; revision=226156
* - Update to 5.6.1Beech Rintoul2009-01-133-116/+185
| | | | | | | | PR: ports/130424 Submitted by: loader <loader@freebsdmall.com> (maintainer) Notes: svn path=/head/; revision=225925
* Fix plist that was previously hidden by p5-Business-OnlinePaymentErwin Lansing2008-02-252-0/+2
| | | | | | | Submitted by: pointyhat Notes: svn path=/head/; revision=207859
* Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.Mark Linimon2007-09-081-1/+0
| | | | | | | | | | | Drop support for antique perl. Work done by: gabor Sponsored by: Google Summer of Code 2007 Hat: portmgr Notes: svn path=/head/; revision=199069
* - Update to 5.4.2Martin Wilke2007-02-132-10/+6
| | | | | | | | | PR: 109101 Submitted by: miwi Approved by: maintainer Notes: svn path=/head/; revision=185101
* - Updated to 5.4.1Nicola Vitale2007-02-026-19/+32
| | | | | | | | | | | | - Added files/interchange.sh.in - Removed files/interchange.sh PR: ports/108665 Submitted by: loader <loader at freebsdmall.com> (maintainer) Approved by: alexbl (mentor, implicit) Notes: svn path=/head/; revision=183964
* Remove USE_REINPLACE from categories starting with WEdwin Groothuis2006-05-131-2/+0
| | | | Notes: svn path=/head/; revision=162218
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.Doug Barton2006-02-201-1/+1
| | | | | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts. Notes: svn path=/head/; revision=156534
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-3/+3
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154116
* Update port: www/interchange update interchange from 5.2.1 to 5.4.0Edwin Groothuis2006-01-083-838/+732
| | | | | | | | PR: ports/91470 Submitted by: loader <loader@freebsdmall.com> Notes: svn path=/head/; revision=153066
* - Don't touch mtree's symlinksPav Lucistnik2006-01-051-2/+0
| | | | | | | Approved by: loader <loader@freebsdmall.com> (maintainer) Notes: svn path=/head/; revision=152813
* - Update to 5.2.1Sergey Matveychuk2005-11-123-5/+13
| | | | | | | | PR: ports/88885 Submitted by: maintainer Notes: svn path=/head/; revision=148047
* - Update to 5.2.0Sergey Matveychuk2005-09-218-983/+1495
| | | | | | | | | | | - OPTIONSfy - Pass maintainership to submitter PR: ports/86204 Submitted by: loader <loader@freebsdmall.com> Notes: svn path=/head/; revision=143283
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99421
* Ooops... instead of removing the perl 5.8 test completely revertAlexander Leidinger2003-12-101-2/+4
| | | | | | | | | | | to check for perl 5.6.1 or better. [1] Remove -DCHECK_FOR_IC_USER from MAKE_ARGS, it's not needed there. Noticed by: erwin [1] Notes: svn path=/head/; revision=95532
* - remove BROKEN, the user gets used as intendedAlexander Leidinger2003-12-102-7/+1
| | | | | | | | | | | | | | - remove perl 5.8 dependency, no problems with 5.6 here - fix one very little bug in the plist (only shows up if you deinstall right after installing interchange) If you experience a problem, please report via send-pr and not in some kind of chat where the actual content of the report may get lost. Go ahead and do what's needed by: linimon Notes: svn path=/head/; revision=95531
* Force dependency on Perl 5.8. Without that, the port attempt toMark Linimon2003-12-071-2/+6
| | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=95212
* Per distfile survey, chase reorganized mastersite. Anglicize a bitMark Linimon2003-10-271-2/+2
| | | | | | | while I'm here. Notes: svn path=/head/; revision=92280
* Remove the recursive assignment of SITE_PERL to ${SITE_PERL} introducedErwin Lansing2003-10-241-1/+0
| | | | | | | in the last commit. Notes: svn path=/head/; revision=92065
* utilize SITE_PERLYing-Chieh Liao2003-10-241-1/+1
| | | | | | | | PR: 58166 Submitted by: Cheng-Lung Sung <clsung@dragon2.net> Notes: svn path=/head/; revision=92059
* Update to 4.8.7.Alexander Leidinger2003-07-263-15/+12
| | | | | | | | | Add dependency to p5-libwww[1]. Reported by: Evren Yurtesen <yurtesen@finland.ispro.net.tr> [1] Notes: svn path=/head/; revision=85620
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75976
* - This port needs a tty at configure time, so IGNORE on the package buildAlexander Leidinger2002-12-021-3/+7
| | | | | | | | | | cluster. - Give maintainership back to ports@. Approved by: kris Notes: svn path=/head/; revision=71328
* Catch up with URL change.Alexander Leidinger2002-11-071-1/+1
| | | | | | | Noticed by: Fenner's distfile survey Notes: svn path=/head/; revision=69687
* Fix typo in MAINTAINER addressMario Sergio Fujikawa Ferreira2002-09-241-1/+1
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=67100
* Fix the databases/p5-SQL-Statement dependency. SQL/Statement.pmAkinori MUSHA2002-09-231-2/+2
| | | | | | | | | | installed by databases/p5-SQL-Statement lives right under ${PERL_VER}, not under ${PERL_VER}/${PERL_ARCH}. Submitted by: bento Notes: svn path=/head/; revision=67059
* Fix plist, bump revision.Alexander Leidinger2002-09-122-2/+2
| | | | Notes: svn path=/head/; revision=66189
* Bump portrevision.Alexander Leidinger2002-09-101-0/+1
| | | | Notes: svn path=/head/; revision=66033
* - Fix some problems with the non standard install path of some modules.Alexander Leidinger2002-09-103-75/+78
| | | | | | | - Add another website with resources to the description. Notes: svn path=/head/; revision=66032
* Use UID 95 instead of 94, perforce already uses 94.Alexander Leidinger2002-09-031-1/+1
| | | | | | | Noticed by: Seth Kingsley <sethk@meowfishies.com> Notes: svn path=/head/; revision=65554