Skip to content

Commit

Permalink
Downloaded version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasbock committed Mar 22, 2018
0 parents commit 92a1e97
Show file tree
Hide file tree
Showing 138 changed files with 45,331 additions and 0 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Vladimir Buzuev vbuzuev@dymo.com
339 changes: 339 additions & 0 deletions COPYING

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions ChangeLog
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
33 changes: 33 additions & 0 deletions INSTALL
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'


339 changes: 339 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions Makefile.am
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 $
#
Loading

0 comments on commit 92a1e97

Please sign in to comment.