rev 13073 - in kde-extras/kile/branches: . experimental experimental/debian experimental/debian/cdbs
Fathi Boudra
fabo at alioth.debian.org
Tue Dec 30 14:17:25 UTC 2008
Author: fabo
Date: 2008-12-30 14:17:25 +0000 (Tue, 30 Dec 2008)
New Revision: 13073
Added:
kde-extras/kile/branches/experimental/
kde-extras/kile/branches/experimental/debian/
kde-extras/kile/branches/experimental/debian/README.Debian
kde-extras/kile/branches/experimental/debian/TODO.Debian
kde-extras/kile/branches/experimental/debian/cdbs/
kde-extras/kile/branches/experimental/debian/cdbs/control.mk
kde-extras/kile/branches/experimental/debian/cdbs/dh_sameversiondeps
kde-extras/kile/branches/experimental/debian/cdbs/kde.mk
kde-extras/kile/branches/experimental/debian/cdbs/variables.mk
kde-extras/kile/branches/experimental/debian/cdbs/versions.mk
kde-extras/kile/branches/experimental/debian/changelog
kde-extras/kile/branches/experimental/debian/compat
kde-extras/kile/branches/experimental/debian/control
kde-extras/kile/branches/experimental/debian/copyright
kde-extras/kile/branches/experimental/debian/docs
kde-extras/kile/branches/experimental/debian/kile.1
kde-extras/kile/branches/experimental/debian/kile.xpm
kde-extras/kile/branches/experimental/debian/menu
kde-extras/kile/branches/experimental/debian/rules
kde-extras/kile/branches/experimental/debian/watch
Log:
* Add Kile for KDE 4 initial release.
Added: kde-extras/kile/branches/experimental/debian/README.Debian
===================================================================
--- kde-extras/kile/branches/experimental/debian/README.Debian (rev 0)
+++ kde-extras/kile/branches/experimental/debian/README.Debian 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,11 @@
+kile for Debian
+---------------
+
+Kile no longer comes with a Gnuplot front end. The Gnuplot front end that used
+to be part of Kile is now a separate application named Qgfe maintained by
+Pascal Brachet at http://www.xm1math.net/qgfe/ .
+
+Syntax files bibtex.xml and latex.xml are provided by kdelibs5-data package.
+
+ -- Fathi Boudra <fabo at debian.org> Tue, 30 Dec 2008 13:03:20 +0100
+
Added: kde-extras/kile/branches/experimental/debian/TODO.Debian
===================================================================
--- kde-extras/kile/branches/experimental/debian/TODO.Debian (rev 0)
+++ kde-extras/kile/branches/experimental/debian/TODO.Debian 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,5 @@
+* confirm #319409 resolution.
+* Add script to keep bibtex.xml and latex.xml up-to-date in kdelibs-data
+ (Closes: #358863).
+ Updated issue: highlighters will be shipped with kdelibs and users could
+ use "load new highlightings" button in the configuration dialog.
Added: kde-extras/kile/branches/experimental/debian/cdbs/control.mk
===================================================================
--- kde-extras/kile/branches/experimental/debian/cdbs/control.mk (rev 0)
+++ kde-extras/kile/branches/experimental/debian/cdbs/control.mk 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,19 @@
+include debian/cdbs/versions.mk
+debian/control: debian/control.tmp
+ mv debian/control.tmp debian/control
+
+debian/control.tmp: update-versions
+
+update-versions: debian/control.in
+ sed "s/CDBS_MIN_VER/$(CDBS_MIN_VER)/;\
+ s/QUILT_MIN_VER/$(QUILT_MIN_VER)/;\
+ s/CMAKE_MIN_VER/$(CMAKE_MIN_VER)/;\
+ s/KDELIBS_VERSION/$(KDELIBS_VERSION)/;\
+ s/KDELIBS_UPSTREAM_VERSION/$(KDELIBS_UPSTREAM_VERSION)/;\
+ s/KDELIBS_SOURCE_VERSION/$(KDELIBS_SOURCE_VERSION)/;\
+ s/KDEPIMLIBS_VERSION/$(KDEPIMLIBS_VERSION)/;\
+ s/KDEPIMLIBS_SOURCE_VERSION/$(KDEPIMLIBS_SOURCE_VERSION)/;\
+ s/KDEPIMLIBS_UPSTREAM_VERSION/$(KDEPIMLIBS_UPSTREAM_VERSION)/;\
+ " debian/control.in > debian/control.tmp
+
+.PHONY: update-versions
Added: kde-extras/kile/branches/experimental/debian/cdbs/dh_sameversiondeps
===================================================================
--- kde-extras/kile/branches/experimental/debian/cdbs/dh_sameversiondeps (rev 0)
+++ kde-extras/kile/branches/experimental/debian/cdbs/dh_sameversiondeps 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,257 @@
+#!/usr/bin/perl -w
+
+use strict;
+use Dpkg::Control;
+use Dpkg::Substvars;
+use Dpkg::ErrorHandling;
+use File::Copy;
+
+use Debian::Debhelper::Dh_Lib;
+
+my $namespace = "sameVersionDep";
+my @fields = qw(Depends Recommends Suggests Enhances Pre-Depends);
+my $re_fields = join("|", @fields);
+my $re_pkgname = qr/[a-z0-9][a-z0-9+.-]*/;
+my $re_oursubstvar = qr/\$\{($namespace:(.*?))\}/;
+my $re_splitsubstvar = qr/^($re_pkgname)(?::($re_pkgname))?(?:-($re_fields))?$/;
+
+# Global substvars file
+my $g_substvars = new Dpkg::Substvars;
+$g_substvars->parse("debian/substvars") if (-r "debian/substvars");
+
+sub extract_package_names {
+ my $val = shift;
+ $val =~ s/\([^)]+\)//g;
+ $val =~ s/^\s+//;
+ $val =~ s/\s+$//;
+ return split(/\s*,\s*/, $val);
+}
+
+sub Shlibsvars::new {
+ my ($cls, $package, $control, $substvars_file) = @_;
+ my $self = bless ( {
+ "package" => $package,
+ "control" => $control,
+ "file" => $substvars_file,
+ }, $cls);
+ $self->{substvars} = new Dpkg::Substvars;
+ if (-r $self->{file}) {
+ $self->{substvars}->parse($self->{file});
+ }
+ return $self;
+}
+
+sub Shlibsvars::get_fieldval {
+ my ($self, $field) = @_;
+
+ my $pkg = $self->{control}->get_pkg_by_name($self->{package});
+ return undef if (!defined $pkg || !exists $pkg->{$field});
+
+ # Turn of warnings for substvars runs
+ my $save_quiet = $Dpkg::ErrorHandling::quiet_warnings;
+ $Dpkg::ErrorHandling::quiet_warnings = 1;
+
+ my $val = $pkg->{$field};
+ $val = $self->{substvars}->substvars($val);
+ $val = $g_substvars->substvars($val);
+
+ $Dpkg::ErrorHandling::quiet_warnings = $save_quiet;
+ return $val;
+}
+
+sub Shlibsvars::extract_deps {
+ my ($self, $field, $deppkg) = @_;
+
+ my $val = $self->get_fieldval($field);
+ return undef() unless defined $val;
+
+ # Extract dependency fields we need
+ my @matched_deps;
+ for my $dep (split(/\s*,\s*/, $val)) {
+ if ($dep =~ /^\Q$deppkg\E(?:$|[\W])/) {
+ push @matched_deps, $dep;
+ }
+ }
+ return @matched_deps;
+}
+
+sub Shlibsvars::get_dep_package_names {
+ my ($self, $field) = @_;
+
+ my $val = $self->get_fieldval($field);
+ return undef() unless defined $val;
+ return extract_package_names($val);
+}
+
+sub get_package_dpkg_status {
+ my $binpkgs = shift;
+ my $fields = shift;
+ $fields = [ "Source", "Version" ] unless defined $fields;
+ my $regexp_fields = join("|", @$fields);
+ my %status;
+
+ my $pid = open(DPKG, "-|");
+ error("cannot fork for dpkg-query --status") unless defined($pid);
+ if (!$pid) {
+ # Child process running dpkg --search and discarding errors
+ close STDERR;
+ open STDERR, ">", "/dev/null";
+ $ENV{LC_ALL} = "C";
+ exec("dpkg-query", "--status", "--", @$binpkgs) or error("cannot exec dpkg-query");
+ }
+ my $curpkg;
+ while (defined($_ = <DPKG>)) {
+ if (m/^Package:\s*(.*)$/) {
+ $curpkg = $1;
+ $status{$curpkg} = {};
+ } elsif (defined($curpkg)) {
+ if (m/^($regexp_fields):\s*(.*)$/) {
+ my $field = $1;
+ error("Dublicate field $field for the $curpkg package in the dpkg status file")
+ if (exists $status{$curpkg}{$field});
+ $status{$curpkg}{$field} = $2;
+ }
+ } else {
+ error("Missing Package entry at $.");
+ }
+ }
+ close(DPKG);
+
+ # Check if all packages were processed
+ for my $pkg (@$binpkgs) {
+ error("Package $pkg was not found in the dpkg status") unless exists $status{$pkg};
+ }
+ return \%status;
+}
+
+sub write_substvar($$$$) {
+ my ($pkgname, $varname, $value, $substvars) = @_;
+ my @contents;
+ my $varset = 0;
+
+ my $file = (-r $substvars) ? $substvars : "debian/substvars";
+ if (-r $file) {
+ open(FILE, "<$file") or die "Unable to open substvars file '$file' for reading\n";
+ while (<FILE>) {
+ if (!$varset && /^\s*\Q$varname=\E/) {
+ push @contents, "$varname=$value\n";
+ $varset = 1;
+ } else {
+ push @contents, $_;
+ }
+ }
+ close(FILE);
+ } else {
+ # Fallback to default
+ $file = $substvars;
+ }
+
+ open(FILE, ">$file.tmp") or die "Unable to open substvars file '$file.tmp' for writing\n";
+ for (@contents) {
+ print FILE $_;
+ }
+ if (!$varset) {
+ print FILE "$varname=$value", "\n";
+ }
+ close(FILE);
+
+ File::Copy::move("$file.tmp", "$file");
+}
+
+init();
+
+my $control = new Dpkg::Control;
+my %shlibsvars;
+
+foreach my $package (@{$dh{DOPACKAGES}}) {
+ my $pkg_substvars = sprintf("debian/%ssubstvars", pkgext($package));
+ my $pkg = $control->get_pkg_by_name($package);
+
+ for my $fieldname (@fields) {
+ if (exists $pkg->{$fieldname}) {
+ my $fieldval = $pkg->{$fieldname};
+ my $pkgname = $pkg->{Package};
+
+ while ($fieldval =~ m/\G.*?$re_oursubstvar/gs) {
+ my $varname = $1;
+ my $varparams = $2;
+ if ($varparams =~ m/$re_splitsubstvar/) {
+ my $dep2add = $1;
+ my $scanpkg = $2;
+ $scanpkg = $dh{MAINPACKAGE} unless defined $scanpkg;
+ my $deptype = $3;
+ $deptype = $fieldname unless defined $deptype;
+
+ if (!exists $shlibsvars{$scanpkg}) {
+ my $scan_substvars = sprintf("debian/%ssubstvars", pkgext($scanpkg));
+ $shlibsvars{$scanpkg} = new Shlibsvars($scanpkg, $control, $scan_substvars);
+ }
+
+ # Get dpkg status information about dep2add package
+ my $dep2add_status = get_package_dpkg_status( [ $dep2add ], [ "Source", "Version", $deptype ] );
+ $dep2add_status = $dep2add_status->{$dep2add};
+
+ # Check validility of dep2add status
+ error("Could not retreive source package name for $dep2add package. Is it installed?")
+ unless exists $dep2add_status->{Source} && exists $dep2add_status->{Version};
+ error("Package $dep2add has no $deptype field. This configuration is unsupported. ")
+ unless exists $dep2add_status->{$deptype};
+ my @dep2add_deps = extract_package_names($dep2add_status->{$deptype});
+
+ # Get deptype packages of scanpkg
+ my $vars = $shlibsvars{$scanpkg};
+ my @scan_deps = $vars->get_dep_package_names($deptype);
+
+ # Intersect both _deps arrays to find common dependencies
+ my @commondeps;
+ {
+ my %_map;
+ map { $_map{$_} = 1; } @scan_deps;
+ map { push @commondeps, $_ if exists $_map{$_} } @dep2add_deps;
+ }
+
+ # Get status information about common packages. They need to come from the
+ # same source package as dep2add package and their versions should match
+ my $depstatus = get_package_dpkg_status(\@commondeps, [ "Source", "Version" ]);
+ @commondeps = ();
+ while (my ($pkg, $status) = each(%$depstatus)) {
+ push @commondeps, $pkg
+ if (exists $status->{Source} && exists $status->{Version} &&
+ ($status->{Source} eq $dep2add_status->{Source}) &&
+ ($status->{Version} eq $dep2add_status->{Version}));
+ }
+
+ # Ideally we should have got the list down to one. if not, combine
+ # version relationships
+ my @fulldeps;
+ if (!@commondeps) {
+ error("$0: no same version dependencies for '$varname' found (at $fieldname of the $package package)");
+ } else {
+ for my $deppkg (@commondeps) {
+ my @deps = $vars->extract_deps($deptype, $deppkg);
+ map s/\b\Q$deppkg\E\b/$dep2add/g, @deps;
+ push @fulldeps, @deps;
+ }
+
+ # Drop dupes
+ @fulldeps = sort @fulldeps;
+ my @uniqdeps;
+ my $_prevdep;
+ for my $dep (@fulldeps) {
+ my $tmp = "$dep";
+ $tmp =~ s/\s//g;
+ push @uniqdeps, $dep if (!defined $_prevdep || $_prevdep ne $tmp);
+ $_prevdep = $tmp;
+ }
+ # Write substvar for the package
+ write_substvar($pkgname, $varname, join(", ", @uniqdeps), $pkg_substvars);
+ }
+ } else {
+ error("Invalid '$namespace' substvar syntax: $varparams");
+ }
+ }
+ }
+ }
+}
+
+exit 0
Property changes on: kde-extras/kile/branches/experimental/debian/cdbs/dh_sameversiondeps
___________________________________________________________________
Name: svn:executable
+ *
Added: kde-extras/kile/branches/experimental/debian/cdbs/kde.mk
===================================================================
--- kde-extras/kile/branches/experimental/debian/cdbs/kde.mk (rev 0)
+++ kde-extras/kile/branches/experimental/debian/cdbs/kde.mk 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,81 @@
+include /usr/share/cdbs/1/class/cmake.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
+include /usr/share/cdbs/1/rules/utils.mk
+
+# Include default KDE 4 cmake configuration variables
+include debian/cdbs/variables.mk
+# Pass standard KDE 4 flags to cmake via appropriate CDBS variable
+# (DEB_CMAKE_EXTRA_FLAGS)
+DEB_CMAKE_EXTRA_FLAGS += $(DEB_CMAKE_KDE4_FLAGS) $(DEB_CMAKE_CUSTOM_FLAGS)
+
+DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
+
+#DEB_CMAKE_PREFIX = /usr/lib/kde4
+DEB_DH_INSTALL_SOURCEDIR = debian/tmp
+#DEB_DH_SHLIBDEPS_ARGS = -l/usr/lib/kde4/lib/
+DEB_KDE_ENABLE_FINAL ?=
+#DEB_MAKE_ENVVARS += XDG_CONFIG_DIRS=/etc/xdg XDG_DATA_DIRS=/usr/share
+#DEB_STRIP_EXCLUDE = so
+
+common-build-arch:: debian/stamp-man-pages
+debian/stamp-man-pages:
+ if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
+ for f in $$(find debian/man -name '*.sgml'); do \
+ docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
+ done
+ for f in $$(find debian/man -name '*.man'); do \
+ soelim -I debian/man $$f \
+ > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
+ done
+ touch debian/stamp-man-pages
+
+clean::
+ifndef THIS_SHOULD_GO_TO_UNSTABLE
+ #guard against experimental uploads to unstable
+ dpkg-parsechangelog | grep ^Distribution | grep -q 'experimental\|UNRELEASED'
+endif
+ rm -rf debian/man/out
+ -rmdir debian/man
+ rm -f debian/stamp-man-pages
+ rm -f CMakeCache.txt
+
+
+$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
+ if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
+ if test -e debian/$(cdbs_curpkg).lintian; then \
+ install -p -D -m644 debian/$(cdbs_curpkg).lintian \
+ debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
+ fi
+ if test -e debian/$(cdbs_curpkg).presubj; then \
+ install -p -D -m644 debian/$(cdbs_curpkg).presubj \
+ debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
+ fi
+ if test -e debian/$(cdbs_curpkg).bugscript; then \
+ install -p -D -m755 debian/$(cdbs_curpkg).bugscript \
+ debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/script; \
+ fi
+ if test -e debian/$(cdbs_curpkg).bugcontrol; then \
+ install -p -D -m644 debian/$(cdbs_curpkg).bugcontrol \
+ debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/control; \
+ fi
+
+binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
+ set -e; \
+ for doc in `cd $(DEB_DESTDIR)/usr/share/doc/kde/HTML/en; find . -name index.docbook`; do \
+ pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
+ echo Building $$pkg HTML docs...; \
+ mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \
+ cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \
+ meinproc4 $(DEB_DESTDIR)/usr/share/doc/kde/HTML/en/$$pkg/index.docbook; \
+ done
+ for pkg in $(DOC_HTML_PRUNE) ; do \
+ rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \
+ done
+
+
+# Process "sameVersionDep:" substvars
+DH_SAMEVERSIONDEPS=debian/cdbs/dh_sameversiondeps
+common-binary-predeb-arch common-binary-predeb-indep::
+ @if [ ! -x "$(DH_SAMEVERSIONDEPS)" ]; then chmod a+x "$(DH_SAMEVERSIONDEPS)"; fi
+ $(DH_SAMEVERSIONDEPS) $(if $(filter common-binary-predeb-arch,$@),-a,-i)
Added: kde-extras/kile/branches/experimental/debian/cdbs/variables.mk
===================================================================
--- kde-extras/kile/branches/experimental/debian/cdbs/variables.mk (rev 0)
+++ kde-extras/kile/branches/experimental/debian/cdbs/variables.mk 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,49 @@
+# KDE 4 global configuration file installation directory
+DEB_CONFIG_INSTALL_DIR ?= /usr/share/kde4/config
+
+# Standard Debian KDE 4 cmake flags
+DEB_CMAKE_KDE4_FLAGS += \
+ -DCMAKE_BUILD_TYPE=Debian \
+ -DKDE4_ENABLE_FINAL=$(KDE4-ENABLE-FINAL) \
+ -DKDE4_BUILD_TESTS=false \
+ -DKDE_DISTRIBUTION_TEXT="Debian packages" \
+ -DKDE_DEFAULT_HOME=.kde4 \
+ -DCMAKE_SKIP_RPATH=true \
+ -DKDE4_USE_ALWAYS_FULL_RPATH=false \
+ -DCONFIG_INSTALL_DIR=$(DEB_CONFIG_INSTALL_DIR) \
+ -DDATA_INSTALL_DIR=/usr/share/kde4/apps \
+ -DHTML_INSTALL_DIR=/usr/share/doc/kde4/HTML \
+ -DKCFG_INSTALL_DIR=/usr/share/kde4/config.kcfg \
+ -DLIB_INSTALL_DIR=/usr/lib \
+ -DSYSCONF_INSTALL_DIR=/etc
+
+# Support building with enable final (disabled by default)
+DEB_KDE_ENABLE_FINAL ?=
+KDE4-ENABLE-FINAL := false
+ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
+ DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
+ ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(treat_me_gently_arches)))
+ KDE4-ENABLE-FINAL := $(if $(DEB_KDE_ENABLE_FINAL),true,false)
+ endif
+endif
+
+#### Default additional (custom) cmake flags ####
+DEB_CMAKE_CUSTOM_FLAGS ?=
+
+# Set the one below to something else than 'yes' to disable linking
+# with --as-needed (on by default)
+DEB_KDE_LINK_WITH_AS_NEEDED ?= yes
+ifneq (,$(findstring yes, $(DEB_KDE_LINK_WITH_AS_NEEDED)))
+ ifeq (,$(findstring no-as-needed, $(DEB_BUILD_OPTIONS)))
+ DEB_KDE_LINK_WITH_AS_NEEDED := yes
+ DEB_CMAKE_CUSTOM_FLAGS += \
+ -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
+ -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
+ -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed"
+ else
+ DEB_KDE_LINK_WITH_AS_NEEDED := no
+ endif
+else
+ DEB_KDE_LINK_WITH_AS_NEEDED := no
+endif
Added: kde-extras/kile/branches/experimental/debian/cdbs/versions.mk
===================================================================
--- kde-extras/kile/branches/experimental/debian/cdbs/versions.mk (rev 0)
+++ kde-extras/kile/branches/experimental/debian/cdbs/versions.mk 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,14 @@
+
+CDBS_MIN_VER:=0.4.52
+QUILT_MIN_VER:=0.40
+CMAKE_MIN_VER:=2.4.8
+
+
+KDELIBS_VERSION:=$(shell dpkg -l kdelibs5 | grep kdelibs5 | awk '{print $$3}')
+KDELIBS_SOURCE_VERSION:=$(shell echo $(KDELIBS_VERSION) | sed 's/+b.*//')
+KDELIBS_UPSTREAM_VERSION:=$(shell echo $(KDELIBS_VERSION) | sed 's/-.*//')
+
+KDEPIMLIBS_VERSION:=$(shell dpkg -l kdepimlibs5 | grep kdepimlibs5 | awk '{print $$3}')
+KDEPIMLIBS_SOURCE_VERSION:=$(shell echo $(KDEPIMLIBS_VERSION) | sed 's/+b.*//')
+KDEPIMLIBS_UPSTREAM_VERSION:=$(shell echo $(KDEPIMLIBS_VERSION) | sed 's/-.*//')
+
Added: kde-extras/kile/branches/experimental/debian/changelog
===================================================================
--- kde-extras/kile/branches/experimental/debian/changelog (rev 0)
+++ kde-extras/kile/branches/experimental/debian/changelog 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,407 @@
+kile (1:2.0.80+svn903157-1) UNRELEASED; urgency=low
+
+ * Initial KDE4 release
+
+ -- Fathi Boudra <fabo at debian.org> Tue, 30 Dec 2008 14:15:38 +0100
+
+kile (1:2.0.3-1) unstable; urgency=low
+
+ * New upstream release (Closes: #484146, #489618)
+ * Bump Standards-Version to 3.8.0 (no changes needed)
+ * Fix lintian warning: debhelper-but-no-misc-depends
+
+ -- Fathi Boudra <fabo at debian.org> Tue, 30 Dec 2008 12:20:57 +0100
+
+kile (1:2.0.1-1) unstable; urgency=low
+
+ * New upstream release (Closes: #458512)
+ * Bump compat/debhelper to 6
+
+ -- Fathi Boudra <fabo at debian.org> Sat, 17 May 2008 20:26:09 +0200
+
+kile (1:2.0.1~rc1-1) unstable; urgency=low
+
+ * New upstream release
+ * Remove automake1.9 and libtool build dependencies
+ * Switch to quilt patch system
+ * Bump Standards-Version to 3.7.3
+ * Add Vcs-Browser and Vcs-Svn fields
+ * Use Homepage field
+ * Add Arabic, Bulgarian, Malay, Low Saxon and Thai translations packages
+ * Update copyright
+ * Update menu file to latest Debian menu policy
+ * Use --as-needed flags
+ * Promote kpdf to Recommends
+ * Add dvipng to Recommends
+
+ -- Fathi Boudra <fabo at debian.org> Mon, 17 Mar 2008 16:41:14 +0100
+
+kile (1:2.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Mark Purcell <msp at debian.org> Tue, 20 Nov 2007 20:47:13 +0000
+
+kile (1:2.0~b1-1) unstable; urgency=low
+
+ * New Upstream Release
+ * Remove obsolete patches:
+ - debian/patches/03_libtool_update.diff
+ - debian/patches/11_fifo_in_tmp.diff
+ - debian/patches/12_remove_kilespell.diff
+ - debian/patches/07_remove_tips_cpp.diff
+
+ -- Mark Purcell <msp at debian.org> Thu, 06 Sep 2007 10:53:22 +0100
+
+kile (1:1.9.3-4) unstable; urgency=low
+
+ * Fix wrong conflicts/replaces of kile-i18n-* packages. (Closes: 428340)
+ Thanks to Michael Biebl.
+ * Remove Ana from uploaders field as she requested.
+
+ -- Fathi Boudra <fboudra at free.fr> Mon, 11 Jun 2007 19:47:43 +0200
+
+kile (1:1.9.3-3) unstable; urgency=low
+
+ * Update tex documentation location and fifo in tmp patches.
+ * Add patch to remove tips.cpp. Fix FTBFS on Ubuntu.
+ * Add patch to remove kilespell. (Closes: #416936)
+ * Split kile-i18n in kile-i18n-*. (Closes: #425996)
+ * Update control:
+ * Remove tetex-* Depends/Recommends. (Closes: #419763)
+ * Replace texlive-base-bin by texlive-latex-base
+
+ -- Fathi Boudra <fboudra at free.fr> Sat, 26 May 2007 13:07:10 +0200
+
+kile (1:1.9.3-2) unstable; urgency=low
+
+ * Suggest: kpdf, gv (Closes: #408824)
+ - kile: Kile should suggest/recommend kpdf and gv
+ * Basic get-orig-source target
+ * Apply fifo-in-tmp patch from Thomas Braun
+ - kile becomes CPU hog when "Let Kile process LyX..." is checked in
+ config (Closes: #406470)
+
+ -- Mark Purcell <msp at debian.org> Thu, 22 Mar 2007 22:02:39 +0000
+
+kile (1:1.9.3-1) unstable; urgency=low
+
+ [Fathi Boudra]
+ * New upstream release
+
+ -- Fathi Boudra <fboudra at free.fr> Mon, 20 Nov 2006 10:28:34 +0100
+
+kile (1:1.9.2-2) unstable; urgency=low
+
+ [Fathi Boudra]
+ * Fix tex help path. Thanks to Thomas Braun (Closes: #359872)
+ * Fix not-binnmuable-all-depends-any
+
+ -- Fathi Boudra <fboudra at free.fr> Mon, 16 Oct 2006 15:35:17 +0200
+
+kile (1:1.9.2-1) unstable; urgency=low
+
+ [Fathi Boudra]
+ * New upstream release (Closes: #337550, #359932, #382317)
+
+ -- Fathi Boudra <fboudra at free.fr> Sat, 19 Aug 2006 15:45:38 +0200
+
+kile (1:1.9.1-2) unstable; urgency=low
+
+ [Mark Purcell]
+ * Update debian/watch
+
+ [Ana Beatriz Guerrero Lopez]
+ * Dropping re-libtoolizing at build time, instead updating libtool
+ with a patch. (Closes: #379827).
+
+ -- Ana Beatriz Guerrero Lopez <ana at ekaia.org> Fri, 28 Jul 2006 22:20:06 +0200
+
+kile (1:1.9.1-1) unstable; urgency=low
+
+ [Fathi Boudra]
+ * New maintainers with Ben's agreement
+ * Maintainer: KDE Extras Team
+ * Uploaders: Ana Beatriz Guerrero Lopez, Mark Purcell and Fathi Boudra
+ * New upstream release (Closes: #337550, #358250, #358857, #276348, #221898,
+ #285035)
+ * Converted package to cdbs
+ * compat: bumped to 5
+ * control:
+ * removed unneeded Build-depends: libqt3-compat-headers and g++-3.4
+ (Closes: #342995)
+ * bumped Standards-Version to 3.7.2
+ * added texlive-base-bin in Depends (Closes: #372191)
+ * added Homepage in long description
+ * copyright:
+ * added missing copyright for kile grep dialog, plain to latex converter,
+ quick document dialog, stats dialog, and create package script
+ * docs: merged kile.docs and kile-i18n.docs
+ * kile-i18n.install: added es documentation
+ * kile.manpages: removed, replaced by an entry in rules
+ * kile.menu: renamed to menu
+ * README.Debian: merged kile.README.Debian and kile-i18n.README.Debian
+ * Added watch file
+
+ [Ana Beatriz Guerrero Lopez]
+ * re-libtoolizing at build time, so now the package doesn't depend from
+ libfreetype6 and other spurious libraries.
+ * removed kile.doc-base
+ * fixed perms of runTests.sh
+ * cosmetic changes in long description
+
+ -- Fathi Boudra <fboudra at free.fr> Sun, 25 Jun 2006 10:58:50 +0200
+
+kile (1:1.8.1-3.2) unstable; urgency=low
+
+ * Non-maintainer upload with maintainer's consent.
+ * No source-changes upload to make kile-i18n installable again after its
+ binNMU. (Closes: #342229)
+
+ -- Adeodato Simó <dato at net.com.org.es> Fri, 09 Dec 2005 13:44:02 +0100
+
+kile (1:1.8.1-3.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * work around gcc-4.0 FTBFS on some architectures
+
+ -- LaMont Jones <lamont at debian.org> Fri, 14 Oct 2005 19:28:34 +0000
+
+kile (1:1.8.1-3) unstable; urgency=low
+
+ * Rebuilt against libfam-dev instead of libgamin-dev.
+ * Removed obsolete kderemove tag from the debian menu entry.
+
+ -- Ben Burton <bab at debian.org> Sun, 4 Sep 2005 10:58:17 +1000
+
+kile (1:1.8.1-2) unstable; urgency=low
+
+ * First g++-4 upload to sid.
+ * Adjusted build-dependencies for the C++ ABI transition. Removed the
+ versioned build-dependency on libqt3-mt-dev, since the new versioned
+ kdelibs4-dev build-dependency makes it redundant.
+ * Updated FSF address in the copyright file.
+ * Bumped standards-version to 3.6.2.1 (no changes required).
+
+ -- Ben Burton <bab at debian.org> Thu, 1 Sep 2005 09:04:24 +1000
+
+kile (1:1.8.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * Now that sarge is out, remove the transitional ktexmaker2 package.
+ * The i18n files for kile are back in the kile source package. Create
+ the binary kile-i18n package from here instead of a separate kile-i18n
+ source. Kile-i18n is dead, long live kile-i18n.
+ * Now uses [Desktop Entry] instead of [KDE Desktop Entry] (closes: #308440).
+
+ -- Ben Burton <bab at debian.org> Tue, 21 Jun 2005 22:55:20 +1000
+
+kile (1:1.7.1-3) unstable; urgency=low
+
+ * Added full text of the GFDL to debian/copyright, since the docbook
+ documentation is under this license.
+
+ -- Ben Burton <bab at debian.org> Sat, 26 Mar 2005 15:02:14 +1100
+
+kile (1:1.7.1-2) unstable; urgency=low
+
+ * Suggests kile-i18n, which has now been uploaded as a separate package
+ (built from a separate source as of kile 1.7).
+ * Fixed copyright file to explicitly refer to GPL v2 (not v2 or later).
+
+ -- Ben Burton <bab at debian.org> Sat, 13 Nov 2004 08:20:53 +1100
+
+kile (1:1.7.1-1) unstable; urgency=low
+
+ * New upstream release (closes: #277974).
+ * Kile no longer comes with a Gnuplot front end; this is now maintained
+ separately by Pascal Brachet at http://www.xm1math.net/qgfe/.
+ * Added a dependency on tetex-bin.
+ * Recommends tetex-doc, since Kile now integrates the teTeX help system
+ into its own help system.
+
+ -- Ben Burton <bab at debian.org> Sat, 23 Oct 2004 12:56:57 +1000
+
+kile (1:1.6.3-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Ben Burton <bab at debian.org> Sun, 20 Jun 2004 19:04:02 +1000
+
+kile (1:1.6.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * Build-depends on KDE 3.2 or later (closes: #246514).
+ * No longer crashes when trying to open kdvi if kdvi is not installed
+ (closes: #210817).
+
+ -- Ben Burton <bab at debian.org> Sat, 8 May 2004 21:23:29 +1000
+
+kile (1:1.6-1) unstable; urgency=low
+
+ * New upstream release.
+ * Uses katepart for its editor (closes: #221232).
+ * Includes a document statistics dialog (closes: #222806).
+
+ -- Ben Burton <bab at debian.org> Mon, 8 Dec 2003 15:40:21 +1100
+
+kile (1:1.5.2-3) unstable; urgency=low
+
+ * Applied the 1.5.2-patch1 patches from upstream.
+ * Added symlink /usr/share/apps/kile/doc so that the LaTeX reference manual
+ can be found (closes: #213617).
+ * Bumped standards-version to 3.6.1.
+
+ -- Ben Burton <bab at debian.org> Mon, 13 Oct 2003 10:01:12 +1000
+
+kile (1:1.5.2-2) unstable; urgency=low
+
+ * Rebuilt against Qt 3.2 to stop kile from crashing (closes: #208169).
+ * Added versioned build-depends on libqt3-mt-dev (>= 3:3.2.1).
+ * Using $(objdir) in debian/rules.
+ * Updated list of authors.
+
+ -- Ben Burton <bab at debian.org> Fri, 5 Sep 2003 00:18:52 +1000
+
+kile (1:1.5.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * Split title into title/longtitle for debian menu entry (closes: #196665).
+ * Updated SEE ALSO section of manpage.
+ * New upstream URL in copyright file.
+ * Bumped standards-version to 3.6.0.
+
+ -- Ben Burton <bab at debian.org> Wed, 27 Aug 2003 20:04:25 +1000
+
+kile (1:1.5-2) unstable; urgency=low
+
+ * Using ostringstream instead of ostrstream (closes: #194963).
+ * Building with objdir == srcdir to fix problem with missing i18n files.
+ * Fresh admin/ update from KDE CVS.
+ * Using a full colour pixmap again.
+ * Bumped standards-version to 3.5.10.0.
+
+ -- Ben Burton <bab at debian.org> Thu, 5 Jun 2003 10:53:40 +1000
+
+kile (1:1.5-1) unstable; urgency=low
+
+ * New upstream release.
+ * Recommends: tetex-extra instead of tetex-base.
+ * Using a policy-conformant colour map for the debian menu icon.
+ * Major rework of debian/rules.
+
+ -- Ben Burton <bab at debian.org> Sun, 11 May 2003 10:19:49 +1000
+
+kile (1:1.3.2-5) unstable; urgency=low
+
+ * Build-depends on libqt3-compat-headers. Truly (closes: #185612).
+
+ -- Ben Burton <bab at debian.org> Sat, 22 Mar 2003 17:32:28 +1100
+
+kile (1:1.3.2-4) unstable; urgency=low
+
+ * Build-depends on libqt3-compat-headers (closes: #184700).
+ * Removed alpha compile flags.
+ * Updated admin/debianrules.
+
+ -- Ben Burton <bab at debian.org> Sun, 16 Mar 2003 16:00:19 +1100
+
+kile (1:1.3.2-3) unstable; urgency=low
+
+ * Using AM_MAINTAINER_MODE (closes: #181653).
+
+ -- Ben Burton <bab at debian.org> Thu, 20 Feb 2003 18:18:43 +1100
+
+kile (1:1.3.2-2) unstable; urgency=low
+
+ * Depends on konsole to avoid crashing when the konsole part is loaded
+ (closes: #181374).
+ * Recommends (instead of depends on) kghostview since kile no longer
+ crashes when kghostview is missing (closes: #181255).
+ * Added --with-qt-includes to compensate for relocated Qt headers.
+
+ -- Ben Burton <bab at debian.org> Tue, 18 Feb 2003 23:31:16 +1100
+
+kile (1:1.3.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * First KDE3 upload to debian!
+ * Merged the dummy ktexmaker2 upgrade package into the kile sources.
+ * Rolled the epoch to replace both the unofficial kile 1.32 packages and
+ the old ktexmaker2 1.7 packages.
+ * Supports accentuated characters in filenames (closes: #126588).
+ * No longer crashes if kghostview is missing (closes: #159993).
+ * Session management works properly (closes: #165763).
+ * Switching between kdvi and xdvi works (closes: #168440).
+ * Bumped standards-version to 3.5.8.
+ * New maintainer email address.
+
+ -- Ben Burton <bab at debian.org> Thu, 30 Jan 2003 15:37:56 +1100
+
+kile (1.3beta-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Ben Burton <benb at acm.org> Fri, 4 Oct 2002 17:18:38 +1000
+
+kile (1.2-1) unstable; urgency=low
+
+ * Name change from ktexmaker2 to kile.
+ * New upstream release.
+ * Built for KDE3.
+
+ -- Ben Burton <benb at acm.org> Mon, 2 Sep 2002 15:21:22 +1000
+
+ktexmaker2 (1.7-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Ben Burton <benb at acm.org> Thu, 20 Dec 2001 22:30:55 +1000
+
+ktexmaker2 (1.6-2) unstable; urgency=low
+
+ * Added patches to build with gcc3.
+
+ -- Ben Burton <benb at acm.org> Sun, 9 Dec 2001 10:11:21 -0600
+
+ktexmaker2 (1.6-1) unstable; urgency=low
+
+ * New upstream release.
+ * Don't compress symbols.ps (closes: Bug#122048).
+ * Suggests gnuplot and xfig.
+ * Updated description and man page to include Gnuplot front end.
+
+ -- Ben Burton <benb at acm.org> Sun, 2 Dec 2001 12:34:55 -0600
+
+ktexmaker2 (1.5.0-2) unstable; urgency=low
+
+ * Fixed alpha build. Again.
+
+ -- Ben Burton <benb at acm.org> Sun, 11 Nov 2001 10:56:48 -0600
+
+ktexmaker2 (1.5.0-1) unstable; urgency=low
+
+ * Replaced PNGs that were really XPMs with true PNGs (hence new sourceball).
+ * Builds with automake 1.5.
+ * Updated config.guess and config.sub (closes: Bug#115011).
+
+ -- Ben Burton <benb at acm.org> Thu, 11 Oct 2001 09:35:21 -0500
+
+ktexmaker2 (1.5-3) unstable; urgency=low
+
+ * Updated parameters for alpha build.
+
+ -- Ben Burton <benb at acm.org> Sun, 23 Sep 2001 23:07:01 -0500
+
+ktexmaker2 (1.5-2) unstable; urgency=low
+
+ * Oops, added in Recommends: and Suggests: for tools that are used.
+
+ -- Ben Burton <benb at acm.org> Fri, 21 Sep 2001 10:41:46 -0500
+
+ktexmaker2 (1.5-1) unstable; urgency=low
+
+ * Initial Release (closes: Bug#98590).
+
+ -- Ben Burton <benb at acm.org> Sun, 16 Sep 2001 15:09:22 -0500
+
Added: kde-extras/kile/branches/experimental/debian/compat
===================================================================
--- kde-extras/kile/branches/experimental/debian/compat (rev 0)
+++ kde-extras/kile/branches/experimental/debian/compat 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1 @@
+7
Added: kde-extras/kile/branches/experimental/debian/control
===================================================================
--- kde-extras/kile/branches/experimental/debian/control (rev 0)
+++ kde-extras/kile/branches/experimental/debian/control 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,33 @@
+Source: kile
+Section: tex
+Priority: extra
+Maintainer: Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>
+Uploaders: Fathi Boudra <fabo at debian.org>, Mark Purcell <msp at debian.org>
+Build-Depends: cdbs, debhelper (>= 7), cmake, quilt, kdelibs5-dev
+Standards-Version: 3.8.0
+Homepage: http://kile.sourceforge.net
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-kde/kde-extras/kile/experimental
+Vcs-Svn: svn://svn.debian.org/pkg-kde/kde-extras/kile/experimental
+
+Package: kile
+Architecture: any
+Section: tex
+Depends: ${shlibs:Depends}, ${misc:Depends}, konsole, texlive-latex-base
+Recommends: kdvi, kghostview, kpdf, dvipng
+Suggests: gbib, latex2html, pybliographer, xfig, kile-i18n, gv
+Conflicts: ktexmaker2 (<< 1.8)
+Replaces: ktexmaker2 (<< 1.8)
+Description: KDE Integrated LaTeX Environment
+ Kile is a user-friendly LaTeX source editor and TeX shell for KDE.
+ .
+ The source editor is a multi-document editor designed for .tex and .bib
+ files. Menus, wizards and auto-completion are provided to assist with
+ tag insertion and code generation. A structural view of the document
+ assists with navigation within source files.
+ .
+ The TeX shell integrates the various tools required for TeX processing.
+ It assists with LaTeX compilation, DVI and postscript document viewing,
+ generation of bibliographies and indices and other common tasks.
+ .
+ Kile can support large projects consisting of several smaller files.
+
Added: kde-extras/kile/branches/experimental/debian/copyright
===================================================================
--- kde-extras/kile/branches/experimental/debian/copyright (rev 0)
+++ kde-extras/kile/branches/experimental/debian/copyright 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,98 @@
+This package was debianized by:
+
+ Fathi Boudra <fabo at debian.org> on Tue, 30 Dec 2008 13:03:20 +0100
+
+It was downloaded from:
+
+ http://kile.sourceforge.net
+
+Upstream Authors:
+
+ Jeroen Wijnhout <Jeroen.Wijnhout at kdemail.net>
+ Holger Danielsson <holger.danielsson at t-online.de>
+ Michel Ludwig <michel.ludwig at kdemail.net>
+ Thomas Braun <braun at physik.fu-berlin.de>
+ Pascal Brachet <pascal.brachet at club-internet.fr>
+ with contributions from many others
+
+Copyright:
+
+ © 2003-2005 Jeroen Wijnout <Jeroen.Wijnhout_at_kdemail.net>
+ © 2004-2007 Holger Danielsson <holger.danielsson_at_t-online.de>
+ © 2006-2007 Michel Ludwig <michel.ludwig at kdemail.net>
+ © 2005-2007 Thomas Braun <braun at physik.fu-berlin.de>
+ © 2002-2003 Pascal Brachet <pascal.brachet at club-internet.fr>
+
+Copyright for kile grep dialog:
+
+ © 2001-2003 Joseph Wenninger <jowenn at kde.org>
+ © 2001 Christoph Cullmann <cullmann at kde.org>
+ © 2001 Anders Lund <anders.lund at lund.tdcadsl.dk>
+ © 2003 Jan-Marek Glogowski <glogow at stud.fbi.fh-darmstadt.de>
+ © 2005 Holger Danielsson <holgerdanielsson at t-online.de>
+
+Copyright for plain to latex converter:
+
+ © 2004 Simon MARTIN <simartin at users.sourceforge.net>
+
+Copyright for quick document dialog:
+
+ © 2004 Thomas Fischer <t-fisch at users.sourceforge.net>
+ © 2004 Holger Danielsson <holgerdanielsson at t-online.de>
+
+Copyright for create package script:
+
+ © 2005 Michael Buesch <mbuesch at freenet.de>
+ © 2004-2005 Jeroen Wijnhout <Jeroen.Wijnhout at kdemail.net>
+ © 2003-2004 Sebastian Trueg
+ © 2002-2004 Klas Kalass
+ © 2002 Aurelien Gateau
+
+Copyright for kile jscript:
+
+ © 1999-2003 Harri Porten <porten at kde.org>
+ © 2001-2003 David Faure <faure at kde.org>
+ © 2001, 2003 Peter Kelly <pmk at post.com>
+ © 2003 Apple Computer Inc.
+
+Copyright for kile preview widget:
+
+ © Mathias Soeken <msoeken at informatik.uni-bremen.de>
+
+Copyright for kile file select:
+
+ © Matt Newell
+
+License:
+
+ This package 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 package 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 package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is:
+
+ Copyright C) 2008, Fathi Boudra <fabo at debian.org>
+
+and is licensed under the GPL, see above.
+
+The documentations provided with kile is distributed under the GNU Free
+Documentation License (FDL). They are considered free with regards to the
+Debian Free Software Guidelines (DFSG) because they don't contain any
+unmodifiable parts (invariant sections).
+
+On Debian systems, the complete text of the GNU Free Documentation
+License can be found in `/usr/share/common-licenses/GFDL'.
+
Added: kde-extras/kile/branches/experimental/debian/docs
===================================================================
--- kde-extras/kile/branches/experimental/debian/docs (rev 0)
+++ kde-extras/kile/branches/experimental/debian/docs 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,7 @@
+Building-with-cmake.txt
+CODE-FORMATTING-STYLE.txt
+kile-remote-control.txt
+missing-stuff-from-branch.txt
+README
+README.cwl
+TODO
Added: kde-extras/kile/branches/experimental/debian/kile.1
===================================================================
--- kde-extras/kile/branches/experimental/debian/kile.1 (rev 0)
+++ kde-extras/kile/branches/experimental/debian/kile.1 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,64 @@
+.\" Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH KILE 1 "June 22, 2005"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh disable hyphenation
+.\" .hy enable hyphenation
+.\" .ad l left justify
+.\" .ad b justify to both left and right margins
+.\" .nf disable filling
+.\" .fi enable filling
+.\" .br insert line break
+.\" .sp <n> insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+kile \- the KDE Integrated LaTeX Environment
+.SH SYNOPSIS
+.B kile [ \fIgeneric-options\fP ]
+[ \fB\-\-line\fP \fIline\fP ] [ \fB\-\-new\fP ]
+[ \fIfile\fP ]
+.SH DESCRIPTION
+\fBKile\fP (the KDE Integrated LaTeX Environment) is a user-friendly
+LaTeX source editor and TeX shell for KDE.
+.PP
+The source editor is a multi-document editor designed for .tex and .bib
+files. Menus, wizards and auto-completion are provided to assist with
+tag insertion and code generation. A structural view of the document
+assists with navigation within source files.
+.PP
+The TeX shell integrates the various tools required for TeX processing.
+It assists with LaTeX compilation, DVI and postscript document viewing,
+generation of bibliographies and indices and other common tasks.
+.PP
+Kile can support large projects consisting of several smaller files.
+.SH OPTIONS
+Below are the kile-specific options.
+For a full summary of options, run \fIkile \-\-help\fP.
+.TP
+\fB\-\-line\fP \fIline\fP
+Jump to the given line in the file that is opened.
+.TP
+\fB\-\-new\fP
+Start a new Kile main window.
+.SH SEE ALSO
+Full user documentation is available through the KDE Help Centre.
+You can also enter the URL
+\fIhelp:/kile/\fP
+directly into konqueror or you can run
+`\fIkhelpcenter help:/kile/\fP'
+from the command-line.
+.PP
+If the KDE Help Centre is not installed then you can
+read this documentation in HTML format from
+\fI/usr/share/doc/kde/HTML/en/kile/\fP.
+.SH AUTHOR
+Kile was written by Pascal Brachet <pascal.brachet_at_club-internet.fr> and
+Jeroen Wijnhout <Jeroen.Wijnhout_at_kdemail.net> with contributions from
+many others.
+.br
+This manual page was prepared by Ben Burton <bab at debian.org>
+for the Debian GNU/Linux system (but may be used by others).
Added: kde-extras/kile/branches/experimental/debian/kile.xpm
===================================================================
--- kde-extras/kile/branches/experimental/debian/kile.xpm (rev 0)
+++ kde-extras/kile/branches/experimental/debian/kile.xpm 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,176 @@
+/* XPM */
+static char *kile[] = {
+/* columns rows colors chars-per-pixel */
+"32 32 138 2",
+" c black",
+". c #015FBC",
+"X c #1067BE",
+"o c #005DC0",
+"O c #0063C3",
+"+ c #006BC9",
+"@ c #0A6EC9",
+"# c #0071CC",
+"$ c #0E76CE",
+"% c #0076D0",
+"& c #007BD2",
+"* c #0978D0",
+"= c #1467C0",
+"- c #1468C1",
+"; c #136FC9",
+": c #1A6AC1",
+"> c #1372CA",
+", c #1C7BCE",
+"< c #1B7DD0",
+"1 c #267ACD",
+"2 c #2878C6",
+"3 c #2C7ECE",
+"4 c #207ED0",
+"5 c #3D7BC1",
+"6 c #3F83BB",
+"7 c #0080D6",
+"8 c #0086DA",
+"9 c #008ADC",
+"0 c #0A85D8",
+"q c #0C8BDB",
+"w c #1A81D2",
+"e c #2F81D0",
+"r c #2B89D4",
+"t c #2A98D9",
+"y c #3D80C2",
+"u c #3D8ACB",
+"i c #328BD5",
+"p c #3985D0",
+"a c #3A89D3",
+"s c #3D90CF",
+"d c #3296DC",
+"f c #3D92D0",
+"g c #399CDF",
+"h c #399EE0",
+"j c #20A0E4",
+"k c #4981C2",
+"l c #468DD3",
+"z c #4C8DD2",
+"x c #4891D6",
+"c c #518EC8",
+"v c #5C8EC5",
+"b c #5B9ECF",
+"n c #5493D5",
+"m c #519CD1",
+"M c #549ADA",
+"N c #5D98D7",
+"B c #5F9AD8",
+"V c #4FA2DF",
+"C c #53A0DD",
+"Z c #5BA4D2",
+"A c #5BA3DE",
+"S c #40A7E4",
+"D c #4DA4E1",
+"F c #53A9E3",
+"G c #629CD9",
+"H c #7999C3",
+"J c #6DA2DB",
+"K c #79A8CD",
+"L c #71A5DC",
+"P c #73A8DD",
+"I c #7AABDE",
+"U c #6DADE2",
+"Y c #63B2E6",
+"T c #77AEE1",
+"R c #75B4E5",
+"E c #7EB3E3",
+"W c #79BAE8",
+"Q c #829DC4",
+"! c #82A2C7",
+"~ c #82A7CA",
+"^ c #89B6D8",
+"/ c #88BCDF",
+"( c #92A6C5",
+") c #92AECA",
+"_ c #91B3CF",
+"` c #96B6D0",
+"' c #9BBCD5",
+"] c #84B2E1",
+"[ c #8EB7E3",
+"{ c #8EBBE5",
+"} c #92BAE5",
+"| c #98BEE6",
+" . c #A1BED5",
+".. c #B6B6C5",
+"X. c #87C9EF",
+"o. c #95C2E9",
+"O. c #9CC0E7",
+"+. c #9AC5EA",
+"@. c #ADC2D6",
+"#. c #BEC1CF",
+"$. c #B2C2D4",
+"%. c #B6C4DA",
+"&. c #BDC8D7",
+"*. c #A4C5E9",
+"=. c #A1C8E3",
+"-. c #ABCBEB",
+";. c #AAD0EF",
+":. c #AAD3F0",
+">. c #B1CDEC",
+",. c #B5D0ED",
+"<. c #BDD5ED",
+"1. c #B7D6F1",
+"2. c #B4D8F2",
+"3. c #BBD7F0",
+"4. c #BFE6F9",
+"5. c #C0C9D7",
+"6. c #C1CCDD",
+"7. c #C0D6EF",
+"8. c #C6DBEC",
+"9. c #C8D2E0",
+"0. c #C0D7F0",
+"q. c #C3DAF0",
+"w. c #C9DDF2",
+"e. c #D1DEEC",
+"r. c #C6E8FA",
+"t. c #CDE0F3",
+"y. c #D2E3F4",
+"u. c #D4EBF9",
+"i. c #DBE8F6",
+"p. c #DBEDF9",
+"a. c #E1ECF7",
+"s. c #E5EEF8",
+"d. c #E6F1F9",
+"f. c #E9F3FB",
+"g. c #F1F6FB",
+"h. c #F6F9FD",
+"j. c #FEFEFE",
+"k. c None",
+/* pixels */
+"k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.",
+"k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.k.",
+"k.k.k.k.k.k.k.k.k.k.k... .%.&.&.&.&. at .' ....k.k.k.k.k.k.k.k.k.k.",
+"k.k.k.k.k.k.k.k.k.....9.r.p.f.f.f.f.u.4.<.$...k.k.k.k.k.k.k.k.k.",
+"k.k.k.k.k.k.k...#.e.s.s.s.s.s.s.f.d.s.s.d.s.8.%.....k.k.k.k.k.k.",
+"k.k.k.k.k.k...6.e.i.i.i.i.i.i.i.i.i.i.i.i.i.p.y.=.` k.k.k.k.k.k.",
+"k.k.k.k.k...6.t.y.w.w.y.y.w.w.y.t.t.t.y.t.w.y.w.w.X._ ..k.k.k.k.",
+"k.k.k.k...%.7.7.q.8.0.8.7.w.w.0.7.w.q.7.8.q.7.8.8.3./ ..k.k.k.k.",
+"k.k.k...^ 1.y.t.t.<.>.,.>.7.w.y.i.y.y.0.>.>.>.1.>.1.+.j ..k.k.k.",
+"k.k.k...Y s.j.j.j.w.-.-.-.-.g.j.j.j.s.>.>.-.>.-.-.-.*.S Z ..k.k.",
+"k.k._ t R i.j.j.j.7.*.| *.i.j.j.j.g.>.*.O.O.| | | O.| F t ) k.k.",
+"k.k.K q U i.j.j.j.>.} } 7.h.j.j.h.0.| } } } } } } } } D 9 K k.k.",
+"k...m 9 C y.j.j.j.-.^ O.h.j.j.h.>.] ] ] ^ ] ] } -.=.o.W 9 9 ..k.",
+"k...8 8 d t.j.j.j.*.[ s.j.j.h.q.] ] ] ] I I ] w.j.a.O.f.q 8 N ..",
+"..~ 7 7 0 2.j.j.j.*.y.j.j.j.>.^ ] I I G J J | f.-.y.C r.h 7 s ..",
+"..f 7 7 7 :.j.j.j.i.j.j.j.i.I P L L G G G G | s.] 8.d u.h 7 s ..",
+"..f & & & :.j.j.j.j.j.j.j.s.J G G N N n n n L s.y.i.y.p.& & f ..",
+"..u & & & :.j.j.j.j.j.j.j.j.<.G n n n n l z l U i.j.y.D & & u ..",
+"..u % % % -.j.j.j.q.o.h.j.j.h.*.z z l p e < * % % % % % % % u ..",
+"..u # % # :.j.j.j.F w 1.j.j.j.g.M 1 , $ r +.:.:.:.:.-.:.# % u ..",
+"k...# # # -.j.j.j.C # < p.j.j.j.y.i # # r ,.t.q.q.t.q.t.# # u ..",
+"k.k.c + # -.j.j.j.M + + B d.j.j.j.;.+ + # < < < w < < < + + ! ..",
+"k.k.H + + -.j.j.j.M + + @ T j.j.j.j.] @ , E a E { { { { + H k.k.",
+"k.k.( 2 O -.j.j.j.M + O + @ 7.j.j.j.s.x a s.P s.j.h.j.j.+ H k.k.",
+"k.k...v O 1 a p p ; O O O + ; a a a a 3 O O O O O O O O 5 6 k.k.",
+"k.k.k...O O o . O o o O o o O + O + O O O o O O O O O o ....k.k.",
+"k.k.k.k...5 . o o . o o o O O + O O o o . o o o . o - Q k.k.k.k.",
+"k.k.k.k...Q o o o o o o o o o o o o o o o o o o . o Q ..k.k.k.k.",
+"k.k.k.k.k.k.Q 5 o o o o o o o o o o o o o o o o 5 Q k.k.k.k.k.k.",
+"k.k.k.k.k.k.....= o o o o o o o o o o o o o o . ....k.k.k.k.k.k.",
+"k.k.k.k.k.k.k.k.....Q 5 o o o o o o o o - : ....k.k.k.k.k.k.k.k.",
+"k.k.k.k.k.k.k.k.k.k.....k H H H H H H k 5 ..k.k.k.k.k.k.k.k.k.k."
+};
Added: kde-extras/kile/branches/experimental/debian/menu
===================================================================
--- kde-extras/kile/branches/experimental/debian/menu (rev 0)
+++ kde-extras/kile/branches/experimental/debian/menu 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,7 @@
+?package(kile):needs="X11" \
+ section="Applications/Editors" \
+ hints="KDE" \
+ title="Kile" \
+ longtitle="Kile (LaTeX development environment)" \
+ command="/usr/bin/kile" \
+ icon="/usr/share/pixmaps/kile.xpm"
Added: kde-extras/kile/branches/experimental/debian/rules
===================================================================
--- kde-extras/kile/branches/experimental/debian/rules (rev 0)
+++ kde-extras/kile/branches/experimental/debian/rules 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+include debian/cdbs/kde.mk
+
+DEB_INSTALL_MANPAGES_kile := debian/kile.1
+
+install/kile::
+ # Install pixmap
+ install -D -p -m0644 debian/kile.xpm debian/kile/usr/share/pixmaps/kile.xpm
+
+ chmod +x debian/kile/usr/share/kde4/apps/kile/test/runTests.sh
+ chmod +x debian/kile/usr/share/kde4/apps/kconf_update/kile*_upd.pl
+ find debian -type f -name bibtex.xml | xargs rm -f
+ find debian -type f -name latex.xml | xargs rm -f
+
Property changes on: kde-extras/kile/branches/experimental/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: kde-extras/kile/branches/experimental/debian/watch
===================================================================
--- kde-extras/kile/branches/experimental/debian/watch (rev 0)
+++ kde-extras/kile/branches/experimental/debian/watch 2008-12-30 14:17:25 UTC (rev 13073)
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/kile/kile-([\d\.].[\d])\.tar\.bz2 debian svn-upgrade
More information about the pkg-kde-commits
mailing list