Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 235144 - net-p2p/lince-1.0-rc1 ebuild use flags not present
Summary: net-p2p/lince-1.0-rc1 ebuild use flags not present
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Santiago M. Mola (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-08-18 21:35 UTC by Alin
Modified: 2008-08-25 10:46 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alin 2008-08-18 21:35:51 UTC
The 'version bump' ebuild for the version 1.0-rc1 (and others to come) doesn't include use flags. 2 use flags should be present:
* dbus
* libnotify

As you can read from the configure.ac:

AC_ARG_WITH([dbus],
        [AS_HELP_STRING([--with-dbus],
                [dbus support @<:@default=check@:>@])],
        [],
        [with_dbus=check])
AS_IF([test "x$with_dbus" != xno],
        [PKG_CHECK_MODULES(DBUS, dbus-glib-1,
                AC_DEFINE([HAVE_DBUS], [1], [Have DBUS]),
                [if test "x$with_dbus" != xcheck; then
                        AC_MSG_FAILURE([--with-dbus was given, but test for DBU$
                else
                        AC_DEFINE([HAVE_DBUS], [0], [Have DBUS])
                fi])],
                AC_DEFINE([HAVE_DBUS], [0], [Have DBUS]))
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)

AC_ARG_WITH([libnotify],
        [AS_HELP_STRING([--with-libnotify],
                [libnotify support @<:@default=check@:>@])],
        [],
        [with_libnotify=check])
AS_IF([test "x$with_libnotify" != xno],
        [PKG_CHECK_MODULES(LIBNOTIFY, libnotify,
                AC_DEFINE([HAVE_LIBNOTIFY], [1], [Have LIBNOTIFY]),
                [if test "x$with_libnotify" != xcheck; then
                        AC_MSG_FAILURE([--with-libnotify was given, but test fo$
                else
                        AC_DEFINE([HAVE_LIBNOTIFY], [0], [Have LIBNOTIFY])
                fi])],
                AC_DEFINE([HAVE_LIBNOTIFY], [0], [Have LIBNOTIFY]))
AC_SUBST(LIBNOTIFY_CFLAGS)
AC_SUBST(LIBNOTIFY_LIBS)

Thank you for your time. 
Bye.

Reproducible: Always
Comment 1 Santiago M. Mola (RETIRED) gentoo-dev 2008-08-25 10:46:50 UTC
Fixed in -r1. Thanks for reporting!