wok-next view xorg-xinit/receipt @ rev 19805

Update full xorg-* stack (add / upgrade / remove no more compiled packages with this xorg-server), normalize receipts to v2.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jul 14 16:02:21 2017 +0300 (2017-07-14)
parents 277a89773ba6
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xinit"
4 VERSION="1.3.4"
5 CATEGORY="x-window"
6 SHORT_DESC="X Window System initializer (includes startx)"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 TARBALL="xinit-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
14 BUILD_DEPENDS="xorg-libXmu-dev"
15 PKG_RULE="std"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -e '/$serverargs $vtarg/ s/serverargs/: #&/' \
21 -i startx.cpp
23 ./configure \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 --with-xinitdir=/etc/X11/xinit \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install &&
31 cp $stuff/xserverrc $install/etc/X11/xinit/xserverrc
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 copy @std
38 TAGS="utility xorg"
39 DEPENDS="xorg-libX11 openssl xorg-xauth"
40 }