diff options
author | will <will@FreeBSD.org> | 2003-06-03 10:42:39 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2003-06-03 10:42:39 +0800 |
commit | 8ec396d052d830f33ac48f2daa8d6cc07981364d (patch) | |
tree | 094f7f3fc3db510cd805af51f59346335ca60bb6 /misc/hotkeys/Makefile | |
parent | 20b536b401470215fdcea8d8a8a9fe56bdd0526b (diff) | |
download | freebsd-ports-gnome-8ec396d052d830f33ac48f2daa8d6cc07981364d.tar.gz freebsd-ports-gnome-8ec396d052d830f33ac48f2daa8d6cc07981364d.tar.zst freebsd-ports-gnome-8ec396d052d830f33ac48f2daa8d6cc07981364d.zip |
Add hotkeys 0.5.7.1, a program that allows usage of special keys on
internet/multimedia keyboards.
PR: 52616
Submitted by: Andy Pavlo <amp0928@rit.edu>
Diffstat (limited to 'misc/hotkeys/Makefile')
-rw-r--r-- | misc/hotkeys/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/misc/hotkeys/Makefile b/misc/hotkeys/Makefile new file mode 100644 index 000000000000..93ac373a5258 --- /dev/null +++ b/misc/hotkeys/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: xquote +# Date created: May 20th, 2003 +# Whom: Andy Pavlo <amp0928@rit.edu> +# +# $FreeBSD$ + +PORTNAME= hotkeys +PORTVERSION= 0.5.7.1 +CATEGORIES= misc +MASTER_SITES= http://ypwong.org/hotkeys/${PORTVERSION}/ \ + ${MASTER_SITE_XCONTRIB} +DISTNAME= hotkeys_${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Allows usage of special keys on internet/multimedia keyboards + +LIB_DEPENDS= xosd.4:${PORTSDIR}/misc/xosd \ + xml2.5:${PORTSDIR}/textproc/libxml2 \ + db3.3:${PORTSDIR}/databases/db3 + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +GNU_CONFIGURE= 1 +CONFIGURE_ARGS= --with-db3-inc=${LOCALBASE}/include/db3 \ + --with-db3-lib=${LOCALBASE}/lib \ + --with-xosd +USE_GMAKE= yes + +MAN1= hotkeys.1 +ORIG_CONFIG= ${PREFIX}/etc/hotkeys.conf +SAMPLE_CONFIG= ${PREFIX}/etc/hotkeys.conf.sample + +post-extract: + @${CP} ${PATCHDIR}/error.h ${WRKSRC}/src + @${CP} ${PATCHDIR}/eliteduo.def ${WRKSRC}/def + +post-install: + @${MV} ${ORIG_CONFIG} ${SAMPLE_CONFIG} + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |