blob: b56d3c33263177d46bb5c274c35203104ffe9400 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
diff -ruN haserl-0.7.3-orig/ipkg/haserl/CONTROL/control haserl-0.7.3-3/ipkg/haserl/CONTROL/control
--- haserl-0.7.3-orig/ipkg/haserl/CONTROL/control 1970-01-01 01:00:00.000000000 +0100
+++ haserl-0.7.3-3/ipkg/haserl/CONTROL/control 2005-03-06 18:13:02.000000000 +0100
@@ -0,0 +1,8 @@
+Package: haserl
+Priority: optional
+Section: net
+Version: [TBDL]
+Architecture: [TBDL]
+Maintainer: Nico <nthill@free.fr>
+Source: http://nthill.free.fr/openwrt/sources/haserl/
+Description: a CGI wrapper to embed shell scripts in HTML documents
diff -ruN haserl-0.7.3-orig/ipkg/rules haserl-0.7.3-3/ipkg/rules
--- haserl-0.7.3-orig/ipkg/rules 1970-01-01 01:00:00.000000000 +0100
+++ haserl-0.7.3-3/ipkg/rules 2005-03-08 04:10:19.000000000 +0100
@@ -0,0 +1,112 @@
+#!/usr/bin/make -f
+
+ifneq ($(strip ${IPKG_RULES_INC}),)
+ include $(IPKG_RULES_INC)
+endif
+
+##
+
+PKG_VERSION := $(shell cat ./ipkg/version)
+CURRENT_DIR := $(shell pwd)
+INSTALL_DIR = $(CURRENT_DIR)/ipkg-install
+
+I_HASERL := ipkg/haserl
+
+BUILD_DEPS := \
+
+CONFIGURE_OPTS = \
+ --enable-variable-prefix="" \
+
+##
+
+all: package
+
+
+.stamp-configured: $(BUILD_DEPS)
+
+ rm -rf config.cache
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS) -DMAX_UPLOAD_KB=8192" \
+ ac_cv_func_malloc_0_nonnull=yes \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --infodir=/usr/share/info \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ $(DISABLE_NLS) \
+ $(CONFIGURE_OPTS) \
+
+ touch .stamp-configured
+
+
+.stamp-built: .stamp-configured
+
+ $(MAKE) \
+ $(TARGET_CONFIGURE_OPTS) \
+
+ touch .stamp-built
+
+
+$(INSTALL_DIR)/usr/bin/haserl: .stamp-built
+
+ mkdir -p $(INSTALL_DIR)
+
+ $(MAKE) \
+ DESTDIR="$(INSTALL_DIR)" \
+ install
+
+
+configure: .stamp-configured
+
+
+build: .stamp-built
+
+
+install: $(INSTALL_DIR)/usr/bin/haserl
+
+
+package: $(INSTALL_DIR)/usr/bin/haserl
+
+ mkdir -p $(I_HASERL)/usr/bin
+ cp -af $(INSTALL_DIR)/usr/bin/haserl $(I_HASERL)/usr/bin/
+ $(STRIP) $(I_HASERL)/usr/bin/*
+
+ chmod 0755 ipkg/*/CONTROL/
+ chmod 0644 ipkg/*/CONTROL/control
+
+ perl -pi -e "s/^Arch.*:.*/Architecture: $(ARCH)/g" ipkg/*/CONTROL/control
+ifneq ($(strip $(PKG_VERSION)),)
+ perl -pi -e "s/^Vers.*:.*/Version: $(PKG_VERSION)/g" ipkg/*/CONTROL/control
+endif
+
+ $(IPKG_BUILD) $(I_HASERL) $(IPKG_TARGET_DIR)
+
+
+clean:
+
+ -$(MAKE) clean
+ rm -rf .stamp-*
+ rm -rf $(INSTALL_DIR)/usr/bin/haserl
+ rm -rf $(INSTALL_DIR)/usr/share/haserl
+ rm -rf $(INSTALL_DIR)/usr/share/man/man*/haserl*
+ rm -rf $(I_HASERL)/usr
+
+
+control:
+
+ @cat $(I_HASERL)/CONTROL/control
+ @echo
+
+
+.PHONY: configure build install package clean control
diff -ruN haserl-0.7.3-orig/ipkg/version haserl-0.7.3-3/ipkg/version
--- haserl-0.7.3-orig/ipkg/version 1970-01-01 01:00:00.000000000 +0100
+++ haserl-0.7.3-3/ipkg/version 2005-03-06 18:12:42.000000000 +0100
@@ -0,0 +1 @@
+0.7.3-3
|