summaryrefslogtreecommitdiff
path: root/app-admin/butonasvesel/butonasvesel-1.ebuild
diff options
context:
space:
mode:
authorBlackNoxis <steven.darklight@gmail.com>2014-02-15 23:35:12 +0200
committerBlackNoxis <steven.darklight@gmail.com>2014-02-15 23:35:12 +0200
commit9328591824bd65465c49995e23c193f61f594a4e (patch)
treea7aff9013248c9c2275b2b3cb5d52209dd0ebeee /app-admin/butonasvesel/butonasvesel-1.ebuild
parent6aeeee8fc331d85844b15f922f00d51b5e45fdaf (diff)
Removed butonasvesel, we can have fun another time
Diffstat (limited to 'app-admin/butonasvesel/butonasvesel-1.ebuild')
-rw-r--r--app-admin/butonasvesel/butonasvesel-1.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-admin/butonasvesel/butonasvesel-1.ebuild b/app-admin/butonasvesel/butonasvesel-1.ebuild
deleted file mode 100644
index e97adb6c..00000000
--- a/app-admin/butonasvesel/butonasvesel-1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5" #EAPI, read docs for this. natural we use 5, but there must be a src_prepare() at least with something in it
-
-inherit eutils #Object-oriented packaging, inherit classes with functions that will follow
-
-DESCRIPTION="The most interesting button you have ever seen in your life"
-HOMEPAGE="http://rogentos.ro"
-SRC_URI="http://pkg.rogentos.ro/~rogentos/distro/"${PN}"/"${PN}".tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0" #How many times do you want this package to exist/to be installed, to coexist in different versions
-KEYWORDS="~* ~amd64 ~x86" #Every architecture you like
-IUSE="" #Configure flags, also known as ./configure --features --enable/disable features to be used
-
-RDEPEND="" #runtime deps
-DEPEND="" #build deps
-COMMON_DEPEND="" #Your deps, if you want to handle your own dep-control
-
-S="${WORKDIR}"/${PN}/ # PN means the name of the ebuild. http://devmanual.gentoo.org/ebuild-writing/variables/
-
-# The next step must be used in anyway possible for the EAPI=5 to be valid
-# Naturally, you can start by using insinto functions
-src_prepare() { #unpacked files in the sandbox can be easily modified before all instalation process in this way
- insinto "${S}"/${PN}/ || die "Failed to cd into directory"
- emake || die "Failed to emake"
-}
-
-src_install() {
- insinto /usr/sbin/
- doins "${S}"/"${PN}" || die "Failed to copy compiled file" # Again, S means workdir and PN is helloworld
- fperms 755 /usr/sbin/"${PN}"
- elog "Some people don't know what to do with their 5:00 AM time"
- elog "...while compiling hundreds of packages and turn them"
- elog "into a useful ISO for people to use"
-}
-