Commit graph

43 commits

Author SHA1 Message Date
Mathieu Arnold
72ea7e696b Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:33:55 +00:00
Tijl Coosemans
3a55a118dd Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.
These were FreeBSD specific aliases for libiconv(), libiconv_open() and
libiconv_close() that are now also provided by libc which complicates
writing configure tests that work correctly when both libc iconv and
libiconv are available.

Also, because the libiconv iconv.h header redefines iconv* to libiconv*
correct use of the header implies that the aliases aren't used.

The following ports needed fixes because there was something wrong with
the way they tried to detect or use iconv:

audio/deadbeef: Remove LIBICONV_PLUG from a source file.  It's a
compile-time option and should not be set in source code.
comms/hidapi: Use standard AM_ICONV configure macro to look for iconv.
deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG.
deskutils/ljclive: Override configure test for iconv.
deskutils/owncloudclient: Add USES=iconv and patch test for iconv.
devel/aegis: Bump PORTREVISION because it no longer uses libiconv.
devel/libexplain: Add USES=iconv and override test for iconv.
devel/sdl20: Override configure test for iconv.
emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include
<iconv.h> instead of <sys/iconv.h>.
irc/scrollz: Override configure test for iconv.
japanese/chasen-base: Override configure test for iconv and patch
configure so it no longer adds -liconv to linker flags just because it
happens to be installed.
japanses/eb: Patch configure test for iconv.
japanses/eblook: Override configure test for iconv.
java/jikes: Override configure test for iconv.
multimedia/transcode: Bump PORTREVISION because only one plugin links with
libiconv now.
net/c3270: Override configure test for iconv.
net/samba4*: Bump PORTREVISION because it no longer uses libiconv.  The
configure script will always add -liconv to the linker flags when it
happens to be installed which would be wrong but later on binaries are
linked with -Wl,--as-needed and the linker discards -liconv because it
finds iconv*() functions in libc now and no longer in libiconv.
net-mgmt/icinga-*: Remove dependency on iconv.
net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker
flags just because it happens to be installed.
net/asterisk11: Patch configure so it no longer adds -liconv to linker
flags just because it happens to be installed.
net-p2p/transmission-*: Override configure test for iconv.
www/htmlcxx: Override configure test for iconv.
www/httrack: Override configure test for iconv.
www/xapian-omega: Override configure test for iconv.
x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv.
x11/x3270: Override configure test for iconv.
x11-wm/jwm: Override configure test for iconv.

PR:		202838
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2015-10-10 14:03:00 +00:00
Dmitry Marakasov
9918d35fb6 - Switch to USES=tar:tgz
- Drop 8.x support
- Switch to options helpers

Approved by:	portmgr blanket
2015-09-02 22:52:15 +00:00
Antoine Brodin
6e5719ca80 Convert to USES=jpeg 2015-06-22 18:33:20 +00:00
Baptiste Daroussin
bb21093773 Bump portrevision after png update 2014-12-25 20:54:41 +00:00
Antoine Brodin
7ae46e9b12 Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade 2014-12-25 19:04:25 +00:00
Tijl Coosemans
60945f0277 Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it.  Bump PORTREVISION on their dependent
ports except the ones that depend on these:

audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt

In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-12-08 16:48:38 +00:00
Baptiste Daroussin
6ca92592d5 Fix some non default LIB_DEPENDS
With hat:	portmgr
2014-07-16 08:44:04 +00:00
Adam Weinberger
6c12cc811b Remove NOPORTDOCS and NOPORTEXAMPLES. 2014-07-04 23:16:47 +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
Vanilla I. Shu
82b3ec3f0d Support stagedir.
Approved by:	portmgr (blanket infrastructure)
2014-01-10 09:32:14 +00:00
Eitan Adler
5504410d20 Cleanup of the unowned ports in the x11 directory
- Fix LIB_DEPENDS
- Fix COMMENT
- Fix USE_GMAKE
2013-10-13 02:01:16 +00:00
Baptiste Daroussin
db5320be85 Add NO_STAGE all over the place in preparation for the staging support (cat: x11) 2013-09-20 23:43:19 +00:00
Eitan Adler
198f972218 For some of the unmaintained ports in the x11 category convert them to OptionsNG
While here, trim the headers
2013-03-25 19:14:43 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +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
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
Gary Jennejohn
2ed39eb219 Make the binary setuid, otherwise it cannot log to utmp/utx/wtmp.
Bump PORTREVISION.
2010-01-21 10:15:40 +00:00
Gary Jennejohn
b432e5aaad Add patch-src-logging.c to fix the "can't parse pts/xx" error.
Bump PORTREVISION.
2010-01-15 16:37:12 +00:00
Gary Jennejohn
58dc2ae80c Really change this to use utx by replacing --disable-utmp with
--disable-lastlog.

The binary now does use utx routines.  However, due to other bugs
('mrxvt: can't parse tty name "pts/5"') it doesn't really do any logging.

Thanks to ed@ for the hit with the clue-bat.
2010-01-15 15:03:57 +00:00
Gary Jennejohn
fed42ee6e0 Allow this to compile after the switch from utmp to utmpx in HEAD. 2010-01-15 11:54:42 +00:00
Dmitry Marakasov
d99dd57e89 - Switch SourceForge ports to the new File Release System: categories starting with X 2009-08-22 00:39:37 +00:00
Dirk Meyer
3bbc108312 - update to jpeg7
Tested by:	pav on pointyhat
2009-07-18 11:11:29 +00:00
Steven Kreuzer
ab8a95032f Make port honor NOPORTDOCS which resolves mtree errors identified by QAT
Approved by:	wxs (mentor)
2009-04-01 14:22:37 +00:00
Mark Linimon
2be3df4e6c Reset dyeske@gmail.com at his request.
Hat:	portmgr
2009-02-02 23:44:01 +00:00
Beech Rintoul
687a2eed31 - Add USE_XORG
- Fix include and lib paths

Reported by:	pointyhat via pav
Approved by: 	David Yeske <dyeske@gmail.com> (maintainer, implicit)
2008-03-23 21:48:07 +00:00
Beech Rintoul
5b1af8fe5e - Remove USE_X_PREFIX
- Use SF macro
- Bump portrevision

Approved by:	David Yeske <dyeske@gmail.com> (maintainer, implicit)
2008-03-21 20:30:20 +00:00
Edwin Groothuis
1fa9e4844d dyeske at yahoo dot com -> dyeske at gmail dot com 2007-07-05 23:39:06 +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
Edwin Groothuis
8cf0b02204 Mark port conflicting with x11/mrxvt-devel
PR:		ports/96361
Submitted by:	Lars Engels <lars.engels@0x20.net>
2006-04-27 01:22:51 +00:00
Pav Lucistnik
3431e8e6b5 - Update to 0.4.2
PR:		ports/91860
Submitted by:	Matthew Luckie <mjl@luckie.org.nz>
Approved by:	maintainer timeout (14 days)
2006-01-29 23:31:31 +00:00
Andrej Zverev
9b8e7b1d98 - Add WITH_XFT knob
- Add SHA265
- Bump PORTREVISION

PR:		ports/91794
Submitted by:	Sergey Glushchenko <deen@freebsd.org.ua>
Approved by:	David Yeske (maintainer)
2006-01-15 19:41:06 +00:00
Pav Lucistnik
422cc63fd8 - Add knob for enabling EUC Japanese support
PR:		ports/86202
Submitted by:	Scott Robbins <scottro@nyc.rr.com>
Approved by:	maintainer
2005-09-16 19:50:38 +00:00
Pav Lucistnik
b736bfc7c2 - Update to 0.4.1
PR:		ports/83896
Submitted by:	Matthew Luckie <mjl@luckie.org.nz>
Approved by:	David Yeske <dyeske@yahoo.com> (maintainer)
2005-07-22 22:38:58 +00:00
Kirill Ponomarev
906835db10 Fix plist and cleanup after repocopy.
Pointyhat to:	edwin
Approved by:	portmgr (implicit)
2005-01-06 08:39:11 +00:00
Edwin Groothuis
0e65586e82 new port: x11/mrxvt
Mrxvt (previously named as materm) is a lightweight and
	powerful multi-tabbed X terminal emulator based on the
	popular rxvt and aterm. It implements many useful features
	seen in some modern X terminal emulators, like gnome-terminal
	and konsole, but keep to be lightweight and independent
	from the GNOME and KDE desktop environment. The following
	are the major features of mrxvt (* are new features compared
	with rxvt, + are enhanced features compared with rxvt):

PR:		ports/74470
Submitted by:	David Yeske <dyeske@yahoo.com>
2004-12-23 05:08:56 +00:00
Oliver Lehmann
53efea13b5 update port to 0.2.1
PR:		71349
Submitted By:	oliver
Approved By:	maintainer
2004-10-15 17:47:25 +00:00
Kirill Ponomarev
6b7cc8822d - Update to version 0.1
PR:		ports/66906
Submitted by:	Roman Neuhauser <neuhauser@chello.cz>
Approved by:	maintainer
2004-05-21 05:39:11 +00:00
Trevor Johnson
8232e82f85 SIZEify (maintainer timeout) 2004-03-31 03:12:58 +00:00
Ade Lovett
3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00
Sergei Kolobov
f5905bf2ca Add multi-aterm 0.0.4, a multi terminal based on aterm.
Author:	Alexis <materm@tuxfamily.org>
WWW:	http://www.materm.tuxfamily.org/index.html

PR:		54346
Submitted by:	Sebastian Yepes <esn@x123.info>
2003-12-17 17:26:41 +00:00