/* Evolution calendar - Alarm page of the calendar component dialogs * * Copyright (C) 2001-2003 Ximian, Inc. * * Authors: Federico Mena-Quintero * Miguel de Icaza * Seth Alves * JP Rosevear * Hans Petter Jansson * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ #ifndef ALARM_PAGE_H #define ALARM_PAGE_H #include "comp-editor-page.h" G_BEGIN_DECLS #define TYPE_ALARM_PAGE (alarm_page_get_type ()) #define ALARM_PAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_ALARM_PAGE, AlarmPage)) #define ALARM_PAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_ALARM_PAGE, AlarmPageClass)) #define IS_ALARM_PAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_ALARM_PAGE)) #define IS_ALARM_PAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), TYPE_ALARM_PAGE)) typedef struct _AlarmPagePrivate AlarmPagePrivate; typedef struct { CompEditorPage page; /* Private data */ AlarmPagePrivate *priv; } AlarmPage; typedef struct { CompEditorPageClass parent_class; } AlarmPageClass; GtkType alarm_page_get_type (void); AlarmPage *alarm_page_construct (AlarmPage *apage); AlarmPage *alarm_page_new (void); G_END_DECLS #endif Q4'>2017Q4 FreeBSD Ports (https://github.com/freebsd/freebsd-ports)
aboutsummaryrefslogblamecommitdiffstats
blob: 9e53254f75292c4d6fbb2642bbd764d683bec110 (plain) (tree)
1
2
3
4


                          
                 










                                                                        
                       








                                                                
                                                                   


                                       
# $FreeBSD$

PORTNAME=   multimedia
PORTREVISION=   5
CATEGORIES= multimedia devel python

MAINTAINER= kde@FreeBSD.org
COMMENT=    Python bindings for the Qt5 toolkit, QtMultimedia module

CONFIGURE_ARGS= --enable QtMultimedia
PYQT_DIST=  yes

USES=       python pyqt:5
USE_GL=     gl
USE_PYQT=   sip_build core_run gui_run network_run
USE_PYTHON= flavors
USE_QT5=    core gui multimedia network qmake_build

OPTIONS_DEFINE= API DEBUG
OPTIONS_DEFAULT=API
OPTIONS_SUB=    yes

API_DESC=       Install QtMultimedia API for QScintilla2
API_CONFIGURE_ON=   --qsci-api --qsci-api-destdir=${QSCIDIR}
API_CONFIGURE_OFF=  --no-qsci-api
API_LIB_DEPENDS=    libqscintilla2_qt5.so:devel/qscintilla2-qt5
DEBUG_CONFIGURE_ON= --debug --trace

.include <bsd.port.mk>