1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/x11/guake/Makefile
Baptiste Daroussin 3147bb6c6b Make libgnome and libgnomeui not implying esound dependency
It has been a while both does not depend anymore on esound, before this change
esound dependency was wrongly added to plenty of packages which actually does
not depend on it.

While here:

- audio/glame: remove esound support
- games/monkeybubble: add an explicit dependency on esound
- sysutils/gnome-schedule: add en explicit dependency on pkg-config
- comms/kb: add missing dependency on pkgconfig
- x11-toolkits/libgnomeui:
  * update to 2.4.5
  * use USES=localbase
2018-03-26 12:38:56 +00:00

70 lines
1.9 KiB
Makefile

# $FreeBSD$
PORTNAME= guake
PORTVERSION= 0.8.10
PORTREVISION= 2
CATEGORIES= x11
MAINTAINER= nivit@FreeBSD.org
COMMENT= Dropdown terminal made for the GNOME desktop
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= gnome-common>=3.14.0:devel/gnome-common \
${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}notify>=0.1.1_9:devel/py-notify@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}vte>=0.26.2_1:x11-toolkits/py-vte@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}xdg>=0.19:devel/py-xdg@${PY_FLAVOR}
RUN_DEPENDS= keybinder>=0.3.0:x11/keybinder \
${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:devel/py-dbus@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}notify>=0.1.1_9:devel/py-notify@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}vte>=0.26.2_1:x11-toolkits/py-vte@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}xdg>=0.19:devel/py-xdg@${PY_FLAVOR}
CPPFLAGS+= -I${LOCALBASE}/include
GCONF_SCHEMAS= guake.schemas
GH_ACCOUNT= Guake
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
LIBS+= -L${LOCALBASE}/lib
MANPAGES_MAKE_ENV_OFF= man_MANS=""
NLS_CONFIGURE_ENABLE= nls
OPTIONS_DEFINE= MANPAGES NLS
OPTIONS_DEFAULT= MANPAGES
OPTIONS_SUB= yes
PLIST_SUB+= DESKTOPDIR="${DESKTOPDIR:S,${PREFIX}/,,}"
NO_ARCH= yes
USES= autoreconf:build desktop-file-utils gettext gmake libtool \
pkgconfig python:2.7
USE_GITHUB= yes
USE_GNOME= gtk20 pygnome2 intltool
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MNLS}
REINPLACE_ARGS+= -e 's,\(USE_NLS=\)yes,\1no,'
REINPLACE_FILES+= ../../configure
.endif
pre-configure:
@(cd ${CONFIGURE_WRKSRC} ; ${SETENV} ${CONFIGURE_ENV} ./autogen.sh)
.if exists(${LOCALBASE}/libexec/notification-daemon)
RUN_DEPENDS+= notification-daemon>=0.7.2_1:deskutils/notification-daemon
.elif exists (${LOCALBASE}/bin/xfce4-notifyd-config)
RUN_DEPENDS+= xfce4-notifyd>=0.2.4:deskutils/xfce4-notifyd
.else
RUN_DEPENDS+= notify-osd>=0.9.29_4:deskutils/notify-osd
.endif
.include <bsd.port.mk>