Subversion Repositories ALCASAR

Rev

Details | Last modification | View Log

Rev Author Line No. Line
1012 richard 1
By Rexy
2
 
1015 richard 3
ALCASAR need the following programs that don't be included as RPM in Mageia :
4
  - coovachilli
5
  - havp
6
  - ulogd
489 richard 7
 
1549 richard 8
This howto explains how to build RPM of these programs in order to keep the distribution clean
489 richard 9
 
1015 richard 10
****  Prepare the RPM creation structure ***
1549 richard 11
- install the "rpm-build", "gengetopt", "libtool" packages
12
- create directories structure in your user home : mkdir -p ~/rpmbuild/{SRPMS,SOURCES,SPECS,tmp}
13
- find the ".rpmmacros" file on mageia wiki (https://wiki.mageia.org/en/Packagers_RPM_tutorial) and copy it in your home directory
1015 richard 14
 
489 richard 15
****  Coova-chilli   *****
1549 richard 16
- retrieve the last tarball of coova-chilli (or the svn archive).
17
- Untar it and test the compilation process ("sh ./bootstrap", "./configure", "make", "make install").
1550 richard 18
- all is in the /usr/local". Remove the instaled files ("make uninstall") and the binaries ("make clean").
19
- Compress the directory (ie : coova-chilli-1.3.0.tar.gz). Copy this tarball in the directory ~/rpmbuild/SOURCES/.
20
- copy the SPEC file from the ALCASAR archive to the directory ~/rpmbuild/SPEC
1561 richard 21
- change to the directory ~/pmbuild/SPEC and run the RPM build process excluding 'ssl' (rpmbuild -ba coova-chilli.spec --without ssl) 
1015 richard 22
 
1561 richard 23
INFO : .spec modifications since Redhat RPM :
793 richard 24
	- ajouter en première ligne "%define _disable_ld_no_undefined 1"
794 richard 25
	- pour la version 64b, ajouter 2 lignes intégrant le répertoire "lib64" lors de la suppression des binaires statiques (rm -rf $RPM_BUILD_ROOT/usr/lib/*.la)
1549 richard 26
	- exclure de l'archive les fichiers inutiles pour ALCASAR (wpad.dat, wwwdir, etc. via la directive '%exclude')
489 richard 27
 
334 richard 28
**** HAVP ****
29
- récupérer le tarball de la dernière version d'HAVP. Le décompresser dans un répertoire et tester la compilation traditionnelle (./configure + make)
491 franck 30
- copier ce tarball dans ~/rpmbuild/SOURCES/
793 richard 31
- adaptation du fichier .spec (version, packager, commentaires, etc.)