1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
Commit Graph

3900 Commits

Author SHA1 Message Date
Matthias Andree
f7fdb8279d Add #include <limits.h> to include/lzo/lzodefs.h to fix build issues
on some architectures, for instance, i386, that would otherwise
leave ULONG_MAX undefined.

Bug is reported upstream.

Reported by: Randy Bush
2014-06-27 06:37:24 +00:00
Matthias Andree
8bb6e06633 Update to new upstream release 2.07, fixing a potential buffer overrun.
MFH:	2014Q2
Security:	d1f5e12a-fd5a-11e3-a108-080027ef73ec
2014-06-27 00:51:13 +00:00
Matthias Andree
26342cd267 Mark MAKE_JOBS_UNSAFE to fix the build.
Failure log: https://people.freebsd.org/~mandree/arj-3.10.22_4.log.xz
2014-06-26 18:18:58 +00:00
Antoine Brodin
c0ef6553ab Allow to build with texinfo from ports
With hat:	portmgr
2014-06-26 08:41:34 +00:00
Baptiste Daroussin
aa57dea8a7 Allow to build with texinfo from ports 2014-06-25 19:37:36 +00:00
Baptiste Daroussin
669c094ac0 Allow to build with texinfo from ports 2014-06-25 19:37:01 +00:00
Alexey Dokuchaev
52919007a9 - Remove BROKEN_powerpc, builds and runs just fine (tested on Mac mini G4)
- Avoid changing the same file both via the patch and with sed(1)
- Now that with staging PLIST_FILES become long again, resurrect pkg-plist
- Improve COMMENT, port description, sort the knobs, and cleanup the port
2014-06-25 03:23:59 +00:00
Baptiste Daroussin
dd63ae1966 Use framework properly to build 2014-06-24 21:49:08 +00:00
Baptiste Daroussin
ef49fa1572 Replace GMAKE by MAKE_CMD 2014-06-24 21:47:12 +00:00
Baptiste Daroussin
1778ba491f Use MAKE_CMD instead of GMAKE 2014-06-24 21:46:28 +00:00
Baptiste Daroussin
65a37b8901 Simplify Makefile remove GMAKE 2014-06-24 21:45:50 +00:00
Baptiste Daroussin
c85a36b065 Add USES=charsetfix 2014-06-24 16:25:38 +00:00
Tijl Coosemans
8b351e0e84 Add USES=libtool. 2014-06-22 20:12:36 +00:00
Tijl Coosemans
d60178bc47 - Add USES=libtool to archivers/libarchive.
- Bump PORTREVISION on dependent ports.
2014-06-22 20:11:54 +00:00
Tijl Coosemans
3e4a806167 Add 4 new sed commands to USES=libtool. The first two apply some of the
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)
2014-06-22 10:44:29 +00:00
Dmitry Marakasov
2ab8bf6757 - Add missing USES=libtool to archivers/snappy
- Bump dependent ports as .so version has changed

Approved by:	portmgr blanket
2014-06-16 15:16:17 +00:00
Philippe Audeoud
a9c9b805e3 - Update to 2.00
- Add license
2014-06-16 13:31:05 +00:00
Kurt Jaeger
ceba983ef6 New port archivers/php5-snappy
PR:		ports/189885
Submitted by:	Melvyn Sopacua <melvyn@magemana.nl>
2014-06-15 13:45:01 +00:00
John Marino
d0bb05930a Reset the 99 ports still listed under sylvio@
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)
2014-06-11 18:55:29 +00:00
Tijl Coosemans
9f8b4bcde3 Support LIBS like LDFLAGS.
- 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)
2014-06-11 14:49:59 +00:00
John Marino
e576cffda4 Resurrect archivers/bzip and assign maintainer
This port was removed due not having a publically available distfile.
That has been fixed per the PR with maintainership assigned to submitter.

Additionally:

  * The patch-aa was renamed
  * The patch-ab and patch-ac touched the same file; they were combined
    and renamed
  * DragonFly support was added (hence the portrevision bump)
  * GPLv2 license was annotated
  * 80-column formatting was respected
  * PLIST sorted

PR:		188939
Submitted by:	Chris Hutchinson
Tweaks:		marino
2014-06-11 09:49:14 +00:00
Dmitry Marakasov
960c9a9789 - Drop .la files, no dependees require them
Approved by:	portmgr blanket
2014-06-10 20:57:03 +00:00
Dmitry Marakasov
6b4ff7ca75 - Add missing USES=libtool
Approved by:	portmgr blanket
2014-06-10 20:50:45 +00:00
Mathieu Arnold
61de712f46 Remove all the bootstrap files (.bs) from the plists.
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
2014-06-10 12:14:12 +00:00
Jimmy Olgeni
37e782dfbc Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories A-C.

CR:		D196
Approved by:	portmgr (bapt)
2014-06-09 11:21:52 +00:00
Marcus von Appen
c88bb9334f - Remove easy_install dependency
- Convert to PYDISTUTILS_AUTOPLIST
- Bump PORTREVISION to enforce a cleanup for the easy_install references

With hat:	python@
Approved by:	portmgr (implicit)
2014-06-08 09:08:38 +00:00
Alex Kozlov
12e263b358 - Use /usr/bin/unzip for zip files extraction (part 2)
Remove most of USES=zip:infozip

PR:        ports/188419
Approved by:	portmgr (bapt)
Exp-run:	antoine
2014-06-06 15:26:41 +00:00
Dmitry Marakasov
8970961b47 - Drop .la files, no dependees require them
Approved by:	portmgr blanket
2014-06-05 19:49:16 +00:00
Dmitry Marakasov
a5dadce5f4 - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-06-05 18:20:15 +00:00
Dmitry Marakasov
9a2db5548d - Switch to USES=libtool, drop .la files
Approved by:	portmgr blanket
2014-06-05 13:04:49 +00:00
Dmitry Marakasov
a5579275d3 - Switch to USES=libtool, drop .la files
- Fix bash shebang

Approved by:	portmgr blanket
2014-06-04 17:37:51 +00:00
Vanilla I. Shu
28775aff66 Upgrade snappy to 1.1.1, and bump all related PORTREVISION to chase shared library version.
PR:		ports/190409
Submitted by:	ports at robakdesign.com
Approved by:	portmgr@ (for NO_STAGE)
2014-06-03 14:34:06 +00:00
Sunpoet Po-Chuan Hsieh
7330d63edd - Use USES=libtool
- Strip shared library in post-install:
- Bump PORTREVISION for package change
2014-06-03 12:44:13 +00:00
Tijl Coosemans
044449c06a Enable the libminizip library which will be used by multimedia/vlc:
- Use the standard MASTER_SITE for zlib.
- Replace PLIST_FILES with a separate pkg-plist.
- Instead of using the bundled "Makefile" set USE_AUTOTOOLS to generate
  a new Makefile from Makefile.am that allows building libminizip.so.
  Also remove MAKE_ARGS, do-install and patch-contrib-minizip-Makefile.
- Silence post-patch.
- Adjust regression-test.

PR:		190179
Approved by:	bapt
2014-06-02 20:38:38 +00:00
Mathieu Arnold
0d84fe27f6 Fix build with 5.20.
Sponsored by:	Absolight
2014-06-02 12:55:16 +00:00
Olli Hauer
73969bbf79 - fix sanity in CAT archivers
- USE_BZIP2   -> USES=tar:bzip2
 - LICENSE=BSD -> BSD[n]CLAUSE
2014-06-01 07:59:15 +00:00
Alex Kozlov
fe7fc772a5 - Fix various distinfo errors
- Remove unused USE_* knobs
- Convert USE_TWISTED_RUN to USES
- Remove empty lines after .include <bsd.port.mk>

Approved by:	portmgr (antoine)
2014-05-31 16:37:58 +00:00
Antoine Brodin
4e122f03e1 Reset maintainer, maintainer no longer wishes to maintain those ports
With hat:	portmgr
2014-05-29 23:18:42 +00:00
John Marino
9951638e48 2 more ports: convert to USES+= zip
USES=zip is currently desired when all distfiles are zip archives, unless
the after-extraction arguments are tailored for ${TAR}.  Currently
USES=zip is incompatible with multiple distfiles of different formats,
but this is being worked on.

Approved by:	general infrastructure blanket
2014-05-29 20:18:17 +00:00
John Marino
e7512728d3 2 more ports: convert to USES+= zip
USES=zip is required when at least one distfile is a zip archive, unless
the after-extraction arguments are tailored for ${TAR}

Approved by:	general infrastructure blanket
2014-05-29 17:48:12 +00:00
Sofian Brabez
8a925aeb82 - Add CONFLICTS
CR:		D70
Approved by:	bapt (portmgr)
2014-05-27 12:06:54 +00:00
Baptiste Daroussin
767c8514e9 Convert to USES=lua 2014-05-26 15:57:52 +00:00
Baptiste Daroussin
e836ab008a Replace lang/lua with the new lang/lua51
lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1
Make the default lua lua52
Make all lua ports using USES=lua

Approved by:	portmgr (implicit)
2014-05-26 15:28:28 +00:00
Martin Matuska
893f6194bd Horde package update:
comms/pear-Horde_ActiveSync 2.15.1 -> 2.16.1
devel/pear-Horde_Alarm 2.2.0 -> 2.2.1
devel/pear-Horde_Argv 2.0.8 -> 2.0.9
security/pear-Horde_Auth 2.1.3 -> 2.1.4
archivers/pear-Horde_Compress 2.0.7 -> 2.0.8
security/pear-Horde_Crypt 2.4.2 -> 2.4.3
devel/pear-Horde_Data 2.0.4 -> 2.0.5
devel/pear-Horde_Date 2.0.9 -> 2.0.10
www/pear-Horde_Dav 1.0.4 -> 1.0.6
databases/pear-Horde_Db 2.1.1 -> 2.1.2
devel/pear-Horde_History 2.3.0 -> 2.3.1
graphics/pear-Horde_Image 2.0.7 -> 2.0.8
mail/pear-Horde_Imap_Client 2.19.6 -> 2.20.0
devel/pear-Horde_Itip 2.0.5 -> 2.0.6
mail/pear-Horde_ListHeaders 1.1.1 -> 1.1.2
devel/pear-Horde_Lock 2.1.0 -> 2.1.1
mail/pear-Horde_Mail 2.2.0 -> 2.3.0
mail/pear-Horde_Mime 2.3.4 -> 2.3.5
mail/pear-Horde_Mime_Viewer 2.0.6 -> 2.0.7
devel/pear-Horde_Nls 2.0.3 -> 2.0.4
mail/pear-Horde_Smtp 1.4.1 -> 1.5.0
devel/pear-Horde_Token 2.0.4 -> 2.0.5
2014-05-23 23:14:17 +00:00
Tijl Coosemans
f191d6b887 Quote ${CC} and similar variables in MAKE_ARGS.
Reported by:	Dominic Fandrey <kamikaze@bsdforen.de>
2014-05-20 19:32:39 +00:00
Alex Kozlov
4d37feee07 - Add liblzxcomp_p.a to orphans whitelist 2014-05-20 15:14:13 +00:00
Alex Kozlov
5d6a8e4ab8 - Add/update license when possible
- Modernize ports Makefiles
- Update MASTER_SITES/distfile for converters/chmview
2014-05-20 06:06:35 +00:00
Tijl Coosemans
5c0834bd1b For several MATE related ports:
- USES=libtool tar:xz.
- INSTALL_TARGET=install-strip.
- Add CONFIGURE_ARGS=--disable-static to ports that only install plugins.
2014-05-18 21:05:53 +00:00
Renato Botelho
aac4808550 Removed some expired ports:
2014-05-12 archivers/star: Depends on deprecated smake
2014-05-12 editors/ved: Depends on deprecated smake
2014-04-12 japanese/chasen: Unmaintained since 2001
2014-05-15 16:05:40 +00:00
Christian Weisgerber
c51f3f1605 Update to 1.27.1. Bug fixes:
* Fix unquoting of file names obtained via the -T option.
* Fix GNU long link header timestamp (backward compatibility).
* Fix extracting sparse members from star archives.

PR:		189675
Submitted by:	Jason Harris <jharris@widomaker.com>
2014-05-12 21:31:01 +00:00