diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-util/osdt | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-util/osdt')
-rw-r--r-- | dev-util/osdt/Manifest | 1 | ||||
-rw-r--r-- | dev-util/osdt/metadata.xml | 14 | ||||
-rw-r--r-- | dev-util/osdt/osdt-1.1.5.ebuild | 28 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-util/osdt/Manifest b/dev-util/osdt/Manifest new file mode 100644 index 000000000000..8a3051e9eecf --- /dev/null +++ b/dev-util/osdt/Manifest @@ -0,0 +1 @@ +DIST osdt-1.1.5.tbz2 314333 SHA256 f9c977a93ba4b9104f0e9d9f9cb33f80d26c3c6b2912cc3b251aa44c44250c61 SHA512 c4a1d702303f7e0aaff360b621adc97e6db7cff49b1d0f2b592f66a3ec0ea2a6864770a535656dfcf02b31b510da7215355bed73cd877662dd34122fea6adf1c WHIRLPOOL d236543aa75679ebb62ac0a47e4bcd91decb0fe95831239dc5de1953d0157adf075c1ede8f6c9d11ec829c900b865f5505996d8d392cca0525b2ebd8e1103df3 diff --git a/dev-util/osdt/metadata.xml b/dev-util/osdt/metadata.xml new file mode 100644 index 000000000000..759dee1c3cd7 --- /dev/null +++ b/dev-util/osdt/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> + <longdescription> + OSDT (Open Source Development Toolkit), is a set of tools that help + lower the "friction cost" of Open Source software development. + </longdescription> + <upstream> + <remote-id type="sourceforge">osdt</remote-id> + </upstream> +</pkgmetadata> 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..956fa3eee544 --- /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 +# $Id$ + +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/ +} |