1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

`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>
This commit is contained in:
Martin Wilke 2009-10-20 09:48:33 +00:00
parent 7102b65ed5
commit b276dde808
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243095
5 changed files with 45 additions and 0 deletions

View File

@ -34,6 +34,7 @@
SUBDIR += damageproto
SUBDIR += decurs
SUBDIR += deskmenu
SUBDIR += deskpaint
SUBDIR += dgs
SUBDIR += dmenu
SUBDIR += dmxproto

22
x11/deskpaint/Makefile Normal file
View File

@ -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>

3
x11/deskpaint/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (deskpaint3.tar.gz) = 28e4b15895069e5ea18c7e4b7a6e4796
SHA256 (deskpaint3.tar.gz) = 9b05b90fb484bd81cd28602f611a1a51cd3cc4c1c8ae6efed9cc417b2373cff4
SIZE (deskpaint3.tar.gz) = 5965

View File

@ -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

3
x11/deskpaint/pkg-descr Normal file
View File

@ -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.