mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Additional build fixes from autoconf merge.
This commit is contained in:
33
Makefile
33
Makefile
@@ -41,20 +41,18 @@ all:
|
|||||||
done
|
done
|
||||||
|
|
||||||
autogen:
|
autogen:
|
||||||
cd ipa-server && sh autogen.sh --prefix=/usr --sysconfdir=/etc
|
cd ipa-server; ./autogen.sh --prefix=/usr --sysconfdir=/etc
|
||||||
cd ipa-client && sh autogen.sh --prefix=/usr --sysconfdir=/etc
|
cd ipa-client; ./autogen.sh --prefix=/usr --sysconfdir=/etc
|
||||||
|
|
||||||
|
configure:
|
||||||
|
cd ipa-server; ./configure --prefix=/usr --sysconfdir=/etc
|
||||||
|
cd ipa-client; ./configure --prefix=/usr --sysconfdir=/etc
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
@for subdir in $(SUBDIRS); do \
|
@for subdir in $(SUBDIRS); do \
|
||||||
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
||||||
done
|
done
|
||||||
|
|
||||||
clean:
|
|
||||||
@for subdir in $(SUBDIRS); do \
|
|
||||||
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
|
||||||
done
|
|
||||||
rm -f *~
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@for subdir in $(SUBDIRS); do \
|
@for subdir in $(SUBDIRS); do \
|
||||||
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
||||||
@@ -91,7 +89,7 @@ tarballs:
|
|||||||
# ipa-server
|
# ipa-server
|
||||||
mv dist/freeipa/ipa-server dist/$(SERV_TARBALL_PREFIX)
|
mv dist/freeipa/ipa-server dist/$(SERV_TARBALL_PREFIX)
|
||||||
rm -f dist/$(SERV_TARBALL)
|
rm -f dist/$(SERV_TARBALL)
|
||||||
cd dist/$(SERV_TARBALL_PREFIX); sh autogen.sh
|
cd dist/$(SERV_TARBALL_PREFIX); ./autogen.sh; make distclean
|
||||||
cd dist; tar cfz $(SERV_TARBALL) $(SERV_TARBALL_PREFIX)
|
cd dist; tar cfz $(SERV_TARBALL) $(SERV_TARBALL_PREFIX)
|
||||||
rm -fr dist/$(SERV_TARBALL_PREFIX)
|
rm -fr dist/$(SERV_TARBALL_PREFIX)
|
||||||
|
|
||||||
@@ -110,7 +108,7 @@ tarballs:
|
|||||||
# ipa-client
|
# ipa-client
|
||||||
mv dist/freeipa/ipa-client dist/$(CLI_TARBALL_PREFIX)
|
mv dist/freeipa/ipa-client dist/$(CLI_TARBALL_PREFIX)
|
||||||
rm -f dist/$(CLI_TARBALL)
|
rm -f dist/$(CLI_TARBALL)
|
||||||
cd dist/$(CLI_TARBALL_PREFIX); sh autogen.sh
|
cd dist/$(CLI_TARBALL_PREFIX); ./autogen.sh; make distclean
|
||||||
cd dist; tar cfz $(CLI_TARBALL) $(CLI_TARBALL_PREFIX)
|
cd dist; tar cfz $(CLI_TARBALL) $(CLI_TARBALL_PREFIX)
|
||||||
rm -fr dist/$(CLI_TARBALL_PREFIX)
|
rm -fr dist/$(CLI_TARBALL_PREFIX)
|
||||||
|
|
||||||
@@ -149,7 +147,20 @@ rpms: rpmroot rpm-ipa-server rpm-ipa-admin rpm-ipa-python rpm-ipa-client
|
|||||||
|
|
||||||
dist: version-update archive tarballs archive-cleanup rpms
|
dist: version-update archive tarballs archive-cleanup rpms
|
||||||
|
|
||||||
local-dist: clean version-update local-archive tarballs archive-cleanup rpms
|
local-dist: autogen clean version-update local-archive tarballs archive-cleanup rpms
|
||||||
|
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@for subdir in $(SUBDIRS); do \
|
||||||
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
||||||
|
done
|
||||||
|
rm -f *~
|
||||||
|
|
||||||
|
distclean:
|
||||||
|
@for subdir in $(SUBDIRS); do \
|
||||||
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
||||||
|
done
|
||||||
|
rm -fr rpmbuild dist
|
||||||
|
|
||||||
maintainer-clean: clean
|
maintainer-clean: clean
|
||||||
rm -fr rpmbuild dist
|
rm -fr rpmbuild dist
|
||||||
|
|||||||
0
ipa-client/autogen.sh
Normal file → Executable file
0
ipa-client/autogen.sh
Normal file → Executable file
@@ -1,6 +1,6 @@
|
|||||||
Name: freeipa-client
|
Name: freeipa-client
|
||||||
Version: 0.3.0
|
Version: 0.3.0
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: FreeIPA client
|
Summary: FreeIPA client
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@@ -41,6 +41,9 @@ rm -rf %{buildroot}
|
|||||||
%{_usr}/share/ipa/*
|
%{_usr}/share/ipa/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 18 2007 Karl MacMillan <kmacmill@redhat.com> - 0.3.0-2
|
||||||
|
- Convert to autotools-based build
|
||||||
|
|
||||||
* Thu Aug 16 2007 Simo Sorce <ssorce@redhat.com> - 0.1.0-1
|
* Thu Aug 16 2007 Simo Sorce <ssorce@redhat.com> - 0.1.0-1
|
||||||
- Initial rpm version
|
- Initial rpm version
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: freeipa-client
|
Name: freeipa-client
|
||||||
Version: VERSION
|
Version: VERSION
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: FreeIPA client
|
Summary: FreeIPA client
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@@ -41,6 +41,9 @@ rm -rf %{buildroot}
|
|||||||
%{_usr}/share/ipa/*
|
%{_usr}/share/ipa/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 18 2007 Karl MacMillan <kmacmill@redhat.com> - 0.3.0-2
|
||||||
|
- Convert to autotools-based build
|
||||||
|
|
||||||
* Thu Aug 16 2007 Simo Sorce <ssorce@redhat.com> - 0.1.0-1
|
* Thu Aug 16 2007 Simo Sorce <ssorce@redhat.com> - 0.1.0-1
|
||||||
- Initial rpm version
|
- Initial rpm version
|
||||||
|
|
||||||
|
|||||||
0
ipa-server/autogen.sh
Normal file → Executable file
0
ipa-server/autogen.sh
Normal file → Executable file
@@ -1,6 +1,6 @@
|
|||||||
Name: freeipa-server
|
Name: freeipa-server
|
||||||
Version: 0.4.0
|
Version: 0.4.0
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: FreeIPA authentication server
|
Summary: FreeIPA authentication server
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@@ -40,7 +40,7 @@ rm -rf %{buildroot}
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_sbindir}/ipa-server-install
|
%{_sbindir}/ipa-server-install
|
||||||
%{_sbindir}/ipa-kpasswd
|
%{_sbindir}/ipa_kpasswd
|
||||||
%{_sbindir}/ipa-webgui
|
%{_sbindir}/ipa-webgui
|
||||||
%attr(755,root,root) %{_initrddir}/ipa-kpasswd
|
%attr(755,root,root) %{_initrddir}/ipa-kpasswd
|
||||||
%attr(755,root,root) %{_initrddir}/ipa-webgui
|
%attr(755,root,root) %{_initrddir}/ipa-webgui
|
||||||
@@ -57,6 +57,9 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 18 2007 Karl MacMillan <kmacmill@redhat.com> - 0.4.0-3
|
||||||
|
- Convert to autotools-based build
|
||||||
|
|
||||||
* Tue Sep 25 2007 Karl MacMillan <kmacmill@redhat.com> - 0.4.0-2
|
* Tue Sep 25 2007 Karl MacMillan <kmacmill@redhat.com> - 0.4.0-2
|
||||||
- Package ipa-webgui
|
- Package ipa-webgui
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Name: freeipa-server
|
Name: freeipa-server
|
||||||
Version: VERSION
|
Version: VERSION
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: FreeIPA authentication server
|
Summary: FreeIPA authentication server
|
||||||
|
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
@@ -40,7 +40,7 @@ rm -rf %{buildroot}
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_sbindir}/ipa-server-install
|
%{_sbindir}/ipa-server-install
|
||||||
%{_sbindir}/ipa-kpasswd
|
%{_sbindir}/ipa_kpasswd
|
||||||
%{_sbindir}/ipa-webgui
|
%{_sbindir}/ipa-webgui
|
||||||
%attr(755,root,root) %{_initrddir}/ipa-kpasswd
|
%attr(755,root,root) %{_initrddir}/ipa-kpasswd
|
||||||
%attr(755,root,root) %{_initrddir}/ipa-webgui
|
%attr(755,root,root) %{_initrddir}/ipa-webgui
|
||||||
@@ -57,6 +57,9 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 18 2007 Karl MacMillan <kmacmill@redhat.com> - 0.4.0-3
|
||||||
|
- Convert to autotools-based build
|
||||||
|
|
||||||
* Tue Sep 25 2007 Karl MacMillan <kmacmill@redhat.com> - 0.4.0-2
|
* Tue Sep 25 2007 Karl MacMillan <kmacmill@redhat.com> - 0.4.0-2
|
||||||
- Package ipa-webgui
|
- Package ipa-webgui
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ INCLUDES = \
|
|||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
sbin_PROGRAMS = \
|
sbin_PROGRAMS = \
|
||||||
ipa-kpasswd \
|
ipa_kpasswd \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
ipa_kpasswd_SOURCES = \
|
ipa_kpasswd_SOURCES = \
|
||||||
|
|||||||
Reference in New Issue
Block a user