diff options
author | pav <pav@FreeBSD.org> | 2004-10-20 11:32:46 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-10-20 11:32:46 +0800 |
commit | b614d6d02f60c287a2a7664de2ae20b1cb6bde87 (patch) | |
tree | d6a9d9dd10a8f54b40e2186de4a1213d35563120 /x11-wm | |
parent | 16528fa4b757195635b84273e9ece93c67fd5f2a (diff) | |
download | freebsd-ports-gnome-b614d6d02f60c287a2a7664de2ae20b1cb6bde87.tar.gz freebsd-ports-gnome-b614d6d02f60c287a2a7664de2ae20b1cb6bde87.tar.zst freebsd-ports-gnome-b614d6d02f60c287a2a7664de2ae20b1cb6bde87.zip |
Add fbcmd, an utility which provides some functions to the 'core' of fluxbox
from the commandline.
PR: ports/72862
Submitted by: Roman Bogorodskiy <bogorodskiy@inbox.ru>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/Makefile | 1 | ||||
-rw-r--r-- | x11-wm/fbcmd/Makefile | 32 | ||||
-rw-r--r-- | x11-wm/fbcmd/distinfo | 2 | ||||
-rw-r--r-- | x11-wm/fbcmd/pkg-descr | 4 |
4 files changed, 39 insertions, 0 deletions
diff --git a/x11-wm/Makefile b/x11-wm/Makefile index d98340e0619a..35ceaddd20ae 100644 --- a/x11-wm/Makefile +++ b/x11-wm/Makefile @@ -31,6 +31,7 @@ SUBDIR += epplets SUBDIR += evilwm SUBDIR += expocity + SUBDIR += fbcmd SUBDIR += fbdesk SUBDIR += fbpager SUBDIR += fluxbox diff --git a/x11-wm/fbcmd/Makefile b/x11-wm/fbcmd/Makefile new file mode 100644 index 000000000000..dacc96805f9d --- /dev/null +++ b/x11-wm/fbcmd/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: fbcmd +# Date created: 2004-09-24 +# Whom: Roman Bogorodskiy <bogorodskiy@inbox.ru> +# +# $FreeBSD$ +# + +PORTNAME= fbcmd +PORTVERSION= 0.5 +CATEGORIES= x11-wm +MASTER_SITES= http://darkshed.dyndns.org/~mathias/files/c_cpp/fbcmd/ + +MAINTAINER= bogorodskiy@inbox.ru +COMMENT= A commandline utility for controlling fluxbox + +RUN_DEPENDS= fluxbox:${PORTSDIR}/x11-wm/fluxbox-devel + +USE_BZIP2= yes +USE_GMAKE= yes +ALL_TARGET= first +USE_REINPLACE= yes +USE_X_PREFIX= yes + +PLIST_FILES= bin/fbcmd + +post-extract: + @${REINPLACE_CMD} -e "s|/usr/X11R6|${X11BASE}|g" ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/fbcmd ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/x11-wm/fbcmd/distinfo b/x11-wm/fbcmd/distinfo new file mode 100644 index 000000000000..edb3cb2749a7 --- /dev/null +++ b/x11-wm/fbcmd/distinfo @@ -0,0 +1,2 @@ +MD5 (fbcmd-0.5.tar.bz2) = e2678ab8364b9ea59a7fb2710871d574 +SIZE (fbcmd-0.5.tar.bz2) = 7570 diff --git a/x11-wm/fbcmd/pkg-descr b/x11-wm/fbcmd/pkg-descr new file mode 100644 index 000000000000..fd749f9c76d3 --- /dev/null +++ b/x11-wm/fbcmd/pkg-descr @@ -0,0 +1,4 @@ +fbcmd provides some functions to the 'core' of fluxbox +from the commandline. + +WWW: http://darkshed.dyndns.org/~mathias/files/c_cpp/fbcmd/ |