1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Fix file name case for ephemeris

This commit is contained in:
Andrey A. Chernov 1996-07-14 07:29:02 +00:00
parent ef94d6cfca
commit 1cde113bf4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3390
2 changed files with 6 additions and 5 deletions

View File

@ -26,7 +26,8 @@ MAINTAINER= ache@FreeBSD.ORG
post-extract:
cd ${WRKSRC}/..; \
for i in ${EPHEM}; do \
zcat ${DISTDIR}/$$i.gz > $$i; \
zcat ${DISTDIR}/$$i.gz > \
`echo $$i | tr '[:lower:]' '[:upper:]'`; \
done
post-patch:
@ -43,7 +44,7 @@ do-install:
-@mkdir ${PREFIX}/lib/astrolog
cd ${WRKSRC}/..; \
${INSTALL} -c -m ${SHAREMODE} -o ${SHAREOWN} -g ${SHAREGRP} \
${EPHEM} ${PREFIX}/lib/astrolog
LRZ5_* CHI_* CPJV_* ${PREFIX}/lib/astrolog
cd ${WRKSRC}/..; \
if [ -f ${PREFIX}/lib/astrolog/astrolog.dat ] ; then \
${INSTALL} -c -m ${SHAREMODE} -o ${SHAREOWN} -g ${SHAREGRP} \

View File

@ -3,6 +3,6 @@ share/astrolog/helpfile.520
share/astrolog/readme.520
info/astrolog.info.gz
lib/astrolog/astrolog.dat
lib/astrolog/lrz5_24
lib/astrolog/chi_24
lib/astrolog/cpjv_24
lib/astrolog/LRZ5_24
lib/astrolog/CHI_24
lib/astrolog/CPJV_24