aboutsummaryrefslogtreecommitdiff
path: root/x11/mrxvt
Commit message (Collapse)AuthorAgeFilesLines
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412351
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans2015-10-101-8/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=398996
* - Switch to USES=tar:tgzDmitry Marakasov2015-09-021-13/+4
| | | | | | | | | | - Drop 8.x support - Switch to options helpers Approved by: portmgr blanket Notes: svn path=/head/; revision=395926
* Convert to USES=jpegAntoine Brodin2015-06-221-2/+2
| | | | Notes: svn path=/head/; revision=390310
* Bump portrevision after png updateBaptiste Daroussin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375598
* Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgradeAntoine Brodin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375594
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=374303
* Fix some non default LIB_DEPENDSBaptiste Daroussin2014-07-161-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=362053
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-041-24/+14
| | | | Notes: svn path=/head/; revision=360682
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=357486
* Support stagedir.Vanilla I. Shu2014-01-102-4/+2
| | | | | | | Approved by: portmgr (blanket infrastructure) Notes: svn path=/head/; revision=339339
* Cleanup of the unowned ports in the x11 directoryEitan Adler2013-10-131-3/+3
| | | | | | | | | - Fix LIB_DEPENDS - Fix COMMENT - Fix USE_GMAKE Notes: svn path=/head/; revision=330199
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | x11) Notes: svn path=/head/; revision=327777
* For some of the unmaintained ports in the x11 category convert them to OptionsNGEitan Adler2013-03-251-5/+1
| | | | | | | While here, trim the headers Notes: svn path=/head/; revision=315242
* - update png to 1.5.10Dirk Meyer2012-06-011-2/+2
| | | | Notes: svn path=/head/; revision=297915
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=282282
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* - update to 1.4.1Dirk Meyer2010-03-281-2/+2
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-2/+2
| | | | Notes: svn path=/head/; revision=249285
* Make the binary setuid, otherwise it cannot log to utmp/utx/wtmp.Gary Jennejohn2010-01-211-1/+4
| | | | | | | Bump PORTREVISION. Notes: svn path=/head/; revision=248264
* Add patch-src-logging.c to fix the "can't parse pts/xx" error.Gary Jennejohn2010-01-152-1/+26
| | | | | | | Bump PORTREVISION. Notes: svn path=/head/; revision=247948
* Really change this to use utx by replacing --disable-utmp withGary Jennejohn2010-01-151-1/+1
| | | | | | | | | | | | --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. Notes: svn path=/head/; revision=247945
* Allow this to compile after the switch from utmp to utmpx in HEAD.Gary Jennejohn2010-01-151-1/+7
| | | | Notes: svn path=/head/; revision=247934
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with X Notes: svn path=/head/; revision=240078
* - update to jpeg7Dirk Meyer2009-07-181-2/+2
| | | | | | | Tested by: pav on pointyhat Notes: svn path=/head/; revision=238018
* Make port honor NOPORTDOCS which resolves mtree errors identified by QATSteven Kreuzer2009-04-012-9/+17
| | | | | | | Approved by: wxs (mentor) Notes: svn path=/head/; revision=231435
* Reset dyeske@gmail.com at his request.Mark Linimon2009-02-022-4/+1
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=227472
* - Add USE_XORGBeech Rintoul2008-03-231-2/+3
| | | | | | | | | | - Fix include and lib paths Reported by: pointyhat via pav Approved by: David Yeske <dyeske@gmail.com> (maintainer, implicit) Notes: svn path=/head/; revision=209641
* - Remove USE_X_PREFIXBeech Rintoul2008-03-211-3/+2
| | | | | | | | | | - Use SF macro - Bump portrevision Approved by: David Yeske <dyeske@gmail.com> (maintainer, implicit) Notes: svn path=/head/; revision=209556
* dyeske at yahoo dot com -> dyeske at gmail dot comEdwin Groothuis2007-07-052-3/+3
| | | | Notes: svn path=/head/; revision=195037
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Mark port conflicting with x11/mrxvt-develEdwin Groothuis2006-04-271-0/+2
| | | | | | | | PR: ports/96361 Submitted by: Lars Engels <lars.engels@0x20.net> Notes: svn path=/head/; revision=160559
* - Update to 0.4.2Pav Lucistnik2006-01-292-6/+5
| | | | | | | | | PR: ports/91860 Submitted by: Matthew Luckie <mjl@luckie.org.nz> Approved by: maintainer timeout (14 days) Notes: svn path=/head/; revision=154751
* - Add WITH_XFT knobAndrej Zverev2006-01-152-0/+8
| | | | | | | | | | | | - Add SHA265 - Bump PORTREVISION PR: ports/91794 Submitted by: Sergey Glushchenko <deen@freebsd.org.ua> Approved by: David Yeske (maintainer) Notes: svn path=/head/; revision=153589
* - Add knob for enabling EUC Japanese supportPav Lucistnik2005-09-161-0/+9
| | | | | | | | | PR: ports/86202 Submitted by: Scott Robbins <scottro@nyc.rr.com> Approved by: maintainer Notes: svn path=/head/; revision=142956
* - Update to 0.4.1Pav Lucistnik2005-07-225-14/+49
| | | | | | | | | PR: ports/83896 Submitted by: Matthew Luckie <mjl@luckie.org.nz> Approved by: David Yeske <dyeske@yahoo.com> (maintainer) Notes: svn path=/head/; revision=139922
* Fix plist and cleanup after repocopy.Kirill Ponomarev2005-01-062-15/+0
| | | | | | | | Pointyhat to: edwin Approved by: portmgr (implicit) Notes: svn path=/head/; revision=125727
* new port: x11/mrxvtEdwin Groothuis2004-12-233-32/+45
| | | | | | | | | | | | | | | | | 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> Notes: svn path=/head/; revision=124896
* update port to 0.2.1Oliver Lehmann2004-10-152-3/+3
| | | | | | | | | PR: 71349 Submitted By: oliver Approved By: maintainer Notes: svn path=/head/; revision=119521
* - Update to version 0.1Kirill Ponomarev2004-05-213-6/+6
| | | | | | | | | PR: ports/66906 Submitted by: Roman Neuhauser <neuhauser@chello.cz> Approved by: maintainer Notes: svn path=/head/; revision=109579
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* Whoa there, boy, that's a mighty big commit y'all have there...Ade Lovett2004-03-141-1/+1
| | | | | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=103963
* Add multi-aterm 0.0.4, a multi terminal based on aterm.Sergei Kolobov2003-12-174-0/+55
Author: Alexis <materm@tuxfamily.org> WWW: http://www.materm.tuxfamily.org/index.html PR: 54346 Submitted by: Sebastian Yepes <esn@x123.info> Notes: svn path=/head/; revision=96075