mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
New port gkrellmlaunch version 0.2.2: An application launcher plugin
for GKrellM Submitted by: Patrick Li <pat@databits.net>
This commit is contained in:
parent
1976795ac9
commit
f59a613856
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49904
@ -71,6 +71,7 @@
|
||||
SUBDIR += geekcode
|
||||
SUBDIR += git
|
||||
SUBDIR += gkrellmaflag
|
||||
SUBDIR += gkrellmlaunch
|
||||
SUBDIR += gkrellscore
|
||||
SUBDIR += gkrellweather
|
||||
SUBDIR += gman
|
||||
|
28
misc/gkrellmlaunch/Makefile
Normal file
28
misc/gkrellmlaunch/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
# New ports collection makefile for: gkrellmlaunch
|
||||
# Date Created: Tue Nov 6 19:15:45 EST 2001
|
||||
# Whom: Patrick Li <pat@databits.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= gkrellmlaunch
|
||||
PORTVERSION= 0.2.2
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= pat@databits.net
|
||||
|
||||
BUILD_DEPENDS= ${X11BASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm
|
||||
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GTK= yes
|
||||
USE_IMLIB= yes
|
||||
ALL_TARGET= ${PORTNAME}.so
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.so \
|
||||
${PREFIX}/libexec/gkrellm/plugins
|
||||
|
||||
.include <bsd.port.mk>
|
1
misc/gkrellmlaunch/distinfo
Normal file
1
misc/gkrellmlaunch/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (gkrellmlaunch-0.2.2.tar.gz) = de4708016f707f98969c6236e10b6763
|
31
misc/gkrellmlaunch/files/patch-Makefile
Normal file
31
misc/gkrellmlaunch/files/patch-Makefile
Normal file
@ -0,0 +1,31 @@
|
||||
--- Makefile.orig Mon Nov 5 13:17:40 2001
|
||||
+++ Makefile Tue Nov 6 19:33:41 2001
|
||||
@@ -1,22 +1,20 @@
|
||||
# Sample Makefile for a GKrellM plugin
|
||||
|
||||
-GTK_INCLUDE = `gtk-config --cflags`
|
||||
-GTK_LIB = `gtk-config --libs`
|
||||
+GTK_INCLUDE = `${GTK_CONFIG} --cflags`
|
||||
+GTK_LIB = `${GTK_CONFIG} --libs`
|
||||
|
||||
-IMLIB_INCLUDE = `imlib-config --cflags-gdk`
|
||||
-IMLIB_LIB = `imlib-config --libs-gdk`
|
||||
+IMLIB_INCLUDE = `${IMLIB_CONFIG} --cflags-gdk`
|
||||
+IMLIB_LIB = `${IMLIB_CONFIG} --libs-gdk`
|
||||
|
||||
-FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE)
|
||||
+CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE)
|
||||
LIBS = $(GTK_LIB) $(IMLIB_LIB)
|
||||
|
||||
LFLAGS = -shared
|
||||
|
||||
-CC = gcc $(CFLAGS) $(FLAGS)
|
||||
-
|
||||
OBJS = gkrellmlaunch.o
|
||||
|
||||
gkrellmlaunch.so: $(OBJS)
|
||||
- $(CC) $(OBJS) -o gkrellmlaunch.so $(LFLAGS) $(LIBS)
|
||||
+ $(CC) $(OBJS) -o gkrellmlaunch.so $(CFLAGS) $(LFLAGS) $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f *.o core *.so* *.bak *~
|
1
misc/gkrellmlaunch/pkg-comment
Normal file
1
misc/gkrellmlaunch/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
An application launcher plugin for GKrellM
|
4
misc/gkrellmlaunch/pkg-descr
Normal file
4
misc/gkrellmlaunch/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
GKrellMLaunch plugin which allows one-click access to frequently
|
||||
used applications from GKrellM
|
||||
|
||||
WWW: http://gkrellmlaunch.sourceforge.net/
|
1
misc/gkrellmlaunch/pkg-plist
Normal file
1
misc/gkrellmlaunch/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
libexec/gkrellm/plugins/gkrellmlaunch.so
|
28
misc/gkrellmlaunch2/Makefile
Normal file
28
misc/gkrellmlaunch2/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
# New ports collection makefile for: gkrellmlaunch
|
||||
# Date Created: Tue Nov 6 19:15:45 EST 2001
|
||||
# Whom: Patrick Li <pat@databits.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= gkrellmlaunch
|
||||
PORTVERSION= 0.2.2
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= pat@databits.net
|
||||
|
||||
BUILD_DEPENDS= ${X11BASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm
|
||||
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GTK= yes
|
||||
USE_IMLIB= yes
|
||||
ALL_TARGET= ${PORTNAME}.so
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.so \
|
||||
${PREFIX}/libexec/gkrellm/plugins
|
||||
|
||||
.include <bsd.port.mk>
|
1
misc/gkrellmlaunch2/distinfo
Normal file
1
misc/gkrellmlaunch2/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (gkrellmlaunch-0.2.2.tar.gz) = de4708016f707f98969c6236e10b6763
|
31
misc/gkrellmlaunch2/files/patch-Makefile
Normal file
31
misc/gkrellmlaunch2/files/patch-Makefile
Normal file
@ -0,0 +1,31 @@
|
||||
--- Makefile.orig Mon Nov 5 13:17:40 2001
|
||||
+++ Makefile Tue Nov 6 19:33:41 2001
|
||||
@@ -1,22 +1,20 @@
|
||||
# Sample Makefile for a GKrellM plugin
|
||||
|
||||
-GTK_INCLUDE = `gtk-config --cflags`
|
||||
-GTK_LIB = `gtk-config --libs`
|
||||
+GTK_INCLUDE = `${GTK_CONFIG} --cflags`
|
||||
+GTK_LIB = `${GTK_CONFIG} --libs`
|
||||
|
||||
-IMLIB_INCLUDE = `imlib-config --cflags-gdk`
|
||||
-IMLIB_LIB = `imlib-config --libs-gdk`
|
||||
+IMLIB_INCLUDE = `${IMLIB_CONFIG} --cflags-gdk`
|
||||
+IMLIB_LIB = `${IMLIB_CONFIG} --libs-gdk`
|
||||
|
||||
-FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE)
|
||||
+CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE)
|
||||
LIBS = $(GTK_LIB) $(IMLIB_LIB)
|
||||
|
||||
LFLAGS = -shared
|
||||
|
||||
-CC = gcc $(CFLAGS) $(FLAGS)
|
||||
-
|
||||
OBJS = gkrellmlaunch.o
|
||||
|
||||
gkrellmlaunch.so: $(OBJS)
|
||||
- $(CC) $(OBJS) -o gkrellmlaunch.so $(LFLAGS) $(LIBS)
|
||||
+ $(CC) $(OBJS) -o gkrellmlaunch.so $(CFLAGS) $(LFLAGS) $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f *.o core *.so* *.bak *~
|
1
misc/gkrellmlaunch2/pkg-comment
Normal file
1
misc/gkrellmlaunch2/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
An application launcher plugin for GKrellM
|
4
misc/gkrellmlaunch2/pkg-descr
Normal file
4
misc/gkrellmlaunch2/pkg-descr
Normal file
@ -0,0 +1,4 @@
|
||||
GKrellMLaunch plugin which allows one-click access to frequently
|
||||
used applications from GKrellM
|
||||
|
||||
WWW: http://gkrellmlaunch.sourceforge.net/
|
1
misc/gkrellmlaunch2/pkg-plist
Normal file
1
misc/gkrellmlaunch2/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
libexec/gkrellm/plugins/gkrellmlaunch.so
|
Loading…
Reference in New Issue
Block a user