annotate src/devil.mk @ 2353:99516e73b368

Move doc/index.html -> index.html
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 12:14:15 +0200
parents f48c5b085a38
children b5321bdec505
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2153
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
618
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # DevIL
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 PKG := devil
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6 $(PKG)_IGNORE :=
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 $(PKG)_CHECKSUM := bc27e3e830ba666a3af03548789700d10561fcb1
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := devil-$($(PKG)_VERSION)
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 $(PKG)_FILE := DevIL-$($(PKG)_VERSION).tar.gz
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/openil/DevIL/$($(PKG)_VERSION)/$($(PKG)_FILE)
862
6172bc2fc0fd add missing dependency of package devil
Volker Grabsch <vog@notjusthosting.com>
parents: 858
diff changeset
11 $(PKG)_DEPS := gcc freeglut zlib openexr jpeg jasper lcms libmng libpng tiff sdl
618
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 wget -q -O- 'http://openil.svn.sourceforge.net/viewvc/openil/tags/?sortby=date' | \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 grep '<a name="' | \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 $(SED) -n 's,.*<a name="release-\([0-9][^"]*\)".*,\1,p' | \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 head -1
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
21 $(SED) -i 's,__declspec(dllimport),,' '$(1)/include/IL/il.h'
618
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 cd '$(1)' && ./configure \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 --host='$(TARGET)' \
2153
e4c83fa61a5b replaced $(BUILD) with a more direct and less brittle construct
Volker Grabsch <vog@notjusthosting.com>
parents: 2148
diff changeset
24 --build="`config.guess`" \
618
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 --disable-shared \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 --prefix='$(PREFIX)/$(TARGET)' \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --enable-ILU \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 --enable-ILUT \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --disable-allegro \
863
492e0c8570d8 bugfix: really disable directx8 in package devil
Volker Grabsch <vog@notjusthosting.com>
parents: 862
diff changeset
30 --disable-directx8 \
618
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --enable-directx9 \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 --enable-opengl \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 --enable-sdl \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 --disable-sdltest \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 --disable-wdp \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
36 --with-zlib \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 --without-squish \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 --without-nvtt \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
39 --without-x \
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
40 --without-examples
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= INFO_DEPS=
837543941a27 new package: devil
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
42 endef