summaryrefslogtreecommitdiff
path: root/graphics/kbarcode
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/kbarcode')
-rw-r--r--graphics/kbarcode/Makefile36
-rw-r--r--graphics/kbarcode/distinfo2
-rw-r--r--graphics/kbarcode/files/patch-admin-configure.in.min7
-rw-r--r--graphics/kbarcode/files/patch-admin-cvs.sh69
-rw-r--r--graphics/kbarcode/files/patch-kbarcode-label.cpp9
-rw-r--r--graphics/kbarcode/files/patch-kbarcode-printersettings.cpp11
-rw-r--r--graphics/kbarcode/files/patch-kbarcode::zplutils.cpp11
-rw-r--r--graphics/kbarcode/pkg-descr19
-rw-r--r--graphics/kbarcode/pkg-plist38
9 files changed, 0 insertions, 202 deletions
diff --git a/graphics/kbarcode/Makefile b/graphics/kbarcode/Makefile
deleted file mode 100644
index b14857ffc499..000000000000
--- a/graphics/kbarcode/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# New ports collection makefile for: kbarcode
-# Date created: 05 July 2002
-# Whom: Andy Raffle <andy@digitalspecies.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= kbarcode
-PORTVERSION= 2.0.7
-PORTREVISION= 8
-CATEGORIES= graphics kde
-MASTER_SITES= SF/${PORTNAME}/Stable/${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A barcode and label printing application for KDE
-
-LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre
-
-DEPRECATED= Depends on QT3; unmaintained
-EXPIRATION_DATE= 2013-07-01
-
-USE_KDELIBS_VER= 3
-USES= gettext
-USE_GMAKE= yes
-USE_AUTOTOOLS= automake:env autoconf:env libtool:env
-GNU_CONFIGURE= yes
-INSTALLS_ICONS= yes
-
-pre-configure:
- @cd ${WRKSRC} \
- && ${RM} -f admin/libtool.m4.in admin/ltmain.sh \
- && ${CP} -f ${LIBTOOL_M4} admin/libtool.m4.in \
- && ${CP} -f ${LTMAIN} admin/ltmain.sh \
- && ${SETENV} ${MAKE_ENV} UNSERMAKE=no ${GMAKE} -f admin/Makefile.common
-
-.include <bsd.port.mk>
diff --git a/graphics/kbarcode/distinfo b/graphics/kbarcode/distinfo
deleted file mode 100644
index 6271a83cdeec..000000000000
--- a/graphics/kbarcode/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (kbarcode-2.0.7.tar.gz) = 063cfd52ec0ce32bf1626e6006739d0cc484fa7e5308a8614bc52db0e3b295de
-SIZE (kbarcode-2.0.7.tar.gz) = 1087860
diff --git a/graphics/kbarcode/files/patch-admin-configure.in.min b/graphics/kbarcode/files/patch-admin-configure.in.min
deleted file mode 100644
index e13feef0cd21..000000000000
--- a/graphics/kbarcode/files/patch-admin-configure.in.min
+++ /dev/null
@@ -1,7 +0,0 @@
---- admin/configure.in.min.orig 2007-04-09 17:27:01.000000000 -0500
-+++ admin/configure.in.min 2010-09-05 15:33:17.000000000 -0500
-@@ -46,2 +46,4 @@
- dnl Checks for programs.
-+AC_PROG_CC
-+AC_PROG_CXX
- AC_CHECK_COMPILERS
diff --git a/graphics/kbarcode/files/patch-admin-cvs.sh b/graphics/kbarcode/files/patch-admin-cvs.sh
deleted file mode 100644
index fa6ca8f833f0..000000000000
--- a/graphics/kbarcode/files/patch-admin-cvs.sh
+++ /dev/null
@@ -1,69 +0,0 @@
---- admin/cvs.sh.orig 2008-01-08 01:30:21.000000000 +0900
-+++ admin/cvs.sh 2008-05-26 21:47:50.000000000 +0900
-@@ -29,66 +29,9 @@
-
- check_autotool_versions()
- {
--required_autoconf_version="2.53 or newer"
- AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1`
--case $AUTOCONF_VERSION in
-- Autoconf*2.5* | autoconf*2.5* | autoconf*2.6* ) : ;;
-- "" )
-- echo "*** AUTOCONF NOT FOUND!."
-- echo "*** KDE requires autoconf $required_autoconf_version"
-- exit 1
-- ;;
-- * )
-- echo "*** YOU'RE USING $AUTOCONF_VERSION."
-- echo "*** KDE requires autoconf $required_autoconf_version"
-- exit 1
-- ;;
--esac
--
- AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1`
--case $AUTOHEADER_VERSION in
-- Autoconf*2.5* | autoheader*2.5* | autoheader*2.6* ) : ;;
-- "" )
-- echo "*** AUTOHEADER NOT FOUND!."
-- echo "*** KDE requires autoheader $required_autoconf_version"
-- exit 1
-- ;;
-- * )
-- echo "*** YOU'RE USING $AUTOHEADER_VERSION."
-- echo "*** KDE requires autoheader $required_autoconf_version"
-- exit 1
-- ;;
--esac
--
- AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1`
--required_automake_version="1.6.1 or newer"
--case $AUTOMAKE_STRING in
-- automake*1.5d* | automake*1.5* | automake*1.5-* )
-- echo "*** YOU'RE USING $AUTOMAKE_STRING."
-- echo "*** KDE requires automake $required_automake_version"
-- exit 1
-- ;;
-- automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.10*)
-- echo "*** $AUTOMAKE_STRING found."
-- UNSERMAKE=no
-- ;;
-- "" )
-- echo "*** AUTOMAKE NOT FOUND!."
-- echo "*** KDE requires automake $required_automake_version"
-- exit 1
-- ;;
-- *unsermake* ) :
-- echo "*** YOU'RE USING UNSERMAKE."
-- echo "*** GOOD LUCK!! :)"
-- UNSERMAKE=unsermake
-- ;;
-- * )
-- echo "*** YOU'RE USING $AUTOMAKE_STRING."
-- echo "*** KDE requires automake $required_automake_version"
-- exit 1
-- ;;
--esac
--unset required_automake_version
- }
-
- cvs()
diff --git a/graphics/kbarcode/files/patch-kbarcode-label.cpp b/graphics/kbarcode/files/patch-kbarcode-label.cpp
deleted file mode 100644
index aa250deae3d7..000000000000
--- a/graphics/kbarcode/files/patch-kbarcode-label.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
---- kbarcode/label.cpp.orig Sat Aug 21 11:06:41 2004
-+++ kbarcode/label.cpp Sat Aug 21 11:06:53 2004
-@@ -369,5 +369,5 @@
- return d->getId();
-
- return -1;
--};
-+}
-
diff --git a/graphics/kbarcode/files/patch-kbarcode-printersettings.cpp b/graphics/kbarcode/files/patch-kbarcode-printersettings.cpp
deleted file mode 100644
index 919c5b5c1728..000000000000
--- a/graphics/kbarcode/files/patch-kbarcode-printersettings.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- kbarcode/printersettings.cpp.orig Sat Aug 21 11:08:30 2004
-+++ kbarcode/printersettings.cpp Sat Aug 21 11:08:43 2004
-@@ -146,7 +146,7 @@
- int PrinterSettings::getQuality() const
- {
- return lpdata->quality == Middle || lpdata->quality == VeryHigh? High : lpdata->quality;
--};
-+}
-
- KPrinter* PrinterSettings::setupPrinter( QWidget* parent, bool immediately, const QString & prn )
- {
diff --git a/graphics/kbarcode/files/patch-kbarcode::zplutils.cpp b/graphics/kbarcode/files/patch-kbarcode::zplutils.cpp
deleted file mode 100644
index f64e88437dde..000000000000
--- a/graphics/kbarcode/files/patch-kbarcode::zplutils.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- kbarcode/zplutils.cpp.orig Mon Mar 21 00:31:21 2005
-+++ kbarcode/zplutils.cpp Thu Mar 16 12:27:36 2006
-@@ -256,7 +256,7 @@
- ipl += field( "<ESC>E3<CAN>" ); // choose format number 3
-
- for( unsigned int i = 0; i < m_values.count(); i++ )
-- ipl += field( m_values[i] + ( i != m_values.count() - 1 ? "<CR>" : QString::null ) );
-+ ipl += field( m_values[i] + ( i != m_values.count() - 1 ? QString("<CR>") : QString::null ) );
-
- // end actual data
- ipl += field( "<ETB>" );
diff --git a/graphics/kbarcode/pkg-descr b/graphics/kbarcode/pkg-descr
deleted file mode 100644
index 8088c039ab46..000000000000
--- a/graphics/kbarcode/pkg-descr
+++ /dev/null
@@ -1,19 +0,0 @@
-KBarcode creates, handles, manages and prints barcodes
-
-* a label designer with more than 1,000 predefined labels
- and support for creating customized labels
-* a barcode generator for creating single barcodes and
- saving or printing them
-* support for using an SQL database for storing data
-* a configuration wizard for connecting to an SQL database
- and creating database tables
-* support for different barcode formats (like UPC, EAN, etc.)
- for each article
-* support for adding customer-related information and print
- customized barcodes for each article
-* batch control for importing a very large number of barcode
- descriptions (quantity and number of articles) and printing
- them using the specified barcode label
-* a friendly GUI.
-
-WWW: http://www.kbarcode.net
diff --git a/graphics/kbarcode/pkg-plist b/graphics/kbarcode/pkg-plist
deleted file mode 100644
index a4fe7815e91d..000000000000
--- a/graphics/kbarcode/pkg-plist
+++ /dev/null
@@ -1,38 +0,0 @@
-bin/kbarcode
-lib/kde3/kfile_kbarcode.la
-lib/kde3/kfile_kbarcode.so
-share/applications/kde/kbarcode-batch.desktop
-share/applications/kde/kbarcode-editor.desktop
-share/applications/kde/kbarcode-label.desktop
-share/applications/kde/kbarcode-single.desktop
-share/applications/kde/kbarcode.desktop
-share/apps/kbarcode/barcode.ps
-share/apps/kbarcode/barcodes.html
-share/apps/kbarcode/exampledata.sql
-share/apps/kbarcode/labeldefinitions.sql
-share/apps/kbarcode/logo.png
-share/apps/kbarcode/rules.xml
-share/icons/hicolor/16x16/actions/barcode.png
-share/icons/hicolor/16x16/actions/kbarcodeellipse.png
-share/icons/hicolor/16x16/actions/kbarcodegrid.png
-share/icons/hicolor/16x16/actions/kbarcodelinetool.png
-share/icons/hicolor/16x16/apps/kbarcode.png
-share/icons/hicolor/22x22/actions/barcode.png
-share/icons/hicolor/32x32/actions/barcode.png
-share/icons/hicolor/32x32/actions/kbarcoderect.png
-share/icons/hicolor/32x32/apps/kbarcode.png
-share/icons/hicolor/64x64/apps/kbarcode.png
-share/locale/de/LC_MESSAGES/kbarcode.mo
-share/locale/el/LC_MESSAGES/kbarcode.mo
-share/locale/es/LC_MESSAGES/kbarcode.mo
-share/locale/fi/LC_MESSAGES/kbarcode.mo
-share/locale/fr/LC_MESSAGES/kbarcode.mo
-share/locale/hu/LC_MESSAGES/kbarcode.mo
-share/locale/it/LC_MESSAGES/kbarcode.mo
-share/locale/nl/LC_MESSAGES/kbarcode.mo
-share/locale/pl/LC_MESSAGES/kbarcode.mo
-share/locale/sv/LC_MESSAGES/kbarcode.mo
-share/locale/tr/LC_MESSAGES/kbarcode.mo
-share/services/kfile_kbarcode.desktop
-@dirrm share/apps/kbarcode
-@dirrmtry share/applications/kde