97bbca41be
Vagalume is a Last.fm client for GNOME. Its main features are: * It plays Last.fm radio streams (using protocol v1.2) * Support for different radio stations (personal, neighbours, loved tracks, or any lastfm:// URL) * It supports marking tracks as loved or banned * It can tag artists, tracks and albums * It can download free tracks to your hard disk * It sends Now Playing information following the Audioscrobbler Realtime Submission Protocol v1.2. [etc]
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/12/16 09:12:53 jasper Exp $
|
|
|
|
COMMENT= last.fm client for GNOME
|
|
|
|
V= 0.7
|
|
DISTNAME= vagalume_$V.orig
|
|
PKGNAME= vagalume-$V
|
|
CATEGORIES= audio x11
|
|
|
|
HOMEPAGE= http://people.igalia.com/berto/
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= https://garage.maemo.org/frs/download.php/4505/
|
|
|
|
WRKDIST= ${WRKDIR}/vagalume-$V.orig
|
|
|
|
WANTLIB= X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes \
|
|
Xi Xinerama Xrandr Xrender atk-1.0 c cairo crypto dbus-1 \
|
|
dbus-glib-1 expat fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0 \
|
|
gio-2.0 glib-2.0 glitz gmodule-2.0 gobject-2.0 gthread-2.0 \
|
|
gtk-x11-2.0 m pango-1.0 pangocairo-1.0 pangoft2-1.0 \
|
|
pcre pixman-1 png pthread ssl xml2 z
|
|
|
|
MODULES+= devel/gettext
|
|
|
|
RUN_DEPENDS+= ::devel/desktop-file-utils \
|
|
::multimedia/gstreamer-0.10/plugins-base
|
|
|
|
LIB_DEPENDS= idn::devel/libidn \
|
|
notify::devel/libnotify \
|
|
gstreamer-0.10::multimedia/gstreamer-0.10/core \
|
|
curl::net/curl
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-platform=gnome \
|
|
--enable-tray-icon \
|
|
--enable-dbus \
|
|
--enable-im-status \
|
|
--enable-gconf
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|