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/deskpaint/files | |
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/deskpaint/files')
-rw-r--r-- | x11/deskpaint/files/patch-Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
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 |