summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Sherwood2006-06-25 14:21:03 -0400
committerGeorge Sherwood2006-06-25 14:21:03 -0400
commit6c116aa61ff3e1645b95adf94e255587e8ca893e (patch)
tree9c866c6e7682f7d7f34900c15d4ed040c9f80b4e
parent3bb0470ceaa407fc5a5b0699d8d5cccb658ba7d0 (diff)
A few more changes due to adding cups-old
-rwxr-xr-xprinter/foomatic/CONFIGURE4
-rw-r--r--printer/foomatic/HISTORY3
-rw-r--r--printer/hpoj/HISTORY3
-rwxr-xr-xprinter/hpoj/TRIGGERS3
4 files changed, 12 insertions, 1 deletions
diff --git a/printer/foomatic/CONFIGURE b/printer/foomatic/CONFIGURE
index 4b35bc2a4d..24c2e0fc91 100755
--- a/printer/foomatic/CONFIGURE
+++ b/printer/foomatic/CONFIGURE
@@ -7,6 +7,8 @@ if [ "${FOOMATIC_ENABLE_CONVERTER}" == "--enable-file-converter-check" ];
## Sorted in order of most to least installed per http://ledger.sourcemage.org/
if spell_ok cups; then
FOOMATIC_FILE_CONVERTER=cups
+ elif spell_ok cups-old; then
+ FOOMATIC_FILE_CONVERTER=cups-old
elif spell_ok a2ps; then
FOOMATIC_FILE_CONVERTER=a2ps
elif spell_ok enscript; then
@@ -16,6 +18,6 @@ if [ "${FOOMATIC_ENABLE_CONVERTER}" == "--enable-file-converter-check" ];
else
config_query_list FOOMATIC_FILE_CONVERTER \
"Which file converter would you like to install?" \
- cups a2ps enscript mpage
+ cups cups-old a2ps enscript mpage
fi
fi
diff --git a/printer/foomatic/HISTORY b/printer/foomatic/HISTORY
index 44d5015241..068303e3fb 100644
--- a/printer/foomatic/HISTORY
+++ b/printer/foomatic/HISTORY
@@ -1,3 +1,6 @@
+2006-06-25 George Sherwood <george@beernabeer.com>
+ * CONFIGURE: Added case for cups-old
+
2006-04-22 Jason Flatt <jflatt@sourcemage.org>
* CONFIGURE, DEPENDS: Added check for optional file converter (bug #
11205).
diff --git a/printer/hpoj/HISTORY b/printer/hpoj/HISTORY
index 0a7c6cd866..75806fa7d7 100644
--- a/printer/hpoj/HISTORY
+++ b/printer/hpoj/HISTORY
@@ -1,3 +1,6 @@
+2006-06-25 George Sherwood <george@beernabeer.com>
+ * TRIGGERS: Added check for cups-old
+
2006-03-12 Karsten Behrmann <BearPerson@sourcemage.org>
* DETAILS: (automated) Add KEYWORDS
diff --git a/printer/hpoj/TRIGGERS b/printer/hpoj/TRIGGERS
index 7260dfefc0..3b9cf6c90d 100755
--- a/printer/hpoj/TRIGGERS
+++ b/printer/hpoj/TRIGGERS
@@ -4,4 +4,7 @@
if spell_ok cups; then
on_cast cups cast_self
+fi &&
+if spell_ok cups-old; then
+ on_cast cups-old cast_self
fi