Need help with this FTBFS fife bug

2010-03-09 Thread LinuxDonald
Need help with this FTBFS fife bug. It don´t find boost for compiling. 
But with F-13 ist works not in devel (F-14)

Can anyone please help to find out why please?
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Need help with this FTBFS fife bug

2010-03-09 Thread LinuxDonald
Am 09.03.2010 21:24, schrieb LinuxDonald:
> Need help with this FTBFS fife bug. It don´t find boost for compiling.
> But with F-13 ist works not in devel (F-14)
>
> Can anyone please help to find out why please?
>
Here is the bug link that i forgot  
https://bugzilla.redhat.com/show_bug.cgi?id=564752
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Bug 549051 - package config file not installed (.pc)

2010-03-09 Thread LinuxDonald
I need help here too. The problem ist here the cmake don´t compile the 
.pc file (pkgconfig file)
And upstream don´t will fix that :(.
I have talked about this with cwickert and he have said it is patchable 
but he don´t have the time to make it.
Can any other please help me?

https://bugzilla.redhat.com/show_bug.cgi?id=549051
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Bug 549051 - package config file not installed (.pc)

2010-03-09 Thread LinuxDonald
Am 10.03.2010 00:12, schrieb Rex Dieter:
> LinuxDonald wrote:
>
>
>> I need help here too. The problem ist here the cmake don´t compile the
>> .pc file (pkgconfig file)
>> And upstream don´t will fix that :(.
>>  
> Why not?
>
> -- Rex
>
>
Here is the bug report for that at bullet bug tracker: 
http://code.google.com/p/bullet/issues/detail?id=337
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Bug 549051 - package config file not installed (.pc)

2010-03-09 Thread LinuxDonald
Am 10.03.2010 00:41, schrieb Rex Dieter:
> LinuxDonald wrote:
>
>
>> Am 10.03.2010 00:12, schrieb Rex Dieter:
>>  
>>> LinuxDonald wrote:
>>>
>
>
>>>> I need help here too. The problem ist here the cmake don´t compile the
>>>> .pc file (pkgconfig file)
>>>> And upstream don´t will fix that :(.
>>>>
>>>>  
>>> Why not?
>>>
>
>
>> Here is the bug report for that at bullet bug tracker:
>> http://code.google.com/p/bullet/issues/detail?id=337
>>  
> OK, I've provide an upstreamable patch and bullet.pc.cmake file in bugzilla.
> :)
>
> -- Rex
>
>
Thx for that :) I have added the patches in the upstream bug report :)

Thank you very much for your help :)
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Privoxy have a lot openbugs in F12

2010-03-22 Thread LinuxDonald

Am 22.03.2010 09:45, schrieb Chen Lei:

Hi all,
The privoxy current in F12 is a beta version and had a lot of bugs.
See 
https://bugzilla.redhat.com/buglist.cgi?component=privoxy&product=Fedora 


Can anyone tell Karsten to fix those bugs?
Regard.
Chen Lei



And this Bug too https://bugzilla.redhat.com/show_bug.cgi?id=567063
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

openal-soft .pc file compiling is broken i need help please

2010-04-01 Thread LinuxDonald

I found today that the .pc file compiling is broken in openal-soft.

When i compile openal-soft i become this .pc file:

prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}//usr/lib64
includedir=${prefix}/include

Name: OpenAL
Description: OpenAL is a cross-platform 3D audio API
Requires:
Version: 1.12.854
Libs: -L${libdir} -lopenal
Cflags: -I${includedir}


Can anyone please help me to fix it? Upstream need this patch too.
I have the CMakeLists.txt added to this mail.
# CMake build file list for OpenAL

CMAKE_MINIMUM_REQUIRED(VERSION 2.4)

IF(COMMAND CMAKE_POLICY)
  CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)

SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

INCLUDE(CheckFunctionExists)
INCLUDE(CheckLibraryExists)
INCLUDE(CheckSharedLibraryExists)
INCLUDE(CheckIncludeFile)
INCLUDE(CheckIncludeFiles)
INCLUDE(CheckSymbolExists)
INCLUDE(CheckCCompilerFlag)
INCLUDE(CheckCSourceCompiles)
INCLUDE(CheckTypeSize)


PROJECT(OpenAL C)


SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE)


OPTION(ALSA"Check for ALSA backend"ON)
OPTION(OSS "Check for OSS backend" ON)
OPTION(SOLARIS "Check for Solaris backend" ON)
OPTION(DSOUND  "Check for DirectSound backend" ON)
OPTION(WINMM   "Check for Windows Multimedia backend"  ON)
OPTION(PORTAUDIO  "Check for PortAudio backend"ON)
OPTION(PULSEAUDIO "Check for PulseAudio backend"   ON)

OPTION(DLOPEN  "Check for the dlopen API for loading optional libs"  ON)

OPTION(WERROR  "Treat compile warnings as errors"  OFF)

OPTION(EXAMPLES  "Build example programs"  ON)

OPTION(ALSOFT_CONFIG "Install alsoft.conf configuration file" OFF)


IF(WIN32)
SET(LIBNAME OpenAL32)
ADD_DEFINITIONS("-D_WIN32")
ELSE()
SET(LIBNAME openal)
ENDIF()

SET(LIB_MAJOR_VERSION "1")
SET(LIB_MINOR_VERSION "12")
SET(LIB_BUILD_VERSION "854")
SET(LIB_VERSION 
"${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_BUILD_VERSION}")
IF(NOT DEFINED LIB_INSTALL_DIR)
  SET(LIB_INSTALL_DIR "lib${LIB_SUFFIX}")
ENDIF(NOT DEFINED LIB_INSTALL_DIR)


CHECK_TYPE_SIZE("long" SIZEOF_LONG)
CHECK_TYPE_SIZE("long long" SIZEOF_LONG_LONG)
CHECK_TYPE_SIZE("unsigned int" SIZEOF_UINT)
CHECK_TYPE_SIZE("void*" SIZEOF_VOIDP)


# Add definitions, compiler switches, etc.
INCLUDE_DIRECTORIES(OpenAL32/Include include "${OpenAL_BINARY_DIR}")

IF(NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo 
MinSizeRel."
FORCE)
ENDIF()
IF(NOT CMAKE_DEBUG_POSTFIX)
SET(CMAKE_DEBUG_POSTFIX "" CACHE STRING
"Library postfix for debug builds. Normally left blank."
FORCE)
ENDIF()

IF(MSVC)
# ???
SET(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -D_DEBUG")
SET(CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -DNDEBUG")
SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DNDEBUG")
SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG")
ADD_DEFINITIONS(-D_CRT_SECURE_NO_WARNINGS)
ADD_DEFINITIONS(-D_CRT_NONSTDC_NO_DEPRECATE)

IF(NOT DXSDK_DIR)
STRING(REGEX REPLACE "" "/" DXSDK_DIR "$ENV{DXSDK_DIR}")
ELSE()
STRING(REGEX REPLACE "" "/" DXSDK_DIR "${DXSDK_DIR}")
ENDIF()
IF(DXSDK_DIR)
MESSAGE(STATUS "Using DirectX SDK directory: ${DXSDK_DIR}")
SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} 
"${DXSDK_DIR}/Include")
INCLUDE_DIRECTORIES("${DXSDK_DIR}/Include")
LINK_DIRECTORIES("${DXSDK_DIR}/Lib")
ENDIF()

ELSE()
ADD_DEFINITIONS(-Wall)
CHECK_C_COMPILER_FLAG(-Wextra HAVE_W_EXTRA)
IF(HAVE_W_EXTRA)
ADD_DEFINITIONS(-Wextra)
ENDIF()

IF(WERROR)
ADD_DEFINITIONS(-Werror)
ENDIF()

SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-g -O2 -funroll-loops -D_DEBUG" CACHE 
STRING
"Flags used by the compiler during Release with Debug Info builds."
FORCE)
SET(CMAKE_C_FLAGS_MINSIZEREL "-Os -DNDEBUG" CACHE STRING
"Flags used by the compiler during release minsize builds."
FORCE)
SET(CMAKE_C_FLAGS_RELEASE "-O2 -funroll-loops -fomit-frame-pointer 
-DNDEBUG" CACHE STRING
"Flags used by the compiler during release builds"
FORCE)
SET(CMAKE_C_FLAGS_DEBUG "-g3 -D_DEBUG" CACHE STRING
"Flags used by the compiler during debug builds."
FORCE)

# Set visibility options if available
IF(NOT WIN32)
CHECK_C_SOURCE_COMPILES("int foo() __attribute__((destructor));
 int main() {return 0;}" HAVE_GCC_DESTRUCTOR)

CHECK_C_COMPILER_FLAG(-fvisibility=hidden HAVE_VISIBILITY_SWITCH)
IF(HAVE_VISIBILITY_SWITCH)
CHECK_C_SOURCE_COMPILES("int foo() 
__attribute__((visibility(\"default\")));
 int main() {return 0;}" 
HAVE_GCC_VISIBILITY)
IF(HAVE_GCC_VISIBILITY)
ADD_DEFINITIONS(-fvisibility=hidden -DHAVE_GCC_VISIBILIT

Re: openal-soft .pc file compiling is broken i need help please

2010-04-04 Thread LinuxDonald
Am 01.04.2010 23:01, schrieb Braden McDaniel:
> On 4/1/10 2:17 PM, LinuxDonald wrote:
>
>> I found today that the .pc file compiling is broken in openal-soft.
>>
>> When i compile openal-soft i become this .pc file:
>>
>> prefix=/usr
>> exec_prefix=${prefix}
>> libdir=${exec_prefix}//usr/lib64
>> includedir=${prefix}/include
>>
>> Name: OpenAL
>> Description: OpenAL is a cross-platform 3D audio API
>> Requires:
>> Version: 1.12.854
>> Libs: -L${libdir} -lopenal
>> Cflags: -I${includedir}
>>
>>
>> Can anyone please help me to fix it? Upstream need this patch too.
>> I have the CMakeLists.txt added to this mail.
>>  
> It looks like this line in CMakeLists.txt:
>
>
>> SET(libdir "\${exec_prefix}/${LIB_INSTALL_DIR}")
>>  
> should be
>
>
>> SET(libdir "${LIB_INSTALL_DIR}")
>>  
>
Yeah that fixed:
libdir=/usr/lib64

But what about that:
exec_prefix=${prefix}
includedir=${prefix}/include
?
That are broken to in the .pc file :(
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: openal-soft .pc file compiling is broken i need help please

2010-04-05 Thread LinuxDonald
Am 05.04.2010 03:11, schrieb Braden McDaniel:
> On Sun, 2010-04-04 at 17:18 +0200, LinuxDonald wrote:
>
>> Am 01.04.2010 23:01, schrieb Braden McDaniel:
>>  
> [snip]
>
>
>>> It looks like this line in CMakeLists.txt:
>>>
>>>
>>>
>>>> SET(libdir "\${exec_prefix}/${LIB_INSTALL_DIR}")
>>>>
>>>>  
>>> should be
>>>
>>>
>>>
>>>> SET(libdir "${LIB_INSTALL_DIR}")
>>>>
>>>>  
>>>
>>>
>> Yeah that fixed:
>> libdir=/usr/lib64
>>
>> But what about that:
>> exec_prefix=${prefix}
>> includedir=${prefix}/include
>> ?
>> That are broken to in the .pc file :(
>>  
> Those don't look broken to me.  Why do you think they are?
>
> See "man pkg-config" under METADATA FILE SYNTAX.
>
>
Don´t must be there real path ala:

includedir=${prefix}/include ala includedir=/usr/include/AL ?


-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


orphaning packages

2010-12-20 Thread LinuxDonald
I?m orphaning this packages because i don?t use fedora since months and 
i don?t will come back to fedora:


bullet
cycle
openal-soft
teeworlds
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel