annotate src/glew.mk @ 956:9a8f1b49a25f

upgrade packages boost gdal glew gst-plugins-base gstreamer gtk libgpg_error libgsf libpng librsvg libunistring taglib
author Mark Brand <mabrand@mabrand.nl>
date Wed, 12 May 2010 01:48:28 +0200
parents f266c4bf62b0
children dd28c487a6b1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
641
dab071eac9c0 simplified file markers
Volker Grabsch <vog@notjusthosting.com>
parents: 639
diff changeset
1 # This file is part of mingw-cross-env.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 641
diff changeset
2 # See doc/index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 408
diff changeset
3
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # GLEW
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
5 PKG := glew
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 422
diff changeset
6 $(PKG)_IGNORE :=
956
9a8f1b49a25f upgrade packages boost gdal glew gst-plugins-base gstreamer gtk libgpg_error libgsf libpng librsvg libunistring taglib
Mark Brand <mabrand@mabrand.nl>
parents: 883
diff changeset
7 $(PKG)_VERSION := 1.5.4
9a8f1b49a25f upgrade packages boost gdal glew gst-plugins-base gstreamer gtk libgpg_error libgsf libpng librsvg libunistring taglib
Mark Brand <mabrand@mabrand.nl>
parents: 883
diff changeset
8 $(PKG)_CHECKSUM := 332234128e67737bf60fe14c860821038ecd7399
639
14310a48d979 update version of package glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 448
diff changeset
9 $(PKG)_SUBDIR := glew-$($(PKG)_VERSION)
14310a48d979 update version of package glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 448
diff changeset
10 $(PKG)_FILE := glew-$($(PKG)_VERSION).tgz
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
11 $(PKG)_WEBSITE := http://glew.sourceforge.net/
422
d2f5eb27e051 improved download URLs for all SourceForge packages to ensure that the selected SOURCEFORGE_MIRROR is really used
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
12 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/glew/glew/$($(PKG)_VERSION)/$($(PKG)_FILE)
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 285
diff changeset
13 $(PKG)_DEPS := gcc
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 define $(PKG)_UPDATE
408
413750a629be improved version recognition for sourceforge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 306
diff changeset
16 $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/glew/files/glew/) | \
639
14310a48d979 update version of package glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 448
diff changeset
17 $(SED) -n 's,.*glew-\([0-9][^>]*\)\.tgz.*,\1,p' | \
408
413750a629be improved version recognition for sourceforge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 306
diff changeset
18 tail -1
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 endef
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 define $(PKG)_BUILD
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 cd '$(1)' && $(TARGET)-gcc -O2 -DGLEW_STATIC -Iinclude -c -o glew.o src/glew.c
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 cd '$(1)' && $(TARGET)-ar cr libGLEW.a glew.o
242
4732cfd0d858 use ranlib to build the library of package glew
Volker Grabsch <vog@notjusthosting.com>
parents: 241
diff changeset
24 $(TARGET)-ranlib '$(1)/libGLEW.a'
285
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
25 $(INSTALL) -d '$(PREFIX)/$(TARGET)/lib'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
26 $(INSTALL) -m644 '$(1)/libGLEW.a' '$(PREFIX)/$(TARGET)/lib/'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
27 $(INSTALL) -m644 '$(1)/libGLEW.a' '$(PREFIX)/$(TARGET)/lib/libglew32s.a'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
28 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
29 $(INSTALL) -d '$(PREFIX)/$(TARGET)/include/GL'
08a32251156c portability fix for Open Solaris: when "ginstall" exists, use that instead of "install"
Volker Grabsch <vog@notjusthosting.com>
parents: 266
diff changeset
30 $(INSTALL) -m644 '$(1)/include/GL/glew.h' '$(1)/include/GL/wglew.h' '$(PREFIX)/$(TARGET)/include/GL/'
232
9f00b34a99dd new package: glew (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 endef