summaryrefslogtreecommitdiff
path: root/package/gkrellm/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-01-17 21:55:49 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-01-17 21:55:49 +0100
commit15c84adca94bfe4a89ece5c04f06a884cf508ebb (patch)
tree727d3fd768a1abe75521190b90833b3a68cce4c6 /package/gkrellm/Makefile
parent0de5d9ecedff55481b3c1eb9c3841de17716a485 (diff)
fix packages to be compile with stack protector
- libtool do not pass -fstack-protector while linking, but this is required to successfully link libraries or executables with SSP - pass LDFLAGS for non-libtool packages
Diffstat (limited to 'package/gkrellm/Makefile')
-rw-r--r--package/gkrellm/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/gkrellm/Makefile b/package/gkrellm/Makefile
new file mode 100644
index 000000000..1b4a6b118
--- /dev/null
+++ b/package/gkrellm/Makefile
@@ -0,0 +1,31 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= gkrellm
+PKG_VERSION:= 2.3.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 600f4daa395112ed19a3633deb0829ff
+PKG_DESCR:= The GNU Krell Monitors Server
+PKG_SECTION:= net/misc
+PKG_DEPENDS:= glib libpthread
+PKG_BUILDDEP:= glib
+PKG_URL:= http://members.dslextreme.com/users/billw/gkrellm/gkrellm.html
+PKG_SITES:= http://members.dslextreme.com/users/billw/gkrellm/
+
+WRKSRC= ${WRKDIR}/gkrellm-${PKG_VERSION}/server
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,GKRELLMD,gkrellmd,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+INSTALL_STYLE:= manual
+
+do-install:
+ ${INSTALL_DIR} ${IDIR_GKRELLMD}/usr/bin ${IDIR_GKRELLMD}/etc
+ ${INSTALL_BIN} ${WRKBUILD}/gkrellmd ${IDIR_GKRELLMD}/usr/bin/
+ ${INSTALL_DATA} ${WRKSRC}/gkrellmd.conf ${IDIR_GKRELLMD}/etc
+
+include ${TOPDIR}/mk/pkg-bottom.mk