Changeset 0b664be0 for xsoft


Ignore:
Timestamp:
10/16/2021 01:00:57 PM (3 years ago)
Author:
Ken Moffat <ken@…>
Branches:
11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
c99889d9
Parents:
580ce98 (diff), 97b8038 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk

Location:
xsoft/other
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • xsoft/other/balsa.xml

    r580ce98 r0b664be0  
    7878      <xref linkend="gmime3"/>,
    7979      <xref linkend="gpgme"/>,
    80       <xref linkend="gtk3"/>,
    81       <xref linkend="libnotify"/>, and
    82       <xref linkend="rarian"/>
     80      <xref linkend="gtk3"/>, and
     81      <xref linkend="libnotify"/>
     82      <!--<xref linkend="rarian"/>-->
    8383    </para>
    8484
  • xsoft/other/hexchat.xml

    r580ce98 r0b664be0  
    88  <!ENTITY hexchat-download-http "https://dl.hexchat.net/hexchat/hexchat-&hexchat-version;.tar.xz">
    99  <!ENTITY hexchat-download-ftp  " ">
    10   <!ENTITY hexchat-md5sum        "9f04c48f011b646b91d03c5776fce776">
    11   <!ENTITY hexchat-size          "1.2 MB">
     10  <!ENTITY hexchat-md5sum        "ecf5133c369bbc88df064f8506867fb6">
     11  <!ENTITY hexchat-size          "1.3 MB">
    1212  <!ENTITY hexchat-buildsize     "21 MB">
    1313  <!ENTITY hexchat-time          "0.1 SBU (using parallelism=4)">
  • xsoft/other/tigervnc.xml

    r580ce98 r0b664be0  
    159159    </para>
    160160
    161 <screen><userinput># Put code in place
     161<screen revision="sysv"><userinput># Put code in place
     162mkdir -p unix/xserver &amp;&amp;
     163tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 \
     164    --strip-components=1              \
     165    -C unix/xserver                   &amp;&amp;
     166( cd unix/xserver &amp;&amp;
     167  patch -Np1 -i ../xserver120.patch ) &amp;&amp;
     168
     169# Build viewer
     170cmake -G "Unix Makefiles"         \
     171      -DCMAKE_INSTALL_PREFIX=/usr \
     172      -DCMAKE_BUILD_TYPE=Release  \
     173      -DINSTALL_SYSTEMD_UNITS=OFF \
     174      -Wno-dev . &amp;&amp;
     175make &amp;&amp;
     176
     177# Build server
     178pushd unix/xserver &amp;&amp;
     179  autoreconf -fiv  &amp;&amp;
     180
     181  CPPFLAGS="-I/usr/include/drm"       \
     182  ./configure $XORG_CONFIG            \
     183      --disable-xwayland    --disable-dri        --disable-dmx         \
     184      --disable-xorg        --disable-xnest      --disable-xvfb        \
     185      --disable-xwin        --disable-xephyr     --disable-kdrive      \
     186      --disable-devel-docs  --disable-config-hal --disable-config-udev \
     187      --disable-unit-tests  --disable-selective-werror                 \
     188      --disable-static      --enable-dri3                              \
     189      --without-dtrace      --enable-dri2        --enable-glx          \
     190      --with-pic &amp;&amp;
     191  make  &amp;&amp;
     192popd</userinput></screen>
     193
     194<screen revision="systemd"><userinput># Put code in place
    162195mkdir -p unix/xserver &amp;&amp;
    163196tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 \
Note: See TracChangeset for help on using the changeset viewer.