1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Task: apply debian patches
Tools: quilt
Command: quilt push -a
Description: Please read /usr/share/doc/quilt/README.source how to use
quilt for managing Debian patches
Task: getting the used tarball
Tools: make, wget
Command: make -f debian/rules get-orig-source
Description: The tarball for libsfml was repacked from upstream to get rid of
some libraries that where built in upstream. Furthermore the executeable
status of parts of the samples where mistakenly set upstream and are fixed by
the repackaging. To download and repack the tarball you can use tha makefile
target create_orig_tarball in debian/rules. Be sure to use it from the base
directory of the extracted source.
.
If you prefer doing this manually remove all «glew» «glext» «libjpeg» «libpng»
«zlib» Subdirectories from the include/ and src/ trees and change the
executeable state e.g. by this command:
find samples \( -name "*.jpg" -o -name "*.png" -o -name "*.[ch]pp" -o \
-name "*.sfx" \) -print | xargs /bin/chmod a-x ; \
|