svn commit: r333264 - head/sysutils/dunst

Veniamin Gvozdikov vg at FreeBSD.org
Fri Nov 8 22:06:58 UTC 2013


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 at 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/


More information about the svn-ports-all mailing list