mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
4c92171d66
After this Ada port was returned to the heap, I took a look at it. The primary issue is that it's just copying source files. It should be building a library in the standard location as well. That's easily fixable except there's no point. This software was just a graduate thesis from Spring 1996 that was never developed beyond that. It wasn't complete at the time. As far as I know, there isn't even a demand for having an STL port in Ada95. Later versions of Ada have extensive libraries that basically do what SGL was attempting to do. Original PR didn't explain why the initiator thought SGL was necessary or useful 6 years later. Just kill it, expiration in a month.
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
# Created by: David Holm <david@realityrift.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sgl
|
|
PORTVERSION= 2.0a3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www1.cs.columbia.edu/dcc/nestor/presentations/SGL/ \
|
|
ftp://ftp.cs.rpi.edu/pub/stl/
|
|
DISTNAME= SGL-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= STL implementation for ADA95
|
|
|
|
DEPRECATED= S/W never progressed beyond incomplete graduate project; library was never properly built - not worth fixing
|
|
EXPIRATION_DATE=20140315
|
|
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/lib/SGL
|
|
${MKDIR} ${PREFIX}/share/SGL
|
|
${MKDIR} ${PREFIX}/share/SGL/examples
|
|
|
|
for i in `cat pkg-plist|grep -v dirrm|grep "lib/SGL"|sed "s/lib\/SGL\///"`; do \
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/sgl/$${i} ${PREFIX}/lib/SGL; \
|
|
done
|
|
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/copyright ${PREFIX}/share/SGL
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/readme ${PREFIX}/share/SGL
|
|
|
|
for i in `cat pkg-plist|grep -v dirrm|grep "share/SGL/examples"|sed "s/share\/SGL\/examples\///"`; do \
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/test/$${i} ${PREFIX}/share/SGL/examples; \
|
|
done
|
|
|
|
post-install:
|
|
@${ECHO}
|
|
@${ECHO} "Files have been installed into ${PREFIX}/lib/SGL"
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.post.mk>
|