aboutsummaryrefslogtreecommitdiff
path: root/multimedia/gaupol/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Disable flavors for Python ports without PYTHON_PKGNAMEPREFIX/SUFFIX.Mathieu Arnold2019-01-111-1/+1
| | | | Notes: svn path=/head/; revision=489979
* 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
* multimedia/gaupol: Plist problem fixed by the upstreamYuri Victorovich2018-05-271-1/+2
| | | | | | | | | | Followup to r470990: They quickly fixed the plist problem that I've reported. PR: 226704 Notes: svn path=/head/; revision=471005
* multimedia/gaupol: Correction: uncomment PYDISTUTILS_INSTALLARGSYuri Victorovich2018-05-271-1/+1
| | | | Notes: svn path=/head/; revision=470991
* multimedia/gaupol: Update 0.19.2 -> 1.4; Change of maintainershipYuri Victorovich2018-05-271-12/+13
| | | | | | | | | | | | | | | | | Port changes: * greg@unrelenting.technology takes maintainership * Change PORTVERSION to DISTVERSION * Switch to github * Now use distutils/plist/etc * Adjust USE_GNOME * Delete --single-version-externally-managed in PYDISTUTILS_INSTALLARGS since PYDISTUTILS_INSTALLNOSINGLE is deprecated * Change WWW URL PR: 226704 Submitted by: Greg V <greg@unrelenting.technology> Notes: svn path=/head/; revision=470990
* Add explicit FLAVOR to dependencies (useful when usingAntoine Brodin2017-12-091-2/+2
| | | | | | | DEFAULT_VERSIONS=python=3.x) Notes: svn path=/head/; revision=455842
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Clarify LICENSEDmitry Marakasov2016-02-241-1/+5
| | | | | | | | | - Add LICENSE_FILE - Add NO_ARCH - Fix build with disabled NLS Notes: svn path=/head/; revision=409475
* 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
* Cleanup MakefileBaptiste Daroussin2015-01-191-9/+2
| | | | | | | Remove redundant @exec Notes: svn path=/head/; revision=377484
* - Convert ports of multimedia/ to new USES=pythonMarcus von Appen2014-10-211-3/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371331
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* - StagifyThomas Zander2014-06-221-4/+2
| | | | | | | Approved by: mentors (implicit) Notes: svn path=/head/; revision=358813
* Back to poolCarlo Strub2014-05-301-1/+1
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=355909
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-101-1/+1
| | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs) Notes: svn path=/head/; revision=347809
* Remove trailing whitespaces from category multimediaEmanuel Haupt2014-02-211-1/+1
| | | | Notes: svn path=/head/; revision=345422
* According to the Porter's Handbook (5.12.2.3.) default options must be added toEmanuel Haupt2014-02-101-0/+3
| | | | | | | | | | | | | | OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt) Notes: svn path=/head/; revision=343634
* Use setuptools for all Python ports.William Grzybowski2013-12-151-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* Convert from WITHOUT_NLS to PORT_OPTIONS:MNLSBaptiste Daroussin2013-05-061-6/+4
| | | | | | | While here do some conversion to new options framework Notes: svn path=/head/; revision=317503
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+1
| | | | Notes: svn path=/head/; revision=297915
* Update to 0.19.2Carlo Strub2012-03-021-1/+1
| | | | | | | Approved by: glarkin@ (mentor, implicit) Notes: svn path=/head/; revision=292542
* Update to 0.19.1Carlo Strub2011-10-111-4/+4
| | | | | | | Approved by: glarkin@ (mentor) Notes: svn path=/head/; revision=283392
* Change maintainer address to my FreeBSD addressCarlo Strub2011-09-151-1/+1
| | | | | | | Approved by: wen@ (mentor) Notes: svn path=/head/; revision=281802
* - Updated to 0.18Greg Larkin2011-07-121-2/+2
| | | | | | | | | | ChangeLog: http://download.gna.org/gaupol/0.18/gaupol-0.18.news PR: ports/157476 Submitted by: C-S <c-s@c-s.li> (maintainer) Notes: svn path=/head/; revision=277611
* - Updated to 0.17.2Greg Larkin2011-04-221-2/+1
| | | | | | | | | | Changes: https://github.com/otsaloma/gaupol/commit/1789c62604fe528cc8b3c5e2e4f4ef67576f9c19#NEWS PR: ports/156390 Submitted by: C-S <c-s@c-s.li> (maintainer) Notes: svn path=/head/; revision=273071
* - Fixed plist problemsGreg Larkin2010-12-031-1/+1
| | | | | | | Reported by: QAT Notes: svn path=/head/; revision=265638
* - Updated to 0.17.1 (http://download.gna.org/gaupol/0.17/gaupol-0.17.1.news)Greg Larkin2010-12-011-7/+15
| | | | | | | | | | | | - Passed maintainership to submitted - Added LICENSE - Minimal version of Python is now 2.6+ PR: ports/152051 Submitted by: C-S <c-s at c-s dot li> Notes: svn path=/head/; revision=265530
* - Update to 0.17Martin Wilke2010-07-151-4/+3
| | | | | | | | PR: 148565 Submitted by: Ports Fury Notes: svn path=/head/; revision=257792
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-0/+1
| | | | Notes: svn path=/head/; revision=255371
* - Update to 0.15.1Martin Wilke2010-05-091-3/+2
| | | | | | | | PR: 146307 Submitted by: Ports Fury Notes: svn path=/head/; revision=253998
* - 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.15Martin Wilke2009-10-201-10/+10
| | | | | | | | PR: 139770 Submitted by: Ports Fury Notes: svn path=/head/; revision=243086
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-1/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* - Update to 0.13.1Nicola Vitale2009-02-111-2/+2
| | | | | | | | PR: ports/131592 Submitted by: nivit Notes: svn path=/head/; revision=228062
* - Chase textproc/py-enchant updateNicola Vitale2009-02-111-1/+1
| | | | Notes: svn path=/head/; revision=228058
* Reset infofarmer due to maintainer-timeouts and no response to email.Mark Linimon2008-09-071-1/+1
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=220031
* 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
* - Update to 0.12.3Andrew Pantyukhin2007-12-151-2/+6
| | | | Notes: svn path=/head/; revision=203712
* - 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
* - De-4.x-ify most of my ports to save gnats from excessive abuseAndrew Pantyukhin2007-04-181-1/+1
| | | | | | | - s/CSME/CENKES/ in my ports Notes: svn path=/head/; revision=190273
* Add port multimedia/gaupol:Andrew Pantyukhin2007-01-221-0/+27
Gaupol is an editor for text-based subtitle files. It supports multiple subtitle file formats and provides convenient means of correcting texts and timing subtitles to match video. The user interface is designed with attention to batch processing of multiple documents and convenience of translating. WWW: http://home.gna.org/gaupol/ Author: Osmo Salomaa <otsaloma@cc.hut.fi> Notes: svn path=/head/; revision=182980