Changeset 403 in MondoRescue
- Timestamp:
- Feb 18, 2006, 2:42:20 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 3 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mindi/distributions/rpm/mindi.spec
r388 r403 37 37 verify packages, etc. 38 38 39 %debug_package 39 40 %prep 40 41 %{__rm} -rf $RPM_BUILD_ROOT … … 79 80 80 81 %changelog 82 * Fri Feb 16 2006 Bruno Cornec <bcornec@users.berlios.de> 1.0.7 83 - Updated to 1.0.7 84 - RPMS spec are now generated instead of using '%' variables 85 81 86 * Fri Nov 05 2005 Bruno Cornec <bcornec@users.berlios.de> 1.05 82 87 - ia64 is now working -
trunk/mindi/distributions/suse/spec.m4
r388 r403 4 4 define(`SSS', %{name}-%{version}.tgz)dnl 5 5 dnl DDD is replaced by the list of dependencies specific to that distro 6 define(`DDD', %{addreqb} )dnl6 define(`DDD', %{addreqb}, syslinux)dnl 7 7 dnl GRP is replaced by the RPM group of apps 8 define(`GRP', Archiving/Backup)dnl8 define(`GRP', Productivity/Archiving/Backup)dnl -
trunk/mindi/mindi
r384 r403 16 16 export ARCH=`/bin/arch` 17 17 18 ADDITIONAL_BOOT_PARAMS="acpi=off apm=off devfs=nomount exec-shield=0 "18 ADDITIONAL_BOOT_PARAMS="acpi=off apm=off devfs=nomount exec-shield=0 noresume selinux=0 barrier=off" 19 19 20 20 RUN_AFTER_INITIAL_BOOT_PHASE="echo \"Who lives in a pineapple under the sea?\" > /tmp/spongebob.squarepants.txt" -
trunk/mondo/Makefile.am
r30 r403 1 1 AUTOMAKE_OPTIONS = 1.7 2 2 SUBDIRS = mondo 3 man8_MANS = mondo/mondoarchive/mondoarchive.8 mondo/mondorestore/mondorestore.83 man8_MANS = docs/man/mondoarchive.8 docs/man/mondorestore.8 -
trunk/mondo/distributions/rpm/mondo.spec
r388 r403 32 32 %endif 33 33 34 #%package xmondo35 #Summary: A QT based graphical front end for %{name}36 #Group: Applications/Archiving37 #Requires: %{name} = %{version}-${release}, qt, kdelibs38 #39 #%package %{name}-devel40 #Summary: Header files for building against Mondo41 #%if %is_mandrake42 #Group: Development/Libraries43 #%endif44 #if %is_redhat45 #Group: Development/Other46 #%endif47 #Provides: libmondo-devel mondo-devel48 #Obsoletes: libmondo-devel49 #50 #%description -n %{name}-devel51 #Mondo libraries and includes52 53 34 %description 54 35 Mondo is a GPL disaster recovery solution to create backup media (CD, DVD, tape, network images) that can be used to redeploy the damaged system, as well as deploy similar or less similar systems. … … 74 55 con cintas y NFS, tambien. 75 56 76 #%description xmondo 77 #Xmondo is a QT based graphical frontend to mondoarchive. It can help you 78 #set up a backup by following onscreen prompts. 79 57 %debug_package 80 58 %prep 81 59 %setup -q -n %name-%{version} 82 60 83 61 %build 84 %configure %{!?_without_xmondo:--with-x11}62 %configure 85 63 %{__make} VERSION=%{version} CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT" 86 64 … … 106 84 %doc ChangeLog svn.log 107 85 %doc INSTALL COPYING README TODO AUTHORS NEWS 86 %doc docs/en/mondorescue-howto.html docs/en/mondorescue-howto.pdf 108 87 109 88 %attr(755,root,root) %{_sbindir}/* … … 112 91 %{_mandir} 113 92 114 #%{!?_without_xmondo:%files xmondo}115 #%{!?_without_xmondo:%{_sbindir}/xmondo}116 #%{!?_without_xmondo:%{_libdir}/libXmondo-%{libversion}.so}117 #%{!?_without_xmondo:%{_libdir}/libXmondo.so}118 #%{!?_without_xmondo:%{_datadir}/mondo/mondo.png}119 120 93 %changelog 94 * Fri Feb 17 2006 Bruno Cornec <bcornec@users.berlios.de> 2.0.7 95 - Updated to 2.0.7 96 - RPM sepc files are now generated 97 121 98 * Fri Nov 05 2005 Bruno Cornec <bcornec@users.berlios.de> 1.05 122 99 - ia64 is now working -
trunk/mondo/distributions/suse/spec.m4
r388 r403 4 4 define(`SSS', %{name}-%{version}.tgz)dnl 5 5 dnl DDD is replaced by the list of dependencies specific to that distro 6 define(`DDD', %{addreqb} )dnl6 define(`DDD', %{addreqb}, buffer, cdrecord)dnl 7 7 dnl GRP is replaced by the RPM group of apps 8 define(`GRP', Archiving/Backup)dnl8 define(`GRP', Productivity/Archiving/Backup)dnl -
trunk/mondo/mondo/common/my-stuff.h
r300 r403 314 314 * Malloc @p x to be MAX_STR_LEN bytes and call fatal_error() if we're out of memory. 315 315 */ 316 #define malloc_string(x) { x = malloc(MAX_STR_LEN); if (!x) { fatal_error("Unable to malloc"); } x[0] = x[1] = '\0'; }316 #define malloc_string(x) { x = (char *)malloc(MAX_STR_LEN); if (!x) { fatal_error("Unable to malloc"); } x[0] = x[1] = '\0'; } 317 317 318 318 /**
Note:
See TracChangeset
for help on using the changeset viewer.