Forum Home
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    [Solved] Need help building QT on linux \* Team concentrate release packageing

    Support
    2
    15
    4167
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • J
      jekyllisland last edited by

      [quote name=“Wellenreiter” post=“35120” timestamp=“1384934381”]
      You can get the current 0.6.4.4 package at:

      [url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url]

      there is also a package for Ubuntu 13.x on the server ;)
      [/quote]

      bash: /etc/apt/sources.list.d/feathercoin.list: Permission denied :o

      1 Reply Last reply Reply Quote 0
      • J
        jekyllisland last edited by

        [quote name=“Wellenreiter” post=“35120” timestamp=“1384934381”]
        You can get the current 0.6.4.4 package at:

        [url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url]

        there is also a package for Ubuntu 13.x on the server ;)
        [/quote]

        Project MESSAGE: Building with UPNP support
        Project MESSAGE: Building with UPNP supportRemoved plural forms as the target language has less forms.
        If this sounds wrong, possibly the target language is not set or recognized.

        Getting closer…what did i do wrong?

        1 Reply Last reply Reply Quote 0
        • J
          jekyllisland last edited by

          /home/USER/Documents/FeatherCoin-master/src/net.cpp:21: error: miniupnpc/miniwget.h: No such file or directory

          this is what i get when trying to build in qt creator, can someone help me out? I know I must be missing something small, but I’m just not sure what i’m doing wrong.

          1 Reply Last reply Reply Quote 0
          • Wellenreiter
            Wellenreiter Moderators last edited by

            you are missing upnpc support in your distro.

            possibility 1) search for a package called miniupnpc or libminiupnpc or something like that

            possibility 2) run ‘qmake USE_UPN=0 feathercoin-qt.pro’ to disable upnpc support.
            then simple run ‘make’ in the same directory

            the client will work without upnpc, but it may be a bit slower in syncing

            Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
            Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

            1 Reply Last reply Reply Quote 0
            • J
              jekyllisland last edited by

              [quote name=“Wellenreiter” post=“35619” timestamp=“1385109900”]
              you are missing upnpc support in your distro.

              possibility 1) search for a package called miniupnpc or libminiupnpc or something like that

              possibility 2) run ‘qmake USE_UPN=0 feathercoin-qt.pro’ to disable upnpc support.
              then simple run ‘make’ in the same directory

              the client will work without upnpc, but it may be a bit slower in syncing
              [/quote]

              I downloaded the above packages only to get the follwoing error
              [code]
              Project MESSAGE: Building with UPNP support
              sh: 1: /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease: not found
              WARNING: TARGET is empty[/code]

              I appreciate your help thus far. I’ll try installing without upnpc support but would prefer to have it if that means faster sync times

              1 Reply Last reply Reply Quote 0
              • Wellenreiter
                Wellenreiter Moderators last edited by

                First of all I have to apologize :-[

                USE_UPN=0 is wrong, should be ‘USE_upn=-’

                Regarding the errormessage, do a ‘find lrelease’ on your system and if a file is found link it to /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease

                I’ve never had this problem, but that’s one way to solve it.

                Another way is to google the message and check, if it is a known problem for qt5

                If you get it compiled without upnpc, that’s a start and from there on we can figure out how to compile with upnpc while your wallet is syncing ;)

                Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
                Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

                1 Reply Last reply Reply Quote 0
                • J
                  jekyllisland last edited by

                  [quote name=“Wellenreiter” post=“35703” timestamp=“1385130792”]
                  First of all I have to apologize :-[

                  USE_UPN=0 is wrong, should be ‘USE_upn=-’

                  Regarding the errormessage, do a ‘find lrelease’ on your system and if a file is found link it to /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease

                  I’ve never had this problem, but that’s one way to solve it.

                  Another way is to google the message and check, if it is a known problem for qt5

                  If you get it compiled without upnpc, that’s a start and from there on we can figure out how to compile with upnpc while your wallet is syncing ;)
                  [/quote]

                  find: `lrelease’: No such file or directory

                  No luck with google, i have it installed on windows for now but i barely use windows anymore and would like to get this installed. I’ll see what i can find on google and post the results

                  1 Reply Last reply Reply Quote 0
                  • Wellenreiter
                    Wellenreiter Moderators last edited by

                    lrelease is used to build the qt translation files for languages.

                    see: [url=http://www.linuxcommand.org/man_pages/lrelease1.html]http://www.linuxcommand.org/man_pages/lrelease1.html[/url]

                    on my system (opensuse) it’s simply under /usr/bin and I can run it by simply typing ‘lrelease’

                    Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
                    Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

                    1 Reply Last reply Reply Quote 0
                    • J
                      jekyllisland last edited by

                      [quote name=“Wellenreiter” post=“35731” timestamp=“1385136824”]
                      lrelease is used to build the qt translation files for languages.

                      see: [url=http://www.linuxcommand.org/man_pages/lrelease1.html]http://www.linuxcommand.org/man_pages/lrelease1.html[/url]

                      on my system (opensuse) it’s simply under /usr/bin and I can run it by simply typing ‘lrelease’
                      [/quote]

                      How do i install if i don’t have it on ubuntu 13.04?

                      1 Reply Last reply Reply Quote 0
                      • Wellenreiter
                        Wellenreiter Moderators last edited by

                        I just created a virtual machine running ubuntu 13.10 and found out that during the install of the package I got from [url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url] that the system complained and refused to install, as there seems to be a conflict.

                        I start working on that and will come back to you as soon as my Ubuntu package is installing fine. That will take a day or two, but hopefully not any longer

                        Feathercoin development donation address: 6p8u3wtct7uxRGmvWr2xvPxqRzbpbcd82A
                        Openpgp key: 0x385C34E77F0D74D7 (at keyserver.ubuntu.com)/fingerprint: C7B4 E9EA 17E1 3D12 07AB 1FDB 385C 34E7 7F0D 74D7

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post