- Mark WITH_LLVM_PORTS as broken since it doesn't build with llvm 3.0
- Move LICENSE to correct place
PR: ports/166160 (based on)
Submitted by: scheidell@
Feature safe: yes
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.
- Add clamav-milter as CONFLICTS, this new meta port will be added soon
PR: ports/161872
Submitted by: Alexey Markov <redrat@mail.ru>
Feature safe: yes
few days before the release, i made tests with that tarball, but it was
changed before release, and the distinfo was wrong.
I compared both tarballs and the difference was part of this commit [1] was
missing on the one i used.
Update distinfo to match 0.97.3 official tarball and bump PORTREVISION
Reported by: many people
- Mark OPTION LLVM_PORTS as BROKEN since it's not building with llvm-2.9
from ports
PR: ports/157736
Submitted by: Gary Palmer <freebsd-gnats@in-addr.com>
instead of build clamav's own llvm. The option is off by default, so, no
PORTREVISION bum is required
PR: ports/154900
Submitted by: Denny Lin <dennylin93@hs.ntnu.edu.tw>
log:
off_t is 64-bit, size_t is still 32-bit and that causes unexpected integer
promotion here:
map_off = map->len - 2048
First the unsigned subtraction is performed, and then the unsigned (!) value
is sign-extended to 64-bit. Hence a negative value becomes positive, which is
wrong.
Reported by: Franz Schwartau <franz@electromail.org>
Obtained from: https://wwws.clamav.net/bugzilla/show_bug.cgi?id=2300
- Add a new OPTION to TESTS, since it requires python on build time and some
people don't like this. Leave it ON by default to run tests on package
building
- Bump PORTREVISION because gcc dependency has changed
PR: ports/150984 (based on)
Submitted by: Eugene Grosbein <eugen@grosbein.pp.ru>
- Fix pkg-plist to delete directories installed out of PREFIX (on /var) [1]
- Bump PORTREVISION because of [1]
PR: ports/145448 [1]
Submitted by: sahil@ [1]
- Fix error on make check when LC_ALL != en and subversion is installed [1]
PR: ports/145340 [1]
Submitted by: Alexander Wittig <alexander@wittig.name> [1]
Obtained from: https://wwws.clamav.net/bugzilla/show_bug.cgi?id=1922 [1]
propogated by copy and paste.
1. Primarily the "empty variable" default assignment, which is mostly
${name}_flags="", but fix a few others as well.
2. Where they are not already documented, add the existence of the _flags
(or other deleted empties) option to the comments, and in some cases add
comments from scratch.
3. Replace things that look like:
prefix=%%PREFIX%%
command=${prefix}/sbin/foo
to just use %%PREFIX%%. In many cases the $prefix variable is only used
once, and in some cases it is not used at all.
4. In a few cases remove ${name}_flags from command_args
5. Remove a long-stale comment about putting the port's rc.d script in
/etc/rc.d (which is no longer necessary).
No PORTREVISION bumps because all of these changes are noops.