1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Add gtk-launch.

GTK-Launch is a program launcher, the equivalent of "Run Command" in
KDE or GNOME.

It features a command history, and only runs the command if it is valid.

WWW: http://gtk-launch.descamps.net/

PR:		ports/83911
Submitted by:	Emanuel Haupt <ehaupt@critical.ch>
This commit is contained in:
Jean-Yves Lefort 2005-07-25 15:53:02 +00:00
parent 81fe163612
commit 43a2f69269
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140097
5 changed files with 59 additions and 0 deletions

View File

@ -73,6 +73,7 @@
SUBDIR += gnometerminal
SUBDIR += grabc
SUBDIR += gromit
SUBDIR += gtk-launch
SUBDIR += gtk-theme-switch
SUBDIR += gtk-themepreview
SUBDIR += gtk2-theme-switch

40
x11/gtk-launch/Makefile Normal file
View File

@ -0,0 +1,40 @@
# New ports collection makefile for: gtk-launch
# Date created: 22 Jul 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= gtk-launch
DISTVERSION= 1.1b
CATEGORIES= x11
MASTER_SITES= http://pierric.descamps.free.fr/pierric/downloads/
MAINTAINER= ehaupt@critical.ch
COMMENT= A fast GTK+ program launcher
USE_X_PREFIX= yes
USE_GNOME= gtk12
PLIST_FILES= bin/gtk-launch
PORTDOCS= INSTALL
post-patch:
${ECHO_CMD} >> ${WRKSRC}/launch.c
do-build:
${CC} ${CFLAGS} `${GTK_CONFIG} --cflags --libs` \
-o ${WRKSRC}/${PORTNAME} ${WRKSRC}/launch.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

2
x11/gtk-launch/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (gtk-launch-1.1b.tar.gz) = a1b74aad0dfa314156b3b75c4015f6fb
SIZE (gtk-launch-1.1b.tar.gz) = 10747

9
x11/gtk-launch/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
GTK-Launch is a program launcher, the equivalent of "Run Command" in
KDE or GNOME.
It features a command history, and only runs the command if it is valid.
WWW: http://gtk-launch.descamps.net/
- ehaupt
ehaupt@critical.ch

View File

@ -0,0 +1,7 @@
===============================================================================
Create the file ~/.launch as follows:
echo MEMOIRE=5 > ~/.launch
"5" is the number of commands to preserve in the command history.
===============================================================================