summaryrefslogtreecommitdiff
path: root/devel/libgetopt
diff options
context:
space:
mode:
authorwiz <wiz>2002-10-09 14:24:44 +0000
committerwiz <wiz>2002-10-09 14:24:44 +0000
commitd3e4df8201e6f24f209a37abf4b60d42bc9e64ba (patch)
tree9b228232433c07a0e93a8f8349e1518bf2c47474 /devel/libgetopt
parentb1d94015065560cb223687556e579e7724fd2968 (diff)
downloadpkgsrc-d3e4df8201e6f24f209a37abf4b60d42bc9e64ba.tar.gz
Unused.
Diffstat (limited to 'devel/libgetopt')
-rw-r--r--devel/libgetopt/buildlink.mk50
1 files changed, 0 insertions, 50 deletions
diff --git a/devel/libgetopt/buildlink.mk b/devel/libgetopt/buildlink.mk
deleted file mode 100644
index 6b00ab1699e..00000000000
--- a/devel/libgetopt/buildlink.mk
+++ /dev/null
@@ -1,50 +0,0 @@
-# $NetBSD: buildlink.mk,v 1.13 2001/08/20 03:54:48 jlam Exp $
-#
-# This Makefile fragment is included by packages that use getopt_long().
-#
-# To use this Makefile fragment, simply:
-#
-# (1) Include this Makefile fragment in the package Makefile,
-# (2) Optionally define BUILDLINK_INCDIR and BUILDLINK_LIBDIR,
-# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
-# search path.
-# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
-# path.
-
-.if !defined(GETOPT_BUILDLINK_MK)
-GETOPT_BUILDLINK_MK= # defined
-
-.include "../../mk/bsd.buildlink.mk"
-
-BUILDLINK_DEPENDS.getopt?= libgetopt>=1.3
-
-.if exists(/usr/include/getopt.h)
-_NEED_GETOPT= NO
-.else
-_NEED_GETOPT= YES
-.endif
-
-.if ${_NEED_GETOPT} == "NO"
-BUILDLINK_PREFIX.getopt= /usr
-BUILDLINK_FILES.getopt= include/getopt.h
-LIBGETOPT= # empty
-.else
-DEPENDS+= ${BUILDLINK_DEPENDS.getopt}:../../devel/libgetopt
-EVAL_PREFIX+= BUILDLINK_PREFIX.getopt=libgetopt
-BUILDLINK_PREFIX.getopt_DEFAULT= ${LOCALBASE}
-BUILDLINK_FILES.getopt= include/getopt.h
-BUILDLINK_FILES.getopt+= lib/libgetopt.*
-BUILDLINK_FILES.getopt+= lib/libgetopt_pic.a
-LIBGETOPT= -lgetopt
-.endif
-
-CONFIGURE_ENV+= LIBGETOPT="${LIBGETOPT}"
-MAKE_ENV+= LIBGETOPT="${LIBGETOPT}"
-
-BUILDLINK_TARGETS.getopt= getopt-buildlink
-BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.getopt}
-
-pre-configure: ${BUILDLINK_TARGETS.getopt}
-getopt-buildlink: _BUILDLINK_USE
-
-.endif # GETOPT_BUILDLINK_MK