summaryrefslogtreecommitdiff
path: root/devel/libaura
diff options
context:
space:
mode:
Diffstat (limited to 'devel/libaura')
-rw-r--r--devel/libaura/Makefile46
-rw-r--r--devel/libaura/distinfo2
-rw-r--r--devel/libaura/files/patch-Makefile21
-rw-r--r--devel/libaura/pkg-descr10
4 files changed, 0 insertions, 79 deletions
diff --git a/devel/libaura/Makefile b/devel/libaura/Makefile
deleted file mode 100644
index 0ebde2bee412..000000000000
--- a/devel/libaura/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-PORTNAME= libaura
-PORTVERSION= 3.1.20051222
-PORTREVISION= 1
-CATEGORIES= devel
-MASTER_SITES= LOCAL/philip
-
-MAINTAINER= rodrigo@FreeBSD.org
-COMMENT= Library of Assorted Useful Reusable Abstractions
-
-DEPRECATED= Abandonware, upstream is gone and last release in 2005
-EXPIRATION_DATE=2025-06-30
-
-USES= tar:bzip2
-USE_LDCONFIG= yes
-
-MAKE_ENV= SONAME=${SONAME} SOLINK=${SOLINK}
-
-SONAME= ${SOLINK}.3
-SOLINK= ${PORTNAME}3.so
-
-PLIST_FILES= lib/${SONAME} \
- lib/${SOLINK} \
- include/aura3/buffer.h \
- include/aura3/dict.h \
- include/aura3/popen.h \
- include/aura3/fspred.h \
- include/aura3/mem.h
-PORTDOCS= README
-
-OPTIONS_DEFINE= DOCS
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${SONAME} ${STAGEDIR}${PREFIX}/lib
- ${LN} -s ${SONAME} ${STAGEDIR}${PREFIX}/lib/${SOLINK}
- ${MKDIR} ${STAGEDIR}${PREFIX}/include/aura3/
- ${INSTALL_DATA} ${WRKSRC}/buffer.h ${STAGEDIR}${PREFIX}/include/aura3/
- ${INSTALL_DATA} ${WRKSRC}/dict.h ${STAGEDIR}${PREFIX}/include/aura3/
- ${INSTALL_DATA} ${WRKSRC}/popen.h ${STAGEDIR}${PREFIX}/include/aura3/
- ${INSTALL_DATA} ${WRKSRC}/fspred.h ${STAGEDIR}${PREFIX}/include/aura3/
- ${INSTALL_DATA} ${WRKSRC}/mem.h ${STAGEDIR}${PREFIX}/include/aura3/
-
-do-install-DOCS-on:
- ${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
-
-.include <bsd.port.mk>
diff --git a/devel/libaura/distinfo b/devel/libaura/distinfo
deleted file mode 100644
index 5363529d8fdb..000000000000
--- a/devel/libaura/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (libaura-3.1.20051222.tar.bz2) = 3bb1bfcdeb6bb6025fe1e4c563060a667a71a11954e5e7efa46e71c12ab74615
-SIZE (libaura-3.1.20051222.tar.bz2) = 10929
diff --git a/devel/libaura/files/patch-Makefile b/devel/libaura/files/patch-Makefile
deleted file mode 100644
index 7277ee1556e0..000000000000
--- a/devel/libaura/files/patch-Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
---- Makefile.orig 2006-04-18 00:32:27 UTC
-+++ Makefile
-@@ -1,9 +1,6 @@
- # Makefile for libaura.
- # $Id: Makefile,v 1.20 2005/08/26 22:44:37 cpressey Exp $
-
--BASE?=../..
--include ${BASE}/Config
--
- LIB= aura
- LIB_VER=3
-
-@@ -17,7 +14,7 @@ ${SONAME}: ${OBJS}
- all: ${SONAME} ${ANAME}
-
- ${SONAME}: ${OBJS}
-- ${CC} ${OBJS} -shared ${LDFLAGS} -o ${SONAME}
-+ ${CC} ${OBJS} -shared ${LDFLAGS} -Wl,-soname,${SONAME} -o ${SONAME}
- ln -sf ${SONAME} ${SOLINK}
-
- ${ANAME}: ${OBJS}
diff --git a/devel/libaura/pkg-descr b/devel/libaura/pkg-descr
deleted file mode 100644
index c3bba1f703fa..000000000000
--- a/devel/libaura/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-Libaura is a library of Assorted Useful Reusable Abstractions -
-data structures and utilities for C language programming. At
-present, they include:
-
-- memory allocators/deallocators
-- key<->value dictionaries (hashed or sorted)
-- extensible buffers
-- filesystem predicates (is_dir, is_named_pipe, etc)
-- popen() variation which allows the caller to know the pid of
- the process on the other end of the pipe.