mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
* cleanups
git-svn-id: svn://svn.debian.org/svn/pkg-fedora-ds/freeipa/trunk@128 f06303cf-03cc-411c-aec6-58b7e4ec4d34
This commit is contained in:
parent
c1f4ed3067
commit
a35ef61a23
2
debian/control
vendored
2
debian/control
vendored
@ -4,6 +4,8 @@ Priority: extra
|
|||||||
Maintainer: Michele Baldessari <michele@pupazzo.org>
|
Maintainer: Michele Baldessari <michele@pupazzo.org>
|
||||||
Build-Depends: debhelper (>= 7), libdirsrv-dev (>= 1.1.3), autoconf, automake, libtool, python-turbogears, libmozldap-dev, dpatch
|
Build-Depends: debhelper (>= 7), libdirsrv-dev (>= 1.1.3), autoconf, automake, libtool, python-turbogears, libmozldap-dev, dpatch
|
||||||
Standards-Version: 3.8.0
|
Standards-Version: 3.8.0
|
||||||
|
Vcs-Svn: svn://svn.debian.org/svn/pkg-fedora-ds/freeipa/trunk/
|
||||||
|
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-fedora-ds/freeipa/trunk/
|
||||||
Homepage: http://www.freeipa.org
|
Homepage: http://www.freeipa.org
|
||||||
|
|
||||||
Package: freeipa-server
|
Package: freeipa-server
|
||||||
|
55
debian/rules
vendored
55
debian/rules
vendored
@ -22,20 +22,13 @@ configure-stamp: patch
|
|||||||
cd ipa-client; libtoolize --copy --force; aclocal; autoheader; automake --add-missing --gnu; autoconf; ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR)
|
cd ipa-client; libtoolize --copy --force; aclocal; autoheader; automake --add-missing --gnu; autoconf; ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
#Architecture
|
build: build-stamp
|
||||||
build: build-arch build-indep
|
build-stamp: configure-stamp
|
||||||
|
|
||||||
build-arch: build-arch-stamp
|
|
||||||
build-arch-stamp: configure-stamp
|
|
||||||
@for subdir in $(SUBDIRS); do \
|
@for subdir in $(SUBDIRS); do \
|
||||||
(cd $$subdir && $(MAKE)) || exit 1; \
|
(cd $$subdir && $(MAKE)) || exit 1; \
|
||||||
done
|
done
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
build-indep: build-indep-stamp
|
|
||||||
build-indep-stamp:
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
clean: clean-patched unpatch
|
clean: clean-patched unpatch
|
||||||
clean-patched:
|
clean-patched:
|
||||||
dh_testdir
|
dh_testdir
|
||||||
@ -63,65 +56,39 @@ unpatch:
|
|||||||
dpatch deapply-all
|
dpatch deapply-all
|
||||||
rm -rf patch-stamp debian/patched
|
rm -rf patch-stamp debian/patched
|
||||||
|
|
||||||
install: install-indep install-arch
|
install:
|
||||||
install-indep:
|
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_clean -k -i
|
dh_clean -k
|
||||||
dh_installdirs -i
|
dh_installdirs
|
||||||
dh_install -i
|
|
||||||
|
|
||||||
install-arch:
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_clean -k -s
|
|
||||||
dh_installdirs -s
|
|
||||||
@for subdir in $(SUBDIRS); do \
|
@for subdir in $(SUBDIRS); do \
|
||||||
(cd $$subdir && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install) || exit 1; \
|
(cd $$subdir && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install) || exit 1; \
|
||||||
done
|
done
|
||||||
rm -f $(CURDIR)/debian/tmp/usr/share/ipa/ipagui/static/javascript/prototype.js \
|
rm -f $(CURDIR)/debian/tmp/usr/share/ipa/ipagui/static/javascript/prototype.js \
|
||||||
$(CURDIR)/debian/tmp/usr/share/ipa/ipagui/static/javascript/scriptaculous.js
|
$(CURDIR)/debian/tmp/usr/share/ipa/ipagui/static/javascript/scriptaculous.js
|
||||||
dh_install -s
|
dh_install
|
||||||
# Must not depend on anything. This is to be called by
|
|
||||||
# binary-arch/binary-indep
|
|
||||||
# in another 'make' thread.
|
|
||||||
|
|
||||||
binary-common:
|
binary-indep: build install
|
||||||
|
|
||||||
|
binary-arch: build install
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_installchangelogs
|
dh_installchangelogs
|
||||||
dh_installdocs
|
dh_installdocs
|
||||||
dh_installexamples
|
dh_installexamples
|
||||||
dh_installdirs
|
dh_installdirs
|
||||||
# dh_installmenu
|
|
||||||
# dh_installdebconf
|
|
||||||
# dh_installlogrotate
|
|
||||||
# dh_installemacsen
|
|
||||||
# dh_installpam
|
|
||||||
# dh_installmime
|
|
||||||
# dh_python
|
|
||||||
dh_installinit
|
dh_installinit
|
||||||
# dh_installcron
|
|
||||||
# dh_installinfo
|
|
||||||
dh_installman
|
dh_installman
|
||||||
dh_link
|
dh_link
|
||||||
dh_strip
|
dh_strip
|
||||||
dh_compress
|
dh_compress
|
||||||
dh_fixperms
|
dh_fixperms
|
||||||
# dh_perl
|
|
||||||
dh_makeshlibs
|
dh_makeshlibs
|
||||||
dh_installdeb
|
dh_installdeb
|
||||||
dh_shlibdeps
|
dh_shlibdeps
|
||||||
dh_gencontrol
|
dh_gencontrol
|
||||||
dh_md5sums
|
dh_md5sums
|
||||||
dh_builddeb
|
dh_builddeb
|
||||||
# Build architecture independant packages using the common target.
|
|
||||||
binary-indep: build-indep install-indep
|
|
||||||
$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
|
|
||||||
|
|
||||||
# Build architecture dependant packages using the common target.
|
binary: binary-indep binary-arch
|
||||||
binary-arch: build-arch install-arch
|
.PHONY: build clean binary-indep binary-arch binary install
|
||||||
$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
|
|
||||||
|
|
||||||
binary: binary-arch binary-indep
|
|
||||||
.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch configure
|
|
||||||
|
Loading…
Reference in New Issue
Block a user