--- ebook-dev-alp-200407.orig/debian/control +++ ebook-dev-alp-200407/debian/control @@ -0,0 +1,27 @@ +Source: ebook-dev-alp +Section: non-free/doc +Priority: optional +Maintainer: Francesco Paolo Lovergine +Build-Depends-Indep: debhelper (>> 3.0.0) +Standards-Version: 3.6.1 + +Package: ebook-dev-alp +Architecture: all +Recommends: xpdf-reader | pdf-viewer +Description: [EBOOK-DEV] Advanced Linux Programming + If you are a developer for the GNU/Linux system, this book will help you to: + . + Develop GNU/Linux software that works the way users expect it to. + Write more sophisticated programs with features such as + multiprocessing, multi-threading, interprocess communication, and + interaction with hardware devices. + Improve your programs by making them run faster, more reliably, and + more securely. + Understand the peculiarities of a GNU/Linux system, including its + limitations, special capabilities, and conventions. + . + Advanced Linux Programming is published under the Open Publication + License, Version 1, no options exercised. (Due to an oversight in final + production, the copyright notice on the book is incorrect.) The full + text may be downloaded from this site. Code samples in the book are + covered by the GNU General Public License and are also available. --- ebook-dev-alp-200407.orig/debian/prerm +++ ebook-dev-alp-200407/debian/prerm @@ -0,0 +1,37 @@ +#! /bin/sh +# prerm script for ebook-dev-alp +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + remove|upgrade|deconfigure) +# install-info --quiet --remove /usr/info/ebook-dev-alp.info.gz + ;; + failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- ebook-dev-alp-200407.orig/debian/rules +++ ebook-dev-alp-200407/debian/rules @@ -0,0 +1,55 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +P=ebook-dev-alp +R=debian/$(P) +D=$(R)/usr/share/doc/$(P) + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean + +# Build architecture-dependent files here. +binary-arch: build +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build + dh_testdir + dh_testroot + + mkdir -p $(D) + cp advanced-linux-programming.pdf $(D)/. + cp -aR listings $(D)/. + +# dh_installdebconf + dh_installdirs + dh_installdocs + dh_installchangelogs + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary configure --- ebook-dev-alp-200407.orig/debian/changelog +++ ebook-dev-alp-200407/debian/changelog @@ -0,0 +1,35 @@ +ebook-dev-alp (200407-1) unstable; urgency=high + + * Moved to non-free. See http://www.debian.org/legal/licenses/dls-005-opl + for an adivisory on OPL 1.0 + * Revised orig tarball for building problems which caused FTBFS. + * Added xpdf-viewer as real pdf-viewer in control file. + + -- Francesco Paolo Lovergine Wed, 7 Jul 2004 10:38:30 +0200 + +ebook-dev-alp (200106-3) unstable; urgency=low + + * Policy bumped to 3.6.1 + * Copyright file revised. + * Rebuilt to remove /usr/doc link + + -- Francesco Paolo Lovergine Tue, 28 Oct 2003 11:23:07 +0100 + +ebook-dev-alp (200106-2) unstable; urgency=low + + * Recommends: tag moved in binary section :-/ + * Mispelling corrected in control file. + (closes: #124590) + + -- Francesco Paolo Lovergine Tue, 18 Dec 2001 11:49:10 +0100 + +ebook-dev-alp (200106-1) unstable; urgency=low + + * Initial Release. + (closes: #116633) + + -- Francesco Paolo Lovergine Mon, 19 Nov 2001 14:02:47 +0200 + +Local variables: +mode: debian-changelog +End: --- ebook-dev-alp-200407.orig/debian/postinst +++ ebook-dev-alp-200407/debian/postinst @@ -0,0 +1,47 @@ +#! /bin/sh +# postinst script for ebook-dev-alp +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- ebook-dev-alp-200407.orig/debian/copyright +++ ebook-dev-alp-200407/debian/copyright @@ -0,0 +1,164 @@ +This package was debianized by Francesco Paolo Lovergine on +Tue, 18 Sep 2001 14:32:12 +0200. + +It was downloaded from www.advancedlinuxprogramming.com + +Upstream Authors: CodeSourcery LLC + +Copyright: + +Published by New Riders Publishing. + +Advanced Linux Programming is published under the Open Publication +License, Version 1, no options exercised. (Due to an oversight in final +production, the copyright notice on the book is incorrect.) The full +text may be downloaded from this site. Code samples in the book are +covered by the GNU General Public License and are also available. + + + + + +Open Publication License Draft v1.0, 8 June 1999 (text version) + +I. REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS + +The Open Publication works may be reproduced and distributed in whole or +in part, in any medium physical or electronic, provided that the terms +of this license are adhered to, and that this license or an +incorporation of it by reference (with any options elected by the +author(s) and/or publisher) is displayed in the reproduction. + +Proper form for an incorporation by reference is as follows: +Copyright (c) by . This material may +be distributed only subject to the terms and conditions set forth in the +Open Publication License, vX.Y or later (the latest version is presently +available at http://www.opencontent.org/openpub/). The reference must be +immediately followed with any options elected by the author(s) and/or +publisher of the document (see section VI). + +Commercial redistribution of Open Publication-licensed material is +permitted. + +Any publication in standard (paper) book form shall require the citation +of the original publisher and author. The publisher and author's names +shall appear on all outer surfaces of the book. On all outer surfaces of +the book the original publisher's name shall be as large as the title of +the work and cited as possessive with respect to the title. + + +II. COPYRIGHT + + The copyright to each Open Publication is owned by its author(s) or +designee. + + + III. SCOPE OF LICENSE + + The following license terms apply to all Open Publication works, unless +otherwise explicitly stated in the document. + +Mere aggregation of Open Publication works or a portion of an Open +Publication work with other works or programs on the same media shall +not cause this license to apply to those other works. The aggregate work +shall contain a notice specifying the inclusion of the Open Publication +material and appropriate copyright notice. + +SEVERABILITY. If any part of this license is found to be unenforceable +in any jurisdiction, the remaining portions of the license remain in +force. + +NO WARRANTY. Open Publication works are licensed and provided "as is" +without warranty of any kind, express or implied, including, but not +limited to, the implied warranties of merchantability and fitness for a +particular purpose or a warranty of non-infringement. + + + IV. REQUIREMENTS ON MODIFIED WORKS + +All modified versions of documents covered by this license, including +translations, anthologies, compilations and partial documents, must meet +the following requirements: + + The modified version must be labeled as such. +The person making the modifications must be identified and the +modifications dated. +Acknowledgement of the original author and publisher if applicable must +be retained according to normal academic citation practices. +The location of the original unmodified document must be identified. +The original author's (or authors') name(s) may not be used to assert or +imply endorsement of the resulting document without the original +author's (or authors') permission. +V. GOOD-PRACTICE RECOMMENDATIONS + +In addition to the requirements of this license, it is requested from +and strongly recommended of redistributors that: + +If you are distributing Open Publication works on hardcopy or CD-ROM, +you provide email notification to the authors of your intent to +redistribute at least thirty days before your manuscript or media +freeze, to give the authors time to provide updated documents. This +notification should describe modifications, if any, made to the +document. +All substantive modifications (including deletions) be either clearly +marked up in the document or else described in an attachment to the +document. +Finally, while it is not mandatory under this license, it is considered +good form to offer a free copy of any hardcopy and CD-ROM expression of +an Open Publication-licensed work to its author(s). +VI. LICENSE OPTIONS + +The author(s) and/or publisher of an Open Publication-licensed document +may elect certain options by appending language to the reference to or +copy of the license. These options are considered part of the license +instance and must be included with the license (or its incorporation by +reference) in derived works. + +A. To prohibit distribution of substantively modified versions without +the explicit permission of the author(s). "Substantive modification" is +defined as a change to the semantic content of the document, and +excludes mere changes in format or typographical corrections. + +To accomplish this, add the phrase `Distribution of substantively +modified versions of this document is prohibited without the explicit +permission of the copyright holder.' to the license reference or copy. + +B. To prohibit any publication of this work or derivative works in whole +or in part in standard (paper) book form for commercial purposes is +prohibited unless prior permission is obtained from the copyright +holder. + +To accomplish this, add the phrase 'Distribution of the work or +derivative of the work in any standard (paper) book form is prohibited +unless prior permission is obtained from the copyright holder.' to the +license reference or copy. + + + OPEN PUBLICATION POLICY APPENDIX: + +(This is not considered part of the license.) + +Open Publication works are available in source format via the Open +Publication home page at http://works.opencontent.org/. + +Open Publication authors who want to include their own license on Open +Publication works may do so, as long as their terms are not more +restrictive than the Open Publication license. + +If you have questions about the Open Publication License, please contact +David Wiley, and/or the Open Publication Authors' List at +opal@opencontent.org, via email. + +To subscribe to the Open Publication Authors' List: + Send E-mail to opal-request@opencontent.org with the word "subscribe" +in the body. + + To post to the Open Publication Authors' List: + Send E-mail to opal@opencontent.org or simply reply to a previous post. + + To unsubscribe from the Open Publication Authors' List: + Send E-mail to opal-request@opencontent.org with the word "unsubscribe" +in the body. + + +