forked from matthiasbock/dymo-cups-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
from https://www.dymo.com/en-US/dymo-label-sdk-and-cups-drivers-for-linux-dymo-label-sdk-cups-linux-p--1
- Loading branch information
0 parents
commit 92a1e97
Showing
138 changed files
with
45,331 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Vladimir Buzuev vbuzuev@dymo.com |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
1.3.0 - added DYMO LabelWriter SE450 support | ||
1.2.0 - added 450 series support | ||
1.1.0 - added LabelWriter 4XL support; required CUPS 1.2 | ||
1.0.3 - fixed compilation problems with gcc 4.3 | ||
1.0.2 - added more debug messages | ||
1.0.0 - initial revision |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
========================= | ||
INSTALLATION INSTRUCTIONS | ||
========================= | ||
|
||
I. Install Source Package | ||
========================= | ||
|
||
To compile and install source package you will need: | ||
- recent C++ compiler. We used gcc ver. 3.3.5 & 4.0.1 | ||
- installed CUPS *.h files (cups/cups.h, cups/raster.h) | ||
- installed CUPS libraries (libcups, libcupsimage) | ||
|
||
To compile sources run follow commands from the package directory: | ||
./configure | ||
make | ||
|
||
To install compiled binaries and data files use command (you have to have root privileges): | ||
make install | ||
|
||
II. Known Problems | ||
=================== | ||
|
||
1. Error message "CUPS modeldir <dir> is not existed..." | ||
|
||
While running "configure" script tries to determine where CUPS is installed. | ||
For that it uses 'cups-config' utility if existed or uses default values for the dirs. | ||
If CUPS is installed into different directories you might see the above error message. | ||
To avoid it pass proper directories to "configure" script using environment variables, e.g. | ||
$ cups_datadir='/usr/local/share/cups' cups_serverbindir='/usr/local/lib/cups' ./configure | ||
|
||
Default directories for CUPS are '/usr/share/cups' and '/usr/lib/cups' | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# $Id: Makefile.am 4760 2008-06-19 22:21:35Z vbuzuev $ | ||
|
||
# DYMO LabelWriter Drivers | ||
# Copyright (C) 2008 Sanford L.P. | ||
|
||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
|
||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
|
||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
|
||
SUBDIRS = src ppd docs samples | ||
EXTRA_DIST = dymo-cups-drivers.spec LICENSE | ||
|
||
# | ||
# $Id: Makefile.am 4760 2008-06-19 22:21:35Z vbuzuev $ | ||
# |
Oops, something went wrong.