diff options
author | ache <ache@FreeBSD.org> | 1996-07-14 07:29:02 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-07-14 07:29:02 +0000 |
commit | bb952caac49703a72268e192a0775a5904c1698d (patch) | |
tree | 2dfc147f85c0d7b652370e856b981a05dba6e8ed /misc | |
parent | d2ef422540f7be43ceb12026669ae4bad11deae6 (diff) | |
download | FreeBSD-ports-bb952caac49703a72268e192a0775a5904c1698d.zip FreeBSD-ports-bb952caac49703a72268e192a0775a5904c1698d.tar.gz |
Fix file name case for ephemeris
Diffstat (limited to 'misc')
-rw-r--r-- | misc/astrolog/Makefile | 5 | ||||
-rw-r--r-- | misc/astrolog/pkg-plist | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/misc/astrolog/Makefile b/misc/astrolog/Makefile index 3b874d2..8dc1185 100644 --- a/misc/astrolog/Makefile +++ b/misc/astrolog/Makefile @@ -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} \ diff --git a/misc/astrolog/pkg-plist b/misc/astrolog/pkg-plist index 214ecf6..d4a21f0 100644 --- a/misc/astrolog/pkg-plist +++ b/misc/astrolog/pkg-plist @@ -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 |