aboutsummaryrefslogtreecommitdiff
path: root/deskutils/wammu
Commit message (Collapse)AuthorAgeFilesLines
* Update to 0.44.Vanilla I. Shu2018-01-293-7/+9
| | | | Notes: svn path=/head/; revision=460249
* - Update WWWDmitry Marakasov2018-01-121-1/+1
| | | | Notes: svn path=/head/; revision=458809
* 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
* Update to 0.43.Vanilla I. Shu2016-12-242-5/+4
| | | | Notes: svn path=/head/; revision=429356
* Bump PORTREVISION to chrase comms/gammu's shared library version.Vanilla I. Shu2016-11-131-0/+1
| | | | Notes: svn path=/head/; revision=426006
* - Update to 0.42Dmitry Marakasov2016-08-232-4/+4
| | | | | | | | PR: 212078 Submitted by: joneum@bsdproject.de Notes: svn path=/head/; revision=420705
* Update to 0.41.Vanilla I. Shu2016-07-232-3/+4
| | | | Notes: svn path=/head/; revision=418942
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Upgrade to 0.40, switch to autoplist.Vanilla I. Shu2015-12-114-242/+42
| | | | Notes: svn path=/head/; revision=403500
* - Fix identationDmitry Marakasov2015-10-222-16/+18
| | | | | | | | | - Add LICENSE_FILE - Add NO_ARCH - Regenerate patches with `make makepatch` Notes: svn path=/head/; revision=399978
* To the pool: do not use the port any more and have no spare time toBoris Samorodov2015-10-191-1/+1
| | | | | | | maintain it. Notes: svn path=/head/; revision=399642
* deskutils/wammu: adopt USES=python, use bz2 tarball, remove @dirrmtryBoris Samorodov2014-09-233-29/+5
| | | | Notes: svn path=/head/; revision=369006
* 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
* deskutils/wammu: use WX 3.0William Grzybowski2014-07-051-3/+2
| | | | | | | Approved by: portmgr (bapt, blanket) Notes: svn path=/head/; revision=360836
* 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
* Finish stage supportAntoine Brodin2014-02-092-1/+10
| | | | Notes: svn path=/head/; revision=343471
* 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
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | | | | the mtree (categories starting with d) Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331268
* Move mannual pages to stage control.Boris Samorodov2013-09-242-3/+11
| | | | Notes: svn path=/head/; revision=328151
* . STAGE'ify;Boris Samorodov2013-09-241-4/+2
| | | | | | | | . use LIB_DEPENDS instead of BUILD_DEPENDS and RUN_DEPENDS; . pet portlint: make COMMENT a bit shorter. Notes: svn path=/head/; revision=328144
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | deskutils) Notes: svn path=/head/; revision=327718
* - Fix i18 manpagesMartin Wilke2013-06-112-1/+17
| | | | | | | Reported by: pkg (DEVELOPER_MODE) Notes: svn path=/head/; revision=320604
* . trim Makefile headers;Boris Samorodov2013-05-241-9/+4
| | | | | | | | . USE_GNOME=pkgconfig -> USES+=pkgconfig; . pet portlint: place LICENSE before MAINTAINER. Notes: svn path=/head/; revision=319001
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* Fix typos in COMMENTCarlo Strub2012-07-251-1/+1
| | | | Notes: svn path=/head/; revision=301510
* . comms/gammu: update to version 1.32.0;Boris Samorodov2012-06-281-1/+1
| | | | | | | . deskutils/wammu: bump PORTREVISION (gammu shlib version has changed). Notes: svn path=/head/; revision=300157
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Bump PORTREVISION since libgammu version was changed.Boris Samorodov2011-12-261-0/+1
| | | | Notes: svn path=/head/; revision=288048
* Update to version 0.36.Boris Samorodov2011-09-164-10/+15
| | | | | | | Changes: http://wammu.eu/download/wammu/0.36/ Notes: svn path=/head/; revision=281838
* The port now depends upon comms/gammu (since the latterBoris Samorodov2011-02-111-2/+3
| | | | | | | uses python by default). Notes: svn path=/head/; revision=268914
* Update to version 0.35.Boris Samorodov2010-12-033-5/+6
| | | | Notes: svn path=/head/; revision=265623
* Remove LICENSE from pkg-descr as well.Boris Samorodov2010-09-111-2/+0
| | | | Notes: svn path=/head/; revision=260959
* 1. Update to version 0.34. Changes:Boris Samorodov2010-09-114-8/+14
| | | | | | | | | | | | | * Fixed handling error when SMSC is not configured in phone (bug #1244). * Drop dependency of RPM on python-xml, it's not needed anymore (bug #1248). * Better error messages on non existing devices or on wrong privileges. * Support for storing call entry as new contact (bug #1283). * More user friendly errors from talkback dialog. * Lot of translations were updated. 2. Add LICENSE. Notes: svn path=/head/; revision=260958
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* . gammu-python and wx-python are needed while building as well;Boris Samorodov2010-05-151-1/+3
| | | | | | | . bump PORTREVISION. Notes: svn path=/head/; revision=254352
* Wammu Mobile Phone ManagerBoris Samorodov2010-05-145-0/+265
It works with any phone that Gammu supports, including many models from Nokia, Siemens, and Alcatel. It has complete support (read, edit, delete, copy) for contacts, todo, and calendar. It can read, save, and send SMS. It includes an SMS composer for multi-part SMS messages, and it can display SMS messages that include pictures. Currently, only text and predefined bitmaps or sounds can be edited in the SMS composer. It can export messages to an IMAP4 server (or other email storage). This program does not support browsing files in phone. LICENSE: GPLv2 WWW: http://wammu.eu/ Notes: svn path=/head/; revision=254323