mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
Add 9box 0.2.1, 9box can "pack" windows inside itself.
PR: 50172 Submitted by: Serge Gagnon <gagnon__s@videotron.ca>
This commit is contained in:
parent
73dd863906
commit
47c6c49d30
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=85481
31
x11/9box/Makefile
Normal file
31
x11/9box/Makefile
Normal file
@ -0,0 +1,31 @@
|
||||
# New ports collection makefile for: 9box
|
||||
# Date created: Fri Mar 21 10:10:48 EST 2003
|
||||
# Whom: Serge Gagnon <gagnon__s@videotron.ca>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= 9box
|
||||
PORTVERSION= 0.2.1
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= http://freesoftware.fsf.org/download/9box/ \
|
||||
http://savannah.nongnu.org/download/9box/
|
||||
|
||||
MAINTAINER= gagnon__s@videotron.ca
|
||||
COMMENT= 9box can "pack" windows inside itself
|
||||
|
||||
USE_REINPLACE= yes
|
||||
USE_XLIB= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
BUILD_WRKSRC= ${WRKSRC}/src
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \
|
||||
${WRKSRC}/src/Makefile
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/src/9box ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
1
x11/9box/distinfo
Normal file
1
x11/9box/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (9box-0.2.1.tar.gz) = b762aee591335a6cb4a3b75700ff1abe
|
19
x11/9box/files/patch-src::Makefile
Normal file
19
x11/9box/files/patch-src::Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
--- src/Makefile.orig Tue Oct 29 17:20:46 2002
|
||||
+++ src/Makefile Wed Jul 23 21:35:39 2003
|
||||
@@ -1,10 +1,14 @@
|
||||
+CC?= cc
|
||||
+CFLAGS+= -g -I. -I%%X11BASE%%/include
|
||||
+LIBS+= -L%%X11BASE%%/lib -lX11
|
||||
+
|
||||
all: 9box
|
||||
|
||||
9box: grab.o 9box.o manage.o menu.o buttons.o utils.o wm.o
|
||||
- gcc -g -L/usr/X11R6/lib -lX11 -o $@ $^
|
||||
+ $(CC) $(CFLAGS) $(LIBS) -o $@ $^
|
||||
|
||||
%.o: %.c
|
||||
- gcc -g -c $< -o $@
|
||||
+ $(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
clean:
|
||||
rm -f *.o 9box *~
|
9
x11/9box/pkg-descr
Normal file
9
x11/9box/pkg-descr
Normal file
@ -0,0 +1,9 @@
|
||||
9box aims to develop an application which can "pack" windows inside
|
||||
itself.
|
||||
|
||||
This will allow to use applications as if they were put in tabs.
|
||||
This behaviour is similar in spirit with konsole, but 9box will
|
||||
allow to pack windows from different applications as well as
|
||||
multiple instances from the same application.
|
||||
|
||||
WWW: http://www.nongnu.org/9box/
|
1
x11/9box/pkg-plist
Normal file
1
x11/9box/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
bin/9box
|
@ -3,6 +3,7 @@
|
||||
SUBDIR += zenity
|
||||
|
||||
SUBDIR += 3ddesktop
|
||||
SUBDIR += 9box
|
||||
SUBDIR += 9term
|
||||
SUBDIR += XFree86
|
||||
SUBDIR += XFree86-4
|
||||
|
Loading…
Reference in New Issue
Block a user