Skip to content
Snippets Groups Projects
Commit 000ffee0 authored by Russ Allbery's avatar Russ Allbery
Browse files

Remove Debian packaging from the master branch

Debian packaging will be maintained on a debian branch, merged with
an upstream branch created from the tarball releases.
parent f000e83d
No related branches found
No related tags found
No related merge requests found
5
Source: libheimdal-kadm5-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 5.0.0),
perl (>= 5.8.8-12ubuntu0.4),
heimdal-dev
Maintainer: IT och media <linux-sua@it.su.se>
Standards-Version: 3.7.2
Homepage: http://devel.it.su.se/
Package: libheimdal-kadm5-perl
Architecture: any
Depends: ${perl:Depends},
${shlibs:Depends},
${misc:Depends},
heimdal-dev
Description: Perl extension for adminstration of Heimdal Kerberos servers (kadmin)
Heimdal::Kadm5 is a basic XSUB perl glue to the Heimdal (http://www.pdc.kth.se/src/heimdal) kadm5clnt
library. Heimdal is a free, slightly less export challenged implementation of Kerberos5 by Assar
Westerlund and Johan Danielsson. Heimdal::Kadm5 allows you to perform more administration of your kdc
than you can usually pull off with the included kadmin program. Heimdal::Kadm5 should be considered
alpha-code and may consequently crash and burn but should not muck up your kdc any more than kadmin
itself does.
This is the debian package for the Heimdal::Kadm5 module.
It was created by Fredrik Thulin <ft@it.su.se> using dh-make-perl.
It was downloaded from http://search.cpan.org/dist/Heimdal::Kadm5/
This copyright info was automatically extracted from the perl module.
It may not be accurate, so you better check the module sources
if don't want to get into legal troubles.
The upstream author is:
Leif Johansson, leifj@it.su.se.
The Debian packaging is (C) 2009, Fredrik Thulin <ft@it.su.se> and
is licensed under the same terms as the software itself (see above).
#!/usr/bin/make -f
# This debian/rules file is provided as a template for normal perl
# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
# be used freely wherever it is useful.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# If set to a true value then MakeMaker's prompt function will
# always return the default without waiting for user input.
export PERL_MM_USE_DEFAULT=1
PACKAGE=$(shell dh_listpackages)
ifndef PERL
PERL = /usr/bin/perl
endif
TMP =$(CURDIR)/debian/$(PACKAGE)
# Allow disabling build optimation by setting noopt in
# $DEB_BUILD_OPTIONS
CFLAGS = -Wall -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
build: build-stamp
build-stamp:
dh_testdir
# As this is a architecture dependent package, we are not
# supposed to install stuff to /usr/share. MakeMaker creates
# the dirs, we prevent this by setting the INSTALLVENDORARCH
# and VENDORARCHEXP environment variables.
# Add commands to compile the package here
$(PERL) Makefile.PL INSTALLDIRS=vendor \
INSTALLVENDORARCH=/usr/lib/perl5/ \
VENDORARCHEXP=/usr/lib/perl5/
$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
$(MAKE) test
touch $@
clean:
dh_testdir
dh_testroot
dh_clean build-stamp install-stamp
# Add commands to clean up after the build process here
[ ! -f Makefile ] || $(MAKE) realclean
install: install-stamp
install-stamp: build-stamp
dh_testdir
dh_testroot
dh_clean -k
# Add commands to install the package into debian/$PACKAGE_NAME here
$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
touch $@
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do here for an architecture-dependent package
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installexamples
dh_installdocs README
dh_installchangelogs Changes
dh_shlibdeps
dh_strip
dh_perl
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
source diff:
@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment