initial commit

Package-Manager: portage-2.2.8-r1
RepoMan-Options: --force
This commit is contained in:
Mario Fetka 2014-08-17 08:23:18 +02:00
parent a8484fae2f
commit ea0dbfd343
4 changed files with 84 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# ChangeLog for dev-util/netiq-google-perftools
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
*netiq-google-perftools-1.8.1.7.2 (17 Aug 2014)
17 Aug 2014; Mario Fetka <mario.fetka@gmail.com> +metadata.xml,
+netiq-google-perftools-1.8.1.7.2.ebuild:
initial commit

View File

@ -0,0 +1,4 @@
DIST eDirectory_88SP8_Linux_x86_64.tar.gz 115981881 SHA256 69946393b9f6cd82593eb943a62bc6773688239de1b12388765ea2b60f0431c9 SHA512 e8030463f4404aeb33e9b4b85f4da91275ff8beebf480cb8a267e6340a7209f10aef2f060b0c24f7fb18ba457fd3211b6c71748b281888ca46919d1df227b627 WHIRLPOOL 603ef881ba4a7c84d1e670b5a39205a54f56daacd8253d09017209b204f15fc06397e764e4d7a2aac69e3c88c13bf3ef5882d4837382fc6e6d2c2e4caa797449
EBUILD netiq-google-perftools-1.8.1.7.2.ebuild 1840 SHA256 be58d51741a0b4dc9c0dddbe4c0cbbc61374c00165bf351981e51d1cadf1fa32 SHA512 b4bc0016dddc1266d4b7dabb35ccba23854982d083712f9422ffb19541fbc33cbb07395839bc210587059b07824dc2f00236648ddf359ea7e93046929982792a WHIRLPOOL 608d6241eaea09a75c8157efaa0c6c8200a26df070fb9335ce7f0d927559a849da0c7dc72ee74432dbcd66dd99d410342033acc1aacb54a95b6327bf7fc89b86
MISC ChangeLog 308 SHA256 a2a36ed32429dd9e2fbb68eb7f51706abcde544e0f885d1f0c5627e26cde0688 SHA512 22592d7450a7195f015c186e259287858d57b60a89434e422082be70afc1adbc2a832358e4219ff52888c104bbae24cc6d0c647a38e9dbe196f4b6145037b65d WHIRLPOOL 4c38e1801476e91c4738b27a0ca6553f70298227988fa350db4028a32a95d7ef8922ab53b0e6f6ad02233044687c4fcafb56171ecc479949900911213d6a9b39
MISC metadata.xml 226 SHA256 a9d3f7df2362a9a7ddcbe05c5d97d726eeb4bab135b21643508149a08bf6a2b2 SHA512 5912920d8f6e9ee5126fb0aaa5717a562feb009cc59b759c6a6eaa909900b19e95e51e3aa7f32fdf2e77073b19878830b97947148e3adeff3b49e7555cfe29e9 WHIRLPOOL c07e2ddb648893f1e9c422e07b0b73a6d0f7e1c9501200b6fcc9d25fe68c3b05fe4f3523e6844067eeca6969973a44004e1ba8a6fa725591a1916648bd2d4834

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>no-herd</herd>
<maintainer>
<email>mario.fetka@gmail.com</email>
</maintainer>
</pkgmetadata>

View File

@ -0,0 +1,63 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
NOVELL_BUILDID="oHdJl37wCb0~"
NOVELL_FILE="eDirectory_88SP8_Linux_x86_64.tar.gz"
RESTRICT="mirror strip"
USE_RPMOFFSET_ONLY="1"
inherit novell eutils rpm java-utils-2 versionator
MY_PVV=$(replace_version_separator 3 '-')
MY_PV="${MY_PVV/_p/_}"
DESCRIPTION="This package contains the runtime libraries and utilities for the eDirecory SNMP SubAgent"
HOMEPAGE="http://www.novell.com"
SRC_URI="http://${NOVELL_ACCOUNT_USERNAME}:${NOVELL_ACCOUNT_PASSWORD}@cdn.novell.com/prot/${NOVELL_BUILDID}/${NOVELL_FILE}"
LICENSE="Novell-eDir-88"
SLOT="8.8"
KEYWORDS="~x86 ~amd64"
IUSE="linguas_fr linguas_ja"
DEPEND=""
RDEPEND="virtual/libc
"
src_unpack() {
cd "${WORKDIR}"
unpack ${A}
mkdir -p "${WORKDIR}"/${PN}-${MY_PV}
cd ${PN}-${MY_PV}
narch=x86_64
nlib=lib64
rpm_unpack ../work/eDirectory/setup/google-perftools-${MY_PV}.${narch}.rpm
}
src_compile() { :; }
src_install() {
into /opt/novell/eDirectory/
dobin "${WORKDIR}"/${PN}-${MY_PV}/usr/bin/*
dolib.so "${WORKDIR}"/${PN}-${MY_PV}/usr/${nlib}/*.*
#doman "${WORKDIR}"/${PN}-${MY_PV}/usr/share/man/*/*.gz
}
pkg_nofetch() {
einfo "This files require you to register at ${HOMEPAGE} (free account)"
einfo "Please download following file:"
einfo " - ${NOVELL_FILE}"
einfo "from http://download.novell.com/Download?buildid=${NOVELL_BUILDID}"
einfo "and place it in ${DISTDIR}"
einfo ""
einfo "To get rid of downloading files from ${HOMEPAGE}"
einfo "you can create a file /etc/portage/novell.acc"
einfo "containing the novell account infos with following commands"
einfo "# echo \"NOVELL_ACCOUNT_USERNAME=\\\"balduin\\\"\" >> /etc/portage/novell.acc"
einfo "# echo \"NOVELL_ACCOUNT_PASSWORD=\\\"derfisch\\\"\" >> /etc/portage/novell.acc"
}