Date: Fri, 8 Nov 2013 22:06:57 +0000 (UTC) From: Veniamin Gvozdikov <vg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333264 - head/sysutils/dunst Message-ID: <201311082206.rA8M6vlp072824@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vg Date: Fri Nov 8 22:06:57 2013 New Revision: 333264 URL: http://svnweb.freebsd.org/changeset/ports/333264 Log: - Fixed mistake at the COMMENT - Changed LIB_DEPENDS to modern syntax - Removed -O3 and -g flags to compiler - Removed CFLAGS because not necessary - A bit modified pkg-descr with recommendations by danfe Submitted by: danfe Modified: head/sysutils/dunst/Makefile head/sysutils/dunst/pkg-descr Modified: head/sysutils/dunst/Makefile ============================================================================== --- head/sysutils/dunst/Makefile Fri Nov 8 21:41:53 2013 (r333263) +++ head/sysutils/dunst/Makefile Fri Nov 8 22:06:57 2013 (r333264) @@ -7,15 +7,17 @@ CATEGORIES= sysutils MASTER_SITES= http://www.knopwob.org/public/dunst-release/ MAINTAINER= rodperson@rodperson.com -COMMENT= Lightweight notification deamon +COMMENT= Lightweight notification daemon -LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo \ - dbus:${PORTSDIR}/devel/dbus \ - execinfo:${PORTSDIR}/devel/libexecinfo \ - freetype:${PORTSDIR}/print/freetype2 \ - notify:${PORTSDIR}/devel/libnotify \ - pango:${PORTSDIR}/x11-toolkits/pango \ - xdg-basedir:${PORTSDIR}/x11/libxdg-basedir +LICENSE= BSD + +LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo \ + libdbus-1.so:${PORTSDIR}/devel/dbus \ + libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libnotify.so:${PORTSDIR}/devel/libnotify \ + libpango-1.0.so:${PORTSDIR}/x11-toolkits/pango \ + libxdg-basedir.so:${PORTSDIR}/x11/libxdg-basedir USES= gmake pkgconfig:build USE_BZIP2= yes @@ -27,8 +29,7 @@ MAKE_ARGS+= MANPREFIX="${PREFIX}/man" ALL_TARGET= dunst dunstify dunst.1 INSTALL_TARGET= install -LDFLAGS+= -O3 -g -Wall -rdynamic -lexecinfo -CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -Wall -rdynamic -lexecinfo PLIST_FILES= bin/dunst \ share/dunst/dunstrc \ Modified: head/sysutils/dunst/pkg-descr ============================================================================== --- head/sysutils/dunst/pkg-descr Fri Nov 8 21:41:53 2013 (r333263) +++ head/sysutils/dunst/pkg-descr Fri Nov 8 22:06:57 2013 (r333264) @@ -1,6 +1,6 @@ Dunst is a lightweight replacement for the notification-daemons provided -by most desktop environments. It's very customizable, doesn't depend on -any toolkits and therefore fits in those windowmanager centric setups we -all love to customize to perfection. +by most desktop environments. It's very customizable, doesn't depend on +any toolkits, and therefore fits in those window manager centric setups +we all love to customize to perfection. -WWW: http://www.knopwob.org/dunst +WWW: http://www.knopwob.org/dunst/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311082206.rA8M6vlp072824>