blob: 935195bdb04450de27bea8a6f4fe0c0c6f4c1593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(TOPDIR)/rules.mk
PKG_NAME:= xorg-server
PKG_VERSION:= 1.5.1
PKG_RELEASE:= 1
PKG_MD5SUM:= 7aca5d0dc8b824d3dff6140e381e03df
PKG_DESCR:= Xorg server
PKG_SECTION:= x11
PKG_DEPENDS:= libopenssl
PKG_URL:= http://www.x.org
PKG_SITES:= ${MASTER_SITE_XORG}
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,XORG_SERVER,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= \
--enable-builtin-fonts \
--enable-dga \
--enable-xorg \
--enable-xv \
--disable-afb \
--disable-aiglx \
--disable-cfb \
--disable-config-hal \
--disable-cup \
--disable-evi \
--disable-dpms \
--disable-dri \
--disable-dri2 \
--disable-freetype \
--disable-glx \
--disable-kdrive-vesa \
--disable-mfb \
--disable-xace \
--disable-xephyr \
--disable-xevie \
--disable-xf86bigfont \
--disable-xf86misc \
--disable-xf86vidmode \
--disable-xfake \
--disable-xfbdev \
--disable-xinerama \
--disable-xnest \
--disable-xprint \
--disable-xsdl \
--disable-xselinux \
--disable-xcsecurity \
--disable-xvfb \
--disable-xvmc \
--with-xkb-output=/tmp \
--with-os-vendor=OpenADK \
--with-vendor-web="http://www.openadk.org"
BUILD_STYLE= auto
INSTALL_STYLE= auto
post-install:
$(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/bin
$(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/{extensions,fonts,linux,multimedia}
${CP} ${WRKINST}/usr/bin/* $(IDIR_XORG_SERVER)/usr/bin
${CP} ${WRKINST}/usr/lib/xorg/modules/*.so \
$(IDIR_XORG_SERVER)/usr/lib/xorg/modules
${CP} ${WRKINST}/usr/lib/xorg/modules/extensions/*.so \
$(IDIR_XORG_SERVER)/usr/lib/xorg/modules/extensions
${CP} ${WRKINST}/usr/lib/xorg/modules/fonts/*.so \
$(IDIR_XORG_SERVER)/usr/lib/xorg/modules/fonts
${CP} ${WRKINST}/usr/lib/xorg/modules/linux/*.so \
$(IDIR_XORG_SERVER)/usr/lib/xorg/modules/linux
${CP} ${WRKINST}/usr/lib/xorg/modules/multimedia/*.so \
$(IDIR_XORG_SERVER)/usr/lib/xorg/modules/multimedia
include ${TOPDIR}/mk/pkg-bottom.mk
|