diff options
author | sborrill <sborrill@pkgsrc.org> | 2007-06-08 21:57:33 +0000 |
---|---|---|
committer | sborrill <sborrill@pkgsrc.org> | 2007-06-08 21:57:33 +0000 |
commit | 4f3913c41eee78b6597c3a92bb9655b1d4598971 (patch) | |
tree | 3d65f0d8161df88d8a3f960a2d90e5182aba6c2c /x11 | |
parent | c8ddb3234a4d305abd8abee1b5051304c48a67a4 (diff) | |
download | pkgsrc-4f3913c41eee78b6597c3a92bb9655b1d4598971.tar.gz |
Import desklaunch 1.1.5
DeskLaunch is a small utility for creating desktop icons using pixmaps. A
simple click will launch the desired application.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/desklaunch/DESCR | 2 | ||||
-rw-r--r-- | x11/desklaunch/MESSAGE | 7 | ||||
-rw-r--r-- | x11/desklaunch/Makefile | 25 | ||||
-rw-r--r-- | x11/desklaunch/PLIST | 3 | ||||
-rw-r--r-- | x11/desklaunch/distinfo | 6 | ||||
-rw-r--r-- | x11/desklaunch/patches/patch-aa | 15 |
6 files changed, 58 insertions, 0 deletions
diff --git a/x11/desklaunch/DESCR b/x11/desklaunch/DESCR new file mode 100644 index 00000000000..81184120ea8 --- /dev/null +++ b/x11/desklaunch/DESCR @@ -0,0 +1,2 @@ +DeskLaunch is a small utility for creating desktop icons using pixmaps. A +simple click will launch the desired application. diff --git a/x11/desklaunch/MESSAGE b/x11/desklaunch/MESSAGE new file mode 100644 index 00000000000..656c4b555b3 --- /dev/null +++ b/x11/desklaunch/MESSAGE @@ -0,0 +1,7 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1.1.1 2007/06/08 21:57:33 sborrill Exp $ + +For details on configuring desklaunch, please read +${PREFIX}/share/doc/desklaunch.README + +=========================================================================== diff --git a/x11/desklaunch/Makefile b/x11/desklaunch/Makefile new file mode 100644 index 00000000000..8116bf096e7 --- /dev/null +++ b/x11/desklaunch/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/06/08 21:57:33 sborrill Exp $ +# + +VERSION= 1.1.5 +DISTNAME= desklaunch_${VERSION} +PKGNAME= desklaunch-${VERSION} +CATEGORIES= x11 +MASTER_SITES= http://www.oroborus.org/debian/dists/sid/main/source/x11/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.oroborus.org/?node=Download +COMMENT= X utility for binding commands to pixmap icons + +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} +USE_TOOLS+= gmake + +INSTALLATION_DIRS= bin + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/desklaunch ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/README \ + ${PREFIX}/share/doc/desklaunch.README + +.include "../../x11/libX11/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/x11/desklaunch/PLIST b/x11/desklaunch/PLIST new file mode 100644 index 00000000000..72b8fb15124 --- /dev/null +++ b/x11/desklaunch/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2007/06/08 21:57:33 sborrill Exp $ +bin/desklaunch +share/doc/desklaunch.README diff --git a/x11/desklaunch/distinfo b/x11/desklaunch/distinfo new file mode 100644 index 00000000000..13b02a2cbb9 --- /dev/null +++ b/x11/desklaunch/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2007/06/08 21:57:33 sborrill Exp $ + +SHA1 (desklaunch_1.1.5.tar.gz) = 07e7f9b36f9fd71227e9194497912d0fb9f9854b +RMD160 (desklaunch_1.1.5.tar.gz) = e0e4626ff255ad80a0b7016313a216cc5bd2d31c +Size (desklaunch_1.1.5.tar.gz) = 13214 bytes +SHA1 (patch-aa) = 4955441de9db409c3603b9e1994a6d4648f17a70 diff --git a/x11/desklaunch/patches/patch-aa b/x11/desklaunch/patches/patch-aa new file mode 100644 index 00000000000..5deef93def0 --- /dev/null +++ b/x11/desklaunch/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1.1.1 2007/06/08 21:57:33 sborrill Exp $ +--- Makefile.orig 2006-01-09 16:43:23.000000000 +0000 ++++ Makefile 2007-06-08 17:32:17.000000000 +0100 +@@ -1,9 +1,9 @@ + CC = gcc + CFLAGS = -g -O2 -Wall +-XROOT = /usr/X11R6 ++XROOT = ${X11BASE} + INCLUDES = -I$(XROOT)/include + LIBS = -lX11 -lXext -lXpm +-LDPATH = -L$(XROOT)/lib ++LDPATH = -L$(XROOT)/lib ${LDFLAGS} + + DESTDIR = + PROG = desklaunch |