mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
b1c88cb419
- Add OSS v3 backend [1] - Fix mixer channel selection in Preferences/Channels - Bump PORTREVISION [1] Upstream PR: https://github.com/Maato/volumeicon/pull/70 Submitted by: Dmitri Goutnik
38 lines
717 B
Makefile
38 lines
717 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= volumeicon
|
|
PORTVERSION= 0.5.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= Lightweight volume control for the systray
|
|
|
|
LICENSE= GPLv3
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-oss=v3 \
|
|
--with-oss-include-path=/usr/include/sys
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
USES= autoreconf gmake gettext pkgconfig
|
|
USE_GNOME= gtk30 intltool cairo gdkpixbuf2
|
|
USE_XORG= x11
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Maato
|
|
|
|
OPTIONS_DEFINE= NLS NOTIFY
|
|
OPTIONS_DEFAULT= NOTIFY
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
|
|
NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify
|
|
NOTIFY_CONFIGURE_ENABLE=notify
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ./autogen.sh
|
|
|
|
.include <bsd.port.mk>
|