diff options
author | miwi <miwi@FreeBSD.org> | 2009-10-20 17:48:33 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-10-20 17:48:33 +0800 |
commit | 01add0df959ee858464be9b93d50ff10758d2591 (patch) | |
tree | fdbd372a51eb3a21f809357997652872038dfa7c /x11 | |
parent | 94b4b70a3b492be45b38fa68032678aa18fcdb4c (diff) | |
download | freebsd-ports-gnome-01add0df959ee858464be9b93d50ff10758d2591.tar.gz freebsd-ports-gnome-01add0df959ee858464be9b93d50ff10758d2591.tar.zst freebsd-ports-gnome-01add0df959ee858464be9b93d50ff10758d2591.zip |
`deskpaint' is a small interactive paint program that paints
onto the desktop window, so that the user draws their
own desktop wallpaper.
PR: ports/139716
Submitted by: Kirn Gill <segin2005 at gmail.com>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/deskpaint/Makefile | 22 | ||||
-rw-r--r-- | x11/deskpaint/distinfo | 3 | ||||
-rw-r--r-- | x11/deskpaint/files/patch-Makefile | 16 | ||||
-rw-r--r-- | x11/deskpaint/pkg-descr | 3 |
5 files changed, 45 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index e0ee5adbac29..9c25e74e23c0 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -34,6 +34,7 @@ SUBDIR += damageproto SUBDIR += decurs SUBDIR += deskmenu + SUBDIR += deskpaint SUBDIR += dgs SUBDIR += dmenu SUBDIR += dmxproto diff --git a/x11/deskpaint/Makefile b/x11/deskpaint/Makefile new file mode 100644 index 000000000000..105c3ced9abc --- /dev/null +++ b/x11/deskpaint/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: deskpaint +# Date created: 18 October 2009 +# Whom: Kirn Gill <segin2005@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= deskpaint +PORTVERSION= 3 +CATEGORIES= x11 +MASTER_SITES= http://www.gatorgitter.com/~maties/ +DISTNAME= ${PORTNAME}${PORTVERSION} + +MAINTAINER= sic_zer0@hotmail.com +COMMENT= A tiny interactive paint program that draws as your desktop wallpaper + +USE_XORG= x11 xext +PLIST_FILES= bin/deskpaint + +WRKSRC= ${WRKDIR}/${PORTNAME} + +.include <bsd.port.mk> diff --git a/x11/deskpaint/distinfo b/x11/deskpaint/distinfo new file mode 100644 index 000000000000..70606b2b503e --- /dev/null +++ b/x11/deskpaint/distinfo @@ -0,0 +1,3 @@ +MD5 (deskpaint3.tar.gz) = 28e4b15895069e5ea18c7e4b7a6e4796 +SHA256 (deskpaint3.tar.gz) = 9b05b90fb484bd81cd28602f611a1a51cd3cc4c1c8ae6efed9cc417b2373cff4 +SIZE (deskpaint3.tar.gz) = 5965 diff --git a/x11/deskpaint/files/patch-Makefile b/x11/deskpaint/files/patch-Makefile new file mode 100644 index 000000000000..132e02735df2 --- /dev/null +++ b/x11/deskpaint/files/patch-Makefile @@ -0,0 +1,16 @@ +--- Makefile.orig 2009-07-21 01:58:52.000000000 -0400 ++++ Makefile 2009-10-18 01:58:42.000000000 -0400 +@@ -1,9 +1,10 @@ +-prefix = /usr/local +-XROOT = /usr/X11R6 +-CC = cc ++prefix = ${PREFIX} ++XROOT = ${LOCALBASE} + + CFLAGS += -lXext -lX11 -I$(XROOT)/include -L$(XROOT)/lib + + all: + $(CC) $(CFLAGS) *.c -o deskpaint + ++install: ++ ${BSD_INSTALL_PROGRAM} -s deskpaint $(prefix)/bin diff --git a/x11/deskpaint/pkg-descr b/x11/deskpaint/pkg-descr new file mode 100644 index 000000000000..9be8b5bb16fb --- /dev/null +++ b/x11/deskpaint/pkg-descr @@ -0,0 +1,3 @@ +`deskpaint' is a small interactive paint program that paints +onto the desktop window, so that the user draws their +own desktop wallpaper. |