summaryrefslogtreecommitdiff
path: root/package/libgfortran
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-12 15:27:07 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-12 15:27:23 +0200
commitfb44e4d00ed77be857c4aaf8d78bc56a3db88894 (patch)
tree64b954eaa043f5e04c0c536935289a5691adfef6 /package/libgfortran
parent68e2427f4eaf9c9f18ea0fe6755bf6093279c348 (diff)
add gfortran package for the library, move libstdc++ to base
Diffstat (limited to 'package/libgfortran')
-rw-r--r--package/libgfortran/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/package/libgfortran/Makefile b/package/libgfortran/Makefile
new file mode 100644
index 000000000..596a4887c
--- /dev/null
+++ b/package/libgfortran/Makefile
@@ -0,0 +1,32 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${ADK_TOPDIR}/rules.mk
+include ${ADK_TOPDIR}/toolchain/gcc/Makefile.inc
+
+PKG_NAME:= libgfortran
+PKG_DESCR:= gcc fortran library
+PKG_SECTION:= base/libs
+PKG_OPTS:= noremove
+
+PKG_DFLT_LIBGCC:= y if !ADK_APPLIANCE_TOOLCHAIN
+
+NO_DISTFILES:= 1
+
+include ${ADK_TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,LIBGFORTRAN,libgfortran,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+libgfortran-install:
+ $(INSTALL_DIR) ${IDIR_LIBGFORTRAN}/$(ADK_TARGET_LIBC_PATH)
+ifeq ($(ADK_TARGET_USE_STATIC_LIBS),)
+ifeq ($(ADK_TARGET_BINFMT_FLAT),)
+ ${CP} ${STAGING_TARGET_DIR}/usr/lib/libgfortran.so* ${IDIR_LIBGFORTRAN}/$(ADK_TARGET_LIBC_PATH)
+endif
+endif
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk