From 26a56695b5d74cc24fc556d9564d783cc390d788 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Sun, 23 Nov 2014 15:38:38 +0100 Subject: [PATCH] plan9port: fix license. --- srcpkgs/plan9port/template | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/srcpkgs/plan9port/template b/srcpkgs/plan9port/template index 773857e4a07..bb109db74fe 100644 --- a/srcpkgs/plan9port/template +++ b/srcpkgs/plan9port/template @@ -1,33 +1,30 @@ # Template file for 'plan9port' pkgname=plan9port version=20140306 -revision=2 +revision=3 wrksrc=$pkgname hostmakedepends="which perl" makedepends="libX11-devel libXt-devel libXext-devel freetype-devel fontconfig-devel" short_desc="Port of many Plan 9 programs to Unix-like operating systems" maintainer="Christian Neukirchen " -license="GPL-3" +license="custom" homepage="http://swtch.com/plan9port/" update_site="https://code.google.com/p/plan9port/downloads/list" -distfiles="https://$pkgname.googlecode.com/files/$pkgname-$version.tgz" +distfiles="https://${pkgname}.googlecode.com/files/${pkgname}-${version}.tgz" checksum=cbb826cde693abdaa2051c49e7ebf75119bf2a4791fe3b3229f1ac36a408eaeb do_build() { - ./INSTALL + ./INSTALL } do_install() { - xargs -a lib/moveplan9.files -d'\n' sed -i "s#$wrksrc#/opt/plan9#" + xargs -a lib/moveplan9.files -d'\n' sed -i "s#$wrksrc#/opt/plan9#" - vinstall $FILESDIR/plan9.sh 644 etc/profile.d - vinstall LICENSE 644 usr/share/doc/$pkgname - vinstall README 644 usr/share/doc/$pkgname - vinstall CHANGES 644 usr/share/doc/$pkgname - vinstall CONTRIBUTORS 644 usr/share/doc/$pkgname - - vmkdir opt - cp -a $wrksrc $DESTDIR/opt/plan9 - cd $DESTDIR/opt/plan9 - rm -r install.{log,sum} .xbps* .hg* + vinstall $FILESDIR/plan9.sh 644 etc/profile.d + vlicense LICENSE + + vmkdir opt + cp -a $wrksrc $DESTDIR/opt/plan9 + cd $DESTDIR/opt/plan9 + rm -r install.{log,sum} .xbps* .hg* }