diff options
author | 2013-12-16 07:22:02 +0000 | |
---|---|---|
committer | 2013-12-16 07:22:02 +0000 | |
commit | 04f675141305023b648e96e5af163cb66de95cda (patch) | |
tree | cf39c299e38c7ddbedfff174333ead1a37ca8bc7 /dev-util/osdt/osdt-1.1.5.ebuild | |
parent | Add patch by Arc Riley for USE=ncurses flag to control ncurses dependency #49... (diff) | |
download | historical-04f675141305023b648e96e5af163cb66de95cda.tar.gz historical-04f675141305023b648e96e5af163cb66de95cda.tar.bz2 historical-04f675141305023b648e96e5af163cb66de95cda.zip |
Bump
Package-Manager: portage-2.2.7/cvs/Linux x86_64
Diffstat (limited to 'dev-util/osdt/osdt-1.1.5.ebuild')
-rw-r--r-- | dev-util/osdt/osdt-1.1.5.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-util/osdt/osdt-1.1.5.ebuild b/dev-util/osdt/osdt-1.1.5.ebuild new file mode 100644 index 000000000000..b69e617b85e1 --- /dev/null +++ b/dev-util/osdt/osdt-1.1.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/osdt/osdt-1.1.5.ebuild,v 1.1 2013/12/16 07:21:51 patrick Exp $ + +DESCRIPTION="tools for Open Source software distribution" +HOMEPAGE="http://sourceforge.net/projects/osdt/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tbz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/perl-5 + dev-perl/XML-Simple + sys-devel/m4" + +src_compile() { :; } + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr SYSCONFDIR=/etc \ + INFODIR=/usr/share/info MANDIR=/usr/share/man install || die + + # Hack until the fix can be incorporated upstream: fix the permissions + # on /etc/osdt/project-skeletons/opensource/ + chmod 755 "${D}"/etc/osdt/project-skeletons/opensource/ +} |