[24436] in Source-Commits
/svn/athena r24027 - trunk/debathena/config/gdm-config/debian
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Mon Sep 28 18:29:48 2009
Date: Mon, 28 Sep 2009 18:29:35 -0400
From: Geoffrey Thomas <geofft@MIT.EDU>
Message-Id: <200909282229.n8SMTZol027736@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: geofft
Date: 2009-09-28 18:29:35 -0400 (Mon, 28 Sep 2009)
New Revision: 24027
Added:
trunk/debathena/config/gdm-config/debian/distro.svg.sh
Removed:
trunk/debathena/config/gdm-config/debian/distro.svg
Modified:
trunk/debathena/config/gdm-config/debian/changelog
trunk/debathena/config/gdm-config/debian/rules
Log:
gdm-config 1.15: Make the code break less, and add Trac closer
Modified: trunk/debathena/config/gdm-config/debian/changelog
===================================================================
--- trunk/debathena/config/gdm-config/debian/changelog 2009-09-28 21:58:01 UTC (rev 24026)
+++ trunk/debathena/config/gdm-config/debian/changelog 2009-09-28 22:29:35 UTC (rev 24027)
@@ -1,11 +1,11 @@
debathena-gdm-config (1.15) unstable; urgency=low
* Display the OS version and Debathena metapackage in the corner
- of the login screen.
+ of the login screen (Trac: #158).
* To implement this feature, create debathena-*-branding packages for
metapackages that depend on gdm-config.
- -- Geoffrey Thomas <geofft@mit.edu> Mon, 28 Sep 2009 17:37:45 -0400
+ -- Geoffrey Thomas <geofft@mit.edu> Mon, 28 Sep 2009 18:21:45 -0400
debathena-gdm-config (1.14) unstable; urgency=low
Deleted: trunk/debathena/config/gdm-config/debian/distro.svg
Copied: trunk/debathena/config/gdm-config/debian/distro.svg.sh (from rev 24026, trunk/debathena/config/gdm-config/debian/distro.svg)
===================================================================
--- trunk/debathena/config/gdm-config/debian/distro.svg 2009-09-28 21:58:01 UTC (rev 24026)
+++ trunk/debathena/config/gdm-config/debian/distro.svg.sh 2009-09-28 22:29:35 UTC (rev 24027)
@@ -0,0 +1,11 @@
+#!/bin/sh
+cat <<'EOF'
+<?xml version="1.0"?>
+<svg width="300" height="10pt" xmlns="http://www.w3.org/2000/svg">
+<text style="font-family: Trebuchet MS; font-size: 10pt; font-weight: normal;" x="100%" y="10pt" text-anchor="end">
+EOF
+lsb_release -sd
+cat <<'EOF'
+</text>
+</svg>
+EOF
Property changes on: trunk/debathena/config/gdm-config/debian/distro.svg.sh
___________________________________________________________________
Name: svn:executable
+ *
Modified: trunk/debathena/config/gdm-config/debian/rules
===================================================================
--- trunk/debathena/config/gdm-config/debian/rules 2009-09-28 21:58:01 UTC (rev 24026)
+++ trunk/debathena/config/gdm-config/debian/rules 2009-09-28 22:29:35 UTC (rev 24027)
@@ -22,8 +22,8 @@
common-build-indep:: debathena/distro.svg
-debathena/distro.svg:
- sed "s/DISTRO/`lsb_release -sd`/" < debian/distro.svg > $@
+debathena/distro.svg: debian/distro.svg.sh
+ sh $< > $@
clean::
-rm debathena/distro.svg