Subversion Repositories pmk

Compare Revisions

Ignore whitespace Rev 21 → Rev 20

/tags/0.10.4-1/debian/pmk.manpages
File deleted
/tags/0.10.4-1/debian/compat
File deleted
/tags/0.10.4-1/debian/pmk.examples
File deleted
/tags/0.10.4-1/debian/watch
File deleted
/tags/0.10.4-1/debian/pmk.dirs
File deleted
/tags/0.10.4-1/debian/changelog
File deleted
/tags/0.10.4-1/debian/patches/00list
File deleted
/tags/0.10.4-1/debian/patches/25_pmksetup.dpatch
File deleted
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: 0.10.4-1/debian/copyright
===================================================================
--- 0.10.4-1/debian/copyright (revision 21)
+++ 0.10.4-1/debian/copyright (nonexistent)
@@ -1,47 +0,0 @@
-This package was debianized by Marek Habersack <grendel@debian.org> on
-Tue, 24 Jun 2003 22:08:41 +0200.
-
-Current maintainer is Magnus Holmgren <holmgren@debian.org>.
-
-It was downloaded from http://pmk.sf.net/
-
-Upstream Author: Damien Couderc <mipsator@users.sourceforge.net>, and
-to some extent Xavier Santolaria <xavier@santolaria.net> and Martin
-Reindl <mreindl@users.sourceforge.net>.
-
-Copyright:
-
- This program is distributed under the terms of a BSD-like license:
-
- Copyright © 2003-2005 Damien Couderc
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- - Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- - Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution.
- - Neither the name of the copyright holder(s) nor the names of its
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
- ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-
-Some files also claim
- Copyright © 2003-2004 Xavier Santolaria <xavier@santolaria.net>
Index: 0.10.4-1/debian/pmk.files
===================================================================
--- 0.10.4-1/debian/pmk.files (revision 21)
+++ 0.10.4-1/debian/pmk.files (nonexistent)
@@ -1 +0,0 @@
-usr/share/pmk/*
Index: 0.10.4-1/debian/pmk.postinst
===================================================================
--- 0.10.4-1/debian/pmk.postinst (revision 21)
+++ 0.10.4-1/debian/pmk.postinst (nonexistent)
@@ -1,57 +0,0 @@
-#! /bin/sh
-# postinst script for pmk
-#
-# see: dh_installdeb(1)
-
-conffile=/etc/pmk/pmk.conf
-
-set -e
-test $DEBIAN_SCRIPT_DEBUG && set -v -x
-
-if [ -e /usr/share/debconf/confmodule ]; then
- . /usr/share/debconf/confmodule
-fi
-
-case "$1" in
- configure|reconfigure)
- # Note that -s and -g are added by 25_pmksetup.dpatch;
- # they are not documented in pmksetup(8).
- tempfile=`mktemp -t pmksetup.XXXXXXXXXX`
- settings="-u PREFIX=\"/usr\" \
- -u BIN_CC=\"/usr/bin/gcc\" \
- -u BIN_CXX=\"/usr/bin/g++\" \
- -u PATH_BIN=\"/usr/local/bin:/usr/bin:/bin\" \
- -u OS_ARCH=\"`dpkg --print-architecture`\""
-
- if { if test $DEBIAN_SCRIPT_DEBUG; then pmksetup -V -s -g $settings;
- else pmksetup -s -g $settings 2> /dev/null; fi } > $tempfile
- then
- ucf --three-way --debconf-ok $tempfile $conffile
- rm -f $tempfile
- ucfr pmk $conffile
- else
- rm -f $tempfile
- exit 1
- fi
-
- # Clean out any remains of this package from the Debconf database
- if [ -e /usr/share/debconf/confmodule ]; then
- db_purge
- fi
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
Index: 0.10.4-1/debian/rules
===================================================================
--- 0.10.4-1/debian/rules (revision 21)
+++ 0.10.4-1/debian/rules (nonexistent)
@@ -1,84 +0,0 @@
-#!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-include /usr/share/dpatch/dpatch.make
-
-CFLAGS = -pipe -Wall -g -DTMPDIR=\"\\\"/tmp\\\"\"
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
- CFLAGS += -O0
- LDFLAGS = -s
-else
- CFLAGS += -O2
-endif
-ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
- INSTALL_PROGRAM += -s
-endif
-
-# Overrides for the PMK Makefile stuff
-CC=gcc
-DESTDIR=$(CURDIR)/debian/pmk
-
-export CFLAGS LDFLAGS CC
-
-configure: configure-stamp
-configure-stamp:
- dh_testdir
- ./pmkcfg.sh -p /usr
- touch configure-stamp
-
-build: build-stamp
-build-stamp: patch configure-stamp
- dh_testdir
-
- # Add here commands to compile the package.
- $(MAKE) PREMAKE=pmk
- touch build-stamp
-
-clean: clean-patched unpatch
-clean-patched:
- dh_testdir
- dh_testroot
- rm -f build-stamp
-
- # Add here commands to clean up after the build process.
- [ ! -f Makefile ] || $(MAKE) distclean
- rm -f configure-stamp
- dh_clean
-
-install: build-stamp
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
- # Add here commands to install the package into debian/pmk.
- $(MAKE) install DESTDIR=$(DESTDIR) MANDIR=/usr/share/man PREMAKE=pmk
-
-binary-indep: install
-
-# Build architecture-dependent files here.
-binary-arch: install
- dh_testdir
- dh_testroot
- dh_installchangelogs Changelog
- dh_installdocs
- dh_installexamples
- dh_installman
- dh_link
- dh_strip
- dh_compress
- dh_fixperms
- chmod -x $(DESTDIR)/usr/share/doc/pmk/examples/tests/plang_test.c
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
/0.10.4-1/debian/rules
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: 0.10.4-1/debian/pmk.postrm
===================================================================
--- 0.10.4-1/debian/pmk.postrm (revision 21)
+++ 0.10.4-1/debian/pmk.postrm (nonexistent)
@@ -1,37 +0,0 @@
-#!/bin/sh
-# postrm script for pmk
-#
-# see: dh_installdeb(1)
-
-conffile=/etc/pmk/pmk.conf
-
-set -e
-
-case "$1" in
- purge)
- rm -f $conffile $conffile~ $conffile.bak \#$conffile\# \
- $conffile.ucf-new $conffile.ucf-old $conffile.ucf-dist
- if which ucf >/dev/null; then
- ucf --purge /etc/pmk.conf
- fi
- if which ucfr >/dev/null; then
- ucfr --purge pmk /etc/pmk.conf
- fi
- ;;
-
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
Index: 0.10.4-1/debian/pmk.docs
===================================================================
--- 0.10.4-1/debian/pmk.docs (revision 21)
+++ 0.10.4-1/debian/pmk.docs (nonexistent)
@@ -1,7 +0,0 @@
-BUGS
-BONUS
-README
-TODO
-STATUS
-CREDITS
-doc/*.txt
Index: 0.10.4-1/debian/README.Debian
===================================================================
--- 0.10.4-1/debian/README.Debian (revision 21)
+++ 0.10.4-1/debian/README.Debian (nonexistent)
@@ -1,18 +0,0 @@
-Running pmksetup
-================
-
-For pmk to work and configure software builds correctly, pmksetup must
-be run (as root) to construct /etc/pmk/pmk.conf, which pmk uses to
-find most system information instead of detecting it each time.
-pmksetup is run automatically whenever pmk is installed or
-upgraded. You should accept any changes presented to you, especially
-if you are upgrading from an old version (before 0.8.1-3+s5, to be
-exact). The configuration is maintained with ucf, which should make it
-easier to merge
-
-pmksetup needs to be run again whenever a tool that pmksetup needs to
-detect is installed. To get certain Debian-specific defaults right,
-this should be done by running `dpkg-reconfigure pmk'. This is a bit
-of a bug, but it can be worked around by providing an override file
-(see pmk(1)) with any Debian package using pmk, or by overriding
-variables when calling make.
Index: 0.10.4-1/debian/control
===================================================================
--- 0.10.4-1/debian/control (revision 21)
+++ 0.10.4-1/debian/control (nonexistent)
@@ -1,21 +0,0 @@
-Source: pmk
-Section: devel
-Priority: optional
-Maintainer: Magnus Holmgren <holmgren@debian.org>
-Build-Depends: debhelper (>> 4.0.0), dpatch
-Standards-Version: 3.7.3
-Vcs-Svn: svn://svn.kibibyte.se/pmk/trunk
-Vcs-Browser: http://svn.kibibyte.se/pmk
-Homepage: http://pmk.sourceforge.net
-
-Package: pmk
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ucf (>= 0.8), gcc | c-compiler
-Suggests: binutils, g++
-Description: utility to configure software sources
- PMK is a utility which, like the popular GNU Autoconf, serves the
- purpose of configuring the software sources on a variety of platforms.
- Configuring consists of checking the environment for presence of libraries,
- header files, programs, functions etc. Based on a simple config file, pmk
- generates output files (e.g. config.h, Makefile etc.) using a set of
- templates provided by the programmer.
Index: 0.10.4-1/debian
===================================================================
--- 0.10.4-1/debian (revision 21)
+++ 0.10.4-1/debian (nonexistent)
/0.10.4-1/debian
Property changes:
Deleted: mergeWithUpstream
## -1 +0,0 ##
-1
\ No newline at end of property