aboutsummaryrefslogtreecommitdiff
path: root/x11/terminator
Commit message (Collapse)AuthorAgeFilesLines
* Update to upstream release 1.0Thomas Zander2019-03-313-10/+70
| | | | | | | | PR: 236175 Submitted by: ume Notes: svn path=/head/; revision=497437
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-2/+2
| | | | | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight Notes: svn path=/head/; revision=472884
* Make libgnome and libgnomeui not implying esound dependencyBaptiste Daroussin2018-03-261-1/+1
| | | | | | | | | | | | | | | | | | | It has been a while both does not depend anymore on esound, before this change esound dependency was wrongly added to plenty of packages which actually does not depend on it. While here: - audio/glame: remove esound support - games/monkeybubble: add an explicit dependency on esound - sysutils/gnome-schedule: add en explicit dependency on pkg-config - comms/kb: add missing dependency on pkgconfig - x11-toolkits/libgnomeui: * update to 2.4.5 * use USES=localbase Notes: svn path=/head/; revision=465584
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled ↵Dmitry Marakasov2016-05-231-1/+1
| | | | | | | | | by default anyway and don't need to be listed Approved by: portmgr blanket Notes: svn path=/head/; revision=415742
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412351
* Correct usage of USE_GNOME. This went unnoticed due to the the GCONF optionKoop Mast2015-08-051-1/+1
| | | | | | | | | being on by default which depends on py-gnome2. Which in turn pulled in py-gtk2. USE can only be used in combination with a option in the FOO_USE= GNOME=pygtk2 format. Notes: svn path=/head/; revision=393569
* Part 1 of adding USE_GNOME=intltool to ports that require it.Koop Mast2015-08-021-1/+1
| | | | | | | | | | | The reason for this is that in the GNOME 3.16 update, USE_GNOME gtk20 and gtk30 don't pull intltool in anymore. PR: 201980 Exp-run by: antoine@ Notes: svn path=/head/; revision=393444
* x11/terminator: fix build, WWWKurt Jaeger2015-03-292-22/+17
| | | | | | | | PR: 198382 Submitted by: Tyler Duzan <tristor@gmail.com>, Thomas Hurst <tom@hur.st> (maintainer) Notes: svn path=/head/; revision=382618
* Cleanup plistBaptiste Daroussin2015-01-171-13/+0
| | | | Notes: svn path=/head/; revision=377270
* - Convert ports from korean/, shells/, x11/, x11-clocks/, x11-fm/,Marcus von Appen2014-10-191-2/+2
| | | | | | | | | x11-fonts/, x11-toolkits and x11-wm to new USES=python Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371203
* Upgrade to version 0.97.Jimmy Olgeni2014-06-213-6/+16
| | | | | | | | | PR: 190886 Submitted by: olgeni Approved by: maintainer Notes: svn path=/head/; revision=358710
* Add staging support; do not @dirrmtry directories owned by dependencies.Jimmy Olgeni2014-06-102-19/+2
| | | | Notes: svn path=/head/; revision=357362
* Use setuptools for all Python ports.William Grzybowski2013-12-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setuptools is the preferred method to manage Python distributions after many changes to the packaging ecosystem over the past couple of years. Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using USE_PYDISTUTILS= easy_install remains the same however this usage is now deprecated and should be converted to USE_PYDISTUTILS= yes. Some Python distributions do not work with setuptools out of the box because they extend the install command from distutils and not setuptools, and so they need to be patched accordingly. pip (which leverages setuptools) works around the issue by using eggs, however we want to get rid of those as well, as support for "flat" installation is unavailable or has other issues associated with it. This work allows us to unify how python packages are built, ensure that Python distributions are installed consistently, reduces complexity for Python port maintainers and paves the way for simplifying the Python ports framework in the future. With hat on: python Reviewed by: koobs, antoine Exp-run: bdrewery Approved by: bdrewery (portmgr) Notes: svn path=/head/; revision=336553
* 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
* - conversion to USES frameworkJason Helfman2013-05-011-6/+9
| | | | | | | Approved by: portmgr (bapt@) Notes: svn path=/head/; revision=317031
* - Add missing run depsPawel Pekala2013-01-042-8/+7
| | | | | | | | | | | - tab -> space WWW: line in pkg-descr PR: ports/174512 Submitted by: myself Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=309941
* - adopt optionsNGJason Helfman2012-07-241-4/+5
| | | | | | | | | PR: ports/169788 Submitted by: jgh@ (myself) Approved by: maintainer timeout, tom@hur.st ( 14 days ) Notes: svn path=/head/; revision=301440
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - update WWWRuslan Makhmatkhanov2012-02-111-1/+1
| | | | | | | | | PR: 164577 Submitted by: "Mikhail T." <m.tsatsenko at gmail dot com> Approved by: maintainer (timeout; 2 weeks) Notes: svn path=/head/; revision=290939
* - Fix plist issues and resortBeech Rintoul2011-09-282-12/+28
| | | | | | | | | - Bump portrevision Approved by: Thomas Hurst <tom@hur.st> (maintainer) Notes: svn path=/head/; revision=282584
* - Update to 0.96Beech Rintoul2011-09-273-13/+37
| | | | | | | | | | | - Add license PR: ports/160752 Submitted by: Mikhail T. <m.tsatsenko@gmail.com> Approved by: Thomas Hurst <tom@hur.st> (maintainer) (with version update) Notes: svn path=/head/; revision=282496
* - Move to py25 or aboveMartin Wilke2011-02-252-2/+2
| | | | | | | - While here kick md5 support Notes: svn path=/head/; revision=269623
* - Update to 0.93.Romain Tartière2010-06-063-24/+96
| | | | | | | | PR: ports/147440 Submitted by: me Notes: svn path=/head/; revision=255900
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-0/+1
| | | | Notes: svn path=/head/; revision=249285
* - Update to 0.13Martin Wilke2009-08-273-9/+15
| | | | | | | | | PR: 137920 Submitted by: Romain Tartiere <romain@blogreen.org> Approved by: maintainer Notes: svn path=/head/; revision=240384
* Chase the vte shared lib bump.Joe Marcus Clarke2009-08-221-1/+1
| | | | Notes: svn path=/head/; revision=240115
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* - Update to 0.12Martin Wilke2009-02-143-6/+12
| | | | | | | | PR: 131662 Submitted by: Thomas Hurst <tom@hur.st> (maintainer) Notes: svn path=/head/; revision=228296
* - Update to 0.11Martin Wilke2008-09-243-5/+9
| | | | | | | | PR: 127518 Submitted by: Thomas Hurst <tom@hur.st> (maintainer) Notes: svn path=/head/; revision=220630
* - Update to 4.81D (also unbreak CURRENT)Martin Wilke2008-08-303-6/+23
| | | | | | | | PR: 126919 Submitted by: Larry Rosenman <ler@lerctr.org> (maintainer) Notes: svn path=/head/; revision=219452
* - Fix pkg-plistBeech Rintoul2008-07-091-0/+3
| | | | | | | Reported by: pointyhat via pav, IonBot Notes: svn path=/head/; revision=216645
* - Update to 0.9Beech Rintoul2008-07-095-108/+79
| | | | | | | | | | - Add OPTIONS for NLS and GCONF PR: ports/125384 Submitted by: Thomas Hurst <tom@hur.st> (maintainer) Notes: svn path=/head/; revision=216578
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=214430
* Terminator is a Python terminal program, using the same widget asMartin Wilke2008-04-306-0/+158
gnome-terminal to provide a tiled set of terminals in as little space as possible. WWW: http://www.tenshu.net/terminator/ PR: ports/122489 Submitted by: Thomas Hurst <tom at hur.st> Notes: svn path=/head/; revision=212330