View | Details | Raw Unified | Return to bug 226664
Collapse All | Expand All

(-)x11/dmenu/Makefile (-7 / +4 lines)
Lines 2-17 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	dmenu
4
PORTNAME=	dmenu
5
PORTVERSION=	4.7
5
PORTVERSION=	4.8
6
CATEGORIES=	x11
6
CATEGORIES=	x11
7
MASTER_SITES=	http://dl.suckless.org/tools/ \
7
MASTER_SITES=	http://dl.suckless.org/tools/ \
8
		http://schot.a-eskwadraat.nl/files/
8
		http://schot.a-eskwadraat.nl/files/
9
9
10
PATCH_SITES=	http://tools.suckless.org/dmenu/patches/ \
10
MAINTAINER=	0mp@FreeBSD.org
11
		http://schot.a-eskwadraat.nl/files/
12
PATCH_DIST_STRIP=-p1
13
14
MAINTAINER=	schot@a-eskwadraat.nl
15
COMMENT=	X11 menu application designed for the dwm window manager
11
COMMENT=	X11 menu application designed for the dwm window manager
16
12
17
LICENSE=	MIT
13
LICENSE=	MIT
Lines 24-30 OPTIONS_DEFAULT= XINERAMA Link Here
24
20
25
USE_XORG=	x11 xft
21
USE_XORG=	x11 xft
26
MAKE_ARGS=	CC="${CC}" PREFIX="${PREFIX}" MANPREFIX="${MANPREFIX}/man" \
22
MAKE_ARGS=	CC="${CC}" PREFIX="${PREFIX}" MANPREFIX="${MANPREFIX}/man" \
27
		X11INC="${LOCALBASE}/include" X11LIB="${LOCALBASE}/lib"
23
		X11INC="${LOCALBASE}/include" X11LIB="${LOCALBASE}/lib" \
24
		FREETYPEINC="${LOCALBASE}/include/freetype2"
28
25
29
PLIST_FILES=	bin/dmenu bin/dmenu_path bin/dmenu_run bin/stest \
26
PLIST_FILES=	bin/dmenu bin/dmenu_path bin/dmenu_run bin/stest \
30
		man/man1/dmenu.1.gz man/man1/stest.1.gz
27
		man/man1/dmenu.1.gz man/man1/stest.1.gz
(-)x11/dmenu/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1494317037
1
TIMESTAMP = 1521227102
2
SHA256 (dmenu-4.7.tar.gz) = a75635f8dc2cbc280deecb906ad9b7594c5c31620e4a01ba30dc83984881f7b9
2
SHA256 (dmenu-4.8.tar.gz) = fe615a5c3607061e2106700862e82ac62a9fa1e6a7ac3d616a9c76106476db61
3
SIZE (dmenu-4.7.tar.gz) = 15597
3
SIZE (dmenu-4.8.tar.gz) = 15658
(-)x11/dmenu/files/patch-config.mk (-10 / +2 lines)
Lines 1-14 Link Here
1
--- config.mk.orig	2017-05-02 16:36:47 UTC
1
--- config.mk.orig	2018-03-16 19:56:18 UTC
2
+++ config.mk
2
+++ config.mk
3
@@ -16,16 +16,16 @@ XINERAMAFLAGS = -DXINERAMA
3
@@ -23,9 +23,9 @@ INCS = -I${X11INC} -I${FREETYPEINC}
4
 FREETYPELIBS = -lfontconfig -lXft
5
 FREETYPEINC = /usr/include/freetype2
6
 # OpenBSD (uncomment)
7
-#FREETYPEINC = ${X11INC}/freetype2
8
+FREETYPEINC = ${X11INC}/freetype2
9
 
10
 # includes and libs
11
 INCS = -I${X11INC} -I${FREETYPEINC}
12
 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
4
 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
13
 
5
 
14
 # flags
6
 # flags
(-)x11/dmenu/pkg-descr (-3 / +3 lines)
Lines 1-9 Link Here
1
dmenu is a minimalistic X11 menu. It reads a newline separated list of items
1
dmenu is a minimalistic X11 menu. It reads a newline separated list of items
2
from stdin and shows them as a menu on the top of the screen. When the user
2
from stdin and shows them as a menu on the top of the screen. When the user
3
selects one item or types any text and presses Enter, his choice is printed to
3
selects one item or types any text and presses Enter, their choice is printed
4
stdout.
4
to stdout.
5
5
6
dmenu was developed as an addition to the dynamic window manager (dwm), but can
6
dmenu was developed as an addition to the dynamic window manager (dwm), but can
7
be used in any X11-environment.
7
be used in any X11-environment.
8
8
9
WWW: http://tools.suckless.org/dmenu
9
WWW: https://tools.suckless.org/dmenu

Return to bug 226664