diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-06-11 08:41:26 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-06-11 08:41:26 +0000 |
commit | 2f6caac6019e3182486965f7f09baed7e93e1be9 (patch) | |
tree | 2d5d4350a1bbf9bafdb5f0a5260714a6190c668d /sys-apps/noxcuse/noxcuse-1.0.ebuild | |
parent | a37f6bfc3fde25205ebac44b82f1586b924c61da (diff) | |
download | packages-2f6caac6019e3182486965f7f09baed7e93e1be9.tar.gz packages-2f6caac6019e3182486965f7f09baed7e93e1be9.tar.bz2 packages-2f6caac6019e3182486965f7f09baed7e93e1be9.tar.xz packages-2f6caac6019e3182486965f7f09baed7e93e1be9.zip |
The New Plan
ebuild branch has old ebuilds. profiles dir still has CFLAGS.
Everything else is removed or modified for changing of upstream to
Alpine.
Diffstat (limited to 'sys-apps/noxcuse/noxcuse-1.0.ebuild')
-rw-r--r-- | sys-apps/noxcuse/noxcuse-1.0.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/sys-apps/noxcuse/noxcuse-1.0.ebuild b/sys-apps/noxcuse/noxcuse-1.0.ebuild deleted file mode 100644 index 99b288394..000000000 --- a/sys-apps/noxcuse/noxcuse-1.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 2015-2016 Adélie Linux Team -# Distributed under the terms of the NCSA License - -EAPI=6 - -DESCRIPTION="Implementation of SUS/XCU utilities, with a focus on lean code" -HOMEPAGE="http://git.etalabs.net/cgit/noxcuse/" -SRC_URI="mirror://foxkit/${PN}/${P}.tar.xz" - -LICENSE="GPLv2+" -SLOT="0" -KEYWORDS="arm64 ppc ppc64 x86 x86_64" -IUSE_APPS="basename cat dirname false fold grep iconv link pwd strings true wc" -IUSE="" - -for app in ${IUSE_APPS} ; do - IUSE="${IUSE} noxcuse_apps_${app}" -done - -# require at least one app -IUSE_REQUIRED="|| ( ${IUSE} )" - -# Add further IUSE here in the future, if necessary. -#IUSE="${IUSE} " - -PATCHES=( - "${FILESDIR}/0001-Makefile-Fix-install-target-dependencies.patch" - "${FILESDIR}/0002-Makefile-Support-DESTDIR.patch" -) - -DEPEND="" -RDEPEND="${DEPEND}" - -src_install() { - emake DESTDIR="${D}" install - dodoc README TODO - - # Really wish there was a configure for this. - use noxcuse_apps_basename || rm ${D}/usr/bin/basename - use noxcuse_apps_cat || rm ${D}/bin/cat - use noxcuse_apps_dirname || rm ${D}/usr/bin/dirname - use noxcuse_apps_false || rm ${D}/bin/false - use noxcuse_apps_fold || rm ${D}/usr/bin/fold - use noxcuse_apps_grep || rm ${D}/bin/grep - use noxcuse_apps_iconv || rm ${D}/usr/bin/iconv - use noxcuse_apps_link || rm ${D}/usr/bin/link - use noxcuse_apps_pwd || rm ${D}/bin/pwd - use noxcuse_apps_strings || rm ${D}/usr/bin/strings - use noxcuse_apps_true || rm ${D}/bin/true - use noxcuse_apps_wc || rm ${D}/usr/bin/wc -} |