Commit graph

82 commits

Author SHA1 Message Date
Mathieu Arnold
9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00
Pawel Pekala
145f1bcab4 - Update to version 0.47.1
- Make JACK option on by default

PR:		211326
Submitted by:	Tobias Brodel (maintainer)
2016-07-24 20:18:43 +00:00
Baptiste Daroussin
05422fd651 Prefer relative links to make packages more relocation friendly 2016-06-23 07:09:57 +00:00
Kurt Jaeger
46a4a33925 audio/pd: Fix builtin documentation
- also pet portlint

PR:		209493
Submitted by:	Tobias Brodel <brittlehaus@gmail.com> (maintainer)
2016-05-14 15:08:08 +00:00
Kurt Jaeger
fbd8c6aa22 audio/pd: 0.46-7 -> 0.47-0
- The "deken" plug-in is integrated into the Pd help menu - you can
  download and install Pd libraries using the "Find Externals" menu
  command.
- New clone object that opens multiple copies of an abstraction and
  routes messages and signals to/from them, for making banks of voices or
  whatnot
- "Zoom" feature for dealing with high-resolution displays.  IEM GUIs are
  only somewhat dodgily handled (font sizes of labels aren't managed well).
- Controllable font sizes for menus and dialogs: setting the "pd window"
  font size also sets font sizes for menus/dialogs.
- The expr, expr~, and fexpr~ objects are included in Pd proper,
  not loaded as externs as before.  THis reflects their new license
  (lgpl) and should allow them to be used in IOS apps via libpd.
  Shahrohk Yadegari has updated the source and made manifold improvements
  in the objects.  Notably, they now allow access to variables in Pd
  defined via the "value" object.
- Backward messaging to netsend now works in UDP as well as TCP.
- Dialogs now work more Appleshly (changes taking place without the need
  to hit an "apply" button in many cases).  Thanks to danomatica.
- API support for "initbang" and "closebang" objects (from IEM library
  I think, but anyhow you can now get them in Pd Vanilla via deken (help
  menu "Find externals").
- "Declare" object path settings now take effect immediately when you edit
  the declare object.
- (Iohannes) Abstractions, externs, and stuff written in other
  languages (pythin, Lua, etc) are now loaded logically, that is, if
  you have one patch that loads an external named X, you can still
  load abstractions named X in other patches.  Miller now oficially
  Does Not Know How This Works (DNKHTW).
- Many bug fixes.

PR:		209438
Submitted by:	Tobias Brodel <brittlehaus@gmail.com> (maintainer)
2016-05-11 06:35:31 +00:00
Mathieu Arnold
7f4572eae4 Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:29:15 +00:00
Jan Beich
a8bd478924 audio/pd: pass maintainership
PR:		208296
Submitted by:	Tobias Brodel
2016-03-27 11:21:46 +00:00
Kurt Jaeger
2503ff4e66 audio/pd: some fixes
- repair the loading of external objects
- reduce portlint complaints

PR:		206965
Submitted by:	Tobias Brodel <brittlehaus@gmail.com>
2016-02-06 08:49:50 +00:00
Thomas Zander
bb4df476e7 Update to upstream version 0.46.7
PR:		203241
Submitted by:	tkato432@yahoo.com
2015-10-10 16:41:45 +00:00
Wen Heping
a3efc7e43c - Update to 0.46.6
PR:		199215
Submitted by:	tkato432@yahoo.com
2015-06-28 07:47:27 +00:00
Tijl Coosemans
7ad981c89d Remove pre-configure target. It doesn't do anything because the variables
are all undefined.
2015-04-18 19:24:27 +00:00
Vanilla I. Shu
04a359e655 Upgrade to 0.46-5. 2015-01-20 14:04:59 +00:00
Baptiste Daroussin
17032b5040 Convert to USES=autoreconf 2014-12-18 11:37:58 +00:00
Thomas Zander
332eb3d613 Update to upstream version 0.46.2
PR:		194162
Submitted by:	tkato432@yahoo.com
2014-11-01 11:05:24 +00:00
Baptiste Daroussin
a6abc3b420 Cleanup plist 2014-10-20 06:35:58 +00:00
Tijl Coosemans
a5bee80ce4 Use default LIBTOOLIZE_ARGS 2014-09-13 18:25:04 +00:00
Thomas Zander
5fb586df10 - Update to upstream version 0.46.0
- Fix LICENSE*
- Retire FFTW option

PR:		193321
Submitted by:	tkato432@yahoo.com
2014-09-10 11:24:56 +00:00
Tijl Coosemans
4bdd97e324 math/fftw3:
- Add USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- Use MAKE_CMD
2014-08-31 16:36:22 +00:00
Martin Wilke
c021be5dc4 - Update to 0.45.5
PR:		188857
Submitted by:	Ports Fury
2014-05-17 10:52:33 +00:00
Tijl Coosemans
aad09bc5e2 When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-04-23 13:25:16 +00:00
Tijl Coosemans
8ea6895dc0 Let libtoolize copy missing files instead of linking them so that
USES=libtool can patch them.
2014-02-09 22:08:33 +00:00
Danilo Egea Gondolfo
1b38486fc5 - Update from 0.45-3 to 0.45-4
- Add shebangfix to USES

PR:		ports/184872
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-12-18 16:58:09 +00:00
Pawel Pekala
2b689b512c - Update to version 0.45.3
- Support STAGEDIR

While here:
- Use options helpers
- Install dektop entry file

PR:		ports/181877
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-10-28 16:06:16 +00:00
Pietro Cerutti
a60abea840 - Convert to USES+=tcl
- Convert to new LIB_DEPENDS format
- Use PORTDOCS=* instead of listing them in pkg-plist
2013-09-23 10:07:35 +00:00
Baptiste Daroussin
183c2ed74f Add NO_STAGE all over the place in preparation for the staging support (cat: audio) 2013-09-20 14:36:35 +00:00
Baptiste Daroussin
5163781803 Convert audio from USE_GMAKE to USES=gmake
While here:
- Trim headers
- Convert some USE_GNOME=pkgconfig to USES=pkgconfig
- Add some missing pkgconf dependencies
- Convert some USE_GNOME=gnomehack to USES=pathfix
2013-08-30 23:01:05 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Martin Wilke
bdef264279 - Update to 0.44-3
PR:		178027
Submitted by:	Ports Fury
2013-04-26 07:01:32 +00:00
Baptiste Daroussin
a215727686 Convert USE_PKGCONFIG -> USES=pkgconf for audio category 2013-04-22 23:19:08 +00:00
Bryan Drewery
05e7d4ae1f - Actually update to 0.44-2
PR:		ports/175569
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2013-02-08 18:22:34 +00:00
Martin Wilke
0574a80f94 - Update to 0.44.2
PR:		175569
Submitted by:	Ports Fury
2013-02-07 14:26:45 +00:00
Thomas Abthorpe
49626f567a - Strip header at request of original creator
Submitted by:	trevor
With hat:	portmgr
2013-01-27 05:55:20 +00:00
Armin Pirkovitsch
3fb43a1b5f - Update to version 0.43-4
- Trim Makefile header

PR:           ports/171966
Submitted by: KATO Tsuguru <tkato432 _at_ yahoo.com>
Approved by:  beat (mentor)
Feature safe: yes
2012-11-30 23:51:24 +00:00
Martin Wilke
916925d5ff - Update to 0.43.3
PR:		170136
Submitted by:	Ports Fury
2012-08-05 04:41:41 +00:00
Baptiste Daroussin
296f94764c Convert to new options framework 2012-06-01 12:17:20 +00:00
Martin Wilke
1c4807447c - Update to version 0.43.2
PR:		166876
Submitted by:	Ports Fury
2012-04-21 18:48:34 +00:00
Martin Wilke
96c27b6b37 - Update to 0.43.1
PR:		166015
Submitted by:	Ports Fury
Feature safe:	yes
2012-03-25 03:55:37 +00:00
Doug Barton
2167bc17ca Standardize WWW: tags a bit more:
1. Remove white space from the beginning of lines
2. Make the canonical WWW the last line of the file
3. Remove lines to the effect of, "More information can be found at..."
   that's the stated purpose of the WWW: tags in the first place.
4. Change secondary WWW: lines to use other text to avoid confusion

While I'm here, remove some more useless Author: lines, and some
prepended white space to other lines.

Mentioned (in part) by:	Matthew Seaman <m.seaman@infracaninophile.co.uk>
2011-11-06 23:45:43 +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
Emanuel Haupt
41f7d7f537 Update to 0.43.0
PR:		158494
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2011-08-09 15:19:47 +00:00
Martin Wilke
a9481afc8a - Get Rid MD5 support 2011-03-19 12:38:54 +00:00
Sylvio Cesar Teixeira
34981e6ed7 - Update to 0.42.6 2010-04-25 14:02:33 +00:00
Pav Lucistnik
38eb8c5339 - Mark MAKE_JOBS_UNSAFE
Reported by:	pointyhat
2009-11-20 22:53:09 +00:00
Martin Wilke
3617f478e9 - Update to 0.42.5
PR:		134623
Submitted by:	Ports Fury
2009-05-23 14:23:42 +00:00
Martin Matuska
24bf28eff1 - Change default Tcl/Tk version to 8.5
- Bump PORTVERSION of ports affected

Tested by:	pointyhat (pav)
2009-02-23 14:46:37 +00:00
Martin Wilke
913e5edece - Update to 0.42-4
PR:		131669
Submitted by:	Dennis Herrmann <adox@mcx2.org>
2009-02-14 20:03:00 +00:00
Philippe Audeoud
9031bc7753 - Update to 0.42-3
PR:		ports/130984
Submitted by:	Dennis Herrmann <adox _AT_ mcx2.org>
2009-01-27 14:21:02 +00:00
Martin Wilke
6a4709a170 - Update to 0.42
PR:		130470
Submitted by:	Ports Fury
2009-01-16 00:10:07 +00:00
Tilman Keskinoz
cf4e3a2dfc Fix misplaced .endif
Reported by:	QAT
2008-08-27 15:34:40 +00:00
Tilman Keskinoz
ef88d27e4c Unbreak compile on 64bit platforms 2008-08-27 14:21:58 +00:00