1
0
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:
Mario Sergio Fujikawa Ferreira 2001-11-09 23:07:59 +00:00
parent 1976795ac9
commit f59a613856
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49904
13 changed files with 133 additions and 0 deletions

View File

@ -71,6 +71,7 @@
SUBDIR += geekcode
SUBDIR += git
SUBDIR += gkrellmaflag
SUBDIR += gkrellmlaunch
SUBDIR += gkrellscore
SUBDIR += gkrellweather
SUBDIR += gman

View 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>

View File

@ -0,0 +1 @@
MD5 (gkrellmlaunch-0.2.2.tar.gz) = de4708016f707f98969c6236e10b6763

View 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 *~

View File

@ -0,0 +1 @@
An application launcher plugin for GKrellM

View File

@ -0,0 +1,4 @@
GKrellMLaunch plugin which allows one-click access to frequently
used applications from GKrellM
WWW: http://gkrellmlaunch.sourceforge.net/

View File

@ -0,0 +1 @@
libexec/gkrellm/plugins/gkrellmlaunch.so

View 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>

View File

@ -0,0 +1 @@
MD5 (gkrellmlaunch-0.2.2.tar.gz) = de4708016f707f98969c6236e10b6763

View 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 *~

View File

@ -0,0 +1 @@
An application launcher plugin for GKrellM

View File

@ -0,0 +1,4 @@
GKrellMLaunch plugin which allows one-click access to frequently
used applications from GKrellM
WWW: http://gkrellmlaunch.sourceforge.net/

View File

@ -0,0 +1 @@
libexec/gkrellm/plugins/gkrellmlaunch.so