debian/0000755000000000000000000000000011771720612007172 5ustar debian/patches/0000755000000000000000000000000011765121070010615 5ustar debian/patches/209_use-etc-default.diff0000644000000000000000000000065011760551167015042 0ustar Allow for custom configuration in /etc/default/notion --- a/etc/cfg_notion.lua +++ b/etc/cfg_notion.lua @@ -16,6 +16,8 @@ -- Set default modifiers. Alt should usually be mapped to Mod1 on -- XFree86-based systems. The flying window keys are probably Mod3 -- or Mod4; see the output of 'xmodmap'. +-- These may be defined in /etc/default/notion, loaded as cfg_debian. +dopath("cfg_debian") --META="Mod1+" --ALTMETA="" debian/patches/215_escape-hyphens-in-man.diff0000644000000000000000000000234211760551167016141 0ustar Properly escape hyphens in man pages. This should be eventually included upstream. --- a/man/notion.cs.in +++ b/man/notion.cs.in @@ -22,7 +22,7 @@ .B \-oneroot Na X serverech s více obrazovkami (ne-Xinerama) bude spravovat pouze výchozí obrazovku (koøenové okno). (Tedy ne v¹echny, které byly zadány v parametru --display nebo v promìnné DISPLAY.) +\-display nebo v promìnné DISPLAY.) .TP .B \-session název_sezení Nastaví název sezení. Tato volba ovlivní, kam se ulo¾í pracovní plochy --- a/man/notion.fi.in +++ b/man/notion.fi.in @@ -22,7 +22,7 @@ .TP .B \-oneroot Hallitse vain oletusnäyttöä X-palvelimilla, joissa on useampi perinteinen -(ei Xinerama) näyttö/juuri-ikkuna. Tämä näyttö voidaan valita -display +(ei Xinerama) näyttö/juuri-ikkuna. Tämä näyttö voidaan valita \-display parametrillä tai DISPLAY ympäristömuuttujalla. .TP .B \-session session_name --- a/man/notion.in +++ b/man/notion.in @@ -21,7 +21,7 @@ .TP .B \-oneroot On X servers with multiple (traditional non-Xinerama) screens, manage only -default screen (root window), not all, as given by the -display option or +default screen (root window), not all, as given by the \-display option or in the DISPLAY environment variable. .TP .B \-session session_name debian/patches/206_use-x-terminal-emulator.diff0000644000000000000000000000217611760551167016555 0ustar Use x-terminal-emulator as the default terminal emulator --- a/etc/cfg_notioncore.lua +++ b/etc/cfg_notioncore.lua @@ -143,7 +143,7 @@ kpress(META.."F1", "ioncore.exec_on(_, ':man notion')"), bdoc("Run a terminal emulator."), - kpress(ALTMETA.."F2", "ioncore.exec_on(_, XTERM or 'xterm')"), + kpress(ALTMETA.."F2", "notioncore.exec_on(_, XTERM or 'x-terminal-emulator')"), bdoc("Query for command line to execute."), kpress(ALTMETA.."F3", "mod_query.query_exec(_)"), @@ -329,7 +329,7 @@ -- Main menu defmenu("mainmenu", { menuentry("Run...", "mod_query.query_exec(_)"), - menuentry("Terminal", "ioncore.exec_on(_, XTERM or 'xterm')"), + menuentry("Terminal", "notioncore.exec_on(_, XTERM or 'x-terminal-emulator')"), menuentry("Lock screen", "notioncore.exec_on(_, notioncore.lookup_script('notion-lock'))"), menuentry("Help", "mod_query.query_man(_)"), --- a/utils/ion-runinxterm +++ b/utils/ion-runinxterm @@ -1,6 +1,6 @@ #!/bin/sh -test "$XTERMCMD" || XTERMCMD="xterm" +test "$XTERMCMD" || XTERMCMD="x-terminal-emulator" title="" wait="" debian/patches/212_suggest-notion-doc.diff0000644000000000000000000000232111760551167015572 0ustar Refer users to a notion-doc package rather than the home page --- a/man/notion.in +++ b/man/notion.in @@ -151,8 +151,8 @@ .SH SEE ALSO The Notion home page, \fIhttp://notion.sf.net/\fP .PP -The document "Configuring and extending Notion with Lua" found on the -Notion home page. +The document "Configuring and extending Notion with Lua" found in the +notion-doc package. .PP .I DOCDIR/ .PP --- a/man/welcome.head +++ b/man/welcome.head @@ -14,11 +14,10 @@ accessed with . When you feel ready to write customized configuration files (you're going -to do that in any case), please see the configuration manual available from -the Notion webpage listed at the end of the user manual below. It may, however, -be beneficial to become well acquainted with Notion before delving into this -so that you have grasped the basic concepts necessary to understand the -binding configuration files. +to do that in any case), please see the configuration manual available in +the notion-doc package. It may, however, be beneficial to become well +acquainted with Notion before delving into this so that you have grasped the +basic concepts necessary to understand the binding configuration files. ---- Manual page follows ---- debian/patches/series0000644000000000000000000000046511760551167012050 0ustar 201_build-config.diff 205_notion-lock.diff 206_use-x-terminal-emulator.diff 209_use-etc-default.diff 210_use-cfg_debian_ext.diff 211_add-debian-menu.diff 212_suggest-notion-doc.diff 213_unkludge-docker.diff 214_drop_pwm.diff 215_escape-hyphens-in-man.diff 216_hardening-flags.diff 217_system_has_sprintf.diff debian/patches/216_hardening-flags.diff0000644000000000000000000000147711765121070015101 0ustar Use dpkg-buildflags, which introduces hardening/fortify flags. Note that lintian still complains some .so's are not fortified, but it looks like this is a false positive. This should eventually make its way in the default build procedure. --- a/system.mk +++ b/system.mk @@ -176,8 +176,8 @@ -Wtrigraphs -Wformat -Wchar-subscripts \ -Wparentheses -pedantic -Wuninitialized -CFLAGS=-Os $(WARN) $(DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) -LDFLAGS=-Wl,--as-needed $(LIBS) $(EXTRA_LIBS) +CFLAGS=-Os $(WARN) $(DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) +LDFLAGS=-Wl,--as-needed $(LIBS) $(EXTRA_LIBS) $(shell dpkg-buildflags --get LDFLAGS) EXPORT_DYNAMIC=-Xlinker --export-dynamic # The following options are mainly for development use and can be used debian/patches/213_unkludge-docker.diff0000644000000000000000000000065611760551167015137 0ustar Put 'Docker' in the 'systray' status bar. This should be eventually included upstream. --- a/etc/cfg_kludges.lua +++ b/etc/cfg_kludges.lua @@ -26,6 +26,13 @@ min_size = { w = 64, h = 64}, } +-- Make an exception for Docker, which sets correct size hints. +defwinprop{ + is_dockapp = true, + class = "Docker", + statusbar = "systray", +} + -- You might want to enable these if you really must use XMMS. --[[ debian/patches/214_drop_pwm.diff0000644000000000000000000000351511760551167013701 0ustar Drop from the build procedure. This should eventually propagate to upstream. --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ INSTALL_SUBDIRS=\ $(MODULE_LIST) \ - ioncore notion pwm etc utils man po + ioncore notion etc utils man po SUBDIRS = $(LIBS_SUBDIRS) $(INSTALL_SUBDIRS) --- a/man/Makefile +++ b/man/Makefile @@ -15,7 +15,6 @@ $(foreach tr, $(TRANSLATIONS), welcome.$(tr).txt) TARGETS=notion.1 $(foreach tr, $(TRANSLATIONS), notion.$(tr).1) \ - pwm3.1 $(foreach tr, $(TRANSLATIONS), pwm3.$(tr).1) \ $(WELCOME_TARGETS) MKMAN=$(LUA) ../build/mkman.lua $(MKMAN_DEFS) @@ -34,12 +33,6 @@ ../etc/cfg_query.lua \ ../etc/cfg_menu.lua -# TODO: PWM configuration file is undocumented -PWM_CONFIGS=\ - ../etc/cfg_notioncore.lua \ - ../etc/cfg_menu.lua \ - ../pwm/cfg_pwm.lua - ###################################### include $(TOPDIR)/build/rules.mk @@ -49,15 +42,9 @@ notion.1: notion.in $(CONFIGS) $(MKMAN) -i $< -o $@ $(CONFIGS) -pwm3.1: pwm3.in $(PWM_CONFIGS) - $(MKMAN) -i $< -o $@ $(PWM_CONFIGS) - notion.%.1: notion.%.in $(CONFIGS) ../po/%.po $(MKMAN) -po ../po/$*.po -i $< -o $@ $(CONFIGS) -pwm3.%.1: pwm3.%.in $(PWM_CONFIGS) ../po/%.po - $(MKMAN) -po ../po/$*.po -i $< -o $@ $(PWM_CONFIGS) - welcome%txt: welcome%head notion%1 (cat welcome$*head; \ $(NROFF) notion$*1 | $(FILTERCRAP)) > $@ @@ -65,11 +52,9 @@ _install: $(INSTALLDIR) $(DESTDIR)$(MANDIR)/man1 $(INSTALL) -m $(DATA_MODE) notion.1 $(DESTDIR)$(MANDIR)/man1 - $(INSTALL) -m $(DATA_MODE) pwm3.1 $(DESTDIR)$(MANDIR)/man1 for tr in $(TRANSLATIONS); do \ $(INSTALLDIR) $(DESTDIR)$(MANDIR)/$$tr/man1 ; \ $(INSTALL) -m $(DATA_MODE) notion.$$tr.1 $(DESTDIR)$(MANDIR)/$$tr/man1/notion.1 ; \ - $(INSTALL) -m $(DATA_MODE) pwm3.$$tr.1 $(DESTDIR)$(MANDIR)/$$tr/man1/pwm3.1 ; \ done $(INSTALLDIR) $(DESTDIR)$(SHAREDIR) for i in $(WELCOME_TARGETS); do \ debian/patches/217_system_has_sprintf.diff0000644000000000000000000000125211760551167015775 0ustar Pass on HAS_SYSTEM_ASPRINTF to C. Should eventually make it upstream (and become default) --- a/system.mk +++ b/system.mk @@ -176,7 +176,7 @@ -Wtrigraphs -Wformat -Wchar-subscripts \ -Wparentheses -pedantic -Wuninitialized -CFLAGS=-Os $(WARN) $(DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) +CFLAGS=-Os $(WARN) $(DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) -DHAS_SYSTEM_ASPRINTF=$(HAS_SYSTEM_ASPRINTF) LDFLAGS=-Wl,--as-needed $(LIBS) $(EXTRA_LIBS) $(shell dpkg-buildflags --get LDFLAGS) EXPORT_DYNAMIC=-Xlinker --export-dynamic debian/patches/211_add-debian-menu.diff0000644000000000000000000000140111760551167014751 0ustar Add a 'Debian' menu populated by the Debian menu system --- a/etc/cfg_notioncore.lua +++ b/etc/cfg_notioncore.lua @@ -335,6 +335,7 @@ menuentry("Help", "mod_query.query_man(_)"), menuentry("About Notion", "mod_query.show_about_ion(_)"), submenu("Styles", "stylemenu"), + submenu("Debian", "Debian"), submenu("Session", "sessionmenu"), }) @@ -380,3 +381,12 @@ defctxmenu("WClientWin", "Client window", { menuentry("Kill", "WClientWin.kill(_)"), }) + +-- Auto-generated Debian menu definitions +if os and os.execute("test -x /usr/bin/update-menus") == 0 then + if notioncore.is_i18n() then + dopath("debian-menu-i18n") + else + dopath("debian-menu") + end +end debian/patches/210_use-cfg_debian_ext.diff0000644000000000000000000000035611760551167015561 0ustar Allow for extra configuration files --- a/etc/cfg_defaults.lua +++ b/etc/cfg_defaults.lua @@ -11,3 +11,6 @@ dopath("mod_tiling") dopath("mod_statusbar") dopath("mod_sp") + +-- Debian extra configuration files +dopath("cfg_debian_ext") debian/patches/201_build-config.diff0000644000000000000000000000361111760551167014405 0ustar Build options suitable for installation from the official package on Debian --- a/system.mk +++ b/system.mk @@ -8,7 +8,7 @@ # Installation path prefix. Unless you know what you're doing, the default # of /usr/local is likely the correct choice. -PREFIX=/usr/local +PREFIX=/usr # Unless you are creating a package conforming to some OS's standards, you # probably do not want to modify the following directories: @@ -16,7 +16,7 @@ # Main binaries BINDIR=$(PREFIX)/bin # Configuration .lua files -ETCDIR=$(PREFIX)/etc/notion +ETCDIR=/etc/X11/notion # Some .lua files and ion-* shell scripts SHAREDIR=$(PREFIX)/share/notion # Manual pages @@ -28,11 +28,11 @@ # Nothing at the moment LIBDIR=$(PREFIX)/lib # Modules -MODULEDIR=$(LIBDIR)/notion/mod +MODULEDIR=$(LIBDIR)/notion # Compiled Lua source code LCDIR=$(LIBDIR)/notion/lc # ion-completefile (does not belong in SHAREDIR being a binary file) -EXTRABINDIR=$(LIBDIR)/notion/bin +EXTRABINDIR=$(LIBDIR)/notion # For notion-completeman system-wide cache VARDIR=/var/cache/notion # Message catalogs @@ -146,7 +146,7 @@ # You may uncomment this if you know that your system C libary provides # asprintf and vasprintf. (GNU libc does.) If HAS_SYSTEM_ASPRINTF is not # defined, an implementation provided in libtu/sprintf_2.2/ is used. -#HAS_SYSTEM_ASPRINTF=1 +HAS_SYSTEM_ASPRINTF=1 # The following setting is needed with GNU libc for clock_gettime and the # monotonic clock. Other systems may not need it, or may not provide a @@ -191,11 +191,11 @@ POSIX_SOURCE=-D_POSIX_C_SOURCE=200112L # Most systems -#XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED +XOPEN_SOURCE=-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED # SunOS, (Irix) #XOPEN_SOURCE=-D__EXTENSIONS__ -#C99_SOURCE=-std=c99 -DCF_HAS_VA_COPY +C99_SOURCE=-std=c99 -DCF_HAS_VA_COPY # The -DCF_HAS_VA_COPY option should allow for some optimisations, and # in some cases simply defining debian/patches/205_notion-lock.diff0000644000000000000000000000214511760551167014304 0ustar Use 'xscreensaver-command -lock' when available. This should eventually be included upstream. --- a/etc/cfg_notioncore.lua +++ b/etc/cfg_notioncore.lua @@ -330,7 +330,8 @@ defmenu("mainmenu", { menuentry("Run...", "mod_query.query_exec(_)"), menuentry("Terminal", "ioncore.exec_on(_, XTERM or 'xterm')"), - menuentry("Lock screen", "ioncore.exec_on(_, 'xlock')"), + menuentry("Lock screen", + "notioncore.exec_on(_, notioncore.lookup_script('notion-lock'))"), menuentry("Help", "mod_query.query_man(_)"), menuentry("About Notion", "mod_query.show_about_ion(_)"), submenu("Styles", "stylemenu"), --- a/utils/Makefile +++ b/utils/Makefile @@ -11,7 +11,7 @@ SUBDIRS=ion-completefile ion-statusd INSTALL_SUBDIRS=$(SUBDIRS) -SHELLSCRIPTS = ion-runinxterm ion-completeman +SHELLSCRIPTS = ion-runinxterm ion-completeman notion-lock TARGETS = ion-completeman --- /dev/null +++ b/utils/notion-lock @@ -0,0 +1,6 @@ +#!/bin/sh +if xscreensaver-command -version >/dev/null 2>&1; then + exec xscreensaver-command -lock +else + exec xlock +fi debian/notion.README.Debian0000644000000000000000000000440211760551167012545 0ustar Notion ====== Notion is now considered stable, but there have been substantial changes from earlier development snapshots. Instructions for using Notion can be found in the manual page ("man notion"). Additional documentation is included in the notion-doc package: "Configuring and extending Notion with Lua" and "Notion: Notes for the module and patch writer". Some scripts extending Notion are available in the notion-scripts package Docks and system trays ---------------------- Notion is compatible with the docking protocols used by WindowMaker and KDE. It can place docked applications windows either in a corner dock, or in a "system tray" in the status bar. For a corner dock, add: dopath("mod_dock") to cfg_notion.lua or cfg_modules.lua and edit cfg_dock.lua to your preferences. The dock window's visibility can be toggled using MOD1+D. For a system tray, edit cfg_statusbar.lua to include: mod_statusbar.create { ... systray=true, template="... %systray" } You can also configure specific windows to appear in the status bar: -- In cfg_notion.lua: defwinprop { class = "foo-window-class", statusbar = "foo" } -- In cfg_status_bar.lua: mod_statusbar.create { ... template="... %systray_foo" } GNOME unfortunately uses a different dock protocol. However, the docker program can adapt from this to the WindowMaker protocol. So you can include a GNOME system tray in your status bar by including docker in your X session and this in your Notion configuration: -- In cfg_notion.lua: defwinprop { class = "Docker", statusbar = "dock" } -- In cfg_statusbar.lua: mod_statusbar.create { ... template="... %systray_dock" } Adding configuration files to the defaults ------------------------------------------ Notion extension packages may add and remove configuration files to those included by cfg_defaults.lua. The configuration files must be installed under /etc/X11/notion. Run "install-notion-cfg cfg_foo" in the postinst script to add the configuration file /etc/X11/notion/cfg_foo.lua. Run "install-notion-cfg --remove cfg_foo" in the prerm script to remove it. -- Ben Hutchings Thu, 07 Feb 2008 20:35:27 +0000 debian/default/0000755000000000000000000000000011760551167010623 5ustar debian/default/notion0000644000000000000000000000003011760551167012045 0ustar META="Mod1+" ALTMETA="" debian/notion-dev.install0000644000000000000000000000027311760551167012653 0ustar build/system-inc.mk build/rules.mk usr/share/notion/build install-sh config.h system.mk usr/lib/notion build/libs.mk usr/lib/notion/build libextl/libextl-mkexports usr/lib/notion/libextl debian/notion.menu-method.i18n0000644000000000000000000000175611760551167013440 0ustar #!/usr/bin/install-menu # by Iwan Heskamp # http://tdm120.el.utwente.nl/~hkp/pwm/ # Modified for Ion by Per Olofsson compat="menu-1" !include menu.h compat="menu-2" outputencoding="LOCALE"; function q($arg) = esc($arg, "\\\""); function qc($arg) = esc($arg, "\\'"); function entry($action)=" menuentry(\"" q(title()) "\", \"" q($action) "\"),\n"; function entry_exec($command)=entry("ioncore.exec('" qc($command) "')"); supported; x11 = entry_exec($command); wm = entry("ioncore.restart_other('" qc($command) "')"); text = entry_exec(term()); endsupported; startmenu="defmenu(\"" $section "\", {\n"; endmenu="})\n\n"; genmenu="debian-menu-i18n.lua"; submenutitle=" submenu(\"" $title "\", \"" $section "\"),\n"; preoutput="\n"; mainmenutitle="Debian"; rootsection="Debian"; rootprefix="/var/lib/notion/"; userprefix="/.notion/"; preoutput= "-- Automatically generated file. Do not edit.\n-- (See /usr/share/doc/menu/menu.txt.gz)\n\n"; debian/compat0000644000000000000000000000000211760551167010375 0ustar 7 debian/notion.links0000644000000000000000000000027311760551167011551 0ustar var/lib/notion/debian-menu.lua usr/share/notion/debian-menu.lua var/lib/notion/debian-menu-i18n.lua usr/share/notion/debian-menu-i18n.lua etc/default/notion etc/X11/notion/cfg_debian.lua debian/watch0000644000000000000000000000013311760551167010225 0ustar version=3 opts="uversionmangle=s/-/+/" \ http://sf.net/notion/notion-(3-.+)-src\.tar\.gz debian/changelog0000644000000000000000000012710511765117150011052 0ustar notion (3+2012042300-1) unstable; urgency=low * Import new upstream version - Updated EWMH support: - _NET_WM_ALLOWED_ACTIONS - _NET_VIRTUAL_ROOTS - _NET_SUPPORTING_WM_CHECK - Mark windows as 'activated' instead of raising them - Suppress gnome3's resize handles, as they don't work with Notion - Firefox fullscreen - Flash fullscreen - Various internal refactorings and cleanups * Updated standards version to 3.9.3 (no change required) * Move general fields (homepage, section, priority) to source package * Use '3.0 (quilt)' source versions, removes the need to call quilt * Add descriptions for patches * Drop empty lintian/overrides directories * Fix unescaped hyphen in manpages * Remove outdated Flash fullscreen kludge * Add hardening options to build process * Use system printf functions instead of builtin 'portable' implementation * Bring debian/copyright further up-to-date -- Arnout Engelen Mon, 23 Apr 2012 19:18:20 +0200 notion (3+2011102900-1) unstable; urgency=low * Started packaging notion (based on existing Ion3 packaging, closes: #647048) -- Arnout Engelen Sun, 30 Oct 2011 19:30:28 +0100 ion3 (20080825-1) unstable; urgency=low * New upstream version - Fix loss of size policy in some cases - closes: #492906 -- Ben Hutchings Sat, 30 Aug 2008 20:12:15 +0100 ion3 (20080707-3) unstable; urgency=low * Replaced 101_ignore-missing-keys.diff and 102_ignore-bad-match.diff with patches from upstream repository (ion-3plus) * Replaced dependency on xbase-clients with x11-utils, which now contains xmessage * Updated standards version to 3.8.0 - Added debian/README.source documenting the use of quilt - Added a note to debian/copyright that this package is not part of the Debian system due to being non-free -- Ben Hutchings Thu, 24 Jul 2008 21:30:19 +0100 ion3 (20080707-2) unstable; urgency=low * Suppressed warnings for missing keys (101_ignore-missing-keys.diff) - closes: #488673 * Added Swedish debconf translation - closes: #483419 * Added workaround for Xorg bug in reporting deleted windows (102_ignore-bad-match.diff) - closes: #490601 -- Ben Hutchings Wed, 23 Jul 2008 23:37:42 +0100 ion3 (20080707-1) unstable; urgency=low * New upstream version -- Ben Hutchings Fri, 11 Jul 2008 01:13:55 +0100 ion3 (20080411-1) unstable; urgency=low * New upstream version -- Ben Hutchings Sat, 12 Apr 2008 14:07:04 +0100 ion3 (20080207-2) unstable; urgency=low * Replaced debconf dependency with ${misc:Depends} - closes: #441938 * Added Spanish and Finnish debconf translations - closes: #458574, #468830 -- Ben Hutchings Wed, 26 Mar 2008 01:26:40 +0000 ion3 (20080207-1) unstable; urgency=low * New upstream version - First stable release of Ion3 - closes: #415287 -- Ben Hutchings Thu, 07 Feb 2008 20:29:15 +0000 ion3 (20080103-1) unstable; urgency=low * New upstream version * Fixed upstream regression which lost dockapp class names (105_dockapp-class-from-hint-window.diff) * Disabled dockapp size kludge for Docker (213_unkludge-docker.diff) * Updated policy version to 3.7.3 (no other changes required) -- Ben Hutchings Sun, 06 Jan 2008 20:54:41 +0000 ion3 (20071109-1) unstable; urgency=low * New upstream release * Moved ion3-doc into separate source package -- Ben Hutchings Sat, 10 Nov 2007 04:27:00 +0000 ion3 (20070927-1) unstable; urgency=low * New upstream release * Reenabled dh_strip since debugging information is disabled by default * Changed menu section to conform to new menu policy -- Ben Hutchings Thu, 27 Sep 2007 23:58:23 +0100 ion3 (20070902-1) unstable; urgency=low * New upstream release * Added upstream patch to fix implementation of "ml" and "mr" positions for the dock * Combined two Recommends lines in debian/control so that the uscan dependencies are not ignored -- Ben Hutchings Mon, 3 Sep 2007 01:23:49 +0100 ion3 (20070720-2) unstable; urgency=low * Cleaned up patches * Clarified use of /etc/default/ion3 in cfg_ioncore.lua * Removed FAQ as it is now split into many pages which would require substantial disk space if installed * Updated README.Debian, including some information previously omitted from the binary package by mistake * Moved uscan dependencies to Recommends and made the upstream version check tolerate failure of uscan - closes: #434550 -- Ben Hutchings Tue, 7 Aug 2007 01:23:43 +0100 ion3 (20070720-1) unstable; urgency=low * New upstream release -- Ben Hutchings Sun, 5 Aug 2007 00:18:27 +0100 ion3 (20070708-1) unstable; urgency=low * New upstream release * Improved package descriptions and debconf templates as suggested by debian-l10n-english review and by Helge Kreutzmann - closes: #429444, #430695 * Added debconf translations - closes: #426456, #430694, #430698, #430717, #430756, #430927, #431457, #431462, #432198 * Expanded explanation of system tray configuration * Added modular configuration mechanism - closes: #413576, #418063 * Added xbase-clients to dependencies since we need xmessage -- Ben Hutchings Mon, 9 Jul 2007 02:38:04 +0100 ion3 (20070608-1) unstable; urgency=medium * New upstream release - closes: #428118, #430370, #430815 * Applied patch by Nedko Arnaudov to fix an upstream bug that would result in a crash when using single-byte character encodings -- Ben Hutchings Thu, 28 Jun 2007 01:00:01 +0100 ion3 (20070506-2) unstable; urgency=low * Applied upstream version check to upgrades as well as first installation * Restored links in ion3-dev - closes: #425287 -- Ben Hutchings Sun, 20 May 2007 19:45:37 +0100 ion3 (20070506-1) unstable; urgency=low * Per Olofsson retired as co-maintainer * New upstream release - closes: #422527 * Changed to meet conditions on the use of the 'Ion' name, claimed to be an unregistered trademark: - Added upstream version check on first installation and requirement that the user acknowledge that bugs in old versions should not be reported upstream - Moved to non-free section * Removed dependency of ion3-dev on ion3, since the latter cannot automatically be installed and only provided docs * Fixed duplicate 'Lock screen' menu entry in 202_fix-menus.diff * Removed 207_bindings-manpage.diff since it is broken and I do not consider it necessary * Created a separate doc-base control file for "Ion: Notes for the module and patch writer" (ionnotes) - closes: #423114 * Added build-dependency on libxext-dev in preparation for Xorg 7.2 -- Ben Hutchings Thu, 17 May 2007 01:02:35 +0100 ion3 (20070318-2) unstable; urgency=low * Applied upstream fix for configuration requests including dock sizing -- Ben Hutchings Sun, 25 Mar 2007 23:17:04 +0100 ion3 (20070318-1) unstable; urgency=low * New maintainer - closes: #414378 * New upstream release - closes: #413469 * Reverted upstream changes to full-screen behaviour which break dock sizing * Updated FAQ * Added docker and ion3-scripts to suggested packages -- Ben Hutchings Sun, 25 Mar 2007 20:51:55 +0100 ion3 (20070203-1) experimental; urgency=low * New upstream release. * Used libx11-dev instead libxinerama-dev in (build-)dependencies. * Updated FAQ. -- Norbert Tretkowski Sat, 3 Feb 2007 16:54:21 +0100 ion3 (20061223-2) unstable; urgency=medium * Added czech .desktop file translations from Miroslav Kure. (closes: #394620) -- Norbert Tretkowski Sat, 3 Feb 2007 17:35:46 +0100 ion3 (20061223-1) unstable; urgency=medium * New upstream release. * Removed backported patches (added in 20061029-3) which are part of this new release. -- Norbert Tretkowski Sat, 23 Dec 2006 16:29:25 +0100 ion3 (20061029-3) unstable; urgency=low * Added a new patch from darcs to fix invalid setitimer values. (closes: #376168, #394125) * Added another new patch from darcs to fix a crash in tiling_placement_alt handler. (closes: #396115) -- Norbert Tretkowski Tue, 31 Oct 2006 20:17:46 +0100 ion3 (20061029-2) unstable; urgency=low * Added groff-base to build-dependencies. (really closes: #395092) -- Norbert Tretkowski Sun, 29 Oct 2006 12:53:14 +0100 ion3 (20061029-1) unstable; urgency=medium * New upstream release. * Fixed welcome message. (closes: #395092) -- Norbert Tretkowski Sun, 29 Oct 2006 10:50:06 +0100 ion3 (20061020-1) unstable; urgency=medium * New upstream release. + Fixed workspace creation. (closes: #394198) * Updated patch for new release: + 207_bindings-manpage.diff * Removed obsolete entries from lintian overrides file. (closes: #394191) * Fixed copy & paste error in NEWS file. (closes: #394391) -- Norbert Tretkowski Mon, 23 Oct 2006 20:01:47 +0200 ion3 (20061015-1) unstable; urgency=low * New upstream release. * Updated patches for new release: + 204_fix-bindings.diff + 208_build-docs-with-hevea.diff * Fixed path to libs.mk, rules.mk and system-inc.mk. * Added some more lintian overrides. -- Norbert Tretkowski Tue, 17 Oct 2006 20:18:09 +0200 ion3 (20060524-3) unstable; urgency=low * Depend on x-terminal-emulator | xterm. (closes: #389393) -- Norbert Tretkowski Tue, 26 Sep 2006 23:32:40 +0200 ion3 (20060524-2) unstable; urgency=low * Workaround bashism in debian/rules. (closes: #379588) * Readded Debian-menu to default configuration. (closes: #376446) -- Norbert Tretkowski Mon, 31 Jul 2006 17:49:42 +0200 ion3 (20060524-1) unstable; urgency=low * New upstream release ion-3ds-20060524. * Removed backported patches (added in 20060519-2, 20060519-3 and 20060519-4) which are part of this new release. -- Norbert Tretkowski Thu, 25 May 2006 04:36:25 +0200 ion3 (20060519-4) experimental; urgency=low * Added yet another new patch which fixes more Lua 5.1 stuff. -- Norbert Tretkowski Sat, 20 May 2006 10:57:02 -0500 ion3 (20060519-3) experimental; urgency=low * Added another new patch which fixes more Lua 5.1 stuff. -- Norbert Tretkowski Fri, 19 May 2006 13:06:06 -0500 ion3 (20060519-2) experimental; urgency=low * Added a new patch from darcs to get ioncore_bindings.lua working properly with Lua 5.1. -- Norbert Tretkowski Fri, 19 May 2006 10:01:02 -0500 ion3 (20060519-1) experimental; urgency=low * New upstream release ion-3ds-20060519. + Switched to Lua 5.1. * Upload to experimental, because most scripts from ion3-scripts package no longer work with Lua 5.1. * Removed backported patch (added in 20060326-2) which is part of this new release. * Updated patches for new release: + 201_fix-paths.diff + 207_bindings-manpage.diff * Updated standards-version to 3.7.2.0, no changes required. * Added pkg-config to build-dependencies. -- Norbert Tretkowski Fri, 19 May 2006 00:18:46 -0500 ion3 (20060326-2) unstable; urgency=medium * Added a new patch from darcs to fix default_ws_type lookup. (closes: #358533) -- Norbert Tretkowski Fri, 31 Mar 2006 21:23:01 +0200 ion3 (20060326-1) unstable; urgency=medium * New upstream release ion-3ds-20060326. + Increments counter in statusbar list building. (closes: #350848) * Updated patch 202_fix-menus.diff. * Added notes about unstripped binaries and libraries. (closes: #344027) * Added notes about docker for gnome systray icons. (closes: #337512) -- Norbert Tretkowski Sun, 26 Mar 2006 12:10:23 +0200 ion3 (20060317-1) unstable; urgency=low * New upstream release ion-3ds-20060317. * Updated patches 202_fix-menus.diff, 204_fix-bindings.diff and 209_use-etc-default.diff. * Added notes about changes in the set of configuration files. -- Norbert Tretkowski Fri, 17 Mar 2006 21:57:14 +0100 ion3 (20060305-2) unstable; urgency=low * Fixed build-dependencies. (closes: #355837) -- Norbert Tretkowski Wed, 8 Mar 2006 09:39:05 +0100 ion3 (20060305-1) unstable; urgency=low * New upstream release ion-3ds-20060305. * Removed backported patches (added in 20060107-2 and 20060107-3) which are part of this new release. -- Norbert Tretkowski Mon, 6 Mar 2006 17:26:47 +0100 ion3 (20060107-4) unstable; urgency=low * Added lintian override for usr-doc-symlink-without-dependency in ion3-dev, it's handled via ion3-api-${Ion:ApiVersion}. * Used /usr/bin/install-menu instead /usr/sbin/install-menu. * Corrected FSF address in copyright file. -- Norbert Tretkowski Fri, 27 Jan 2006 14:24:41 +0100 ion3 (20060107-3) unstable; urgency=medium * Added a new patch from darcs which fixes unnecessary resize of the statusbar. -- Norbert Tretkowski Wed, 25 Jan 2006 18:02:33 +0100 ion3 (20060107-2) unstable; urgency=medium * Added a new patch from darcs which fixes a segmentation fault. -- Norbert Tretkowski Wed, 25 Jan 2006 14:18:35 +0100 ion3 (20060107-1) unstable; urgency=low * New upstream release ion-3ds-20060107. -- Norbert Tretkowski Sun, 8 Jan 2006 12:13:01 +0100 ion3 (20051210-1) unstable; urgency=low * New upstream release ion-3ds-20051210. * Removed backported patches (added in 20051029-3) which are part of this new release. * Moved the cfg_debian dopath in cfg_ion.lua above the default META and ALTMETA keys settings. -- Norbert Tretkowski Sat, 10 Dec 2005 22:30:42 +0100 ion3 (20051029-3) unstable; urgency=low * Added two new patches from darcs to no longer keep an already deleted logfile open. (closes: #340559) * Tweaked dependencies to make backporting easier. -- Norbert Tretkowski Sat, 26 Nov 2005 21:45:24 +0100 ion3 (20051029-2) unstable; urgency=low * Fixed dependency of ion3-dev on ion3 to make it bin-nmu save. (closes: #336377) * Removed libtool from ion3-dev dependencies. * Updated FAQ. -- Norbert Tretkowski Sat, 12 Nov 2005 18:12:35 +0100 ion3 (20051029-1) unstable; urgency=low * New upstream release ion-3ds-20051029. -- Norbert Tretkowski Sat, 29 Oct 2005 16:39:39 +0200 ion3 (20051023-1) unstable; urgency=low * New upstream release ion-3ds-20051023. * Removed backported patch (added in 20050820-5) which is part of this new release. -- Norbert Tretkowski Sun, 23 Oct 2005 18:48:51 +0200 ion3 (20050820-5) unstable; urgency=low * Recommend some font packages, because helvetica is used in some styles. (closes: #332211) * Added a new patch from darcs which removes the mail monitor from default statusbar template. (closes: #332181) -- Norbert Tretkowski Wed, 5 Oct 2005 09:08:05 +0200 ion3 (20050820-4) unstable; urgency=low * Removed the Evolution kludge because it doesn't work anymore. -- Per Olofsson Mon, 29 Aug 2005 18:50:35 +0200 ion3 (20050820-3) unstable; urgency=low * Correctly calculate Ion:ApiVersion substvar so that we can provide ion3-api-ION_API_VERSION. -- Per Olofsson Sun, 28 Aug 2005 00:38:00 +0200 ion3 (20050820-2) unstable; urgency=low * Fixed a bug when including /etc/default/ion3 in cfg_ion.lua, thanks to Jaakko Niemi for reporting. -- Norbert Tretkowski Sat, 27 Aug 2005 20:49:12 +0200 ion3 (20050820-1) unstable; urgency=low * New upstream release ion-3ds-20050820. * Removed backported patches (added in 20050728-1, -2 and -5) which are part of this new release. * Updated FAQ. -- Norbert Tretkowski Sat, 20 Aug 2005 14:36:09 +0200 ion3 (20050728-5) unstable; urgency=low * Added patch which makes Ion try to read configuration files without extensions as well. Needed to be able to read /etc/default/ion3. -- Per Olofsson Tue, 16 Aug 2005 17:05:02 +0200 ion3 (20050728-4) unstable; urgency=low * New configuration file /etc/default/ion3, for an easy configuration of the MOD1 and MOD2 keys. * Used dh_install to install ion3 lintian overrides file. -- Norbert Tretkowski Sun, 14 Aug 2005 09:44:35 +0200 ion3 (20050728-3) unstable; urgency=low * Mention ion3-scripts package in README.Debian. (closes: #319872) -- Norbert Tretkowski Sat, 6 Aug 2005 20:19:52 +0200 ion3 (20050728-2) unstable; urgency=low * Reverted size selection of docked non-dockapps modifications. -- Norbert Tretkowski Sun, 31 Jul 2005 23:05:46 +0200 ion3 (20050728-1) unstable; urgency=low * New upstream release ion-3ds-20050728. * Removed backported patches (added in 20050625-2, and -4) which are part of this release. * Added a new patch to disable WCOREDUMP(). -- Norbert Tretkowski Thu, 28 Jul 2005 20:17:46 +0200 ion3 (20050625-6) unstable; urgency=low * Used libxinerama-dev instead of libx11-dev in build-dependencies and ion3-dev dependencies. -- Norbert Tretkowski Sat, 16 Jul 2005 19:30:25 +0200 ion3 (20050625-5) unstable; urgency=low * Updated FAQ. * Revoked modifications from 20050625-3, sbuild can't handle the new build-dependencies. -- Norbert Tretkowski Mon, 4 Jul 2005 08:12:57 +0200 ion3 (20050625-4) unstable; urgency=low * Added a new patch from darcs which improves the statusd_mail error message. (closes: #303003) -- Norbert Tretkowski Sun, 3 Jul 2005 18:51:02 +0200 ion3 (20050625-3) unstable; urgency=low * Added Build-Depends libxinerama-dev, libxext-dev and libice-dev. This seems to be the only way to get an updated version of ion3 into Ubuntu. Nobody cares about the completely outdated ion3 package in Ubuntu, and people keep asking me when I'm going to update it. -- Norbert Tretkowski Sat, 2 Jul 2005 11:55:45 +0200 ion3 (20050625-2) unstable; urgency=low * Added a new patch from darcs which fixes the "goto when scratchpad is active" patch. -- Norbert Tretkowski Thu, 30 Jun 2005 09:25:11 +0200 ion3 (20050625-1) unstable; urgency=low * New upstream release ion-3ds-20050625. * Removed backported patches (added in 20050607-2, -3, -4 and -5) which are part of this release. -- Norbert Tretkowski Sun, 26 Jun 2005 17:49:35 +0200 ion3 (20050607-5) unstable; urgency=low * Added a new patch from darcs which adds a setlocale() call to statusd. (closes: #313086) * Updated Standards-Version to 3.6.2. -- Norbert Tretkowski Thu, 23 Jun 2005 09:06:39 +0200 ion3 (20050607-4) unstable; urgency=low * Even more patches from darcs for better completion. -- Norbert Tretkowski Wed, 22 Jun 2005 09:11:39 +0200 ion3 (20050607-3) unstable; urgency=low * Updated the german PO file, thanks to Jens Seidel. (closes: #314038) * Added some more patches from darcs for better completion. -- Norbert Tretkowski Wed, 15 Jun 2005 09:12:58 +0200 ion3 (20050607-2) unstable; urgency=low * Added a new patch from darcs for better tracking of multiple pending completions. -- Norbert Tretkowski Sat, 11 Jun 2005 00:39:46 +0200 ion3 (20050607-1) unstable; urgency=low * New upstream release ion-3ds-20050607. * Removed backported patches (added in 20050502-2) which are part of this release. -- Norbert Tretkowski Tue, 7 Jun 2005 18:06:24 +0200 ion3 (20050502-3) unstable; urgency=low * Added install-sh to ion3-dev. -- Norbert Tretkowski Sat, 28 May 2005 23:25:29 +0200 ion3 (20050502-2) unstable; urgency=medium * Added a new patch from darcs for faster fontset kludge when using utf-8 locales. * Added a new patch from darcs to fix initial height of dock. -- Norbert Tretkowski Tue, 10 May 2005 19:02:35 +0200 ion3 (20050502-1) unstable; urgency=low * New upstream release ion-3ds-20050502. + Fixed activity notification. (closes: #305271) -- Norbert Tretkowski Mon, 2 May 2005 20:06:52 +0200 ion3 (20050406-1) unstable; urgency=low * New upstream release ion-3ds-20050406. * Removed backported patches (added in 20050322-2, -4 and -6) which are part of this release. -- Norbert Tretkowski Wed, 6 Apr 2005 14:01:32 +0200 ion3 (20050322-6) unstable; urgency=medium * Added a new patch from darcs to fix a crash in name allocation code. -- Norbert Tretkowski Sun, 3 Apr 2005 18:16:35 +0200 ion3 (20050322-5) unstable; urgency=medium * Added some lintian overrides for unstripped binaries and libraries. -- Norbert Tretkowski Sat, 2 Apr 2005 01:48:25 +0200 ion3 (20050322-4) unstable; urgency=medium * Added a new patch from darcs to fix a typo in de/fontset.c. (closes: #302221) * Added a new patch from darcs which should fix the BadMatch segfaults. (closes: #302607) * Disabled dh_strip on upstreams request. -- Norbert Tretkowski Sat, 2 Apr 2005 01:06:35 +0200 ion3 (20050322-3) unstable; urgency=low * Added libs.mk and libextl-mkexports to ion3-dev. (closes: #301728) * Added a missing comma to an example in cfg_sp.lua. (closes: #302040) -- Norbert Tretkowski Wed, 30 Mar 2005 18:33:25 +0200 ion3 (20050322-2) unstable; urgency=low * Added a new patch from darcs which fixes the menu entry for tagging, it wasn't updated to the renamed toggle functions. -- Norbert Tretkowski Sat, 25 Mar 2005 13:09:25 +0100 ion3 (20050322-1) unstable; urgency=low * New upstream release ion-3ds-20050322. * Added note about changed or renamed exported toggle functions to NEWS file. * Updated patch which modifies documentation to build with hevea. * Updated patch which adds ion-lock script. -- Norbert Tretkowski Tue, 22 Mar 2005 17:24:35 +0100 ion3 (20050304-1-1) unstable; urgency=low * New upstream release ion-3ds-20050304-1. + Tab completion now handles spaces correct. (closes: #296060) * Removed backported patches (added in 20050227-1) which are part of this release. * Updated patch which modifies documentation to build with hevea. -- Norbert Tretkowski Fri, 4 Mar 2005 11:16:51 +0100 ion3 (20050227-1) unstable; urgency=low * New upstream release ion-3ds-20050227. * Removed reference to README.dock in README.Debian, it was removed in 20050116-2 (closes: #297860). * Added a new patch from darcs which fixes a bug that triggers an assertion failure. * Fixed path in ion3-doc.doc-base.config, it still used ion2-doc as directory. * Added changelog to ion3-doc package. -- Norbert Tretkowski Thu, 3 Mar 2005 23:06:25 +0100 ion3 (20050116-4) unstable; urgency=low * Build documentation using Hevea. -- Per Olofsson Wed, 23 Feb 2005 15:15:48 +0100 ion3 (20050116-3) unstable; urgency=medium * Fixed dangling symlink /etc/X11/ion3/draw.lua (closes: #295365). * Added german translations (welcome message and manpages) from svn. -- Norbert Tretkowski Fri, 18 Feb 2005 20:45:35 +0100 ion3 (20050116-2) unstable; urgency=low * Package has stabilized and is ready for sarge (closes: #261121). * Added a new patch 207_bindings-manpage.diff which moves WFrame bindings above WScreen bindings in ion3 and pwm3 manpages (closes: #292561). * Removed README.dock, it was written for ion2 and does no longer apply for ion3 (closes: #260451). * Switched maintainer and uploader values on Per's request, and used his debian.org address. * Removed extra license file /usr/share/doc/ion3/LICENSE.gz. * Renamed upstream changelog to /usr/share/doc/ion3/changelog.gz. * Lowered first capital in short package descriptions. -- Norbert Tretkowski Sun, 13 Feb 2005 16:32:25 +0100 ion3 (20050116-1) unstable; urgency=low * New upstream release ion-3ds-20050116. -- Norbert Tretkowski Sun, 16 Jan 2005 20:45:36 +0100 ion3 (20050102-1) unstable; urgency=low * New upstream release ion-3ds-20050102. * Fixed wrong target name for docks in README.Debian (closes: #276939). * Moved .desktop files to /usr/share/xsessions (closes: #275189). -- Norbert Tretkowski Sun, 2 Jan 2005 15:19:23 +0100 ion3 (20041104-1) unstable; urgency=low * New upstream release ion-3ds-20041104. + Fixed segfault in ioncore/names.c (closes: #260106). * New co-maintainer, added myself to uploaders. * Corrected build-dependencies to reflect the new xfree86 library arrangement. * Split out some patches and converted to dpatch. * Package ion3-dev is now arch:all. * Removed outdated documentation. * Removed libtool and libltdl3-dev from build-dependencies. * Added NEWS.Debian file. * Thanks to Jurij Smakov for testing and feedback. -- Norbert Tretkowski Mon, 13 Dec 2004 20:15:26 +0100 ion3 (20040703-1) unstable; urgency=low * New upstream release. * Suggest menu (>= 2.1.9) because older versions don't support outputencoding. * Added ion-lock, a script which uses xscreensaver if it's available, otherwise xlock. * Automatically find headers to install so I don't have to keep track of them manually. -- Per Olofsson Fri, 16 Jul 2004 23:00:02 +0200 ion3 (20040316-1-2) unstable; urgency=low * Use ISO-8859-1 as output encoding in the menu-method. * Added generation of a special i18n menu using the current locale. * Moved the generated menu files to /var/lib/ion3. * Quote properly in menu-method. * debian/update-faq now removes the old version. * Don't compress Lua example files so that examples/index.html doesn't get broken links. * Removed the unnecessary creation of the include/ion symlink in the source from debian/rules. * Removed examples, because they're for Ion2. * Renamed debian-menus.lua to debian-menu.lua. -- Per Olofsson Thu, 10 Jun 2004 19:12:07 +0200 ion3 (20040316-1-1) unstable; urgency=low * New branch. * Removed the 0.0. from the version number. The dates are not likely to go away. * Changed all (most) occurences of ion2 to ion3, and pwm2 to pwm3. * Lowered priority to extra. * Remove *.out when cleaning in ion-doc/Makefile. * Commented out the dummy os.execute in share/ioncorelib-luaext.lua. * Lowered priority of alternatives by one point each. * Added notes about the examples and the documentation being out of date. -- Per Olofsson Mon, 26 Apr 2004 17:39:37 +0200 ion2 (0.0.20040407-1) UNRELEASED; urgency=low * New upstream release. - Shouldn't get a box cursor when switching from fullscreen mode too fast. Closes: #242153. - Shouldn't take long time to start xterm now. Closes: #245518. * Lowered ion2-doc's priority to extra. * Created and added ion2.desktop and pwm2.desktop to /etc/dm/Sessions so that Ion can be selected from gdm and similar. Closes: #245457. * Updated the copyright file. * Added kludge for wmdate to dock.lua. * Create the include/ion symlink when building if it doesn't exist, since Subversion doesn't allow symlinks. -- Per Olofsson Sat, 24 Apr 2004 00:50:57 +0200 ion2 (0.0.20040207-3) unstable; urgency=low * Versioned the Lua dependencies to >> 5.0.2. * Still remove precompiled Lua files because they don't belong in share, but this will be changed in next upstream release where they're placed in /usr/lib. * Removed bashism from ion2's prerm. * Added example scripts from the website. * Added FAQ from the website and wrote the update-faq script to automate the downloading of the FAQ. * Added debian/packaging-notes.txt with some notes about the packaging. * Removed references to ion-devel from README.dock. * Fixed pwm2's loading of debian-menus.lua. Closes: #239396. * Quoted the needs value in the menu file because lintian complained about it. -- Per Olofsson Fri, 2 Apr 2004 22:44:22 +0200 ion2 (0.0.20040207-2) unstable; urgency=low * Check if the menu package is installed before including /usr/share/ion2/debian-menus.lua, to avoid errors if this is not the case. Closes: #234343. * Raised x-window-manager alternative priority to 50 per policy 11.8.4. * Also add pwm2 as an alternative to x-window-manager. But set priority to 49 because it's less important than ion2. * Removed leading "A" from ion2 synopsis. * Updated description. * Added website URL to description. * Updated doc-base description as well. * Generate PDF version of the documentation instead of PostScript. This is what the developer's reference tells me to do and, well, why not. You get nice hyperlinks. -- Per Olofsson Tue, 2 Mar 2004 00:19:34 +0100 ion2 (0.0.20040207-1) unstable; urgency=low * New upstream release. * Removed the prebuilt documentation included in the new ion-doc version. * Removed the ionnotes manual because upstream doesn't think it's mature enough. * Use the target realclean when cleaning the documentation source directory. * Rewrote ion2-doc description. * Small change in ion2 description. * Modified debian/ion2.menu-method to use complete section names as identifiers for submenus instead of just titles. This makes it possible to have more than one submenu with the same title. * Don't use absolute path when including debian-menus.lua from ion-menus.lua. * Place debian-menus.lua in /usr/share/ion2 instead of /etc/X11/ion2. This makes sure the user doesn't accidentally copy it to ~/.ion2/. * Don't refer to /usr/share/doc/menu/README in the generated menu file because it doesn't exist. * Remove /usr/share/ion2/debian-menus.lua in debian/ion2.prerm when removing the package. -- Per Olofsson Sun, 8 Feb 2004 01:09:57 +0100 ion2 (0.0.20040131-1) unstable; urgency=low * New upstream release. * Changed reference in man/ion.1.in from X(1x) to X(7x) because the former does not seem to exist in Debian. * Hevea fix in ion-doc/ionconf.tex again (forgot to change %begin to \begin etc.). * Don't give option dvipdfm to hyperref in ion-doc/macros.tex because we don't make pdf's in this package and it produces a lot of ugly warnings when converting to Postscript. -- Per Olofsson Sun, 1 Feb 2004 15:50:57 +0100 ion2 (0.0.20040127-1) unstable; urgency=low * New upstream release. * Depend on libtool/libltdl 1.4.1, not 1.4. -- Per Olofsson Wed, 28 Jan 2004 18:52:34 +0100 ion2 (0.0.20040121-1) unstable; urgency=low * New upstream release. * Changed package name to ion2 and updated all references. * Added reference to ion2-doc package to man/ion.1.in. * Changed priority to optional. * Added that extra .0 to Standards-Version :) * Updated descriptions. * Only depend on libtool (>> 1.4) and gcc (>> 3). * Removed ion2-dev.preinst because there's no need to remove a doc directory from ion-devel-dev anymore. * Updated share/welcome_message.head. * Added dependency on libtool and gcc (>> 3) to ion2-dev. * Added conflict with ion versions which do not use alternatives for the ion executable. * Added copyright notice from dock/dock.c to debian/copyright and made some small indentation changes. * Uncommented POSIX_SOURCE and XOPEN_SOURCE in system.mk and removed -ansi flag from them (we use C99). * Install dock/README.dock. * Added Ion menu-method and added code to include it in ion-menus.lua. * Wrote a README.Debian for the ion2 package. * Hevea fix in ion-doc/ionconf.tex. * Added PWM2 to Debian menu. * Restart to PWM2 instead of PWM in etc/ion-menus.lua. * Updated PWM menus similar to the Ion menus (including adding Debian menu). -- Per Olofsson Sun, 25 Jan 2004 01:17:04 +0100 ion-devel (0.0.20031211-3) unstable; urgency=low * Removed DEFAULT_MOD+Menu keybinding since the Menu keysym is not available in all XFree86 keyboard models, and it generates an error message on startup if it is not. This has already been done in the Ion SVN repository. (closes: #226034) -- Per Olofsson Sun, 4 Jan 2004 17:07:26 +0100 ion-devel (0.0.20031211-2) unstable; urgency=low * Moved all Build-Depends-Indep to Build-Depends because the policy is flawed and buildd's can't handle it. (closes: #225731) -- Per Olofsson Thu, 1 Jan 2004 13:37:55 +0100 ion-devel (0.0.20031211-1) unstable; urgency=low * New upstream release. - Note that user configuration is now in ~/.ion2 instead of ~/.ion-devel. * ion-doc updated to version 20031211. * Remove ion-doc/.log when doing make clean. * Added copyright notice for the documentation to debian/copyright. * Provide ion-devel-api-n where n is the API version. * Don't rename ioncore in debian/rules because it doesn't exist anymore. * Removed ion-devel-core manual page because ion-devel-core doesn't exist anymore. * Rename ion.1 not ion.1x in debian/rules. * Rename pwm binary and manual page to pwm-devel in debian/rules. * Modified man/pwm.1.in similarly to the ion manpage to point out that it's the -devel version. * Modified man/ion.1.in to refer to the ion-devel-doc package for documentation. * Rebuilt man/ion.1.in.txt. * Modified share/welcome_message.head to fit the Debian package better. * Pulled ion/ion.c from CVS to fix bug which caused ~/.ion2/.welcome_msg_displayed to be created with weird permissions. * Pulled etc/look-clean.lua from CVS to get a menu font size which exist in the standard Debian X font packages. * Pulled query/querylib.lua from CVS to make the default manpage work (F1+Enter). * Restructured debian/copyright once again and added some information which were missing. -- Per Olofsson Fri, 26 Dec 2003 22:18:37 +0100 ion-devel (0.0.20031121-1) unstable; urgency=low * New upstream release. * Added ion-devel-doc. (closes: #212719) * Modified the source for the documentation to build HTML output with hevea instead of latex2html, since latex2html is non-free. Unfortunately the output is not as good, but it is probably good enough. * Added README.Debian to ion-devel-doc which informs about the above. * Uncommented the XMMS kludges in etc/kludges.lua which was added by upstream. * Removed -D_GNU_SOURCE from POSIX_SOURCE variable in system.mk because it's now defined in the affected source file (libtu/output.c). * Modified query/querylib.lua to prompt "Manual page (ion-devel)" instead of "Manual page (ion)" when F1 is pressed. * Remove pre-compiled Lua files /usr/share/ion-devel/*.lc because lua 5.0.0 is buggy. They will be included when lua 5.0.1 is in Debian. * Use x-terminal-emulator and sensible-browser in etc/ioncore-menus.lua. -- Per Olofsson Mon, 8 Dec 2003 18:37:38 +0100 ion-devel (0.0.20030814-3) unstable; urgency=low * Show the ion-devel manpage when pressing Mod1+F1, not the ion manpage. Also use the ion-devel manpage as default when pressing F1. (closes: #215288) * Disabled UTF-8 support because it causes problems for some people. (closes: #216511) * Restructured beginning of debian/copyright. -- Per Olofsson Thu, 6 Nov 2003 22:21:31 +0100 ion-devel (0.0.20030814-2) unstable; urgency=low * Call uname without -p in etc/ioncore-bindings.lua since that option is not present in Debian. (closes: #212628) * Split the rules in debian/rules into -indep and -arch for an ion-devel-doc package, but removed the actual package for now because of GFDL non-freeness. * Restructured debian/copyright a little. * Define _GNU_SOURCE when compiling so that asprintf gets declared. * Took luaextl/luaextl.[ch] and ioncore/readconfig.c from the CVS snapshot to fix the funky type coercion issue with va_list which made Ion segfault on powerpc and (presumably) s390. (closes: #212781) * Corrected build-deps: (closes: #214330, #214386) - gcc needs to be at least 3.0 - only debhelper >=4 is needed, not 4.1 - libtool/libltdl only needs to be >=1.4.2 apparently, not 1.4.3 * Added debian/examples/alt_resize.lua with code for more intuitive resizing. (closes: #213903) * Added debian/examples/mover.lua with code for moving client windows to adjacent frames. * Modified the description further and added some information about the configuration language and the modularity. * Sponsored by Joey Hess. -- Per Olofsson Fri, 10 Oct 2003 22:45:20 +0200 ion-devel (0.0.20030814-1) unstable; urgency=low * New upstream release. (closes: #205012) - Should build on all archs now. (closes: #200981) * Remove unused .a files in /usr/lib/ion-devel (only the shared libraries are used). * Updated Standards-Version to 3.6.1. -- Per Olofsson Wed, 24 Sep 2003 16:30:49 +0200 ion-devel (0.0.20030627-1.1) unstable; urgency=low * Non-maintainer upload. * Apply patch from Matt Kraai to get the package building on powerpc and s390 (closes: #200981). -- Steve Langasek Mon, 8 Sep 2003 01:19:33 -0500 ion-devel (0.0.20030627-1) unstable; urgency=low * New upstream release. * Dependency on Lua 5.0 added. * UTF-8 support enabled. * debian/rules: Don't make depend and don't pass unnecessary variables to make. * Include rules.mk and mkexports.lua in ion-devel-dev. * Don't rename version.h and config.h anymore. Should be solved upstream. ION_DEBIAN_PACKAGE makefile variable removed. * Helper scripts have been moved to share and lib upstream, so manual pages have been removed and name changes for the scripts skipped. * Moved config.h and system.mk to /usr/lib/ion-devel, the other development files are in /usr/share/ion-devel. * License change and copyright file cleanup. * Various changes to accommodate upstream changes. * A lot of changes removed due to successful upstream coordination :) * Use x-terminal-emulator instead of xterm, this had apparently disappeared in some version. (closes: #196410) * Remove /etc/X11/ion-devel and everything in it if purging. * Rewrote most of the package descriptions. * Removed some Galeon stuff from kludges.lua as upstream now provides one kludge for Galeon, and it is probably enough (better to keep close to upstream). -- Per Olofsson Sun, 29 Jun 2003 18:33:08 +0200 ion-devel (0.0.20030327-2) unstable; urgency=low * Use -fPIC when compiling modules (closes: #188917). -- Per Olofsson Thu, 24 Apr 2003 20:41:15 +0200 ion-devel (0.0.20030327-1) unstable; urgency=low * New upstream release (closes: #183900). * Various changes to accommodate new source layout. * system*.mk and ion-config.h now placed in /usr/lib/ion-devel/dev because modules will be placed directly in /usr/lib/ion-devel per new upstream default. * draw.conf is now symlinked to look-clean.conf in ion-devel.postinst per new upstream default. * Added ion-devel.postrm and moved removal of draw.conf symlink from ion-devel.prerm to ion-devel.postrm. * Added #DEBHELPER# tag to ion-devel.preinst and ion-devel.postrm. * Changed the paths in system.mk to proper values so that modules can use them. * Added ION_DEBIAN_PACKAGE variable to system.mk to make it possible for add-on modules to determine if they are to be built against the Debian package. * Disabled Xft support because it is broken when using non-truetype fonts. * Added conflict with incompatible ion-devel-dock versions. * Added workaround for make realclean bug to debian/rules. * Renamed ioncore to ion-devel-core and made sure it was called from the script. * Fixed the ion and pwm scripts so they use the correct ETCDIR. * Added ion-devel-core manual page. * Updated to standards version 3.5.9. -- Per Olofsson Sun, 30 Mar 2003 21:43:24 +0200 ion-devel (0.0.20030225-1) unstable; urgency=low * New upstream release. * Switched to debhelper. * Added conflict with ion-devel-metadome. * Added version.h to ion-devel-dev as ion-version.h. * Added system-inc.mk to ion-devel-dev. * Switched to libxft2. * Moved system.mk, system-inc.mk and ion-config.h to /usr/lib/ion-devel and added symlinks. * Renamed /usr/include/ion to /usr/include/ion-devel. * Moved some things from debian/rules to system.mk. * CF_XFT back in system.mk, wmcore/common.h less modified. * Changed ion-devel-dev's package description. * Moved manual pages to debian/man. * Changed package description. * Some small changes to the manual pages. -- Per Olofsson Sun, 2 Mar 2003 00:23:07 +0100 ion-devel (0.0.20030131-2) unstable; urgency=low * Added dependency on xlibs-dev to ion-devel-dev. * Install libtu headers in /usr/include/ion/libtu/include/libtu instead of /usr/include/ion/libtu since that is what modules expect. * system.mk is now installed to /usr/include/ion. * /usr/share/doc/ion-devel-dev is now a symlink to ion-devel. * Added some kludges for Galeon and Evolution to kludges.conf (closes: #180568) -- Per Olofsson Fri, 14 Feb 2003 18:19:00 +0100 ion-devel (0.0.20030131-1) unstable; urgency=low * New upstream release. * Xft support enabled. * Added ion-devel-dev package (for compiling modules). * Changed reference to ion-runinxterm in query/query.c to ion-devel-runinxterm. * Uses ion-config.h instead of config.h (build process creates symlink). * Moved CF_XFT define from system.mk to config.h. -- Per Olofsson Sat, 1 Feb 2003 00:52:45 +0100 ion-devel (0.0.20021229-1) unstable; urgency=low * New upstream release. * ion-devel-view now runs sensible-browser instead of Mozilla when viewing a URL. * The compilation option -pedantic-errors was changed to -pedantic in system.mk because it breaks on /usr/include/regex.h. * Patch to make Emacs 21 not freeze during startup was applied (modifies wmcore/clientwin.c). * Will hopefully be added to Debian (closes: #173593) -- Per Olofsson Tue, 31 Dec 2002 01:03:45 +0100 ion-devel (0.0.20021104-3) unstable; urgency=low * The /etc/X11/ion-devel/draw.conf symlink is not listed as a conffile anymore, it is instead created and removed by postinst and prerm. -- Per Olofsson Sat, 7 Dec 2002 17:49:59 +0100 ion-devel (0.0.20021104-2) unstable; urgency=low * Added -devel to the name of all executables, the manual page and updated affected references. Removed conflict with ion from debian/control. * When ion-devel is the default window manager, /etc/alternatives/x-window-manager.1.gz now points to the correct file. * draw.conf is now also listed as a conffile. * Wrote manual pages for the scripts (ion-devel-*) * ion-devel-view now uses Mozilla instead of Netscape to open URLs -- Per Olofsson Fri, 6 Dec 2002 22:57:00 +0100 ion-devel (0.0.20021104-1) unstable; urgency=low * Initial release. Started out with diff from Tommi Virtanen's stable ion package. -- Per Olofsson Mon, 2 Dec 2002 23:54:31 +0100 debian/notion-dev.links0000644000000000000000000000061411760551167012324 0ustar usr/share/notion/build/system-inc.mk usr/include/notion/build/system-inc.mk usr/share/notion/build/rules.mk usr/include/notion/build/rules.mk usr/lib/notion/config.h usr/include/notion/config.h usr/lib/notion/system.mk usr/include/notion/system.mk usr/lib/notion/build/libs.mk usr/include/notion/build/libs.mk usr/lib/notion/libextl/libextl-mkexports usr/include/notion/libextl/libextl-mkexports debian/notion.prerm0000644000000000000000000000051111760551167011551 0ustar #!/bin/sh set -e if [ "$1" = remove ] || [ "$1" = deconfigure ]; then update-alternatives --remove x-window-manager /usr/bin/notion update-alternatives --remove notion /usr/bin/notion fi if [ "$1" = remove ]; then rm -f /var/lib/notion/debian-menu.lua rm -f /var/lib/notion/debian-menu-i18n.lua fi #DEBHELPER# debian/copyright0000644000000000000000000006247511765120662011145 0ustar This is the Debian-packaged version of Notion. It is not part of the Debian system itself due to the restrictions on modifications in the Ion licence (see below). The package was put together by Arnout Engelen , based on the work by Ben Hutchings and Per Olofsson , which in turn was based on the ion package created by Tommi Virtanen . It uses source from: http://notion.sf.net The author of Notion is the Notion Team, see http://notion.sf.net. -- Although this package is non-free, it can legally be auto-built. If you are preparing a new version with a licence change that does not allow auto-building, remove the XS-Autobuild field from the control file and notify . --- The following notice applies to the Notion code and to the names "Ion", "Ion3", etc.. This does not include the code in the 'contrib' directory, see below for more information. All code included in this package that has been contributed after the name change to 'Notion' is dual-licensed under the 'normal' LGPL in addition to being released under the following notice: Copyright (c) Tuomo Valkonen 1999-2008. Unless otherwise indicated in components taken from elsewhere, this software is licensed under the GNU Lesser General Public License, version 2.1 ("LGPL", reproduced below), extended and modified with the following terms: If the name Ion(tm) or other names that can be associated with the Ion project are used to distribute this software, then: - A version that does not significantly differ from one of the copyright holder's releases, must be provided by default. - Versions not based on the copyright holder's latest release (on the corresponding "branch", such as Ion3(tm)), must within 28 days of this release, be prominently marked as (potentially) obsolete and unsupported. - Significantly altered versions may be provided only if the user explicitly requests for those modifications to be applied, and is prominently notified that the software is no longer considered the standard version, and is not supported by the copyright holder. The version string displayed by the program must describe these modifications and the "support void" status. Versions for which the above conditions are not satisfied, must be renamed so that they can not be associated with the Ion project, their executables must be given names that do not conflict with the copyright holder's version, and neither the copyright holder nor the Ion project may be referred to for support. In the text of sections 0-2, 4-12, and 14-16 of the LGPL, "this License" is to be understood to refer to the LGPL extended with these terms and, where applicable, possible similar terms related to the names of other works forming a whole. Sections 3 and 13 of the LGPL are void. Where contradictory, these additional terms take precedence over the LGPL. End of terms. Explanations Trademarks: With the terms above primarily appealing to copyright law, should any of the indicated trademarks be found invalid, does not excuse you from the conditions imposed by those terms. The use of these names in contexts other than redistribution of this software and modifications, is outside the scope of the terms above, and governed by applicable trademark or other laws. With regard to modules and other extensions to Ion(tm), the permission is hereby granted to use "Ion" as part of the name, provided that it occurs in a form suggesting that the work is supported by neither the copyright holder nor the Ion project: "Foo for Ion" instead of "Ion Foo", etc. Significant change: Bug fixes are insignificant as additions. Basic changes that are needed to install or run the software on a target platform, are insignificant. Additionally, basic/small configuration changes to better integrate the software with the target platform, without obstructing the standard behaviour, are insignificant. Everything else is significant, unless expressly declared otherwise by the copyright holder. Distributions: For example, suppose an aggregate distribution of software provides an `installpkg` command for installing packages. Then the action `installpkg ion3` (resp. `installpkg ion`) should provide the latest release of Ion3 (resp. the latest stable release) 28 days from release date at the latest, or prominently notify the user that the provided version is (likely to be) obsolete and unsupported. The latest release being provided by default, or prominently appearing in a listing, constitutes prominent marking of earlier releases as obsolete. Specific versions (including modified versions) may be provided if the user explicitly requests for those, within the constraints set above. The intent of these terms is to curb the power that "distributions", as the primary sources of software for many users, have in defining what is perceived as Ion. By providing significantly modified versions and out-dated development snapshots without prominently mentioning this fact, they do not present the work in a light that the author can agree with, and create a burden of dealing with (new) users seeking for support for such versions. --- The following notice applies to the dock module (mod_dock): Copyright (c) Tom Payne 2003 Copyright (c) Per Olofsson 2003 This program is licensed under the terms of the Lesser General Public License (LGPL) version 2.1. --- The following notices apply to the file name completion code (ion-completefile, based on editline): Copyright 1992 Simmule Turner and Rich Salz. All rights reserved. This software is not subject to any license of the American Telephone and Telegraph Company or of the Regents of the University of California. Permission is granted to anyone to use this software for any purpose on any computer system, and to alter it and redistribute it freely, subject to the following restrictions: 1. The authors are not responsible for the consequences of use of this software, no matter how awful, even if they arise from flaws in it. 2. The origin of this software must not be misrepresented, either by explicit claim or by omission. Since few users ever read sources, credits must appear in the documentation. 3. Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. Since few users ever read sources, credits must appear in the documentation. 4. This notice may not be removed or altered. The version contained here has some modifications by awb@cstr.ed.ac.uk (Alan W Black) in order to integrate it with the Edinburgh Speech Tools library and Scheme-in-one-defun in particular. --- The following notice applies to libtu, a library included in Notion: Copyright (c) Tuomo Valkonen 1999-2007. Most of this library may be distributed and modified under either under the Clarified Artistic License or the GNU LGPL, version 2.1 or later, both reproduced in the file LICENSE. The red-black tree code is under the GNU LGPL; see README.rb for details. --- libextl, a library included in Notion, is released under the terms of the LGPL, version 2.1. --- install-sh, included in libextl, includes the following notice: This comes from X11R5 (mit/util/scripts/install.sh). Copyright 1991 by the Massachusetts Institute of Technology Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of M.I.T. not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. M.I.T. makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. This code is not included in the Debian binary packages. --- The following notice applies to the red-black tree code in libtu: Copyright (C) 2000 James S. Plank This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. --- Notion includes an implementation of snprintf, to which the following notice applies: Copyright 1999, Mark Martinec. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the "Frontier Artistic License" which comes with this Kit. This code is not included in the Debian binary packages. In the source package, the license text can be found in libtu/snprintf_2.2/LICENSE.txt. --- Notion includes fontset handling code based on an example by Tomohiro Kubota, to which the following notice applies: Copyright © 1999-2001 Tomohiro KUBOTA. This manual is free software; you may 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, or (at your option) any later version. However, the code that de/fontset.c is based on, was taken from Screen.cc for Blackbox - an X11 Window manager Which carries the following copyright information and license text: Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- The following notice applies to the "grab" code, in addition to Tuomo Valkonen's copyright and licence: Copyright (c) Lukas Schroeder 2002 Alternatively, you may apply the Clarified Artistic License to this file, since Lukas' contributions were originally under that. --- The following notice applies to the modules code in addition to Tuomo Valkonen's copyright: Copyright (c) Arnout Engelen 2011 This file is distributed under the same license as the Notion package. --- The following notice applies to the tab size recalculation code in addition to Tuomo Valkonen's copyright: Copyright (c) Tomas Ebenlendr 2011. This file is distributed under the same license as the Notion package. --- The following notice applies to the Czech translation of Notion: Copyright (c) Miroslav Kure 2004,2005,2006,2007. This file is distributed under the same license as the Notion package. --- The following notice applies to the French translation of Notion: Copyright (c) Pierre-Henri RAMBOZ 2007. This file is distributed under the same license as the Notion package. --- The following notice applies to the German translation of Notion: Copyright (C) Nicolas Schier 2008. This file is distributed under the same license as the Notion package. --- The following notice applies to the document "Configuring and extending Notion with Lua": Copyright © 2003-2009 Tuomo Valkonen. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. --- The following notice applies to the document "Notion: Notes for the module and patch writer": Copyright © 2003-2004 Tuomo Valkonen. This document is free; 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. --- The following notice applies to the xrandr module: Copyright (C) 2004 Ragnar Rova 2005-2007 Tuomo Valkonen This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. --- The following notice applies to the xkbevents module: Copyright (c) Sergey Redin 2006. Copyright (c) Etan Reisner 2011. Released under the MIT License (reproduced below). --- A list of files in the contrib directory with copyright holders other than Tuomo Valkonen follows. Unless otherwise specified the files are distributed unter the same license as the Notion package. Files: scripts/frame_client_menu.lua scripts/named_floating_groupws.lua scripts/named_scratchpad.lua scripts/net_client_list.lua scripts/nowarp_scratchpad.lua scripts/show_submap.lua scripts/simple_bindings.lua statusbar/statusbar_wsname.lua Copyright: Etan Reisner 2007 Files: scripts/query_url.lua Copyright: Reuben Thomas 2005 (rrt@sc3d.org) License: GPL-1.0 Files: scripts/stock.lua scripts/weather.lua Copyright: 2006 Andrea Rossato License: GPL-2.0+ Files: scripts/xinerama_switcher.lua Copyright: 2005 by martin f. krafft License: Artistic Files: scripts/xkbion.lua Copyright: Sergey Redin Files: statusbar/statusbar_act.lua Copyright: 2006 Tuomo Valkonen 2007 Etan Reisner License: LGPL-2.1+ Files: statusbar/statusbar_external.lua statusd/statusd_exec.lua Copyright: Antti Vähäkotamäki 2005 License: LGPL-2.1+ Files: statusbar/statusbar_fname.lua Copyright: Emanuele Giaquinta 2007 Files: statusd/statusd_batt.lua statusd/statusd_cpuspeed.lua statusd/statusd_iface.lua statusd/statusd_inetaddr.lua statusd/statusd_iwinfo.lua Copyright: Relu Patrascu 2004 License: LGPL-2.1+ Files: statusd/statusd_binclock.lua statusd/statusd_flashing.lua statusd/statusd_mem.lua statusd/statusd_nmaild.lua Copyright: 2006 Mario García H. License: GPL-2.0 Files: statusd/statusd_bsdbatt.lua Copyright: 2005 Russell A. Jackson License: NetBSD Files: statusd/statusd_laptopstatus.lua Copyright: 2005 Jari Eskelinen License: GPL-2.0 Files: statusd/statusd_maildir.lua Copyright: 2005 Brett Parker License: GPL-2.0+ Files: statusd/statusd_weather.lua Copyright: 2006 Andrea Rossato 2008 Sergey Kozhemyakin License: GPL-2.0+ Explanation: License: GPL-1.0 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; version 1 of the License. License: GPL-2.0 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; version 2 of the License. License: GPL-2.0+ This package 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. License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. License: NetBSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License. --- The GNU Lesser General Public License can be found in /usr/share/common-licenses/LGPL-2.1 on Debian systems. --- The GNU General Public License version 1 can be found in /usr/share/common-licenses/GPL-1 on Debian systems. The GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2 on Debian systems. --- The Artistic License can be found in /usr/share/common-licenses/Artistic on Debian systems. --- The Clarified Artistic License Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder as specified below. "Copyright Holder" is whoever is named in the copyright or copyrights for the package. "You" is you, if you're thinking about copying or distributing this Package. "Distribution fee" is a fee you charge for providing a copy of this Package to another party. "Freely Available" means that no fee is charged for the right to use the item, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain, or those made Freely Available, or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: 1. place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major network archive site allowing unrestricted access to them, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. 2. use the modified Package only within your corporation or organization. 3. rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. 4. make other distribution arrangements with the Copyright Holder. 5. permit and encourge anyone who receives a copy of the modified Package permission to make your modifications Freely Available in some specific way. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: 1. distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. 2. accompany the distribution with the machine-readable source of the Package with your modifications. 3. give non-standard executables non-standard names, and clearly document the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. 4. make other distribution arrangements with the Copyright Holder. 5. offer the machine-readable source of the Package, with your modifications, by mail order. 5. You may charge a distribution fee for any distribution of this Package. If you offer support for this Package, you may charge any fee you choose for that support. You may not charge a license fee for the right to use this Package itself. You may distribute this Package in aggregate with other (possibly commercial and possibly nonfree) programs as part of a larger (possibly commercial and possibly nonfree) software distribution, and charge license fees for other parts of that software distribution, provided that you do not advertise this Package as a product of your own. If the Package includes an interpreter, You may embed this Package's interpreter within an executable of yours (by linking); this shall be construed as a mere form of aggregation, provided that the complete Standard Version of the interpreter is so embedded. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whoever generated them, and may be sold commercially, and may be aggregated with this Package. If such scripts or library files are aggregated with this Package via the so-called "undump" or "unexec" methods of producing a binary executable image, then distribution of such an image shall neither be construed as a distribution of this Package nor shall it fall under the restrictions of Paragraphs 3 and 4, provided that you do not represent such an executable image as a Standard Version of this Package. 7. C subroutines (or comparably compiled subroutines in other languages) supplied by you and linked into this Package in order to emulate subroutines and variables of the language defined by this Package shall not be considered part of this Package, but are the equivalent of input as in Paragraph 6, provided these subroutines do not change the language in any way that would cause it to fail the regression tests for the language. 8. Aggregation of the Standard Version of the Package with a commercial distribution is always permitted provided that the use of this Package is embedded; that is, when no overt attempt is made to make this Package's interfaces visible to the end user of the commercial distribution. Such use shall not be construed as a distribution of this Package. 9. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. --- The MIT License (MIT) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/notion.postinst0000644000000000000000000000104411760551167012311 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule UPSTREAM_VERSION= DEBIAN_VERSION= update-alternatives --install \ /usr/bin/x-window-manager x-window-manager /usr/bin/notion 49 \ --slave /usr/share/man/man1/x-window-manager.1.gz x-window-manager.1.gz \ /usr/share/man/man1/notion.1.gz # i18n menu method inst=/etc/menu-methods/notion-i18n if [ -f $inst ]; then chmod a+x $inst fi # Initialise extra configuration file list if missing [ -f /etc/X11/notion/cfg_debian_ext.lua ] || >/etc/X11/notion/cfg_debian_ext.lua #DEBHELPER# debian/notion.menu0000644000000000000000000000014311760551167011371 0ustar ?package(notion):needs="wm" section="Window Managers" \ title="Notion" command="/usr/bin/notion" debian/install-notion-cfg0000644000000000000000000000145311760551167012634 0ustar #!/bin/bash set -e usage() { echo >&2 "Usage: install-notion-cfg [--remove] config-basename" } config_dir=/etc/X11/notion config_list=$config_dir/cfg_debian_ext.lua action=add while true; do case "$1" in -h|--help) usage exit 0 ;; --remove) action=remove ;; -*) usage exit 2 ;; *) break ;; esac shift done if [ $# -ne 1 ]; then usage exit 2 fi name="$1" case $action in add) if ! [ -f "$config_dir/$name.lua" ]; then echo >&2 "$config_dir/$name.lua does not exist!" exit 2 fi if ! egrep -q "^ *dopath *\\( *\"$name\" *\\) *\$" \ "$config_list"; then echo "dopath(\"$name\")" >> "$config_list" fi ;; remove) sed -i -r -e "/^ *dopath *\\( *\"$name\" *\\) *\$/d" \ "$config_list" ;; esac debian/control0000644000000000000000000000351211760551167010603 0ustar Source: notion Section: non-free/x11 Priority: extra Maintainer: Arnout Engelen Standards-Version: 3.9.3 Build-Depends: debhelper (>= 7), pkg-config, lua5.1, liblua5.1-0-dev, libx11-dev, libxext-dev, libsm-dev, libxinerama-dev, libxrandr-dev XS-Autobuild: yes Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/notion.git Vcs-Git: git://git.debian.org/collab-maint/notion.git Homepage: http://notion.sourceforge.net/ Package: notion Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, xterm | x-terminal-emulator, x11-utils Recommends: xfonts-75dpi | xfonts-75dpi-transcoded | xfonts-100dpi | xfonts-100dpi-transcoded, libxrandr2, libxinerama1 Suggests: menu (>= 2.1.9), docker, notion-doc, notion-scripts Provides: x-window-manager, notion-api-${Notion:ApiVersion} Replaces: particleman Description: tiling tabbed window manager designed for keyboard users Notion divides the screen into tiles and places windows in these tiles by default. Each tile has a set of tabs for the windows within it. It also allows windows to be made 'floating' and placed freely. Notion can be controlled through the keyboard alone or together with a mouse. . Notion can be configured and extended using the Lua language. It also supports extension modules written in C. Package: notion-dev Section: non-free/devel Architecture: all Depends: ${misc:Depends}, libx11-dev, libsm-dev, lua5.1, gcc (>> 3) Description: Notion development files Notion divides the screen into tiles and places windows in these tiles by default. Each tile has a set of tabs for the windows within it. It also allows windows to be made 'floating' and placed freely. Notion can be controlled through the keyboard alone or together with a mouse. . This package contains the files necessary for building extension modules to the Notion window manager debian/install-notion-cfg.10000644000000000000000000000076511760551167013000 0ustar .TH "INSTALL-NOTION-CFG" .SH NAME install-notion-cfg - Install script for Notion configuration .SH SYNOPSIS .B install-notion-cfg .I "[--remove]" .I "config-basename" .SH DESCRIPTION Script to add and remove Notion modules from the configuration. .SH "OPTIONS" .TP .B \-\-remove Remove the module from the configuration .TP .B config-basename The name of the module to add or remove, without the '.lua' file extension .SH SEE ALSO \fInotion(1)\fP .SH AUTHOR Notion was written by the Notion team. debian/notion.postrm0000644000000000000000000000023111760551167011747 0ustar #!/bin/sh set -e # i18n menu method inst=/etc/menu-methods/notion-i18n if [ "$1" = "remove" ] && [ -f "$inst" ]; then chmod a-x $inst ; fi #DEBHELPER# debian/source/0000755000000000000000000000000011760551167010477 5ustar debian/source/format0000644000000000000000000000001411760551167011705 0ustar 3.0 (quilt) debian/notion.dirs0000644000000000000000000000004311760551167011365 0ustar var/lib/notion usr/share/xsessions debian/notion.install0000644000000000000000000000020511760551167012072 0ustar debian/notion.desktop usr/share/xsessions debian/default etc debian/watch usr/share/notion/debian debian/install-notion-cfg usr/sbin debian/notion.manpages0000644000000000000000000000005111760551167012216 0ustar man/notion.1 debian/install-notion-cfg.1 debian/NEWS0000644000000000000000000002104511760551167007700 0ustar ion3 (20070506-1) unstable; urgency=low Ion3 is now in the non-free section due to a trademark claim and conditions on the use of its name. The change in behaviour of the frame context menu in 20070318 has been reverted. Other significant changes are listed in RELNOTES.gz. -- Ben Hutchings Wed, 16 May 2007 23:54:29 +0100 ion3 (20070318-1) unstable; urgency=low * The context menu for a frame now affects the current window, not the window whose tab the pointer was over when it opened. For example, you cannot close a window that is not being displayed by opening a context menu over its tab. That will close the current window instead. * There is a new configuration file cfg_defaults.lua which loads the default set of modules and other configuration files. This means cfg_ion.lua can easily and safely be customised so long as it calls do_path("cfg_defaults"). cfg_user.lua is now considered obsolete, though it is still loaded if present. * Various backward compatibility code has been removed. This may require changes to custom scripts. * Other significant changes are listed in RELNOTES.gz. -- Ben Hutchings Sun, 25 Mar 2007 22:45:52 +0100 ion3 (20070203-1) experimental; urgency=low * There's been changes in padding/spacing usage in styles. Frames now surround stuff inside borders not with `spacing` pixels, but with `padding_pixels`. Spacing is only used to space things within the borders (all the tabs and the client window from each other). Consequently, custom styles may need to be updated to reflect this, by increasing the padding, possibly also altering/removing colour (to set it to background colour). * The use of drawing engine attributes has also changed, and strict ordering of them in the styles is no longer necessary. Additionally, much more attributes are supported, including the name of every statusbar meter. * Xinerama support is gone. In addition to being problematic as such, it had bit-rotted, and I will not waste time fixing it. * `ioncore.set` no longer supports the `default_ws_params^N parameter for configuring the default layout. It is replaced by `ioncore.deflayout("default", { ... })`, which allows configuring other layouts as well, known by `mod_query.query_workspace` (F9). Some default layouts are configured in `cfg_layout.lua`. * It is now possible to automatically create new workspaces for windows with the `new_group` winprop. -- Norbert Tretkowski Sat, 3 Feb 2007 16:19:24 +0100 ion3 (20061029-1) unstable; urgency=low Mostly this release still fixes issues in the big 3ds-20061015 release, but in addition there are some improvements in the query department: * Query activation key now cycles completions (So e.g. the in the context menu activated with META+M, this same key can be used to cycle through the alternatives.) This does not work for queries activated by submap bindings. * Likewise, it is no longer necessary to specify the key to use for cycling for `mod_menu.grabmenu`. * Control+R can now be used for history completion in queries. (Currently matching is done for full string up to 'point', but this may be changed to substring match.) * Note that the parametrisation of WEdln.complete has changed, and the second cycle parameter must be 'next' now instead of `true`. -- Norbert Tretkowski Sun, 29 Oct 2006 10:50:06 +0100 ion3 (20061020-1) unstable; urgency=low Fixes some (expected, but minor) issues in the previous release. -- Norbert Tretkowski Mon, 23 Oct 2006 20:01:47 +0200 ion3 (20061015-1) unstable; urgency=low * WIonWS and WFloatWS and the corresponding modules are also gone, and your custom configuration files will be broken with regard to these. However, a partial backwards compatibility hack exists for layout savefiles. The F9 and META-F9 bindings now by default create workspaces with a tiled layout of two frames. To create an "empty" workspace, corresponding to the old WFloatWS, use the context menu (META-M) and chose "new-empty-workspace". It is also possible to change the default layout. * Note that if you restart from an old version to this new version of Ion, transients will stop working as expected for already existing windows. They will work for newly-created windows, however. * There are a few new sets of binding (including one for ^WClientWin!), and some old bindings may not work exactly as expected anymore. In particular, those for switching to full-screen mode. ** It is probably best to start from scratch with your custom bindings. ** * ^WFrame.set_tabbar is gone. If you absolutely want to get rid off the tabs, you must change the frame's "mode" with ^WFrame.set_mode. The mode "tiled-alt" has been intended for this, and the corresponding "framed-tiled-alt" style defaults to ^Bar = "none". * The rather popular ^Detach.lua script from the scripts repository is obsoleted now, as Ion includes detach functionality in itself. To detach a window, use META-K D in the default bindings. To tile an existing from an a workspace that doesn't have a tiling yet, use META-K B. -- Norbert Tretkowski Tue, 17 Oct 2006 18:08:45 +0200 ion3 (20060317-1) unstable; urgency=low * Changes in the set of configuration files. - cfg_ion.lua now simply load cfg_ioncore.lua and cfg_modules.lua with the default set of modules, and includes some of the most commonly changed options commented-out. This deprecates cfg_user.lua - cfg_menus.lua and cfg_bindings.lua are now cfg_ioncore.lua. This better matches how things for different modules are in their own files. -- Norbert Tretkowski Fri, 17 Mar 2006 21:57:14 +0100 ion3 (20060305-1) unstable; urgency=low * The scrachpad class was removed. The scratchpad is just a normal frame now, with a few special attributes. Your scratchpad configuration from the layout savefile will be lost (and complained of). A new one should open with the toggle key. * There's generic size policy code that both mplexes and client windows use (for transients). The default size policy for (framed) transients keeps them glued to the borders they're touching even if the parent or they themselves are resized (unless this could not be done because a small size and position are requested). -- Norbert Tretkowski Mon, 6 Mar 2006 17:26:47 +0100 ion3 (20050322-1) unstable; urgency=low * Those with custom configuration files should note that many exported toggle functions were changed and renamed, and now accept a string parameter incidating whether to toggle, set or unset the property. - WClientwin.set_fullsreen (replaces WClientWin.toggle_fullscreen) - WRegion.set_tagged (replaces WRegion.tag/untag/toggle_tag) - WFrame.set_tabbar (replaces WFrame.toggle_tabbar) - WFrame.set_shaded (replaces WFrame.toggle_shade) - WFloatFrame.set_sticky (replaces WFloatFrame.toggle_sticky) - WMPlex.l2_set_hidden (replaces WMPlex.l2_hide/show) - mod_sp.set_shown(_on) (replaces mod_sp.toggle(_on)) - mod_dock.set_floating_shown_on (replaces mod_dock.toggle_floating_on) - WRegion.set_activity (replaces WRegion.clear_activity and WRegion.notify_activity) For example, WRegion.set_tagged(_, 'toggle') should be used in place of WRegion.toggle_tagged(_) now. -- Norbert Tretkowski Tue, 22 Mar 2005 17:24:35 +0100 ion3 (20041104-1) unstable; urgency=low * The configuration files were renamed and changed a lot since 20040703-1, please read /usr/share/doc/ion3/RELNOTES.gz and remember that this is a development snapshot before reporting bugs. -- Norbert Tretkowski Sun, 05 Dec 2004 18:31:23 +0100 debian/notion.desktop0000644000000000000000000000022011760551167012072 0ustar [Desktop Entry] Encoding=UTF-8 Name=Notion Comment=Notion window manager Comment[cs]=Správce oken Notion Exec=/usr/bin/notion Type=Application debian/notion.menu-method0000644000000000000000000000175511760551167012661 0ustar #!/usr/bin/install-menu # by Iwan Heskamp # http://tdm120.el.utwente.nl/~hkp/pwm/ # Modified for Ion by Per Olofsson compat="menu-1" !include menu.h compat="menu-2" outputencoding="ISO-8859-1"; function q($arg) = esc($arg, "\\\""); function qc($arg) = esc($arg, "\\'"); function entry($action)=" menuentry(\"" q(title()) "\", \"" q($action) "\"),\n"; function entry_exec($command)=entry("ioncore.exec('" qc($command) "')"); supported; x11 = entry_exec($command); wm = entry("ioncore.restart_other('" qc($command) "')"); text = entry_exec(term()); endsupported; startmenu="defmenu(\"" $section "\", {\n"; endmenu="})\n\n"; genmenu="debian-menu.lua"; submenutitle=" submenu(\"" $title "\", \"" $section "\"),\n"; preoutput="\n"; mainmenutitle="Debian"; rootsection="Debian"; rootprefix="/var/lib/notion/"; userprefix="/.notion/"; preoutput= "-- Automatically generated file. Do not edit.\n-- (See /usr/share/doc/menu/menu.txt.gz)\n\n"; debian/rules0000755000000000000000000000640711760551167010266 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export SHELL=/bin/bash PACKAGE := $(shell dpkg-parsechangelog | sed -r 's/^Source: //; t; d') PACKAGE_DEV := $(PACKAGE)-dev INSTDIR := debian/$(PACKAGE) INSTDIR_DEV := debian/$(PACKAGE_DEV) DEBIAN_VERSION := $(shell dpkg-parsechangelog | sed -r 's/^Version: //; t; d') UPSTREAM_VERSION := $(shell echo $(DEBIAN_VERSION) | sed -r 's/^[0-9]*://; s/-[^-]*$$//') build-indep: build-indep-stamp build-indep-stamp: dh_testdir cd libextl && $(MAKE) libextl-mkexports touch build-indep-stamp build-arch: build-arch-stamp build-arch-stamp: dh_testdir $(MAKE) touch build-arch-stamp build: build-indep build-arch clean: dh_testdir dh_testroot rm -f build-indep-stamp build-arch-stamp $(MAKE) realclean dh_clean install-indep: build-indep dh_testdir dh_testroot dh_prep -i dh_installdirs -i dh_install -i # install headers find . \( -name debian -o -name .pc -o -name config.h -o -name snprintf.h \) \ -prune -o -name '*.h' -exec install -m644 -D {} \ $(INSTDIR_DEV)/usr/include/$(PACKAGE)/{} \; install-arch: build-arch dh_testdir dh_testroot dh_prep -a dh_installdirs -a $(MAKE) install \ PREFIX=$(CURDIR)/$(INSTDIR)/usr \ ETCDIR=$(CURDIR)/$(INSTDIR)/etc/X11/notion # install other things (mainly -dev) dh_install -a binary-indep: build-indep install-indep dh_testdir dh_testroot # automatically keep track of api version dh_installchangelogs -i dh_installdocs -i # dh_installexamples -i # dh_install -i # dh_installmenu -i # dh_installdebconf -i # dh_installlogrotate -i # dh_installemacsen -i # dh_installpam -i # dh_installmime -i # dh_installinit -i # dh_installcron -i # dh_installinfo -i # dh_undocumented -i dh_installman -i dh_link -i # dh_strip -i dh_compress -i dh_fixperms -i chmod 755 $(INSTDIR_DEV)/usr/lib/notion/libextl/libextl-mkexports # dh_perl -i # dh_python -i # dh_makeshlibs -i dh_installdeb -i # dh_shlibdeps -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i binary-arch: build-arch install-arch dh_testdir dh_testroot # automatically keep track of api version echo Notion:ApiVersion=$$((cat version.h; echo ION_API_VERSION) \ | cpp -P | tail -1 | sed 's/"//g') >>debian/$(PACKAGE).substvars dh_installchangelogs -a dh_installdocs -a rm -f $(INSTDIR)/usr/share/doc/$(PACKAGE)/LICENSE # mv $(INSTDIR)/usr/share/doc/$(PACKAGE)/ChangeLog $(INSTDIR)/usr/share/doc/$(PACKAGE)/changelog # dh_installexamples -a # dh_install -a dh_installmenu -a install -m644 debian/$(PACKAGE).menu-method.i18n \ $(INSTDIR)/etc/menu-methods/$(PACKAGE)-i18n dh_installdebconf -a # dh_installlogrotate -a # dh_installemacsen -a # dh_installpam -a # dh_installmime -a # dh_installinit -a # dh_installcron -a # dh_installinfo -a # dh_undocumented -a dh_installman -a dh_link -a dh_strip -a dh_compress -a -X.lua dh_fixperms -a # dh_perl -a # dh_python -a # dh_makeshlibs -a dh_installdeb -a sed -i 's/^DEBIAN_VERSION=/&$(DEBIAN_VERSION)/; s/^UPSTREAM_VERSION=/&$(UPSTREAM_VERSION)/' \ $(INSTDIR)/DEBIAN/postinst dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: binary-indep binary-arch get-orig-source: uscan --force-download .PHONY: build-indep build-arch build clean binary-indep binary-arch binary \ install-indep install-arch get-orig-source