annotate src/freetds.mk @ 2365:b5321bdec505

Move full package names from src/*.mk into package list (index.html)
author Volker Grabsch <vog@notjusthosting.com>
date Thu, 29 Mar 2012 21:41:44 +0200
parents 99516e73b368
children 4d0f3a9da57e
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.
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := freetds
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
1949
3a6fb6eca547 update package freetds
Mark Brand <mabrand@mabrand.nl>
parents: 1945
diff changeset
6 $(PKG)_CHECKSUM := 3ab06c8e208e82197dc25d09ae353d9f3be7db52
1812
8858af5863d5 package freetds: update and use hosted known version
Mark Brand <mabrand@mabrand.nl>
parents: 1806
diff changeset
7 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
1949
3a6fb6eca547 update package freetds
Mark Brand <mabrand@mabrand.nl>
parents: 1945
diff changeset
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
3a6fb6eca547 update package freetds
Mark Brand <mabrand@mabrand.nl>
parents: 1945
diff changeset
9 $(PKG)_URL := http://ibiblio.org/pub/Linux/ALPHA/$(PKG)/stable/$($(PKG)_FILE)
1684
7f4aeb15a700 package freetds: adjusted configuration
Mark Brand <mabrand@mabrand.nl>
parents: 1128
diff changeset
10 $(PKG)_DEPS := gcc libiconv gnutls
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
1830
867b6165f31d improved wording in warning messages
Volker Grabsch <vog@notjusthosting.com>
parents: 1821
diff changeset
13 echo 'Warning: Updates are temporarily disabled for package freetds.' >&2;
1821
303627a5a2de disable update for package freetds, until their release candidate gets stable reference
Volker Grabsch <vog@notjusthosting.com>
parents: 1819
diff changeset
14 echo $(freetds_VERSION)
303627a5a2de disable update for package freetds, until their release candidate gets stable reference
Volker Grabsch <vog@notjusthosting.com>
parents: 1819
diff changeset
15 endef
303627a5a2de disable update for package freetds, until their release candidate gets stable reference
Volker Grabsch <vog@notjusthosting.com>
parents: 1819
diff changeset
16 define $(PKG)_UPDATE_orig
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 wget -q -O- 'http://freetds.cvs.sourceforge.net/viewvc/freetds/freetds/' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 grep '<option>R' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 $(SED) -n 's,.*R\([0-9][0-9_]*\)<.*,\1,p' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 $(SED) 's,_,.,g' | \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 head -1
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 endef
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 define $(PKG)_BUILD
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 cd '$(1)' && ./configure \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 --prefix='$(PREFIX)/$(TARGET)' \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --host='$(TARGET)' \
2153
e4c83fa61a5b replaced $(BUILD) with a more direct and less brittle construct
Volker Grabsch <vog@notjusthosting.com>
parents: 2148
diff changeset
28 --build="`config.guess`" \
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --disable-rpath \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 --disable-dependency-tracking \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --disable-shared \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 --enable-static \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 --enable-libiconv \
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
34 --enable-msdblib \
1099
be4292f84a3b upgrade package freetds to cvs
Mark Brand <mabrand@mabrand.nl>
parents: 935
diff changeset
35 --enable-sspi \
935
9993be51f18d disable the use of the buggy Pthreads-w32 library in packages freetds, guile, libmikmod, libshout, libxml2, sqlite, tiff, vorbis and xerces
Volker Grabsch <vog@notjusthosting.com>
parents: 759
diff changeset
36 --disable-threadsafe \
1684
7f4aeb15a700 package freetds: adjusted configuration
Mark Brand <mabrand@mabrand.nl>
parents: 1128
diff changeset
37 --with-tdsver=7.2 \
1691
b5f32ee6dda0 fix broken gnutls detection in package freetds
Volker Grabsch <vog@notjusthosting.com>
parents: 1684
diff changeset
38 --with-gnutls \
b5f32ee6dda0 fix broken gnutls detection in package freetds
Volker Grabsch <vog@notjusthosting.com>
parents: 1684
diff changeset
39 PKG_CONFIG='$(TARGET)-pkg-config'
1128
001b869cef5e another bugfix for package freetds (by Tony Theodore)
Volker Grabsch <vog@notjusthosting.com>
parents: 1126
diff changeset
40 $(MAKE) -C '$(1)' -j '$(JOBS)' install man_MANS=
529
aade1560187d new package: freetds (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
41 endef