aboutsummaryrefslogtreecommitdiff
path: root/mail/mmr
Commit message (Collapse)AuthorAgeFilesLines
* mail/mmr: unbreak with libc++ 3.9Jan Beich2017-02-012-0/+24
| | | | | | | | | | | | mime.cpp:895:12: error: assigning to 'char *' from incompatible type 'const char *' if ( (ptr=strrchr(file, '/')) != NULL ) ^~~~~~~~~~~~~~~~~~~ mimetype.cpp:176:18: error: assigning to 'char *' from incompatible type 'const char *' if ( (extension=strrchr(filename, '.')) == NULL ) ^~~~~~~~~~~~~~~~~~~~~~ Notes: svn path=/head/; revision=433014
* Remove libiconv.so.3 compatibility link that was added in r374303 toTijl Coosemans2016-12-081-0/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428150
* - Fix trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* mail/mmr: USES+= ncurses, link with libncurses instead of libcursesJohn Marino2016-02-051-2/+2
| | | | Notes: svn path=/head/; revision=408149
* - Switch to options helpersDmitry Marakasov2015-11-301-2/+6
| | | | Notes: svn path=/head/; revision=402689
* converters/libiconv:Tijl Coosemans2015-04-151-11/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=384038
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* Restore LICENSE_FILE as mat pointed out that BSD licenses have copyright holderEmanuel Haupt2014-02-211-0/+1
| | | | | | | | | in them. Notified by: mat Notes: svn path=/head/; revision=345472
* Support stagingEmanuel Haupt2014-02-211-11/+8
| | | | Notes: svn path=/head/; revision=345336
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | mail) Notes: svn path=/head/; revision=327742
* - Make ports use the libc provided iconv implementation on 10-CURRENTGuido Falsi2013-09-041-1/+1
| | | | | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code) Notes: svn path=/head/; revision=326307
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+1
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - Update MASTER_SITES and WWW: lineMartin Wilke2011-08-262-8/+12
| | | | | | | | | | | | - Add LICENSE - Add MAKE_JOBS_SAFE - Support NOPORTEXAMPLES PR: 160123 Submitted by: Ports Fury Notes: svn path=/head/; revision=280462
* Deprecate some ports where I can't find distfiles and upstreamBaptiste Daroussin2011-08-021-0/+3
| | | | Notes: svn path=/head/; revision=278804
* - remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276989
* Update to version 1.6.0Ion-Mihai Tetcu2006-07-1014-382/+49
| | | | | | | | PR: ports/100034 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=167408
* - Add SHA256Pav Lucistnik2005-11-251-0/+1
| | | | Notes: svn path=/head/; revision=149429
* - add USE_GCC=2.95 and unbreak this portYen-Ming Lee2004-09-272-20/+10
| | | | | | | | | | | | - utilize DOCSDIR and EXAMPLESDIR - replace pkg-plist with PORTDOCS, PLIST_FILES and PLIST_DIRS PR: 72107 Submitted by: leeym Approved by: portmgr (marcus) Notes: svn path=/head/; revision=118460
* BROKEN on 5.x: Does not compile with gcc 3.4.2Kris Kennaway2004-08-161-1/+7
| | | | Notes: svn path=/head/; revision=116342
* SIZEify.Trevor Johnson2004-03-171-0/+1
| | | | Notes: svn path=/head/; revision=104313
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75971
* o Rollback PORTCOMMENT modifications while this feature's implementationMario Sergio Fujikawa Ferreira2002-11-102-2/+1
| | | | | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence) Notes: svn path=/head/; revision=69808
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.Adam Weinberger2002-11-062-1/+2
| | | | | | | Approved by: pat Notes: svn path=/head/; revision=69612
* C++ fixes for GCC3.Christian Weisgerber2002-10-267-25/+317
| | | | | | | | PR: 44460 Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de> Notes: svn path=/head/; revision=68839
* Update to 1.5.4.Norikatsu Shigemura2002-10-234-2/+16
| | | | | | | | PR: ports/44360 Submitted by: Volker Stolz <vs@lambda.foldr.org> Notes: svn path=/head/; revision=68666
* - PORTDOCS policePatrick Li2001-12-241-6/+6
| | | | | | | | - DOCSDIR support to some - Brush out some lint Notes: svn path=/head/; revision=52072
* Spaces->tabs in the mail category.Jimmy Olgeni2001-02-051-1/+1
| | | | | | | (I know, I look boring and pedant :o) Notes: svn path=/head/; revision=37983
* Update to use PORTNAME/PORTVERSIONChris Piazza2000-04-131-2/+2
| | | | Notes: svn path=/head/; revision=27500
* update to 1.5.4Michael Haro2000-03-316-49/+46
| | | | | | | | PR: 17718 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> Notes: svn path=/head/; revision=27204
* Remove andy@icc.surw.chel.su as maintainer from his ports..he doesn'tKris Kennaway2000-03-291-1/+1
| | | | | | | | | have time to maintain them. Approved by: andy Notes: svn path=/head/; revision=27113
* Fix compile-time errors on -current.Steve Price2000-02-201-0/+20
| | | | Notes: svn path=/head/; revision=26054
* Change Id->FreeBSD.David E. O'Brien1999-08-251-1/+1
| | | | Notes: svn path=/head/; revision=20954
* Commit #3/4 to enforce caps, no period.Tim Vanderhoek1999-06-261-1/+1
| | | | | | | | | | | | | | | FWIW, checkout of these things took 5+hrs, staying on the local .freebsd.org net w/o hitting the 'net at all. As promised, $ time cvs ci real 67m51.701s user 0m1.250s sys 0m5.345s Notes: svn path=/head/; revision=19803
* Add (prepare to be shocked) WWW:Michael Haro1999-05-031-2/+1
| | | | Notes: svn path=/head/; revision=18434
* Update to version 1.5.2.Steve Price1999-05-019-31/+62
| | | | | | | | PR: 11352 Submitted by: maintainer Notes: svn path=/head/; revision=18277
* Unbreak.Justin M. Seger1998-10-131-2/+2
| | | | | | | Submitted by: steve Notes: svn path=/head/; revision=13929
* Mark BROKEN for ELF:Justin M. Seger1998-10-121-1/+3
| | | | | | | | | g++ -o mmr main.o rcfile.o listing.o handlemail.o commands.o terminal.o mailmsg.o mime.o mimetype.o base64.o filemap.o iobottle.o my_regex.o outgoing.o md5/libmd5.a -lncurses -lcompat cc: md5/libmd5.a: No such file or directory *** Error code 1 Notes: svn path=/head/; revision=13916
* Put MASTER_SITES nd aMASTER-SITE-SUBDIR in right order.Satoshi Asami1997-11-041-2/+2
| | | | | | | Found by: portlint Notes: svn path=/head/; revision=8470
* Import of port for mmr 1.5.1Justin M. Seger1997-11-018-0/+91
"My Mailer" is an incarnation of a UNIX text-based mailer designed to be an intermediate step between mail and pine. PR: ports/4831 Submitted by: andy@icc.surw.chel.su Notes: svn path=/head/; revision=8432