From 2a6463559d5494bf9ce9c7a00336de9d066f1f24 Mon Sep 17 00:00:00 2001 From: "Laurence J. Lane" Date: Wed, 24 May 2000 17:48:03 +0000 Subject: [PATCH] This is minor, mostly temporary build stuff. dh.tar.gzis uncompressed in e/debian/. End and home keys are configured for type "linux' in Eterm. SVN revision: 2699 --- debian/READ.THIS | 51 --------- debian/README.Debian | 65 +++++++++++ debian/changelog | 101 ++++++++++++++++++ debian/control | 69 ++++++++++++ debian/copyright | 31 ++++++ debian/dh.tar.gz | Bin 5998 -> 0 bytes debian/enlightenment-theme-bluesteel.dirs | 1 + debian/enlightenment-theme-bluesteel.files | 1 + debian/enlightenment-theme-brushedmetal.files | 1 + debian/enlightenment-theme-shinymetal.dirs | 1 + debian/enlightenment-theme-shinymetal.files | 1 + debian/enlightenment.conffiles | 1 + debian/enlightenment.dirs | 2 + debian/enlightenment.docs | 1 + debian/enlightenment.files | 2 + debian/enlightenment.links | 9 ++ debian/enlightenment.menu | 2 + debian/enlightenment.menu-method | 51 +++++++++ debian/enlightenment.postinst | 10 ++ debian/enlightenment.prerm | 23 ++++ debian/menumangler.pl | 4 + debian/rules | 3 +- 22 files changed, 377 insertions(+), 53 deletions(-) delete mode 100644 debian/READ.THIS create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright delete mode 100644 debian/dh.tar.gz create mode 100644 debian/enlightenment-theme-bluesteel.dirs create mode 100644 debian/enlightenment-theme-bluesteel.files create mode 100644 debian/enlightenment-theme-brushedmetal.files create mode 100644 debian/enlightenment-theme-shinymetal.dirs create mode 100644 debian/enlightenment-theme-shinymetal.files create mode 100644 debian/enlightenment.conffiles create mode 100644 debian/enlightenment.dirs create mode 100644 debian/enlightenment.docs create mode 100644 debian/enlightenment.files create mode 100644 debian/enlightenment.links create mode 100644 debian/enlightenment.menu create mode 100644 debian/enlightenment.menu-method create mode 100644 debian/enlightenment.postinst create mode 100644 debian/enlightenment.prerm create mode 100644 debian/menumangler.pl diff --git a/debian/READ.THIS b/debian/READ.THIS deleted file mode 100644 index ef3e1b66..00000000 --- a/debian/READ.THIS +++ /dev/null @@ -1,51 +0,0 @@ -This debian/ directory will allow you to build Debian packages right -out of the CVS tree or from a released tarball. The latest Debian -diff against the source tarball can be found in the Debian archives. - -You'll need a number of packages to build. Here's a list, which may -not be complete or correctly categorized. - - Debian: - devscripts fakeroot - - CVS: - autoconf automake libtool gettext - - Graphic libs: - libjpeg62-dev libjpeg62-dev libpng2-dev libtiff3g-dev - zlib1g-dev - - Miscellaneous: - libaudiofile-dev libesd0-dev imlib-dev libfnlib-dev - - -Here's a sample build. root access for the build is neither required nor -recommended. - - cd e; debuild binary - - -Not So Frequently Asked Questions: - -What the hell is dh.tar.gz?!? It's a tarball of the usual contents of the -debian/ dir. Basically it a compromise to keep the file count down in the -CVS tree and subsequently prevent file count shock for people who are used -to a single .spec file like RPM uses. - -Why the &*^#^!$ are there fifty billion debs for enlightenment?!? Well, -there are a couple of main reasons. One is practicality; users don't expect -a eight+ megabyte package (as the RPM is) stuffed on them when they only -use a portion of that. Also, it blends well with the multiple architectures -Debian supports; the bulk of the packages land in a arch independent dir -so the data is shared instead of replicated. - -Why the *bleep* is dox included in the main package?!? Well the authors -thinks it's horribly important to have two+ megabytes of graphical docs -included and one has gone so far as to threaten to blacklist Debian for -enlightenment users if dox is separated. It's another compromise. - -Why is BrushedMetal-Tigert in the main package, but its sound samples in -a separate packge? This goes back to the package split concept. People -who do not use sound support do not want two+ megabytes of sound samples -installed. - diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 00000000..638a7639 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,65 @@ +Enlightenment for Debian/GNU Linux +================================== + +Packages +-------- + +Enlightenment has been divided in several packages: + + enlightenment (executables, extended docs, scripts, etc.) + enlightenment-data (most of /usr/share and brushedmetal) + enlightenment-theme-brushedmetal (sound samples and config) + enlightenment-theme-shinymetal + enlightenment-theme-bluesteel + +At a minimum, you'll need enlightenment and enlightenment-data +installed. See /usr/share/doc/enlightenment for additional +documentation, changelogs, notes, etc. + + +KDE and GNOME Support +--------------------- + There are a number of config files with pretty obvious names + in /usr/share/enlightenment/config. You can go there and + copy or the appropriate files to the normal names. As an + example: + + cp keybindings.gmc.cfg keybindings.cfg + + This can also be accomplished by copying the appropriate + files to $HOME/.enlightenment/ + + +Fonts +----- + +Many people have problems with the default fonts in themes. Unfortunately +the fonts appear to be defined in many theme config files. Here's a +destructive method I use to change BrushedMetal's lucida font to the shine +font: + + + find /usr/share/enlightenment/themes/BrushedMetal-Tigert/ -type f \ + -name '*.cfg' -exec grep -l lucida {} \; | \ + xargs perl -i -pwe 's#".*?fixed.*?"#"shine"#' + +The fonts vary dramatically from theme to theme, so a blanket search and +replace doesn't work with all themes. You may also want to limit modified +themes to you $HOME/.enlightenment/themes/ dir. + + +Additional Information +---------------------- + +Visit http://www.debian.org for the latest official Debian binary and +source code enlightenment packages. + +Visit http://www.debian.org/~ljlane/ for the latest bug tracking, +news, and pre/experimental package releases of Enlightenment for +Debian. + +Visit http://www.enlightenment.org/ for the latest enlightenment news +and source code. + + +Laurence J. Lane , Tue, 23 Nov 1999 13:45:06 GMT diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..46fdcad1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,101 @@ +enlightenment (0.16.4-0) frozen unstable; urgency=low + + * new upstream + * cvs build + + -- Laurence J. Lane Sun, 2 Apr 2000 19:38:44 -0400 + +enlightenment (0.16.3-8) frozen unstable; urgency=low + + * added patch by Michael Jenning to correct PPC build + * dpkg pre-depend for BrushedMetal-Tigert. closes: ##56582 + + -- Laurence J. Lane Sat, 29 Jan 2000 13:41:47 -0500 + +enlightenment (0.16.3-7) unstable; urgency=low + + * removed recommends: epplets, closes: #52928 + * added conflicts: menu (<< 2.0), closes: #52242 + * addded provides: x-window-manager, closes: #53688 + + -- Laurence J. Lane Sat, 15 Jan 2000 13:37:45 -0500 + +enlightenment (0.16.3-6) unstable; urgency=low + + * missing semi-colon, closes: #51683 + + -- Laurence J. Lane Wed, 1 Dec 1999 01:19:46 -0500 + +enlightenment (0.16.3-5) unstable; urgency=low + + * linked to libXst and libXext, closes: #51608, #51612 + * removed user menu-method, closes: #50874 + * replaced register-window-manger with alternatives + + -- Laurence J. Lane Tue, 30 Nov 1999 14:42:59 -0500 + +enlightenment (0.16.3-4) unstable; urgency=low + + * control and lintian cleanup, closes: #51308 + + -- Laurence J. Lane Fri, 26 Nov 1999 09:06:18 -0500 + +enlightenment (0.16.3-3) unstable; urgency=low + + * new upstream release (0.16.3-{1,2} were removed) + * corrected call restart_wm in menus + * new package division moves 5.67 megs of data out of binary-arch + + and makes 2.31M of brushedmetal sound samples optional + + binary-arch - 0.41M enlightenment + + binary-all - 3.36M enlightenment-data + + 2.31M enlightenment-theme-brushedmetal + + 0.68M enlightenment-theme-bluesteel + + 1.17M enlightenment-theme-shinymetal + + -- Laurence J. Lane Wed, 24 Nov 1999 21:17:19 -0500 + +enlightenment (0.16.2-1) unstable; urgency=low + + * new upstream release + + -- Laurence J. Lane Sun, 7 Nov 1999 01:52:12 -0500 + +enlightenment (0.16.1-2) unstable; urgency=low + + * new menu-method, Closes: #48909 + * install and remove script cleanups, Closes: #49184, #49214, #47939 + + -- Laurence J. Lane Fri, 5 Nov 1999 07:42:55 -0500 + +enlightenment (0.16.1-1) unstable; urgency=low + + * new upstream release + * manual window manager registration, Closes: #48390 + * DEFAULT theme symlink, Closes: #48423 + * added enlightenment.1 manpage + + -- Laurence J. Lane Wed, 27 Oct 1999 21:49:54 -0400 + +enlightenment (0.16.0-6) unstable; urgency=low + + * deprecated enlightenment-{sound,nosound,dox,dox,theme-brushedmetal} + * menu-method update, Closes:#47497 + * removed tar path length kludge (dpkg 1.14.1.17 or higher required!), + and theme update alternative system, also re-integrated + BrushedMetal-Tigert, Closes:#47495,#48219 + * disabled automatic updates (ghttp support), by request + + -- Laurence J. Lane Sun, 24 Oct 1999 23:21:44 -0400 + +enlightenment (0.16.0-2) unstable; urgency=low + + * New upstream release, Closes:#39109, Closes:#40916, Closes:#39898 + * menu-method conffiles, Closes:#44843 + * file.menu style menus, Closes:#45353, Closes:#43181 + + -- Laurence J. Lane Sun, 10 Oct 1999 23:15:37 -0400 + +Local variables: +mode: debian-changelog +add-log-mailing-address: "ljlane@debian.org" +End: diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..0f166d40 --- /dev/null +++ b/debian/control @@ -0,0 +1,69 @@ +Source: enlightenment +Section: x11 +Priority: optional +Maintainer: Laurence J. Lane +Standards-Version: 3.0.1 +Build-Depends: freetype2-dev, libjpeg62-dev, libungif3g-dev | giflib3g-dev, libesd0-dev, zlib1g-dev, libaudiofile-dev, libfnlib-dev, imlib-dev, libpng2-dev, libtiff3g-dev + +Package: enlightenment +Architecture: any +Depends: enlightenment-data (= ${Source-Version}), ${shlibs:Depends} +Replaces: enlightenment-nosound, enlightenment-sound, enlightenment-theme-brushedmetal, enlightenment-dox +Recommends: esound, menu +Conflicts: dox, enlightenment-dox, enlightenment-docs, menu (<< 2.0), enlightenment-theme (<< 0.16.1-0) +Provides: x-window-manager +Suggests: enlightenment-theme, eterm, menu +Description: The Enlightenment Window Manager + Enlightenment - the window manager that dares to do what others don't. + It features KDE and GNOME integration, multi-program sound support, + iconification, sliding desktops, docking, epplets, xinerama support and + much more. Enlightenment takes the concepts of themes to another level - + everything can be changed. The visual components of themes are a rich set + of graphical images in a variety of formats. Theme makers can unleash + their artistic talents without bounds. Themes are not limited to just + different colors and background images on the same old desktop. + . + Enlightenment features the BrushedMetal theme, designed by gimp legend, + tigert. It is predominately grey with the subtle texture of - you guessed + it - brushed metal. The menus in particular look superb. The sound files + for BrushedMetal are in a separate package, enlightenment-theme-brushedmetal. + +Package: enlightenment-data +Architecture: all +Suggests: enlightenment +Pre-depends: dpkg (>= 1.4.1.17) +Recommends: enlightenment +Conflicts: enlightenment (<< 0.16.3-3) +Replaces: enlightenment (<< 0.16.3-3) +Description: Enlightenment Window Manager Run Time Data Files + These are the architecture independent runtime support files for the + Enlightenment Window Manger package. + +Package: enlightenment-theme-brushedmetal +Architecture: all +Provides: enlightenment-theme +Suggests: enlightenment +Pre-depends: dpkg (>= 1.4.1.17) +Description: Audio files for the BrushedMEtal-Tigert E Theme + Enlightenment features the BrushedMetal theme as a default. This is a package + contains the audio samples and sound configs that will enhance your + BrushedMetal-Tigert theme experience. + +Package: enlightenment-theme-shinymetal +Architecture: all +Provides: enlightenment-theme +Suggests: enlightenment +Description: Raster's ShinyMetal Theme for E + This is the theme formerly known as 'E15 default'. It is fairly simple, + by raster's standards, and attractive. The motif used is shiny metal + borders, with translucent dark orange highlights. It includes some nice + background pictures. + +Package: enlightenment-theme-bluesteel +Architecture: all +Provides: enlightenment-theme +Suggests: enlightenment +Description: Hunchback's BlueSteel theme for E + This theme really shows off what you can do with enlightenment. It's by + Daniel Erat, and shows off anti-aliased text, extensively shaped windows, and + is compliant with the 0.16.0 theme spec. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..d37c977f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +This is the Debian GNU/Linux prepackaged presentation of the Enlightenment +window manager. This package was originally Debianized by Sean E. Perry + and refined further Brian M. Almeida . + +This package was assembled from the 0.16.3 release. Source archives can +be retrieved from ftp://ftp.enlightenment.org. For more information on +Enlightenment, please go to http://www.enlightenment.org. + + +Copyright Information: + +Copyright (C) 1999 Carsten Haitzler, Geoff Harrison and various contributors + +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 of the Software, its documentation and marketing & publicity +materials, and acknowledgment shall be given in the documentation, materials +and software packages that this Software was used. + +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 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. diff --git a/debian/dh.tar.gz b/debian/dh.tar.gz deleted file mode 100644 index 926336193e3cac19f1b9f31303dc33239f7987a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5998 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 cA%qY@2qA&2 + exit 0 + ;; +esac + + +#DEBHELPER# + +exit 0 diff --git a/debian/menumangler.pl b/debian/menumangler.pl new file mode 100644 index 00000000..0fee4406 --- /dev/null +++ b/debian/menumangler.pl @@ -0,0 +1,4 @@ +$R1 = qq{BEGIN_NEW_FILE_MENU("DEBIAN_MENU","ROOT","/var/lib/enlightenment/debian.menu")}; +$R2 = qq{ADD_MENU_SUBMENU_TEXT_ITEM("Debian","DEBIAN_MENU")}; +s/(^BEGIN_NEW_FILE_MENU..APPS_SUBMENU.*$)/$1\nEND_MENU\n$R1/; +s/(^ADD_MENU_SUBMENU_TEXT_ITEM..User Menus.*$)/$1\n$R2/; diff --git a/debian/rules b/debian/rules index 7ad223ec..3de78cb2 100644 --- a/debian/rules +++ b/debian/rules @@ -21,11 +21,10 @@ INSTALL=/usr/bin/install -o root -g root build: build-stamp build-stamp: - test -f debian/dh.tar.gz && tar zxvf debian/dh.tar.gz -C debian dh_testdir - test -x autogen.sh && ./autogen.sh $(cfg) || ./configure $(cfg) + ./autogen.sh $(cfg) || ./configure $(cfg) $(MAKE)