Commit 34154274 authored by Rene Ladan's avatar Rene Ladan
Browse files

devel/libaura: Remove expired port

2025-06-30 devel/libaura: Abandonware, upstream is gone and last release in 2005
parent 266f2a8a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4605,3 +4605,4 @@ devel/cgilib||2025-06-30|Has expired: Last upstream release in 2009, last upstre
security/sectok||2025-06-30|Has expired: Last upstream release in 2003 and no longer maintained
security/libsectok||2025-06-30|Has expired: Last upstream release in 2003 and no longer maintained
devel/libdnsres||2025-06-30|Has expired: No consumers in tree, last release in 2005 by upstream
devel/libaura||2025-06-30|Has expired: Abandonware, upstream is gone and last release in 2005
+0 −1
Original line number Diff line number Diff line
@@ -1214,7 +1214,6 @@
    SUBDIR += libastylej
    SUBDIR += libastylej-arduino
    SUBDIR += libatomic_ops
    SUBDIR += libaura
    SUBDIR += libavl
    SUBDIR += libayatana-appindicator
    SUBDIR += libayatana-indicator

devel/libaura/Makefile

deleted100644 → 0
+0 −46
Original line number Diff line number Diff line
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>

devel/libaura/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (libaura-3.1.20051222.tar.bz2) = 3bb1bfcdeb6bb6025fe1e4c563060a667a71a11954e5e7efa46e71c12ab74615
SIZE (libaura-3.1.20051222.tar.bz2) = 10929
+0 −21
Original line number Diff line number Diff line
--- 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}
Loading