ports/144978: new port: audio/clementine-player A cross-platform music player based on Amarok 1.4

Gvozdikov Veniamin g.veniamin at googlemail.com
Tue Mar 23 14:00:03 UTC 2010


>Number:         144978
>Category:       ports
>Synopsis:       new port: audio/clementine-player A cross-platform music player based on Amarok 1.4
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Mar 23 14:00:02 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Gvozdikov Veniamin
>Release:        FreeBSD 8.0-STABLE
>Organization:
>Environment:
FreeBSD zlobook.local 8.0-STABLE FreeBSD 8.0-STABLE #6: Sat Mar  6 11:56:08 KRAT 2010     root at zlobook.local:/usr/obj/usr/src/sys/zlobook_amd64  amd64
>Description:
Clementine is a modern music player and library organiser. Clementine
is a port of Amarok 1.4, with some features rewritten to take advantage of Qt4.

Features:
- Listen to internet radio from Last.fm and SomaFM
- Load M3U and XSPF playlists
- Edit tags on MP3 and OGG files, organise your music
- Download missing album cover art from Last.fm
>How-To-Repeat:

>Fix:
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	clementine-player
#	clementine-player/pkg-descr
#	clementine-player/Makefile
#	clementine-player/files
#	clementine-player/files/patch-dist_clementine.desktop
#	clementine-player/files/patch-src_CMakeLists.txt
#	clementine-player/distinfo
#
echo c - clementine-player
mkdir -p clementine-player > /dev/null 2>&1
echo x - clementine-player/pkg-descr
sed 's/^X//' >clementine-player/pkg-descr << 'b9a30a71763b020186a703ae8dc05599'
XClementine is a modern music player and library organiser. Clementine
Xis a port of Amarok 1.4, with some features rewritten to take advantage of Qt4.
X
XFeatures:
X- Listen to internet radio from Last.fm and SomaFM 
X- Load M3U and XSPF playlists 
X- Edit tags on MP3 and OGG files, organise your music 
X- Download missing album cover art from Last.fm
X
XWWW:	http://code.google.com/p/clementine-player/
b9a30a71763b020186a703ae8dc05599
echo x - clementine-player/Makefile
sed 's/^X//' >clementine-player/Makefile << '3c651d1e8decdc40950637fdd767bc8f'
X# New ports collection makefile for:	clementine-player
X# Date created:		2010-03-23
X# Whom:			Gvozdikov Veniamin <g.veniamin at googlemail.com>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	clementine-player
XPORTVERSION=	0.2
XCATEGORIES=	audio
XMASTER_SITES=	GOOGLE_CODE
XDISTNAME=	clementine-${PORTVERSION}
X
XMAINTAINER=	g.veniamin at googlemail.com
XCOMMENT=	A cross-platform music player based on Amarok 1.4
X
XLIB_DEPENDS=	lastfm.0:${PORTSDIR}/audio/liblastfm \
X		tag.1:${PORTSDIR}/audio/taglib \
X		notify.1:${PORTSDIR}/devel/libnotify \
X		xine.1:${PORTSDIR}/multimedia/libxine
X
XUSE_CMAKE=	yes
XUSE_ICONV=	yes
XUSE_QT_VER=	4
XQT_COMPONENTS=	gui xml qmake_build uic_build moc_build rcc_build \
X		linguist network sql opengl dbus qtestlib corelib
X
XPLIST_FILES=	bin/${PORTNAME} \
X		share/applications/clementine.desktop \
X		share/icons/hicolor/64x64/apps/application-x-clementine.png
X
X.include <bsd.port.mk>
3c651d1e8decdc40950637fdd767bc8f
echo c - clementine-player/files
mkdir -p clementine-player/files > /dev/null 2>&1
echo x - clementine-player/files/patch-dist_clementine.desktop
sed 's/^X//' >clementine-player/files/patch-dist_clementine.desktop << '7246aed18ae699e394172d9735bdd230'
X
X$FreeBSD$
X
X--- dist/clementine.desktop.orig
X+++ dist/clementine.desktop
X@@ -4,8 +4,8 @@
X Name=Clementine
X GenericName=Clementine Music Player
X Comment=Plays music and last.fm streams
X-Exec=clementine
X-TryExec=clementine
X+Exec=clementine-player
X+TryExec=clementine-player
X Icon=application-x-clementine
X Terminal=false
X Categories=AudioVideo;Player;Qt;
7246aed18ae699e394172d9735bdd230
echo x - clementine-player/files/patch-src_CMakeLists.txt
sed 's/^X//' >clementine-player/files/patch-src_CMakeLists.txt << '2cceb3ef17ef6a71838c35d7d2ab1f46'
X
X$FreeBSD$
X
X--- src/CMakeLists.txt.orig
X+++ src/CMakeLists.txt
X@@ -228,26 +228,26 @@
X   target_link_libraries(clementine_lib qsqlite)
X endif(WIN32)
X 
X-add_executable(clementine
X+add_executable(clementine-player
X    MACOSX_BUNDLE
X    WIN32
X    ${CLEMENTINE-WIN32-RESOURCES}
X    main.cpp
X )
X-target_link_libraries(clementine clementine_lib)
X+target_link_libraries(clementine-player clementine_lib)
X 
X-set_property(TARGET clementine
X+set_property(TARGET clementine-player
X     PROPERTY COMPILE_FLAGS
X     "-Wnon-virtual-dtor -Woverloaded-virtual -Wall"
X )
X 
X-set_target_properties(clementine PROPERTIES
X+set_target_properties(clementine-player PROPERTIES
X     MACOSX_BUNDLE_INFO_STRING "Clementine 0.2"
X     MACOSX_BUNDLE_ICON_FILE "clementine"
X     MACOSX_BUNDLE_SHORT_VERSION_STRING "0.2"
X )
X 
X-install(TARGETS clementine
X+install(TARGETS clementine-player
X   BUNDLE DESTINATION bin
X   RUNTIME DESTINATION bin
X )
2cceb3ef17ef6a71838c35d7d2ab1f46
echo x - clementine-player/distinfo
sed 's/^X//' >clementine-player/distinfo << '0a176a14152b0542aeb49c5257566140'
XMD5 (clementine-0.2.tar.gz) = c5f39de4998e1d012f3795c108ad39fd
XSHA256 (clementine-0.2.tar.gz) = 9c04956dfe8ec244b50ffc2bf43047c616ec1f580ebd0c2f862237bdf740114a
XSIZE (clementine-0.2.tar.gz) = 3647928
0a176a14152b0542aeb49c5257566140
exit



>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list