--- prctl-1.4.orig/Makefile.in +++ prctl-1.4/Makefile.in @@ -45,7 +45,7 @@ # Extension (not including `.') for the installed manual page filenames. manext = 1 # Where to install the manual pages. -mandir = $(prefix)/man/man$(manext) +mandir = $(prefix)/share/man/man$(manext) # Use manlinks=so to use the .so method instead of hard links manlinks = ln --- prctl-1.4.orig/debian/changelog +++ prctl-1.4/debian/changelog @@ -0,0 +1,14 @@ +prctl (1.4-1) unstable; urgency=low + + * New upstream version. + * Added "always-signal" option to --unaligned for ia64. + * upstream taking over as package maintainer (in NM queue) + + -- Khalid Aziz Fri, 21 Apr 2004 09:09:46 -0700 + +prctl (1.3-1) unstable; urgency=low + + * Initial Release. + + -- Bdale Garbee Sun, 27 Jan 2002 17:05:35 -0700 + --- prctl-1.4.orig/debian/control +++ prctl-1.4/debian/control @@ -0,0 +1,16 @@ +Source: prctl +Section: devel +Priority: optional +Maintainer: Khalid Aziz +Uploaders: Bdale Garbee +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.6.1.0 + +Package: prctl +Architecture: ia64 +Depends: ${shlibs:Depends} +Description: Process control operations + prctl is a tool to query and modify process behavior. Supported process + behavior is handling of unaligned memory access and handling of floating + point software assist faults. The required syscalls are currently only + available on Itanium Processor Family (ia64) kernels in Debian. --- prctl-1.4.orig/debian/watch +++ prctl-1.4/debian/watch @@ -0,0 +1,5 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# Site Directory Pattern Version Script +ftp.sf.net /pub/sourceforge/p/pr/prctl prctl-(.*)\.tar\.gz debian uupdate --- prctl-1.4.orig/debian/copyright +++ prctl-1.4/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Khalid Aziz and +Bdale Garbee in December of 2001. + +It was downloaded from + +Upstream Author: Khalid Aziz + +Copyright: + +This software is copyright (c) 2001 by Khalid Aziz, Hewlett Packard Company. + +You are free to distribute this software under the terms of the GNU +General Public License. + +On Debian systems, the complete text of the GNU General Public License +can be found in /usr/share/common-licenses/GPL. --- prctl-1.4.orig/debian/dirs +++ prctl-1.4/debian/dirs @@ -0,0 +1 @@ +usr/bin --- prctl-1.4.orig/debian/rules +++ prctl-1.4/debian/rules @@ -0,0 +1,56 @@ +#!/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 + +configure: configure-stamp +configure-stamp: + dh_testdir + ./configure --prefix=/usr + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + $(MAKE) + touch build-stamp + +clean: configure-stamp + dh_testdir + dh_testroot + -$(MAKE) distclean + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install prefix=$(CURDIR)/debian/prctl/usr + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman + dh_installchangelogs ChangeLog + 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