Commit graph

22 commits

Author SHA1 Message Date
Steve Wills
86cd4fbe5a many ports: mark broken on powerpc64 2016-04-21 16:43:14 +00:00
Dmitry Marakasov
d75c8a72d9 - Clarify LICENSE
- Add LICENSE_FILE
- Switch to options helpers
- Switch to USES=tar:tbz2
- Pet portlint

Approved by:	portmgr blanket
2016-03-12 14:13:34 +00:00
Bernard Spil
c3069bd0fe irc/charybdis: Remove RAND_egd
- Add patch to remove RAND_egd from v3.5 RC

PR:		198504
Reviewed by:	crees (maintainer), koobs (mentor)
Approved by:	crees (maintainer), koobs (mentor)
Differential Revision:	https://reviews.freebsd.org/D4694
2015-12-24 17:00:54 +00:00
Tijl Coosemans
a374acb969 By default libtool replaces -export-symbols <file> with -retain-symbols-file
<file> on ELF systems, but this doesn't really do what -export-symbols is
meant to do.  On GNU ELF systems it converts <file> to a simple version
script first and then uses -version-script instead of -retain-symbols-file.
Let USES=libtool patch libtool scripts to do this on all systems with GNU
ld(1).

Bump PORTREVISION on all ports where the build log contains -export-symbols.

audio/calf: This port builds a module that now exports only one function,
but it also builds a number of executables that link to this module and
expect to see other functions.  Because it's already a bit dodgy to link to
a module (libtool warns about this) let the module continue to export only
one function and instead build an ordinary library from the same source that
the executables can link to.  Fix a number of other issues in the same
Makefile.am and clean up the port Makefile.

japanese/scim-honoka: Tries to hide all symbols that start with an
underscore, but because this library is written in C++ all symbols start
with _Z so it ends up hiding everything.  Just don't hide anything at all
like the textproc/scim configure script does.

multimedia/schroedinger: Apply an upstream patch.

textproc/scim-input-pad: Same as japanese/scim-honoka.

PR:		201922
Approved by:	portmgr (antoine)
Exp-run by:	antoine
2015-08-02 15:03:19 +00:00
Tijl Coosemans
68edbeeaae - Display a stage-qa warning when ports use PREFIX/var instead of /var
- Add --localstatedir=/var to _LATE_CONFIGURE_ARGS (like --mandir) but not
  when CONFIGURE_ARGS already sets it.  (GNU configure scripts set it to
  PREFIX/var when PREFIX != /usr.)
- Add --localstatedir="${PREFIX}/var" to CONFIGURE_ARGS in some ports so
  they aren't affected by this change (for now at least).  This commit is
  meant to ensure that new ports don't make the same mistake.

- games/acm: the configure script in this port is very old; instead of
  patching it more, just replace GNU_CONFIGURE with HAS_CONFIGURE.
- irc/charybdis: it already used /var but adding --localstatedir=/var
  changed the behaviour of the configure script; adjust the port to this.

PR:		199506
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2015-04-20 19:06:29 +00:00
Tijl Coosemans
c88aaf5c89 Add missing USE_OPENSSL=yes
PR:		195796
2015-01-15 09:05:37 +00:00
Baptiste Daroussin
b6bb709058 Cleanup plist 2014-10-27 13:00:21 +00:00
Dmitry Marakasov
5774d244cf - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-07-04 08:30:35 +00:00
Jimmy Olgeni
5e38556079 Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories G-I.

CR:		D201
Approved by:	portmgr (bapt)
2014-06-13 07:36:27 +00:00
Bryan Drewery
23a1cad535 - Fix plist to have proper 'rmdir DIR' ordering.
Pkgng will not detect the directory otherwise. This was due to
  incorrectly advise in the check-stagedir.sh script, fixed in
  r351587

With hat:	portmgr
2014-04-21 01:14:53 +00:00
Emanuel Haupt
a63c4d943f Remove trailing whitespaces from category irc 2014-02-21 13:37:29 +00:00
Emanuel Haupt
5005b67362 According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
2014-02-10 13:54:26 +00:00
Chris Rees
ffea24219b Stage ports maintained by me in irc java mail
Cleanups in several places
2013-12-29 15:46:13 +00:00
Baptiste Daroussin
f30824b2ef Add NO_STAGE all over the place in preparation for the staging support (cat: irc) 2013-09-20 18:44:49 +00:00
Eitan Adler
334eb0fc61 This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.
If a port used other USE_GNOME items it was untouched.
The ports that used other USES were fixed by hand.

PR:		ports/177081
Reviewed by:	bapt
Approved by:	portmgr (miwi)
2013-03-19 13:04:30 +00:00
Chris Rees
9ddb119916 Modify default directory for ban.db; charybdis now works "out of the box",
without breaking installs already configured.

Fix installation of libratbox.pc
2013-01-02 15:27:48 +00:00
Chris Rees
31a6e1f9c3 Update to 3.4.2
This contains a security fix, all admins are advised to upgrade.

Security:	http://www.ratbox.org/ASA-2012-12-31.txt
2013-01-02 12:23:17 +00:00
Chris Rees
af089f84b8 Add the documentation for IRC operators 2012-07-20 08:28:33 +00:00
Chris Rees
e899041df8 Register missed CONFLICTS items
Noticed by:	ketas (IRC)
2012-06-03 16:18:00 +00:00
Doug Barton
83eb2c3700 In the rc.d scripts, change assignments to rcvar to use the
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.
2012-01-14 08:57:23 +00:00
Chris Rees
dd045ef1d7 - Update maintainer address
Approved by: rene (mentor)
2011-06-17 06:46:07 +00:00
Martin Wilke
82c16827c5 A powerful IRC daemon, based on ircd-ratbox. Utilized on networks such as
StaticBox and SorceryNet. A variant of charybdis has currently been deployed
on Freenode.

WWW: http://www.atheme.org/project/charybdis

PR:		ports/155316
Submitted by:	Chris Rees <utisoft at gmail.com>
2011-03-17 15:54:29 +00:00