diff options
author | vg <vg@FreeBSD.org> | 2013-08-25 17:07:50 +0800 |
---|---|---|
committer | vg <vg@FreeBSD.org> | 2013-08-25 17:07:50 +0800 |
commit | 566b5a4b7f213fa1cf7a6c2bc77108d45f227211 (patch) | |
tree | 9b878bd2748f3dbf48ea785bf8daa2203c16722f | |
parent | 340088e912e3712a1d3d794a867591c0288bbc38 (diff) | |
download | freebsd-ports-gnome-566b5a4b7f213fa1cf7a6c2bc77108d45f227211.tar.gz freebsd-ports-gnome-566b5a4b7f213fa1cf7a6c2bc77108d45f227211.tar.zst freebsd-ports-gnome-566b5a4b7f213fa1cf7a6c2bc77108d45f227211.zip |
- Removed support IMOBILEDEVICE because developers does not support it
details: http://code.google.com/p/clementine-player/source/detail?r=3d434f1c8818
PR: ports/178687
Submitted by: Justin <freebsd.users@gmail.com>
Approved by: eadler (mentor)
-rw-r--r-- | audio/clementine-player/Makefile | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/audio/clementine-player/Makefile b/audio/clementine-player/Makefile index 46294b872f07..4ed9c8484252 100644 --- a/audio/clementine-player/Makefile +++ b/audio/clementine-player/Makefile @@ -3,7 +3,7 @@ PORTNAME= clementine PORTVERSION= 1.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -player @@ -35,10 +35,11 @@ USE_GSTREAMER= gio ogg mp3 flac soup vorbis MAKE_JOBS_UNSAFE= yes CONFLICTS_BUILD= qt-3.* -CMAKE_ARGS+= -DCMAKE_LIBRARY_PATH:PATH="${LOCALBASE}/lib:${PREFIX}/lib" +CMAKE_ARGS+= -DCMAKE_LIBRARY_PATH:PATH="${LOCALBASE}/lib:${PREFIX}/lib" \ + -DENABLE_IMOBILEDEVICE=OFF OPTIONS_DEFINE= AUDIOCD BREAKPAD DEVICEKIT GIO GOOGLE_DRIVE GPOD \ - IMOBILEDEVICE LASTFM MTP SPOTIFY VISUALISATION WIIMOTEDEV + LASTFM MTP SPOTIFY VISUALISATION WIIMOTEDEV AUDIOCD_DESC= Devices: Audio CD support BREAKPAD_DESC= Crash reporting @@ -46,7 +47,6 @@ DEVICEKIT_DESC= Devices: DeviceKit backend GIO_DESC= Devices: GIO device backend GOOGLE_DRIVE_DESC= Google Drive support GPOD_DESC= iPod support -IMOBILEDEVICE_DESC= Devices: iPod Touch, iPhone, iPad support LASTFM_DESC= Support Last.fm service (requires ruby) MTP_DESC= MTP device support SPOTIFY_DESC= Support for Spotify service @@ -98,15 +98,6 @@ LIB_DEPENDS+= gpod:${PORTSDIR}/audio/libgpod CMAKE_ARGS+= -DENABLE_LIBGPOD=OFF .endif -.if ${PORT_OPTIONS:MIMOBILEDEVICE} -CMAKE_ARGS+= -DENABLE_IMOBILEDEVICE=ON -LIB_DEPENDS+= imobiledevice:${PORTSDIR}/comms/libimobiledevice \ - plist:${PORTSDIR}/devel/libplist \ - usbmuxd:${PORTSDIR}/comms/usbmuxd -.else -CMAKE_ARGS+= -DENABLE_IMOBILEDEVICE=OFF -.endif - .if ${PORT_OPTIONS:MLASTFM} CMAKE_ARGS+= -DENABLE_LIBLASTFM=ON LIB_DEPENDS+= lastfm:${PORTSDIR}/audio/liblastfm |