]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - lfs/pixman
Changed name to IPFire-3.0-alpha1 (Lechery).
[people/arne_f/ipfire-3.x.git] / lfs / pixman
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 PKG_NAME = pixman
28 PKG_VER = 0.13.2
29
30 THISAPP = $(PKG_NAME)-$(PKG_VER)
31 DL_FILE = $(THISAPP).tar.gz
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
35
36 CONFIGURE_ARGS = --disable-mmx --disable-sse2
37
38 ifeq "$(TARGET)" "via-c7"
39 CONFIGURE_ARGS = --enable-mmx #--enable-sse2
40 endif
41 ifeq "$(TARGET)" "atom330"
42 CONFIGURE_ARGS = --enable-mmx --enable-sse2
43 endif
44
45 ###############################################################################
46 # Top-level Rules
47 ###############################################################################
48
49 objects = $(DL_FILE)
50
51 info:
52 $(DO_PKG_INFO)
53
54 install: $(OBJECT)
55
56 download : $(objects)
57
58 $(objects) :
59 @$(LOAD)
60
61 ###############################################################################
62 # Installation Details
63 ###############################################################################
64
65 $(OBJECT) :
66 @$(PREBUILD)
67 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
68 cd $(DIR_APP) && \
69 ./configure \
70 $(CONFIGURE_ARCH) \
71 --prefix=/usr \
72 --disable-static \
73 $(CONFIGURE_ARGS)
74 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
75 cd $(DIR_APP) && make install
76 @rm -rf $(DIR_APP)
77 @$(POSTBUILD)