diff options
Diffstat (limited to 'audio/goobox/Makefile')
-rw-r--r-- | audio/goobox/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/audio/goobox/Makefile b/audio/goobox/Makefile new file mode 100644 index 000000000..636333eaf --- /dev/null +++ b/audio/goobox/Makefile @@ -0,0 +1,42 @@ +# Created by: Alexander Nedotsukov <bland@FreeBSD.org> +# $FreeBSD$ +# $MCom$ + +PORTNAME= goobox +PORTVERSION= 3.3.2 +CATEGORIES= audio gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome3 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= CD player and ripper for GNOME Desktop environment + +BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool +LIB_DEPENDS= libdiscid.so:${PORTSDIR}/audio/libdiscid \ + libcoverart.so.0:${PORTSDIR}/audio/libcoverart \ + libmusicbrainz5.so:${PORTSDIR}/audio/libmusicbrainz5 \ + libbrasero-media3.so:${PORTSDIR}/sysutils/brasero \ + libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique + +USES= desktop-file-utils gettext gmake pkgconfig tar:xz +USE_GNOME= glib20 gtk30 gnomeprefix intlhack +USE_XORG= x11 +USE_GSTREAMER1= yes +GNU_CONFIGURE= yes +INSTALLS_ICONS= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +OPTIONS_DEFINE= NOTIFY +OPTIONS_DEFAULT=NOTIFY + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNOTIFY} +LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify +CONFIGURE_ARGS+=--enable-notification +.else +CONFIGURE_ARGS+=--disable-notification +.endif + +.include <bsd.port.mk> |