- remove most dependencies on plugins-bad and plugins-ugly; there is no reason on depend on these because they should only provide support for rare and/or rarely used codecs - for standard how-of-the-box support for most modern files, always depend on plugins-good and plugins-ffmpeg|libav. gstreamer1 parts from Brad, gstreamer-0.10 parts from me
39 lines
952 B
Makefile
39 lines
952 B
Makefile
# $OpenBSD: Makefile,v 1.6 2015/10/07 05:50:25 ajacoutot Exp $
|
|
|
|
COMMENT = streaming radio player
|
|
|
|
MODPY_EGG_VERSION = 0.7.3
|
|
DISTNAME = radiotray-${MODPY_EGG_VERSION}
|
|
CATEGORIES = audio
|
|
HOMEPAGE = http://radiotray.sourceforge.net/
|
|
REVISION = 3
|
|
|
|
MAINTAINER = Fred Crowson <openbsd@crowsons.com>
|
|
|
|
# GPLv1
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=radiotray/}
|
|
MODULES = lang/python
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
RUN_DEPENDS = devel/py-gobject${MODPY_FLAVOR} \
|
|
devel/py-notify${MODPY_FLAVOR} \
|
|
devel/py-xdg${MODPY_FLAVOR} \
|
|
devel/desktop-file-utils \
|
|
multimedia/gstreamer-0.10/plugins-good \
|
|
multimedia/gstreamer-0.10/plugins-ffmpeg \
|
|
multimedia/gstreamer-0.10/py-gstreamer \
|
|
textproc/py-lxml \
|
|
x11/dbus-python
|
|
|
|
BUILD_DEPENDS = devel/gettext-tools \
|
|
devel/py-xdg${MODPY_FLAVOR}
|
|
|
|
NO_TEST = Yes
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/src/lib/common.py
|
|
|
|
.include <bsd.port.mk>
|