diff options
author | Doug Barton <dougb@FreeBSD.org> | 2007-12-19 06:22:00 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2007-12-19 06:22:00 +0000 |
commit | 252fb70c5b216a71179246244ad07244ab6770b2 (patch) | |
tree | dffb92cb8121a557d99faffc41ea183a90e83918 /x11-wm/obmenu | |
parent | f4afa8a5d83529ac35beb49a71072818f6d9465a (diff) |
Obmenu is a menu editor designed for Openbox. It's easy to use, allowing
you to get the most out of the powerful Openbox menu system, while hiding
the xml layout from the user.
It can install dynamic menus (pipe menus), such as Gnome menus or a
quick-navigator. You can also use the obxml module to easily write pipe
menus of your own in Python.
WWW: http://obmenu.sourceforge.net/
Notes
Notes:
svn path=/head/; revision=204073
Diffstat (limited to 'x11-wm/obmenu')
-rw-r--r-- | x11-wm/obmenu/Makefile | 32 | ||||
-rw-r--r-- | x11-wm/obmenu/distinfo | 3 | ||||
-rw-r--r-- | x11-wm/obmenu/pkg-descr | 9 |
3 files changed, 44 insertions, 0 deletions
diff --git a/x11-wm/obmenu/Makefile b/x11-wm/obmenu/Makefile new file mode 100644 index 000000000000..d34ad035339d --- /dev/null +++ b/x11-wm/obmenu/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: obmenu +# Date created: 2007-12-18 +# Whom: dougb +# +# $FreeBSD$ +# + +PORTNAME= obmenu +PORTVERSION= 1.0 +CATEGORIES= x11-wm +MASTER_SITES= SF + +MAINTAINER= dougb@FreeBSD.org +COMMENT= Menu manager for Openbox supporting both static and pipe menus + +USE_XLIB= yes +USE_GNOME= pygtk2 +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= obMenu + +PORTDOCS= README + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for file in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/x11-wm/obmenu/distinfo b/x11-wm/obmenu/distinfo new file mode 100644 index 000000000000..ff920f171d92 --- /dev/null +++ b/x11-wm/obmenu/distinfo @@ -0,0 +1,3 @@ +MD5 (obmenu-1.0.tar.gz) = 710036a5edc9886d6d563ce46c747432 +SHA256 (obmenu-1.0.tar.gz) = c9cea64d40d461a34ea3bdaec9867487c819d5f9814e1cc54db607d4d3c20e27 +SIZE (obmenu-1.0.tar.gz) = 26375 diff --git a/x11-wm/obmenu/pkg-descr b/x11-wm/obmenu/pkg-descr new file mode 100644 index 000000000000..f62bf0a40717 --- /dev/null +++ b/x11-wm/obmenu/pkg-descr @@ -0,0 +1,9 @@ +Obmenu is a menu editor designed for Openbox. It's easy to use, allowing +you to get the most out of the powerful Openbox menu system, while hiding +the xml layout from the user. + +It can install dynamic menus (pipe menus), such as Gnome menus or a +quick-navigator. You can also use the obxml module to easily write pipe +menus of your own in Python. + +WWW: http://obmenu.sourceforge.net/ |