freebsd-ports/audio/paprefs/Makefile
Tijl Coosemans a6d2f30533 - Set CPPFLAGS and LIBS in a number of ports so configure can find libintl.h
and libintl.so.  This fixes a problem where DATADIRNAME gets an incorrect
  value which causes locale files to be installed in the wrong place.
- The only configure checks that still need to be patched are related
  to intltool so move DATADIRNAME patching from USES=pathfix to
  USE_GNOME=intlhack.

- games/klavaro: remove excessive dependencies
- japanese/libskk: add INSTALL_TARGET=install-strip
- math/libqalculate: add INSTALL_TARGET=install-strip and remove pthread
  patching
- multimedia/freetuxtv: remove excessive dependencies
- science/gramps: fix shared-mime-info use

Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-09-25 15:18:27 +00:00

41 lines
914 B
Makefile

# Created by: Romain Tartière <romain@blogreen.org>
# $FreeBSD$
PORTNAME= paprefs
PORTVERSION= 0.9.9
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://0pointer.de/lennart/projects/${PORTNAME}/
MAINTAINER= romain@FreeBSD.org
COMMENT= GTK configuration dialog for PulseAudio
LIB_DEPENDS= libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 \
libpulse.so:${PORTSDIR}/audio/pulseaudio
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib
USES= gmake pkgconfig
USE_GNOME= gconfmm26 gnomeprefix
CONFIGURE_ARGS= --disable-lynx
OPTIONS_DEFINE= PK NLS
PK_DESC= Force dependency on PackageKit
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPK}
LIB_DEPENDS+= libpackagekit-glib2.so:${PORTSDIR}/ports-mgmt/packagekit
.endif
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>