- Timestamp:
- Dec 20, 2005, 7:38:11 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/mindi/install.sh
r244 r250 31 31 echo "mindi ${MINDIVER}-r${MINDIREV} will be installed under $local" 32 32 33 if [ "_$DOCDIR" = "_" ]; then 34 DOCDIR=$local/share/doc/mindi-$MINDIVER 35 fi 33 DOCDIR=$local/share/doc/mindi-$MINDIVER 34 MANDIR=$local/share/man/man8 36 35 37 36 echo "Creating target directories ..." 38 install -m 755 -d $conf $local/lib/mindi $ local/share/man/man8$local/sbin $DOCDIR37 install -m 755 -d $conf $local/lib/mindi $MANDIR $local/sbin $DOCDIR 39 38 40 39 echo "Copying files ..." … … 55 54 install -m 755 analyze-my-lvm parted2fdisk.pl $local/sbin 56 55 57 install -m 644 mindi.8 $ local/share/man/man856 install -m 644 mindi.8 $MANDIR 58 57 install -m 644 CHANGES COPYING README README.busybox README.ia64 README.pxe TODO INSTALL $DOCDIR 59 58 … … 104 103 if [ "$RPMBUILDMINDI" != "true" ]; then 105 104 chown -R root:root $local/lib/mindi $conf/mindi $conf $DOCDIR 106 chown root:root $local/sbin/mindi $ local/share/man/man8/mindi.8 $local/sbin/analyze-my-lvm $local/sbin/parted2fdisk.pl105 chown root:root $local/sbin/mindi $MANDIR/mindi.8 $local/sbin/analyze-my-lvm $local/sbin/parted2fdisk.pl 107 106 if [ "$ARCH" = "ia64" ] ; then 108 107 chown root:root $local/sbin/parted2fdisk -
trunk/mindi/mindi.spec
r244 r250 11 11 %define version VVV 12 12 %define mrel 1 13 %define docname %{name}-%{version}14 13 %define src %{name}-%{version}.tgz 15 14 … … 33 32 %if %is_suse 34 33 Group: Archiving/Backup 35 %define docname %{name}36 34 %endif 37 35 … … 72 70 export CONFDIR=${RPM_BUILD_ROOT}%{_sysconfdir} 73 71 export RPMBUILDMINDI="true" 74 export DOCDIR=${RPM_BUILD_ROOT}${RPM_DOC_DIR}/%{docname}75 72 76 73 ./install.sh 74 75 %if %is_suse 76 %{__rm} -rf $RPM_BUILD_ROOT/%{_datadir}/doc/%name-%{version} 77 %endif 77 78 78 79 %clean -
trunk/mondo/configure.in
r238 r250 126 126 AC_CHECK_FUNCS([bzero getcwd memmove memset mkdir mkfifo setenv strcasecmp strchr strerror strrchr strstr getline asprintf trunc vasprintf]) 127 127 128 AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/docs/Makefile mondo/docs/en/Makefile mondo/docs/en/1.6x-howto/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile ])128 AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/docs/Makefile mondo/docs/en/Makefile mondo/docs/en/1.6x-howto/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/xmondo/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile]) -
trunk/mondo/mondo.spec
r244 r250 11 11 %define version VVV 12 12 %define mrel 1 13 %define src %{name}-%{version}.tgz 13 14 14 15 %if %is_redhat 15 %define src %{name}-%{version}.tgz16 16 Group: Applications/Archiving 17 17 Autoreq: 0 … … 31 31 32 32 %if %is_suse 33 %define src %{name}-%{version}.tgz34 33 Group: Archiving/Backup 35 34 %endif … … 101 100 %{__rm} -rf $RPM_BUILD_ROOT 102 101 %makeinstall 102 %if %is_suse 103 %{__rm} -rf $RPM_BUILD_ROOT/%{_datadir}/doc/%name-%{version} 104 %endif 103 105 104 106 %post -
trunk/mondo/mondo/Makefile.am
r181 r250 1 SUBDIRS = common mondoarchive mondorestore docs restore-scripts 1 SUBDIRS = common mondoarchive mondorestore docs restore-scripts post-nuke.sample 2 DIST_SUBDIRS = common mondoarchive mondorestore xmondo docs restore-scripts post-nuke.sample 2 3 3 4 pkglib_DATA = do-not-compress-these 4 5 install-data-hook: post-nuke.sample6 cp -R post-nuke.sample $(pkglibdir)/
Note:
See TracChangeset
for help on using the changeset viewer.