--- extra-xdg-menus-1.0.orig/debian/changelog +++ extra-xdg-menus-1.0/debian/changelog @@ -0,0 +1,32 @@ +extra-xdg-menus (1.0-4.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Fri, 01 Jan 2021 15:08:47 +0100 + +extra-xdg-menus (1.0-4) unstable; urgency=low + + * Fixed bashisms in exmenen/exmendis commands (closes: #480596) + + -- Hamish Moffatt Sun, 20 Jul 2008 00:13:22 +1000 + +extra-xdg-menus (1.0-3) unstable; urgency=low + + * Fix installation failure if upgrading from hamradiomenus package (closes: + #466484) by changing conflicts/replaces + + -- Hamish Moffatt Sun, 30 Mar 2008 16:15:16 +1100 + +extra-xdg-menus (1.0-2) unstable; urgency=low + + * Conflict/replace hamradiomenus << 1.1. The newer version is a dummy + package which will transition to this package. + + -- Hamish Moffatt Sun, 10 Feb 2008 12:41:34 +1100 + +extra-xdg-menus (1.0-1) unstable; urgency=low + + * Initial release. + + -- Peter Clifton Sun, 13 Jan 2008 10:24:21 +0000 --- extra-xdg-menus-1.0.orig/debian/compat +++ extra-xdg-menus-1.0/debian/compat @@ -0,0 +1 @@ +5 --- extra-xdg-menus-1.0.orig/debian/control +++ extra-xdg-menus-1.0/debian/control @@ -0,0 +1,18 @@ +Source: extra-xdg-menus +Section: misc +Priority: optional +Maintainer: Peter Clifton +Uploaders: Peter Clifton , Hamish Moffatt +Build-Depends: debhelper (>= 5.0.51), icon-naming-utils, libxml-parser-perl, pkg-config +Standards-Version: 3.7.3 + +Package: extra-xdg-menus +Architecture: all +Conflicts: hamradiomenus (<< 1.2) +Replaces: hamradiomenus +Description: Extra menu categories for applications under GNOME and KDE + This package installs various optional extra desktop menus for grouping + applications on GNOME, KDE and other XDG menu-spec compliant desktop + environments. + The extra menus may be enabled or disbled on a system or per-user basis + with the supplied scripts, exmenen and exmendis. --- extra-xdg-menus-1.0.orig/debian/copyright +++ extra-xdg-menus-1.0/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Peter Clifton on +Sun, 13 Jan 2008 09:36:00 +0000. GPL version 2 or later applies for the +Debian work. + +This package is a combination of works: + +electronics-menu, Copyright (C) Peter Clifton, GPL version 2 or later. +hamradio-menus, Copyright (C) Joop Stakenborg, GPL version 2 or later. + +Scripts and manpages derived from the debian apache2 package's a2enmod and +a2dismod are included in the exmen-scripts directory. + +Portions of build infrastructure have been copied from gEDA, and is made +available under the GPL version 2 or later. + +-------------------------------------------------------------------------- +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +-------------------------------------------------------------------------- + +The GPL License which applies to this package can be found on your Debian +system at /usr/share/common-licenses/GPL. --- extra-xdg-menus-1.0.orig/debian/rules +++ extra-xdg-menus-1.0/debian/rules @@ -0,0 +1,55 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +config.status: configure + dh_testdir + ./configure --prefix=/usr + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(CURDIR)/debian/extra-xdg-menus + # Remove un-needed translation files (translations are merged into the .directory files) + rm -rf $(CURDIR)/debian/extra-xdg-menus/usr/share/locale/ + +binary-arch: build install +# We have nothing to do + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman + dh_compress + dh_fixperms + dh_icons + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep + +.PHONY: build clean binary-indep binary-arch binary install --- extra-xdg-menus-1.0.orig/exmen-scripts/exmendis.in +++ extra-xdg-menus-1.0/exmen-scripts/exmendis.in @@ -11,11 +11,13 @@ case $1 in --system) - echo "Configuring extra menus: system wide\n" + echo "Configuring extra menus: system wide" + echo MENUDIR=${SYSTEMMENUDIR} ;; --local) - echo "Configuring extra menus: local user\n" + echo "Configuring extra menus: local user" + echo MENUDIR=${HOMEMENUDIR} ;; *) --- extra-xdg-menus-1.0.orig/exmen-scripts/exmenen.in +++ extra-xdg-menus-1.0/exmen-scripts/exmenen.in @@ -11,11 +11,13 @@ case $1 in --system) - echo "Configuring extra menus: system wide\n" + echo "Configuring extra menus: system wide" + echo MENUDIR=${SYSTEMMENUDIR} ;; --local) - echo "Configuring extra menus: local user\n" + echo "Configuring extra menus: local user" + echo MENUDIR=${HOMEMENUDIR} ;; *)