--- telak-0.6.orig/Makefile +++ telak-0.6/Makefile @@ -1,7 +1,7 @@ VERSION = $(shell grep '^Version' ChangeLog | head -n 1 | cut -d' ' -f2 | tr -d ' ') BIN = telak O = telak.o fetch.o image.o parse.o toon.o -LDFLAGS = $(shell imlib2-config --libs) $(shell curl-config --libs) -lgcrypt +LDFLAGS = $(shell imlib2-config --libs) $(shell curl-config --libs) -lgcrypt $(shell pkg-config --libs x11) CFLAGS = -pg -W -Wall $(shell curl-config --cflags) $(shell imlib2-config --cflags) -DTELAK_USER_AGENT="\"$(BIN) $(VERSION)\"" -DTELAK_VERSION="\"$(VERSION)\"" -g BINDIR=$(DESTDIR)/usr/bin @@ -10,7 +10,7 @@ MAN=telak.1 $(BIN): $(O) - $(CC) $(LDFLAGS) -o $(BIN) $(O) + $(CC) $(O) $(LDFLAGS) -o $(BIN) install: $(BIN) $(INSTALL) -d -m 755 $(BINDIR) --- telak-0.6.orig/debian/changelog +++ telak-0.6/debian/changelog @@ -0,0 +1,75 @@ +telak (0.6-1ubuntu2) trusty; urgency=medium + + * Add -lx11 to linker command line to fix FTBFS: + error adding symbols: DSO missing from command line + + -- Andreas Moog Thu, 20 Feb 2014 21:47:43 +0100 + +telak (0.6-1ubuntu1) oneiric; urgency=low + + * Fix FTBFS with ld --as-needed. LP: #832773. + + -- Matthias Klose Tue, 13 Sep 2011 10:31:01 +0200 + +telak (0.6-1) unstable; urgency=low + + * New upstream version + + Fix compilation issue (Closes: #637702) + * Bump standard version + + -- Julien Danjou Sat, 13 Aug 2011 21:39:26 +0200 + +telak (0.5-3) unstable; urgency=low + + * Depends on curl-gnutls (Closes: #522314) + * Bump standard version + * Link to the right version of the GPL + + -- Julien Danjou Sat, 04 Apr 2009 09:33:57 +0200 + +telak (0.5-2) unstable; urgency=low + + * Bump standard version + * Switch to debhelper 5 + * Remove x-dev build-dep + * Fix copyright notice + + -- Julien Danjou Thu, 24 Jul 2008 21:49:28 +0200 + +telak (0.5-1) unstable; urgency=low + + * New upstream release + - Better support for root window (Closes: #370728) + + -- Julien Danjou Tue, 6 Jun 2006 20:28:22 +0200 + +telak (0.4-1) unstable; urgency=low + + * New upstream release + + -- Julien Danjou Sat, 29 Apr 2006 22:48:48 +0200 + +telak (0.3-3) unstable; urgency=low + + * Change build dep for libgcrypt to libgcrypt11 + + -- Julien Danjou Sun, 27 Mar 2005 23:41:34 +0200 + +telak (0.3-2) unstable; urgency=low + + * Fix some build deps (Closes: #301646) + + -- Julien Danjou Sun, 27 Mar 2005 23:33:19 +0200 + +telak (0.3-1) unstable; urgency=low + + * New upstream release + + -- Julien Danjou Fri, 11 Mar 2005 22:14:26 +0100 + +telak (0.2-1) unstable; urgency=low + + * Initial Release. (Closes: #294107) + + -- Julien Danjou Tue, 8 Feb 2005 17:41:32 +0100 + --- telak-0.6.orig/debian/compat +++ telak-0.6/debian/compat @@ -0,0 +1 @@ +5 --- telak-0.6.orig/debian/control +++ telak-0.6/debian/control @@ -0,0 +1,14 @@ +Source: telak +Section: x11 +Priority: optional +Maintainer: Julien Danjou +Build-Depends: debhelper (>= 5.0.0), libcurl3-gnutls-dev, libgcrypt11-dev, libimlib2-dev +Standards-Version: 3.9.2 + +Package: telak +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: display remote or local pictures on your desktop + This is a small tool to draw local or remote pictures on your root window. + This is very useful if you want to have webcam, graphs or something like + this drawn above your wallpaper. --- telak-0.6.orig/debian/copyright +++ telak-0.6/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Julien Danjou on +Tue, 8 Feb 2005 17:41:32 +0100. + +It was downloaded from http://julien.danjou.info/telak.html + +Copyright: (c) 2005 Julien Danjou + +Upstream Author: Julien Danjou + +License: + + This software 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; version 2 dated June, 1991. + + This software 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 software; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. --- telak-0.6.orig/debian/dirs +++ telak-0.6/debian/dirs @@ -0,0 +1 @@ +usr/bin --- telak-0.6.orig/debian/docs +++ telak-0.6/debian/docs @@ -0,0 +1 @@ +README --- telak-0.6.orig/debian/examples +++ telak-0.6/debian/examples @@ -0,0 +1 @@ +telakrc.sample --- telak-0.6.orig/debian/manpages +++ telak-0.6/debian/manpages @@ -0,0 +1 @@ +telak.1 --- telak-0.6.orig/debian/rules +++ telak-0.6/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + # Add here commands to compile the package. + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/telak. + $(MAKE) install DESTDIR=$(CURDIR)/debian/telak + + +build-arch: build +build-indep: build + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure