Commit graph

107 commits

Author SHA1 Message Date
Ganael LAPLANCHE
8e3dcb3c28 - Update multimedia/libdvdread to 4.9.9
- Bump dependent ports' PORTREVISIONS and update LIB_DEPENDS [1]
- multimedia/libdvdnav: remove dependency to (now removed) dvdread-config
- sysutils/vstrip: remove useless dependency to multimedia/libdvdread

Approved by:	portmgr (implicit) [1]
2014-05-13 10:17:04 +00:00
John Marino
a8c7a42ccd sysutils/k3b-kde4: Restore MUSEPACK option with DPorts fix
- Revert r346996 entirely
- Bypass MUSEPACK detection (hardcode it as detected) to fix that option
- Bump - This was default options change

Approved by:	makc
2014-03-04 08:37:44 +00:00
Max Brazhnikov
88869b76e1 sysutils/k3b-kde4:
- Mark BROKEN with MUSEPACK option
- Revert r346606 as unrelated to the problem.
2014-03-04 07:11:52 +00:00
John Marino
331fbedddd sysutils/k3b-kde4: Broken everywhere, USES+= pkgconfig might fix it 2014-03-01 09:26:51 +00:00
Max Brazhnikov
a95c6ea5de - Add stage support
- Squeeze MASTER_SITES/MASTER_SITE_SUBDIR
- Convert LIB_DEPENDS to new style
- Use options helpers
- Remove useless LATEST_LINK
2014-02-20 13:00:31 +00:00
Max Brazhnikov
d2de2b00e4 - Bump PORTREVISION after KDE4_PREFIX change 2014-02-18 14:31:32 +00:00
Ganael LAPLANCHE
1e4183548e - Update libdvdread and libdvdnav to 4.2.1
- Bump dependent ports' revisions
2014-02-03 08:15:19 +00:00
Max Brazhnikov
d7ba8fc7c1 Replace KDE4 sharedmime with USES=shared-mime-info. KDE4 sharedmime is
deprecated and will be removed along with switching KDE4_PREFIX to
${LOCALBASE} soon.
2014-02-01 12:17:42 +00:00
William Grzybowski
a146c864dc sysutils/k3b-kde4: fix build with ffmpeg-2
- Fix build with ffmpeg-2

Approved by:	portmgr (bapt, implicit)
2013-10-21 20:41:54 +00:00
Baptiste Daroussin
83f65384c9 Add NO_STAGE all over the place in preparation for the staging support (cat: sysutils) 2013-09-20 23:05:58 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Christian Weisgerber
1f2b1eac8e * Major update to FLAC 1.3.0, including shared library bumps.
* Chase the update in dependent ports.

PR:		179072
2013-06-09 19:30:58 +00:00
Max Brazhnikov
5fdd545013 - Add missing sharedmime to the list of USE_KDE4 components. It will be
superseded by recently introduced USES= shared-mime-info later.
- Remove no longer needed exec/unexec from plist and post-install calls for
  update-mime-database
- Trim Makefile header while I'm here
2013-05-12 16:16:56 +00:00
Baptiste Daroussin
dba80fffe4 Remove USE_CDRTOOLS from bsd.port.mk
This macros has been useless since cdrtools-cjk port has gone.
This macros also lead to badly handled dependencies assuming that the dependency
on cdrtools was most BUILD and RUN dependency. While most of the time it is
simply a RUN dependency and sometime a build one.

While here:
- Trim some headers
- Convert some ports to optionsng
- Convert some ports to USES= gettext
2013-04-26 12:35:50 +00:00
Max Brazhnikov
ffd97a0193 - convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
2013-03-22 20:06:14 +00:00
Max Brazhnikov
9cf69eeb54 More merges from area51 repository:
- Chase kdemultimedia4 split/kdegames shlib bump
- Convert to new options framework
- Trip Makefile header

sysutils/k3b-kde4:
- add patches to fix build with ffmpeg-devel [1]

PR:		ports/162261 [1]
Submitted by:	Phil Oleson <oz at nixil.net>
2013-02-04 15:36:28 +00:00
Christian Weisgerber
bcd6fbdee4 libogg.so.8: Bump PORTREVISION for ports that depend on libogg,
directly or indirectly (via libvorbis, libtheora).
2012-07-19 20:15:37 +00:00
Martin Wilke
9c2f65e395 - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4
Review by:	bapt, David Naylor (kde team)
2012-06-06 06:44:37 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Max Brazhnikov
0582b0ed42 - Remove audio/libtunepimp (and audio/libmusicbrainz) support:
deprecated as the MusicBrainz RDF webservice is no longer functional

PR:		ports/165750, ports/165754, ports/165757, ports/165758
		ports/165759, ports/165760, ports/165761
Submitted by:	Jason E. Hale <bsdkaffee at gmail.com>
2012-03-06 18:16:14 +00:00
Ashish SHUKLA
97ddb4e13d - Bump PORTREVISION to chase the update of multimedia/libvpx 2012-02-16 15:57:34 +00:00
Raphael Kubo da Costa
555cbea998 k3b-kde4: Update the libk3bdevice/k3bscsicommandbsd.cpp patch.
I committed a6a2ed3 to k3b's git tree some time ago. It is a patch by
avg@ improving the file and preventing some bugs from occurring. In
his own words in KDE git review request 103293:

  Main idea of the change is to improve the case where SCSI sense data
  is not automatically provided and has to be explicitly requested.
  Current code essentially duplicates main transport code for this
  task.  The proposed code recursively calls into the transport code
  with MMC_REQUEST_SENSE command.  This also fixes a problem with the
  existing code where it re-uses a CCB of the original command for sense
  fetching but doesn't ensure that all the previously used bytes are
  reset to proper values.  This can result in a malformed
  MMC_REQUEST_SENSE CCB which can confuse certain hardware (e.g. it
  hangs Optiarc DVD RW AD-7191S 1.02).  Also the style of the code is
  cleaned up.  Because of the code re-use the code is now more compact.
  Additionally some historic and useless code was dropped - the code for
  setting errno.  errno value is not used by the calling code and this
  is an artifact of the FreeBSD-specific code having been borrowed from
  a different project (as attested by Heiner Eichmann
  <h.eichmann@gmx.de>).

The current patch in the port now contains both commits 4ffc589 and
a6a2ed3 squashed together.

Bump PORTREVISION accordingly.

Submitted by:	avg
2012-02-11 18:13:11 +00:00
Ganael LAPLANCHE
a6a77bf429 - Update libdvdread and libdvdnav to 4.2.0 and bump dependent ports' revisions
- libdvdread: allow package building with libdvdcss if WITH_DVDCSS is set [1]
- libdvdread/libdvdnav: fix endianness handling [2]

Submitted by: olgeni [1], richo <richo@psych0tik.net> [2] (via mail to ports@)
PR: ports/162197 [1]
2012-01-17 14:35:18 +00:00
Alexander Leidinger
e269a2b517 Update lame to 3.99.3.
Bump portrevision of all ports which depend upon it.
2012-01-14 22:27:02 +00:00
Raphael Kubo da Costa
8bcc0d1381 Fix build on FreeBSD >= 9.
Import commit d8f73a5 from upstream.

The scsi_sense_data struct has changed in 9 after r225950, so compilation
failed.

Instead of accessing the struct fields manually, we now use
scsi_extract_sense, which works fine in all our supported releases (there is
no change in terms of functionality).

Bump PORTREVISION.

Aproved by:	avilla (mentor, implicit)
2011-10-31 20:59:27 +00:00
Martin Matuska
c86cd8cae2 Bump due to ffmpeg update to 0.7.1 2011-06-24 22:39:03 +00:00
Alberto Villa
e487819d56 - Remove dependency on docbook-xml.
- Remove MD5 hash.
2011-03-25 10:38:42 +00:00
Xin LI
03b42818c9 Chase after net/openldap24-server update.
Reminded by:	miwi
2011-02-25 01:32:17 +00:00
Max Brazhnikov
18a2fffeac - Update to 2.0.2 for KDE 4
- Turn on FFMPEG and MUSEPACK by default, since ffmpeg and musepack are already
  pulled by kdemultimedia

Feature safe:	yes
2011-01-20 21:37:52 +00:00
Max Brazhnikov
b78c66e36f Switch to audio/musepack from deprecated audio/libmpcdec
PR:		ports/150510
Submitted by:	Ganael Laplanche <ganael.laplanche at martymac.org>
2010-09-21 16:51:17 +00:00
Max Brazhnikov
199a6d9bdb Bump PORTREVISION for libdvdread dependants 2010-09-14 18:58:51 +00:00
Max Brazhnikov
02a61d870e Fix build with KDE 4.5 2010-09-02 21:15:33 +00:00
Alberto Villa
90f0320341 - Fix optional dependency on libmpcdec.
- Bump PORTREVISION.

Approved by:	tabthorpe (mentor)
2010-08-20 00:26:33 +00:00
Max Brazhnikov
d1770b7732 Fix plist 2010-08-18 19:57:11 +00:00
Max Brazhnikov
d28b1674a2 Update to 2.0.1 2010-08-18 06:47:53 +00:00
Max Brazhnikov
526f368c1f Chase multimedia/mp4v2 update.
PR:		ports/148643
Submitted by:	Christopher Key <cjk32 at cam.ac.uk>
2010-08-11 20:58:04 +00:00
Max Brazhnikov
5e284b17c3 Update to 2.0.0 for KDE 4
Thanks for all contributors to this port:

Alberto Villa <avilla@>
Andriy Gapon <avg@>
Dima Panov <fluffy@>
Ganael Laplanche <ganael.laplanche at martymac.com>
Jason E. Hale <bsdkaffee at gmail.com>
Juergen Lock <nox@>
2010-08-01 19:48:46 +00:00
Martin Matuska
ab5c533c96 - Update ffmpeg to 0.6 2010-07-24 16:38:20 +00:00
Alexander Leidinger
a23bcd1501 - update audio/lame to 3.98.4
- use ?= for the portrevision of a master port to make it possible to
  change it in a slave port which depends upon lame
- bump portrevisions of ports which depend upon lame
  - done via a semi-automated way (manual review and fixup)
  - I tried to take care to not bump ports which only depend optionaly on
    lame (with a default of no dependency)
2010-06-03 08:55:01 +00:00
Max Brazhnikov
4a06c8e349 Fix libdvdcss support.
Remove useless assignments and fix spaces while here.

PR:		ports/143680
Submitted by:	Ganael Laplanche <ganael.laplanche at martymac.com>
Approved by:	maintainer timeout (three months)
2010-05-15 20:09:05 +00:00
Dirk Meyer
de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00
Dima Panov
276304288b - Chase taglib update
Approved by:	miwi (mentor)
Exp-run by:	miwi
2009-12-02 17:16:16 +00:00
Dima Panov
6a2417951e [patch] sysutils/k3b - fix build against new ffmpeg
PR:		137873
Submitted by:	    Alberto Villa <Alberto Villa <villa.alberto@gmail.com>
Approved by:	tabthorpe (mentor)
2009-08-22 13:09:48 +00:00
Jeremy Messenger
789d75c728 -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:	marcus and kwm
Pointyhat-exp:	a few times by pav
Tested by:	pgollucci, "Romain Tartière" <romain@blogreen.org>, and
		a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:	marcus
Approved by:	portmgr
2009-08-02 19:36:34 +00:00
Dirk Meyer
eca78ec61b - bump all port that indirectly depends on libjpeg and have not yet been bumped or updated
Requested by:	edwin
2009-07-31 13:57:52 +00:00
Robert Noland
c6542427d4 Replace libdvdread with the version maintained by the mplayer group
-Turn over maintainership
	-Bump ports that depend on libdvdread since shared lib
	 version rolls back from .5 to .4
	-Fix multimedia/ogle build with this version

PR:		127849
Submitted by:	Ganael LAPLANCHE <ganael.laplanche@martymac.com>
2009-02-08 18:45:38 +00:00
Martin Wilke
38dc414da2 - Update to 1.0.5
PR:		125552 (based on)
Submitted by:	Pedro F. Giffuni <pfgshield-freebsd@yahoo.com>
Approved by:	maintainer
2008-08-26 10:31:45 +00:00
Rong-En Fan
741aa71483 Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
2008-08-21 06:18:49 +00:00
Thomas Abthorpe
6d160479c2 - Chase taglib bump 2008-06-20 15:41:53 +00:00