1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
Commit Graph

183 Commits

Author SHA1 Message Date
Dmitry Marakasov
e32ba5eced - Add CPE info
Approved by:	portmgr blanket
2015-04-16 06:35:01 +00:00
Baptiste Daroussin
b6bb709058 Cleanup plist 2014-10-27 13:00:21 +00:00
Marcus von Appen
734b63302e - Convert ports of irc/ and lang/ to new USES=python
Approved by:	portmgr (implicit)
2014-10-20 17:52:16 +00:00
Tijl Coosemans
f87dda7598 Add missing library libgmodule-2.0
Reported by:	antoine
2014-09-02 14:24:36 +00:00
Tijl Coosemans
c958a48581 Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always work
when an older version of a package is installed.  This is the case when an
executable links with installed libraries and with uninstalled libraries
that link with other uninstalled libraries.  For each of the directly
linked libraries the executable will have an rpath (/usr/local/lib for the
installed libraries and a path under WRKDIR for each of the uninstalled
libraries), but not for the indirect libraries.  Both ld(1) and rtld(1)
search the rpath of the executable first before any rpath of libraries, so
the indirectly linked libraries will be found in /usr/local/lib if they are
installed instead of in WRKDIR.

With this commit executables will overlink with uninstalled indirect
libraries again so their location is added to the rpath of the executable.

This partially reverts r358784.

PR:		191611
Approved by:	portmgr (bapt)
2014-07-23 10:28:03 +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
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
Koop Mast
99bfee6a24 Fix build with gcc from ports. [1]
While here use USES=libtool, strip installed small update regarding LDFLAGS

PR:		178896 [1]
Submitted by:	kvedulv@kvedulv.de
Patch by:	avg@ [1]
2014-06-05 20:27:29 +00:00
Antoine Brodin
c35f26d77a Don't violate stagedir
Reported by:	poudriere
With hat:	portmgr
2014-04-01 17:23:56 +00:00
Pietro Cerutti
d9c9432ab5 - Convert to USES=tcl
- Convert to new LIB_DEPENDS format
- STAGE-clean
- Fix WWW line in pkg-descr
2014-02-14 17:14:03 +00:00
Dmitry Marakasov
ab24828630 - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with [fgijk])
Approved by:	portmgr (bdrewery)
2013-10-22 13:58:55 +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
Andrej Zverev
184fe8daa4 - convert to the new perl5 framework
- convert USE_GMAKE to Uses

Reviewed by:	kwm@
Approved by:	kwm@ (gnome@)
2013-09-12 17:55:41 +00:00
Baptiste Daroussin
2f3fa0d623 Add an explicit dependency on pkgconf 2013-09-02 22:03:38 +00:00
Alex Kozlov
e159824929 - Convert USE_GETTEXT to USES (part 3)
Approved by:	portmgr (bapt)
2013-04-24 18:10:30 +00:00
Koop Mast
7887c684ad * Update the glib to 2.34.3 and gtk20 to 2.24.17 and gtk30 to 3.6.4 which
are the latest stable releases.
* Update vala to the newest stable release 0.18.1, also update a few ports
  in the gtk/gnome stack.
* The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles.
* Remove pkg-config run depends from glib20 and freetype2. This doesn't
  eliminate pkg-config run dependency completely, a second phase is needed
  and is planned.
* Support for .:run. and .:build. for USE_GNOME components was added.
  Currently only libxml2 and libxslt support this mechanism.
* Updates of the telepathy stack and empathy.
* Trim makefile headers, convert ports to new options, trim off library
  versions for some ports.
* Fix other ports so they build with the new glib version.

Thanks to miwi and crees for helping out with some exp-runs.
Approved by:	portmgr (miwi & bapt)
Obtained from:	gnome team repo
2013-03-08 10:51:34 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Jeremy Messenger
b427b0d251 Readd socks5 support by using net/dante instead of removal net/socks5.
PR:		ports/167826
Submitted by:	4721@hushmail.com <4721@hushmail.com>
2012-05-20 16:46:32 +00:00
Josh Paetzel
112c373d95 Remove optional dep on net/socks5, which is exiting the ports tree. With a bit
of mangling SOCKS5 functionality could be resurrected with net/dante

PR:	ports/165097
Submitted by:	jpaetzel
2012-02-26 18:44:12 +00:00
Dmitry Marakasov
6f6fbe4bdf - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
2011-09-23 22:26:39 +00:00
Martin Wilke
a9481afc8a - Get Rid MD5 support 2011-03-19 12:38:54 +00:00
Koop Mast
162f8947f9 Update to 2.8.8.
PR:		ports/148442
Submitted by:	"Joseph S. Atkinson" <jsa@wickedmachine.net>
2010-07-13 18:03:37 +00:00
Ade Lovett
8d837132c7 Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. 2010-05-31 02:01:56 +00:00
Koop Mast
48e62d9a37 Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.30/ .

This release brings initial PackageKit support, Upower (replaces power
management part of hal), cuse4bsd integration with HAL and cheese, and a
faster Evolution.

Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This
will also be the last of the 2.x releases. The next release will be the
highly-anticipated GNOME 3.0 which will bring with it a new UI experience.

Currently, there are a few bugs with GNOME 2.30 that may be of note for our
users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at
http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading
instructions, and the up-to-date list of known issues.

This release features commits by avl, ahze, bland, marcus, mezz, and myself.

The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the
initual packagekit porting.

And the following contributors & testers for there help with this release:
Eric L. Chen
Vladimir Grebenschikov
Sergio de Almeida Lenzi
DomiX
walder
crsd
Kevin Oberman
Michal Varga
Pavel Plesov
Bapt
kevin

and ITetcu for two exp-run

PR:	ports/143852
	ports/145347
	ports/144980
	ports/145830
	ports/145511
2010-05-10 21:19:08 +00:00
Dirk Meyer
de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00
Dmitry Marakasov
0074c5fa8c - Switch SourceForge ports to the new File Release System: categories starting with H,I,J,K,L 2009-08-22 00:24:37 +00:00
Dirk Meyer
eca78ec61b - bump all port that indirectly depends on libjpeg and have not yet been bumped or updated
Requested by:	edwin
2009-07-31 13:57:52 +00:00
Joe Marcus Clarke
f225722fd7 Mark SOCKS5 support as only for i386 since it will cause 64-bit apps to
crash as it lacks prototype definitions for functions such as SOCKSlocaltime,
SOCKSread, etc.  These functions return 64-bit values, but will get
truncated to 32-bit values without proper prototypes.

I looked at net/socks5, but it does not appear to be engineered in a way
to provide these prototypes to external consumers.  The socks5 port needs
to be updated so that it works with INCLUDE_PROTOTYPES on FreeBSD.
2009-03-22 19:41:34 +00:00
Joe Marcus Clarke
7430fa2c50 * Switch to USE_TCL infrastructure
* Add support for tcl85

PR:		130187
Submitted by:	mm
2009-03-03 04:11:13 +00:00
Joe Marcus Clarke
610ae56816 Presenting GNOME 2.24 for FreeBSD.
See http://library.gnome.org/misc/release-notes/2.24/ for the general
release notes.  On the FreeBSD front, this release introduces Fuse support
in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some
long-standing seahorse and gnome-keyring bugs.  The documentation updates
to the website are forthcoming.

This release features commits by adamw, ahze, kwm, mezz, and myself.  It would
not have been possible without are contributors and testers:

Alexander Loginov
Craig Butler [1]
Dmitry Marakasov [6]
Eric L. Chen
Joseph S. Atkinson
Kris Moore
Lapo Luchini [7]
Nikos Ntarmos
Pawel Worach
Romain Tartiere
TAOKA Fumiyoshi [3]
Yasuda Keisuke
Zyl
aZ [4]
bf [2] [5]
Florent Thoumie
Peter Wemm
pluknet

PR:		125857 [1]
		126993 [2]
		130031 [3]
		127399 [4]
		127661 [5]
		124302 [6]
		129570 [7]
		129936
		123790
2009-01-10 05:22:13 +00:00
Jeremy Messenger
129752552f Various small fixes, bump the PORTREVISION.
Obtained from:	http://www.xchat.org/files/source/2.8/patches/
2008-08-04 02:46:24 +00:00
Jeremy Messenger
4339d2d670 Update to 2.8.6. 2008-06-14 16:25:41 +00:00
Edwin Groothuis
090059a210 Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
2008-06-06 14:17:21 +00:00
Jeremy Messenger
6261706d40 The buffers need to be larger for some translations to fix the crash. Bump the
PORTREVISION.

PR:		ports/118659
Reported by:	Kyryll A Mirnenko <mirya@zoc.com.ua>
Obtained from:	Its CVS.
2008-03-24 04:52:31 +00:00
Jeremy Messenger
208d15ac2a Scrollback shrinking code forgets to close(), bump the PORTREVISION.
Obtained from:	http://xchat.org/files/source/2.8/patches/
2007-12-12 05:55:49 +00:00
Jeremy Messenger
70e751c61a - Stops scrollback files growing too large by fixing the file-shrink code.
- Puts a "Display scrollback from previous session" into the Setup GUI
  (logging section) so people can turn this off without typing commands.
- Bump the PORTREVISION.

Obtained from:	http://xchat.org/files/source/2.8/patches/
2007-10-18 17:13:25 +00:00
Mark Linimon
581e69adb2 Set USE_PERL5/WANT_PERL as appropriate, for ports that either depend on
perl unconditonally, or conditionally.  To be able to conditionalize the
inclusion of bsd.perl.mk, they now need to be defined before the inclusion
of bsd.port.pre.mk.

Hat:		portmgr
2007-10-07 05:45:04 +00:00
Joe Marcus Clarke
5bb3e491b6 * OPTIONSify
* Add spell check support for libsexy (default: off)
* Add runtime dependency on libnotify and notification-daemon
* Remove obsolete Perl version checks
* Depend on TCL 8.4 instead of 8.3

PR:		114453
Submitted by:	Yuri Pankov <yuri@darklight.org.ru>
2007-07-28 18:35:48 +00:00
Jeremy Messenger
0236e95915 Fix creation of ~/.xchat2/scrollback/ paths, bump the PORTREVISION.
Obtained from:	http://xchat.org/files/source/2.8/patches/
2007-07-11 15:20:27 +00:00
Jeremy Messenger
f1ec09f0d6 Update to 2.8.4. 2007-07-05 00:58:25 +00:00
Jeremy Messenger
ca85956a03 Fix defunc processes created by opening tray balloons, bump the PORTREVISION.
Obtained from:	http://xchat.org/files/source/2.8/patches/
2007-06-07 02:21:42 +00:00
Florent Thoumie
d4f0d0048a - Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
2007-05-19 20:36:56 +00:00
Joe Marcus Clarke
f5858b7780 Update tp 2.8.2. 2007-04-14 06:38:15 +00:00
Jeremy Messenger
92d3b5cacc Portlint:
-Add '-[0-9]*' in the CONFLICT.
2007-03-26 20:11:31 +00:00
Jeremy Messenger
3a0ccf7858 Fix Japanese translation error in 2.6.8 and 2.8.0 causes xchat NOT to run,
bump the PORTREVISION.

Submitted by:	Takeharu KATO <takeharu1219@ybb.ne.jp>
2007-03-21 21:35:47 +00:00
Jeremy Messenger
b20c5c257d Fix the /back and repeat /away if you are back. Also, it fixes in the Server ->
Away menu when you try to uncheck it. This patch was took from xchat2 CVS. Bump
the PORTREVISION.
2007-01-06 01:01:15 +00:00
Jeremy Messenger
eb96436d3a Update to 2.8.0.
PR:		ports/107563
Submitted by:	Alex <goo@t72.ru>
2007-01-05 21:25:14 +00:00
Pav Lucistnik
71da93b153 - Fix a security problem
Obtained from:	Peter Zelezny <zed@xchat.org> (author)
2006-12-18 15:57:41 +00:00
Pav Lucistnik
160e8c206a - Force spellchecker feature to use gtkspell backend
PR:		ports/105949
Submitted by:	Alex <goo@t72.ru>
2006-11-28 14:44:41 +00:00