aboutsummaryrefslogtreecommitdiff
path: root/irc
Commit message (Collapse)AuthorAgeFilesLines
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.Adam Weinberger2014-07-156-5/+11
| | | | Notes: svn path=/head/; revision=361953
* switch to USES=twisted.Vanilla I. Shu2014-07-141-7/+1
| | | | | | | Submitted by: rm@ Notes: svn path=/head/; revision=361783
* 1: Stagify.Vanilla I. Shu2014-07-143-23/+21
| | | | | | | | | 2: use @sample, bump version. Approved by: portmgr@ (blanket) Notes: svn path=/head/; revision=361780
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-132-2/+2
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361728
* irc/minbif: Depend on imlib2 with CACA option onlyJohn Marino2014-07-121-7/+8
| | | | | | | | PR: 186962 Submitted by: Chris Nehren Notes: svn path=/head/; revision=361596
* irc/nefarious: stage, take 2. Add DOCS optionsJohn Marino2014-07-062-126/+150
| | | | | | | | | | | | | | | | | | | | | | | | The vendor makefile creates html documents unconditionally with two flavors: operators and users. There is a lot of duplication between the two so it symlinked the duplicates. Unfortunately the symlinks point back the stage directory. Also, at least one symlink was invalid in all cases as it was not pointing to any file. To fix: 1. override install target 2. Add DOCS option to make non-man page documentation optional 3. Copy files instead of using symlinks (they are very small) 4. Fix vendor SYMLINK list, there were two errors in it 5. Remove subversion tree during post-extract target Note that the permissions of the installed configuration files are different. The vendor files tried to install them with modes 600 and 700 but now they are the default for INSTALL_DATA macro. Reported by: swills (jenkins) Notes: svn path=/head/; revision=360864
* irc/nefarious: stage, unbreak on F10+ and moreJohn Marino2014-07-054-26/+60
| | | | | | | | | | | | | | | * Add stage support * Fix build for clang * convert USE_BZIP2 * Bring in DragonFly support patch * convert USE_OPENSSL and USE_CHROOT knobs to options * rename DOMAIN knob to NEFARIOUS_DOMAIN knob * rename INSTALL_PREFIX knob to NEFARIOUS_INSTALL_PREFIX knob * Make bash dependency work in non-standard location * Tweak pre-configure message accordingly, remove sleep command Notes: svn path=/head/; revision=360820
* irc/ircproxy: modernize and explicit linking with libcrypto (dports)John Marino2014-07-051-21/+8
| | | | | | | | | * new LIB_DEPENDS format * use option configure * convert USE_BZIP2 Notes: svn path=/head/; revision=360806
* Convert textproc/aspell to "USES=libtool tar:bzip2" and bump dependent portsTijl Coosemans2014-07-042-11/+10
| | | | | | | Approved by: portmgr (implicit, PORTREVISION bump on unstaged port) Notes: svn path=/head/; revision=360658
* Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 thatTijl Coosemans2014-07-044-2/+4
| | | | | | | | | | have not been bumped yet after the latest libsqlite3.so library version change. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=360588
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-07-042-3/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=360570
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-045-10/+10
| | | | Notes: svn path=/head/; revision=360492
* Support stageBaptiste Daroussin2014-07-012-32/+18
| | | | Notes: svn path=/head/; revision=360118
* Support stageBaptiste Daroussin2014-07-013-44/+35
| | | | | | | A bit of cleanup Notes: svn path=/head/; revision=360117
* Add a forgotten patchBaptiste Daroussin2014-07-011-0/+13
| | | | Notes: svn path=/head/; revision=360116
* Support stageBaptiste Daroussin2014-07-012-44/+23
| | | | | | | | Partially strip binaries Convert to USES=libtool Notes: svn path=/head/; revision=360115
* - Remove editors/emacs21, and editors/emacs22 as they're no longer maintainedAshish SHUKLA2014-06-272-9/+0
| | | | | | | | | | | | upstream - Also remove dependent ports - Add UPDATING entry informing users of the same - Add MOVED entries Approved by: portmgr (bapt) Notes: svn path=/head/; revision=359512
* Deprecate ports failing to build with new utmpxAntoine Brodin2014-06-231-0/+2
| | | | | | | | | Maintainers had more than 4 years to fix them With hat: portmgr Notes: svn path=/head/; revision=359005
* irc/psybnc: limit hack to FreeBSD to unbreak DragonFlyJohn Marino2014-06-221-1/+1
| | | | | | | | | This "fix" for FreeBSD doesn't look right to me; I don't think it should be using OSVERSION to determine which compiler is being used. Until its fixed better, make sure OSVERSION is only compared on FreeBSD. Notes: svn path=/head/; revision=358804
* Add 4 new sed commands to USES=libtool. The first two apply some of theTijl Coosemans2014-06-221-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=358784
* irc/znc: Update to 1.4Jase Thew2014-06-204-20/+3
| | | | | | | | | PR: 191034 Submitted by: bradleythughes@fastmail.fm Changes: http://wiki.znc.in/ChangeLog/1.4 Notes: svn path=/head/; revision=358640
* - Update to 1.8.9Mathieu Arnold2014-06-194-37/+32
| | | | | | | | | | | | - Stage - Cleanup rc script - Take [1] Approved by: maintainer [1] Sponsored by: Absolight Notes: svn path=/head/; revision=358404
* 1: Stagify.Vanilla I. Shu2014-06-172-7/+7
| | | | | | | | | 2: Add LICENSE. Approved by: portmgr@ Notes: svn path=/head/; revision=358065
* Stagify.Vanilla I. Shu2014-06-171-6/+5
| | | | | | | Approved by: portmgr@ Notes: svn path=/head/; revision=358064
* 1: Stagify.Vanilla I. Shu2014-06-172-12/+14
| | | | | | | | | 2: strip binary. Approved by: portmgr@ Notes: svn path=/head/; revision=358063
* irc/py-irc: update to 5.9.1William Grzybowski2014-06-162-15/+7
| | | | | | | | | - Update to 5.9.1 - Remove obsolete python 2.6 check - Remove obsolete zip_safe option Notes: svn path=/head/; revision=357985
* - Stage supportMartin Wilke2014-06-151-1/+0
| | | | | | | PR: 191023 Notes: svn path=/head/; revision=357818
* - Remove easy_install dependencyMarcus von Appen2014-06-141-2/+3
| | | | | | | | | | - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357754
* Remove indefinite articles and trailing periods from COMMENT, plusJimmy Olgeni2014-06-1340-40/+40
| | | | | | | | | | minor COMMENT typos and surrounding whitespace fixes. Categories G-I. CR: D201 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=357654
* Add missing OPTIONS_SUB.Adam Weinberger2014-06-121-0/+1
| | | | Notes: svn path=/head/; revision=357629
* Turn ircbug(1) into an OPTION.Adam Weinberger2014-06-122-2/+6
| | | | Notes: svn path=/head/; revision=357603
* Update to 20131230 and take maintainership.Adam Weinberger2014-06-124-705/+621
| | | | Notes: svn path=/head/; revision=357598
* Reset the 99 ports still listed under sylvio@John Marino2014-06-114-4/+4
| | | | | | | | | | | | | | Sylvio's last commit was 17 months ago, a full 5 months after all of his ports could have been reset per policy. Given the push to complete staging (48 ports are still unstaged, something like 70+ have already been staged by other committers) and given that PRs are automatically assigned but never addressed, it's better just to reset all the ports and PRs so that it's clear to others that these ports are free to maintain. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357526
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-113-10/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* chinese/bitchx: Bump to acquire MASTERDIR fix, stage tooJohn Marino2014-06-111-1/+1
| | | | | | | | | | | Related to: PR: 186425 It looks NO_STAGE should have been removed when irc/bitchx was staged. Late add: Fix master irc/bitchx to not override PORTREVISION Notes: svn path=/head/; revision=357460
* irc/bitchx: Requires build by GCC to avoid segfaultJohn Marino2014-06-101-0/+2
| | | | | | | | | PR: 186425 Submitted by: Edwin Approved by: maintainer (Dan Mashal) Notes: svn path=/head/; revision=357314
* Remove all the bootstrap files (.bs) from the plists.Mathieu Arnold2014-06-102-8/+0
| | | | | | | | | | | | | Starting with perl 5.20, they're not installed any more if empty, and on FreeBSD, they're (always ?) empty. PR: 190681 Submitted by: mat Exp-Run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=357300
* Convert to USES=tarBryan Drewery2014-06-101-2/+1
| | | | Notes: svn path=/head/; revision=357250
* Update to 3.2.10.3Mathieu Arnold2014-06-092-4/+3
| | | | | | | | PR: 190570 Sponsored by: Absolight Notes: svn path=/head/; revision=357148
* Remove all space characters from Makefile assignments.Jimmy Olgeni2014-06-081-1/+1
| | | | | | | | | | No functional changes included. CR: D193 (except math/sedumi) Approved by: portmgr (bapt) Notes: svn path=/head/; revision=357070
* Stagify.Vanilla I. Shu2014-06-081-5/+4
| | | | Notes: svn path=/head/; revision=356973
* - Fix fallout from r355360 and allow lua plugin to be builtJase Thew2014-06-062-2/+2
| | | | | | | successfully Notes: svn path=/head/; revision=356767
* - Fix build with clangMartin Wilke2014-06-061-0/+5
| | | | | | | PR: 190686 Notes: svn path=/head/; revision=356741
* Fix build with gcc from ports. [1]Koop Mast2014-06-053-7/+14
| | | | | | | | | | | While here use USES=libtool, strip installed small update regarding LDFLAGS PR: 178896 [1] Submitted by: kvedulv@kvedulv.de Patch by: avg@ [1] Notes: svn path=/head/; revision=356700
* - Switch security/libotr3 to USES=libtool, drop .la filesDmitry Marakasov2014-06-042-5/+5
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=356504
* These ports are no longer used or cared for.Rusmir Dusko2014-06-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dave Shar <koalative at gmail.com> wishes to maintain these ports with my help. deskutils/py-send2trash - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Change license BSD to BSD3CLAUSE - Use USE_PYDISTUTILS=yes instead of easy_install - Remove PYDISTUTILS_PKGNAME and add PYDISTUTILS_AUTOPLIST graphics/founts - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Add REINPLACE, fix ELAST - Change distinfo, remove supplied icon graphics/py-pyggel - Pass maintainership to koalative at gmail.com graphics/radius-engine - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com irc/py-fishcrypt - Pass maintainership to koalative at gmail.com sysutils/gigolo - Change Makefile header, use my name and @FreeBSD.org email - Pass maintainership to koalative at gmail.com - Use tar:bzip2 instead of USE_BZIP2=yes - Remove TODO from DOCS - Remove useless .include <bsd.port.options.mk> - Change pkg-plist, remove mtree Notes: svn path=/head/; revision=356500
* - support stagingRodrigo Osorio2014-06-042-10/+15
| | | | | | | | | | - changes in per-install & do-install commands Submitted by: rodrigo@ (maintainer) Reviewed by: bapt (mentor) Notes: svn path=/head/; revision=356465
* - Mark IGNORE < 9.1Martin Wilke2014-06-041-1/+7
| | | | | | | PR: 190596 Notes: svn path=/head/; revision=356429
* - Bump PORTREVISION for dependencies changesRusmir Dusko2014-06-032-9/+7
| | | | | | | | | | | - Pass maintainership to koalative at gmail.com - Use libtool instead of USE_AUTOTOOLS libtool - Add USE_AUTOTOOLS libtoolize - Set PORTSCOUT, wrong NLS - Change pkg-plist, remove *.la files Notes: svn path=/head/; revision=356400
* 1: Fix COMMENT.Vanilla I. Shu2014-06-032-4/+3
| | | | | | | | | | 2: add libtool to USES. PR: ports/190411 Submitted by: ports at robakdesign.com Notes: svn path=/head/; revision=356358