mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
5483a9d678
While I'm here - Switch to USES= gmake - Convert to new LIB_DEPENDS format - Enhance COMMENT entry (misc/xfce4-wm-themes) - Adjust Xfce dependencies, and bump PORTREVISION (sysutils/xfce4-power-manager)
33 lines
750 B
Makefile
33 lines
750 B
Makefile
# Created by: Oliver Lehmann <oliver@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mousepad
|
|
PORTVERSION= 0.3.0
|
|
CATEGORIES= editors xfce
|
|
MASTER_SITES= ${MASTER_SITE_XFCE}
|
|
MASTER_SITE_SUBDIR=src/apps/${PORTNAME}/${PORTVERSION:R}
|
|
DIST_SUBDIR= xfce4
|
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
|
COMMENT= Simple text editor for the Xfce Desktop
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USES= desktop-file-utils gettext gmake pathfix pkgconfig perl5
|
|
USE_GNOME= glib20 gtk20 intltool intlhack gtksourceview2
|
|
USE_XFCE= configenv
|
|
|
|
OPTIONS_DEFINE= DBUS
|
|
OPTIONS_DEFAULT= DBUS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDBUS}
|
|
LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib
|
|
CONFIGURE_ARGS+=--enable-dbus
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-dbus
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|