blob: 26702065434092bd90c0c93da4bc561a6b501e63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
cd $WRKSRC/src || exit 1
mv grgfil.f grgfil.f.orig
sed -e s:/usr/local/pgplot/:$PREFIX/share/pgplot/: < grgfil.f.orig >grgfil.f
cp $FILESDIR/Makefile* $FILESDIR/drivers.list $FILESDIR/grexec.f $FILESDIR/xf77 $WRKSRC
chmod u+x $WRKSRC/xf77
cp $WRKSRC/src/*.inc $WRKSRC
exit 0
|