summaryrefslogtreecommitdiff
path: root/deskutils
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2005-04-03 07:32:47 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2005-04-03 07:32:47 +0000
commitba4856b168aecf313e3ba3024b42c3dda4e86287 (patch)
tree5d939e848b8fca73a37842c358ac3e5007e77c0e /deskutils
parentAdjust PORTVERSION as this is really F4.0.4.7, and not F4.0.4_7. (diff)
A simple menu editor for GNOME 2.10 that can edit and add new entries. It
implements the fd.o menu spec but may or may not work with other DEs. WWW: http://www.realistanew.com/2005/03/18/gnome-menu-editor/ -- py-xdg/menueditor don't understand KDE menu correct in gnome-menus, LegacyDirs and etc. I won't be surpised if py-xdg developers are working on it to get better.
Notes
Notes: svn path=/head/; revision=132328
Diffstat (limited to 'deskutils')
-rw-r--r--deskutils/Makefile1
-rw-r--r--deskutils/alacarte/Makefile41
-rw-r--r--deskutils/alacarte/distinfo2
-rw-r--r--deskutils/alacarte/pkg-descr4
-rw-r--r--deskutils/alacarte/pkg-plist8
-rw-r--r--deskutils/menueditor/Makefile41
-rw-r--r--deskutils/menueditor/distinfo2
-rw-r--r--deskutils/menueditor/pkg-descr4
-rw-r--r--deskutils/menueditor/pkg-plist8
-rw-r--r--deskutils/smeg/Makefile41
-rw-r--r--deskutils/smeg/distinfo2
-rw-r--r--deskutils/smeg/pkg-descr4
-rw-r--r--deskutils/smeg/pkg-plist8
13 files changed, 166 insertions, 0 deletions
diff --git a/deskutils/Makefile b/deskutils/Makefile
index eed717f264d1..fb08327832be 100644
--- a/deskutils/Makefile
+++ b/deskutils/Makefile
@@ -91,6 +91,7 @@
SUBDIR += mcatalog
SUBDIR += mdh
SUBDIR += mencal
+ SUBDIR += menueditor
SUBDIR += metabar
SUBDIR += mhc
SUBDIR += mhc-emacs20
diff --git a/deskutils/alacarte/Makefile b/deskutils/alacarte/Makefile
new file mode 100644
index 000000000000..16e058a46012
--- /dev/null
+++ b/deskutils/alacarte/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: menueditor
+# Date created: 22 March 2005
+# Whom: FreeBSD GNOME Team
+#
+# $FreeBSD$
+#
+
+PORTNAME= menueditor
+PORTVERSION= 0.4.3
+CATEGORIES= deskutils gnome
+MASTER_SITES= http://dev.realistanew.com/menu-editor/ \
+ http://dev.realistanew.com/menu-editor/old/
+DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A simple menu editor for GNOME 2.10
+
+RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg
+
+WRKSRC= ${WRKDIR}/${PORTNAME}
+USE_GMAKE= yes
+USE_GNOME= pygtk2
+USE_X_PREFIX= yes
+USE_REINPLACE= yes
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+
+post-patch:
+ @${REINPLACE_CMD} -e "s|\[(libdir,|\[('share/gnome/menu-editor',|g ; \
+ s|, 'lib/|, 'share/gnome/|g ; \
+ s|'share/pixmaps|'share/gnome/pixmaps|g ; \
+ s|'share/applications|'share/gnome/applications|g ; \
+ s|/usr/share|${X11BASE}/share/gnome|g ; \
+ s|/etc|${X11BASE}/etc|g" \
+ ${WRKSRC}/setup.py ${WRKSRC}/bin/menu-editor \
+ ${WRKSRC}/lib/menu-editor/menu_handler.py
+
+post-install:
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/gnome/menu-editor
+
+.include <bsd.port.mk>
diff --git a/deskutils/alacarte/distinfo b/deskutils/alacarte/distinfo
new file mode 100644
index 000000000000..70d900868633
--- /dev/null
+++ b/deskutils/alacarte/distinfo
@@ -0,0 +1,2 @@
+MD5 (menueditor_0.4.3.orig.tar.gz) = a25e6749a76e806f6eb19ece02b90281
+SIZE (menueditor_0.4.3.orig.tar.gz) = 12221
diff --git a/deskutils/alacarte/pkg-descr b/deskutils/alacarte/pkg-descr
new file mode 100644
index 000000000000..72cd553d8a92
--- /dev/null
+++ b/deskutils/alacarte/pkg-descr
@@ -0,0 +1,4 @@
+A simple menu editor for GNOME 2.10 that can edit and add new entries. It
+implements the fd.o menu spec but may or may not work with other DEs.
+
+WWW: http://www.realistanew.com/2005/03/18/gnome-menu-editor/
diff --git a/deskutils/alacarte/pkg-plist b/deskutils/alacarte/pkg-plist
new file mode 100644
index 000000000000..a27895907cbc
--- /dev/null
+++ b/deskutils/alacarte/pkg-plist
@@ -0,0 +1,8 @@
+bin/menu-editor
+share/doc/menu-editor/AUTHORS
+share/gnome/applications/menueditor.desktop
+share/gnome/menu-editor/menu_handler.py
+share/gnome/menu-editor/menu_handler.pyc
+share/gnome/pixmaps/menu-editor.png
+@dirrm share/gnome/menu-editor
+@dirrm share/doc/menu-editor
diff --git a/deskutils/menueditor/Makefile b/deskutils/menueditor/Makefile
new file mode 100644
index 000000000000..16e058a46012
--- /dev/null
+++ b/deskutils/menueditor/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: menueditor
+# Date created: 22 March 2005
+# Whom: FreeBSD GNOME Team
+#
+# $FreeBSD$
+#
+
+PORTNAME= menueditor
+PORTVERSION= 0.4.3
+CATEGORIES= deskutils gnome
+MASTER_SITES= http://dev.realistanew.com/menu-editor/ \
+ http://dev.realistanew.com/menu-editor/old/
+DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A simple menu editor for GNOME 2.10
+
+RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg
+
+WRKSRC= ${WRKDIR}/${PORTNAME}
+USE_GMAKE= yes
+USE_GNOME= pygtk2
+USE_X_PREFIX= yes
+USE_REINPLACE= yes
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+
+post-patch:
+ @${REINPLACE_CMD} -e "s|\[(libdir,|\[('share/gnome/menu-editor',|g ; \
+ s|, 'lib/|, 'share/gnome/|g ; \
+ s|'share/pixmaps|'share/gnome/pixmaps|g ; \
+ s|'share/applications|'share/gnome/applications|g ; \
+ s|/usr/share|${X11BASE}/share/gnome|g ; \
+ s|/etc|${X11BASE}/etc|g" \
+ ${WRKSRC}/setup.py ${WRKSRC}/bin/menu-editor \
+ ${WRKSRC}/lib/menu-editor/menu_handler.py
+
+post-install:
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/gnome/menu-editor
+
+.include <bsd.port.mk>
diff --git a/deskutils/menueditor/distinfo b/deskutils/menueditor/distinfo
new file mode 100644
index 000000000000..70d900868633
--- /dev/null
+++ b/deskutils/menueditor/distinfo
@@ -0,0 +1,2 @@
+MD5 (menueditor_0.4.3.orig.tar.gz) = a25e6749a76e806f6eb19ece02b90281
+SIZE (menueditor_0.4.3.orig.tar.gz) = 12221
diff --git a/deskutils/menueditor/pkg-descr b/deskutils/menueditor/pkg-descr
new file mode 100644
index 000000000000..72cd553d8a92
--- /dev/null
+++ b/deskutils/menueditor/pkg-descr
@@ -0,0 +1,4 @@
+A simple menu editor for GNOME 2.10 that can edit and add new entries. It
+implements the fd.o menu spec but may or may not work with other DEs.
+
+WWW: http://www.realistanew.com/2005/03/18/gnome-menu-editor/
diff --git a/deskutils/menueditor/pkg-plist b/deskutils/menueditor/pkg-plist
new file mode 100644
index 000000000000..a27895907cbc
--- /dev/null
+++ b/deskutils/menueditor/pkg-plist
@@ -0,0 +1,8 @@
+bin/menu-editor
+share/doc/menu-editor/AUTHORS
+share/gnome/applications/menueditor.desktop
+share/gnome/menu-editor/menu_handler.py
+share/gnome/menu-editor/menu_handler.pyc
+share/gnome/pixmaps/menu-editor.png
+@dirrm share/gnome/menu-editor
+@dirrm share/doc/menu-editor
diff --git a/deskutils/smeg/Makefile b/deskutils/smeg/Makefile
new file mode 100644
index 000000000000..16e058a46012
--- /dev/null
+++ b/deskutils/smeg/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: menueditor
+# Date created: 22 March 2005
+# Whom: FreeBSD GNOME Team
+#
+# $FreeBSD$
+#
+
+PORTNAME= menueditor
+PORTVERSION= 0.4.3
+CATEGORIES= deskutils gnome
+MASTER_SITES= http://dev.realistanew.com/menu-editor/ \
+ http://dev.realistanew.com/menu-editor/old/
+DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A simple menu editor for GNOME 2.10
+
+RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg
+
+WRKSRC= ${WRKDIR}/${PORTNAME}
+USE_GMAKE= yes
+USE_GNOME= pygtk2
+USE_X_PREFIX= yes
+USE_REINPLACE= yes
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+
+post-patch:
+ @${REINPLACE_CMD} -e "s|\[(libdir,|\[('share/gnome/menu-editor',|g ; \
+ s|, 'lib/|, 'share/gnome/|g ; \
+ s|'share/pixmaps|'share/gnome/pixmaps|g ; \
+ s|'share/applications|'share/gnome/applications|g ; \
+ s|/usr/share|${X11BASE}/share/gnome|g ; \
+ s|/etc|${X11BASE}/etc|g" \
+ ${WRKSRC}/setup.py ${WRKSRC}/bin/menu-editor \
+ ${WRKSRC}/lib/menu-editor/menu_handler.py
+
+post-install:
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/gnome/menu-editor
+
+.include <bsd.port.mk>
diff --git a/deskutils/smeg/distinfo b/deskutils/smeg/distinfo
new file mode 100644
index 000000000000..70d900868633
--- /dev/null
+++ b/deskutils/smeg/distinfo
@@ -0,0 +1,2 @@
+MD5 (menueditor_0.4.3.orig.tar.gz) = a25e6749a76e806f6eb19ece02b90281
+SIZE (menueditor_0.4.3.orig.tar.gz) = 12221
diff --git a/deskutils/smeg/pkg-descr b/deskutils/smeg/pkg-descr
new file mode 100644
index 000000000000..72cd553d8a92
--- /dev/null
+++ b/deskutils/smeg/pkg-descr
@@ -0,0 +1,4 @@
+A simple menu editor for GNOME 2.10 that can edit and add new entries. It
+implements the fd.o menu spec but may or may not work with other DEs.
+
+WWW: http://www.realistanew.com/2005/03/18/gnome-menu-editor/
diff --git a/deskutils/smeg/pkg-plist b/deskutils/smeg/pkg-plist
new file mode 100644
index 000000000000..a27895907cbc
--- /dev/null
+++ b/deskutils/smeg/pkg-plist
@@ -0,0 +1,8 @@
+bin/menu-editor
+share/doc/menu-editor/AUTHORS
+share/gnome/applications/menueditor.desktop
+share/gnome/menu-editor/menu_handler.py
+share/gnome/menu-editor/menu_handler.pyc
+share/gnome/pixmaps/menu-editor.png
+@dirrm share/gnome/menu-editor
+@dirrm share/doc/menu-editor