summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Ospald <hasufell@gentoo.org>2012-12-17 18:44:03 +0000
committerJulian Ospald <hasufell@gentoo.org>2012-12-17 18:44:03 +0000
commite5bedf09f3316aa5d121045d82438607cc95c4e3 (patch)
treed477cd5ed69259e310713f4d7fef4714ff9b16de /sys-apps
parentCleanup. (diff)
downloadgentoo-2-e5bedf09f3316aa5d121045d82438607cc95c4e3.tar.gz
gentoo-2-e5bedf09f3316aa5d121045d82438607cc95c4e3.tar.bz2
gentoo-2-e5bedf09f3316aa5d121045d82438607cc95c4e3.zip
version bump, remove old
(Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/udevil/ChangeLog9
-rw-r--r--sys-apps/udevil/files/udevil-0.2.8-flags.patch61
-rw-r--r--sys-apps/udevil/files/udevil-0.3.6-flags.patch46
-rw-r--r--sys-apps/udevil/udevil-0.3.1.ebuild69
-rw-r--r--sys-apps/udevil/udevil-0.3.6.ebuild (renamed from sys-apps/udevil/udevil-0.3.2.ebuild)18
5 files changed, 64 insertions, 139 deletions
diff --git a/sys-apps/udevil/ChangeLog b/sys-apps/udevil/ChangeLog
index 3b867f3caace..ead2d1a79543 100644
--- a/sys-apps/udevil/ChangeLog
+++ b/sys-apps/udevil/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sys-apps/udevil
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/udevil/ChangeLog,v 1.19 2012/11/29 02:05:39 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/udevil/ChangeLog,v 1.20 2012/12/17 18:44:03 hasufell Exp $
+
+*udevil-0.3.6 (17 Dec 2012)
+
+ 17 Dec 2012; Julian Ospald <hasufell@gentoo.org>
+ -files/udevil-0.2.8-flags.patch, -udevil-0.3.1.ebuild, -udevil-0.3.2.ebuild,
+ +udevil-0.3.6.ebuild, +files/udevil-0.3.6-flags.patch:
+ version bump, remove old
29 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> udevil-0.3.1.ebuild,
udevil-0.3.2.ebuild, udevil-0.3.3-r1.ebuild, udevil-0.3.4.ebuild,
diff --git a/sys-apps/udevil/files/udevil-0.2.8-flags.patch b/sys-apps/udevil/files/udevil-0.2.8-flags.patch
deleted file mode 100644
index fcf856bcaf87..000000000000
--- a/sys-apps/udevil/files/udevil-0.2.8-flags.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From: Elijah El Lazkani <ThyArmageddon+Gentoo@Gmail.com>
-Date: Wed Jun 13 22:45:09 UTC 2012
-Subject: Removing explicit LDFLAGS and CPPFLAGS
-
---- configure.ac
-+++ configure.ac
-@@ -16,42 +16,6 @@
- AC_DEFINE_UNQUOTED(UDEVIL_VERSION, "$VERSION", [udevil version])
-
-
--dnl linker optimizations
--AC_MSG_CHECKING([whether $LD accepts --as-needed])
--case `$LD --as-needed -v 2>&1 </dev/null` in
--*GNU* | *'with BFD'*)
-- LDFLAGS="$LDFLAGS -Wl,--as-needed"
-- AC_MSG_RESULT([yes])
-- ;;
--*)
-- AC_MSG_RESULT([no])
-- ;;
--esac
--AC_MSG_CHECKING([whether $LD accepts -O1])
--case `$LD -O1 -v 2>&1 </dev/null` in
--*GNU* | *'with BFD'*)
-- LDFLAGS="$LDFLAGS -Wl,-O1"
-- AC_MSG_RESULT([yes])
-- ;;
--*)
-- AC_MSG_RESULT([no])
-- ;;
--esac
--AC_MSG_CHECKING([whether $LD accepts -Bsymbolic-functions])
--case `$LD -Bsymbolic-functions -v 2>&1 </dev/null` in
--*GNU* | *'with BFD'*)
-- LDFLAGS="$LDFLAGS -Wl,-Bsymbolic-functions"
-- AC_MSG_RESULT([yes])
-- ;;
--*)
-- AC_MSG_RESULT([no])
-- ;;
--esac
--
--dnl advanced compiler tweaking
--CPPFLAGS="$CPPFLAGS -fstrict-aliasing -fmessage-length=0"
--
--
- # program paths
- AC_ARG_WITH(mount-prog,
- AC_HELP_STRING([--with-mount-prog=PATH], [Path to mount program (default: /bin/mount)]),
---- src/Makefile.am
-+++ src/Makefile.am
-@@ -16,8 +16,7 @@
-
- udevil_CFLAGS = \
- @GLIB_CFLAGS@ \
-- @LIBUDEV_CFLAGS@ \
-- -Werror-implicit-function-declaration
-+ @LIBUDEV_CFLAGS@
-
- udevil_LDADD = \
- $(INTLLIBS) \
diff --git a/sys-apps/udevil/files/udevil-0.3.6-flags.patch b/sys-apps/udevil/files/udevil-0.3.6-flags.patch
new file mode 100644
index 000000000000..166a4357e9f3
--- /dev/null
+++ b/sys-apps/udevil/files/udevil-0.3.6-flags.patch
@@ -0,0 +1,46 @@
+From: Julian Ospald <hasufell@gentoo.org>
+Date: Sun Oct 21 19:33:04 UTC 2012
+Subject: build system
+
+ respect flags where possible
+
+--- configure.ac
++++ configure.ac
+@@ -18,26 +18,6 @@
+
+
+ dnl linker optimizations
+-AC_MSG_CHECKING([whether $LD accepts --as-needed])
+-case `$LD --as-needed -v 2>&1 </dev/null` in
+-*GNU* | *'with BFD'*)
+- LDFLAGS="$LDFLAGS -Wl,--as-needed"
+- AC_MSG_RESULT([yes])
+- ;;
+-*)
+- AC_MSG_RESULT([no])
+- ;;
+-esac
+-AC_MSG_CHECKING([whether $LD accepts -O1])
+-case `$LD -O1 -v 2>&1 </dev/null` in
+-*GNU* | *'with BFD'*)
+- LDFLAGS="$LDFLAGS -Wl,-O1"
+- AC_MSG_RESULT([yes])
+- ;;
+-*)
+- AC_MSG_RESULT([no])
+- ;;
+-esac
+ AC_MSG_CHECKING([whether $LD accepts -Bsymbolic-functions])
+ case `$LD -Bsymbolic-functions -v 2>&1 </dev/null` in
+ *GNU* | *'with BFD'*)
+@@ -49,10 +29,6 @@
+ ;;
+ esac
+
+-dnl advanced compiler tweaking
+-CPPFLAGS="$CPPFLAGS -fstrict-aliasing -fmessage-length=0"
+-
+-
+ # program paths
+ AC_ARG_WITH(mount-prog,
+ AC_HELP_STRING([--with-mount-prog=PATH], [Path to mount program (default: /bin/mount)]),
diff --git a/sys-apps/udevil/udevil-0.3.1.ebuild b/sys-apps/udevil/udevil-0.3.1.ebuild
deleted file mode 100644
index 93debb712c8d..000000000000
--- a/sys-apps/udevil/udevil-0.3.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/udevil/udevil-0.3.1.ebuild,v 1.5 2012/11/29 02:05:38 ssuominen Exp $
-
-EAPI=4
-
-inherit eutils autotools user
-
-DESCRIPTION="mount and unmount removable devices without a password"
-HOMEPAGE="http://ignorantguru.github.com/udevil/"
-SRC_URI="http://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=app-shells/bash-4.0
- dev-libs/glib:2
- sys-apps/util-linux
- >=virtual/udev-143
- virtual/acl"
-DEPEND="${RDEPEND}
- dev-util/intltool
- sys-devel/gettext
- virtual/pkgconfig"
-
-pkg_setup(){
- enewgroup plugdev
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-0.2.8-flags.patch"
- eautoreconf
-}
-
-src_configure() {
- econf \
- --with-setfacl-prog="$(type -P setfacl)"
-}
-
-src_install() {
- default
- fowners root:plugdev /usr/bin/udevil
- fperms 4754 /usr/bin/udevil
-}
-
-pkg_postinst() {
- einfo
- elog "Please add your user to the plugdev group"
- elog "to be able to use ${PN} as a user"
- elog
- elog "Optional dependencies:"
- elog " gnome-extra/zenity (devmon popups)"
- elog " net-fs/cifs-utils (mounting samba shares)"
- elog " net-fs/curlftpfs (mounting ftp shares)"
- elog " net-fs/nfs-utils (mounting nfs shares)"
- elog " sys-fs/sshfs-fuse (mounting sftp shares)"
- elog " virtual/eject (eject via devmon)"
- if ! has_version 'sys-fs/udisks' ; then
- elog
- elog "When using ${PN} without udisks, and without the udisks-daemon running,"
- elog "you may need to enable kernel polling for device media changes to be detected."
- elog "See http://ignorantguru.github.com/${PN}/#polling"
- has_version '<virtual/udev-173' && ewarn "You need at least udev-173"
- kernel_is lt 2 6 38 && ewarn "You need at least kernel 2.6.38"
- einfo
- fi
-}
diff --git a/sys-apps/udevil/udevil-0.3.2.ebuild b/sys-apps/udevil/udevil-0.3.6.ebuild
index 4fe4b6c4b4d5..9624fa597c47 100644
--- a/sys-apps/udevil/udevil-0.3.2.ebuild
+++ b/sys-apps/udevil/udevil-0.3.6.ebuild
@@ -1,25 +1,26 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/udevil/udevil-0.3.2.ebuild,v 1.3 2012/11/29 02:05:38 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/udevil/udevil-0.3.6.ebuild,v 1.1 2012/12/17 18:44:03 hasufell Exp $
-EAPI=4
+EAPI=5
-inherit eutils autotools user
+inherit eutils autotools user vcs-snapshot
DESCRIPTION="mount and unmount removable devices without a password"
HOMEPAGE="http://ignorantguru.github.com/udevil/"
-SRC_URI="http://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz"
+SRC_URI="https://github.com/IgnorantGuru/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="systemd"
RDEPEND=">=app-shells/bash-4.0
dev-libs/glib:2
sys-apps/util-linux
+ virtual/acl
>=virtual/udev-143
- virtual/acl"
+ systemd? ( sys-apps/systemd )"
DEPEND="${RDEPEND}
dev-util/intltool
sys-devel/gettext
@@ -30,13 +31,14 @@ pkg_setup(){
}
src_prepare() {
- epatch "${FILESDIR}/${PN}-0.2.8-flags.patch"
+ epatch "${FILESDIR}/${P}-flags.patch"
eautoreconf
}
src_configure() {
econf \
- --with-setfacl-prog="$(type -P setfacl)"
+ --with-setfacl-prog="$(type -P setfacl)" \
+ $(use_enable systemd)
}
src_install() {