1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
Commit Graph

326230 Commits

Author SHA1 Message Date
Pietro Cerutti
2bc5bf9a4e - Convert to USES=tcl 2014-02-20 10:05:21 +00:00
Pietro Cerutti
cc71fee1ed - Remove CFLAGS not understood by gcc 2014-02-20 10:04:56 +00:00
Pietro Cerutti
2b0d56f528 - Convert to USES=tk
- STAGE-clean
2014-02-20 10:01:58 +00:00
Pietro Cerutti
735668549a - Convert to USES=tcl
- STAGE-clean
2014-02-20 09:47:01 +00:00
Dmitry Marakasov
87294f0f15 - Fix pkg-message: fetch arguments come before urls 2014-02-20 09:33:20 +00:00
Emanuel Haupt
ec50876fbd Support staging 2014-02-20 08:46:05 +00:00
Emanuel Haupt
c5587d805f Support staging 2014-02-20 08:44:59 +00:00
Emanuel Haupt
a304a715f9 Support staging 2014-02-20 08:44:04 +00:00
Matthias Andree
735c8950c1 Convert to staging. Modernize.
Approved by:	portmgr (blanket)
2014-02-20 08:43:55 +00:00
Emanuel Haupt
75f70d2f99 Support staging 2014-02-20 08:41:47 +00:00
Emanuel Haupt
daa97b4a39 Support staging 2014-02-20 08:40:42 +00:00
Emanuel Haupt
dd2c898a22 Support staging 2014-02-20 08:38:57 +00:00
Emanuel Haupt
bb91acd1c4 Support staging 2014-02-20 08:36:22 +00:00
Emanuel Haupt
990ab2bf94 Support staging 2014-02-20 08:28:21 +00:00
Emanuel Haupt
cb146dd529 Support staging 2014-02-20 08:26:16 +00:00
Emanuel Haupt
7ecce99dec Support staging 2014-02-20 08:25:07 +00:00
Emanuel Haupt
b23afaacd0 Support staging 2014-02-20 08:23:14 +00:00
Emanuel Haupt
ab4c883485 Support staging 2014-02-20 08:15:27 +00:00
Emanuel Haupt
9fe7d907dc Support staging 2014-02-20 08:14:16 +00:00
Emanuel Haupt
a3af4f48e1 Support staging 2014-02-20 08:13:05 +00:00
Emanuel Haupt
863f1c2e18 Support staging 2014-02-20 08:11:09 +00:00
Emanuel Haupt
56862d4ebe Support staging 2014-02-20 08:09:27 +00:00
Emanuel Haupt
1191d56b7c Support staging 2014-02-20 08:08:03 +00:00
Ruslan Makhmatkhanov
765ffc98cd - this change sneaked in by accident. Reverting that. 2014-02-20 08:07:01 +00:00
Emanuel Haupt
edfd67d861 Support staging 2014-02-20 08:06:18 +00:00
Emanuel Haupt
7df01ca68e Support staging 2014-02-20 08:03:45 +00:00
Ruslan Makhmatkhanov
c8608f042f - clean-up WITH_FIXED_FENV conditional, because it is only used for
versions of FreeBSD, we not support anymore.
- remove LATEST_LINK. There is PYTHON_PKGNAMEPREFIX set and in future
  we may have this package built against different python versions.
2014-02-20 08:03:41 +00:00
Emanuel Haupt
365e1a66d7 Support staging 2014-02-20 08:01:28 +00:00
Emanuel Haupt
bf72e49f12 - Support staging
- This port does not build with clang
2014-02-20 07:52:34 +00:00
Emanuel Haupt
5f5efa56ce Support staging 2014-02-20 07:49:43 +00:00
Emanuel Haupt
2611a2f2ba Support staging 2014-02-20 07:48:17 +00:00
Emanuel Haupt
4b34da298e Support staging 2014-02-20 07:46:48 +00:00
Emanuel Haupt
53eeeb14fb Support staging 2014-02-20 07:38:36 +00:00
Brad Davis
6a17d9d782 - Add sysutils/liblogging. A generic logging library used by rsyslog.
Reviewed by:	tj@ & bapt@
2014-02-20 00:25:20 +00:00
Xin LI
2014bc3347 Update to 0.2.5.
While I'm there also pet portlint.
2014-02-19 23:51:47 +00:00
Danilo Egea Gondolfo
77ace136ba - Add a PORTSCOUT limit 2014-02-19 23:47:51 +00:00
Danilo Egea Gondolfo
4238ea2079 - Update from 1.0 to 1.0.9
- Add LICENSE

PR:		ports/185342
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2014-02-19 23:30:13 +00:00
Danilo Egea Gondolfo
e28ac7c0d7 - Add libclang.so to LIB_DEPENDS 2014-02-19 23:26:09 +00:00
Matthias Andree
d3fdea6379 Also bump PORTREVISION to have repaired catalogs installed. 2014-02-19 22:31:37 +00:00
Matthias Andree
9baa429e32 Fix catalog generation to unbreak textproc/docbook-utils build.
Missing closing quotes, and docbook-xml-5.0 does not install a
docbook.cat for SGML, so do not list it. Use a shell test to skip the
installation because fmake would otherwise barf (bmake is fine).
2014-02-19 22:30:56 +00:00
Antoine Brodin
3c7cecdd84 Remove more cruft (patching Makefile.in when automake is used) 2014-02-19 22:13:32 +00:00
John Marino
a6a9093532 sysutils/dd_rescue: unbreak everywhere
The internal makefile calls autoconf and autoheader, but neither
were specified as build dependencies before now.

Note that this port will not build on FreeBSD 8 because __WORDSIZE is not
defined in _stdint.h yet.  DragonFly got around it with setting these
in Makefile.DragonFly:

  x86_64:
    MAKE_ARGS+= CFLAGS_OPT="-D__WORDSIZE=64"
    CFLAGS+=    -D__WORDSIZE=64

  i386:
    MAKE_ARGS+= CFLAGS_OPT="-D__WORDSIZE=32"
    CFLAGS+=    -D__WORDSIZE=32

A similar fix could be done for FreeBSD 8, but it needs to cover more
architectures.
2014-02-19 22:12:52 +00:00
Chris Rees
7d7c817973 Restore ll-core dependency and instead just don't overwrite files from it. 2014-02-19 22:01:13 +00:00
Matthias Andree
f57c3bc8fe Bump portrevision because installations from package would not have the catalog updated previously. 2014-02-19 21:48:12 +00:00
Matthias Andree
e2efe01e84 Convert to staging. Fix @exec bug in pkg-plist.
Approved by: portmgr (blanket)
2014-02-19 21:47:01 +00:00
Ruslan Makhmatkhanov
0353619109 General clean-up:
- convert USE_DOS2UNIX to USES equivalent
- support staging
- utilize options helpers
- fix portlint warnings
- install docs into staging area unconditionally
2014-02-19 21:45:51 +00:00
Antoine Brodin
2502c43732 - Stage support
- Remove non working cruft
2014-02-19 21:40:52 +00:00
Matthias Andree
2791d44a90 Modernize LIB_DEPENDS format.
Approved by: portmgr (blanket approval)
2014-02-19 21:38:43 +00:00
Chris Rees
703bd258b1 Used versioned Python binary because the symlink isn't installed by default
any more.

Pointed out by:	feld
2014-02-19 21:22:42 +00:00
John Marino
abbc8a7714 sysutils/syslog-ng-devel: Unbreak everywhere (caused by unintalled docs)
I spent a long while trying to figure out why the GNU makefile just
suddenly stopped installing five man pages.  I never did understand what
changed externally to cause that.

In the end, I took a shortcut and just manually installed the man pages
in the post-install target that was already being used.  That is simple
and robust.
2014-02-19 21:17:20 +00:00