Re: [Cooker] Note editing program for Mandrake

2000-08-12 Thread Reinhard Katzmann

On Fri, Aug 11, 2000 at 09:27:25PM +0200, Eric MC.D wrote:
 Very interresting !
 A little pb to compile.
 Must add PACKAGE and VERSION to acconfig.h.

Which package of these ? noteedit has no acconfig.h. Also I did not
yet post any mdk specs or patches :)

Best Regards,

Reinhard Katzmann
-- 
E-Mail: [EMAIL PROTECTED]

Current Projects: Linux-Installation Mandrake 7.1 (95% finished)
  Improvements of Driver for Tevion Tablet
  Java-DB and -Interface for Pincity (93 % finished)
GnuPG Public Key available on request.

 PGP signature


Re: [Cooker] Note editing program for Mandrake

2000-08-12 Thread Guillaume Cottenceau

Reinhard Katzmann [EMAIL PROTECTED] writes:

 --KsGdsel6WgEHnImy
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Fri, Aug 11, 2000 at 09:27:25PM +0200, Eric MC.D wrote:
  Very interresting !
  A little pb to compile.
  Must add PACKAGE and VERSION to acconfig.h.
 
 Which package of these ? noteedit has no acconfig.h. Also I did not
 yet post any mdk specs or patches :)

should add these in the $package_source_base/config.h.in

many packages do.


-- 
Guillaume Cottenceau -- Distribution Developer for MandrakeSoft
http://www.mandrakesoft.com/~gc/




Re: [Cooker] Note editing program for Mandrake

2000-08-12 Thread Reinhard Katzmann

Hi Guillaume! (and Lenny, the mail should have gone to cooker anyway)

  On Fri, Aug 11, 2000 at 09:27:25PM +0200, Eric MC.D wrote:
   Very interresting !
   A little pb to compile.
   Must add PACKAGE and VERSION to acconfig.h.
  
  Which package of these ? noteedit has no acconfig.h. Also I did not
  yet post any mdk specs or patches :)
 
 should add these in the $package_source_base/config.h.in
 
 many packages do.

noteedit itself has a configure script but all in all it's quite messy.
It has f.e. no make install and also config.h.in is not there though
there is a config.h. So I don't dare to add config.h.in at the moment.

I've appended my current version of the noteedit spec file. I've
added a "-g" option for me so I could quickly create a debug version
(with rpm -bc SPECS/noteedit.spec :-). The debug symbols should be 
stripped automagically by Mandrake's rpm. I'll post the other specs
as well if you want to include it in cookers contrib.

Best regards,

Reinhard Katzmann
-- 
E-Mail: [EMAIL PROTECTED]

Current Projects: Linux-Installation Mandrake 7.1 (95% finished)
  Improvements of Driver for Tevion Tablet
  Java-DB and -Interface for Pincity (93 % finished)
GnuPG Public Key available on request.


--- noteedit-1.7.5/configure.in~Mon Jul 24 16:38:54 2000
+++ noteedit-1.7.5/configure.in Sat Aug 12 16:53:49 2000
@@ -1,3 +1,4 @@
+AM_PROG_LIBTOOL
 AC_INIT(mainframewidget.cpp)
 
 stdlibdirs="/lib /usr/lib /usr/local/lib /usr/X11/lib /usr/X11R6/lib /usr/lib/qt2/lib 
/usr/lib/qt/lib"
--- noteedit-1.7.5/Makefile.in~ Tue Jul 18 19:27:46 2000
+++ noteedit-1.7.5/Makefile.in  Sat Aug 12 18:25:45 2000
@@ -23,79 +23,79 @@
$(TSE3OBJS) \
multistaff.moc.o timeedit.o timeedit.moc.o timesig.o transpainter.o main.o
 
-CXXFLAGS = $(DEVELFLAGS) $(KMIDLININCLUDE) $(QTINCDIR) $(X11INCLUDE) $(TSE3INCLUDE)
-LDFLAGS = $(KMIDLIBDIR) $(QTLIBDIR) $(X11LIB) $(TSE3LIBS) 
+MYCXXFLAGS = $(DEVELFLAGS) $(KMIDLININCLUDE) $(QTINCDIR) $(X11INCLUDE) $(TSE3INCLUDE) 
+MYLDFLAGS = $(KMIDLIBDIR) $(QTLIBDIR) $(X11LIB) $(TSE3LIBS) 
 CXX = g++
 
 .SUFFIXES : .moc.cpp
 
 noteedit: $(OBJS)
-   $(CXX) -o noteedit $(OBJS) $(LDFLAGS)
+   $(CXX) -o noteedit $(OBJS) $(MYLDFLAGS) $(LDFLAGS)
 
 mainframewidget.moc.o: mainframewidget.h
rm -f mainframewidget.moc.cpp
$(MOC)  mainframewidget.h  mainframewidget.moc.cpp
-   $(CXX) $(CXXFLAGS) -c mainframewidget.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c mainframewidget.moc.cpp
 midimapper.moc.o: midimapper.h
rm -f midimapper.moc.cpp
$(MOC)  midimapper.h  midimapper.moc.cpp
-   $(CXX) $(CXXFLAGS) -c midimapper.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c midimapper.moc.cpp
 mexportdialog.moc.o: mexportdialog.h
rm -f mexportdialog.moc.cpp
$(MOC)  mexportdialog.h  mexportdialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c mexportdialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c mexportdialog.moc.cpp
 pmxexportdialog.moc.o: pmxexportdialog.h
rm -f pmxexportdialog.moc.cpp
$(MOC)  pmxexportdialog.h  pmxexportdialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c pmxexportdialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c pmxexportdialog.moc.cpp
 keyoffs.moc.o: keyoffs.h
rm -f keyoffs.moc.cpp
$(MOC)  keyoffs.h  keyoffs.moc.cpp
-   $(CXX) $(CXXFLAGS) -c keyoffs.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c keyoffs.moc.cpp
 scaleedit.moc.o: scaleedit.h
rm -f scaleedit.moc.cpp
$(MOC)  scaleedit.h  scaleedit.moc.cpp
-   $(CXX) $(CXXFLAGS) -c scaleedit.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c scaleedit.moc.cpp
 voldialog.moc.o: voldialog.h
rm -f voldialog.moc.cpp
$(MOC)  voldialog.h  voldialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c voldialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c voldialog.moc.cpp
 lyricsdialog.moc.o: lyricsdialog.h
rm -f lyricsdialog.moc.cpp
$(MOC)  lyricsdialog.h  lyricsdialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c lyricsdialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c lyricsdialog.moc.cpp
 distancedialog.moc.o: distancedialog.h
rm -f distancedialog.moc.cpp
$(MOC)  distancedialog.h  distancedialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c distancedialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c distancedialog.moc.cpp
 filterdialog.moc.o: filterdialog.h
rm -f filterdialog.moc.cpp
$(MOC)  filterdialog.h  filterdialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c filterdialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c filterdialog.moc.cpp
 metronomdialog.moc.o: metronomdialog.h
rm -f metronomdialog.moc.cpp
$(MOC)  metronomdialog.h  metronomdialog.moc.cpp
-   $(CXX) $(CXXFLAGS) -c metronomdialog.moc.cpp
+   $(CXX) $(MYCXXFLAGS) $(CXXFLAGS) -c metronomdialog.moc.cpp
 smallestitemdialog.moc.o: smallestitemdialog.h
rm -f smallestitemdialog.moc.cpp
$(MOC)  

Re: [Cooker] Note editing program for Mandrake

2000-08-12 Thread Chmouel Boudjnah

Reinhard Katzmann [EMAIL PROTECTED] writes:

 I've appended my current version of the noteedit spec file. I've

humm :

 %post
 cat /etc/profile.d/noteedit.sh EOF
 export NOTE_EDIT_HOME = %{_datadir}/noteedit/resources
 EOF
 cat /etc/profile.d/noteedit.csh EOF
 setenv NOTE_EDIT_HOME %{_datadir}/noteedit/resources
 EOF
 
 rm /etc/profile.d/noteedit.*

why not  :

%install
[...]
mkdir -p %buildroot/etc/profile.d/
cat %buildroot/etc/profile.d/noteedit.sh EOF
export NOTE_EDIT_HOME = %{_datadir}/noteedit/resources
EOF
cat %buildroot/etc/profile.d/noteedit.csh EOF
setenv NOTE_EDIT_HOME %{_datadir}/noteedit/resources
EOF

%files
/etc/profile.d/*sh


and BTW your export is broken it should be :

export NOTE_EDIT_HOME=blabalbaa

not with space between = 

-- 
MandrakeSoft Inchttp://www.mandrakesoft.com
San-Francisco, CA USA --Chmouel




Re: [Cooker] Note editing program for Mandrake

2000-08-12 Thread Eric MC.D

Very interresting !
A little pb to compile.
Must add PACKAGE and VERSION to acconfig.h.
Thanks
Eric MC

Reinhard Katzmann wrote:
 
 Hi!
 
 I just wondered how much interest is there on this list for such a
 program. Also there is a quite nice midi sequencer program based on
 the same lib as the program needs. It's name is noteedit. It requires
 a bunch of programs:
 1) qt2 for the GUI
 2) tse3 for the midi input/output (a 'sequencer engine' library)
http:/tse3.sourceforge.net
 3) musixtex for the output
http://www.gmd.de/Misc/Music/musixtex/
 4) pmx, a preprocessor to musixtex for an alternative output. It's
output is much easier to read and modify than musixtex itself.
http://www.gmd.de/Misc/Music/pmx
 5) tetex
 
 notedit can be found here:
 http://rnvs.informatik.tu-chemnitz.de/~ja/noteedit/noteedit.html
 
 You can set notes either with the GUI directly or with a midi-capable
 instrument. Therefore you better should use a sequencer directly so
 the program anthem (anthem.sourceforge.net) could be added as well :-).
 The midi files can then be edited (for bows, trills and other ornaments).
 
 I have created/adopted rpm spec files for the applications which are
 not in contrib. If you think it's a worthful addition just tell me
 and I'll post the spec files to the list.
 
 Best regards,
 
 Reinhard Katzmann
 --
 E-Mail: [EMAIL PROTECTED]
 
 Current Projects: Linux-Installation Mandrake 7.1 (95% finished)
   Improvements of Driver for Tevion Tablet
   Java-DB and -Interface for Pincity (93 % finished)
 GnuPG Public Key available on request.
 
   
Part 1.2Type: application/pgp-signature





[Cooker] Note editing program for Mandrake

2000-08-11 Thread Reinhard Katzmann

Hi!

I just wondered how much interest is there on this list for such a 
program. Also there is a quite nice midi sequencer program based on 
the same lib as the program needs. It's name is noteedit. It requires
a bunch of programs:
1) qt2 for the GUI
2) tse3 for the midi input/output (a 'sequencer engine' library)
   http:/tse3.sourceforge.net
3) musixtex for the output
   http://www.gmd.de/Misc/Music/musixtex/
4) pmx, a preprocessor to musixtex for an alternative output. It's
   output is much easier to read and modify than musixtex itself.
   http://www.gmd.de/Misc/Music/pmx
5) tetex

notedit can be found here:
http://rnvs.informatik.tu-chemnitz.de/~ja/noteedit/noteedit.html

You can set notes either with the GUI directly or with a midi-capable
instrument. Therefore you better should use a sequencer directly so
the program anthem (anthem.sourceforge.net) could be added as well :-).
The midi files can then be edited (for bows, trills and other ornaments).

I have created/adopted rpm spec files for the applications which are
not in contrib. If you think it's a worthful addition just tell me
and I'll post the spec files to the list.

Best regards,

Reinhard Katzmann
-- 
E-Mail: [EMAIL PROTECTED]

Current Projects: Linux-Installation Mandrake 7.1 (95% finished)
  Improvements of Driver for Tevion Tablet
  Java-DB and -Interface for Pincity (93 % finished)
GnuPG Public Key available on request.

 PGP signature