507fafab81
* Handle printable characters from the Latin-1 to Latin-9 sets * Handle KeyPad motion (Up, Down, ...) and digits keys * Fix a bug that caused the PATH scanning routine to ignore the last path element and simplify the algorithm - Add LICENSE (MIT) - Rearrange MASTER_SITES to fetch from my site first
29 lines
586 B
Makefile
29 lines
586 B
Makefile
# New ports collection makefile for: thingylaunch
|
|
# Date created: 1 October 2009
|
|
# Whom: gahr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= thingylaunch
|
|
PORTVERSION= 1.1.2
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://www.gahr.ch/${PORTNAME}/ \
|
|
${MASTER_SITE_LOCAL}/gahr/ \
|
|
http://people.freebsd.org/~gahr/distfiles/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= A lightweight tab-completing launcher for X
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_XORG= x11 xproto
|
|
USE_GNOME= pkgconfig
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|