new port of ButtonBox 0.03, an Xlib-based application launcher
This commit is contained in:
parent
642d9d5d07
commit
abc03967ee
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36040
5 changed files with 61 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
|||
SUBDIR += bgrot
|
||||
SUBDIR += blast
|
||||
SUBDIR += bricons
|
||||
SUBDIR += buttonbox
|
||||
SUBDIR += dgs
|
||||
SUBDIR += dxpc
|
||||
SUBDIR += dynamag
|
||||
|
|
47
x11/buttonbox/Makefile
Normal file
47
x11/buttonbox/Makefile
Normal file
|
@ -0,0 +1,47 @@
|
|||
# New ports collection makefile for: buttonbox
|
||||
# Date created: 2000-12-17
|
||||
# Whom: trevor
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= buttonbox
|
||||
PORTVERSION= 0.03
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= http://www.sto-kerrig.org/free-software/projects/button-box/
|
||||
DISTNAME= ${PORTNAME:S/b/B/g}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= trevor@FreeBSD.org
|
||||
|
||||
DOCDIR= share/doc/${PORTNAME}
|
||||
DOCS= COPYING ChangeLog DEDICATION README TODO
|
||||
PLIST= ${WRKDIR}/pkg-plist
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${CC} ${CFLAGS} -o buttonbox -L${X11BASE}/lib \
|
||||
-I${X11BASE}/include -lX11 -lXext button.c configuration.c \
|
||||
colour.c dispatcher.c main.c
|
||||
|
||||
pre-install:
|
||||
${ECHO} bin/buttonbox > ${PLIST}
|
||||
${ECHO} lib/X11/app-defaults/ButtonBox.ad >> ${PLIST}
|
||||
.if !defined(NOPORTDOCS)
|
||||
for i in ${DOCS}; \
|
||||
do ${ECHO} ${DOCDIR}/$${i} >> ${PLIST}; \
|
||||
done
|
||||
${ECHO} @dirrm ${DOCDIR} >> ${PLIST}
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/ButtonBox.ad ${X11BASE}/lib/X11/app-defaults/
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/buttonbox ${X11BASE}/bin/
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/${DOCDIR}
|
||||
for i in ${DOCS}; \
|
||||
do ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/${DOCDIR}; \
|
||||
done
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
x11/buttonbox/distinfo
Normal file
1
x11/buttonbox/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ButtonBox-0.03.tar.gz) = 515db920de6ddca4534250955d837fd3
|
1
x11/buttonbox/pkg-comment
Normal file
1
x11/buttonbox/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Xlib-based application launcher
|
11
x11/buttonbox/pkg-descr
Normal file
11
x11/buttonbox/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
from the Web page:
|
||||
|
||||
ButtonBox is a simple application for the X Window System
|
||||
that sits in the corner of the screen, waiting for you to
|
||||
click on one of the buttons it provides. When you do, it
|
||||
launches the program.
|
||||
|
||||
WWW: http://www.sto-kerrig.org/free-software/projects/button-box/
|
||||
|
||||
Trevor Johnson
|
||||
trevor@FreeBSD.org
|
Loading…
Reference in a new issue