Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd4baa5337 | ||
|
|
4621e25b1e | ||
|
|
4dd7c5aa2e | ||
|
|
341d1cf41b | ||
|
|
95a450f300 | ||
|
|
01c10d9cda |
7 changed files with 64 additions and 37 deletions
0
.cvsignore → .gitignore
vendored
0
.cvsignore → .gitignore
vendored
|
|
@ -1,6 +1,6 @@
|
|||
diff -up acetoneiso_2.0.3/src/sources/converter.h.BAD acetoneiso_2.0.3/src/sources/converter.h
|
||||
--- acetoneiso_2.0.3/src/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400
|
||||
+++ acetoneiso_2.0.3/src/sources/converter.h 2009-04-09 09:51:03.000000000 -0400
|
||||
--- acetoneiso_2.0.3/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400
|
||||
+++ acetoneiso_2.0.3/sources/converter.h 2009-04-09 09:51:03.000000000 -0400
|
||||
@@ -125,6 +125,7 @@ else {
|
||||
void acetoneiso::get_poweriso()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,16 +1,15 @@
|
|||
Name: AcetoneISO2
|
||||
Version: 2.0.3
|
||||
Release: 1%{?dist}
|
||||
Version: 2.0.3.2
|
||||
Release: 2%{?dist}
|
||||
Summary: CD/DVD Image Manipulator
|
||||
Group: Applications/Archiving
|
||||
License: GPLv3
|
||||
URL: http://www.acetoneteam.org/
|
||||
Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/acetoneiso_%{version}.tar.gz
|
||||
Patch0: acetoneiso2-2.0.3-desktop.patch
|
||||
Patch1: acetoneiso2-2.0.2-no-optdirs.patch
|
||||
Patch2: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils
|
||||
Source0: http://download.sourceforge.net/sourceforge/acetoneiso2/Acetoneiso_%{version}.tar.gz
|
||||
Patch0: acetoneiso2-2.0.3.2-desktop.patch
|
||||
Patch1: AcetoneISO2-2.0.3-no-poweriso-for-non-x86.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: kdewebdev-devel, qt4-devel, desktop-file-utils
|
||||
Requires: p7zip, cdrdao
|
||||
Requires: fuseiso, fuse, genisoimage
|
||||
Requires: gnupg, pinentry-qt
|
||||
|
|
@ -32,19 +31,16 @@ AcetoneISO2: The CD/DVD image manipulator for Linux, it can do the following:
|
|||
- Restore a lost CUE file of *.bin *.img
|
||||
|
||||
%prep
|
||||
%setup -q -n acetoneiso_%{version}
|
||||
%setup -q -n Acetoneiso_%{version}
|
||||
%patch0 -p1
|
||||
# %%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch1 -p1
|
||||
|
||||
%build
|
||||
cd src/
|
||||
qmake-qt4
|
||||
make %{?_smp_mflags} LFLAGS="$RPM_OPT_FLAGS"
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
cd src/
|
||||
make INSTALL_ROOT=$RPM_BUILD_ROOT install
|
||||
mv $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO.desktop $RPM_BUILD_ROOT%{_datadir}/applications/AcetoneISO2.desktop
|
||||
mv $RPM_BUILD_ROOT%{_bindir}/acetoneiso $RPM_BUILD_ROOT%{_bindir}/acetoneiso2
|
||||
|
|
@ -68,6 +64,15 @@ rm -rf $RPM_BUILD_ROOT
|
|||
%{_datadir}/pixmaps/Acetino2.png
|
||||
|
||||
%changelog
|
||||
* Thu Jul 23 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.3.2-2
|
||||
- forgot to tag some files
|
||||
|
||||
* Thu Jul 23 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.3.2-1
|
||||
- update to 2.0.3.2
|
||||
|
||||
* Wed Jul 1 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.3.1-1
|
||||
- update to 2.0.3.1
|
||||
|
||||
* Thu Apr 9 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.3-1
|
||||
- update to 2.0.3 final
|
||||
|
||||
|
|
|
|||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: AcetoneISO2
|
||||
# $Id$
|
||||
NAME := AcetoneISO2
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
28
acetoneiso2-2.0.3.1-desktop.patch
Normal file
28
acetoneiso2-2.0.3.1-desktop.patch
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
diff -up AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop
|
||||
--- AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop.BAD 2009-07-01 16:50:39.435697554 -0400
|
||||
+++ AcetoneISO_2.0.3.1/menu/AcetoneISO.desktop 2009-07-01 16:51:14.541708350 -0400
|
||||
@@ -1,21 +1,13 @@
|
||||
[Desktop Entry]
|
||||
-Categories=Qt;KDE;Application;AudioVideo;DiscBurning;
|
||||
-Comment=
|
||||
-Comment[it]=
|
||||
+Categories=Qt;KDE;AudioVideo;DiscBurning;
|
||||
Encoding=UTF-8
|
||||
Exec=acetoneiso
|
||||
-GenericName=
|
||||
-GenericName[it]=
|
||||
-Icon=/usr/share/pixmaps/Acetino2.png
|
||||
+Icon=Acetino2
|
||||
MimeType=application/x-iso
|
||||
-Name=AcetoneISO
|
||||
+Name=AcetoneISO2
|
||||
GenericName= CD/DVD image manipulator
|
||||
GenericName[it]= Strumenti per immagini CD/DVD
|
||||
-Path=
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
-TerminalOptions=
|
||||
Type=Application
|
||||
-X-DCOP-ServiceType=
|
||||
X-KDE-SubstituteUID=false
|
||||
-X-KDE-Username=
|
||||
15
acetoneiso2-2.0.3.2-desktop.patch
Normal file
15
acetoneiso2-2.0.3.2-desktop.patch
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
diff -up Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop
|
||||
--- Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop.BAD 2009-07-23 18:30:22.496042966 -0400
|
||||
+++ Acetoneiso_2.0.3.2/menu/AcetoneISO.desktop 2009-07-23 18:30:43.351041731 -0400
|
||||
@@ -2,9 +2,9 @@
|
||||
Categories=Qt;KDE;Application;AudioVideo;DiscBurning;
|
||||
Encoding=UTF-8
|
||||
Exec=acetoneiso
|
||||
-Icon=/usr/share/pixmaps/Acetino2.png
|
||||
+Icon=Acetino2
|
||||
MimeType=application/x-iso
|
||||
-Name=AcetoneISO
|
||||
+Name=AcetoneISO2
|
||||
GenericName=CD/DVD image manipulator
|
||||
GenericName[it]=Strumenti per immagini CD/DVD
|
||||
GenericName[de]=CD/DVD-Abbildmanager
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
8660f1675dd1544e2c8da21638706622 acetoneiso_2.0.3.tar.gz
|
||||
4d6724e134280f8d1b92f4b9fb1579f7 Acetoneiso_2.0.3.2.tar.gz
|
||||
|
|
|
|||
Reference in a new issue