diff options
author | miwi <miwi@FreeBSD.org> | 2007-03-13 17:02:42 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-03-13 17:02:42 +0800 |
commit | 44d9f7700106a11f9ec889be1da13486f3bbf5b2 (patch) | |
tree | ce6857053a744a1645c949a7330bb05ce21ebe5b | |
parent | 9658a239fc4f14e43f0b034ec8b9a7c6f6b4a84b (diff) | |
download | freebsd-ports-gnome-44d9f7700106a11f9ec889be1da13486f3bbf5b2.tar.gz freebsd-ports-gnome-44d9f7700106a11f9ec889be1da13486f3bbf5b2.tar.zst freebsd-ports-gnome-44d9f7700106a11f9ec889be1da13486f3bbf5b2.zip |
Makes it easy to set the background in rox instead of having to
having to muck around with the XML API it uses.
-f fill the screen with the image
-s scale the image with out stretching it
-c center image and do not scale
-t tile the image
default: -s
PR: ports/110152
Submitted by: Zane C. Bowers
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/roxbg/Makefile | 40 | ||||
-rw-r--r-- | x11/roxbg/distinfo | 3 | ||||
-rw-r--r-- | x11/roxbg/pkg-descr | 9 |
4 files changed, 53 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index 828e6782ce6b..5a319b3b8f37 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -201,6 +201,7 @@ SUBDIR += renderext SUBDIR += resourceext SUBDIR += rox-wallpaper + SUBDIR += roxbg SUBDIR += rsibreak SUBDIR += ruby-X11 SUBDIR += ruby-gnome2 diff --git a/x11/roxbg/Makefile b/x11/roxbg/Makefile new file mode 100644 index 000000000000..ba6427dbdd72 --- /dev/null +++ b/x11/roxbg/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: comiccron +# Date created: 9 March 2007 +# Whom: Zane C. Bowers +# +# $FreeBSD$ +# + +PORTNAME= roxbg +PORTVERSION= 1.0.0 +CATEGORIES= x11 deskutils +MASTER_SITES= http://vvelox.net/programs/unix/x11/ +DISTNAME= ${PORTNAME}-${PORTVERSION} +EXTRACT_SUFX= +EXTRACT_ONLY= + +MAINTAINER= vvelox@vvelox.net +COMMENT= A tool for setting the background in rox using a simple command. + +RUN_DEPENDS= ${LOCALBASE}/bin/rox:${PORTSDIR}/x11-fm/rox-filer + +NO_WRKSUBDIR= yes + +PLIST_FILES= bin/roxbg + +post-extract: + @${CP} -v ${DISTDIR}/${DISTNAME} ${WRKSRC} + +#nothing to configure +do-configure: + @${ECHO} -n + +#nothing to make +do-build: + @${ECHO} -n + +do-install: + @${CP} -v ${DISTDIR}/${DISTNAME} ${PREFIX}/bin/roxbg + @${CHMOD} +x ${PREFIX}/bin/roxbg + +.include <bsd.port.mk> diff --git a/x11/roxbg/distinfo b/x11/roxbg/distinfo new file mode 100644 index 000000000000..06b3a7a913cc --- /dev/null +++ b/x11/roxbg/distinfo @@ -0,0 +1,3 @@ +MD5 (roxbg-1.0.0) = 35e3015e62b6e85486980360481e87e9 +SHA256 (roxbg-1.0.0) = 876da951b20dfa32bf1a05aff3898f5844d2631dd0ffd69b35f7d7be98ea7faa +SIZE (roxbg-1.0.0) = 2768 diff --git a/x11/roxbg/pkg-descr b/x11/roxbg/pkg-descr new file mode 100644 index 000000000000..e429d4e176ca --- /dev/null +++ b/x11/roxbg/pkg-descr @@ -0,0 +1,9 @@ +Makes it easy to set the background in rox instead of having to +having to muck around with the XML API it uses. + +-f fill the screen with the image +-s scale the image with out stretching it +-c center image and do not scale +-t tile the image + +default: -s |